diff options
38 files changed, 2085 insertions, 2096 deletions
diff --git a/Zotlabs/Extend/Hook.php b/Zotlabs/Extend/Hook.php index edfacfa3b..713165faf 100644 --- a/Zotlabs/Extend/Hook.php +++ b/Zotlabs/Extend/Hook.php @@ -20,6 +20,15 @@ class Hook { if($r) return true; + // To aid in upgrade and transition, remove old settings for any registered hooks that match in all respects except + // for priority or hook_version + + $r = q("DELETE FROM `hook` where `hook` = '%s' and `file` = '%s' and `function` = '%s'", + dbesc($hook), + dbesc($file), + dbesc($function) + ); + $r = q("INSERT INTO `hook` (`hook`, `file`, `function`, `priority`, `hook_version`) VALUES ( '%s', '%s', '%s', %d, %d )", dbesc($hook), dbesc($file), @@ -46,6 +55,18 @@ class Hook { return $r; } + // unregister all hooks with this file component. + // Useful for addon upgrades where you want to clean out old interfaces. + + static public function unregister_by_file($file) { + + $r = q("DELETE FROM hook WHERE `file` = '%s' ", + dbesc($file) + ); + + return $r; + } + /** * @brief Inserts a hook into a page request. diff --git a/Zotlabs/Module/Admin.php b/Zotlabs/Module/Admin.php index 1ff9065cd..1d37b41bc 100644 --- a/Zotlabs/Module/Admin.php +++ b/Zotlabs/Module/Admin.php @@ -725,7 +725,7 @@ class Admin extends \Zotlabs\Web\Controller { '$embed_allow' => array('embed_allow', t('Allow embedded HTML content only from these domains'), $whiteembeds_str, t('One site per line. Leave empty to allow from any site by default')), '$embed_deny' => array('embed_deny', t('Block embedded HTML from these domains'), $blackembeds_str, ''), - '$embed_coop' => array('embed_coop', t('Cooperative embed security'), $embed_coop, t('Enable to share embed security with other compatible sites/hubs')), +// '$embed_coop' => array('embed_coop', t('Cooperative embed security'), $embed_coop, t('Enable to share embed security with other compatible sites/hubs')), '$submit' => t('Submit') )); } diff --git a/Zotlabs/Module/Cal.php b/Zotlabs/Module/Cal.php index 89967bca1..958ce5aa6 100644 --- a/Zotlabs/Module/Cal.php +++ b/Zotlabs/Module/Cal.php @@ -38,7 +38,7 @@ class Cal extends \Zotlabs\Web\Controller { head_set_icon(\App::$data['channel']['xchan_photo_s']); - \App::$page['htmlhead'] .= "<script> var ispublic = '" . t('everybody') . "'; var profile_uid = " . ((\App::$data['channel']) ? \App::$data['channel']['channel_id'] : 0) . "; </script>" ; + \App::$page['htmlhead'] .= "<script> var profile_uid = " . ((\App::$data['channel']) ? \App::$data['channel']['channel_id'] : 0) . "; </script>" ; } diff --git a/Zotlabs/Module/Editpost.php b/Zotlabs/Module/Editpost.php index d8b971f6c..1c2c2a30b 100644 --- a/Zotlabs/Module/Editpost.php +++ b/Zotlabs/Module/Editpost.php @@ -5,7 +5,7 @@ require_once('include/acl_selectors.php'); require_once('include/crypto.php'); require_once('include/items.php'); require_once('include/taxonomy.php'); - +require_once('include/conversation.php'); class Editpost extends \Zotlabs\Web\Controller { @@ -49,20 +49,7 @@ class Editpost extends \Zotlabs\Web\Controller { // $plaintext = false; $channel = \App::get_channel(); - - \App::$page['htmlhead'] .= replace_macros(get_markup_template('jot-header.tpl'), array( - '$baseurl' => z_root(), - '$editselect' => (($plaintext) ? 'none' : '/(profile-jot-text|prvmail-text)/'), - '$pretext' => '', - '$ispublic' => ' ', // t('Visible to <strong>everybody</strong>'), - '$geotag' => $geotag, - '$nickname' => $channel['channel_address'], - '$expireswhen' => t('Expires YYYY-MM-DD HH:MM'), - '$confirmdelete' => t('Delete item?'), - '$editor_autocomplete'=> true, - '$bbco_autocomplete'=> 'bbcode' - )); - + if(intval($itm[0]['item_obscured'])) { $key = get_config('system','prvkey'); if($itm[0]['title']) @@ -71,18 +58,6 @@ class Editpost extends \Zotlabs\Web\Controller { $itm[0]['body'] = crypto_unencapsulate(json_decode_plus($itm[0]['body']),$key); } - $tpl = get_markup_template("jot.tpl"); - - $jotplugins = ''; - $jotnets = ''; - - call_hooks('jot_tool', $jotplugins); - call_hooks('jot_networks', $jotnets); - - //$tpl = replace_macros($tpl,array('$jotplugins' => $jotplugins)); - - $voting = feature_enabled($owner_uid,'consensus_tools'); - $category = ''; $catsenabled = ((feature_enabled($owner_uid,'categories')) ? 'categories' : ''); @@ -106,66 +81,31 @@ class Editpost extends \Zotlabs\Web\Controller { } } } - - $cipher = get_pconfig(\App::$profile['profile_uid'],'system','default_cipher'); - if(! $cipher) - $cipher = 'aes256'; - - - $editor = replace_macros($tpl,array( - '$return_path' => $_SESSION['return_url'], - '$action' => 'item', - '$share' => t('Edit'), - '$bold' => t('Bold'), - '$italic' => t('Italic'), - '$underline' => t('Underline'), - '$quote' => t('Quote'), - '$code' => t('Code'), - '$upload' => t('Upload photo'), - '$attach' => t('Attach file'), - '$weblink' => t('Insert web link'), - '$youtube' => t('Insert YouTube video'), - '$video' => t('Insert Vorbis [.ogg] video'), - '$audio' => t('Insert Vorbis [.ogg] audio'), - '$setloc' => t('Set your location'), - '$noloc' => t('Clear browser location'), - '$voting' => t('Toggle voting'), - '$feature_voting' => $voting, - '$consensus' => intval($itm[0]['item_consensus']), - '$wait' => t('Please wait'), - '$permset' => t('Permission settings'), - '$ptyp' => $itm[0]['obj_type'], - '$content' => undo_post_tagging($itm[0]['body']), - '$post_id' => $post_id, - '$parent' => (($itm[0]['parent'] != $itm[0]['id']) ? $itm[0]['parent'] : ''), - '$baseurl' => z_root(), - '$defloc' => $channel['channel_location'], - '$visitor' => false, - '$public' => t('Public post'), - '$jotnets' => $jotnets, - '$title' => htmlspecialchars($itm[0]['title'],ENT_COMPAT,'UTF-8'), - '$placeholdertitle' => t('Title (optional)'), - '$category' => $category, - '$placeholdercategory' => t('Categories (optional, comma-separated list)'), - '$emtitle' => t('Example: bob@example.com, mary@example.com'), - '$lockstate' => $lockstate, - '$acl' => '', - '$bang' => '', - '$profile_uid' => $owner_uid, - '$preview' => t('Preview'), - '$jotplugins' => $jotplugins, - '$sourceapp' => t(\App::$sourcename), - '$catsenabled' => $catsenabled, - '$defexpire' => datetime_convert('UTC', date_default_timezone_get(),$itm[0]['expires']), - '$feature_expire' => ((feature_enabled(\App::$profile['profile_uid'],'content_expire') && (! $webpage)) ? true : false), - '$expires' => t('Set expiration date'), - '$feature_encrypt' => ((feature_enabled(\App::$profile['profile_uid'],'content_encrypt') && (! $webpage)) ? true : false), - '$encrypt' => t('Encrypt text'), - '$cipher' => $cipher, - '$expiryModalOK' => t('OK'), - '$expiryModalCANCEL' => t('Cancel'), - '$bbcode' => true - )); + + $x = array( + 'nickname' => $channel['channel_address'], + 'editor_autocomplete'=> true, + 'bbco_autocomplete'=> 'bbcode', + 'return_path' => $_SESSION['return_url'], + 'button' => t('Edit'), + 'hide_voting' => true, + 'hide_future' => true, + 'hide_location' => true, + 'ptyp' => $itm[0]['obj_type'], + 'body' => undo_post_tagging($itm[0]['body']), + 'post_id' => $post_id, + 'defloc' => $channel['channel_location'], + 'visitor' => true, + 'title' => htmlspecialchars($itm[0]['title'],ENT_COMPAT,'UTF-8'), + 'category' => $category, + 'showacl' => false, + 'profile_uid' => $owner_uid, + 'catsenabled' => $catsenabled, + 'hide_expire' => true, + 'bbcode' => true + ); + + $editor = status_editor($a, $x); $o .= replace_macros(get_markup_template('edpost_head.tpl'), array( '$title' => t('Edit post'), diff --git a/Zotlabs/Module/Item.php b/Zotlabs/Module/Item.php index 74fbeed67..93570fdec 100644 --- a/Zotlabs/Module/Item.php +++ b/Zotlabs/Module/Item.php @@ -1243,14 +1243,14 @@ class Item extends \Zotlabs\Web\Controller { } if (!$iswebpage) { - $max = service_class_fetch($channel_id,'total_items'); + $max = engr_units_to_bytes(service_class_fetch($channel_id,'total_items')); if(! service_class_allows($channel_id,'total_items',$r[0]['total'])) { $result['message'] .= upgrade_message() . sprintf( t('You have reached your limit of %1$.0f top level posts.'),$max); return $result; } } else { - $max = service_class_fetch($channel_id,'total_pages'); + $max = engr_units_to_bytes(service_class_fetch($channel_id,'total_pages')); if(! service_class_allows($channel_id,'total_pages',$r[0]['total'])) { $result['message'] .= upgrade_message() . sprintf( t('You have reached your limit of %1$.0f webpages.'),$max); return $result; diff --git a/Zotlabs/Module/Photos.php b/Zotlabs/Module/Photos.php index ce350666f..2b7f5525f 100644 --- a/Zotlabs/Module/Photos.php +++ b/Zotlabs/Module/Photos.php @@ -42,7 +42,7 @@ class Photos extends \Zotlabs\Web\Controller { head_set_icon(\App::$data['channel']['xchan_photo_s']); - \App::$page['htmlhead'] .= "<script> var ispublic = '" . t('everybody') . "'; var profile_uid = " . ((\App::$data['channel']) ? \App::$data['channel']['channel_id'] : 0) . "; </script>" ; + \App::$page['htmlhead'] .= "<script> var profile_uid = " . ((\App::$data['channel']) ? \App::$data['channel']['channel_id'] : 0) . "; </script>" ; } @@ -615,7 +615,7 @@ class Photos extends \Zotlabs\Web\Controller { ); - $limit = service_class_fetch(\App::$data['channel']['channel_id'],'photo_upload_limit'); + $limit = engr_units_to_bytes(service_class_fetch(\App::$data['channel']['channel_id'],'photo_upload_limit')); if($limit !== false) { $usage_message = sprintf( t("%1$.2f MB of %2$.2f MB photo storage used."), $r[0]['total'] / 1024000, $limit / 1024000 ); } diff --git a/Zotlabs/Storage/Browser.php b/Zotlabs/Storage/Browser.php index 720940953..c75ebe41f 100644 --- a/Zotlabs/Storage/Browser.php +++ b/Zotlabs/Storage/Browser.php @@ -273,7 +273,7 @@ class Browser extends DAV\Browser\Plugin { return; // Storage and quota for the account (all channels of the owner of this directory)! - $limit = service_class_fetch($owner, 'attach_upload_limit'); + $limit = engr_units_to_bytes(service_class_fetch($owner, 'attach_upload_limit')); $r = q("SELECT SUM(filesize) AS total FROM attach WHERE aid = %d", intval($this->auth->channel_account_id) ); diff --git a/Zotlabs/Storage/Directory.php b/Zotlabs/Storage/Directory.php index edbef5a95..3c0cff6ef 100644 --- a/Zotlabs/Storage/Directory.php +++ b/Zotlabs/Storage/Directory.php @@ -315,13 +315,13 @@ class Directory extends DAV\Node implements DAV\ICollection, DAV\IQuota { } // check against service class quota - $limit = service_class_fetch($c[0]['channel_id'], 'attach_upload_limit'); + $limit = engr_units_to_bytes(service_class_fetch($c[0]['channel_id'], 'attach_upload_limit')); if ($limit !== false) { $x = q("SELECT SUM(filesize) AS total FROM attach WHERE aid = %d ", intval($c[0]['channel_account_id']) ); if (($x) && ($x[0]['total'] + $size > $limit)) { - logger('service class limit exceeded for ' . $c[0]['channel_name'] . ' total usage is ' . $x[0]['total'] . ' limit is ' . $limit); + logger('service class limit exceeded for ' . $c[0]['channel_name'] . ' total usage is ' . $x[0]['total'] . ' limit is ' . userReadableSize($limit)); attach_delete($c[0]['channel_id'], $hash); return; } @@ -549,7 +549,7 @@ class Directory extends DAV\Node implements DAV\ICollection, DAV\IQuota { intval($this->auth->owner_id) ); - $ulimit = service_class_fetch($c[0]['channel_id'], 'attach_upload_limit'); + $ulimit = engr_units_to_bytes(service_class_fetch($c[0]['channel_id'], 'attach_upload_limit')); $limit = (($ulimit) ? $ulimit : $limit); $x = q("select sum(filesize) as total from attach where aid = %d", diff --git a/Zotlabs/Storage/File.php b/Zotlabs/Storage/File.php index 897f24edd..d40fee0ea 100644 --- a/Zotlabs/Storage/File.php +++ b/Zotlabs/Storage/File.php @@ -208,13 +208,13 @@ class File extends DAV\Node implements DAV\IFile { return; } - $limit = service_class_fetch($c[0]['channel_id'], 'attach_upload_limit'); + $limit = engr_units_to_bytes(service_class_fetch($c[0]['channel_id'], 'attach_upload_limit')); if ($limit !== false) { $x = q("select sum(filesize) as total from attach where aid = %d ", intval($c[0]['channel_account_id']) ); if (($x) && ($x[0]['total'] + $size > $limit)) { - logger('service class limit exceeded for ' . $c[0]['channel_name'] . ' total usage is ' . $x[0]['total'] . ' limit is ' . $limit); + logger('service class limit exceeded for ' . $c[0]['channel_name'] . ' total usage is ' . $x[0]['total'] . ' limit is ' . userReadableSize($limit)); attach_delete($c[0]['channel_id'], $this->data['hash']); return; } diff --git a/doc/context/de/admin/logs/help.html b/doc/context/de/admin/logs/help.html new file mode 100644 index 000000000..1441d9075 --- /dev/null +++ b/doc/context/de/admin/logs/help.html @@ -0,0 +1,8 @@ +<dl class="dl-horizontal"> + <dt>Allgemein</dt> + <dd>Auf dieser Seite können die Einstellungen zur Protokollierung angepasst und vorhandene Protokolle angezeigt werden.</dd> + <dt>Protokoll Einstellungen</dt> + <dd>Bei aktivierter Debugging-Option werden System-Log Informationen an die Datei in der <b>Protokolldatei</b> im EIngabefeld hinzugefügt. Der Pfad ist relativ zum Hub-Wurzelverzeichnis. Daauf achten, dass diese Datei vom Webserver geschrieben werden kann.</dd> + <dt>Protokollstufe</dt> + <dd>Die Protokollstufe bestimmt, wie viele Informationen an die Protokolldatei angefügt werden. Warnung: Eine hohe Protokollstufe kann sehr schnell die Größe der Protokolldatei anwachsen lassen, vor allem, wenn der Hub viele Mitglieder hat.</dd> +</dl> diff --git a/doc/context/de/admin/queue/help.html b/doc/context/de/admin/queue/help.html new file mode 100644 index 000000000..e59fdcaee --- /dev/null +++ b/doc/context/de/admin/queue/help.html @@ -0,0 +1,4 @@ +<dl class="dl-horizontal"> + <dt>Allgemein</dt> + <dd>Die Warteschlangenstatistik zeigt, wie viele Nachrichten zur Auslieferung an andere Hubs noch in der Warteschlange stehen. Die Priorität steht in Beziehung mit der Anzahl fehlgeschlagener Auslieferungsversuche.</dd> +</dl> diff --git a/doc/context/de/admin/security/help.html b/doc/context/de/admin/security/help.html new file mode 100644 index 000000000..6465e8f0e --- /dev/null +++ b/doc/context/de/admin/security/help.html @@ -0,0 +1,4 @@ +<dl class="dl-horizontal"> + <dt>Allgemein</dt> + <dd>Auf dieser Seite können verschiedene Sicherheitseinstellungen vorgenommen werden. Um geänderte Einstellungen zu speichern, muss der Knopf "Bestätigen" gedrückt werden.</dd> +</dl> diff --git a/doc/context/de/channel/help.html b/doc/context/de/channel/help.html new file mode 100644 index 000000000..fbfcac3c1 --- /dev/null +++ b/doc/context/de/channel/help.html @@ -0,0 +1,8 @@ +<dl class="dl-horizontal"> + <dt>Allgemein</dt> + <dd>Auf dieser Seite wird der eigene aktuelle Kanal angezeigt. Dies entspricht ungefähr den Profilseiten in anderen sozialen Netzwerken. Im Kanal veröffentliche Beiträge werden gemäß den Anzeige-Berechtigungen des Betrachters angezeigt.</dd> + <dt>Beitrag anlegen</dt> + <dd>Falls der Betrachter/Besucher die Berechtigung zum Anlegen von Beiträgen besitzt, wird im oberen Bereich der Beitragseditor angezeigt.</dd> + <dt><a href='#' onclick='contextualHelpFocus("#tabs-collapse-1", 0); return false;' title="Click to highlight element...">Kanal-Inhalte-Tabs</a></dt> + <dd>Die Tabs für unterschiedliche Kanal-Inhalte zeigen die unterschiedlichen veröffentlichten Inhalte des Kanals an. The <b>Über</b> Tab verweist auf das Profil des Kanals. Der <b>Fotos</b> Tab verweist auf die Foto-Gallerien des Kanals. Der <b>Dateien</b> Tab verweist auf allgemeine vom Kanal veröffentlichte und geteilte Dateien.</dd> +</dl> diff --git a/doc/context/de/chat/help.html b/doc/context/de/chat/help.html new file mode 100644 index 000000000..ba355365f --- /dev/null +++ b/doc/context/de/chat/help.html @@ -0,0 +1,8 @@ +<dl class="dl-horizontal"> + <dt>Allgemein</dt> + <dd>Chaträume können angelegt und für die Echtzeit-Kommunikation verwendet werden. Die Zugriffskontrolle verwendet dabei das Hubzilla-Berechtigungssystem.</dd> + <dt>Chatraum anlegen</dt> + <dd>Über den Knopf "Neu anlegen" wird ein neuer Chatraum eröffnet. Hierfür einen Namen und angeben, wie lange Nachrichten aufbewahrt werden sollen.</dd> + <dt>Chatten</dt> + <dd>Die Nachricht in der der Nachrichtenbox eingeben und "Bestätigen" drücken. Über den Menüknopf neben "Bestätigen" kann ein Anwesenheitsstatus gesetzt werden. Andere Teilnehmer am Chatraum werden im Seitenpanel unter "Chatmitglieder" angezeigt.</dd> +</dl> diff --git a/doc/context/de/cloud/help.html b/doc/context/de/cloud/help.html new file mode 100644 index 000000000..e72ad1743 --- /dev/null +++ b/doc/context/de/cloud/help.html @@ -0,0 +1,6 @@ +<dl class="dl-horizontal"> + <dt>Allgemein</dt> + <dd>Diese Seite zeigt die veröffentlichten und geteilten Dateien des Kanals an. Welche Dateien ein Besucher sehen kann, wird über die individuellen Dateiberechtigungen bestimmt, die vom Kanal-Besitzer bestimmt werden. Wurde die Berechtigung zum Anlegen/Hochladen von Dateien vergeben, werden die entsprechenden Steuerungsknöpfe angezeigt.</dd> + <dt><a href='#' onclick='contextualHelpFocus("#tabs-collapse-1", 0); return false;' title="Click to highlight element...">Kanal-Inhalte-Tabs</a></dt> + <dd>Die Tabs für unterschiedliche Kanal-Inhalte zeigen die unterschiedlichen veröffentlichten Inhalte des Kanals an. The <b>Über</b> Tab verweist auf das Profil des Kanals. Der <b>Fotos</b> Tab verweist auf die Foto-Gallerien des Kanals. Der <b>Dateien</b> Tab verweist auf allgemeine vom Kanal veröffentlichte und geteilte Dateien.</dd> +</dl> diff --git a/doc/context/de/connections/help.html b/doc/context/de/connections/help.html new file mode 100644 index 000000000..61789ea38 --- /dev/null +++ b/doc/context/de/connections/help.html @@ -0,0 +1,8 @@ +<dl class="dl-horizontal"> + <dt>Allgemein</dt> + <dd>Auf dieser Seite werden die Verbindungen des Kanals angezeigt. Diese Liste kann <a href='#' onclick='contextualHelpFocus(".section-title-wrapper", 0); return false;' title="Click to highlight element...">sortiert und gefilter werden über den Menüknopf neben dem Suchknopf</a>.</dd> + <dt>Verbindungsdetails</dt> + <dd>Jeder Eintrag in der Liste zeigt die Details einer Verbindung. Ein durchsichtiges (ausgegrautes) Avatar-Bild zeigt archivierte Verbindungen an (diese konnten min. 30 Tage nicht erreicht werden).</dd> + <dt>Verbindungsstatus</dt> + <dd>Eine Verbindung kann sich in verschiedenen Stati befinden: <ul><li>Archiviert</li><li>Ignoriert</li><li>Blockiert</li><li>Versteckt</li></ul></dd> +</dl> diff --git a/doc/context/de/connections/ifpending/help.html b/doc/context/de/connections/ifpending/help.html new file mode 100644 index 000000000..3e55b34c3 --- /dev/null +++ b/doc/context/de/connections/ifpending/help.html @@ -0,0 +1,8 @@ +<dl class="dl-horizontal"> + <dt>Allgemein</dt> + <dd>Auf dieser Seite werden Verbindungswünsche von anderen Kanälen an diesen Kanal angezeigt. Diese Liste kann <a href='#' onclick='contextualHelpFocus(".section-title-wrapper", 0); return false;' title="Click to highlight element...">sortiert und gefilter werden über den Menüknopf neben dem Suchknopf</a>.</dd> + <dt>Verbindungsdetails</dt> + <dd>Jeder Eintrag in der Liste zeigt die Details einer Verbindung. Ein durchsichtiges (ausgegrautes) Avatar-Bild zeigt archivierte Verbindungen an (diese konnten min. 30 Tage nicht erreicht werden).</dd> + <dt>Verbindungsstatus</dt> + <dd>Eine Verbindung kann sich in verschiedenen Stati befinden: <ul><li>Archiviert</li><li>Ignoriert</li><li>Blockiert</li><li>Versteckt</li></ul></dd> +</dl> diff --git a/doc/context/de/events/help.html b/doc/context/de/events/help.html new file mode 100644 index 000000000..b0dc95b3e --- /dev/null +++ b/doc/context/de/events/help.html @@ -0,0 +1,8 @@ +<dl class="dl-horizontal"> + <dt>Allgemein</dt> + <dd>Auf dieser Seite wird ein Kalender mit eigenen und von anderen verbundenen Kanälen geteilte Ereignisse angezeigt.</dd> + <dt><a href='#' onclick='contextualHelpFocus("#title", 0); return false;' title="Click to highlight element...">Kalenderanzeige</a></dt> + <dd>Die Monats-, Wochen- und Tagesansicht des Kalenders kann im Panel ausgewählt werden.</dd> + <dt>Export/Import</dt> + <dd>Kalendereinträge können Eim Standard-Format iCalendar (.ics) exportiert oder importiert werden.</dd> +</dl> diff --git a/doc/context/de/mail/help.html b/doc/context/de/mail/help.html new file mode 100644 index 000000000..b89135d8c --- /dev/null +++ b/doc/context/de/mail/help.html @@ -0,0 +1,12 @@ +<dl class="dl-horizontal"> + <dt>Allgemein</dt> + <dd>Die Privaten Nachrichten sind nur für den Kanal-Besitzer und den Empfänger sichtbar.</dd> + <dt>Konversationen</dt> + <dd>Über <b>Konversationen</b> kann eine vollständige fortlaufene Ansicht einer Konversation angezeigt werden. Verfügbare Konversationen werden unter dem Punkt Konversationen im Panel angezeigt.</dd> + <dt>Eingang/Ausgang</dt> + <dd>Einzelne versandte Nachrichten kännen über den Punkt <b>Ausgang</b> und empfangene Nachrichten über <b>Eingang</b> gefiltert dargestellt werden.</dd> + <dt>Neue Nachricht</dt> + <dd>Über <b>Neue Nachricht</b> kann eine neue Nachricht erstellt werden.</dd> + <dt>Sonstiges</dt> + <dd>Über das Menü einzelner Nachrichten können besondere Funktionen ausgelöst werden: Zustellungsbericht kann abgerufen werden, Nachrichten (die noch nicht angesehen wurden!) können widerrufen und gelöscht werden.</dd> +</dl> diff --git a/doc/context/de/network/help.html b/doc/context/de/network/help.html new file mode 100644 index 000000000..6590f597d --- /dev/null +++ b/doc/context/de/network/help.html @@ -0,0 +1,10 @@ +<dl class="dl-horizontal"> + <dt>Allgemein</dt> + <dd>Auf der Netzwerkseite wird der Strom von Beiträgen und Konversationen angezeigt. Typischerweise wird nach kürzlich aktualisierten Beiträgen sortiert. Diese Seite kann sehr weitgehend angepasst werden.</dd> + <dt><a href='#' onclick='contextualHelpFocus("#profile-jot-wrapper", 0); return false;' title="Click to highlight element...">Beitrag anlegen</a></dt> + <dd>Im oberen Bereich der Seite wird eine Textbox "Teilen" angezeigt. Nach Klick in diese Box wird der Beitragseditor angezeigt. Der Beitragseditor kann angepasst werden; in den Basiseinstellungen stehen Felder für Inhalt und einem optionalen Titel bereit. Knöpfe unterhalb des Inhaltes erleichtern die Eingabe von Formatierungen, Links, Bildern und anderen Daten im Beitrag. Über die Knöpfe im rechten Bereich kann eine Vorschau aktiviert, Berechtigungen gesetzt und der Beitrag abgesendet werden.</dd> + <dt><a href='#' onclick='contextualHelpFocus("#group-sidebar", 1); return false;' title="Click to highlight element...">Gruppen</a></dt> + <dd>Die erstellten Gruppen werden im Panel angezeigt. Über die Gruppen kann nach Beiträgen von Gruppenmitgliedern gefiltert werden.</dd> + <dt><a href='#' onclick='$("#dbtn-acl").click(); return false;' title="Click to highlight element...">Beitragsberechtigungen</a></dt> + <dd>Die Zugriffskontrollliste (Access Control List; ACL) steuert, wer den Beitrag sehen darf. Nach Klick auf das Schloß neben dem Knopf "Teilen" öffnet sich ein Dialog, in dem Kanäle oder Gruppen ausgewählt werdenkönnen, die diesen Beitrag sehen dürfen. s kann auch gezielt verboten werden, dass ein Kanal oder eine Gruppe den Artikel sehen darf (nützlich beispielsweise für die Planung einer Überraschungsparty in einer Gruppe, in der der Überraschte Mitglied ist).</dd> +</dl> diff --git a/doc/context/de/photos/help.html b/doc/context/de/photos/help.html new file mode 100644 index 000000000..437d2c369 --- /dev/null +++ b/doc/context/de/photos/help.html @@ -0,0 +1,6 @@ +<dl class="dl-horizontal"> + <dt>Allgemein</dt> + <dd>Diese Seite zeigt die veröffentlichten und geteilten Fotos des Kanals an. Welche Fotos ein Besucher sehen kann, wird über die individuellen Berechtigungen bestimmt, die vom Kanal-Besitzer bestimmt werden. Wurde die Berechtigung zum Anlegen/Hochladen von Bildern vergeben, werden die entsprechenden Steuerungsknöpfe angezeigt.</dd> + <dt><a href='#' onclick='contextualHelpFocus("#tabs-collapse-1", 0); return false;' title="Click to highlight element...">Kanal-Inhalte-Tabs</a></dt> + <dd>Die Tabs für unterschiedliche Kanal-Inhalte zeigen die unterschiedlichen veröffentlichten Inhalte des Kanals an. The <b>Über</b> Tab verweist auf das Profil des Kanals. Der <b>Fotos</b> Tab verweist auf die Foto-Gallerien des Kanals. Der <b>Dateien</b> Tab verweist auf allgemeine vom Kanal veröffentlichte und geteilte Dateien.</dd> +</dl> diff --git a/doc/context/de/profile/help.html b/doc/context/de/profile/help.html new file mode 100644 index 000000000..ece33457d --- /dev/null +++ b/doc/context/de/profile/help.html @@ -0,0 +1,6 @@ +<dl class="dl-horizontal"> + <dt>Allgemein</dt> + <dd>Dies ist die Profilseite eines Kanals. Hier werden typischerweise Informationen angezeigt, die den Kanal beschreiben. Wenn der Kanal beispielsweise eine Person in einem sozialen Netzwerk repräsentiert, könnten Kontaktinformationen und andere persönliche Details hier veröffentlicht werden. Kanäle können mehrere Profile besitzen, die abhängig vom Betrachter/Besucher angezeigt werden.</dd> + <dt><a href='#' onclick='contextualHelpFocus("#tabs-collapse-1", 0); return false;' title="Click to highlight element...">Kanal-Inhalte-Tabs</a></dt> + <dd>Die Tabs für unterschiedliche Kanal-Inhalte zeigen die unterschiedlichen veröffentlichten Inhalte des Kanals an. The <b>Über</b> Tab verweist auf das Profil des Kanals. Der <b>Fotos</b> Tab verweist auf die Foto-Gallerien des Kanals. Der <b>Dateien</b> Tab verweist auf allgemeine vom Kanal veröffentlichte und geteilte Dateien.</dd> +</dl> diff --git a/include/account.php b/include/account.php index c64197b49..5998609d4 100644 --- a/include/account.php +++ b/include/account.php @@ -591,6 +591,7 @@ function service_class_allows($uid, $property, $usage = false) { if($limit === false) return true; // No service class set => everything is allowed + $limit = engr_units_to_bytes($limit); if($usage === false) { // We use negative values for not allowed properties in a subscriber plan return ((x($limit)) ? (bool) $limit : true); @@ -627,6 +628,8 @@ function account_service_class_allows($aid, $property, $usage = false) { if($limit === false) return true; // No service class is set => everything is allowed + $limit = engr_units_to_bytes($limit); + if($usage === false) { // We use negative values for not allowed properties in a subscriber plan return ((x($limit)) ? (bool) $limit : true); diff --git a/include/conversation.php b/include/conversation.php index 7d80b08fc..b1b47df39 100644 --- a/include/conversation.php +++ b/include/conversation.php @@ -1115,16 +1115,28 @@ function status_editor($a, $x, $popup = false) { if($c && $c['channel_moved']) return $o; - $geotag = (($x['allow_location']) ? replace_macros(get_markup_template('jot_geotag.tpl'), array()) : ''); - $plaintext = true; // if(feature_enabled(local_channel(),'richtext')) // $plaintext = false; - $voting = feature_enabled(local_channel(), 'consensus_tools'); - if(x($x, 'novoting')) - $voting = false; + $feature_voting = feature_enabled($x['profile_uid'], 'consensus_tools'); + if(x($x, 'hide_voting')) + $feature_voting = false; + + $feature_expire = ((feature_enabled($x['profile_uid'], 'content_expire') && (! $webpage)) ? true : false); + if(x($x, 'hide_expire')) + $feature_expire = false; + + $feature_future = ((feature_enabled($x['profile_uid'], 'delayed_posting') && (! $webpage)) ? true : false); + if(x($x, 'hide_future')) + $feature_future = false; + + $geotag = (($x['allow_location']) ? replace_macros(get_markup_template('jot_geotag.tpl'), array()) : ''); + $setloc = t('Set your location'); + $clearloc = ((get_pconfig($x['profile_uid'], 'system', 'use_browser_location')) ? t('Clear browser location') : ''); + if(x($x, 'hide_location')) + $geotag = $setloc = $clearloc = ''; $mimeselect = ''; if(array_key_exists('mimetype', $x) && $x['mimetype']) { @@ -1146,7 +1158,6 @@ function status_editor($a, $x, $popup = false) { $layoutselect = '<input type="hidden" name="layout_mid" value="' . $x['layout'] . '" />'; } - if(array_key_exists('channel_select',$x) && $x['channel_select']) { require_once('include/identity.php'); $id_select = identity_selector(); @@ -1154,26 +1165,19 @@ function status_editor($a, $x, $popup = false) { else $id_select = ''; - $webpage = ((x($x,'webpage')) ? $x['webpage'] : ''); $tpl = get_markup_template('jot-header.tpl'); App::$page['htmlhead'] .= replace_macros($tpl, array( - '$newpost' => 'true', '$baseurl' => z_root(), '$editselect' => (($plaintext) ? 'none' : '/(profile-jot-text|prvmail-text)/'), '$pretext' => ((x($x,'pretext')) ? $x['pretext'] : ''), '$geotag' => $geotag, '$nickname' => $x['nickname'], - '$ispublic' => t('Visible to <strong>everybody</strong>'), '$linkurl' => t('Please enter a link URL:'), - '$vidurl' => t('Please enter a video link/URL:'), - '$audurl' => t('Please enter an audio link/URL:'), '$term' => t('Tag term:'), - '$fileas' => t('Save to Folder:'), '$whereareu' => t('Where are you right now?'), - '$expireswhen' => t('Expires YYYY-MM-DD HH:MM'), '$editor_autocomplete'=> ((x($x,'editor_autocomplete')) ? $x['editor_autocomplete'] : ''), '$bbco_autocomplete'=> ((x($x,'bbco_autocomplete')) ? $x['bbco_autocomplete'] : ''), )); @@ -1181,10 +1185,8 @@ function status_editor($a, $x, $popup = false) { $tpl = get_markup_template('jot.tpl'); $jotplugins = ''; - $jotnets = ''; $preview = t('Preview'); -// $preview = ((feature_enabled($x['profile_uid'],'preview')) ? t('Preview') : ''); if(x($x, 'nopreview')) $preview = ''; @@ -1201,7 +1203,6 @@ function status_editor($a, $x, $popup = false) { $cipher = 'aes256'; call_hooks('jot_tool', $jotplugins); - call_hooks('jot_networks', $jotnets); $o .= replace_macros($tpl, array( '$return_path' => ((x($x, 'return_path')) ? $x['return_path'] : App::$query_string), @@ -1218,42 +1219,25 @@ function status_editor($a, $x, $popup = false) { '$underline' => t('Underline'), '$quote' => t('Quote'), '$code' => t('Code'), - '$upload' => t('Upload photo'), - '$shortupload' => t('upload photo'), '$attach' => t('Attach file'), - '$shortattach' => t('attach file'), '$weblink' => t('Insert web link'), - '$shortweblink' => t('web link'), - '$video' => t('Insert video link'), - '$shortvideo' => t('video link'), - '$audio' => t('Insert audio link'), - '$shortaudio' => t('audio link'), - '$setloc' => t('Set your location'), - '$shortsetloc' => t('set location'), + '$setloc' => $setloc, '$voting' => t('Toggle voting'), - '$feature_voting' => $voting, + '$feature_voting' => $feature_voting, '$consensus' => 0, - '$noloc' => ((get_pconfig($x['profile_uid'], 'system', 'use_browser_location')) ? t('Clear browser location') : ''), - '$shortnoloc' => t('clear location'), + '$clearloc' => $clearloc, '$title' => ((x($x, 'title')) ? htmlspecialchars($x['title'], ENT_COMPAT,'UTF-8') : ''), '$placeholdertitle' => ((x($x, 'placeholdertitle')) ? $x['placeholdertitle'] : t('Title (optional)')), - '$hidetitle' => ((x($x, 'hidetitle')) ? $x['hidetitle'] : false), '$catsenabled' => ((feature_enabled($x['profile_uid'], 'categories') && (! $webpage)) ? 'categories' : ''), - '$category' => "", + '$category' => ((x($x, 'category')) ? $x['category'] : ''), '$placeholdercategory' => t('Categories (optional, comma-separated list)'), - '$wait' => t('Please wait'), '$permset' => t('Permission settings'), - '$shortpermset' => t('permissions'), - '$ptyp' => '', + '$ptyp' => ((x($x, 'ptyp')) ? $x['ptyp'] : ''), '$content' => ((x($x,'body')) ? htmlspecialchars($x['body'], ENT_COMPAT,'UTF-8') : ''), '$attachment' => ((x($x, 'attachment')) ? $x['attachment'] : ''), - '$post_id' => '', - '$baseurl' => z_root(), + '$post_id' => ((x($x, 'post_id')) ? $x['post_id'] : ''), '$defloc' => $x['default_location'], '$visitor' => $x['visitor'], - '$public' => t('Public post'), - '$jotnets' => $jotnets, - '$emtitle' => t('Example: bob@example.com, mary@example.com'), '$lockstate' => $x['lockstate'], '$acl' => $x['acl'], '$mimeselect' => $mimeselect, @@ -1265,10 +1249,10 @@ function status_editor($a, $x, $popup = false) { '$source' => ((x($x, 'source')) ? $x['source'] : ''), '$jotplugins' => $jotplugins, '$defexpire' => $defexpire, - '$feature_expire' => ((feature_enabled($x['profile_uid'], 'content_expire') && (! $webpage)) ? true : false), + '$feature_expire' => $feature_expire, '$expires' => t('Set expiration date'), '$defpublish' => $defpublish, - '$feature_future' => ((feature_enabled($x['profile_uid'], 'delayed_posting') && (! $webpage)) ? true : false), + '$feature_future' => $feature_future, '$future_txt' => t('Set publish date'), '$feature_encrypt' => ((feature_enabled($x['profile_uid'], 'content_encrypt') && (! $webpage)) ? true : false), '$encrypt' => t('Encrypt text'), diff --git a/include/photos.php b/include/photos.php index d088d455a..73a29d8eb 100644 --- a/include/photos.php +++ b/include/photos.php @@ -131,7 +131,7 @@ function photo_upload($channel, $observer, $args) { intval($account_id) ); - $limit = service_class_fetch($channel_id,'photo_upload_limit'); + $limit = engr_units_to_bytes(service_class_fetch($channel_id,'photo_upload_limit')); if (($r) && ($limit !== false) && (($r[0]['total'] + strlen($imagedata)) > $limit)) { $ret['message'] = upgrade_message(); diff --git a/include/text.php b/include/text.php index 926e2eed6..f1043909d 100644 --- a/include/text.php +++ b/include/text.php @@ -1825,7 +1825,7 @@ function lang_selector() { } -function return_bytes ($size_str) { +function engr_units_to_bytes ($size_str) { switch (substr ($size_str, -1)) { case 'M': case 'm': return (int)$size_str * 1048576; case 'K': case 'k': return (int)$size_str * 1024; diff --git a/version.inc b/version.inc index 0b94407ab..f116462c5 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2016-04-27.1379H +2016-04-28.1380H diff --git a/view/css/bootstrap-red.css b/view/css/bootstrap-red.css index 777bf69eb..73d77bb93 100644 --- a/view/css/bootstrap-red.css +++ b/view/css/bootstrap-red.css @@ -21,7 +21,8 @@ nav .badge { } } -nav i { +#navbar-collapse-1 i, +.navbar-header i { font-size: 14px; } @@ -50,10 +51,6 @@ nav .navbar-collapse .navbar-right { float: right; } -nav .navbar-toggle { - margin-bottom: 7px; -} - /* nav overrides end */ diff --git a/view/es-es/hmessages.po b/view/es-es/hmessages.po index 0242dbc1a..a77386393 100644 --- a/view/es-es/hmessages.po +++ b/view/es-es/hmessages.po @@ -13,8 +13,8 @@ msgid "" msgstr "" "Project-Id-Version: Redmatrix\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2016-04-22 00:01-0700\n" -"PO-Revision-Date: 2016-04-22 10:40+0000\n" +"POT-Creation-Date: 2016-04-29 00:01-0700\n" +"PO-Revision-Date: 2016-04-30 09:57+0000\n" "Last-Translator: Manuel Jiménez Friaza <mjfriaza@openmailbox.org>\n" "Language-Team: Spanish (Spain) (http://www.transifex.com/Friendica/red-matrix/language/es_ES/)\n" "MIME-Version: 1.0\n" @@ -27,7 +27,7 @@ msgstr "" msgid "parent" msgstr "padre" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2633 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2606 msgid "Collection" msgstr "Colección" @@ -52,7 +52,7 @@ msgid "Schedule Outbox" msgstr "Programar bandeja de salida" #: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:797 -#: ../../Zotlabs/Module/Photos.php:1241 ../../include/apps.php:360 +#: ../../Zotlabs/Module/Photos.php:1242 ../../include/apps.php:360 #: ../../include/apps.php:415 ../../include/conversation.php:1037 #: ../../include/widgets.php:1457 msgid "Unknown" @@ -81,7 +81,7 @@ msgstr "Crear" #: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:305 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:824 ../../Zotlabs/Module/Photos.php:1365 +#: ../../Zotlabs/Module/Photos.php:824 ../../Zotlabs/Module/Photos.php:1366 #: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1470 msgid "Upload" msgstr "Subir" @@ -129,9 +129,9 @@ msgstr "Editar" #: ../../Zotlabs/Module/Blocks.php:161 #: ../../Zotlabs/Module/Connections.php:263 #: ../../Zotlabs/Module/Connedit.php:573 -#: ../../Zotlabs/Module/Editblock.php:187 +#: ../../Zotlabs/Module/Editblock.php:180 #: ../../Zotlabs/Module/Editlayout.php:184 -#: ../../Zotlabs/Module/Editwebpage.php:228 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Editwebpage.php:221 ../../Zotlabs/Module/Group.php:177 #: ../../Zotlabs/Module/Photos.php:1172 ../../Zotlabs/Module/Settings.php:651 #: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Module/Webpages.php:191 #: ../../include/ItemObject.php:120 ../../include/apps.php:260 @@ -378,7 +378,7 @@ msgstr "no soportado" #: ../../Zotlabs/Module/Settings.php:579 ../../include/dir_fns.php:141 #: ../../include/dir_fns.php:142 ../../include/dir_fns.php:143 #: ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1606 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1619 msgid "No" msgstr "No" @@ -398,7 +398,7 @@ msgstr "Sí - con aprobación" #: ../../Zotlabs/Module/Settings.php:579 ../../include/dir_fns.php:141 #: ../../include/dir_fns.php:142 ../../include/dir_fns.php:143 #: ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1606 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1619 msgid "Yes" msgstr "Sí" @@ -429,7 +429,7 @@ msgstr "Sitio" #: ../../Zotlabs/Module/Admin.php:1778 ../../Zotlabs/Module/Appman.php:103 #: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Chat.php:194 #: ../../Zotlabs/Module/Chat.php:236 ../../Zotlabs/Module/Connect.php:97 -#: ../../Zotlabs/Module/Connedit.php:733 ../../Zotlabs/Module/Events.php:472 +#: ../../Zotlabs/Module/Connedit.php:734 ../../Zotlabs/Module/Events.php:472 #: ../../Zotlabs/Module/Events.php:669 #: ../../Zotlabs/Module/Filestorage.php:160 #: ../../Zotlabs/Module/Fsuggest.php:112 ../../Zotlabs/Module/Group.php:85 @@ -835,14 +835,6 @@ msgstr "Un sitio por línea. Dejar en blanco para permitirlo por defecto desde c msgid "Block embedded HTML from these domains" msgstr "Bloquear contenido con HTML incorporado desde estos dominios" -#: ../../Zotlabs/Module/Admin.php:728 -msgid "Cooperative embed security" -msgstr "Seguridad cooperativa incorporada" - -#: ../../Zotlabs/Module/Admin.php:728 -msgid "Enable to share embed security with other compatible sites/hubs" -msgstr "Habilitar la compartición de seguridad incorporada con otros sitios compatibles" - #: ../../Zotlabs/Module/Admin.php:743 msgid "Update has been marked successful" msgstr "La actualización ha sido marcada como exitosa" @@ -962,7 +954,7 @@ msgstr "Fecha de solicitud" #: ../../Zotlabs/Module/Admin.php:997 ../../Zotlabs/Module/Admin.php:1006 #: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 -#: ../../include/contact_selectors.php:81 ../../boot.php:1604 +#: ../../include/contact_selectors.php:81 ../../boot.php:1617 msgid "Email" msgstr "Correo electrónico" @@ -1142,7 +1134,7 @@ msgstr "Cambiar" #: ../../Zotlabs/Module/Admin.php:1274 ../../Zotlabs/Module/Admin.php:1496 #: ../../include/apps.php:134 ../../include/widgets.php:589 -#: ../../include/nav.php:211 +#: ../../include/nav.php:208 msgid "Settings" msgstr "Ajustes" @@ -1259,8 +1251,8 @@ msgstr "Información adicional (opcional)" #: ../../Zotlabs/Module/Admin.php:1695 ../../Zotlabs/Module/Admin.php:1715 #: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/widgets.php:201 -#: ../../include/text.php:905 ../../include/text.php:917 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:905 +#: ../../include/text.php:917 ../../include/widgets.php:201 msgid "Save" msgstr "Guardar" @@ -1344,7 +1336,7 @@ msgstr "Nombre de la aplicación" #: ../../Zotlabs/Module/Appman.php:95 ../../Zotlabs/Module/Appman.php:96 #: ../../Zotlabs/Module/Events.php:448 ../../Zotlabs/Module/Events.php:453 -#: ../../Zotlabs/Module/Profiles.php:712 ../../Zotlabs/Module/Profiles.php:716 +#: ../../Zotlabs/Module/Profiles.php:713 ../../Zotlabs/Module/Profiles.php:717 #: ../../include/datetime.php:246 msgid "Required" msgstr "Obligatorio" @@ -1379,7 +1371,7 @@ msgid "Location (URL) to purchase app" msgstr "Dirección (URL) donde adquirir la aplicación" #: ../../Zotlabs/Module/Apps.php:40 ../../include/widgets.php:102 -#: ../../include/nav.php:165 +#: ../../include/nav.php:163 msgid "Apps" msgstr "Aplicaciones" @@ -1400,7 +1392,7 @@ msgstr "Canal no encontrado." msgid "Block Name" msgstr "Nombre del bloque" -#: ../../Zotlabs/Module/Blocks.php:153 ../../include/text.php:2278 +#: ../../Zotlabs/Module/Blocks.php:153 ../../include/text.php:2251 msgid "Blocks" msgstr "Bloques" @@ -1458,7 +1450,7 @@ msgid "l, F j" msgstr "l j F" #: ../../Zotlabs/Module/Cal.php:311 ../../Zotlabs/Module/Events.php:634 -#: ../../include/text.php:1743 +#: ../../include/text.php:1714 msgid "Link to Source" msgstr "Enlazar con la entrada en su ubicación original" @@ -1552,10 +1544,10 @@ msgstr "Por favor, introduzca la dirección del enlace:" msgid "Encrypt text" msgstr "Cifrar texto" -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Editblock.php:149 +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Editblock.php:148 #: ../../Zotlabs/Module/Editlayout.php:147 #: ../../Zotlabs/Module/Editpost.php:126 -#: ../../Zotlabs/Module/Editwebpage.php:189 ../../Zotlabs/Module/Mail.php:253 +#: ../../Zotlabs/Module/Editwebpage.php:188 ../../Zotlabs/Module/Mail.php:253 #: ../../Zotlabs/Module/Mail.php:383 ../../include/conversation.php:1225 msgid "Insert web link" msgstr "Insertar enlace web" @@ -1593,7 +1585,7 @@ msgid "No chatrooms available" msgstr "No hay salas de chat disponibles" #: ../../Zotlabs/Module/Chat.php:250 ../../Zotlabs/Module/Manage.php:141 -#: ../../Zotlabs/Module/Profiles.php:781 +#: ../../Zotlabs/Module/Profiles.php:782 msgid "Create New" msgstr "Crear" @@ -1785,13 +1777,13 @@ msgid "Recent activity" msgstr "Actividad reciente" #: ../../Zotlabs/Module/Connections.php:302 ../../include/text.php:834 -#: ../../include/nav.php:189 +#: ../../include/nav.php:186 msgid "Connections" msgstr "Conexiones" #: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../include/apps.php:147 ../../include/text.php:904 -#: ../../include/text.php:916 ../../include/nav.php:167 +#: ../../include/text.php:904 ../../include/text.php:916 +#: ../../include/apps.php:147 ../../include/nav.php:165 msgid "Search" msgstr "Buscar" @@ -2006,73 +1998,77 @@ msgid "" "connections." msgstr "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones." -#: ../../Zotlabs/Module/Connedit.php:715 +#: ../../Zotlabs/Module/Connedit.php:714 +msgid "Connection Tools" +msgstr "Gestión de las conexiones" + +#: ../../Zotlabs/Module/Connedit.php:716 msgid "Slide to adjust your degree of friendship" msgstr "Deslizar para ajustar el grado de amistad" -#: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Module/Rate.php:161 +#: ../../Zotlabs/Module/Connedit.php:717 ../../Zotlabs/Module/Rate.php:161 #: ../../include/js_strings.php:20 msgid "Rating" msgstr "Valoración" -#: ../../Zotlabs/Module/Connedit.php:717 +#: ../../Zotlabs/Module/Connedit.php:718 msgid "Slide to adjust your rating" msgstr "Deslizar para ajustar su valoración" -#: ../../Zotlabs/Module/Connedit.php:718 ../../Zotlabs/Module/Connedit.php:723 +#: ../../Zotlabs/Module/Connedit.php:719 ../../Zotlabs/Module/Connedit.php:724 msgid "Optionally explain your rating" msgstr "Opcionalmente, puede explicar su valoración" -#: ../../Zotlabs/Module/Connedit.php:720 +#: ../../Zotlabs/Module/Connedit.php:721 msgid "Custom Filter" msgstr "Filtro personalizado" -#: ../../Zotlabs/Module/Connedit.php:721 +#: ../../Zotlabs/Module/Connedit.php:722 msgid "Only import posts with this text" msgstr "Importar solo entradas que contengan este texto" -#: ../../Zotlabs/Module/Connedit.php:721 ../../Zotlabs/Module/Connedit.php:722 +#: ../../Zotlabs/Module/Connedit.php:722 ../../Zotlabs/Module/Connedit.php:723 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:722 +#: ../../Zotlabs/Module/Connedit.php:723 msgid "Do not import posts with this text" msgstr "No importar entradas que contengan este texto" -#: ../../Zotlabs/Module/Connedit.php:724 +#: ../../Zotlabs/Module/Connedit.php:725 msgid "This information is public!" msgstr "¡Esta información es pública!" -#: ../../Zotlabs/Module/Connedit.php:729 +#: ../../Zotlabs/Module/Connedit.php:730 msgid "Connection Pending Approval" msgstr "Conexión pendiente de aprobación" -#: ../../Zotlabs/Module/Connedit.php:732 +#: ../../Zotlabs/Module/Connedit.php:733 msgid "inherited" msgstr "heredado" -#: ../../Zotlabs/Module/Connedit.php:734 +#: ../../Zotlabs/Module/Connedit.php:735 #, 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:736 +#: ../../Zotlabs/Module/Connedit.php:737 msgid "Their Settings" msgstr "Sus ajustes" -#: ../../Zotlabs/Module/Connedit.php:737 +#: ../../Zotlabs/Module/Connedit.php:738 msgid "My Settings" msgstr "Mis ajustes" -#: ../../Zotlabs/Module/Connedit.php:739 +#: ../../Zotlabs/Module/Connedit.php:740 msgid "Individual Permissions" msgstr "Permisos individuales" -#: ../../Zotlabs/Module/Connedit.php:740 +#: ../../Zotlabs/Module/Connedit.php:741 msgid "" "Some permissions may be inherited from your channel's <a " "href=\"settings\"><strong>privacy settings</strong></a>, which have higher " @@ -2080,7 +2076,7 @@ msgid "" " settings here." msgstr "Algunos permisos pueden ser heredados de los <a href=\"settings\"><strong>ajustes de privacidad</strong></a> de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. <strong>No</strong> puede cambiar estos ajustes aquí." -#: ../../Zotlabs/Module/Connedit.php:741 +#: ../../Zotlabs/Module/Connedit.php:742 msgid "" "Some permissions may be inherited from your channel's <a " "href=\"settings\"><strong>privacy settings</strong></a>, which have higher " @@ -2088,7 +2084,7 @@ msgid "" "they wont have any impact unless the inherited setting changes." msgstr "Algunos permisos pueden ser heredados de los <a href=\"settings\"><strong>ajustes de privacidad</strong></a> 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:742 +#: ../../Zotlabs/Module/Connedit.php:743 msgid "Last update:" msgstr "Última actualización:" @@ -2236,8 +2232,8 @@ msgid "Age:" msgstr "Edad:" #: ../../Zotlabs/Module/Directory.php:311 ../../include/identity.php:1022 -#: ../../include/bb2diaspora.php:509 ../../include/event.php:52 -#: ../../include/text.php:1452 +#: ../../include/text.php:1452 ../../include/bb2diaspora.php:509 +#: ../../include/event.php:52 msgid "Location:" msgstr "Ubicación:" @@ -2449,124 +2445,62 @@ msgid "Code" msgstr "Código" #: ../../Zotlabs/Module/Editblock.php:147 -#: ../../Zotlabs/Module/Editlayout.php:145 -#: ../../Zotlabs/Module/Editpost.php:124 -#: ../../Zotlabs/Module/Editwebpage.php:187 -#: ../../include/conversation.php:1221 -msgid "Upload photo" -msgstr "Subir foto" - -#: ../../Zotlabs/Module/Editblock.php:148 #: ../../Zotlabs/Module/Editlayout.php:146 #: ../../Zotlabs/Module/Editpost.php:125 -#: ../../Zotlabs/Module/Editwebpage.php:188 ../../Zotlabs/Module/Mail.php:252 +#: ../../Zotlabs/Module/Editwebpage.php:187 ../../Zotlabs/Module/Mail.php:252 #: ../../Zotlabs/Module/Mail.php:382 ../../include/conversation.php:1223 msgid "Attach file" msgstr "Adjuntar fichero" -#: ../../Zotlabs/Module/Editblock.php:150 -#: ../../Zotlabs/Module/Editlayout.php:148 -#: ../../Zotlabs/Module/Editpost.php:127 -#: ../../Zotlabs/Module/Editwebpage.php:190 -msgid "Insert YouTube video" -msgstr "Insertar vídeo de YouTube" - #: ../../Zotlabs/Module/Editblock.php:151 -#: ../../Zotlabs/Module/Editlayout.php:149 -#: ../../Zotlabs/Module/Editpost.php:128 -#: ../../Zotlabs/Module/Editwebpage.php:191 -msgid "Insert Vorbis [.ogg] video" -msgstr "Insertar vídeo Vorbis [.ogg]" - -#: ../../Zotlabs/Module/Editblock.php:152 -#: ../../Zotlabs/Module/Editlayout.php:150 -#: ../../Zotlabs/Module/Editpost.php:129 -#: ../../Zotlabs/Module/Editwebpage.php:192 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Insertar audio Vorbis [.ogg]" - -#: ../../Zotlabs/Module/Editblock.php:153 -#: ../../Zotlabs/Module/Editlayout.php:151 -#: ../../Zotlabs/Module/Editpost.php:130 -#: ../../Zotlabs/Module/Editwebpage.php:193 -#: ../../include/conversation.php:1231 -msgid "Set your location" -msgstr "Establecer su ubicación" - -#: ../../Zotlabs/Module/Editblock.php:154 -#: ../../Zotlabs/Module/Editlayout.php:152 -#: ../../Zotlabs/Module/Editpost.php:131 -#: ../../Zotlabs/Module/Editwebpage.php:194 -#: ../../include/conversation.php:1236 -msgid "Clear browser location" -msgstr "Eliminar los datos de localización geográfica del navegador" - -#: ../../Zotlabs/Module/Editblock.php:155 -#: ../../Zotlabs/Module/Editlayout.php:153 -#: ../../Zotlabs/Module/Editpost.php:135 -#: ../../Zotlabs/Module/Editwebpage.php:195 -#: ../../Zotlabs/Module/Photos.php:1072 ../../include/ItemObject.php:389 -#: ../../include/conversation.php:740 ../../include/conversation.php:1244 -msgid "Please wait" -msgstr "Espere por favor" - -#: ../../Zotlabs/Module/Editblock.php:156 #: ../../Zotlabs/Module/Editlayout.php:154 #: ../../Zotlabs/Module/Editpost.php:136 -#: ../../Zotlabs/Module/Editwebpage.php:196 +#: ../../Zotlabs/Module/Editwebpage.php:191 #: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1245 msgid "Permission settings" msgstr "Configuración de permisos" -#: ../../Zotlabs/Module/Editblock.php:164 +#: ../../Zotlabs/Module/Editblock.php:159 #: ../../Zotlabs/Module/Editlayout.php:161 #: ../../Zotlabs/Module/Editpost.php:144 -#: ../../Zotlabs/Module/Editwebpage.php:205 +#: ../../Zotlabs/Module/Editwebpage.php:200 #: ../../include/conversation.php:1254 msgid "Public post" msgstr "Entrada pública" -#: ../../Zotlabs/Module/Editblock.php:167 +#: ../../Zotlabs/Module/Editblock.php:162 #: ../../Zotlabs/Module/Editpost.php:147 -#: ../../Zotlabs/Module/Editwebpage.php:210 +#: ../../Zotlabs/Module/Editwebpage.php:205 #: ../../include/conversation.php:1239 msgid "Title (optional)" msgstr "Título (opcional)" -#: ../../Zotlabs/Module/Editblock.php:170 +#: ../../Zotlabs/Module/Editblock.php:165 #: ../../Zotlabs/Module/Editlayout.php:168 #: ../../Zotlabs/Module/Editpost.php:149 -#: ../../Zotlabs/Module/Editwebpage.php:212 +#: ../../Zotlabs/Module/Editwebpage.php:207 #: ../../include/conversation.php:1243 msgid "Categories (optional, comma-separated list)" msgstr "Categorías (opcional, lista separada por comas)" -#: ../../Zotlabs/Module/Editblock.php:171 +#: ../../Zotlabs/Module/Editblock.php:166 #: ../../Zotlabs/Module/Editlayout.php:169 #: ../../Zotlabs/Module/Editpost.php:150 -#: ../../Zotlabs/Module/Editwebpage.php:213 +#: ../../Zotlabs/Module/Editwebpage.php:208 #: ../../include/conversation.php:1256 msgid "Example: bob@example.com, mary@example.com" msgstr "Ejemplo: roberto@ejemplo.com, maría@ejemplo.com" -#: ../../Zotlabs/Module/Editblock.php:176 +#: ../../Zotlabs/Module/Editblock.php:171 #: ../../Zotlabs/Module/Editpost.php:155 -#: ../../Zotlabs/Module/Editwebpage.php:217 +#: ../../Zotlabs/Module/Editwebpage.php:212 #: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Photos.php:1092 #: ../../Zotlabs/Module/Webpages.php:196 ../../include/ItemObject.php:712 #: ../../include/conversation.php:1186 ../../include/page_widgets.php:40 msgid "Preview" msgstr "Previsualizar" -#: ../../Zotlabs/Module/Editblock.php:181 -#: ../../Zotlabs/Module/Editlayout.php:178 -#: ../../Zotlabs/Module/Editpost.php:161 -#: ../../Zotlabs/Module/Editwebpage.php:222 ../../Zotlabs/Module/Mail.php:257 -#: ../../Zotlabs/Module/Mail.php:387 ../../include/conversation.php:1269 -msgid "Set expiration date" -msgstr "Configurar fecha de caducidad" - -#: ../../Zotlabs/Module/Editblock.php:186 +#: ../../Zotlabs/Module/Editblock.php:179 msgid "Edit Block" msgstr "Modificar este bloque" @@ -2574,6 +2508,43 @@ msgstr "Modificar este bloque" msgid "Delete layout?" msgstr "¿Borrar la plantilla?" +#: ../../Zotlabs/Module/Editlayout.php:145 +#: ../../Zotlabs/Module/Editpost.php:124 ../../include/conversation.php:1221 +msgid "Upload photo" +msgstr "Subir foto" + +#: ../../Zotlabs/Module/Editlayout.php:148 +#: ../../Zotlabs/Module/Editpost.php:127 +msgid "Insert YouTube video" +msgstr "Insertar vídeo de YouTube" + +#: ../../Zotlabs/Module/Editlayout.php:149 +#: ../../Zotlabs/Module/Editpost.php:128 +msgid "Insert Vorbis [.ogg] video" +msgstr "Insertar vídeo Vorbis [.ogg]" + +#: ../../Zotlabs/Module/Editlayout.php:150 +#: ../../Zotlabs/Module/Editpost.php:129 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Insertar audio Vorbis [.ogg]" + +#: ../../Zotlabs/Module/Editlayout.php:151 +#: ../../Zotlabs/Module/Editpost.php:130 ../../include/conversation.php:1231 +msgid "Set your location" +msgstr "Establecer su ubicación" + +#: ../../Zotlabs/Module/Editlayout.php:152 +#: ../../Zotlabs/Module/Editpost.php:131 ../../include/conversation.php:1236 +msgid "Clear browser location" +msgstr "Eliminar los datos de localización geográfica del navegador" + +#: ../../Zotlabs/Module/Editlayout.php:153 +#: ../../Zotlabs/Module/Editpost.php:135 ../../Zotlabs/Module/Photos.php:1072 +#: ../../include/ItemObject.php:389 ../../include/conversation.php:740 +#: ../../include/conversation.php:1244 +msgid "Please wait" +msgstr "Espere por favor" + #: ../../Zotlabs/Module/Editlayout.php:164 #: ../../Zotlabs/Module/Layouts.php:128 msgid "Layout Description (Optional)" @@ -2584,6 +2555,12 @@ msgstr "Descripción de la plantilla (opcional)" msgid "Layout Name" msgstr "Nombre de la plantilla" +#: ../../Zotlabs/Module/Editlayout.php:178 +#: ../../Zotlabs/Module/Editpost.php:161 ../../Zotlabs/Module/Mail.php:257 +#: ../../Zotlabs/Module/Mail.php:387 ../../include/conversation.php:1269 +msgid "Set expiration date" +msgstr "Configurar fecha de caducidad" + #: ../../Zotlabs/Module/Editlayout.php:183 msgid "Edit Layout" msgstr "Modificar la plantilla" @@ -2628,7 +2605,7 @@ msgstr "¿Eliminar la página web?" msgid "Page link title" msgstr "Título del enlace de la página" -#: ../../Zotlabs/Module/Editwebpage.php:227 +#: ../../Zotlabs/Module/Editwebpage.php:220 msgid "Edit Webpage" msgstr "Editar la página web" @@ -2658,8 +2635,8 @@ msgid "Event not found." msgstr "Evento no encontrado." #: ../../Zotlabs/Module/Events.php:253 ../../Zotlabs/Module/Like.php:373 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123 -#: ../../include/event.php:915 ../../include/text.php:1970 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1943 +#: ../../include/conversation.php:123 ../../include/event.php:915 msgid "event" msgstr "evento" @@ -2722,7 +2699,7 @@ msgid "Edit Location" msgstr "Modificar la dirección" #: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Profiles.php:476 ../../Zotlabs/Module/Profiles.php:701 +#: ../../Zotlabs/Module/Profiles.php:476 ../../Zotlabs/Module/Profiles.php:702 #: ../../Zotlabs/Module/Pubsites.php:40 ../../include/js_strings.php:25 msgid "Location" msgstr "Ubicación" @@ -2905,7 +2882,7 @@ msgstr "Ayuda:" #: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 #: ../../Zotlabs/Module/Layouts.php:181 ../../include/apps.php:142 -#: ../../include/nav.php:161 +#: ../../include/nav.php:159 msgid "Help" msgstr "Ayuda" @@ -2972,7 +2949,7 @@ msgstr "Foto del perfil 128px" msgid "Timezone" msgstr "Huso horario" -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:734 +#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:735 msgid "Homepage URL" msgstr "Dirección de la página personal" @@ -3250,7 +3227,7 @@ msgstr "Ha alcanzado su límite de %1$.0f entradas en la página principal." 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:179 ../../include/text.php:2280 +#: ../../Zotlabs/Module/Layouts.php:179 ../../include/text.php:2253 msgid "Layouts" msgstr "Plantillas" @@ -3302,13 +3279,13 @@ 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/conversation.php:120 -#: ../../include/text.php:1967 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1940 +#: ../../include/conversation.php:120 msgid "photo" msgstr "foto" #: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/conversation.php:148 ../../include/text.php:1973 +#: ../../include/text.php:1946 ../../include/conversation.php:148 msgid "status" msgstr "el mensaje de estado" @@ -3444,7 +3421,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:90 ../../boot.php:1610 +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1623 msgid "Password Reset" msgstr "Restablecer la contraseña" @@ -3591,7 +3568,7 @@ msgid "Create a new channel" msgstr "Crear un nuevo canal" #: ../../Zotlabs/Module/Manage.php:162 ../../include/apps.php:132 -#: ../../include/nav.php:209 +#: ../../include/nav.php:206 msgid "Channel Manager" msgstr "Administración de canales" @@ -3677,7 +3654,7 @@ msgstr "El menú se puede usar para guardar marcadores" msgid "Submit and proceed" msgstr "Enviar y proceder" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2279 +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2252 msgid "Menus" msgstr "Menús" @@ -3969,7 +3946,7 @@ msgstr "No hay más notificaciones del sistema" msgid "System Notifications" msgstr "Notificaciones del sistema" -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:194 +#: ../../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" @@ -4111,8 +4088,8 @@ msgstr "Descripción (opcional):" msgid "Album name could not be decoded" msgstr "El nombre del álbum no ha podido ser descifrado" -#: ../../Zotlabs/Module/Photos.php:742 ../../Zotlabs/Module/Photos.php:1282 -#: ../../Zotlabs/Module/Photos.php:1299 +#: ../../Zotlabs/Module/Photos.php:742 ../../Zotlabs/Module/Photos.php:1283 +#: ../../Zotlabs/Module/Photos.php:1300 msgid "Contact Photos" msgstr "Fotos de contacto" @@ -4124,7 +4101,7 @@ msgstr "Mostrar lo más reciente primero" msgid "Show Oldest First" msgstr "Mostrar lo más antiguo primero" -#: ../../Zotlabs/Module/Photos.php:791 ../../Zotlabs/Module/Photos.php:1332 +#: ../../Zotlabs/Module/Photos.php:791 ../../Zotlabs/Module/Photos.php:1333 #: ../../include/widgets.php:1451 msgid "View Photo" msgstr "Ver foto" @@ -4278,35 +4255,39 @@ msgid_plural "Dislikes" msgstr[0] "No me gusta" msgstr[1] "No me gusta" -#: ../../Zotlabs/Module/Photos.php:1242 +#: ../../Zotlabs/Module/Photos.php:1234 +msgid "Photo Tools" +msgstr "Gestión de las fotos" + +#: ../../Zotlabs/Module/Photos.php:1243 msgid "In This Photo:" msgstr "En esta foto:" -#: ../../Zotlabs/Module/Photos.php:1247 +#: ../../Zotlabs/Module/Photos.php:1248 msgid "Map" msgstr "Mapa" -#: ../../Zotlabs/Module/Photos.php:1255 ../../include/ItemObject.php:378 +#: ../../Zotlabs/Module/Photos.php:1256 ../../include/ItemObject.php:378 msgctxt "noun" msgid "Likes" msgstr "Me gusta" -#: ../../Zotlabs/Module/Photos.php:1256 ../../include/ItemObject.php:379 +#: ../../Zotlabs/Module/Photos.php:1257 ../../include/ItemObject.php:379 msgctxt "noun" msgid "Dislikes" msgstr "No me gusta" -#: ../../Zotlabs/Module/Photos.php:1261 ../../include/ItemObject.php:384 +#: ../../Zotlabs/Module/Photos.php:1262 ../../include/ItemObject.php:384 #: ../../include/acl_selectors.php:252 msgid "Close" msgstr "Cerrar" -#: ../../Zotlabs/Module/Photos.php:1338 +#: ../../Zotlabs/Module/Photos.php:1339 msgid "View Album" msgstr "Ver álbum" -#: ../../Zotlabs/Module/Photos.php:1349 ../../Zotlabs/Module/Photos.php:1362 -#: ../../Zotlabs/Module/Photos.php:1363 +#: ../../Zotlabs/Module/Photos.php:1350 ../../Zotlabs/Module/Photos.php:1363 +#: ../../Zotlabs/Module/Photos.php:1364 msgid "Recent Photos" msgstr "Fotos recientes" @@ -4413,15 +4394,15 @@ msgstr "Estado civil" msgid "Romantic Partner" msgstr "Pareja sentimental" -#: ../../Zotlabs/Module/Profiles.php:434 ../../Zotlabs/Module/Profiles.php:739 +#: ../../Zotlabs/Module/Profiles.php:434 ../../Zotlabs/Module/Profiles.php:740 msgid "Likes" msgstr "Me gusta" -#: ../../Zotlabs/Module/Profiles.php:438 ../../Zotlabs/Module/Profiles.php:740 +#: ../../Zotlabs/Module/Profiles.php:438 ../../Zotlabs/Module/Profiles.php:741 msgid "Dislikes" msgstr "No me gusta" -#: ../../Zotlabs/Module/Profiles.php:442 ../../Zotlabs/Module/Profiles.php:747 +#: ../../Zotlabs/Module/Profiles.php:442 ../../Zotlabs/Module/Profiles.php:748 msgid "Work/Employment" msgstr "Trabajo:" @@ -4461,181 +4442,185 @@ msgstr "Modificar los detalles de este perfil" msgid "View this profile" msgstr "Ver este perfil" -#: ../../Zotlabs/Module/Profiles.php:693 ../../Zotlabs/Module/Profiles.php:774 +#: ../../Zotlabs/Module/Profiles.php:693 ../../Zotlabs/Module/Profiles.php:775 #: ../../include/identity.php:952 msgid "Edit visibility" msgstr "Editar visibilidad" #: ../../Zotlabs/Module/Profiles.php:694 +msgid "Profile Tools" +msgstr "Gestión del perfil" + +#: ../../Zotlabs/Module/Profiles.php:695 msgid "Change cover photo" msgstr "Cambiar la imagen de portada del perfil" -#: ../../Zotlabs/Module/Profiles.php:695 ../../include/identity.php:923 +#: ../../Zotlabs/Module/Profiles.php:696 ../../include/identity.php:923 msgid "Change profile photo" msgstr "Cambiar la foto del perfil" -#: ../../Zotlabs/Module/Profiles.php:696 +#: ../../Zotlabs/Module/Profiles.php:697 msgid "Create a new profile using these settings" msgstr "Crear un nuevo perfil usando estos ajustes" -#: ../../Zotlabs/Module/Profiles.php:697 +#: ../../Zotlabs/Module/Profiles.php:698 msgid "Clone this profile" msgstr "Clonar este perfil" -#: ../../Zotlabs/Module/Profiles.php:698 +#: ../../Zotlabs/Module/Profiles.php:699 msgid "Delete this profile" msgstr "Eliminar este perfil" -#: ../../Zotlabs/Module/Profiles.php:699 +#: ../../Zotlabs/Module/Profiles.php:700 msgid "Add profile things" msgstr "Añadir cosas al perfil" -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/conversation.php:1544 +#: ../../Zotlabs/Module/Profiles.php:701 ../../include/conversation.php:1544 #: ../../include/widgets.php:105 msgid "Personal" msgstr "Personales" -#: ../../Zotlabs/Module/Profiles.php:702 +#: ../../Zotlabs/Module/Profiles.php:703 msgid "Relation" msgstr "Relación" -#: ../../Zotlabs/Module/Profiles.php:703 ../../include/datetime.php:48 +#: ../../Zotlabs/Module/Profiles.php:704 ../../include/datetime.php:48 msgid "Miscellaneous" msgstr "Varios" -#: ../../Zotlabs/Module/Profiles.php:705 +#: ../../Zotlabs/Module/Profiles.php:706 msgid "Import profile from file" msgstr "Importar perfil desde un fichero" -#: ../../Zotlabs/Module/Profiles.php:706 +#: ../../Zotlabs/Module/Profiles.php:707 msgid "Export profile to file" msgstr "Exportar perfil a un fichero" -#: ../../Zotlabs/Module/Profiles.php:707 +#: ../../Zotlabs/Module/Profiles.php:708 msgid "Your gender" msgstr "Género" -#: ../../Zotlabs/Module/Profiles.php:708 +#: ../../Zotlabs/Module/Profiles.php:709 msgid "Marital status" msgstr "Estado civil" -#: ../../Zotlabs/Module/Profiles.php:709 +#: ../../Zotlabs/Module/Profiles.php:710 msgid "Sexual preference" msgstr "Preferencia sexual" -#: ../../Zotlabs/Module/Profiles.php:712 +#: ../../Zotlabs/Module/Profiles.php:713 msgid "Profile name" msgstr "Nombre del perfil" -#: ../../Zotlabs/Module/Profiles.php:714 +#: ../../Zotlabs/Module/Profiles.php:715 msgid "This is your default profile." msgstr "Este es su perfil principal." -#: ../../Zotlabs/Module/Profiles.php:716 +#: ../../Zotlabs/Module/Profiles.php:717 msgid "Your full name" msgstr "Nombre completo" -#: ../../Zotlabs/Module/Profiles.php:717 +#: ../../Zotlabs/Module/Profiles.php:718 msgid "Title/Description" msgstr "Título o descripción" -#: ../../Zotlabs/Module/Profiles.php:720 +#: ../../Zotlabs/Module/Profiles.php:721 msgid "Street address" msgstr "Dirección" -#: ../../Zotlabs/Module/Profiles.php:721 +#: ../../Zotlabs/Module/Profiles.php:722 msgid "Locality/City" msgstr "Ciudad" -#: ../../Zotlabs/Module/Profiles.php:722 +#: ../../Zotlabs/Module/Profiles.php:723 msgid "Region/State" msgstr "Región o Estado" -#: ../../Zotlabs/Module/Profiles.php:723 +#: ../../Zotlabs/Module/Profiles.php:724 msgid "Postal/Zip code" msgstr "Código postal" -#: ../../Zotlabs/Module/Profiles.php:724 +#: ../../Zotlabs/Module/Profiles.php:725 msgid "Country" msgstr "País" -#: ../../Zotlabs/Module/Profiles.php:729 +#: ../../Zotlabs/Module/Profiles.php:730 msgid "Who (if applicable)" msgstr "Quién (si es pertinente)" -#: ../../Zotlabs/Module/Profiles.php:729 +#: ../../Zotlabs/Module/Profiles.php:730 msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "Por ejemplo: ana123, María González, sara@ejemplo.com" -#: ../../Zotlabs/Module/Profiles.php:730 +#: ../../Zotlabs/Module/Profiles.php:731 msgid "Since (date)" msgstr "Desde (fecha)" -#: ../../Zotlabs/Module/Profiles.php:733 +#: ../../Zotlabs/Module/Profiles.php:734 msgid "Tell us about yourself" msgstr "Háblenos de usted" -#: ../../Zotlabs/Module/Profiles.php:735 +#: ../../Zotlabs/Module/Profiles.php:736 msgid "Hometown" msgstr "Lugar de nacimiento" -#: ../../Zotlabs/Module/Profiles.php:736 +#: ../../Zotlabs/Module/Profiles.php:737 msgid "Political views" msgstr "Ideas políticas" -#: ../../Zotlabs/Module/Profiles.php:737 +#: ../../Zotlabs/Module/Profiles.php:738 msgid "Religious views" msgstr "Creencias religiosas" -#: ../../Zotlabs/Module/Profiles.php:738 +#: ../../Zotlabs/Module/Profiles.php:739 msgid "Keywords used in directory listings" msgstr "Palabras clave utilizadas en los listados de directorios" -#: ../../Zotlabs/Module/Profiles.php:738 +#: ../../Zotlabs/Module/Profiles.php:739 msgid "Example: fishing photography software" msgstr "Por ejemplo: software de fotografía submarina" -#: ../../Zotlabs/Module/Profiles.php:741 +#: ../../Zotlabs/Module/Profiles.php:742 msgid "Musical interests" msgstr "Preferencias musicales" -#: ../../Zotlabs/Module/Profiles.php:742 +#: ../../Zotlabs/Module/Profiles.php:743 msgid "Books, literature" msgstr "Libros, literatura" -#: ../../Zotlabs/Module/Profiles.php:743 +#: ../../Zotlabs/Module/Profiles.php:744 msgid "Television" msgstr "Televisión" -#: ../../Zotlabs/Module/Profiles.php:744 +#: ../../Zotlabs/Module/Profiles.php:745 msgid "Film/Dance/Culture/Entertainment" msgstr "Cine, danza, cultura, entretenimiento" -#: ../../Zotlabs/Module/Profiles.php:745 +#: ../../Zotlabs/Module/Profiles.php:746 msgid "Hobbies/Interests" msgstr "Aficiones o intereses" -#: ../../Zotlabs/Module/Profiles.php:746 +#: ../../Zotlabs/Module/Profiles.php:747 msgid "Love/Romance" msgstr "Vida sentimental o amorosa" -#: ../../Zotlabs/Module/Profiles.php:748 +#: ../../Zotlabs/Module/Profiles.php:749 msgid "School/Education" msgstr "Estudios" -#: ../../Zotlabs/Module/Profiles.php:749 +#: ../../Zotlabs/Module/Profiles.php:750 msgid "Contact information and social networks" msgstr "Información de contacto y redes sociales" -#: ../../Zotlabs/Module/Profiles.php:750 +#: ../../Zotlabs/Module/Profiles.php:751 msgid "My other channels" msgstr "Mis otros canales" -#: ../../Zotlabs/Module/Profiles.php:770 ../../include/identity.php:948 +#: ../../Zotlabs/Module/Profiles.php:771 ../../include/identity.php:948 msgid "Profile Image" msgstr "Imagen del perfil" -#: ../../Zotlabs/Module/Profiles.php:780 ../../include/identity.php:930 +#: ../../Zotlabs/Module/Profiles.php:781 ../../include/identity.php:930 #: ../../include/nav.php:88 msgid "Edit Profiles" msgstr "Editar perfiles" @@ -4831,8 +4816,8 @@ 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:148 -#: ../../boot.php:1584 +#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 +#: ../../boot.php:1597 msgid "Register" msgstr "Registrarse" @@ -6140,8 +6125,8 @@ msgstr "Ignorar/Ocultar" msgid "post" msgstr "la entrada" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 -#: ../../include/text.php:1975 +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948 +#: ../../include/conversation.php:150 msgid "comment" msgstr "el comentario" @@ -6743,15 +6728,15 @@ msgstr "Registro revocado para %s" msgid "Account verified. Please login." msgstr "Cuenta verificada. Por favor, inicie sesión." -#: ../../include/account.php:719 ../../include/account.php:721 +#: ../../include/account.php:722 ../../include/account.php:724 msgid "Click here to upgrade." msgstr "Pulse aquí para actualizar" -#: ../../include/account.php:727 +#: ../../include/account.php:730 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:732 +#: ../../include/account.php:735 msgid "This action is not available under your subscription plan." msgstr "Esta acción no está disponible en su plan de suscripción." @@ -7027,9 +7012,327 @@ 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/api.php:1338 -msgid "Public Timeline" -msgstr "Cronología pública" +#: ../../include/text.php:394 +msgid "prev" +msgstr "anterior" + +#: ../../include/text.php:396 +msgid "first" +msgstr "primera" + +#: ../../include/text.php:425 +msgid "last" +msgstr "última" + +#: ../../include/text.php:428 +msgid "next" +msgstr "próxima" + +#: ../../include/text.php:438 +msgid "older" +msgstr "más antiguas" + +#: ../../include/text.php:440 +msgid "newer" +msgstr "más recientes" + +#: ../../include/text.php:822 +msgid "No connections" +msgstr "Sin conexiones" + +#: ../../include/text.php:847 +#, php-format +msgid "View all %s connections" +msgstr "Ver todas las %s conexiones" + +#: ../../include/text.php:992 ../../include/text.php:997 +msgid "poke" +msgstr "un toque" + +#: ../../include/text.php:992 ../../include/text.php:997 +#: ../../include/conversation.php:243 +msgid "poked" +msgstr "ha dado un toque a" + +#: ../../include/text.php:998 +msgid "ping" +msgstr "un \"ping\"" + +#: ../../include/text.php:998 +msgid "pinged" +msgstr "ha enviado un \"ping\" a" + +#: ../../include/text.php:999 +msgid "prod" +msgstr "una incitación " + +#: ../../include/text.php:999 +msgid "prodded" +msgstr "ha incitado a " + +#: ../../include/text.php:1000 +msgid "slap" +msgstr "una bofetada " + +#: ../../include/text.php:1000 +msgid "slapped" +msgstr "ha abofeteado a " + +#: ../../include/text.php:1001 +msgid "finger" +msgstr "un \"finger\" " + +#: ../../include/text.php:1001 +msgid "fingered" +msgstr "envió un \"finger\" a" + +#: ../../include/text.php:1002 +msgid "rebuff" +msgstr "un reproche" + +#: ../../include/text.php:1002 +msgid "rebuffed" +msgstr "ha hecho un reproche a " + +#: ../../include/text.php:1014 +msgid "happy" +msgstr "feliz " + +#: ../../include/text.php:1015 +msgid "sad" +msgstr "triste " + +#: ../../include/text.php:1016 +msgid "mellow" +msgstr "tranquilo/a" + +#: ../../include/text.php:1017 +msgid "tired" +msgstr "cansado/a " + +#: ../../include/text.php:1018 +msgid "perky" +msgstr "vivaz" + +#: ../../include/text.php:1019 +msgid "angry" +msgstr "enfadado/a" + +#: ../../include/text.php:1020 +msgid "stupefied" +msgstr "asombrado/a" + +#: ../../include/text.php:1021 +msgid "puzzled" +msgstr "perplejo/a" + +#: ../../include/text.php:1022 +msgid "interested" +msgstr "interesado/a" + +#: ../../include/text.php:1023 +msgid "bitter" +msgstr "amargado/a" + +#: ../../include/text.php:1024 +msgid "cheerful" +msgstr "alegre" + +#: ../../include/text.php:1025 +msgid "alive" +msgstr "animado/a" + +#: ../../include/text.php:1026 +msgid "annoyed" +msgstr "molesto/a" + +#: ../../include/text.php:1027 +msgid "anxious" +msgstr "ansioso/a" + +#: ../../include/text.php:1028 +msgid "cranky" +msgstr "de mal humor" + +#: ../../include/text.php:1029 +msgid "disturbed" +msgstr "perturbado/a" + +#: ../../include/text.php:1030 +msgid "frustrated" +msgstr "frustrado/a" + +#: ../../include/text.php:1031 +msgid "depressed" +msgstr "deprimido/a" + +#: ../../include/text.php:1032 +msgid "motivated" +msgstr "motivado/a" + +#: ../../include/text.php:1033 +msgid "relaxed" +msgstr "relajado/a" + +#: ../../include/text.php:1034 +msgid "surprised" +msgstr "sorprendido/a" + +#: ../../include/text.php:1206 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "lunes" + +#: ../../include/text.php:1206 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "martes" + +#: ../../include/text.php:1206 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "miércoles" + +#: ../../include/text.php:1206 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "jueves" + +#: ../../include/text.php:1206 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "viernes" + +#: ../../include/text.php:1206 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "sábado" + +#: ../../include/text.php:1206 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "domingo" + +#: ../../include/text.php:1210 ../../include/js_strings.php:45 +msgid "January" +msgstr "enero" + +#: ../../include/text.php:1210 ../../include/js_strings.php:46 +msgid "February" +msgstr "febrero" + +#: ../../include/text.php:1210 ../../include/js_strings.php:47 +msgid "March" +msgstr "marzo" + +#: ../../include/text.php:1210 ../../include/js_strings.php:48 +msgid "April" +msgstr "abril" + +#: ../../include/text.php:1210 +msgid "May" +msgstr "mayo" + +#: ../../include/text.php:1210 ../../include/js_strings.php:50 +msgid "June" +msgstr "junio" + +#: ../../include/text.php:1210 ../../include/js_strings.php:51 +msgid "July" +msgstr "julio" + +#: ../../include/text.php:1210 ../../include/js_strings.php:52 +msgid "August" +msgstr "agosto" + +#: ../../include/text.php:1210 ../../include/js_strings.php:53 +msgid "September" +msgstr "septiembre" + +#: ../../include/text.php:1210 ../../include/js_strings.php:54 +msgid "October" +msgstr "octubre" + +#: ../../include/text.php:1210 ../../include/js_strings.php:55 +msgid "November" +msgstr "noviembre" + +#: ../../include/text.php:1210 ../../include/js_strings.php:56 +msgid "December" +msgstr "diciembre" + +#: ../../include/text.php:1287 ../../include/text.php:1291 +msgid "Unknown Attachment" +msgstr "Adjunto no reconocido" + +#: ../../include/text.php:1293 +msgid "unknown" +msgstr "desconocido" + +#: ../../include/text.php:1329 +msgid "remove category" +msgstr "eliminar categoría" + +#: ../../include/text.php:1406 +msgid "remove from file" +msgstr "eliminar del fichero" + +#: ../../include/text.php:1437 ../../include/bb2diaspora.php:487 +#: ../../include/event.php:22 +msgid "l F d, Y \\@ g:i A" +msgstr "l d de F, Y \\@ G:i" + +#: ../../include/text.php:1441 ../../include/bb2diaspora.php:493 +#: ../../include/event.php:30 +msgid "Starts:" +msgstr "Comienza:" + +#: ../../include/text.php:1445 ../../include/bb2diaspora.php:501 +#: ../../include/event.php:40 +msgid "Finishes:" +msgstr "Finaliza:" + +#: ../../include/text.php:1735 ../../include/text.php:1807 +msgid "default" +msgstr "por defecto" + +#: ../../include/text.php:1743 +msgid "Page layout" +msgstr "Plantilla de la página" + +#: ../../include/text.php:1743 +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:1785 +msgid "Page content type" +msgstr "Tipo de contenido de la página" + +#: ../../include/text.php:1819 +msgid "Select an alternate language" +msgstr "Seleccionar un idioma alternativo" + +#: ../../include/text.php:1953 +msgid "activity" +msgstr "la actividad" + +#: ../../include/text.php:2248 +msgid "Design Tools" +msgstr "Herramientas de diseño web" + +#: ../../include/text.php:2254 +msgid "Pages" +msgstr "Páginas" + +#: ../../include/zot.php:680 +msgid "Invalid data packet" +msgstr "Paquete de datos no válido" + +#: ../../include/zot.php:696 +msgid "Unable to verify channel signature" +msgstr "No ha sido posible de verificar la firma del canal" + +#: ../../include/zot.php:2332 +#, 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:3670 +msgid "invalid target signature" +msgstr "La firma recibida no es válida" #: ../../include/apps.php:128 msgid "Site Admin" @@ -7044,28 +7347,28 @@ msgstr "Marcadores" msgid "Address Book" msgstr "Libreta de direcciones" -#: ../../include/apps.php:131 ../../include/nav.php:110 ../../boot.php:1602 +#: ../../include/apps.php:131 ../../include/nav.php:110 ../../boot.php:1615 msgid "Login" msgstr "Iniciar sesión" -#: ../../include/apps.php:133 ../../include/nav.php:182 +#: ../../include/apps.php:133 ../../include/nav.php:179 msgid "Grid" msgstr "Red" -#: ../../include/apps.php:137 ../../include/nav.php:185 +#: ../../include/apps.php:137 ../../include/nav.php:182 msgid "Channel Home" msgstr "Mi canal" #: ../../include/apps.php:140 ../../include/conversation.php:1667 -#: ../../include/conversation.php:1670 ../../include/nav.php:204 +#: ../../include/conversation.php:1670 ../../include/nav.php:201 msgid "Events" msgstr "Eventos" -#: ../../include/apps.php:141 ../../include/nav.php:170 +#: ../../include/apps.php:141 ../../include/nav.php:167 msgid "Directory" msgstr "Directorio" -#: ../../include/apps.php:143 ../../include/nav.php:196 +#: ../../include/apps.php:143 ../../include/nav.php:193 msgid "Mail" msgstr "Correo" @@ -7105,97 +7408,23 @@ msgstr "Instalar" msgid "Purchase" msgstr "Comprar" -#: ../../include/network.php:659 -msgid "view full size" -msgstr "Ver en el tamaño original" - -#: ../../include/network.php:1827 ../../include/enotify.php:57 -msgid "$Projectname Notification" -msgstr "Notificación de $Projectname" - -#: ../../include/network.php:1828 ../../include/enotify.php:58 -msgid "$projectname" -msgstr "$projectname" - -#: ../../include/network.php:1830 ../../include/enotify.php:60 -msgid "Thank You," -msgstr "Gracias," - -#: ../../include/network.php:1832 ../../include/enotify.php:62 -#, php-format -msgid "%s Administrator" -msgstr "%s Administrador" +#: ../../include/import.php:23 +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/network.php:1889 -msgid "No Subject" -msgstr "Sin asunto" +#: ../../include/import.php:70 +msgid "Channel clone failed. Import failed." +msgstr "La clonación del canal no ha salido bien. La importación ha fallado." #: ../../include/bb2diaspora.php:398 msgid "Attachments:" msgstr "Ficheros adjuntos:" -#: ../../include/bb2diaspora.php:487 ../../include/event.php:22 -#: ../../include/text.php:1437 -msgid "l F d, Y \\@ g:i A" -msgstr "l d de F, Y \\@ G:i" - #: ../../include/bb2diaspora.php:489 msgid "$Projectname event notification:" msgstr "Notificación de eventos de $Projectname:" -#: ../../include/bb2diaspora.php:493 ../../include/event.php:30 -#: ../../include/text.php:1441 -msgid "Starts:" -msgstr "Comienza:" - -#: ../../include/bb2diaspora.php:501 ../../include/event.php:40 -#: ../../include/text.php:1445 -msgid "Finishes:" -msgstr "Finaliza:" - -#: ../../include/bbcode.php:123 ../../include/bbcode.php:801 -#: ../../include/bbcode.php:804 ../../include/bbcode.php:809 -#: ../../include/bbcode.php:812 ../../include/bbcode.php:815 -#: ../../include/bbcode.php:818 ../../include/bbcode.php:823 -#: ../../include/bbcode.php:826 ../../include/bbcode.php:831 -#: ../../include/bbcode.php:834 ../../include/bbcode.php:837 -#: ../../include/bbcode.php:840 -msgid "Image/photo" -msgstr "Imagen/foto" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:851 -msgid "Encrypted content" -msgstr "Contenido cifrado" - -#: ../../include/bbcode.php:179 -#, php-format -msgid "Install %s element: " -msgstr "Instalar el elemento %s:" - -#: ../../include/bbcode.php:183 -#, 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:255 -#, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s escribió %2$s siguiente %3$s" - -#: ../../include/bbcode.php:545 -msgid "Different viewers will see this text differently" -msgstr "Visitantes diferentes verán este texto de forma distinta" - -#: ../../include/bbcode.php:762 -msgid "$1 spoiler" -msgstr "$1 spoiler" - -#: ../../include/bbcode.php:789 -msgid "$1 wrote:" -msgstr "$1 escribió:" - #: ../../include/conversation.php:204 #, php-format msgid "%1$s is now connected with %2$s" @@ -7206,11 +7435,6 @@ 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:992 -#: ../../include/text.php:997 -msgid "poked" -msgstr "ha dado un toque a" - #: ../../include/conversation.php:691 #, php-format msgid "View %s's profile @ %s" @@ -7232,7 +7456,7 @@ msgstr "Mostrar en su contexto" msgid "remove" msgstr "eliminar" -#: ../../include/conversation.php:854 ../../include/nav.php:256 +#: ../../include/conversation.php:854 ../../include/nav.php:247 msgid "Loading..." msgstr "Cargando..." @@ -7556,6 +7780,10 @@ 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/api.php:1338 +msgid "Public Timeline" +msgstr "Cronología pública" + #: ../../include/contact_selectors.php:56 msgid "Frequently" msgstr "Frecuentemente" @@ -7756,7 +7984,7 @@ msgstr "Edad:" msgid "YYYY-MM-DD or MM-DD" msgstr "AAAA-MM-DD o MM-DD" -#: ../../include/datetime.php:273 ../../boot.php:2432 +#: ../../include/datetime.php:273 ../../boot.php:2445 msgid "never" msgstr "nunca" @@ -7845,6 +8073,23 @@ msgstr "Solo foros públicos" msgid "This Website Only" msgstr "Solo este sitio web" +#: ../../include/enotify.php:57 ../../include/network.php:1827 +msgid "$Projectname Notification" +msgstr "Notificación de $Projectname" + +#: ../../include/enotify.php:58 ../../include/network.php:1828 +msgid "$projectname" +msgstr "$projectname" + +#: ../../include/enotify.php:60 ../../include/network.php:1830 +msgid "Thank You," +msgstr "Gracias," + +#: ../../include/enotify.php:62 ../../include/network.php:1832 +#, php-format +msgid "%s Administrator" +msgstr "%s Administrador" + #: ../../include/enotify.php:96 #, php-format msgid "%s <!item_type!>" @@ -8390,6 +8635,53 @@ msgstr "Sin canales en ningún grupo" msgid "add" msgstr "añadir" +#: ../../include/bbcode.php:123 ../../include/bbcode.php:813 +#: ../../include/bbcode.php:816 ../../include/bbcode.php:821 +#: ../../include/bbcode.php:824 ../../include/bbcode.php:827 +#: ../../include/bbcode.php:830 ../../include/bbcode.php:835 +#: ../../include/bbcode.php:838 ../../include/bbcode.php:843 +#: ../../include/bbcode.php:846 ../../include/bbcode.php:849 +#: ../../include/bbcode.php:852 +msgid "Image/photo" +msgstr "Imagen/foto" + +#: ../../include/bbcode.php:162 ../../include/bbcode.php:863 +msgid "Encrypted content" +msgstr "Contenido cifrado" + +#: ../../include/bbcode.php:179 +#, php-format +msgid "Install %s element: " +msgstr "Instalar el elemento %s:" + +#: ../../include/bbcode.php:183 +#, 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:255 +#, php-format +msgid "%1$s wrote the following %2$s %3$s" +msgstr "%1$s escribió %2$s siguiente %3$s" + +#: ../../include/bbcode.php:333 ../../include/bbcode.php:341 +msgid "Click to open/close" +msgstr "Pulsar para abrir/cerrar" + +#: ../../include/bbcode.php:341 +msgid "spoiler" +msgstr "spoiler" + +#: ../../include/bbcode.php:556 +msgid "Different viewers will see this text differently" +msgstr "Visitantes diferentes verán este texto de forma distinta" + +#: ../../include/bbcode.php:801 +msgid "$1 wrote:" +msgstr "$1 escribió:" + #: ../../include/items.php:1138 ../../include/items.php:1183 msgid "(Unknown)" msgstr "(Desconocido)" @@ -8444,32 +8736,13 @@ msgstr "Conexión no encontrada" msgid "profile photo" msgstr "foto del perfil" -#: ../../include/photos.php:112 -#, 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:119 -msgid "Image file is empty." -msgstr "El fichero de imagen está vacío. " - -#: ../../include/photos.php:257 -msgid "Photo storage failed." -msgstr "La foto no ha podido ser guardada." - -#: ../../include/photos.php:297 -msgid "a new photo" -msgstr "una nueva foto" - -#: ../../include/photos.php:301 -#, 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/network.php:659 +msgid "view full size" +msgstr "Ver en el tamaño original" -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Subir nuevas fotos" +#: ../../include/network.php:1889 +msgid "No Subject" +msgstr "Sin asunto" #: ../../include/widgets.php:103 msgid "System" @@ -8568,15 +8841,15 @@ msgstr "Menú de correo privado" msgid "Combined View" msgstr "Vista combinada" -#: ../../include/widgets.php:609 ../../include/nav.php:199 +#: ../../include/widgets.php:609 ../../include/nav.php:196 msgid "Inbox" msgstr "Bandeja de entrada" -#: ../../include/widgets.php:614 ../../include/nav.php:200 +#: ../../include/widgets.php:614 ../../include/nav.php:197 msgid "Outbox" msgstr "Bandeja de salida" -#: ../../include/widgets.php:619 ../../include/nav.php:201 +#: ../../include/widgets.php:619 ../../include/nav.php:198 msgid "New Message" msgstr "Nuevo mensaje" @@ -8708,7 +8981,7 @@ msgstr "Examinar la cola" msgid "DB updates" msgstr "Actualizaciones de la base de datos" -#: ../../include/widgets.php:1368 ../../include/nav.php:219 +#: ../../include/widgets.php:1368 ../../include/nav.php:216 msgid "Admin" msgstr "Administrador" @@ -8881,55 +9154,11 @@ msgstr " " msgid "timeago.numbers" msgstr "timeago.numbers" -#: ../../include/js_strings.php:45 ../../include/text.php:1210 -msgid "January" -msgstr "enero" - -#: ../../include/js_strings.php:46 ../../include/text.php:1210 -msgid "February" -msgstr "febrero" - -#: ../../include/js_strings.php:47 ../../include/text.php:1210 -msgid "March" -msgstr "marzo" - -#: ../../include/js_strings.php:48 ../../include/text.php:1210 -msgid "April" -msgstr "abril" - #: ../../include/js_strings.php:49 msgctxt "long" msgid "May" msgstr "mayo" -#: ../../include/js_strings.php:50 ../../include/text.php:1210 -msgid "June" -msgstr "junio" - -#: ../../include/js_strings.php:51 ../../include/text.php:1210 -msgid "July" -msgstr "julio" - -#: ../../include/js_strings.php:52 ../../include/text.php:1210 -msgid "August" -msgstr "agosto" - -#: ../../include/js_strings.php:53 ../../include/text.php:1210 -msgid "September" -msgstr "septiembre" - -#: ../../include/js_strings.php:54 ../../include/text.php:1210 -msgid "October" -msgstr "octubre" - -#: ../../include/js_strings.php:55 ../../include/text.php:1210 -msgid "November" -msgstr "noviembre" - -#: ../../include/js_strings.php:56 ../../include/text.php:1210 -msgid "December" -msgstr "diciembre" - #: ../../include/js_strings.php:57 msgid "Jan" msgstr "ene" @@ -8979,34 +9208,6 @@ msgstr "nov" msgid "Dec" msgstr "dic" -#: ../../include/js_strings.php:69 ../../include/text.php:1206 -msgid "Sunday" -msgstr "domingo" - -#: ../../include/js_strings.php:70 ../../include/text.php:1206 -msgid "Monday" -msgstr "lunes" - -#: ../../include/js_strings.php:71 ../../include/text.php:1206 -msgid "Tuesday" -msgstr "martes" - -#: ../../include/js_strings.php:72 ../../include/text.php:1206 -msgid "Wednesday" -msgstr "miércoles" - -#: ../../include/js_strings.php:73 ../../include/text.php:1206 -msgid "Thursday" -msgstr "jueves" - -#: ../../include/js_strings.php:74 ../../include/text.php:1206 -msgid "Friday" -msgstr "viernes" - -#: ../../include/js_strings.php:75 ../../include/text.php:1206 -msgid "Saturday" -msgstr "sábado" - #: ../../include/js_strings.php:76 msgid "Sun" msgstr "dom" @@ -9076,14 +9277,166 @@ msgstr "No ha sido posible determinar el remitente. " msgid "Stored post could not be verified." msgstr "No se han podido verificar las publicaciones guardadas." -#: ../../include/import.php:23 -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/nav.php:82 ../../include/nav.php:113 ../../boot.php:1614 +msgid "Logout" +msgstr "Finalizar sesión" -#: ../../include/import.php:70 -msgid "Channel clone failed. Import failed." -msgstr "La clonación del canal no ha salido bien. La importación ha fallado." +#: ../../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 +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 +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:252 +msgid "@name, #tag, ?doc, content" +msgstr "@nombre, #etiqueta, ?ayuda, contenido" + +#: ../../include/nav.php:253 +msgid "Please wait..." +msgstr "Espere por favor…" #: ../../include/oembed.php:267 msgid "Embedded content" @@ -9242,400 +9595,32 @@ msgstr "Especial - Repositorio de grupo" msgid "Custom/Expert Mode" msgstr "Modo personalizado/experto" -#: ../../include/text.php:394 -msgid "prev" -msgstr "anterior" - -#: ../../include/text.php:396 -msgid "first" -msgstr "primera" - -#: ../../include/text.php:425 -msgid "last" -msgstr "última" - -#: ../../include/text.php:428 -msgid "next" -msgstr "próxima" - -#: ../../include/text.php:438 -msgid "older" -msgstr "más antiguas" - -#: ../../include/text.php:440 -msgid "newer" -msgstr "más recientes" - -#: ../../include/text.php:822 -msgid "No connections" -msgstr "Sin conexiones" - -#: ../../include/text.php:847 -#, php-format -msgid "View all %s connections" -msgstr "Ver todas las %s conexiones" - -#: ../../include/text.php:992 ../../include/text.php:997 -msgid "poke" -msgstr "un toque" - -#: ../../include/text.php:998 -msgid "ping" -msgstr "un \"ping\"" - -#: ../../include/text.php:998 -msgid "pinged" -msgstr "ha enviado un \"ping\" a" - -#: ../../include/text.php:999 -msgid "prod" -msgstr "una incitación " - -#: ../../include/text.php:999 -msgid "prodded" -msgstr "ha incitado a " - -#: ../../include/text.php:1000 -msgid "slap" -msgstr "una bofetada " - -#: ../../include/text.php:1000 -msgid "slapped" -msgstr "ha abofeteado a " - -#: ../../include/text.php:1001 -msgid "finger" -msgstr "un \"finger\" " - -#: ../../include/text.php:1001 -msgid "fingered" -msgstr "envió un \"finger\" a" - -#: ../../include/text.php:1002 -msgid "rebuff" -msgstr "un reproche" - -#: ../../include/text.php:1002 -msgid "rebuffed" -msgstr "ha hecho un reproche a " - -#: ../../include/text.php:1014 -msgid "happy" -msgstr "feliz " - -#: ../../include/text.php:1015 -msgid "sad" -msgstr "triste " - -#: ../../include/text.php:1016 -msgid "mellow" -msgstr "tranquilo/a" - -#: ../../include/text.php:1017 -msgid "tired" -msgstr "cansado/a " - -#: ../../include/text.php:1018 -msgid "perky" -msgstr "vivaz" - -#: ../../include/text.php:1019 -msgid "angry" -msgstr "enfadado/a" - -#: ../../include/text.php:1020 -msgid "stupefied" -msgstr "asombrado/a" - -#: ../../include/text.php:1021 -msgid "puzzled" -msgstr "perplejo/a" - -#: ../../include/text.php:1022 -msgid "interested" -msgstr "interesado/a" - -#: ../../include/text.php:1023 -msgid "bitter" -msgstr "amargado/a" - -#: ../../include/text.php:1024 -msgid "cheerful" -msgstr "alegre" - -#: ../../include/text.php:1025 -msgid "alive" -msgstr "animado/a" - -#: ../../include/text.php:1026 -msgid "annoyed" -msgstr "molesto/a" - -#: ../../include/text.php:1027 -msgid "anxious" -msgstr "ansioso/a" - -#: ../../include/text.php:1028 -msgid "cranky" -msgstr "de mal humor" - -#: ../../include/text.php:1029 -msgid "disturbed" -msgstr "perturbado/a" - -#: ../../include/text.php:1030 -msgid "frustrated" -msgstr "frustrado/a" - -#: ../../include/text.php:1031 -msgid "depressed" -msgstr "deprimido/a" - -#: ../../include/text.php:1032 -msgid "motivated" -msgstr "motivado/a" - -#: ../../include/text.php:1033 -msgid "relaxed" -msgstr "relajado/a" - -#: ../../include/text.php:1034 -msgid "surprised" -msgstr "sorprendido/a" - -#: ../../include/text.php:1210 -msgid "May" -msgstr "mayo" - -#: ../../include/text.php:1287 ../../include/text.php:1291 -msgid "Unknown Attachment" -msgstr "Adjunto no reconocido" - -#: ../../include/text.php:1293 -msgid "unknown" -msgstr "desconocido" - -#: ../../include/text.php:1329 -msgid "remove category" -msgstr "eliminar categoría" - -#: ../../include/text.php:1406 -msgid "remove from file" -msgstr "eliminar del fichero" - -#: ../../include/text.php:1548 ../../include/text.php:1559 -msgid "Click to open/close" -msgstr "Pulsar para abrir/cerrar" - -#: ../../include/text.php:1764 ../../include/text.php:1836 -msgid "default" -msgstr "por defecto" - -#: ../../include/text.php:1772 -msgid "Page layout" -msgstr "Plantilla de la página" - -#: ../../include/text.php:1772 -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:1814 -msgid "Page content type" -msgstr "Tipo de contenido de la página" - -#: ../../include/text.php:1848 -msgid "Select an alternate language" -msgstr "Seleccionar un idioma alternativo" - -#: ../../include/text.php:1980 -msgid "activity" -msgstr "la actividad" - -#: ../../include/text.php:2275 -msgid "Design Tools" -msgstr "Herramientas de diseño web" - -#: ../../include/text.php:2281 -msgid "Pages" -msgstr "Páginas" - -#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1601 -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 -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 -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 +#: ../../include/photos.php:112 #, 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:148 -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:170 -msgid "Channel Directory" -msgstr "Directorio de canales" - -#: ../../include/nav.php:182 -msgid "Your grid" -msgstr "Mi red" - -#: ../../include/nav.php:183 -msgid "Mark all grid notifications seen" -msgstr "Marcar todas las notificaciones de la red como vistas" - -#: ../../include/nav.php:185 -msgid "Channel home" -msgstr "Mi canal" - -#: ../../include/nav.php:186 -msgid "Mark all channel notifications seen" -msgstr "Marcar todas las notificaciones del canal como leídas" - -#: ../../include/nav.php:192 -msgid "Notices" -msgstr "Avisos" - -#: ../../include/nav.php:192 -msgid "Notifications" -msgstr "Notificaciones" - -#: ../../include/nav.php:193 -msgid "See all notifications" -msgstr "Ver todas las notificaciones" - -#: ../../include/nav.php:196 -msgid "Private mail" -msgstr "Correo privado" - -#: ../../include/nav.php:197 -msgid "See all private messages" -msgstr "Ver todas los mensajes privados" - -#: ../../include/nav.php:198 -msgid "Mark all private messages seen" -msgstr "Marcar todos los mensajes privados como leídos" - -#: ../../include/nav.php:204 -msgid "Event Calendar" -msgstr "Calendario de eventos" - -#: ../../include/nav.php:205 -msgid "See all events" -msgstr "Ver todos los eventos" - -#: ../../include/nav.php:206 -msgid "Mark all events seen" -msgstr "Marcar todos los eventos como leidos" - -#: ../../include/nav.php:209 -msgid "Manage Your Channels" -msgstr "Gestionar sus canales" - -#: ../../include/nav.php:211 -msgid "Account/Channel Settings" -msgstr "Ajustes de cuenta/canales" - -#: ../../include/nav.php:219 -msgid "Site Setup and Configuration" -msgstr "Ajustes y configuración del sitio" - -#: ../../include/nav.php:261 -msgid "@name, #tag, ?doc, content" -msgstr "@nombre, #etiqueta, ?ayuda, contenido" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "La imagen excede el límite de %lu bytes del sitio" -#: ../../include/nav.php:262 -msgid "Please wait..." -msgstr "Espere por favor…" +#: ../../include/photos.php:119 +msgid "Image file is empty." +msgstr "El fichero de imagen está vacío. " -#: ../../include/zot.php:680 -msgid "Invalid data packet" -msgstr "Paquete de datos no válido" +#: ../../include/photos.php:257 +msgid "Photo storage failed." +msgstr "La foto no ha podido ser guardada." -#: ../../include/zot.php:696 -msgid "Unable to verify channel signature" -msgstr "No ha sido posible de verificar la firma del canal" +#: ../../include/photos.php:297 +msgid "a new photo" +msgstr "una nueva foto" -#: ../../include/zot.php:2332 +#: ../../include/photos.php:301 #, php-format -msgid "Unable to verify site signature for %s" -msgstr "No ha sido posible de verificar la firma del sitio para %s" +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s ha publicado %2$s en %3$s" -#: ../../include/zot.php:3670 -msgid "invalid target signature" -msgstr "La firma recibida no es válida" +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "Subir nuevas fotos" #: ../../view/theme/redbasic/php/config.php:82 msgid "Focus (Hubzilla default)" @@ -9794,41 +9779,41 @@ msgstr "La actualización %s ha fallado. Mire el informe de errores." msgid "Update Error at %s" msgstr "Error de actualización en %s" -#: ../../boot.php:1583 +#: ../../boot.php:1596 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:1605 +#: ../../boot.php:1618 msgid "Password" msgstr "Contraseña" -#: ../../boot.php:1606 +#: ../../boot.php:1619 msgid "Remember me" msgstr "Recordarme" -#: ../../boot.php:1609 +#: ../../boot.php:1622 msgid "Forgot your password?" msgstr "¿Olvidó su contraseña?" -#: ../../boot.php:2238 +#: ../../boot.php:2251 msgid "toggle mobile" msgstr "cambiar a modo móvil" -#: ../../boot.php:2391 +#: ../../boot.php:2404 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:2394 +#: ../../boot.php:2407 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Error SSL del sitio web en %s" -#: ../../boot.php:2431 +#: ../../boot.php:2444 msgid "Cron/Scheduled tasks not running." msgstr "Las tareas del Planificador/Cron no están funcionando." -#: ../../boot.php:2435 +#: ../../boot.php:2448 #, 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 f4512d058..b995ee27b 100644 --- a/view/es-es/hstrings.php +++ b/view/es-es/hstrings.php @@ -152,8 +152,6 @@ App::$strings["Block communications from these channels"] = "Bloquear la comunic App::$strings["Allow embedded HTML content only from these domains"] = "Permitir contenido con HTML incorporado solo desde estos dominios"; App::$strings["One site per line. Leave empty to allow from any site by default"] = "Un sitio por línea. Dejar en blanco para permitirlo por defecto desde cualquier sitio"; App::$strings["Block embedded HTML from these domains"] = "Bloquear contenido con HTML incorporado desde estos dominios"; -App::$strings["Cooperative embed security"] = "Seguridad cooperativa incorporada"; -App::$strings["Enable to share embed security with other compatible sites/hubs"] = "Habilitar la compartición de seguridad incorporada con otros sitios compatibles"; App::$strings["Update has been marked successful"] = "La actualización ha sido marcada como exitosa"; App::$strings["Executing %s failed. Check system logs."] = "La ejecución de %s ha fallado. Mirar en los informes del sistema."; App::$strings["Update %s was successfully applied."] = "La actualización de %s se ha realizado exitosamente."; @@ -428,6 +426,7 @@ App::$strings["Connection requests will be approved without your interaction"] = 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."; +App::$strings["Connection Tools"] = "Gestión de las conexiones"; App::$strings["Slide to adjust your degree of friendship"] = "Deslizar para ajustar el grado de amistad"; App::$strings["Rating"] = "Valoración"; App::$strings["Slide to adjust your rating"] = "Deslizar para ajustar su valoración"; @@ -523,25 +522,25 @@ App::$strings["Italic"] = "Itálico "; App::$strings["Underline"] = "Subrayar"; App::$strings["Quote"] = "Citar"; App::$strings["Code"] = "Código"; -App::$strings["Upload photo"] = "Subir foto"; App::$strings["Attach file"] = "Adjuntar fichero"; -App::$strings["Insert YouTube video"] = "Insertar vídeo de YouTube"; -App::$strings["Insert Vorbis [.ogg] video"] = "Insertar vídeo Vorbis [.ogg]"; -App::$strings["Insert Vorbis [.ogg] audio"] = "Insertar audio Vorbis [.ogg]"; -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["Please wait"] = "Espere por favor"; App::$strings["Permission settings"] = "Configuración de permisos"; App::$strings["Public post"] = "Entrada pública"; App::$strings["Title (optional)"] = "Título (opcional)"; App::$strings["Categories (optional, comma-separated list)"] = "Categorías (opcional, lista separada por comas)"; App::$strings["Example: bob@example.com, mary@example.com"] = "Ejemplo: roberto@ejemplo.com, maría@ejemplo.com"; App::$strings["Preview"] = "Previsualizar"; -App::$strings["Set expiration date"] = "Configurar fecha de caducidad"; App::$strings["Edit Block"] = "Modificar este bloque"; App::$strings["Delete layout?"] = "¿Borrar la plantilla?"; +App::$strings["Upload photo"] = "Subir foto"; +App::$strings["Insert YouTube video"] = "Insertar vídeo de YouTube"; +App::$strings["Insert Vorbis [.ogg] video"] = "Insertar vídeo Vorbis [.ogg]"; +App::$strings["Insert Vorbis [.ogg] audio"] = "Insertar audio Vorbis [.ogg]"; +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["Please wait"] = "Espere por favor"; App::$strings["Layout Description (Optional)"] = "Descripción de la plantilla (opcional)"; App::$strings["Layout Name"] = "Nombre de la plantilla"; +App::$strings["Set expiration date"] = "Configurar fecha de caducidad"; App::$strings["Edit Layout"] = "Modificar la plantilla"; App::$strings["Item is not editable"] = "El elemento no es editable"; App::$strings["Expires YYYY-MM-DD HH:MM"] = "Caduca YYYY-MM-DD HH:MM"; @@ -938,6 +937,7 @@ App::$strings["__ctx:noun__ Dislike"] = array( 0 => "No me gusta", 1 => "No me gusta", ); +App::$strings["Photo Tools"] = "Gestión de las fotos"; App::$strings["In This Photo:"] = "En esta foto:"; App::$strings["Map"] = "Mapa"; App::$strings["__ctx:noun__ Likes"] = "Me gusta"; @@ -982,6 +982,7 @@ App::$strings["Hide your connections list from viewers of this profile"] = "Ocul 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"; @@ -1573,7 +1574,85 @@ 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["Public Timeline"] = "Cronología pública"; +App::$strings["prev"] = "anterior"; +App::$strings["first"] = "primera"; +App::$strings["last"] = "última"; +App::$strings["next"] = "próxima"; +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["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 "; +App::$strings["prodded"] = "ha incitado a "; +App::$strings["slap"] = "una bofetada "; +App::$strings["slapped"] = "ha abofeteado a "; +App::$strings["finger"] = "un \"finger\" "; +App::$strings["fingered"] = "envió un \"finger\" a"; +App::$strings["rebuff"] = "un reproche"; +App::$strings["rebuffed"] = "ha hecho un reproche a "; +App::$strings["happy"] = "feliz "; +App::$strings["sad"] = "triste "; +App::$strings["mellow"] = "tranquilo/a"; +App::$strings["tired"] = "cansado/a "; +App::$strings["perky"] = "vivaz"; +App::$strings["angry"] = "enfadado/a"; +App::$strings["stupefied"] = "asombrado/a"; +App::$strings["puzzled"] = "perplejo/a"; +App::$strings["interested"] = "interesado/a"; +App::$strings["bitter"] = "amargado/a"; +App::$strings["cheerful"] = "alegre"; +App::$strings["alive"] = "animado/a"; +App::$strings["annoyed"] = "molesto/a"; +App::$strings["anxious"] = "ansioso/a"; +App::$strings["cranky"] = "de mal humor"; +App::$strings["disturbed"] = "perturbado/a"; +App::$strings["frustrated"] = "frustrado/a"; +App::$strings["depressed"] = "deprimido/a"; +App::$strings["motivated"] = "motivado/a"; +App::$strings["relaxed"] = "relajado/a"; +App::$strings["surprised"] = "sorprendido/a"; +App::$strings["Monday"] = "lunes"; +App::$strings["Tuesday"] = "martes"; +App::$strings["Wednesday"] = "miércoles"; +App::$strings["Thursday"] = "jueves"; +App::$strings["Friday"] = "viernes"; +App::$strings["Saturday"] = "sábado"; +App::$strings["Sunday"] = "domingo"; +App::$strings["January"] = "enero"; +App::$strings["February"] = "febrero"; +App::$strings["March"] = "marzo"; +App::$strings["April"] = "abril"; +App::$strings["May"] = "mayo"; +App::$strings["June"] = "junio"; +App::$strings["July"] = "julio"; +App::$strings["August"] = "agosto"; +App::$strings["September"] = "septiembre"; +App::$strings["October"] = "octubre"; +App::$strings["November"] = "noviembre"; +App::$strings["December"] = "diciembre"; +App::$strings["Unknown Attachment"] = "Adjunto no reconocido"; +App::$strings["unknown"] = "desconocido"; +App::$strings["remove category"] = "eliminar categoría"; +App::$strings["remove from file"] = "eliminar del fichero"; +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["default"] = "por defecto"; +App::$strings["Page layout"] = "Plantilla de la página"; +App::$strings["You can create your own with the layouts tool"] = "Puede crear su propia disposición gráfica con la herramienta de plantillas"; +App::$strings["Page content type"] = "Tipo de contenido de la página"; +App::$strings["Select an alternate language"] = "Seleccionar un idioma alternativo"; +App::$strings["activity"] = "la actividad"; +App::$strings["Design Tools"] = "Herramientas de diseño web"; +App::$strings["Pages"] = "Páginas"; +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["Site Admin"] = "Administrador del sitio"; App::$strings["Bookmarks"] = "Marcadores"; App::$strings["Address Book"] = "Libreta de direcciones"; @@ -1592,28 +1671,12 @@ App::$strings["Features"] = "Funcionalidades"; App::$strings["Post"] = "Publicación"; App::$strings["Install"] = "Instalar"; App::$strings["Purchase"] = "Comprar"; -App::$strings["view full size"] = "Ver en el tamaño original"; -App::$strings["\$Projectname Notification"] = "Notificación de \$Projectname"; -App::$strings["\$projectname"] = "\$projectname"; -App::$strings["Thank You,"] = "Gracias,"; -App::$strings["%s Administrator"] = "%s Administrador"; -App::$strings["No Subject"] = "Sin asunto"; +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["Attachments:"] = "Ficheros adjuntos:"; -App::$strings["l F d, Y \\@ g:i A"] = "l d de F, Y \\@ G:i"; App::$strings["\$Projectname event notification:"] = "Notificación de eventos de \$Projectname:"; -App::$strings["Starts:"] = "Comienza:"; -App::$strings["Finishes:"] = "Finaliza:"; -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["Different viewers will see this text differently"] = "Visitantes diferentes verán este texto de forma distinta"; -App::$strings["$1 spoiler"] = "$1 spoiler"; -App::$strings["$1 wrote:"] = "$1 escribió:"; 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:"; @@ -1718,6 +1781,7 @@ App::$strings["User '%s' deleted"] = "El usuario '%s' ha sido eliminado"; App::$strings["Logged out."] = "Desconectado/a."; App::$strings["Failed authentication"] = "Autenticación fallida."; 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["Public Timeline"] = "Cronología pública"; App::$strings["Frequently"] = "Frecuentemente"; App::$strings["Hourly"] = "Cada hora"; App::$strings["Twice daily"] = "Dos veces al día"; @@ -1808,6 +1872,10 @@ 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["\$Projectname Notification"] = "Notificación de \$Projectname"; +App::$strings["\$projectname"] = "\$projectname"; +App::$strings["Thank You,"] = "Gracias,"; +App::$strings["%s Administrator"] = "%s Administrador"; App::$strings["%s <!item_type!>"] = "%s <!item_type!>"; App::$strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla:Aviso] Nuevo mensaje en %s"; App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s le ha enviado un nuevo mensaje privado en %3\$s."; @@ -1932,6 +2000,15 @@ 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["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."; @@ -1945,12 +2022,8 @@ 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["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["view full size"] = "Ver en el tamaño original"; +App::$strings["No Subject"] = "Sin asunto"; App::$strings["System"] = "Sistema"; App::$strings["Create Personal App"] = "Crear una aplicación personal"; App::$strings["Edit Personal App"] = "Editar una aplicación personal"; @@ -2052,18 +2125,7 @@ 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["January"] = "enero"; -App::$strings["February"] = "febrero"; -App::$strings["March"] = "marzo"; -App::$strings["April"] = "abril"; App::$strings["__ctx:long__ May"] = "mayo"; -App::$strings["June"] = "junio"; -App::$strings["July"] = "julio"; -App::$strings["August"] = "agosto"; -App::$strings["September"] = "septiembre"; -App::$strings["October"] = "octubre"; -App::$strings["November"] = "noviembre"; -App::$strings["December"] = "diciembre"; App::$strings["Jan"] = "ene"; App::$strings["Feb"] = "feb"; App::$strings["Mar"] = "mar"; @@ -2076,13 +2138,6 @@ App::$strings["Sep"] = "sep"; App::$strings["Oct"] = "oct"; App::$strings["Nov"] = "nov"; App::$strings["Dec"] = "dic"; -App::$strings["Sunday"] = "domingo"; -App::$strings["Monday"] = "lunes"; -App::$strings["Tuesday"] = "martes"; -App::$strings["Wednesday"] = "miércoles"; -App::$strings["Thursday"] = "jueves"; -App::$strings["Friday"] = "viernes"; -App::$strings["Saturday"] = "sábado"; App::$strings["Sun"] = "dom"; App::$strings["Mon"] = "lun"; App::$strings["Tue"] = "mar"; @@ -2099,101 +2154,6 @@ App::$strings["No recipient provided."] = "No se ha especificado ningún destina 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["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["Embedded content"] = "Contenido incorporado"; -App::$strings["Embedding disabled"] = "Incrustación deshabilitada"; -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["prev"] = "anterior"; -App::$strings["first"] = "primera"; -App::$strings["last"] = "última"; -App::$strings["next"] = "próxima"; -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["poke"] = "un toque"; -App::$strings["ping"] = "un \"ping\""; -App::$strings["pinged"] = "ha enviado un \"ping\" a"; -App::$strings["prod"] = "una incitación "; -App::$strings["prodded"] = "ha incitado a "; -App::$strings["slap"] = "una bofetada "; -App::$strings["slapped"] = "ha abofeteado a "; -App::$strings["finger"] = "un \"finger\" "; -App::$strings["fingered"] = "envió un \"finger\" a"; -App::$strings["rebuff"] = "un reproche"; -App::$strings["rebuffed"] = "ha hecho un reproche a "; -App::$strings["happy"] = "feliz "; -App::$strings["sad"] = "triste "; -App::$strings["mellow"] = "tranquilo/a"; -App::$strings["tired"] = "cansado/a "; -App::$strings["perky"] = "vivaz"; -App::$strings["angry"] = "enfadado/a"; -App::$strings["stupefied"] = "asombrado/a"; -App::$strings["puzzled"] = "perplejo/a"; -App::$strings["interested"] = "interesado/a"; -App::$strings["bitter"] = "amargado/a"; -App::$strings["cheerful"] = "alegre"; -App::$strings["alive"] = "animado/a"; -App::$strings["annoyed"] = "molesto/a"; -App::$strings["anxious"] = "ansioso/a"; -App::$strings["cranky"] = "de mal humor"; -App::$strings["disturbed"] = "perturbado/a"; -App::$strings["frustrated"] = "frustrado/a"; -App::$strings["depressed"] = "deprimido/a"; -App::$strings["motivated"] = "motivado/a"; -App::$strings["relaxed"] = "relajado/a"; -App::$strings["surprised"] = "sorprendido/a"; -App::$strings["May"] = "mayo"; -App::$strings["Unknown Attachment"] = "Adjunto no reconocido"; -App::$strings["unknown"] = "desconocido"; -App::$strings["remove category"] = "eliminar categoría"; -App::$strings["remove from file"] = "eliminar del fichero"; -App::$strings["Click to open/close"] = "Pulsar para abrir/cerrar"; -App::$strings["default"] = "por defecto"; -App::$strings["Page layout"] = "Plantilla de la página"; -App::$strings["You can create your own with the layouts tool"] = "Puede crear su propia disposición gráfica con la herramienta de plantillas"; -App::$strings["Page content type"] = "Tipo de contenido de la página"; -App::$strings["Select an alternate language"] = "Seleccionar un idioma alternativo"; -App::$strings["activity"] = "la actividad"; -App::$strings["Design Tools"] = "Herramientas de diseño web"; -App::$strings["Pages"] = "Páginas"; App::$strings["Logout"] = "Finalizar sesión"; App::$strings["End this session"] = "Finalizar esta sesión"; App::$strings["Home"] = "Inicio"; @@ -2234,10 +2194,51 @@ App::$strings["Account/Channel Settings"] = "Ajustes de cuenta/canales"; App::$strings["Site Setup and Configuration"] = "Ajustes y configuración del sitio"; App::$strings["@name, #tag, ?doc, content"] = "@nombre, #etiqueta, ?ayuda, contenido"; App::$strings["Please wait..."] = "Espere por favor…"; -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["Embedded content"] = "Contenido incorporado"; +App::$strings["Embedding disabled"] = "Incrustación deshabilitada"; +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["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["Focus (Hubzilla default)"] = "Focus (predefinido)"; App::$strings["Theme settings"] = "Ajustes del tema"; App::$strings["Select scheme"] = "Elegir un esquema"; diff --git a/view/js/acl.js b/view/js/acl.js index 65f1009ed..7940a9bdc 100644 --- a/view/js/acl.js +++ b/view/js/acl.js @@ -196,16 +196,13 @@ ACL.prototype.update_view = function() { $('#jot-perms-icon').removeClass('icon-lock').addClass('icon-unlock'); $('#jot-public').show(); $('.profile-jot-net input').attr('disabled', false); - if(typeof editor !== 'undefined' && editor !== false) { - $('#profile-jot-desc').html(ispublic); - } } else { that.showall.removeClass("btn-warning").addClass("btn-default"); /* jot acl */ $('#jot-perms-icon').removeClass('icon-unlock').addClass('icon-lock'); $('#jot-public').hide(); $('.profile-jot-net input').attr('disabled', 'disabled'); - $('#profile-jot-desc').html(' '); + } $("#acl-list-content .acl-list-item").each(function() { $(this).removeClass("groupshow grouphide"); diff --git a/view/js/mod_photos.js b/view/js/mod_photos.js index 34e2e3f25..8af75b4eb 100644 --- a/view/js/mod_photos.js +++ b/view/js/mod_photos.js @@ -1,10 +1,6 @@ /** * JavaScript used by mod/photos */ - -// is this variable used anywhere? -var ispublic = aStr.everybody; - $(document).ready(function() { $("#photo-edit-newtag").contact_autocomplete(baseurl + '/acl', 'p', false, function(data) { diff --git a/view/js/mod_settings.js b/view/js/mod_settings.js index e28a18b9f..9a7550ac1 100644 --- a/view/js/mod_settings.js +++ b/view/js/mod_settings.js @@ -2,9 +2,6 @@ * JavaScript used by mod/settings */ -// is this used anywhere? -var ispublic = aStr.everybody; - $(document).ready(function() { $('form').areYouSure({'addRemoveFieldsMarksDirty':true, 'message': aStr['leavethispage'] }); // Warn user about unsaved settings @@ -127,4 +124,4 @@ function channel_privacy_macro(n) { $('#id_profile_in_directory_onoff .off').addClass('hidden'); $('#id_profile_in_directory').val(1); } -}
\ No newline at end of file +} diff --git a/view/nl/hmessages.po b/view/nl/hmessages.po index 85b3676f1..b2a7b83ef 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-04-22 00:01-0700\n" -"PO-Revision-Date: 2016-04-25 13:03+0000\n" +"POT-Creation-Date: 2016-04-29 00:01-0700\n" +"PO-Revision-Date: 2016-04-30 11:56+0000\n" "Last-Translator: jeroenpraat <jeroenpraat@xs4all.nl>\n" "Language-Team: Dutch (http://www.transifex.com/Friendica/red-matrix/language/nl/)\n" "MIME-Version: 1.0\n" @@ -22,7 +22,7 @@ msgstr "" msgid "parent" msgstr "omhoog" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2633 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2606 msgid "Collection" msgstr "map" @@ -47,7 +47,7 @@ msgid "Schedule Outbox" msgstr "Planning-postvak UIT" #: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:797 -#: ../../Zotlabs/Module/Photos.php:1241 ../../include/apps.php:360 +#: ../../Zotlabs/Module/Photos.php:1242 ../../include/apps.php:360 #: ../../include/apps.php:415 ../../include/conversation.php:1037 #: ../../include/widgets.php:1457 msgid "Unknown" @@ -76,7 +76,7 @@ msgstr "Aanmaken" #: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:305 #: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Photos.php:824 ../../Zotlabs/Module/Photos.php:1365 +#: ../../Zotlabs/Module/Photos.php:824 ../../Zotlabs/Module/Photos.php:1366 #: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1470 msgid "Upload" msgstr "Uploaden" @@ -124,9 +124,9 @@ msgstr "Bewerken" #: ../../Zotlabs/Module/Blocks.php:161 #: ../../Zotlabs/Module/Connections.php:263 #: ../../Zotlabs/Module/Connedit.php:573 -#: ../../Zotlabs/Module/Editblock.php:187 +#: ../../Zotlabs/Module/Editblock.php:180 #: ../../Zotlabs/Module/Editlayout.php:184 -#: ../../Zotlabs/Module/Editwebpage.php:228 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Editwebpage.php:221 ../../Zotlabs/Module/Group.php:177 #: ../../Zotlabs/Module/Photos.php:1172 ../../Zotlabs/Module/Settings.php:651 #: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Module/Webpages.php:191 #: ../../include/ItemObject.php:120 ../../include/apps.php:260 @@ -373,7 +373,7 @@ msgstr "Niet ondersteund" #: ../../Zotlabs/Module/Settings.php:579 ../../include/dir_fns.php:141 #: ../../include/dir_fns.php:142 ../../include/dir_fns.php:143 #: ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1606 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1619 msgid "No" msgstr "Nee" @@ -393,7 +393,7 @@ msgstr "Ja - met goedkeuring" #: ../../Zotlabs/Module/Settings.php:579 ../../include/dir_fns.php:141 #: ../../include/dir_fns.php:142 ../../include/dir_fns.php:143 #: ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1606 +#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1619 msgid "Yes" msgstr "Ja" @@ -424,7 +424,7 @@ msgstr "Hub-instellingen" #: ../../Zotlabs/Module/Admin.php:1778 ../../Zotlabs/Module/Appman.php:103 #: ../../Zotlabs/Module/Cal.php:341 ../../Zotlabs/Module/Chat.php:194 #: ../../Zotlabs/Module/Chat.php:236 ../../Zotlabs/Module/Connect.php:97 -#: ../../Zotlabs/Module/Connedit.php:733 ../../Zotlabs/Module/Events.php:472 +#: ../../Zotlabs/Module/Connedit.php:734 ../../Zotlabs/Module/Events.php:472 #: ../../Zotlabs/Module/Events.php:669 #: ../../Zotlabs/Module/Filestorage.php:160 #: ../../Zotlabs/Module/Fsuggest.php:112 ../../Zotlabs/Module/Group.php:85 @@ -830,14 +830,6 @@ msgstr "Eén per regel. Laat leeg om standaard vanaf elk domein toe te staan" msgid "Block embedded HTML from these domains" msgstr "Ingesloten (embedded) HTML vanaf deze domeinen blokkeren" -#: ../../Zotlabs/Module/Admin.php:728 -msgid "Cooperative embed security" -msgstr "Met elkaar ingesloten (embedded) HTML beveiligen" - -#: ../../Zotlabs/Module/Admin.php:728 -msgid "Enable to share embed security with other compatible sites/hubs" -msgstr "Beveiliging omtrent ingesloten (embedded) HTML met andere compatibele hubs delen." - #: ../../Zotlabs/Module/Admin.php:743 msgid "Update has been marked successful" msgstr "Update is als succesvol gemarkeerd" @@ -957,7 +949,7 @@ msgstr "Tijd/datum verzoek" #: ../../Zotlabs/Module/Admin.php:997 ../../Zotlabs/Module/Admin.php:1006 #: ../../Zotlabs/Module/Id.php:17 ../../Zotlabs/Module/Id.php:18 -#: ../../include/contact_selectors.php:81 ../../boot.php:1604 +#: ../../include/contact_selectors.php:81 ../../boot.php:1617 msgid "Email" msgstr "E-mail" @@ -1137,7 +1129,7 @@ msgstr "Omschakelen" #: ../../Zotlabs/Module/Admin.php:1274 ../../Zotlabs/Module/Admin.php:1496 #: ../../include/apps.php:134 ../../include/widgets.php:589 -#: ../../include/nav.php:211 +#: ../../include/nav.php:208 msgid "Settings" msgstr "Instellingen" @@ -1254,8 +1246,8 @@ msgstr "Extra informatie (optioneel)" #: ../../Zotlabs/Module/Admin.php:1695 ../../Zotlabs/Module/Admin.php:1715 #: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/widgets.php:201 -#: ../../include/text.php:905 ../../include/text.php:917 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/text.php:905 +#: ../../include/text.php:917 ../../include/widgets.php:201 msgid "Save" msgstr "Opslaan" @@ -1339,7 +1331,7 @@ msgstr "Naam van app" #: ../../Zotlabs/Module/Appman.php:95 ../../Zotlabs/Module/Appman.php:96 #: ../../Zotlabs/Module/Events.php:448 ../../Zotlabs/Module/Events.php:453 -#: ../../Zotlabs/Module/Profiles.php:712 ../../Zotlabs/Module/Profiles.php:716 +#: ../../Zotlabs/Module/Profiles.php:713 ../../Zotlabs/Module/Profiles.php:717 #: ../../include/datetime.php:246 msgid "Required" msgstr "Vereist" @@ -1374,7 +1366,7 @@ msgid "Location (URL) to purchase app" msgstr "Locatie (URL) om de app aan te schaffen" #: ../../Zotlabs/Module/Apps.php:40 ../../include/widgets.php:102 -#: ../../include/nav.php:165 +#: ../../include/nav.php:163 msgid "Apps" msgstr "Apps" @@ -1395,7 +1387,7 @@ msgstr "Kanaal niet gevonden." msgid "Block Name" msgstr "Bloknaam" -#: ../../Zotlabs/Module/Blocks.php:153 ../../include/text.php:2278 +#: ../../Zotlabs/Module/Blocks.php:153 ../../include/text.php:2251 msgid "Blocks" msgstr "Blokken" @@ -1453,7 +1445,7 @@ msgid "l, F j" msgstr "l j F" #: ../../Zotlabs/Module/Cal.php:311 ../../Zotlabs/Module/Events.php:634 -#: ../../include/text.php:1743 +#: ../../include/text.php:1714 msgid "Link to Source" msgstr "Originele locatie" @@ -1547,10 +1539,10 @@ msgstr "Vul een URL in:" msgid "Encrypt text" msgstr "Tekst versleutelen" -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Editblock.php:149 +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Editblock.php:148 #: ../../Zotlabs/Module/Editlayout.php:147 #: ../../Zotlabs/Module/Editpost.php:126 -#: ../../Zotlabs/Module/Editwebpage.php:189 ../../Zotlabs/Module/Mail.php:253 +#: ../../Zotlabs/Module/Editwebpage.php:188 ../../Zotlabs/Module/Mail.php:253 #: ../../Zotlabs/Module/Mail.php:383 ../../include/conversation.php:1225 msgid "Insert web link" msgstr "Weblink invoegen" @@ -1588,7 +1580,7 @@ msgid "No chatrooms available" msgstr "Geen chatkanalen beschikbaar" #: ../../Zotlabs/Module/Chat.php:250 ../../Zotlabs/Module/Manage.php:141 -#: ../../Zotlabs/Module/Profiles.php:781 +#: ../../Zotlabs/Module/Profiles.php:782 msgid "Create New" msgstr "Nieuwe aanmaken" @@ -1780,13 +1772,13 @@ msgid "Recent activity" msgstr "Recente activiteit" #: ../../Zotlabs/Module/Connections.php:302 ../../include/text.php:834 -#: ../../include/nav.php:189 +#: ../../include/nav.php:186 msgid "Connections" msgstr "Connecties" #: ../../Zotlabs/Module/Connections.php:306 ../../Zotlabs/Module/Search.php:44 -#: ../../include/apps.php:147 ../../include/text.php:904 -#: ../../include/text.php:916 ../../include/nav.php:167 +#: ../../include/text.php:904 ../../include/text.php:916 +#: ../../include/apps.php:147 ../../include/nav.php:165 msgid "Search" msgstr "Zoeken" @@ -2001,73 +1993,77 @@ msgid "" "connections." msgstr "Permissies die op deze pagina staan vermeld worden op alle nieuwe connecties toegepast." -#: ../../Zotlabs/Module/Connedit.php:715 +#: ../../Zotlabs/Module/Connedit.php:714 +msgid "Connection Tools" +msgstr "Connectiehulpmiddelen" + +#: ../../Zotlabs/Module/Connedit.php:716 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:716 ../../Zotlabs/Module/Rate.php:161 +#: ../../Zotlabs/Module/Connedit.php:717 ../../Zotlabs/Module/Rate.php:161 #: ../../include/js_strings.php:20 msgid "Rating" msgstr "Beoordeling" -#: ../../Zotlabs/Module/Connedit.php:717 +#: ../../Zotlabs/Module/Connedit.php:718 msgid "Slide to adjust your rating" msgstr "Gebruik de schuif om je beoordeling te geven" -#: ../../Zotlabs/Module/Connedit.php:718 ../../Zotlabs/Module/Connedit.php:723 +#: ../../Zotlabs/Module/Connedit.php:719 ../../Zotlabs/Module/Connedit.php:724 msgid "Optionally explain your rating" msgstr "Verklaar jouw beoordeling (niet verplicht)" -#: ../../Zotlabs/Module/Connedit.php:720 +#: ../../Zotlabs/Module/Connedit.php:721 msgid "Custom Filter" msgstr "Berichtenfilter" -#: ../../Zotlabs/Module/Connedit.php:721 +#: ../../Zotlabs/Module/Connedit.php:722 msgid "Only import posts with this text" msgstr "Importeer alleen berichten met deze tekst" -#: ../../Zotlabs/Module/Connedit.php:721 ../../Zotlabs/Module/Connedit.php:722 +#: ../../Zotlabs/Module/Connedit.php:722 ../../Zotlabs/Module/Connedit.php:723 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:722 +#: ../../Zotlabs/Module/Connedit.php:723 msgid "Do not import posts with this text" msgstr "Importeer geen berichten met deze tekst" -#: ../../Zotlabs/Module/Connedit.php:724 +#: ../../Zotlabs/Module/Connedit.php:725 msgid "This information is public!" msgstr "Deze informatie is openbaar!" -#: ../../Zotlabs/Module/Connedit.php:729 +#: ../../Zotlabs/Module/Connedit.php:730 msgid "Connection Pending Approval" msgstr "Connectie moet nog geaccepteerd worden" -#: ../../Zotlabs/Module/Connedit.php:732 +#: ../../Zotlabs/Module/Connedit.php:733 msgid "inherited" msgstr "geërfd" -#: ../../Zotlabs/Module/Connedit.php:734 +#: ../../Zotlabs/Module/Connedit.php:735 #, 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:736 +#: ../../Zotlabs/Module/Connedit.php:737 msgid "Their Settings" msgstr "Hun instellingen" -#: ../../Zotlabs/Module/Connedit.php:737 +#: ../../Zotlabs/Module/Connedit.php:738 msgid "My Settings" msgstr "Mijn instellingen" -#: ../../Zotlabs/Module/Connedit.php:739 +#: ../../Zotlabs/Module/Connedit.php:740 msgid "Individual Permissions" msgstr "Individuele permissies" -#: ../../Zotlabs/Module/Connedit.php:740 +#: ../../Zotlabs/Module/Connedit.php:741 msgid "" "Some permissions may be inherited from your channel's <a " "href=\"settings\"><strong>privacy settings</strong></a>, which have higher " @@ -2075,7 +2071,7 @@ msgid "" " settings here." msgstr "Sommige permissies worden mogelijk overgeërfd van de <a href=\"settings\">privacy-instellingen</a> van jouw kanaal, die een hogere prioriteit hebben dan deze individuele instellingen. Je kan je deze overgeërfde permissies hier <strong>niet</strong> veranderen." -#: ../../Zotlabs/Module/Connedit.php:741 +#: ../../Zotlabs/Module/Connedit.php:742 msgid "" "Some permissions may be inherited from your channel's <a " "href=\"settings\"><strong>privacy settings</strong></a>, which have higher " @@ -2083,7 +2079,7 @@ msgid "" "they wont have any impact unless the inherited setting changes." msgstr "Sommige permissies worden mogelijk overgeërfd van de <a href=\"settings\">privacy-instellingen</a> 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:742 +#: ../../Zotlabs/Module/Connedit.php:743 msgid "Last update:" msgstr "Laatste wijziging:" @@ -2231,8 +2227,8 @@ msgid "Age:" msgstr "Leeftijd:" #: ../../Zotlabs/Module/Directory.php:311 ../../include/identity.php:1022 -#: ../../include/bb2diaspora.php:509 ../../include/event.php:52 -#: ../../include/text.php:1452 +#: ../../include/text.php:1452 ../../include/bb2diaspora.php:509 +#: ../../include/event.php:52 msgid "Location:" msgstr "Plaats:" @@ -2444,124 +2440,62 @@ msgid "Code" msgstr "Broncode" #: ../../Zotlabs/Module/Editblock.php:147 -#: ../../Zotlabs/Module/Editlayout.php:145 -#: ../../Zotlabs/Module/Editpost.php:124 -#: ../../Zotlabs/Module/Editwebpage.php:187 -#: ../../include/conversation.php:1221 -msgid "Upload photo" -msgstr "Foto uploaden" - -#: ../../Zotlabs/Module/Editblock.php:148 #: ../../Zotlabs/Module/Editlayout.php:146 #: ../../Zotlabs/Module/Editpost.php:125 -#: ../../Zotlabs/Module/Editwebpage.php:188 ../../Zotlabs/Module/Mail.php:252 +#: ../../Zotlabs/Module/Editwebpage.php:187 ../../Zotlabs/Module/Mail.php:252 #: ../../Zotlabs/Module/Mail.php:382 ../../include/conversation.php:1223 msgid "Attach file" msgstr "Bestand toevoegen" -#: ../../Zotlabs/Module/Editblock.php:150 -#: ../../Zotlabs/Module/Editlayout.php:148 -#: ../../Zotlabs/Module/Editpost.php:127 -#: ../../Zotlabs/Module/Editwebpage.php:190 -msgid "Insert YouTube video" -msgstr "YouTube-video invoegen" - #: ../../Zotlabs/Module/Editblock.php:151 -#: ../../Zotlabs/Module/Editlayout.php:149 -#: ../../Zotlabs/Module/Editpost.php:128 -#: ../../Zotlabs/Module/Editwebpage.php:191 -msgid "Insert Vorbis [.ogg] video" -msgstr "Vorbis-video [.ogg] invoegen" - -#: ../../Zotlabs/Module/Editblock.php:152 -#: ../../Zotlabs/Module/Editlayout.php:150 -#: ../../Zotlabs/Module/Editpost.php:129 -#: ../../Zotlabs/Module/Editwebpage.php:192 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Vorbis-audio [.ogg] invoegen" - -#: ../../Zotlabs/Module/Editblock.php:153 -#: ../../Zotlabs/Module/Editlayout.php:151 -#: ../../Zotlabs/Module/Editpost.php:130 -#: ../../Zotlabs/Module/Editwebpage.php:193 -#: ../../include/conversation.php:1231 -msgid "Set your location" -msgstr "Locatie instellen" - -#: ../../Zotlabs/Module/Editblock.php:154 -#: ../../Zotlabs/Module/Editlayout.php:152 -#: ../../Zotlabs/Module/Editpost.php:131 -#: ../../Zotlabs/Module/Editwebpage.php:194 -#: ../../include/conversation.php:1236 -msgid "Clear browser location" -msgstr "Locatie van webbrowser wissen" - -#: ../../Zotlabs/Module/Editblock.php:155 -#: ../../Zotlabs/Module/Editlayout.php:153 -#: ../../Zotlabs/Module/Editpost.php:135 -#: ../../Zotlabs/Module/Editwebpage.php:195 -#: ../../Zotlabs/Module/Photos.php:1072 ../../include/ItemObject.php:389 -#: ../../include/conversation.php:740 ../../include/conversation.php:1244 -msgid "Please wait" -msgstr "Even wachten" - -#: ../../Zotlabs/Module/Editblock.php:156 #: ../../Zotlabs/Module/Editlayout.php:154 #: ../../Zotlabs/Module/Editpost.php:136 -#: ../../Zotlabs/Module/Editwebpage.php:196 +#: ../../Zotlabs/Module/Editwebpage.php:191 #: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1245 msgid "Permission settings" msgstr "Permissies" -#: ../../Zotlabs/Module/Editblock.php:164 +#: ../../Zotlabs/Module/Editblock.php:159 #: ../../Zotlabs/Module/Editlayout.php:161 #: ../../Zotlabs/Module/Editpost.php:144 -#: ../../Zotlabs/Module/Editwebpage.php:205 +#: ../../Zotlabs/Module/Editwebpage.php:200 #: ../../include/conversation.php:1254 msgid "Public post" msgstr "Openbaar bericht" -#: ../../Zotlabs/Module/Editblock.php:167 +#: ../../Zotlabs/Module/Editblock.php:162 #: ../../Zotlabs/Module/Editpost.php:147 -#: ../../Zotlabs/Module/Editwebpage.php:210 +#: ../../Zotlabs/Module/Editwebpage.php:205 #: ../../include/conversation.php:1239 msgid "Title (optional)" msgstr "Titel (optioneel)" -#: ../../Zotlabs/Module/Editblock.php:170 +#: ../../Zotlabs/Module/Editblock.php:165 #: ../../Zotlabs/Module/Editlayout.php:168 #: ../../Zotlabs/Module/Editpost.php:149 -#: ../../Zotlabs/Module/Editwebpage.php:212 +#: ../../Zotlabs/Module/Editwebpage.php:207 #: ../../include/conversation.php:1243 msgid "Categories (optional, comma-separated list)" msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" -#: ../../Zotlabs/Module/Editblock.php:171 +#: ../../Zotlabs/Module/Editblock.php:166 #: ../../Zotlabs/Module/Editlayout.php:169 #: ../../Zotlabs/Module/Editpost.php:150 -#: ../../Zotlabs/Module/Editwebpage.php:213 +#: ../../Zotlabs/Module/Editwebpage.php:208 #: ../../include/conversation.php:1256 msgid "Example: bob@example.com, mary@example.com" msgstr "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be" -#: ../../Zotlabs/Module/Editblock.php:176 +#: ../../Zotlabs/Module/Editblock.php:171 #: ../../Zotlabs/Module/Editpost.php:155 -#: ../../Zotlabs/Module/Editwebpage.php:217 +#: ../../Zotlabs/Module/Editwebpage.php:212 #: ../../Zotlabs/Module/Events.php:469 ../../Zotlabs/Module/Photos.php:1092 #: ../../Zotlabs/Module/Webpages.php:196 ../../include/ItemObject.php:712 #: ../../include/conversation.php:1186 ../../include/page_widgets.php:40 msgid "Preview" msgstr "Voorvertoning" -#: ../../Zotlabs/Module/Editblock.php:181 -#: ../../Zotlabs/Module/Editlayout.php:178 -#: ../../Zotlabs/Module/Editpost.php:161 -#: ../../Zotlabs/Module/Editwebpage.php:222 ../../Zotlabs/Module/Mail.php:257 -#: ../../Zotlabs/Module/Mail.php:387 ../../include/conversation.php:1269 -msgid "Set expiration date" -msgstr "Verloopdatum instellen" - -#: ../../Zotlabs/Module/Editblock.php:186 +#: ../../Zotlabs/Module/Editblock.php:179 msgid "Edit Block" msgstr "Blok bewerken" @@ -2569,6 +2503,43 @@ msgstr "Blok bewerken" msgid "Delete layout?" msgstr "Lay-out verwijderen?" +#: ../../Zotlabs/Module/Editlayout.php:145 +#: ../../Zotlabs/Module/Editpost.php:124 ../../include/conversation.php:1221 +msgid "Upload photo" +msgstr "Foto uploaden" + +#: ../../Zotlabs/Module/Editlayout.php:148 +#: ../../Zotlabs/Module/Editpost.php:127 +msgid "Insert YouTube video" +msgstr "YouTube-video invoegen" + +#: ../../Zotlabs/Module/Editlayout.php:149 +#: ../../Zotlabs/Module/Editpost.php:128 +msgid "Insert Vorbis [.ogg] video" +msgstr "Vorbis-video [.ogg] invoegen" + +#: ../../Zotlabs/Module/Editlayout.php:150 +#: ../../Zotlabs/Module/Editpost.php:129 +msgid "Insert Vorbis [.ogg] audio" +msgstr "Vorbis-audio [.ogg] invoegen" + +#: ../../Zotlabs/Module/Editlayout.php:151 +#: ../../Zotlabs/Module/Editpost.php:130 ../../include/conversation.php:1231 +msgid "Set your location" +msgstr "Locatie instellen" + +#: ../../Zotlabs/Module/Editlayout.php:152 +#: ../../Zotlabs/Module/Editpost.php:131 ../../include/conversation.php:1236 +msgid "Clear browser location" +msgstr "Locatie van webbrowser wissen" + +#: ../../Zotlabs/Module/Editlayout.php:153 +#: ../../Zotlabs/Module/Editpost.php:135 ../../Zotlabs/Module/Photos.php:1072 +#: ../../include/ItemObject.php:389 ../../include/conversation.php:740 +#: ../../include/conversation.php:1244 +msgid "Please wait" +msgstr "Even wachten" + #: ../../Zotlabs/Module/Editlayout.php:164 #: ../../Zotlabs/Module/Layouts.php:128 msgid "Layout Description (Optional)" @@ -2579,6 +2550,12 @@ msgstr "Lay-out-omschrijving (optioneel)" msgid "Layout Name" msgstr "Naam lay-out" +#: ../../Zotlabs/Module/Editlayout.php:178 +#: ../../Zotlabs/Module/Editpost.php:161 ../../Zotlabs/Module/Mail.php:257 +#: ../../Zotlabs/Module/Mail.php:387 ../../include/conversation.php:1269 +msgid "Set expiration date" +msgstr "Verloopdatum instellen" + #: ../../Zotlabs/Module/Editlayout.php:183 msgid "Edit Layout" msgstr "Lay-out bewerken" @@ -2623,7 +2600,7 @@ msgstr "Webpagina verwijderen?" msgid "Page link title" msgstr "Titel van paginalink" -#: ../../Zotlabs/Module/Editwebpage.php:227 +#: ../../Zotlabs/Module/Editwebpage.php:220 msgid "Edit Webpage" msgstr "Webpagina bewerken" @@ -2653,8 +2630,8 @@ msgid "Event not found." msgstr "Gebeurtenis niet gevonden" #: ../../Zotlabs/Module/Events.php:253 ../../Zotlabs/Module/Like.php:373 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123 -#: ../../include/event.php:915 ../../include/text.php:1970 +#: ../../Zotlabs/Module/Tagger.php:51 ../../include/text.php:1943 +#: ../../include/conversation.php:123 ../../include/event.php:915 msgid "event" msgstr "gebeurtenis" @@ -2717,7 +2694,7 @@ msgid "Edit Location" msgstr "Locatie bewerken" #: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Locs.php:117 -#: ../../Zotlabs/Module/Profiles.php:476 ../../Zotlabs/Module/Profiles.php:701 +#: ../../Zotlabs/Module/Profiles.php:476 ../../Zotlabs/Module/Profiles.php:702 #: ../../Zotlabs/Module/Pubsites.php:40 ../../include/js_strings.php:25 msgid "Location" msgstr "Locatie" @@ -2900,7 +2877,7 @@ msgstr "Hulp:" #: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 #: ../../Zotlabs/Module/Layouts.php:181 ../../include/apps.php:142 -#: ../../include/nav.php:161 +#: ../../include/nav.php:159 msgid "Help" msgstr "Hulp" @@ -2967,7 +2944,7 @@ msgstr "Profielfoto 128px" msgid "Timezone" msgstr "Tijdzone" -#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:734 +#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:735 msgid "Homepage URL" msgstr "URL homepagina" @@ -3245,7 +3222,7 @@ msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." 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:179 ../../include/text.php:2280 +#: ../../Zotlabs/Module/Layouts.php:179 ../../include/text.php:2253 msgid "Layouts" msgstr "Lay-outs" @@ -3297,13 +3274,13 @@ msgid "Previous action reversed." msgstr "Vorige actie omgedraaid" #: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 -#: ../../include/text.php:1967 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/text.php:1940 +#: ../../include/conversation.php:120 msgid "photo" msgstr "foto" #: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/conversation.php:148 ../../include/text.php:1973 +#: ../../include/text.php:1946 ../../include/conversation.php:148 msgid "status" msgstr "bericht" @@ -3439,7 +3416,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:90 ../../boot.php:1610 +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1623 msgid "Password Reset" msgstr "Wachtwoord vergeten?" @@ -3586,7 +3563,7 @@ msgid "Create a new channel" msgstr "Nieuw kanaal aanmaken" #: ../../Zotlabs/Module/Manage.php:162 ../../include/apps.php:132 -#: ../../include/nav.php:209 +#: ../../include/nav.php:206 msgid "Channel Manager" msgstr "Kanaalbeheer" @@ -3672,7 +3649,7 @@ msgstr "Menu kan gebruikt worden om bladwijzers in op te slaan" msgid "Submit and proceed" msgstr "Opslaan en doorgaan" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2279 +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2252 msgid "Menus" msgstr "Menu's" @@ -3964,7 +3941,7 @@ msgstr "Geen systeemnotificaties meer." msgid "System Notifications" msgstr "Systeemnotificaties" -#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:194 +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:191 msgid "Mark all system notifications seen" msgstr "Markeer alle systeemnotificaties als bekeken" @@ -4106,8 +4083,8 @@ msgstr "Omschrijving (optioneel):" msgid "Album name could not be decoded" msgstr "Albumnaam kon niet gedecodeerd worden" -#: ../../Zotlabs/Module/Photos.php:742 ../../Zotlabs/Module/Photos.php:1282 -#: ../../Zotlabs/Module/Photos.php:1299 +#: ../../Zotlabs/Module/Photos.php:742 ../../Zotlabs/Module/Photos.php:1283 +#: ../../Zotlabs/Module/Photos.php:1300 msgid "Contact Photos" msgstr "Connectiefoto's" @@ -4119,7 +4096,7 @@ msgstr "Nieuwste eerst weergeven" msgid "Show Oldest First" msgstr "Oudste eerst weergeven" -#: ../../Zotlabs/Module/Photos.php:791 ../../Zotlabs/Module/Photos.php:1332 +#: ../../Zotlabs/Module/Photos.php:791 ../../Zotlabs/Module/Photos.php:1333 #: ../../include/widgets.php:1451 msgid "View Photo" msgstr "Foto weergeven" @@ -4273,35 +4250,39 @@ msgid_plural "Dislikes" msgstr[0] "vindt dit niet leuk" msgstr[1] "vinden dit niet leuk" -#: ../../Zotlabs/Module/Photos.php:1242 +#: ../../Zotlabs/Module/Photos.php:1234 +msgid "Photo Tools" +msgstr "Fotohulpmiddelen" + +#: ../../Zotlabs/Module/Photos.php:1243 msgid "In This Photo:" msgstr "Op deze foto:" -#: ../../Zotlabs/Module/Photos.php:1247 +#: ../../Zotlabs/Module/Photos.php:1248 msgid "Map" msgstr "Kaart" -#: ../../Zotlabs/Module/Photos.php:1255 ../../include/ItemObject.php:378 +#: ../../Zotlabs/Module/Photos.php:1256 ../../include/ItemObject.php:378 msgctxt "noun" msgid "Likes" msgstr "vinden dit leuk" -#: ../../Zotlabs/Module/Photos.php:1256 ../../include/ItemObject.php:379 +#: ../../Zotlabs/Module/Photos.php:1257 ../../include/ItemObject.php:379 msgctxt "noun" msgid "Dislikes" msgstr "vinden dit niet leuk" -#: ../../Zotlabs/Module/Photos.php:1261 ../../include/ItemObject.php:384 +#: ../../Zotlabs/Module/Photos.php:1262 ../../include/ItemObject.php:384 #: ../../include/acl_selectors.php:252 msgid "Close" msgstr "Sluiten" -#: ../../Zotlabs/Module/Photos.php:1338 +#: ../../Zotlabs/Module/Photos.php:1339 msgid "View Album" msgstr "Album weergeven" -#: ../../Zotlabs/Module/Photos.php:1349 ../../Zotlabs/Module/Photos.php:1362 -#: ../../Zotlabs/Module/Photos.php:1363 +#: ../../Zotlabs/Module/Photos.php:1350 ../../Zotlabs/Module/Photos.php:1363 +#: ../../Zotlabs/Module/Photos.php:1364 msgid "Recent Photos" msgstr "Recente foto's" @@ -4408,15 +4389,15 @@ msgstr "Huwelijke status" msgid "Romantic Partner" msgstr "Romantische partner" -#: ../../Zotlabs/Module/Profiles.php:434 ../../Zotlabs/Module/Profiles.php:739 +#: ../../Zotlabs/Module/Profiles.php:434 ../../Zotlabs/Module/Profiles.php:740 msgid "Likes" msgstr "Houdt van" -#: ../../Zotlabs/Module/Profiles.php:438 ../../Zotlabs/Module/Profiles.php:740 +#: ../../Zotlabs/Module/Profiles.php:438 ../../Zotlabs/Module/Profiles.php:741 msgid "Dislikes" msgstr "Houdt niet van" -#: ../../Zotlabs/Module/Profiles.php:442 ../../Zotlabs/Module/Profiles.php:747 +#: ../../Zotlabs/Module/Profiles.php:442 ../../Zotlabs/Module/Profiles.php:748 msgid "Work/Employment" msgstr "Werk/arbeid" @@ -4456,181 +4437,185 @@ msgstr "Profiel bewerken" msgid "View this profile" msgstr "Profiel weergeven" -#: ../../Zotlabs/Module/Profiles.php:693 ../../Zotlabs/Module/Profiles.php:774 +#: ../../Zotlabs/Module/Profiles.php:693 ../../Zotlabs/Module/Profiles.php:775 #: ../../include/identity.php:952 msgid "Edit visibility" msgstr "Zichtbaarheid bewerken" #: ../../Zotlabs/Module/Profiles.php:694 +msgid "Profile Tools" +msgstr "Profielhulpmiddelen" + +#: ../../Zotlabs/Module/Profiles.php:695 msgid "Change cover photo" msgstr "Omslagfoto wijzigen" -#: ../../Zotlabs/Module/Profiles.php:695 ../../include/identity.php:923 +#: ../../Zotlabs/Module/Profiles.php:696 ../../include/identity.php:923 msgid "Change profile photo" msgstr "Profielfoto veranderen" -#: ../../Zotlabs/Module/Profiles.php:696 +#: ../../Zotlabs/Module/Profiles.php:697 msgid "Create a new profile using these settings" msgstr "Een nieuw profiel aanmaken met dit profiel als basis" -#: ../../Zotlabs/Module/Profiles.php:697 +#: ../../Zotlabs/Module/Profiles.php:698 msgid "Clone this profile" msgstr "Dit profiel klonen" -#: ../../Zotlabs/Module/Profiles.php:698 +#: ../../Zotlabs/Module/Profiles.php:699 msgid "Delete this profile" msgstr "Dit profiel verwijderen" -#: ../../Zotlabs/Module/Profiles.php:699 +#: ../../Zotlabs/Module/Profiles.php:700 msgid "Add profile things" msgstr "Dingen aan je profiel toevoegen" -#: ../../Zotlabs/Module/Profiles.php:700 ../../include/conversation.php:1544 +#: ../../Zotlabs/Module/Profiles.php:701 ../../include/conversation.php:1544 #: ../../include/widgets.php:105 msgid "Personal" msgstr "Persoonlijk" -#: ../../Zotlabs/Module/Profiles.php:702 +#: ../../Zotlabs/Module/Profiles.php:703 msgid "Relation" msgstr "Relatie" -#: ../../Zotlabs/Module/Profiles.php:703 ../../include/datetime.php:48 +#: ../../Zotlabs/Module/Profiles.php:704 ../../include/datetime.php:48 msgid "Miscellaneous" msgstr "Diversen" -#: ../../Zotlabs/Module/Profiles.php:705 +#: ../../Zotlabs/Module/Profiles.php:706 msgid "Import profile from file" msgstr "Profiel vanuit bestand importeren" -#: ../../Zotlabs/Module/Profiles.php:706 +#: ../../Zotlabs/Module/Profiles.php:707 msgid "Export profile to file" msgstr "Profiel naar bestand exporteren" -#: ../../Zotlabs/Module/Profiles.php:707 +#: ../../Zotlabs/Module/Profiles.php:708 msgid "Your gender" msgstr "Jouw geslacht" -#: ../../Zotlabs/Module/Profiles.php:708 +#: ../../Zotlabs/Module/Profiles.php:709 msgid "Marital status" msgstr "Burgerlijke staat" -#: ../../Zotlabs/Module/Profiles.php:709 +#: ../../Zotlabs/Module/Profiles.php:710 msgid "Sexual preference" msgstr "Seksuele voorkeur" -#: ../../Zotlabs/Module/Profiles.php:712 +#: ../../Zotlabs/Module/Profiles.php:713 msgid "Profile name" msgstr "Profielnaam" -#: ../../Zotlabs/Module/Profiles.php:714 +#: ../../Zotlabs/Module/Profiles.php:715 msgid "This is your default profile." msgstr "Dit is jouw standaardprofiel" -#: ../../Zotlabs/Module/Profiles.php:716 +#: ../../Zotlabs/Module/Profiles.php:717 msgid "Your full name" msgstr "Jouw volledige naam" -#: ../../Zotlabs/Module/Profiles.php:717 +#: ../../Zotlabs/Module/Profiles.php:718 msgid "Title/Description" msgstr "Titel/omschrijving" -#: ../../Zotlabs/Module/Profiles.php:720 +#: ../../Zotlabs/Module/Profiles.php:721 msgid "Street address" msgstr "Straat en huisnummer" -#: ../../Zotlabs/Module/Profiles.php:721 +#: ../../Zotlabs/Module/Profiles.php:722 msgid "Locality/City" msgstr "Woonplaats" -#: ../../Zotlabs/Module/Profiles.php:722 +#: ../../Zotlabs/Module/Profiles.php:723 msgid "Region/State" msgstr "Provincie/gewest/deelstaat" -#: ../../Zotlabs/Module/Profiles.php:723 +#: ../../Zotlabs/Module/Profiles.php:724 msgid "Postal/Zip code" msgstr "Postcode" -#: ../../Zotlabs/Module/Profiles.php:724 +#: ../../Zotlabs/Module/Profiles.php:725 msgid "Country" msgstr "Land" -#: ../../Zotlabs/Module/Profiles.php:729 +#: ../../Zotlabs/Module/Profiles.php:730 msgid "Who (if applicable)" msgstr "Wie (wanneer van toepassing)" -#: ../../Zotlabs/Module/Profiles.php:729 +#: ../../Zotlabs/Module/Profiles.php:730 msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "Voorbeelden: petra123, Petra Jansen, petra@voorbeeld.nl" -#: ../../Zotlabs/Module/Profiles.php:730 +#: ../../Zotlabs/Module/Profiles.php:731 msgid "Since (date)" msgstr "Sinds (datum)" -#: ../../Zotlabs/Module/Profiles.php:733 +#: ../../Zotlabs/Module/Profiles.php:734 msgid "Tell us about yourself" msgstr "Vertel ons iets over jezelf" -#: ../../Zotlabs/Module/Profiles.php:735 +#: ../../Zotlabs/Module/Profiles.php:736 msgid "Hometown" msgstr "Oorspronkelijk uit" -#: ../../Zotlabs/Module/Profiles.php:736 +#: ../../Zotlabs/Module/Profiles.php:737 msgid "Political views" msgstr "Politieke overtuigingen" -#: ../../Zotlabs/Module/Profiles.php:737 +#: ../../Zotlabs/Module/Profiles.php:738 msgid "Religious views" msgstr "Religieuze overtuigingen" -#: ../../Zotlabs/Module/Profiles.php:738 +#: ../../Zotlabs/Module/Profiles.php:739 msgid "Keywords used in directory listings" msgstr "Trefwoorden voor in de kanalengids" -#: ../../Zotlabs/Module/Profiles.php:738 +#: ../../Zotlabs/Module/Profiles.php:739 msgid "Example: fishing photography software" msgstr "Voorbeeld: muziek, fotografie, software" -#: ../../Zotlabs/Module/Profiles.php:741 +#: ../../Zotlabs/Module/Profiles.php:742 msgid "Musical interests" msgstr "Muzikale interesses" -#: ../../Zotlabs/Module/Profiles.php:742 +#: ../../Zotlabs/Module/Profiles.php:743 msgid "Books, literature" msgstr "Boeken/literatuur" -#: ../../Zotlabs/Module/Profiles.php:743 +#: ../../Zotlabs/Module/Profiles.php:744 msgid "Television" msgstr "Televisie" -#: ../../Zotlabs/Module/Profiles.php:744 +#: ../../Zotlabs/Module/Profiles.php:745 msgid "Film/Dance/Culture/Entertainment" msgstr "Film/dans/cultuur/entertainment" -#: ../../Zotlabs/Module/Profiles.php:745 +#: ../../Zotlabs/Module/Profiles.php:746 msgid "Hobbies/Interests" msgstr "Hobby's/interesses" -#: ../../Zotlabs/Module/Profiles.php:746 +#: ../../Zotlabs/Module/Profiles.php:747 msgid "Love/Romance" msgstr "Liefde/romantiek" -#: ../../Zotlabs/Module/Profiles.php:748 +#: ../../Zotlabs/Module/Profiles.php:749 msgid "School/Education" msgstr "School/opleiding" -#: ../../Zotlabs/Module/Profiles.php:749 +#: ../../Zotlabs/Module/Profiles.php:750 msgid "Contact information and social networks" msgstr "Contactinformatie en sociale netwerken" -#: ../../Zotlabs/Module/Profiles.php:750 +#: ../../Zotlabs/Module/Profiles.php:751 msgid "My other channels" msgstr "Mijn andere kanalen" -#: ../../Zotlabs/Module/Profiles.php:770 ../../include/identity.php:948 +#: ../../Zotlabs/Module/Profiles.php:771 ../../include/identity.php:948 msgid "Profile Image" msgstr "Profielfoto" -#: ../../Zotlabs/Module/Profiles.php:780 ../../include/identity.php:930 +#: ../../Zotlabs/Module/Profiles.php:781 ../../include/identity.php:930 #: ../../include/nav.php:88 msgid "Edit Profiles" msgstr "Bewerk profielen" @@ -4826,8 +4811,8 @@ 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:148 -#: ../../boot.php:1584 +#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:147 +#: ../../boot.php:1597 msgid "Register" msgstr "Registreren" @@ -6135,8 +6120,8 @@ msgstr "Negeren/Verbergen" msgid "post" msgstr "bericht" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 -#: ../../include/text.php:1975 +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/text.php:1948 +#: ../../include/conversation.php:150 msgid "comment" msgstr "reactie" @@ -6738,15 +6723,15 @@ msgstr "Registratie ingetrokken voor %s" msgid "Account verified. Please login." msgstr "Account is geverifieerd. Je kan inloggen." -#: ../../include/account.php:719 ../../include/account.php:721 +#: ../../include/account.php:722 ../../include/account.php:724 msgid "Click here to upgrade." msgstr "Klik hier om te upgraden." -#: ../../include/account.php:727 +#: ../../include/account.php:730 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:732 +#: ../../include/account.php:735 msgid "This action is not available under your subscription plan." msgstr "Deze handeling is niet mogelijk met jouw abonnement." @@ -7022,9 +7007,327 @@ msgstr "Bezoek het %2$s van %1$s" msgid "%1$s has an updated %2$s, changing %3$s." msgstr "%1$s heeft een aangepaste %2$s, %3$s veranderd." -#: ../../include/api.php:1338 -msgid "Public Timeline" -msgstr "Openbare tijdlijn" +#: ../../include/text.php:394 +msgid "prev" +msgstr "vorige" + +#: ../../include/text.php:396 +msgid "first" +msgstr "eerste" + +#: ../../include/text.php:425 +msgid "last" +msgstr "laatste" + +#: ../../include/text.php:428 +msgid "next" +msgstr "volgende" + +#: ../../include/text.php:438 +msgid "older" +msgstr "ouder" + +#: ../../include/text.php:440 +msgid "newer" +msgstr "nieuwer" + +#: ../../include/text.php:822 +msgid "No connections" +msgstr "Geen connecties" + +#: ../../include/text.php:847 +#, php-format +msgid "View all %s connections" +msgstr "Toon alle %s connecties" + +#: ../../include/text.php:992 ../../include/text.php:997 +msgid "poke" +msgstr "aanstoten" + +#: ../../include/text.php:992 ../../include/text.php:997 +#: ../../include/conversation.php:243 +msgid "poked" +msgstr "aangestoten" + +#: ../../include/text.php:998 +msgid "ping" +msgstr "ping" + +#: ../../include/text.php:998 +msgid "pinged" +msgstr "gepingd" + +#: ../../include/text.php:999 +msgid "prod" +msgstr "por" + +#: ../../include/text.php:999 +msgid "prodded" +msgstr "gepord" + +#: ../../include/text.php:1000 +msgid "slap" +msgstr "slaan" + +#: ../../include/text.php:1000 +msgid "slapped" +msgstr "sloeg" + +#: ../../include/text.php:1001 +msgid "finger" +msgstr "finger" + +#: ../../include/text.php:1001 +msgid "fingered" +msgstr "gefingerd" + +#: ../../include/text.php:1002 +msgid "rebuff" +msgstr "afpoeieren" + +#: ../../include/text.php:1002 +msgid "rebuffed" +msgstr "afgepoeierd" + +#: ../../include/text.php:1014 +msgid "happy" +msgstr "gelukkig" + +#: ../../include/text.php:1015 +msgid "sad" +msgstr "bedroefd" + +#: ../../include/text.php:1016 +msgid "mellow" +msgstr "mellow" + +#: ../../include/text.php:1017 +msgid "tired" +msgstr "moe" + +#: ../../include/text.php:1018 +msgid "perky" +msgstr "parmantig" + +#: ../../include/text.php:1019 +msgid "angry" +msgstr "boos" + +#: ../../include/text.php:1020 +msgid "stupefied" +msgstr "verbijsterd" + +#: ../../include/text.php:1021 +msgid "puzzled" +msgstr "verward" + +#: ../../include/text.php:1022 +msgid "interested" +msgstr "geïnteresseerd" + +#: ../../include/text.php:1023 +msgid "bitter" +msgstr "verbitterd" + +#: ../../include/text.php:1024 +msgid "cheerful" +msgstr "vrolijk" + +#: ../../include/text.php:1025 +msgid "alive" +msgstr "levendig" + +#: ../../include/text.php:1026 +msgid "annoyed" +msgstr "geërgerd" + +#: ../../include/text.php:1027 +msgid "anxious" +msgstr "bezorgd" + +#: ../../include/text.php:1028 +msgid "cranky" +msgstr "humeurig" + +#: ../../include/text.php:1029 +msgid "disturbed" +msgstr "verontrust" + +#: ../../include/text.php:1030 +msgid "frustrated" +msgstr "gefrustreerd " + +#: ../../include/text.php:1031 +msgid "depressed" +msgstr "gedeprimeerd" + +#: ../../include/text.php:1032 +msgid "motivated" +msgstr "gemotiveerd" + +#: ../../include/text.php:1033 +msgid "relaxed" +msgstr "ontspannen" + +#: ../../include/text.php:1034 +msgid "surprised" +msgstr "verrast" + +#: ../../include/text.php:1206 ../../include/js_strings.php:70 +msgid "Monday" +msgstr "maandag" + +#: ../../include/text.php:1206 ../../include/js_strings.php:71 +msgid "Tuesday" +msgstr "dinsdag" + +#: ../../include/text.php:1206 ../../include/js_strings.php:72 +msgid "Wednesday" +msgstr "woensdag" + +#: ../../include/text.php:1206 ../../include/js_strings.php:73 +msgid "Thursday" +msgstr "donderdag" + +#: ../../include/text.php:1206 ../../include/js_strings.php:74 +msgid "Friday" +msgstr "vrijdag" + +#: ../../include/text.php:1206 ../../include/js_strings.php:75 +msgid "Saturday" +msgstr "zaterdag" + +#: ../../include/text.php:1206 ../../include/js_strings.php:69 +msgid "Sunday" +msgstr "zondag" + +#: ../../include/text.php:1210 ../../include/js_strings.php:45 +msgid "January" +msgstr "januari" + +#: ../../include/text.php:1210 ../../include/js_strings.php:46 +msgid "February" +msgstr "februari" + +#: ../../include/text.php:1210 ../../include/js_strings.php:47 +msgid "March" +msgstr "maart" + +#: ../../include/text.php:1210 ../../include/js_strings.php:48 +msgid "April" +msgstr "april" + +#: ../../include/text.php:1210 +msgid "May" +msgstr "mei" + +#: ../../include/text.php:1210 ../../include/js_strings.php:50 +msgid "June" +msgstr "juni" + +#: ../../include/text.php:1210 ../../include/js_strings.php:51 +msgid "July" +msgstr "juli" + +#: ../../include/text.php:1210 ../../include/js_strings.php:52 +msgid "August" +msgstr "augustus" + +#: ../../include/text.php:1210 ../../include/js_strings.php:53 +msgid "September" +msgstr "september" + +#: ../../include/text.php:1210 ../../include/js_strings.php:54 +msgid "October" +msgstr "oktober" + +#: ../../include/text.php:1210 ../../include/js_strings.php:55 +msgid "November" +msgstr "november" + +#: ../../include/text.php:1210 ../../include/js_strings.php:56 +msgid "December" +msgstr "december" + +#: ../../include/text.php:1287 ../../include/text.php:1291 +msgid "Unknown Attachment" +msgstr "Onbekende bijlage" + +#: ../../include/text.php:1293 +msgid "unknown" +msgstr "onbekend" + +#: ../../include/text.php:1329 +msgid "remove category" +msgstr "categorie verwijderen" + +#: ../../include/text.php:1406 +msgid "remove from file" +msgstr "uit map verwijderen" + +#: ../../include/text.php:1437 ../../include/bb2diaspora.php:487 +#: ../../include/event.php:22 +msgid "l F d, Y \\@ g:i A" +msgstr "l d F Y \\@ G:i" + +#: ../../include/text.php:1441 ../../include/bb2diaspora.php:493 +#: ../../include/event.php:30 +msgid "Starts:" +msgstr "Start:" + +#: ../../include/text.php:1445 ../../include/bb2diaspora.php:501 +#: ../../include/event.php:40 +msgid "Finishes:" +msgstr "Einde:" + +#: ../../include/text.php:1735 ../../include/text.php:1807 +msgid "default" +msgstr "standaard" + +#: ../../include/text.php:1743 +msgid "Page layout" +msgstr "Pagina-lay-out" + +#: ../../include/text.php:1743 +msgid "You can create your own with the layouts tool" +msgstr "Je kan jouw eigen lay-out ontwerpen onder lay-outs" + +#: ../../include/text.php:1785 +msgid "Page content type" +msgstr "Opmaaktype pagina" + +#: ../../include/text.php:1819 +msgid "Select an alternate language" +msgstr "Kies een andere taal" + +#: ../../include/text.php:1953 +msgid "activity" +msgstr "activiteit" + +#: ../../include/text.php:2248 +msgid "Design Tools" +msgstr "Ontwerp-hulpmiddelen" + +#: ../../include/text.php:2254 +msgid "Pages" +msgstr "Pagina's" + +#: ../../include/zot.php:680 +msgid "Invalid data packet" +msgstr "Datapakket ongeldig" + +#: ../../include/zot.php:696 +msgid "Unable to verify channel signature" +msgstr "Kanaalkenmerk kon niet worden geverifieerd. " + +#: ../../include/zot.php:2332 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" + +#: ../../include/zot.php:3670 +msgid "invalid target signature" +msgstr "ongeldig doelkenmerk" #: ../../include/apps.php:128 msgid "Site Admin" @@ -7039,28 +7342,28 @@ msgstr "Bladwijzers" msgid "Address Book" msgstr "Connecties" -#: ../../include/apps.php:131 ../../include/nav.php:110 ../../boot.php:1602 +#: ../../include/apps.php:131 ../../include/nav.php:110 ../../boot.php:1615 msgid "Login" msgstr "Inloggen" -#: ../../include/apps.php:133 ../../include/nav.php:182 +#: ../../include/apps.php:133 ../../include/nav.php:179 msgid "Grid" msgstr "Grid" -#: ../../include/apps.php:137 ../../include/nav.php:185 +#: ../../include/apps.php:137 ../../include/nav.php:182 msgid "Channel Home" msgstr "Jouw kanaal" #: ../../include/apps.php:140 ../../include/conversation.php:1667 -#: ../../include/conversation.php:1670 ../../include/nav.php:204 +#: ../../include/conversation.php:1670 ../../include/nav.php:201 msgid "Events" msgstr "Agenda" -#: ../../include/apps.php:141 ../../include/nav.php:170 +#: ../../include/apps.php:141 ../../include/nav.php:167 msgid "Directory" msgstr "Kanalengids" -#: ../../include/apps.php:143 ../../include/nav.php:196 +#: ../../include/apps.php:143 ../../include/nav.php:193 msgid "Mail" msgstr "Privéberichten" @@ -7100,97 +7403,23 @@ msgstr "Installeren" msgid "Purchase" msgstr "Aanschaffen" -#: ../../include/network.php:659 -msgid "view full size" -msgstr "volledige grootte tonen" - -#: ../../include/network.php:1827 ../../include/enotify.php:57 -msgid "$Projectname Notification" -msgstr "$Projectname-notificatie" - -#: ../../include/network.php:1828 ../../include/enotify.php:58 -msgid "$projectname" -msgstr "$projectname" - -#: ../../include/network.php:1830 ../../include/enotify.php:60 -msgid "Thank You," -msgstr "Bedankt," - -#: ../../include/network.php:1832 ../../include/enotify.php:62 -#, php-format -msgid "%s Administrator" -msgstr "Beheerder %s" +#: ../../include/import.php:23 +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/network.php:1889 -msgid "No Subject" -msgstr "Geen onderwerp" +#: ../../include/import.php:70 +msgid "Channel clone failed. Import failed." +msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt." #: ../../include/bb2diaspora.php:398 msgid "Attachments:" msgstr "Bijlagen:" -#: ../../include/bb2diaspora.php:487 ../../include/event.php:22 -#: ../../include/text.php:1437 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" - #: ../../include/bb2diaspora.php:489 msgid "$Projectname event notification:" msgstr "Notificatie $Projectname-gebeurtenis:" -#: ../../include/bb2diaspora.php:493 ../../include/event.php:30 -#: ../../include/text.php:1441 -msgid "Starts:" -msgstr "Start:" - -#: ../../include/bb2diaspora.php:501 ../../include/event.php:40 -#: ../../include/text.php:1445 -msgid "Finishes:" -msgstr "Einde:" - -#: ../../include/bbcode.php:123 ../../include/bbcode.php:801 -#: ../../include/bbcode.php:804 ../../include/bbcode.php:809 -#: ../../include/bbcode.php:812 ../../include/bbcode.php:815 -#: ../../include/bbcode.php:818 ../../include/bbcode.php:823 -#: ../../include/bbcode.php:826 ../../include/bbcode.php:831 -#: ../../include/bbcode.php:834 ../../include/bbcode.php:837 -#: ../../include/bbcode.php:840 -msgid "Image/photo" -msgstr "Afbeelding/foto" - -#: ../../include/bbcode.php:162 ../../include/bbcode.php:851 -msgid "Encrypted content" -msgstr "Versleutelde inhoud" - -#: ../../include/bbcode.php:179 -#, php-format -msgid "Install %s element: " -msgstr "Installeer %s-element: " - -#: ../../include/bbcode.php:183 -#, 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:255 -#, 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:545 -msgid "Different viewers will see this text differently" -msgstr "Deze tekst wordt per persoon anders weergeven." - -#: ../../include/bbcode.php:762 -msgid "$1 spoiler" -msgstr "$1 spoiler" - -#: ../../include/bbcode.php:789 -msgid "$1 wrote:" -msgstr "$1 schreef:" - #: ../../include/conversation.php:204 #, php-format msgid "%1$s is now connected with %2$s" @@ -7201,11 +7430,6 @@ 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:992 -#: ../../include/text.php:997 -msgid "poked" -msgstr "aangestoten" - #: ../../include/conversation.php:691 #, php-format msgid "View %s's profile @ %s" @@ -7227,7 +7451,7 @@ msgstr "In context bekijken" msgid "remove" msgstr "verwijderen" -#: ../../include/conversation.php:854 ../../include/nav.php:256 +#: ../../include/conversation.php:854 ../../include/nav.php:247 msgid "Loading..." msgstr "Aan het laden..." @@ -7551,6 +7775,10 @@ 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/api.php:1338 +msgid "Public Timeline" +msgstr "Openbare tijdlijn" + #: ../../include/contact_selectors.php:56 msgid "Frequently" msgstr "Regelmatig" @@ -7751,7 +7979,7 @@ msgstr "Leeftijd:" msgid "YYYY-MM-DD or MM-DD" msgstr "JJJJ-MM-DD of MM-DD" -#: ../../include/datetime.php:273 ../../boot.php:2432 +#: ../../include/datetime.php:273 ../../boot.php:2445 msgid "never" msgstr "nooit" @@ -7840,6 +8068,23 @@ msgstr "Alleen openbare forums" msgid "This Website Only" msgstr "Alleen deze hub" +#: ../../include/enotify.php:57 ../../include/network.php:1827 +msgid "$Projectname Notification" +msgstr "$Projectname-notificatie" + +#: ../../include/enotify.php:58 ../../include/network.php:1828 +msgid "$projectname" +msgstr "$projectname" + +#: ../../include/enotify.php:60 ../../include/network.php:1830 +msgid "Thank You," +msgstr "Bedankt," + +#: ../../include/enotify.php:62 ../../include/network.php:1832 +#, php-format +msgid "%s Administrator" +msgstr "Beheerder %s" + #: ../../include/enotify.php:96 #, php-format msgid "%s <!item_type!>" @@ -8385,6 +8630,53 @@ msgstr "Kanalen die zich in geen enkele privacygroep bevinden" msgid "add" msgstr "toevoegen" +#: ../../include/bbcode.php:123 ../../include/bbcode.php:813 +#: ../../include/bbcode.php:816 ../../include/bbcode.php:821 +#: ../../include/bbcode.php:824 ../../include/bbcode.php:827 +#: ../../include/bbcode.php:830 ../../include/bbcode.php:835 +#: ../../include/bbcode.php:838 ../../include/bbcode.php:843 +#: ../../include/bbcode.php:846 ../../include/bbcode.php:849 +#: ../../include/bbcode.php:852 +msgid "Image/photo" +msgstr "Afbeelding/foto" + +#: ../../include/bbcode.php:162 ../../include/bbcode.php:863 +msgid "Encrypted content" +msgstr "Versleutelde inhoud" + +#: ../../include/bbcode.php:179 +#, php-format +msgid "Install %s element: " +msgstr "Installeer %s-element: " + +#: ../../include/bbcode.php:183 +#, 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:255 +#, 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:333 ../../include/bbcode.php:341 +msgid "Click to open/close" +msgstr "Klik om te openen of te sluiten" + +#: ../../include/bbcode.php:341 +msgid "spoiler" +msgstr "spoiler" + +#: ../../include/bbcode.php:556 +msgid "Different viewers will see this text differently" +msgstr "Deze tekst wordt per persoon anders weergeven." + +#: ../../include/bbcode.php:801 +msgid "$1 wrote:" +msgstr "$1 schreef:" + #: ../../include/items.php:1138 ../../include/items.php:1183 msgid "(Unknown)" msgstr "(Onbekend)" @@ -8439,32 +8731,13 @@ msgstr "Connectie niet gevonden." msgid "profile photo" msgstr "profielfoto" -#: ../../include/photos.php:112 -#, 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:119 -msgid "Image file is empty." -msgstr "Afbeeldingsbestand is leeg" - -#: ../../include/photos.php:257 -msgid "Photo storage failed." -msgstr "Foto kan niet worden opgeslagen" - -#: ../../include/photos.php:297 -msgid "a new photo" -msgstr "een nieuwe foto" - -#: ../../include/photos.php:301 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "%1$s plaatste %2$s op %3$s" +#: ../../include/network.php:659 +msgid "view full size" +msgstr "volledige grootte tonen" -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Nieuwe foto's uploaden" +#: ../../include/network.php:1889 +msgid "No Subject" +msgstr "Geen onderwerp" #: ../../include/widgets.php:103 msgid "System" @@ -8563,15 +8836,15 @@ msgstr "Privéberichten" msgid "Combined View" msgstr "Gecombineerd postvak" -#: ../../include/widgets.php:609 ../../include/nav.php:199 +#: ../../include/widgets.php:609 ../../include/nav.php:196 msgid "Inbox" msgstr "Postvak IN" -#: ../../include/widgets.php:614 ../../include/nav.php:200 +#: ../../include/widgets.php:614 ../../include/nav.php:197 msgid "Outbox" msgstr "Postvak UIT" -#: ../../include/widgets.php:619 ../../include/nav.php:201 +#: ../../include/widgets.php:619 ../../include/nav.php:198 msgid "New Message" msgstr "Nieuw bericht" @@ -8703,7 +8976,7 @@ msgstr "Inspecteer berichtenwachtrij" msgid "DB updates" msgstr "Database-updates" -#: ../../include/widgets.php:1368 ../../include/nav.php:219 +#: ../../include/widgets.php:1368 ../../include/nav.php:216 msgid "Admin" msgstr "Beheer" @@ -8876,55 +9149,11 @@ msgstr " " msgid "timeago.numbers" msgstr "timeago.numbers" -#: ../../include/js_strings.php:45 ../../include/text.php:1210 -msgid "January" -msgstr "januari" - -#: ../../include/js_strings.php:46 ../../include/text.php:1210 -msgid "February" -msgstr "februari" - -#: ../../include/js_strings.php:47 ../../include/text.php:1210 -msgid "March" -msgstr "maart" - -#: ../../include/js_strings.php:48 ../../include/text.php:1210 -msgid "April" -msgstr "april" - #: ../../include/js_strings.php:49 msgctxt "long" msgid "May" msgstr "mei" -#: ../../include/js_strings.php:50 ../../include/text.php:1210 -msgid "June" -msgstr "juni" - -#: ../../include/js_strings.php:51 ../../include/text.php:1210 -msgid "July" -msgstr "juli" - -#: ../../include/js_strings.php:52 ../../include/text.php:1210 -msgid "August" -msgstr "augustus" - -#: ../../include/js_strings.php:53 ../../include/text.php:1210 -msgid "September" -msgstr "september" - -#: ../../include/js_strings.php:54 ../../include/text.php:1210 -msgid "October" -msgstr "oktober" - -#: ../../include/js_strings.php:55 ../../include/text.php:1210 -msgid "November" -msgstr "november" - -#: ../../include/js_strings.php:56 ../../include/text.php:1210 -msgid "December" -msgstr "december" - #: ../../include/js_strings.php:57 msgid "Jan" msgstr "jan" @@ -8974,34 +9203,6 @@ msgstr "nov" msgid "Dec" msgstr "dec" -#: ../../include/js_strings.php:69 ../../include/text.php:1206 -msgid "Sunday" -msgstr "zondag" - -#: ../../include/js_strings.php:70 ../../include/text.php:1206 -msgid "Monday" -msgstr "maandag" - -#: ../../include/js_strings.php:71 ../../include/text.php:1206 -msgid "Tuesday" -msgstr "dinsdag" - -#: ../../include/js_strings.php:72 ../../include/text.php:1206 -msgid "Wednesday" -msgstr "woensdag" - -#: ../../include/js_strings.php:73 ../../include/text.php:1206 -msgid "Thursday" -msgstr "donderdag" - -#: ../../include/js_strings.php:74 ../../include/text.php:1206 -msgid "Friday" -msgstr "vrijdag" - -#: ../../include/js_strings.php:75 ../../include/text.php:1206 -msgid "Saturday" -msgstr "zaterdag" - #: ../../include/js_strings.php:76 msgid "Sun" msgstr "zo" @@ -9071,14 +9272,166 @@ msgstr "Afzender kan niet bepaald worden." msgid "Stored post could not be verified." msgstr "Opgeslagen bericht kon niet worden geverifieerd." -#: ../../include/import.php:23 -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/nav.php:82 ../../include/nav.php:113 ../../boot.php:1614 +msgid "Logout" +msgstr "Uitloggen" -#: ../../include/import.php:70 -msgid "Channel clone failed. Import failed." -msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt." +#: ../../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 +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 +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:252 +msgid "@name, #tag, ?doc, content" +msgstr "@kanaal, #tag, inhoud, ?hulp" + +#: ../../include/nav.php:253 +msgid "Please wait..." +msgstr "Wachten aub..." #: ../../include/oembed.php:267 msgid "Embedded content" @@ -9237,400 +9590,32 @@ msgstr "Speciaal - Groepsopslag" msgid "Custom/Expert Mode" msgstr "Expertmodus/handmatig aanpassen" -#: ../../include/text.php:394 -msgid "prev" -msgstr "vorige" - -#: ../../include/text.php:396 -msgid "first" -msgstr "eerste" - -#: ../../include/text.php:425 -msgid "last" -msgstr "laatste" - -#: ../../include/text.php:428 -msgid "next" -msgstr "volgende" - -#: ../../include/text.php:438 -msgid "older" -msgstr "ouder" - -#: ../../include/text.php:440 -msgid "newer" -msgstr "nieuwer" - -#: ../../include/text.php:822 -msgid "No connections" -msgstr "Geen connecties" - -#: ../../include/text.php:847 -#, php-format -msgid "View all %s connections" -msgstr "Toon alle %s connecties" - -#: ../../include/text.php:992 ../../include/text.php:997 -msgid "poke" -msgstr "aanstoten" - -#: ../../include/text.php:998 -msgid "ping" -msgstr "ping" - -#: ../../include/text.php:998 -msgid "pinged" -msgstr "gepingd" - -#: ../../include/text.php:999 -msgid "prod" -msgstr "por" - -#: ../../include/text.php:999 -msgid "prodded" -msgstr "gepord" - -#: ../../include/text.php:1000 -msgid "slap" -msgstr "slaan" - -#: ../../include/text.php:1000 -msgid "slapped" -msgstr "sloeg" - -#: ../../include/text.php:1001 -msgid "finger" -msgstr "finger" - -#: ../../include/text.php:1001 -msgid "fingered" -msgstr "gefingerd" - -#: ../../include/text.php:1002 -msgid "rebuff" -msgstr "afpoeieren" - -#: ../../include/text.php:1002 -msgid "rebuffed" -msgstr "afgepoeierd" - -#: ../../include/text.php:1014 -msgid "happy" -msgstr "gelukkig" - -#: ../../include/text.php:1015 -msgid "sad" -msgstr "bedroefd" - -#: ../../include/text.php:1016 -msgid "mellow" -msgstr "mellow" - -#: ../../include/text.php:1017 -msgid "tired" -msgstr "moe" - -#: ../../include/text.php:1018 -msgid "perky" -msgstr "parmantig" - -#: ../../include/text.php:1019 -msgid "angry" -msgstr "boos" - -#: ../../include/text.php:1020 -msgid "stupefied" -msgstr "verbijsterd" - -#: ../../include/text.php:1021 -msgid "puzzled" -msgstr "verward" - -#: ../../include/text.php:1022 -msgid "interested" -msgstr "geïnteresseerd" - -#: ../../include/text.php:1023 -msgid "bitter" -msgstr "verbitterd" - -#: ../../include/text.php:1024 -msgid "cheerful" -msgstr "vrolijk" - -#: ../../include/text.php:1025 -msgid "alive" -msgstr "levendig" - -#: ../../include/text.php:1026 -msgid "annoyed" -msgstr "geërgerd" - -#: ../../include/text.php:1027 -msgid "anxious" -msgstr "bezorgd" - -#: ../../include/text.php:1028 -msgid "cranky" -msgstr "humeurig" - -#: ../../include/text.php:1029 -msgid "disturbed" -msgstr "verontrust" - -#: ../../include/text.php:1030 -msgid "frustrated" -msgstr "gefrustreerd " - -#: ../../include/text.php:1031 -msgid "depressed" -msgstr "gedeprimeerd" - -#: ../../include/text.php:1032 -msgid "motivated" -msgstr "gemotiveerd" - -#: ../../include/text.php:1033 -msgid "relaxed" -msgstr "ontspannen" - -#: ../../include/text.php:1034 -msgid "surprised" -msgstr "verrast" - -#: ../../include/text.php:1210 -msgid "May" -msgstr "mei" - -#: ../../include/text.php:1287 ../../include/text.php:1291 -msgid "Unknown Attachment" -msgstr "Onbekende bijlage" - -#: ../../include/text.php:1293 -msgid "unknown" -msgstr "onbekend" - -#: ../../include/text.php:1329 -msgid "remove category" -msgstr "categorie verwijderen" - -#: ../../include/text.php:1406 -msgid "remove from file" -msgstr "uit map verwijderen" - -#: ../../include/text.php:1548 ../../include/text.php:1559 -msgid "Click to open/close" -msgstr "Klik om te openen of te sluiten" - -#: ../../include/text.php:1764 ../../include/text.php:1836 -msgid "default" -msgstr "standaard" - -#: ../../include/text.php:1772 -msgid "Page layout" -msgstr "Pagina-lay-out" - -#: ../../include/text.php:1772 -msgid "You can create your own with the layouts tool" -msgstr "Je kan jouw eigen lay-out ontwerpen onder lay-outs" - -#: ../../include/text.php:1814 -msgid "Page content type" -msgstr "Opmaaktype pagina" - -#: ../../include/text.php:1848 -msgid "Select an alternate language" -msgstr "Kies een andere taal" - -#: ../../include/text.php:1980 -msgid "activity" -msgstr "activiteit" - -#: ../../include/text.php:2275 -msgid "Design Tools" -msgstr "Ontwerp-hulpmiddelen" - -#: ../../include/text.php:2281 -msgid "Pages" -msgstr "Pagina's" - -#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1601 -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 -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 -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 +#: ../../include/photos.php:112 #, 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:148 -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:170 -msgid "Channel Directory" -msgstr "Kanalengids" - -#: ../../include/nav.php:182 -msgid "Your grid" -msgstr "Jouw grid" - -#: ../../include/nav.php:183 -msgid "Mark all grid notifications seen" -msgstr "Markeer alle gridnotificaties als bekeken" - -#: ../../include/nav.php:185 -msgid "Channel home" -msgstr "Jouw kanaal" - -#: ../../include/nav.php:186 -msgid "Mark all channel notifications seen" -msgstr "Alle kanaalnotificaties als gelezen markeren" - -#: ../../include/nav.php:192 -msgid "Notices" -msgstr "Notificaties" - -#: ../../include/nav.php:192 -msgid "Notifications" -msgstr "Notificaties" - -#: ../../include/nav.php:193 -msgid "See all notifications" -msgstr "Alle notificaties weergeven" - -#: ../../include/nav.php:196 -msgid "Private mail" -msgstr "Privéberichten" - -#: ../../include/nav.php:197 -msgid "See all private messages" -msgstr "Alle privéberichten weergeven" - -#: ../../include/nav.php:198 -msgid "Mark all private messages seen" -msgstr "Markeer alle privéberichten als bekeken" - -#: ../../include/nav.php:204 -msgid "Event Calendar" -msgstr "Agenda" - -#: ../../include/nav.php:205 -msgid "See all events" -msgstr "Alle gebeurtenissen weergeven" - -#: ../../include/nav.php:206 -msgid "Mark all events seen" -msgstr "Markeer alle gebeurtenissen als bekeken" - -#: ../../include/nav.php:209 -msgid "Manage Your Channels" -msgstr "Beheer je kanalen" - -#: ../../include/nav.php:211 -msgid "Account/Channel Settings" -msgstr "Account-/kanaal-instellingen" - -#: ../../include/nav.php:219 -msgid "Site Setup and Configuration" -msgstr "Hub instellen en beheren" - -#: ../../include/nav.php:261 -msgid "@name, #tag, ?doc, content" -msgstr "@kanaal, #tag, inhoud, ?hulp" +msgid "Image exceeds website size limit of %lu bytes" +msgstr "Afbeelding is groter dan op deze hub toegestane limiet van %lu bytes" -#: ../../include/nav.php:262 -msgid "Please wait..." -msgstr "Wachten aub..." +#: ../../include/photos.php:119 +msgid "Image file is empty." +msgstr "Afbeeldingsbestand is leeg" -#: ../../include/zot.php:680 -msgid "Invalid data packet" -msgstr "Datapakket ongeldig" +#: ../../include/photos.php:257 +msgid "Photo storage failed." +msgstr "Foto kan niet worden opgeslagen" -#: ../../include/zot.php:696 -msgid "Unable to verify channel signature" -msgstr "Kanaalkenmerk kon niet worden geverifieerd. " +#: ../../include/photos.php:297 +msgid "a new photo" +msgstr "een nieuwe foto" -#: ../../include/zot.php:2332 +#: ../../include/photos.php:301 #, php-format -msgid "Unable to verify site signature for %s" -msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "%1$s plaatste %2$s op %3$s" -#: ../../include/zot.php:3670 -msgid "invalid target signature" -msgstr "ongeldig doelkenmerk" +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "Nieuwe foto's uploaden" #: ../../view/theme/redbasic/php/config.php:82 msgid "Focus (Hubzilla default)" @@ -9789,41 +9774,41 @@ msgstr "Update %s mislukt. Zie foutenlogboek." msgid "Update Error at %s" msgstr "Update-fout op %s" -#: ../../boot.php:1583 +#: ../../boot.php:1596 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:1605 +#: ../../boot.php:1618 msgid "Password" msgstr "Wachtwoord" -#: ../../boot.php:1606 +#: ../../boot.php:1619 msgid "Remember me" msgstr "Aangemeld blijven" -#: ../../boot.php:1609 +#: ../../boot.php:1622 msgid "Forgot your password?" msgstr "Wachtwoord vergeten?" -#: ../../boot.php:2238 +#: ../../boot.php:2251 msgid "toggle mobile" msgstr "mobiele weergave omschakelen" -#: ../../boot.php:2391 +#: ../../boot.php:2404 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:2394 +#: ../../boot.php:2407 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Probleem met SSL-certificaat voor %s" -#: ../../boot.php:2431 +#: ../../boot.php:2444 msgid "Cron/Scheduled tasks not running." msgstr "Cron is niet actief" -#: ../../boot.php:2435 +#: ../../boot.php:2448 #, 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 72fc4d2e1..894a02382 100644 --- a/view/nl/hstrings.php +++ b/view/nl/hstrings.php @@ -152,8 +152,6 @@ App::$strings["Block communications from these channels"] = "Communicatie met de App::$strings["Allow embedded HTML content only from these domains"] = "Alleen ingesloten (embedded) HTML vanaf deze domeinen toestaan"; App::$strings["One site per line. Leave empty to allow from any site by default"] = "Eén per regel. Laat leeg om standaard vanaf elk domein toe te staan"; App::$strings["Block embedded HTML from these domains"] = "Ingesloten (embedded) HTML vanaf deze domeinen blokkeren"; -App::$strings["Cooperative embed security"] = "Met elkaar ingesloten (embedded) HTML beveiligen"; -App::$strings["Enable to share embed security with other compatible sites/hubs"] = "Beveiliging omtrent ingesloten (embedded) HTML met andere compatibele hubs delen."; App::$strings["Update has been marked successful"] = "Update is als succesvol gemarkeerd"; App::$strings["Executing %s failed. Check system logs."] = "Uitvoeren van %s is mislukt. Controleer systeemlogboek."; App::$strings["Update %s was successfully applied."] = "Update %s was geslaagd."; @@ -428,6 +426,7 @@ App::$strings["Connection requests will be approved without your interaction"] = App::$strings["This connection's primary address is"] = "Het primaire kanaaladres van deze connectie is"; App::$strings["Available locations:"] = "Beschikbare locaties:"; App::$strings["The permissions indicated on this page will be applied to all new connections."] = "Permissies die op deze pagina staan vermeld worden op alle nieuwe connecties toegepast."; +App::$strings["Connection Tools"] = "Connectiehulpmiddelen"; App::$strings["Slide to adjust your degree of friendship"] = "Schuif om te bepalen hoe goed je iemand kent en/of mag"; App::$strings["Rating"] = "Beoordeling"; App::$strings["Slide to adjust your rating"] = "Gebruik de schuif om je beoordeling te geven"; @@ -523,25 +522,25 @@ App::$strings["Italic"] = "Cursief"; App::$strings["Underline"] = "Onderstrepen"; App::$strings["Quote"] = "Citeren"; App::$strings["Code"] = "Broncode"; -App::$strings["Upload photo"] = "Foto uploaden"; App::$strings["Attach file"] = "Bestand toevoegen"; -App::$strings["Insert YouTube video"] = "YouTube-video invoegen"; -App::$strings["Insert Vorbis [.ogg] video"] = "Vorbis-video [.ogg] invoegen"; -App::$strings["Insert Vorbis [.ogg] audio"] = "Vorbis-audio [.ogg] invoegen"; -App::$strings["Set your location"] = "Locatie instellen"; -App::$strings["Clear browser location"] = "Locatie van webbrowser wissen"; -App::$strings["Please wait"] = "Even wachten"; App::$strings["Permission settings"] = "Permissies"; App::$strings["Public post"] = "Openbaar bericht"; App::$strings["Title (optional)"] = "Titel (optioneel)"; App::$strings["Categories (optional, comma-separated list)"] = "Categorieën (optioneel, door komma's gescheiden lijst)"; App::$strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be"; App::$strings["Preview"] = "Voorvertoning"; -App::$strings["Set expiration date"] = "Verloopdatum instellen"; App::$strings["Edit Block"] = "Blok bewerken"; App::$strings["Delete layout?"] = "Lay-out verwijderen?"; +App::$strings["Upload photo"] = "Foto uploaden"; +App::$strings["Insert YouTube video"] = "YouTube-video invoegen"; +App::$strings["Insert Vorbis [.ogg] video"] = "Vorbis-video [.ogg] invoegen"; +App::$strings["Insert Vorbis [.ogg] audio"] = "Vorbis-audio [.ogg] invoegen"; +App::$strings["Set your location"] = "Locatie instellen"; +App::$strings["Clear browser location"] = "Locatie van webbrowser wissen"; +App::$strings["Please wait"] = "Even wachten"; App::$strings["Layout Description (Optional)"] = "Lay-out-omschrijving (optioneel)"; App::$strings["Layout Name"] = "Naam lay-out"; +App::$strings["Set expiration date"] = "Verloopdatum instellen"; App::$strings["Edit Layout"] = "Lay-out bewerken"; App::$strings["Item is not editable"] = "Item is niet te bewerken"; App::$strings["Expires YYYY-MM-DD HH:MM"] = "Verloopt op DD-MM-YYYY om HH:MM"; @@ -938,6 +937,7 @@ App::$strings["__ctx:noun__ Dislike"] = array( 0 => "vindt dit niet leuk", 1 => "vinden dit niet leuk", ); +App::$strings["Photo Tools"] = "Fotohulpmiddelen"; App::$strings["In This Photo:"] = "Op deze foto:"; App::$strings["Map"] = "Kaart"; App::$strings["__ctx:noun__ Likes"] = "vinden dit leuk"; @@ -982,6 +982,7 @@ App::$strings["Hide your connections list from viewers of this profile"] = "Laat App::$strings["Edit Profile Details"] = "Profiel bewerken"; App::$strings["View this profile"] = "Profiel weergeven"; App::$strings["Edit visibility"] = "Zichtbaarheid bewerken"; +App::$strings["Profile Tools"] = "Profielhulpmiddelen"; 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"; @@ -1573,7 +1574,85 @@ 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["Public Timeline"] = "Openbare tijdlijn"; +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["l F d, Y \\@ g:i A"] = "l d F Y \\@ G:i"; +App::$strings["Starts:"] = "Start:"; +App::$strings["Finishes:"] = "Einde:"; +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 pagina"; +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["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["Site Admin"] = "Hubbeheerder"; App::$strings["Bookmarks"] = "Bladwijzers"; App::$strings["Address Book"] = "Connecties"; @@ -1592,28 +1671,12 @@ App::$strings["Features"] = "Extra functies"; App::$strings["Post"] = "Bericht"; App::$strings["Install"] = "Installeren"; App::$strings["Purchase"] = "Aanschaffen"; -App::$strings["view full size"] = "volledige grootte tonen"; -App::$strings["\$Projectname Notification"] = "\$Projectname-notificatie"; -App::$strings["\$projectname"] = "\$projectname"; -App::$strings["Thank You,"] = "Bedankt,"; -App::$strings["%s Administrator"] = "Beheerder %s"; -App::$strings["No Subject"] = "Geen onderwerp"; +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["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["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["Different viewers will see this text differently"] = "Deze tekst wordt per persoon anders weergeven."; -App::$strings["$1 spoiler"] = "$1 spoiler"; -App::$strings["$1 wrote:"] = "$1 schreef:"; 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:"; @@ -1718,6 +1781,7 @@ App::$strings["User '%s' deleted"] = "Account '%s' verwijderd"; App::$strings["Logged out."] = "Uitgelogd."; App::$strings["Failed authentication"] = "Mislukte authenticatie"; 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["Public Timeline"] = "Openbare tijdlijn"; App::$strings["Frequently"] = "Regelmatig"; App::$strings["Hourly"] = "Elk uur"; App::$strings["Twice daily"] = "Twee keer per dag"; @@ -1808,6 +1872,10 @@ 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["\$Projectname Notification"] = "\$Projectname-notificatie"; +App::$strings["\$projectname"] = "\$projectname"; +App::$strings["Thank You,"] = "Bedankt,"; +App::$strings["%s Administrator"] = "Beheerder %s"; App::$strings["%s <!item_type!>"] = "%s <!item_type!>"; App::$strings["[Hubzilla:Notify] New mail received at %s"] = "[Hubzilla:Notificatie] Nieuw privébericht ontvangen op %s"; App::$strings["%1\$s, %2\$s sent you a new private message at %3\$s."] = "%1\$s, %2\$s zond jou een nieuw privébericht om %3\$s."; @@ -1932,6 +2000,15 @@ 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["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."; @@ -1945,12 +2022,8 @@ 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["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["view full size"] = "volledige grootte tonen"; +App::$strings["No Subject"] = "Geen onderwerp"; App::$strings["System"] = "Systeem"; App::$strings["Create Personal App"] = "Persoonlijke app maken"; App::$strings["Edit Personal App"] = "Persoonlijke app bewerken"; @@ -2052,18 +2125,7 @@ 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"; @@ -2076,13 +2138,6 @@ 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"; @@ -2099,101 +2154,6 @@ 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["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["Embedded content"] = "Ingesloten (embedded) inhoud"; -App::$strings["Embedding disabled"] = "Insluiten (embedding) uitgeschakeld"; -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["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["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["Click to open/close"] = "Klik om te openen of te sluiten"; -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 pagina"; -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["Logout"] = "Uitloggen"; App::$strings["End this session"] = "Beëindig deze sessie"; App::$strings["Home"] = "Home"; @@ -2234,10 +2194,51 @@ App::$strings["Account/Channel Settings"] = "Account-/kanaal-instellingen"; App::$strings["Site Setup and Configuration"] = "Hub instellen en beheren"; App::$strings["@name, #tag, ?doc, content"] = "@kanaal, #tag, inhoud, ?hulp"; App::$strings["Please wait..."] = "Wachten aub..."; -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["Embedded content"] = "Ingesloten (embedded) inhoud"; +App::$strings["Embedding disabled"] = "Insluiten (embedding) uitgeschakeld"; +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["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["Focus (Hubzilla default)"] = "Focus (Hubzilla-standaard)"; App::$strings["Theme settings"] = "Thema-instellingen"; App::$strings["Select scheme"] = "Kies schema van thema"; diff --git a/view/tpl/admin_security.tpl b/view/tpl/admin_security.tpl index 691db2d88..3823d8235 100755 --- a/view/tpl/admin_security.tpl +++ b/view/tpl/admin_security.tpl @@ -15,9 +15,6 @@ {{include file="field_textarea.tpl" field=$whitelisted_channels}} {{include file="field_textarea.tpl" field=$blacklisted_channels}} - - {{include file="field_checkbox.tpl" field=$embed_coop}} - {{include file="field_textarea.tpl" field=$embed_allow}} {{include file="field_textarea.tpl" field=$embed_deny}} diff --git a/view/tpl/jot-header.tpl b/view/tpl/jot-header.tpl index 085710f55..bdcca71ac 100755 --- a/view/tpl/jot-header.tpl +++ b/view/tpl/jot-header.tpl @@ -1,7 +1,6 @@ <script language="javascript" type="text/javascript"> var editor = false; -var textlen = 0; var plaintext = '{{$editselect}}'; var pretext = '{{$pretext}}'; @@ -75,14 +74,6 @@ function initEditor(cb){ else { if(cPopup !== null) { cPopup.close(); cPopup = null; } } - - textlen = txt.length; - if(textlen != 0 && $('#jot-perms-icon').is('.unlock')) { - $('#profile-jot-desc').html(ispublic); - } - else { - $('#profile-jot-desc').html(' '); - } }); ed.onInit.add(function(ed) { @@ -109,8 +100,6 @@ function enableOnUser(){ </script> <script type="text/javascript" src="{{$baseurl}}/view/js/ajaxupload.js" ></script> <script> - var ispublic = '{{$ispublic}}'; - $(document).ready(function() { /* enable tinymce on focus and click */ $("#profile-jot-text").focus(enableOnUser); diff --git a/view/tpl/jot.tpl b/view/tpl/jot.tpl index 9c5ddc620..106181ab5 100755 --- a/view/tpl/jot.tpl +++ b/view/tpl/jot.tpl @@ -86,8 +86,8 @@ <i id="profile-location" class="icon-globe jot-icons"></i> </button> {{/if}} - {{if $noloc}} - <button id="profile-nolocation-wrapper" class="btn btn-default btn-sm" title="{{$noloc}}" onclick="jotClearLocation();return false;" disabled="disabled"> + {{if $clearloc}} + <button id="profile-nolocation-wrapper" class="btn btn-default btn-sm" title="{{$clearloc}}" onclick="jotClearLocation();return false;" disabled="disabled"> <i id="profile-nolocation" class="icon-circle-blank jot-icons"></i> </button> {{/if}} @@ -115,7 +115,7 @@ </button> {{/if}} </div> - {{if $writefiles || $weblink || $setloc || $noloc || $feature_expire || $feature_encrypt || $feature_voting}} + {{if $writefiles || $weblink || $setloc || $clearloc || $feature_expire || $feature_encrypt || $feature_voting}} <div class="btn-group visible-xs visible-sm"> <button type="button" id="more-tools" class="btn btn-default btn-sm dropdown-toggle" data-toggle="dropdown" aria-expanded="false"> <i id="more-tools-icon" class="icon-caret-down jot-icons"></i> @@ -128,11 +128,11 @@ {{if $weblink}} <li><a href="#" onclick="jotGetLink(); return false;"><i class="icon-link"></i> {{$weblink}}</a></li> {{/if}} -i {{if $setloc}} + {{if $setloc}} <li><a href="#" onclick="jotGetLocation(); return false;"><i class="icon-globe"></i> {{$setloc}}</a></li> {{/if}} - {{if $noloc}} - <li><a href="#" onclick="jotClearLocation(); return false;"><i class="icon-circle-blank"></i> {{$noloc}}</a></li> + {{if $clearloc}} + <li><a href="#" onclick="jotClearLocation(); return false;"><i class="icon-circle-blank"></i> {{$clearloc}}</a></li> {{/if}} {{/if}} {{if $feature_expire}} |