From 78320ee3a611b414dfd685bf36dfb0553bb2f1e3 Mon Sep 17 00:00:00 2001 From: Treer Date: Mon, 25 Apr 2016 19:00:10 +1000 Subject: add commandline help to util/config --- util/config | 40 ++++++++++++++++++++++++++++++++++++++-- 1 file changed, 38 insertions(+), 2 deletions(-) diff --git a/util/config b/util/config index 9e90eca56..5113bd8ec 100755 --- a/util/config +++ b/util/config @@ -7,9 +7,45 @@ require_once('include/cli_startup.php'); cli_startup(); -if($argc > 3) { - +$helpArgs = getopt('h', array('help')); +if (count($helpArgs) === 1) { + echo <<<'EndOfOutput' +Gets, sets, or lists site-wide configuration settings. + +Usage: util/config + util/config + util/config + util/config + + util/config + Displays all config entries + + util/config + Displays all config entries for family (system, database, etc) + + util/config + Displays single config entry for the specified family and key + + util/config + Set config entry for specified family and key to value and display result + +Notes: + Setting config entries which are manually set in .htconfig.php may result + in conflict between database settings and the manual startup settings. + + For channel-specific configuration settings, use util/pconfig + + Details for configuration options can be found at: + +EndOfOutput; + echo ' ' . App::get_baseurl() . '/help/hidden_configs' . PHP_EOL . PHP_EOL; + return; +} + + + +if($argc > 3) { set_config($argv[1],$argv[2],$argv[3]); echo "config[{$argv[1]}][{$argv[2]}] = " . printable_config(get_config($argv[1],$argv[2])) . "\n"; } -- cgit v1.2.3 From 02ee7f17e8b634a9d0e195cce212d838eaaefe9f Mon Sep 17 00:00:00 2001 From: Treer Date: Mon, 25 Apr 2016 19:30:37 +1000 Subject: add commandline help to util/pconfig --- util/pconfig | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/util/pconfig b/util/pconfig index 038fa74c3..802590f7a 100755 --- a/util/pconfig +++ b/util/pconfig @@ -8,6 +8,40 @@ require_once('include/zot.php'); cli_startup(); +$helpArgs = getopt('h', array('help')); +if (count($helpArgs) === 1) { + echo <<<'EndOfOutput' +Gets, sets, or lists personal (per channel) configuration settings. + +Usage: util/pconfig + util/pconfig + util/pconfig + util/pconfig + + util/pconfig + Displays all of the the channel's config entries + + util/pconfig + Displays all of the channel's config entries for the specified family + (system, database, etc) + + util/pconfig + Displays single config entry for the specified family and key + + util/pconfig + Set config entry for specified family and key to value and display result + +Notes: + For site-wide configuration settings, use util/config + + Details for configuration options can be found at: + +EndOfOutput; + echo ' ' . App::get_baseurl() . '/help/hidden_configs' . PHP_EOL . PHP_EOL; + return; +} + + if($argc > 4) { set_pconfig($argv[1],$argv[2],$argv[3],$argv[4]); build_sync_packet($argv[1]); -- cgit v1.2.3 From d67d8b6d6e95025525d11ce42892fb9bf40abf28 Mon Sep 17 00:00:00 2001 From: Treer Date: Mon, 25 Apr 2016 19:46:04 +1000 Subject: util/pconfig can list channel IDs --- util/pconfig | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/util/pconfig b/util/pconfig index 802590f7a..77fcd6d38 100755 --- a/util/pconfig +++ b/util/pconfig @@ -13,11 +13,15 @@ if (count($helpArgs) === 1) { echo <<<'EndOfOutput' Gets, sets, or lists personal (per channel) configuration settings. -Usage: util/pconfig +Usage: util/pconfig + util/pconfig util/pconfig util/pconfig util/pconfig + util/pconfig + List all channel IDs + util/pconfig Displays all of the the channel's config entries @@ -68,3 +72,11 @@ if($argc == 2) { } } +if($argc == 1) { + $r = q("select channel_id, channel_name from channel"); + if($r) { + foreach($r as $rr) { + echo sprintf('%4u %s', $rr['channel_id'], $rr['channel_name']) . PHP_EOL; + } + } +} -- cgit v1.2.3 From f336f38ad505df8cf85cbe7ae9ce3c1d363a1ded Mon Sep 17 00:00:00 2001 From: Treer Date: Mon, 25 Apr 2016 22:09:15 +1000 Subject: improve error message in config and pconfig --- util/config | 5 +++++ util/pconfig | 8 ++++++++ 2 files changed, 13 insertions(+) diff --git a/util/config b/util/config index 5113bd8ec..d4bcd5da1 100755 --- a/util/config +++ b/util/config @@ -3,6 +3,11 @@ // Red config utility +if(!file_exists('include/cli_startup.php')) { + echo 'Run config from the top level Hubzilla web directory, as util/config ' . PHP_EOL; + exit(1); +} + require_once('include/cli_startup.php'); cli_startup(); diff --git a/util/pconfig b/util/pconfig index 77fcd6d38..1afba8306 100755 --- a/util/pconfig +++ b/util/pconfig @@ -3,6 +3,14 @@ // Red pconfig utility + +if(!file_exists('include/cli_startup.php')) { + echo 'Run pconfig from the top level Hubzilla web directory, as util/pconfig ' . PHP_EOL; + exit(1); +} + + + require_once('include/cli_startup.php'); require_once('include/zot.php'); -- cgit v1.2.3 From 975140634c54faf8c65c1fdf8bfc3948dbe8005c Mon Sep 17 00:00:00 2001 From: jeroenpraat Date: Mon, 25 Apr 2016 15:15:24 +0200 Subject: +es-es strings update --- view/es-es/hmessages.po | 14623 +++++++++++++++++++++++----------------------- view/es-es/hstrings.php | 3544 +++++------ view/nl/hmessages.po | 14623 +++++++++++++++++++++++----------------------- view/nl/hstrings.php | 3544 +++++------ 4 files changed, 18340 insertions(+), 17994 deletions(-) diff --git a/view/es-es/hmessages.po b/view/es-es/hmessages.po index 39d963ed7..0242dbc1a 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-15 00:01-0700\n" -"PO-Revision-Date: 2016-04-16 05:32+0000\n" +"POT-Creation-Date: 2016-04-22 00:01-0700\n" +"PO-Revision-Date: 2016-04-22 10:40+0000\n" "Last-Translator: Manuel Jiménez Friaza \n" "Language-Team: Spanish (Spain) (http://www.transifex.com/Friendica/red-matrix/language/es_ES/)\n" "MIME-Version: 1.0\n" @@ -51,16 +51,16 @@ msgstr "Programar bandeja de entrada" msgid "Schedule Outbox" msgstr "Programar bandeja de salida" -#: ../../Zotlabs/Storage/Browser.php:164 ../../include/apps.php:360 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:797 +#: ../../Zotlabs/Module/Photos.php:1241 ../../include/apps.php:360 #: ../../include/apps.php:415 ../../include/conversation.php:1037 -#: ../../include/widgets.php:1457 ../../mod/photos.php:793 -#: ../../mod/photos.php:1237 +#: ../../include/widgets.php:1457 msgid "Unknown" msgstr "Desconocido" -#: ../../Zotlabs/Storage/Browser.php:226 ../../include/apps.php:135 -#: ../../include/conversation.php:1657 ../../include/nav.php:93 -#: ../../mod/fbrowser.php:109 +#: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 +#: ../../include/apps.php:135 ../../include/conversation.php:1657 +#: ../../include/nav.php:93 msgid "Files" msgstr "Ficheros" @@ -73,21 +73,23 @@ msgid "Shared" msgstr "Compartido" #: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:303 -#: ../../mod/new_channel.php:138 ../../mod/webpages.php:184 -#: ../../mod/blocks.php:154 ../../mod/layouts.php:176 ../../mod/menu.php:114 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:180 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142 +#: ../../Zotlabs/Module/Webpages.php:188 msgid "Create" msgstr "Crear" #: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:305 -#: ../../include/widgets.php:1470 ../../mod/photos.php:820 -#: ../../mod/photos.php:1361 ../../mod/profile_photo.php:401 -#: ../../mod/cover_photo.php:353 +#: ../../Zotlabs/Module/Cover_photo.php:357 +#: ../../Zotlabs/Module/Photos.php:824 ../../Zotlabs/Module/Photos.php:1365 +#: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1470 msgid "Upload" msgstr "Subir" -#: ../../Zotlabs/Storage/Browser.php:235 ../../mod/admin.php:1158 -#: ../../mod/chat.php:241 ../../mod/settings.php:599 -#: ../../mod/settings.php:625 ../../mod/sharedwithme.php:95 +#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Admin.php:1166 +#: ../../Zotlabs/Module/Chat.php:245 ../../Zotlabs/Module/Settings.php:590 +#: ../../Zotlabs/Module/Settings.php:616 +#: ../../Zotlabs/Module/Sharedwithme.php:99 msgid "Name" msgstr "Nombre" @@ -95,36 +97,45 @@ msgstr "Nombre" msgid "Type" msgstr "Tipo" -#: ../../Zotlabs/Storage/Browser.php:237 ../../include/text.php:1293 -#: ../../mod/sharedwithme.php:97 +#: ../../Zotlabs/Storage/Browser.php:237 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1293 msgid "Size" msgstr "Tamaño" -#: ../../Zotlabs/Storage/Browser.php:238 ../../mod/sharedwithme.php:98 +#: ../../Zotlabs/Storage/Browser.php:238 +#: ../../Zotlabs/Module/Sharedwithme.php:102 msgid "Last Modified" msgstr "Última modificación" -#: ../../Zotlabs/Storage/Browser.php:240 ../../include/identity.php:930 +#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Admin.php:1775 +#: ../../Zotlabs/Module/Blocks.php:159 +#: ../../Zotlabs/Module/Connections.php:290 +#: ../../Zotlabs/Module/Connections.php:310 +#: ../../Zotlabs/Module/Editblock.php:140 +#: ../../Zotlabs/Module/Editlayout.php:139 +#: ../../Zotlabs/Module/Editpost.php:118 +#: ../../Zotlabs/Module/Editwebpage.php:181 +#: ../../Zotlabs/Module/Layouts.php:188 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Thing.php:260 +#: ../../Zotlabs/Module/Webpages.php:189 ../../include/identity.php:930 #: ../../include/identity.php:934 ../../include/ItemObject.php:100 #: ../../include/apps.php:259 ../../include/menu.php:108 #: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../mod/admin.php:1767 ../../mod/editpost.php:114 -#: ../../mod/connections.php:286 ../../mod/connections.php:306 -#: ../../mod/editblock.php:136 ../../mod/editlayout.php:135 -#: ../../mod/webpages.php:185 ../../mod/editwebpage.php:177 -#: ../../mod/blocks.php:155 ../../mod/settings.php:659 -#: ../../mod/layouts.php:184 ../../mod/menu.php:108 ../../mod/thing.php:256 msgid "Edit" msgstr "Editar" -#: ../../Zotlabs/Storage/Browser.php:241 ../../include/ItemObject.php:120 -#: ../../include/apps.php:260 ../../include/conversation.php:657 -#: ../../mod/admin.php:993 ../../mod/admin.php:1152 ../../mod/admin.php:1768 -#: ../../mod/photos.php:1168 ../../mod/connections.php:259 -#: ../../mod/connedit.php:569 ../../mod/editblock.php:183 -#: ../../mod/editlayout.php:180 ../../mod/webpages.php:187 -#: ../../mod/editwebpage.php:224 ../../mod/blocks.php:157 -#: ../../mod/group.php:173 ../../mod/settings.php:660 ../../mod/thing.php:257 +#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Admin.php:1001 +#: ../../Zotlabs/Module/Admin.php:1160 ../../Zotlabs/Module/Admin.php:1776 +#: ../../Zotlabs/Module/Blocks.php:161 +#: ../../Zotlabs/Module/Connections.php:263 +#: ../../Zotlabs/Module/Connedit.php:573 +#: ../../Zotlabs/Module/Editblock.php:187 +#: ../../Zotlabs/Module/Editlayout.php:184 +#: ../../Zotlabs/Module/Editwebpage.php:228 ../../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 +#: ../../include/conversation.php:657 msgid "Delete" msgstr "Eliminar" @@ -150,58 +161,77 @@ msgstr "Crear nueva carpeta" msgid "Upload file" msgstr "Subir fichero" -#: ../../Zotlabs/Web/Router.php:47 ../../include/items.php:4671 -#: ../../include/photos.php:29 ../../include/chat.php:133 -#: ../../include/attach.php:141 ../../include/attach.php:189 -#: ../../include/attach.php:252 ../../include/attach.php:266 -#: ../../include/attach.php:273 ../../include/attach.php:338 -#: ../../include/attach.php:352 ../../include/attach.php:359 -#: ../../include/attach.php:437 ../../include/attach.php:895 -#: ../../include/attach.php:966 ../../include/attach.php:1118 -#: ../../mod/achievements.php:30 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/appman.php:66 ../../mod/page.php:31 ../../mod/page.php:86 -#: ../../mod/authtest.php:13 ../../mod/pdledit.php:22 ../../mod/block.php:22 -#: ../../mod/block.php:72 ../../mod/editpost.php:13 ../../mod/photos.php:70 -#: ../../mod/bookmarks.php:57 ../../mod/mitem.php:111 -#: ../../mod/channel.php:101 ../../mod/channel.php:221 -#: ../../mod/channel.php:261 ../../mod/poke.php:133 ../../mod/chat.php:94 -#: ../../mod/chat.php:99 ../../mod/common.php:35 ../../mod/profile.php:64 -#: ../../mod/profile.php:72 ../../mod/mood.php:112 -#: ../../mod/connections.php:29 ../../mod/profile_photo.php:289 -#: ../../mod/profile_photo.php:302 ../../mod/connedit.php:362 -#: ../../mod/network.php:12 ../../mod/cover_photo.php:273 -#: ../../mod/cover_photo.php:286 ../../mod/profiles.php:198 -#: ../../mod/profiles.php:596 ../../mod/editblock.php:65 -#: ../../mod/new_channel.php:73 ../../mod/new_channel.php:100 -#: ../../mod/editlayout.php:63 ../../mod/editlayout.php:87 -#: ../../mod/rate.php:111 ../../mod/webpages.php:69 -#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 -#: ../../mod/editwebpage.php:101 ../../mod/editwebpage.php:125 -#: ../../mod/blocks.php:69 ../../mod/blocks.php:76 ../../mod/events.php:260 -#: ../../mod/register.php:73 ../../mod/regmod.php:17 -#: ../../mod/notifications.php:66 ../../mod/filestorage.php:18 -#: ../../mod/filestorage.php:73 ../../mod/filestorage.php:88 -#: ../../mod/filestorage.php:115 ../../mod/fsuggest.php:78 -#: ../../mod/group.php:9 ../../mod/service_limits.php:7 -#: ../../mod/settings.php:579 ../../mod/id.php:71 ../../mod/setup.php:233 -#: ../../mod/sharedwithme.php:7 ../../mod/invite.php:13 -#: ../../mod/invite.php:87 ../../mod/item.php:206 ../../mod/item.php:214 -#: ../../mod/item.php:1069 ../../mod/layouts.php:69 ../../mod/layouts.php:76 -#: ../../mod/layouts.php:87 ../../mod/like.php:177 ../../mod/locs.php:83 -#: ../../mod/sources.php:66 ../../mod/mail.php:126 ../../mod/suggest.php:26 -#: ../../mod/manage.php:6 ../../mod/menu.php:74 ../../mod/message.php:16 -#: ../../mod/thing.php:270 ../../mod/thing.php:290 ../../mod/thing.php:327 -#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 -#: ../../mod/viewsrc.php:14 ../../index.php:174 +#: ../../Zotlabs/Web/Router.php:65 ../../Zotlabs/Module/Achievements.php:34 +#: ../../Zotlabs/Module/Api.php:13 ../../Zotlabs/Module/Api.php:18 +#: ../../Zotlabs/Module/Appman.php:70 ../../Zotlabs/Module/Authtest.php:16 +#: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76 +#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 +#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Channel.php:104 +#: ../../Zotlabs/Module/Channel.php:224 ../../Zotlabs/Module/Channel.php:264 +#: ../../Zotlabs/Module/Chat.php:98 ../../Zotlabs/Module/Chat.php:103 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Module/Connedit.php:366 +#: ../../Zotlabs/Module/Cover_photo.php:277 +#: ../../Zotlabs/Module/Cover_photo.php:290 +#: ../../Zotlabs/Module/Editblock.php:69 +#: ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Editlayout.php:91 ../../Zotlabs/Module/Editpost.php:17 +#: ../../Zotlabs/Module/Editwebpage.php:68 +#: ../../Zotlabs/Module/Editwebpage.php:90 +#: ../../Zotlabs/Module/Editwebpage.php:105 +#: ../../Zotlabs/Module/Editwebpage.php:129 +#: ../../Zotlabs/Module/Events.php:264 ../../Zotlabs/Module/Filestorage.php:22 +#: ../../Zotlabs/Module/Filestorage.php:77 +#: ../../Zotlabs/Module/Filestorage.php:92 +#: ../../Zotlabs/Module/Filestorage.php:119 +#: ../../Zotlabs/Module/Fsuggest.php:82 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Id.php:76 ../../Zotlabs/Module/Invite.php:17 +#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Item.php:210 +#: ../../Zotlabs/Module/Item.php:218 ../../Zotlabs/Module/Item.php:1070 +#: ../../Zotlabs/Module/Layouts.php:73 ../../Zotlabs/Module/Layouts.php:80 +#: ../../Zotlabs/Module/Layouts.php:91 ../../Zotlabs/Module/Like.php:181 +#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Mail.php:130 +#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Menu.php:78 +#: ../../Zotlabs/Module/Message.php:20 ../../Zotlabs/Module/Mitem.php:115 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Network.php:16 +#: ../../Zotlabs/Module/New_channel.php:77 +#: ../../Zotlabs/Module/New_channel.php:104 +#: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Page.php:35 +#: ../../Zotlabs/Module/Page.php:90 ../../Zotlabs/Module/Pdledit.php:26 +#: ../../Zotlabs/Module/Photos.php:74 ../../Zotlabs/Module/Poke.php:137 +#: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 +#: ../../Zotlabs/Module/Profile_photo.php:256 +#: ../../Zotlabs/Module/Profile_photo.php:269 +#: ../../Zotlabs/Module/Profiles.php:202 ../../Zotlabs/Module/Profiles.php:600 +#: ../../Zotlabs/Module/Rate.php:115 ../../Zotlabs/Module/Register.php:77 +#: ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Service_limits.php:11 +#: ../../Zotlabs/Module/Settings.php:570 ../../Zotlabs/Module/Setup.php:238 +#: ../../Zotlabs/Module/Sharedwithme.php:11 +#: ../../Zotlabs/Module/Sources.php:70 ../../Zotlabs/Module/Suggest.php:30 +#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 +#: ../../Zotlabs/Module/Thing.php:331 +#: ../../Zotlabs/Module/Viewconnections.php:26 +#: ../../Zotlabs/Module/Viewconnections.php:31 +#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Webpages.php:73 +#: ../../include/chat.php:133 ../../include/attach.php:141 +#: ../../include/attach.php:189 ../../include/attach.php:252 +#: ../../include/attach.php:266 ../../include/attach.php:273 +#: ../../include/attach.php:338 ../../include/attach.php:352 +#: ../../include/attach.php:359 ../../include/attach.php:437 +#: ../../include/attach.php:895 ../../include/attach.php:966 +#: ../../include/attach.php:1118 ../../include/items.php:4671 +#: ../../include/photos.php:29 ../../index.php:174 msgid "Permission denied." msgstr "Acceso denegado." -#: ../../Zotlabs/Web/Router.php:105 ../../mod/help.php:231 +#: ../../Zotlabs/Web/Router.php:146 ../../Zotlabs/Module/Help.php:94 msgid "Not Found" msgstr "No encontrado" -#: ../../Zotlabs/Web/Router.php:108 ../../mod/page.php:89 -#: ../../mod/block.php:75 ../../mod/display.php:117 ../../mod/help.php:234 +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Block.php:79 +#: ../../Zotlabs/Module/Display.php:121 ../../Zotlabs/Module/Help.php:97 +#: ../../Zotlabs/Module/Page.php:93 msgid "Page not found." msgstr "Página no encontrada." @@ -211,9260 +241,9401 @@ msgid "" " logout and retry." msgstr "La autenticación desde su servidor está bloqueada. Ha iniciado sesión localmente. Por favor, salga de la sesión y vuelva a intentarlo." -#: ../../Zotlabs/Zot/Auth.php:248 ../../mod/openid.php:72 -#: ../../mod/openid.php:179 +#: ../../Zotlabs/Zot/Auth.php:248 ../../Zotlabs/Module/Openid.php:76 +#: ../../Zotlabs/Module/Openid.php:183 #, php-format msgid "Welcome %s. Remote authentication successful." msgstr "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente." -#: ../../include/Import/import_diaspora.php:17 -msgid "No username found in import file." -msgstr "No se ha encontrado el nombre de usuario en el fichero importado." - -#: ../../include/Import/import_diaspora.php:42 ../../include/import.php:44 -msgid "Unable to create a unique channel address. Import failed." -msgstr "No se ha podido crear una dirección de canal única. Ha fallado la importación." +#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Blocks.php:33 +#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editblock.php:33 +#: ../../Zotlabs/Module/Editlayout.php:31 +#: ../../Zotlabs/Module/Editwebpage.php:32 +#: ../../Zotlabs/Module/Filestorage.php:58 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Layouts.php:33 ../../Zotlabs/Module/Profile.php:20 +#: ../../Zotlabs/Module/Webpages.php:33 ../../include/identity.php:830 +msgid "Requested profile is not available." +msgstr "El perfil solicitado no está disponible." -#: ../../include/Import/import_diaspora.php:143 ../../mod/import.php:502 -msgid "Import completed." -msgstr "Importación completada." +#: ../../Zotlabs/Module/Achievements.php:38 +msgid "Some blurb about what to do when you're new here" +msgstr "Algunas propuestas para el nuevo usuario sobre qué se puede hacer aquí" -#: ../../include/dba/dba_driver.php:141 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "No se ha podido localizar información de DNS para el servidor de base de datos “%s”" +#: ../../Zotlabs/Module/Acl.php:225 +msgid "network" +msgstr "red" -#: ../../include/photo/photo_driver.php:722 ../../mod/photos.php:94 -#: ../../mod/photos.php:738 ../../mod/profile_photo.php:147 -#: ../../mod/profile_photo.php:239 ../../mod/profile_photo.php:327 -msgid "Profile Photos" -msgstr "Fotos del perfil" +#: ../../Zotlabs/Module/Acl.php:235 +msgid "RSS" +msgstr "RSS" -#: ../../include/identity.php:32 -msgid "Unable to obtain identity information from database" -msgstr "No ha sido posible obtener información sobre la identidad desde la base de datos" +#: ../../Zotlabs/Module/Admin.php:58 +msgid "Theme settings updated." +msgstr "Ajustes del tema actualizados." -#: ../../include/identity.php:66 -msgid "Empty name" -msgstr "Nombre vacío" +#: ../../Zotlabs/Module/Admin.php:145 ../../Zotlabs/Module/Admin.php:1197 +#: ../../Zotlabs/Module/Admin.php:1442 ../../Zotlabs/Module/Display.php:44 +#: ../../Zotlabs/Module/Filestorage.php:31 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:4592 +msgid "Item not found." +msgstr "Elemento no encontrado." -#: ../../include/identity.php:69 -msgid "Name too long" -msgstr "Nombre demasiado largo" +#: ../../Zotlabs/Module/Admin.php:178 +msgid "# Accounts" +msgstr "# Cuentas" -#: ../../include/identity.php:180 -msgid "No account identifier" -msgstr "Ningún identificador de la cuenta" +#: ../../Zotlabs/Module/Admin.php:179 +msgid "# blocked accounts" +msgstr "# cuentas bloqueadas" -#: ../../include/identity.php:192 -msgid "Nickname is required." -msgstr "Se requiere un sobrenombre (alias)." +#: ../../Zotlabs/Module/Admin.php:180 +msgid "# expired accounts" +msgstr "# cuentas caducadas" -#: ../../include/identity.php:206 -msgid "Reserved nickname. Please choose another." -msgstr "Sobrenombre en uso. Por favor, elija otro." +#: ../../Zotlabs/Module/Admin.php:181 +msgid "# expiring accounts" +msgstr "# cuentas que caducan" -#: ../../include/identity.php:211 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio." +#: ../../Zotlabs/Module/Admin.php:192 +msgid "# Channels" +msgstr "# Canales" -#: ../../include/identity.php:287 -msgid "Unable to retrieve created identity" -msgstr "No ha sido posible recuperar la identidad creada" +#: ../../Zotlabs/Module/Admin.php:193 +msgid "# primary" +msgstr "# primario" -#: ../../include/identity.php:345 -msgid "Default Profile" -msgstr "Perfil principal" +#: ../../Zotlabs/Module/Admin.php:194 +msgid "# clones" +msgstr "# clones" -#: ../../include/identity.php:389 ../../include/identity.php:390 -#: ../../include/identity.php:397 ../../include/profile_selectors.php:80 -#: ../../include/widgets.php:446 ../../mod/connedit.php:591 -#: ../../mod/settings.php:349 ../../mod/settings.php:353 -#: ../../mod/settings.php:354 ../../mod/settings.php:357 -#: ../../mod/settings.php:368 -msgid "Friends" -msgstr "Amigos/as" +#: ../../Zotlabs/Module/Admin.php:200 +msgid "Message queues" +msgstr "Mensajes en cola" -#: ../../include/identity.php:784 -msgid "Requested channel is not available." -msgstr "El canal solicitado no está disponible." +#: ../../Zotlabs/Module/Admin.php:216 ../../Zotlabs/Module/Admin.php:462 +#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:717 +#: ../../Zotlabs/Module/Admin.php:992 ../../Zotlabs/Module/Admin.php:1156 +#: ../../Zotlabs/Module/Admin.php:1271 ../../Zotlabs/Module/Admin.php:1332 +#: ../../Zotlabs/Module/Admin.php:1493 ../../Zotlabs/Module/Admin.php:1527 +#: ../../Zotlabs/Module/Admin.php:1612 +msgid "Administration" +msgstr "Administración" -#: ../../include/identity.php:830 ../../mod/achievements.php:11 -#: ../../mod/profile.php:16 ../../mod/connect.php:13 -#: ../../mod/editblock.php:29 ../../mod/editlayout.php:27 -#: ../../mod/webpages.php:29 ../../mod/editwebpage.php:28 -#: ../../mod/blocks.php:29 ../../mod/filestorage.php:54 ../../mod/hcard.php:8 -#: ../../mod/layouts.php:29 -msgid "Requested profile is not available." -msgstr "El perfil solicitado no está disponible." +#: ../../Zotlabs/Module/Admin.php:217 +msgid "Summary" +msgstr "Sumario" -#: ../../include/identity.php:923 ../../mod/profiles.php:691 -msgid "Change profile photo" -msgstr "Cambiar la foto del perfil" +#: ../../Zotlabs/Module/Admin.php:220 +msgid "Registered accounts" +msgstr "Cuentas registradas" -#: ../../include/identity.php:930 ../../include/nav.php:88 -#: ../../mod/profiles.php:776 -msgid "Edit Profiles" -msgstr "Editar perfiles" +#: ../../Zotlabs/Module/Admin.php:221 ../../Zotlabs/Module/Admin.php:681 +msgid "Pending registrations" +msgstr "Registros pendientes" -#: ../../include/identity.php:931 -msgid "Create New Profile" -msgstr "Crear un nuevo perfil" +#: ../../Zotlabs/Module/Admin.php:222 +msgid "Registered channels" +msgstr "Canales registrados" -#: ../../include/identity.php:934 ../../include/nav.php:90 -msgid "Edit Profile" -msgstr "Editar el perfil" +#: ../../Zotlabs/Module/Admin.php:223 ../../Zotlabs/Module/Admin.php:682 +msgid "Active plugins" +msgstr "Extensiones activas" -#: ../../include/identity.php:948 ../../mod/profiles.php:766 -msgid "Profile Image" -msgstr "Imagen del perfil" +#: ../../Zotlabs/Module/Admin.php:224 +msgid "Version" +msgstr "Versión" -#: ../../include/identity.php:951 -msgid "Visible to everybody" -msgstr "Visible para todos" +#: ../../Zotlabs/Module/Admin.php:345 +msgid "Site settings updated." +msgstr "Ajustes del sitio actualizados." -#: ../../include/identity.php:952 ../../mod/profiles.php:689 -#: ../../mod/profiles.php:770 -msgid "Edit visibility" -msgstr "Editar visibilidad" +#: ../../Zotlabs/Module/Admin.php:372 ../../include/comanche.php:34 +msgid "Default" +msgstr "Predeterminado" -#: ../../include/identity.php:1007 ../../include/conversation.php:961 -#: ../../include/Contact.php:101 ../../include/widgets.php:147 -#: ../../include/widgets.php:184 ../../mod/directory.php:321 -#: ../../mod/suggest.php:52 ../../mod/match.php:64 -msgid "Connect" -msgstr "Conectar" +#: ../../Zotlabs/Module/Admin.php:382 ../../Zotlabs/Module/Settings.php:796 +msgid "mobile" +msgstr "móvil" -#: ../../include/identity.php:1022 ../../include/bb2diaspora.php:487 -#: ../../include/event.php:52 ../../include/text.php:1452 -#: ../../mod/directory.php:307 -msgid "Location:" -msgstr "Ubicación:" +#: ../../Zotlabs/Module/Admin.php:384 +msgid "experimental" +msgstr "experimental" -#: ../../include/identity.php:1026 ../../include/identity.php:1281 -msgid "Gender:" -msgstr "Género:" +#: ../../Zotlabs/Module/Admin.php:386 +msgid "unsupported" +msgstr "no soportado" -#: ../../include/identity.php:1027 ../../include/identity.php:1325 -msgid "Status:" -msgstr "Estado:" +#: ../../Zotlabs/Module/Admin.php:431 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:657 +#: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459 +#: ../../Zotlabs/Module/Events.php:468 +#: ../../Zotlabs/Module/Filestorage.php:155 +#: ../../Zotlabs/Module/Filestorage.php:163 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:665 +#: ../../Zotlabs/Module/Profiles.php:651 ../../Zotlabs/Module/Removeme.php:64 +#: ../../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 +msgid "No" +msgstr "No" -#: ../../include/identity.php:1028 ../../include/identity.php:1336 -msgid "Homepage:" -msgstr "Página personal:" +#: ../../Zotlabs/Module/Admin.php:432 +msgid "Yes - with approval" +msgstr "Sí - con aprobación" -#: ../../include/identity.php:1029 -msgid "Online Now" -msgstr "Ahora en línea" +#: ../../Zotlabs/Module/Admin.php:433 ../../Zotlabs/Module/Api.php:88 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:458 +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468 +#: ../../Zotlabs/Module/Filestorage.php:155 +#: ../../Zotlabs/Module/Filestorage.php:163 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:665 +#: ../../Zotlabs/Module/Profiles.php:651 ../../Zotlabs/Module/Removeme.php:64 +#: ../../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 +msgid "Yes" +msgstr "Sí" -#: ../../include/identity.php:1116 ../../include/identity.php:1192 -#: ../../mod/ping.php:318 -msgid "g A l F d" -msgstr "g A l d F" +#: ../../Zotlabs/Module/Admin.php:438 +msgid "My site is not a public server" +msgstr "Mi sitio no es un servidor público" -#: ../../include/identity.php:1117 ../../include/identity.php:1193 -msgid "F d" -msgstr "d F" +#: ../../Zotlabs/Module/Admin.php:439 +msgid "My site has paid access only" +msgstr "Mi sitio es un servicio de pago" -#: ../../include/identity.php:1162 ../../include/identity.php:1232 -#: ../../mod/ping.php:341 -msgid "[today]" -msgstr "[hoy]" +#: ../../Zotlabs/Module/Admin.php:440 +msgid "My site has free access only" +msgstr "Mi sitio es un servicio gratuito" -#: ../../include/identity.php:1173 -msgid "Birthday Reminders" -msgstr "Recordatorios de cumpleaños" +#: ../../Zotlabs/Module/Admin.php:441 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "Mi sitio ofrece cuentas gratuitas con opciones extra de pago" -#: ../../include/identity.php:1174 -msgid "Birthdays this week:" -msgstr "Cumpleaños de esta semana:" +#: ../../Zotlabs/Module/Admin.php:463 ../../include/widgets.php:1334 +msgid "Site" +msgstr "Sitio" -#: ../../include/identity.php:1225 -msgid "[No description]" -msgstr "[Sin descripción]" +#: ../../Zotlabs/Module/Admin.php:464 ../../Zotlabs/Module/Admin.php:654 +#: ../../Zotlabs/Module/Admin.php:729 ../../Zotlabs/Module/Admin.php:994 +#: ../../Zotlabs/Module/Admin.php:1158 ../../Zotlabs/Module/Admin.php:1334 +#: ../../Zotlabs/Module/Admin.php:1529 ../../Zotlabs/Module/Admin.php:1614 +#: ../../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/Events.php:669 +#: ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Fsuggest.php:112 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Import.php:546 +#: ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mail.php:384 ../../Zotlabs/Module/Mitem.php:235 +#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Photos.php:676 +#: ../../Zotlabs/Module/Photos.php:1051 ../../Zotlabs/Module/Photos.php:1091 +#: ../../Zotlabs/Module/Photos.php:1209 ../../Zotlabs/Module/Poke.php:186 +#: ../../Zotlabs/Module/Profiles.php:691 ../../Zotlabs/Module/Rate.php:172 +#: ../../Zotlabs/Module/Settings.php:588 ../../Zotlabs/Module/Settings.php:701 +#: ../../Zotlabs/Module/Settings.php:729 ../../Zotlabs/Module/Settings.php:752 +#: ../../Zotlabs/Module/Settings.php:840 +#: ../../Zotlabs/Module/Settings.php:1032 ../../Zotlabs/Module/Setup.php:335 +#: ../../Zotlabs/Module/Setup.php:376 ../../Zotlabs/Module/Sources.php:108 +#: ../../Zotlabs/Module/Sources.php:142 ../../Zotlabs/Module/Thing.php:316 +#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15 +#: ../../include/ItemObject.php:703 ../../include/widgets.php:708 +#: ../../include/widgets.php:720 ../../include/js_strings.php:22 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Enviar" -#: ../../include/identity.php:1243 -msgid "Event Reminders" -msgstr "Recordatorios de eventos" +#: ../../Zotlabs/Module/Admin.php:465 ../../Zotlabs/Module/Register.php:245 +msgid "Registration" +msgstr "Registro" -#: ../../include/identity.php:1244 -msgid "Events this week:" -msgstr "Eventos de esta semana:" +#: ../../Zotlabs/Module/Admin.php:466 +msgid "File upload" +msgstr "Subir fichero" -#: ../../include/identity.php:1279 ../../mod/settings.php:1047 -msgid "Full Name:" -msgstr "Nombre completo:" +#: ../../Zotlabs/Module/Admin.php:467 +msgid "Policies" +msgstr "Políticas" -#: ../../include/identity.php:1286 -msgid "Like this channel" -msgstr "Me gusta este canal" +#: ../../Zotlabs/Module/Admin.php:468 ../../include/contact_widgets.php:19 +msgid "Advanced" +msgstr "Avanzado" -#: ../../include/identity.php:1297 ../../include/ItemObject.php:179 -#: ../../include/conversation.php:1760 ../../include/taxonomy.php:415 -#: ../../mod/photos.php:1125 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "Me gusta" -msgstr[1] "Me gusta" +#: ../../Zotlabs/Module/Admin.php:472 +msgid "Site name" +msgstr "Nombre del sitio" -#: ../../include/identity.php:1310 -msgid "j F, Y" -msgstr "j F Y" +#: ../../Zotlabs/Module/Admin.php:473 +msgid "Banner/Logo" +msgstr "Banner/Logo" -#: ../../include/identity.php:1311 -msgid "j F" -msgstr "j F" +#: ../../Zotlabs/Module/Admin.php:474 +msgid "Administrator Information" +msgstr "Información del Administrador" -#: ../../include/identity.php:1318 -msgid "Birthday:" -msgstr "Cumpleaños:" +#: ../../Zotlabs/Module/Admin.php:474 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Información de contacto de los administradores del sitio. Visible en la página \"siteinfo\". Se puede usar BBCode" -#: ../../include/identity.php:1322 ../../mod/directory.php:302 -msgid "Age:" -msgstr "Edad:" +#: ../../Zotlabs/Module/Admin.php:475 +msgid "System language" +msgstr "Idioma del sistema" -#: ../../include/identity.php:1331 -#, php-format -msgid "for %1$d %2$s" -msgstr "por %1$d %2$s" +#: ../../Zotlabs/Module/Admin.php:476 +msgid "System theme" +msgstr "Tema gráfico del sistema" -#: ../../include/identity.php:1334 -msgid "Sexual Preference:" -msgstr "Orientación sexual:" +#: ../../Zotlabs/Module/Admin.php:476 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Tema del sistema por defecto - se puede cambiar por cada perfil de usuario - modificar los ajustes del tema" -#: ../../include/identity.php:1338 ../../mod/directory.php:318 -msgid "Hometown:" -msgstr "Lugar de nacimiento:" +#: ../../Zotlabs/Module/Admin.php:477 +msgid "Mobile system theme" +msgstr "Tema del sistema para móviles" -#: ../../include/identity.php:1340 -msgid "Tags:" -msgstr "Etiquetas:" +#: ../../Zotlabs/Module/Admin.php:477 +msgid "Theme for mobile devices" +msgstr "Tema para dispositivos móviles" -#: ../../include/identity.php:1342 -msgid "Political Views:" -msgstr "Posición política:" +#: ../../Zotlabs/Module/Admin.php:479 +msgid "Allow Feeds as Connections" +msgstr "Permitir contenidos RSS como conexiones" -#: ../../include/identity.php:1344 -msgid "Religion:" -msgstr "Religión:" +#: ../../Zotlabs/Module/Admin.php:479 +msgid "(Heavy system resource usage)" +msgstr "(Uso intenso de los recursos del sistema)" -#: ../../include/identity.php:1346 ../../mod/directory.php:320 -msgid "About:" -msgstr "Sobre mí:" +#: ../../Zotlabs/Module/Admin.php:480 +msgid "Maximum image size" +msgstr "Tamaño máximo de la imagen" -#: ../../include/identity.php:1348 -msgid "Hobbies/Interests:" -msgstr "Aficciones o intereses:" +#: ../../Zotlabs/Module/Admin.php:480 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Tamaño máximo en bytes de la imagen subida. Por defecto, es 0, lo que significa que no hay límites." -#: ../../include/identity.php:1350 -msgid "Likes:" -msgstr "Me gusta:" +#: ../../Zotlabs/Module/Admin.php:481 +msgid "Does this site allow new member registration?" +msgstr "¿Debe este sitio permitir el registro de nuevos miembros?" -#: ../../include/identity.php:1352 -msgid "Dislikes:" -msgstr "No me gusta:" +#: ../../Zotlabs/Module/Admin.php:482 +msgid "Invitation only" +msgstr "Solo con una invitación" -#: ../../include/identity.php:1354 -msgid "Contact information and Social Networks:" -msgstr "Información de contacto y redes sociales:" +#: ../../Zotlabs/Module/Admin.php:482 +msgid "" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." +msgstr "Solo se permiten inscripciones de nuevos miembros con un código de invitación. Además, deben aceptarse los términos del registro marcando \"Sí\"." -#: ../../include/identity.php:1356 -msgid "My other channels:" -msgstr "Mis otros canales:" +#: ../../Zotlabs/Module/Admin.php:483 +msgid "Which best describes the types of account offered by this hub?" +msgstr "¿Cómo describiría el tipo de servicio ofrecido por este servidor?" -#: ../../include/identity.php:1358 -msgid "Musical interests:" -msgstr "Preferencias musicales:" +#: ../../Zotlabs/Module/Admin.php:484 +msgid "Register text" +msgstr "Texto del registro" -#: ../../include/identity.php:1360 -msgid "Books, literature:" -msgstr "Libros, literatura:" +#: ../../Zotlabs/Module/Admin.php:484 +msgid "Will be displayed prominently on the registration page." +msgstr "Se mostrará de forma destacada en la página de registro." -#: ../../include/identity.php:1362 -msgid "Television:" -msgstr "Televisión:" +#: ../../Zotlabs/Module/Admin.php:485 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Página personal que se mostrará a los visitantes (por defecto: la página de identificación)" -#: ../../include/identity.php:1364 -msgid "Film/dance/culture/entertainment:" -msgstr "Cine, danza, cultura, entretenimiento:" +#: ../../Zotlabs/Module/Admin.php:485 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "ejemplo: 'public' para mostrar contenido público, 'page/sys/home' para mostrar la página web definida como \"home\" o 'include:home.html' para mostrar el contenido de un fichero." -#: ../../include/identity.php:1366 -msgid "Love/Romance:" -msgstr "Vida sentimental o amorosa:" +#: ../../Zotlabs/Module/Admin.php:486 +msgid "Preserve site homepage URL" +msgstr "Preservar la dirección de la página personal" -#: ../../include/identity.php:1368 -msgid "Work/employment:" -msgstr "Trabajo:" +#: ../../Zotlabs/Module/Admin.php:486 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Presenta la página personal del sitio en un marco en la ubicación original, en vez de redirigirla." -#: ../../include/identity.php:1370 -msgid "School/education:" -msgstr "Estudios:" +#: ../../Zotlabs/Module/Admin.php:487 +msgid "Accounts abandoned after x days" +msgstr "Cuentas abandonadas después de x días" -#: ../../include/identity.php:1388 ../../include/apps.php:138 -#: ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Perfil" +#: ../../Zotlabs/Module/Admin.php:487 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Para evitar consumir recursos del sistema intentando poner al día las cuentas abandonadas. Introduzca 0 para no tener límite de tiempo." -#: ../../include/identity.php:1390 -msgid "Like this thing" -msgstr "Me gusta esto" +#: ../../Zotlabs/Module/Admin.php:488 +msgid "Allowed friend domains" +msgstr "Dominios amigos permitidos" -#: ../../include/identity.php:1800 ../../mod/cover_photo.php:236 -msgid "cover photo" -msgstr "Imagen de portada del perfil" +#: ../../Zotlabs/Module/Admin.php:488 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Lista separada por comas de dominios a los que está permitido establecer relaciones de amistad con este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio." -#: ../../include/notify.php:20 -msgid "created a new post" -msgstr "ha creado una nueva entrada" +#: ../../Zotlabs/Module/Admin.php:489 +msgid "Allowed email domains" +msgstr "Se aceptan dominios de correo electrónico" -#: ../../include/notify.php:21 -#, php-format -msgid "commented on %s's post" -msgstr "ha comentado la entrada de %s" +#: ../../Zotlabs/Module/Admin.php:489 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Lista separada por comas de los dominios de los que se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio. " -#: ../../include/ItemObject.php:89 ../../include/conversation.php:664 -msgid "Private Message" -msgstr "Mensaje Privado" +#: ../../Zotlabs/Module/Admin.php:490 +msgid "Not allowed email domains" +msgstr "No se permiten dominios de correo electrónico" -#: ../../include/ItemObject.php:126 ../../include/conversation.php:656 -msgid "Select" -msgstr "Seleccionar" +#: ../../Zotlabs/Module/Admin.php:490 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "Lista separada por comas de los dominios de los que no se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para no aceptar cualquier dominio, excepto los que se hayan autorizado." -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "Guardar en carpeta" +#: ../../Zotlabs/Module/Admin.php:491 +msgid "Verify Email Addresses" +msgstr "Verificar las direcciones de correo electrónico" -#: ../../include/ItemObject.php:151 -msgid "I will attend" -msgstr "Participaré" +#: ../../Zotlabs/Module/Admin.php:491 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Activar para la verificación de la dirección de correo electrónico en el registro de una cuenta (recomendado)." -#: ../../include/ItemObject.php:151 -msgid "I will not attend" -msgstr "No participaré" +#: ../../Zotlabs/Module/Admin.php:492 +msgid "Force publish" +msgstr "Forzar la publicación" -#: ../../include/ItemObject.php:151 -msgid "I might attend" -msgstr "Quizá participe" +#: ../../Zotlabs/Module/Admin.php:492 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Intentar forzar todos los perfiles para que sean listados en el directorio de este sitio." -#: ../../include/ItemObject.php:161 -msgid "I agree" -msgstr "Estoy de acuerdo" +#: ../../Zotlabs/Module/Admin.php:493 +msgid "Import Public Streams" +msgstr "Importar contenido público" -#: ../../include/ItemObject.php:161 -msgid "I disagree" -msgstr "No estoy de acuerdo" +#: ../../Zotlabs/Module/Admin.php:493 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "Importar y permitir acceso al contenido público sacado de otros sitios. Advertencia: este contenido no está moderado, por lo que podría encontrar cosas inapropiadas u ofensivas." -#: ../../include/ItemObject.php:161 -msgid "I abstain" -msgstr "Me abstengo" +#: ../../Zotlabs/Module/Admin.php:494 +msgid "Login on Homepage" +msgstr "Iniciar sesión en la página personal" -#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 -#: ../../include/conversation.php:1736 ../../mod/photos.php:1121 -#: ../../mod/photos.php:1133 -msgid "View all" -msgstr "Ver todo" +#: ../../Zotlabs/Module/Admin.php:494 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Presentar a los visitantes una casilla de identificación en la página de inicio, si no se ha configurado otro tipo de contenido." -#: ../../include/ItemObject.php:184 ../../include/conversation.php:1763 -#: ../../mod/photos.php:1130 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "No me gusta" -msgstr[1] "No me gusta" +#: ../../Zotlabs/Module/Admin.php:495 +msgid "Enable context help" +msgstr "Habilitar la ayuda contextual" -#: ../../include/ItemObject.php:212 -msgid "Add Star" -msgstr "Destacar añadiendo una estrella" +#: ../../Zotlabs/Module/Admin.php:495 +msgid "" +"Display contextual help for the current page when the help button is " +"pressed." +msgstr "Ver la ayuda contextual para la página actual cuando se pulse el botón de Ayuda." -#: ../../include/ItemObject.php:213 -msgid "Remove Star" -msgstr "Eliminar estrella" +#: ../../Zotlabs/Module/Admin.php:497 +msgid "Directory Server URL" +msgstr "URL del servidor de directorio" -#: ../../include/ItemObject.php:214 -msgid "Toggle Star Status" -msgstr "Activar o desactivar el estado de entrada preferida" +#: ../../Zotlabs/Module/Admin.php:497 +msgid "Default directory server" +msgstr "Servidor de directorio predeterminado" -#: ../../include/ItemObject.php:218 -msgid "starred" -msgstr "preferidas" +#: ../../Zotlabs/Module/Admin.php:499 +msgid "Proxy user" +msgstr "Usuario del proxy" -#: ../../include/ItemObject.php:227 ../../include/conversation.php:671 -msgid "Message signature validated" -msgstr "Firma de mensaje validada" +#: ../../Zotlabs/Module/Admin.php:500 +msgid "Proxy URL" +msgstr "Dirección del proxy" -#: ../../include/ItemObject.php:228 ../../include/conversation.php:672 -msgid "Message signature incorrect" -msgstr "Firma de mensaje incorrecta" +#: ../../Zotlabs/Module/Admin.php:501 +msgid "Network timeout" +msgstr "Tiempo de espera de la red" -#: ../../include/ItemObject.php:236 -msgid "Add Tag" -msgstr "Añadir etiqueta" +#: ../../Zotlabs/Module/Admin.php:501 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Valor en segundos. Poner a 0 para que no haya tiempo límite (no recomendado)" -#: ../../include/ItemObject.php:254 ../../mod/photos.php:1065 -msgid "I like this (toggle)" -msgstr "Me gusta (cambiar)" +#: ../../Zotlabs/Module/Admin.php:502 +msgid "Delivery interval" +msgstr "Intervalo de entrega" -#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:328 -msgid "like" -msgstr "me gusta" +#: ../../Zotlabs/Module/Admin.php:502 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Retrasar los procesos de transmisión en segundo plano por esta cantidad de segundos para reducir la carga del sistema. Recomendado: 4-5 para sitios compartidos, 2-3 para servidores virtuales privados, 0-1 para grandes servidores dedicados." -#: ../../include/ItemObject.php:255 ../../mod/photos.php:1066 -msgid "I don't like this (toggle)" -msgstr "No me gusta esto (cambiar)" +#: ../../Zotlabs/Module/Admin.php:503 +msgid "Deliveries per process" +msgstr "Intentos de envío por proceso" -#: ../../include/ItemObject.php:255 ../../include/taxonomy.php:329 -msgid "dislike" -msgstr "no me gusta" +#: ../../Zotlabs/Module/Admin.php:503 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust" +" if necessary to tune system performance. Recommend: 1-5." +msgstr "Numero de envíos a intentar en un único proceso del sistema operativo. Ajustar si es necesario mejorar el rendimiento. Se recomienda: 1-5." -#: ../../include/ItemObject.php:259 -msgid "Share This" -msgstr "Compartir esto" +#: ../../Zotlabs/Module/Admin.php:504 +msgid "Poll interval" +msgstr "Intervalo máximo de tiempo entre dos mensajes sucesivos" -#: ../../include/ItemObject.php:259 -msgid "share" -msgstr "compartir" +#: ../../Zotlabs/Module/Admin.php:504 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "Retrasar el intervalo de envío en segundo plano, en esta cantidad de segundos, para reducir la carga del sistema. Si es 0, usar el intervalo de entrega." -#: ../../include/ItemObject.php:268 -msgid "Delivery Report" -msgstr "Informe de transmisión" +#: ../../Zotlabs/Module/Admin.php:505 +msgid "Maximum Load Average" +msgstr "Carga media máxima" -#: ../../include/ItemObject.php:286 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d comentario" -msgstr[1] "%d comentarios" +#: ../../Zotlabs/Module/Admin.php:505 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Carga máxima del sistema antes de que los procesos de entrega y envío se hayan retardado - por defecto, 50." -#: ../../include/ItemObject.php:315 ../../include/ItemObject.php:316 -#, php-format -msgid "View %s's profile - %s" -msgstr "Ver el perfil de %s - %s" +#: ../../Zotlabs/Module/Admin.php:506 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "Caducidad del contenido importado de otros sitios (en días)" -#: ../../include/ItemObject.php:319 -msgid "to" -msgstr "a" - -#: ../../include/ItemObject.php:320 -msgid "via" -msgstr "mediante" +#: ../../Zotlabs/Module/Admin.php:506 +msgid "0 for no expiration of imported content" +msgstr "0 para que no caduque el contenido importado" -#: ../../include/ItemObject.php:321 -msgid "Wall-to-Wall" -msgstr "De página del perfil a página del perfil (de \"muro\" a \"muro\")" +#: ../../Zotlabs/Module/Admin.php:643 ../../Zotlabs/Module/Admin.php:644 +#: ../../Zotlabs/Module/Settings.php:720 +msgid "Off" +msgstr "Desactivado" -#: ../../include/ItemObject.php:322 -msgid "via Wall-To-Wall:" -msgstr "Mediante el procedimiento página del perfil a página del perfil (de \"muro\" a \"muro\")" +#: ../../Zotlabs/Module/Admin.php:643 ../../Zotlabs/Module/Admin.php:644 +#: ../../Zotlabs/Module/Settings.php:720 +msgid "On" +msgstr "Activado" -#: ../../include/ItemObject.php:334 ../../include/conversation.php:719 +#: ../../Zotlabs/Module/Admin.php:644 #, php-format -msgid "from %s" -msgstr "desde %s" +msgid "Lock feature %s" +msgstr "Bloquear la funcionalidad %s" -#: ../../include/ItemObject.php:337 ../../include/conversation.php:722 -#, php-format -msgid "last edited: %s" -msgstr "último cambio: %s" +#: ../../Zotlabs/Module/Admin.php:652 +msgid "Manage Additional Features" +msgstr "Gestionar las funcionalidades" -#: ../../include/ItemObject.php:338 ../../include/conversation.php:723 -#, php-format -msgid "Expires: %s" -msgstr "Caduca: %s" +#: ../../Zotlabs/Module/Admin.php:669 +msgid "No server found" +msgstr "Servidor no encontrado" -#: ../../include/ItemObject.php:362 -msgid "Save Bookmarks" -msgstr "Guardar en Marcadores" +#: ../../Zotlabs/Module/Admin.php:676 ../../Zotlabs/Module/Admin.php:1006 +msgid "ID" +msgstr "ID" -#: ../../include/ItemObject.php:363 -msgid "Add to Calendar" -msgstr "Añadir al calendario" +#: ../../Zotlabs/Module/Admin.php:676 +msgid "for channel" +msgstr "por canal" -#: ../../include/ItemObject.php:372 -msgid "Mark all seen" -msgstr "Marcar todo como visto" +#: ../../Zotlabs/Module/Admin.php:676 +msgid "on server" +msgstr "en el servidor" -#: ../../include/ItemObject.php:378 ../../mod/photos.php:1251 -msgctxt "noun" -msgid "Likes" -msgstr "Me gusta" +#: ../../Zotlabs/Module/Admin.php:676 ../../Zotlabs/Module/Connections.php:270 +msgid "Status" +msgstr "Estado" -#: ../../include/ItemObject.php:379 ../../mod/photos.php:1252 -msgctxt "noun" -msgid "Dislikes" -msgstr "No me gusta" +#: ../../Zotlabs/Module/Admin.php:678 +msgid "Server" +msgstr "Servidor" -#: ../../include/ItemObject.php:384 ../../include/acl_selectors.php:252 -#: ../../mod/photos.php:1257 -msgid "Close" -msgstr "Cerrar" +#: ../../Zotlabs/Module/Admin.php:718 ../../include/widgets.php:1337 +msgid "Security" +msgstr "Seguridad" -#: ../../include/ItemObject.php:389 ../../include/conversation.php:740 -#: ../../include/conversation.php:1244 ../../mod/editpost.php:131 -#: ../../mod/photos.php:1068 ../../mod/editblock.php:151 -#: ../../mod/editlayout.php:149 ../../mod/editwebpage.php:191 -msgid "Please wait" -msgstr "Espere por favor" +#: ../../Zotlabs/Module/Admin.php:720 +msgid "Block public" +msgstr "Bloquear páginas públicas" -#: ../../include/ItemObject.php:413 ../../include/js_strings.php:7 -msgid "[+] show all" -msgstr "[+] mostrar todo:" +#: ../../Zotlabs/Module/Admin.php:720 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "Habilitar para impedir ver las páginas personales de este sitio a quien no esté actualmente autenticado." -#: ../../include/ItemObject.php:700 ../../mod/photos.php:1084 -#: ../../mod/photos.php:1202 -msgid "This is you" -msgstr "Este es usted" +#: ../../Zotlabs/Module/Admin.php:721 +msgid "Allow communications only from these sites" +msgstr "Permitir la comunicación solo desde estos sitios" -#: ../../include/ItemObject.php:702 ../../include/js_strings.php:6 -#: ../../mod/photos.php:1086 ../../mod/photos.php:1204 -msgid "Comment" -msgstr "Comentar" +#: ../../Zotlabs/Module/Admin.php:721 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "Un sitio por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera" -#: ../../include/ItemObject.php:703 ../../include/widgets.php:708 -#: ../../include/widgets.php:720 ../../include/js_strings.php:22 -#: ../../mod/admin.php:457 ../../mod/admin.php:646 ../../mod/admin.php:721 -#: ../../mod/admin.php:986 ../../mod/admin.php:1150 ../../mod/admin.php:1326 -#: ../../mod/admin.php:1521 ../../mod/admin.php:1606 ../../mod/admin.php:1770 -#: ../../mod/appman.php:99 ../../mod/pconfig.php:108 ../../mod/pdledit.php:62 -#: ../../mod/photos.php:672 ../../mod/photos.php:1047 -#: ../../mod/photos.php:1087 ../../mod/photos.php:1205 ../../mod/mitem.php:231 -#: ../../mod/cal.php:337 ../../mod/poke.php:182 ../../mod/chat.php:190 -#: ../../mod/chat.php:232 ../../mod/connect.php:93 ../../mod/mood.php:135 -#: ../../mod/connedit.php:729 ../../mod/profiles.php:687 -#: ../../mod/rate.php:168 ../../mod/events.php:468 ../../mod/events.php:665 -#: ../../mod/filestorage.php:156 ../../mod/fsuggest.php:108 -#: ../../mod/group.php:81 ../../mod/settings.php:597 -#: ../../mod/settings.php:710 ../../mod/settings.php:738 -#: ../../mod/settings.php:761 ../../mod/settings.php:849 -#: ../../mod/settings.php:1041 ../../mod/setup.php:336 ../../mod/setup.php:377 -#: ../../mod/import.php:542 ../../mod/import_items.php:116 -#: ../../mod/invite.php:142 ../../mod/locs.php:117 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/mail.php:380 ../../mod/thing.php:312 -#: ../../mod/thing.php:358 ../../mod/xchan.php:11 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Enviar" +#: ../../Zotlabs/Module/Admin.php:722 +msgid "Block communications from these sites" +msgstr "Bloquear la comunicación desde estos sitios" -#: ../../include/ItemObject.php:704 ../../include/conversation.php:1216 -#: ../../mod/editpost.php:115 ../../mod/editblock.php:137 -#: ../../mod/editlayout.php:136 ../../mod/editwebpage.php:178 -msgid "Bold" -msgstr "Negrita" +#: ../../Zotlabs/Module/Admin.php:723 +msgid "Allow communications only from these channels" +msgstr "Permitir la comunicación solo desde estos canales" -#: ../../include/ItemObject.php:705 ../../include/conversation.php:1217 -#: ../../mod/editpost.php:116 ../../mod/editblock.php:138 -#: ../../mod/editlayout.php:137 ../../mod/editwebpage.php:179 -msgid "Italic" -msgstr "Itálico " +#: ../../Zotlabs/Module/Admin.php:723 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by " +"default" +msgstr "Un canal (hash) por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera" -#: ../../include/ItemObject.php:706 ../../include/conversation.php:1218 -#: ../../mod/editpost.php:117 ../../mod/editblock.php:139 -#: ../../mod/editlayout.php:138 ../../mod/editwebpage.php:180 -msgid "Underline" -msgstr "Subrayar" +#: ../../Zotlabs/Module/Admin.php:724 +msgid "Block communications from these channels" +msgstr "Bloquear la comunicación desde estos canales" -#: ../../include/ItemObject.php:707 ../../include/conversation.php:1219 -#: ../../mod/editpost.php:118 ../../mod/editblock.php:140 -#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:181 -msgid "Quote" -msgstr "Citar" +#: ../../Zotlabs/Module/Admin.php:725 +msgid "Allow embedded HTML content only from these domains" +msgstr "Permitir contenido con HTML incorporado solo desde estos dominios" -#: ../../include/ItemObject.php:708 ../../include/conversation.php:1220 -#: ../../mod/editpost.php:119 ../../mod/editblock.php:141 -#: ../../mod/editlayout.php:140 ../../mod/editwebpage.php:182 -msgid "Code" -msgstr "Código" +#: ../../Zotlabs/Module/Admin.php:725 +msgid "One site per line. Leave empty to allow from any site by default" +msgstr "Un sitio por línea. Dejar en blanco para permitirlo por defecto desde cualquier sitio" -#: ../../include/ItemObject.php:709 -msgid "Image" -msgstr "Imagen" +#: ../../Zotlabs/Module/Admin.php:726 +msgid "Block embedded HTML from these domains" +msgstr "Bloquear contenido con HTML incorporado desde estos dominios" -#: ../../include/ItemObject.php:710 -msgid "Insert Link" -msgstr "Insertar enlace" +#: ../../Zotlabs/Module/Admin.php:728 +msgid "Cooperative embed security" +msgstr "Seguridad cooperativa incorporada" -#: ../../include/ItemObject.php:711 -msgid "Video" -msgstr "Vídeo" +#: ../../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" -#: ../../include/ItemObject.php:712 ../../include/conversation.php:1186 -#: ../../include/page_widgets.php:40 ../../mod/editpost.php:151 -#: ../../mod/photos.php:1088 ../../mod/editblock.php:172 -#: ../../mod/webpages.php:192 ../../mod/editwebpage.php:213 -#: ../../mod/events.php:465 -msgid "Preview" -msgstr "Previsualizar" +#: ../../Zotlabs/Module/Admin.php:743 +msgid "Update has been marked successful" +msgstr "La actualización ha sido marcada como exitosa" -#: ../../include/ItemObject.php:715 ../../include/conversation.php:1274 -#: ../../mod/editpost.php:159 ../../mod/chat.php:200 ../../mod/mail.php:255 -#: ../../mod/mail.php:385 -msgid "Encrypt text" -msgstr "Cifrar texto" +#: ../../Zotlabs/Module/Admin.php:753 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "La ejecución de %s ha fallado. Mirar en los informes del sistema." -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Dirección de correo no válida" +#: ../../Zotlabs/Module/Admin.php:756 +#, php-format +msgid "Update %s was successfully applied." +msgstr "La actualización de %s se ha realizado exitosamente." -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "Su dirección de correo no pertenece a ninguno de los dominios permitidos en este sitio." +#: ../../Zotlabs/Module/Admin.php:760 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "La actualización de %s no ha devuelto ningún estado. No se sabe si ha tenido éxito." -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "Su dirección de correo está ya registrada en este sitio." +#: ../../Zotlabs/Module/Admin.php:763 +#, php-format +msgid "Update function %s could not be found." +msgstr "No se encuentra la función de actualización de %s." -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "Es obligatorio que le inviten." +#: ../../Zotlabs/Module/Admin.php:779 +msgid "No failed updates." +msgstr "No ha fallado ninguna actualización." -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "No se ha podido verificar su invitación." +#: ../../Zotlabs/Module/Admin.php:783 +msgid "Failed Updates" +msgstr "Han fallado las actualizaciones" -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Por favor introduzca la información requerida." +#: ../../Zotlabs/Module/Admin.php:785 +msgid "Mark success (if update was manually applied)" +msgstr "Marcar como exitosa (si la actualización se ha hecho manualmente)" -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "La información de la cuenta no se ha podido guardar." +#: ../../Zotlabs/Module/Admin.php:786 +msgid "Attempt to execute this update step automatically" +msgstr "Intentar ejecutar este paso de actualización automáticamente" -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Confirmación de registro para %s" +#: ../../Zotlabs/Module/Admin.php:817 +msgid "Queue Statistics" +msgstr "Estadísticas de la cola" -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Solicitud de registro en %s" +#: ../../Zotlabs/Module/Admin.php:818 +msgid "Total Entries" +msgstr "Total de entradas" -#: ../../include/account.php:317 ../../include/account.php:344 -#: ../../include/account.php:404 ../../include/network.php:1875 -msgid "Administrator" -msgstr "Administrador" +#: ../../Zotlabs/Module/Admin.php:819 +msgid "Priority" +msgstr "Prioridad" -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "su contraseña de registro" +#: ../../Zotlabs/Module/Admin.php:820 +msgid "Destination URL" +msgstr "Dirección de destino" -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Detalles del registro de %s" +#: ../../Zotlabs/Module/Admin.php:821 +msgid "Mark hub permanently offline" +msgstr "Marcar el servidor como permanentemente fuera de línea" -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Cuenta aprobada." +#: ../../Zotlabs/Module/Admin.php:822 +msgid "Empty queue for this hub" +msgstr "Vaciar la cola para este servidor" -#: ../../include/account.php:454 +#: ../../Zotlabs/Module/Admin.php:823 +msgid "Last known contact" +msgstr "Último contacto conocido" + +#: ../../Zotlabs/Module/Admin.php:859 #, php-format -msgid "Registration revoked for %s" -msgstr "Registro revocado para %s" +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "%s cuenta bloqueada/desbloqueada" +msgstr[1] "%s cuenta bloqueada/desbloqueada" -#: ../../include/account.php:506 -msgid "Account verified. Please login." -msgstr "Cuenta verificada. Por favor, inicie sesión." +#: ../../Zotlabs/Module/Admin.php:867 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s cuentas eliminadas" +msgstr[1] "%s cuentas eliminadas" -#: ../../include/account.php:719 ../../include/account.php:721 -msgid "Click here to upgrade." -msgstr "Pulse aquí para actualizar" +#: ../../Zotlabs/Module/Admin.php:903 +msgid "Account not found" +msgstr "Cuenta no encontrada" -#: ../../include/account.php:727 -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 " +#: ../../Zotlabs/Module/Admin.php:915 +#, php-format +msgid "Account '%s' deleted" +msgstr "La cuenta '%s' ha sido eliminada" -#: ../../include/account.php:732 -msgid "This action is not available under your subscription plan." -msgstr "Esta acción no está disponible en su plan de suscripción." +#: ../../Zotlabs/Module/Admin.php:923 +#, php-format +msgid "Account '%s' blocked" +msgstr "La cuenta '%s' ha sido bloqueada" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 ../../mod/id.php:103 -msgid "Male" -msgstr "Hombre" +#: ../../Zotlabs/Module/Admin.php:931 +#, php-format +msgid "Account '%s' unblocked" +msgstr "La cuenta '%s' ha sido desbloqueada" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 ../../mod/id.php:105 -msgid "Female" -msgstr "Mujer" +#: ../../Zotlabs/Module/Admin.php:993 ../../Zotlabs/Module/Admin.php:1005 +msgid "Users" +msgstr "Usuarios" -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Actualmente hombre" +#: ../../Zotlabs/Module/Admin.php:995 ../../Zotlabs/Module/Admin.php:1159 +msgid "select all" +msgstr "seleccionar todo" -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Actualmente mujer" +#: ../../Zotlabs/Module/Admin.php:996 +msgid "User registrations waiting for confirm" +msgstr "Registros de usuario en espera de aprobación" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Generalmente hombre" +#: ../../Zotlabs/Module/Admin.php:997 +msgid "Request date" +msgstr "Fecha de solicitud" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Generalmente mujer" +#: ../../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 +msgid "Email" +msgstr "Correo electrónico" -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgénero" +#: ../../Zotlabs/Module/Admin.php:998 +msgid "No registrations." +msgstr "Sin registros." -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Intersexual" +#: ../../Zotlabs/Module/Admin.php:999 ../../Zotlabs/Module/Connections.php:275 +msgid "Approve" +msgstr "Aprobar" -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transexual" +#: ../../Zotlabs/Module/Admin.php:1000 +msgid "Deny" +msgstr "Rechazar" -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafrodita" +#: ../../Zotlabs/Module/Admin.php:1002 ../../Zotlabs/Module/Connedit.php:541 +msgid "Block" +msgstr "Bloquear" -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Neutral" +#: ../../Zotlabs/Module/Admin.php:1003 ../../Zotlabs/Module/Connedit.php:541 +msgid "Unblock" +msgstr "Desbloquear" -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "No especificado" +#: ../../Zotlabs/Module/Admin.php:1006 ../../include/group.php:267 +msgid "All Channels" +msgstr "Todos los canales" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 ../../include/permissions.php:881 -msgid "Other" -msgstr "Otro" +#: ../../Zotlabs/Module/Admin.php:1006 +msgid "Register date" +msgstr "Fecha de registro" -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Indeciso/a" +#: ../../Zotlabs/Module/Admin.php:1006 +msgid "Last login" +msgstr "Último acceso" -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Males" -msgstr "Hombres" +#: ../../Zotlabs/Module/Admin.php:1006 +msgid "Expires" +msgstr "Caduca" -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Females" -msgstr "Mujeres" +#: ../../Zotlabs/Module/Admin.php:1006 +msgid "Service Class" +msgstr "Clase de servicio" -#: ../../include/profile_selectors.php:42 -msgid "Gay" -msgstr "Homosexual" +#: ../../Zotlabs/Module/Admin.php:1008 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "¡Las cuentas seleccionadas van a ser eliminadas!\\n\\n¡Todo lo que estas cuentas han publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?" -#: ../../include/profile_selectors.php:42 -msgid "Lesbian" -msgstr "Lesbiana" +#: ../../Zotlabs/Module/Admin.php:1009 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "¡La cuenta {0} va a ser eliminada!\\n\\n¡Todo lo que esta cuenta ha publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?" -#: ../../include/profile_selectors.php:42 -msgid "No Preference" -msgstr "Sin preferencias" +#: ../../Zotlabs/Module/Admin.php:1045 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "%s canales censurados/no censurados" +msgstr[1] "%s canales censurados/no censurados" -#: ../../include/profile_selectors.php:42 -msgid "Bisexual" -msgstr "Bisexual" +#: ../../Zotlabs/Module/Admin.php:1054 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "%s código permitido/no permitido al canal" +msgstr[1] "%s código permitido/no permitido al canal" -#: ../../include/profile_selectors.php:42 -msgid "Autosexual" -msgstr "Autosexual" +#: ../../Zotlabs/Module/Admin.php:1061 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s canales eliminados" +msgstr[1] "%s canales eliminados" -#: ../../include/profile_selectors.php:42 -msgid "Abstinent" -msgstr "Casto/a" +#: ../../Zotlabs/Module/Admin.php:1081 +msgid "Channel not found" +msgstr "Canal no encontrado" -#: ../../include/profile_selectors.php:42 -msgid "Virgin" -msgstr "Virgen" +#: ../../Zotlabs/Module/Admin.php:1092 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Canal '%s' eliminado" -#: ../../include/profile_selectors.php:42 -msgid "Deviant" -msgstr "Fuera de lo común" +#: ../../Zotlabs/Module/Admin.php:1104 +#, php-format +msgid "Channel '%s' censored" +msgstr "Canal '%s' censurado" -#: ../../include/profile_selectors.php:42 -msgid "Fetish" -msgstr "Fetichista" +#: ../../Zotlabs/Module/Admin.php:1104 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Canal '%s' no censurado" -#: ../../include/profile_selectors.php:42 -msgid "Oodles" -msgstr "Orgías" +#: ../../Zotlabs/Module/Admin.php:1115 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Código permitido al canal '%s'" -#: ../../include/profile_selectors.php:42 -msgid "Nonsexual" -msgstr "Asexual" +#: ../../Zotlabs/Module/Admin.php:1115 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Código no permitido al canal '%s'" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Single" -msgstr "Soltero/a" +#: ../../Zotlabs/Module/Admin.php:1157 ../../include/widgets.php:1336 +msgid "Channels" +msgstr "Canales" -#: ../../include/profile_selectors.php:80 -msgid "Lonely" -msgstr "Solo/a" +#: ../../Zotlabs/Module/Admin.php:1161 +msgid "Censor" +msgstr "Censurar" -#: ../../include/profile_selectors.php:80 -msgid "Available" -msgstr "Disponible" +#: ../../Zotlabs/Module/Admin.php:1162 +msgid "Uncensor" +msgstr "No censurar" -#: ../../include/profile_selectors.php:80 -msgid "Unavailable" -msgstr "No disponible" +#: ../../Zotlabs/Module/Admin.php:1163 +msgid "Allow Code" +msgstr "Permitir código" -#: ../../include/profile_selectors.php:80 -msgid "Has crush" -msgstr "Enamorado/a" +#: ../../Zotlabs/Module/Admin.php:1164 +msgid "Disallow Code" +msgstr "No permitir código" -#: ../../include/profile_selectors.php:80 -msgid "Infatuated" -msgstr "Apasionado/a" +#: ../../Zotlabs/Module/Admin.php:1165 ../../include/conversation.php:1629 +msgid "Channel" +msgstr "Canal" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Dating" -msgstr "Saliendo con alguien" +#: ../../Zotlabs/Module/Admin.php:1166 +msgid "UID" +msgstr "UID" -#: ../../include/profile_selectors.php:80 -msgid "Unfaithful" -msgstr "Infiel" +#: ../../Zotlabs/Module/Admin.php:1166 ../../Zotlabs/Module/Locs.php:118 +#: ../../Zotlabs/Module/Profiles.php:469 +msgid "Address" +msgstr "Dirección" -#: ../../include/profile_selectors.php:80 -msgid "Sex Addict" -msgstr "Con adicción al sexo" +#: ../../Zotlabs/Module/Admin.php:1168 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Los canales seleccionados se eliminarán!\\n\\nTodo lo publicado por estos canales en este sitio se borrarán definitivamente!\\n\\n¿Está seguro de querer hacerlo?" -#: ../../include/profile_selectors.php:80 -msgid "Friends/Benefits" -msgstr "Amigos con algo extra" +#: ../../Zotlabs/Module/Admin.php:1169 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "El canal {0} va a ser eliminado!\\n\\nTodo lo publicado por el canal en este sitio se borrará definitivamente!\\n\\n¿Está seguro de querer hacerlo?" -#: ../../include/profile_selectors.php:80 -msgid "Casual" -msgstr "Casual" +#: ../../Zotlabs/Module/Admin.php:1226 +#, php-format +msgid "Plugin %s disabled." +msgstr "Extensión %s desactivada." -#: ../../include/profile_selectors.php:80 -msgid "Engaged" -msgstr "Prometido/a" +#: ../../Zotlabs/Module/Admin.php:1230 +#, php-format +msgid "Plugin %s enabled." +msgstr "Extensión %s activada." -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Married" -msgstr "Casado/a" +#: ../../Zotlabs/Module/Admin.php:1240 ../../Zotlabs/Module/Admin.php:1466 +msgid "Disable" +msgstr "Desactivar" -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily married" -msgstr "Casado/a en sueños" +#: ../../Zotlabs/Module/Admin.php:1243 ../../Zotlabs/Module/Admin.php:1468 +msgid "Enable" +msgstr "Activar" -#: ../../include/profile_selectors.php:80 -msgid "Partners" -msgstr "Pareja" +#: ../../Zotlabs/Module/Admin.php:1272 ../../Zotlabs/Module/Admin.php:1333 +#: ../../include/widgets.php:1339 +msgid "Plugins" +msgstr "Extensiones" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Cohabiting" -msgstr "Cohabitando" +#: ../../Zotlabs/Module/Admin.php:1273 ../../Zotlabs/Module/Admin.php:1495 +msgid "Toggle" +msgstr "Cambiar" -#: ../../include/profile_selectors.php:80 -msgid "Common law" -msgstr "Matrimonio tradicional" +#: ../../Zotlabs/Module/Admin.php:1274 ../../Zotlabs/Module/Admin.php:1496 +#: ../../include/apps.php:134 ../../include/widgets.php:589 +#: ../../include/nav.php:211 +msgid "Settings" +msgstr "Ajustes" -#: ../../include/profile_selectors.php:80 -msgid "Happy" -msgstr "Felíz" +#: ../../Zotlabs/Module/Admin.php:1281 ../../Zotlabs/Module/Admin.php:1505 +msgid "Author: " +msgstr "Autor:" -#: ../../include/profile_selectors.php:80 -msgid "Not looking" -msgstr "No estoy buscando" +#: ../../Zotlabs/Module/Admin.php:1282 ../../Zotlabs/Module/Admin.php:1506 +msgid "Maintainer: " +msgstr "Mantenedor:" -#: ../../include/profile_selectors.php:80 -msgid "Swinger" -msgstr "Libertino" - -#: ../../include/profile_selectors.php:80 -msgid "Betrayed" -msgstr "Engañado/a" +#: ../../Zotlabs/Module/Admin.php:1283 +msgid "Minimum project version: " +msgstr "Versión mínima del proyecto:" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Separated" -msgstr "Separado/a" +#: ../../Zotlabs/Module/Admin.php:1284 +msgid "Maximum project version: " +msgstr "Versión máxima del proyecto:" -#: ../../include/profile_selectors.php:80 -msgid "Unstable" -msgstr "Inestable" +#: ../../Zotlabs/Module/Admin.php:1285 +msgid "Minimum PHP version: " +msgstr "Versión mínima de PHP:" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Divorced" -msgstr "Divorciado/a" +#: ../../Zotlabs/Module/Admin.php:1286 +msgid "Requires: " +msgstr "Se requiere:" -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily divorced" -msgstr "Divorciado/a en sueños" +#: ../../Zotlabs/Module/Admin.php:1287 ../../Zotlabs/Module/Admin.php:1338 +msgid "Disabled - version incompatibility" +msgstr "Deshabilitado - versiones incompatibles" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Widowed" -msgstr "Viudo/a" +#: ../../Zotlabs/Module/Admin.php:1431 +msgid "No themes found." +msgstr "No se han encontrado temas." -#: ../../include/profile_selectors.php:80 -msgid "Uncertain" -msgstr "Indeterminado" +#: ../../Zotlabs/Module/Admin.php:1487 +msgid "Screenshot" +msgstr "Instantánea de pantalla" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "It's complicated" -msgstr "Es complicado" +#: ../../Zotlabs/Module/Admin.php:1494 ../../Zotlabs/Module/Admin.php:1528 +#: ../../include/widgets.php:1340 +msgid "Themes" +msgstr "Temas" -#: ../../include/profile_selectors.php:80 -msgid "Don't care" -msgstr "No me importa" +#: ../../Zotlabs/Module/Admin.php:1533 +msgid "[Experimental]" +msgstr "[Experimental]" -#: ../../include/profile_selectors.php:80 -msgid "Ask me" -msgstr "Pregúnteme" +#: ../../Zotlabs/Module/Admin.php:1534 +msgid "[Unsupported]" +msgstr "[No soportado]" -#: ../../include/acl_selectors.php:218 -msgid "Visible to your default audience" -msgstr "Visible para su público predeterminado." +#: ../../Zotlabs/Module/Admin.php:1558 +msgid "Log settings updated." +msgstr "Actualizado el informe de configuraciones." -#: ../../include/acl_selectors.php:243 -msgid "Show" -msgstr "Mostrar" +#: ../../Zotlabs/Module/Admin.php:1613 ../../include/widgets.php:1361 +#: ../../include/widgets.php:1371 +msgid "Logs" +msgstr "Informes" -#: ../../include/acl_selectors.php:244 -msgid "Don't show" -msgstr "No mostrar" +#: ../../Zotlabs/Module/Admin.php:1615 +msgid "Clear" +msgstr "Vaciar" -#: ../../include/acl_selectors.php:249 -msgid "Other networks and post services" -msgstr "Otras redes y servicios de publicación" +#: ../../Zotlabs/Module/Admin.php:1621 +msgid "Debugging" +msgstr "Depuración" -#: ../../include/acl_selectors.php:251 ../../mod/photos.php:666 -#: ../../mod/photos.php:1040 ../../mod/chat.php:229 -#: ../../mod/filestorage.php:147 ../../mod/thing.php:309 -#: ../../mod/thing.php:355 -msgid "Permissions" -msgstr "Permisos" +#: ../../Zotlabs/Module/Admin.php:1622 +msgid "Log file" +msgstr "Fichero de informe" -#: ../../include/activities.php:42 -msgid " and " -msgstr " y " +#: ../../Zotlabs/Module/Admin.php:1622 +msgid "" +"Must be writable by web server. Relative to your Red top-level directory." +msgstr "Debe tener permisos de escritura por el servidor web. La ruta es relativa al directorio de instalación de Hubzilla." -#: ../../include/activities.php:50 -msgid "public profile" -msgstr "el perfil público" +#: ../../Zotlabs/Module/Admin.php:1623 +msgid "Log level" +msgstr "Nivel de depuración" -#: ../../include/activities.php:59 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s ha cambiado %2$s a “%3$s”" +#: ../../Zotlabs/Module/Admin.php:1690 +msgid "New Profile Field" +msgstr "Nuevo campo en el perfil" -#: ../../include/activities.php:60 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Visitar %2$s de %1$s" +#: ../../Zotlabs/Module/Admin.php:1691 ../../Zotlabs/Module/Admin.php:1711 +msgid "Field nickname" +msgstr "Alias del campo" -#: ../../include/activities.php:63 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s ha actualizado %2$s, cambiando %3$s." +#: ../../Zotlabs/Module/Admin.php:1691 ../../Zotlabs/Module/Admin.php:1711 +msgid "System name of field" +msgstr "Nombre del campo en el sistema" -#: ../../include/apps.php:128 -msgid "Site Admin" -msgstr "Administrador del sitio" +#: ../../Zotlabs/Module/Admin.php:1692 ../../Zotlabs/Module/Admin.php:1712 +msgid "Input type" +msgstr "Tipo de entrada" -#: ../../include/apps.php:129 ../../include/conversation.php:1694 -#: ../../include/nav.php:102 -msgid "Bookmarks" -msgstr "Marcadores" +#: ../../Zotlabs/Module/Admin.php:1693 ../../Zotlabs/Module/Admin.php:1713 +msgid "Field Name" +msgstr "Nombre del campo" -#: ../../include/apps.php:130 -msgid "Address Book" -msgstr "Libreta de direcciones" +#: ../../Zotlabs/Module/Admin.php:1693 ../../Zotlabs/Module/Admin.php:1713 +msgid "Label on profile pages" +msgstr "Etiqueta a mostrar en la página del perfil" -#: ../../include/apps.php:131 ../../include/nav.php:110 ../../boot.php:1600 -msgid "Login" -msgstr "Iniciar sesión" +#: ../../Zotlabs/Module/Admin.php:1694 ../../Zotlabs/Module/Admin.php:1714 +msgid "Help text" +msgstr "Texto de ayuda" -#: ../../include/apps.php:132 ../../include/nav.php:203 -#: ../../mod/manage.php:158 -msgid "Channel Manager" -msgstr "Administración de canales" +#: ../../Zotlabs/Module/Admin.php:1694 ../../Zotlabs/Module/Admin.php:1714 +msgid "Additional info (optional)" +msgstr "Información adicional (opcional)" -#: ../../include/apps.php:133 ../../include/nav.php:176 -msgid "Grid" -msgstr "Red" +#: ../../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 +msgid "Save" +msgstr "Guardar" -#: ../../include/apps.php:134 ../../include/nav.php:205 -#: ../../include/widgets.php:589 ../../mod/admin.php:1266 -#: ../../mod/admin.php:1488 -msgid "Settings" -msgstr "Ajustes" +#: ../../Zotlabs/Module/Admin.php:1704 +msgid "Field definition not found" +msgstr "Definición del campo no encontrada" -#: ../../include/apps.php:136 ../../include/conversation.php:1704 -#: ../../include/nav.php:106 ../../mod/webpages.php:182 -msgid "Webpages" -msgstr "Páginas web" +#: ../../Zotlabs/Module/Admin.php:1710 +msgid "Edit Profile Field" +msgstr "Modificar el campo del perfil" -#: ../../include/apps.php:137 ../../include/nav.php:179 -msgid "Channel Home" -msgstr "Mi canal" +#: ../../Zotlabs/Module/Admin.php:1768 ../../include/widgets.php:1342 +msgid "Profile Fields" +msgstr "Campos del perfil" -#: ../../include/apps.php:139 ../../include/conversation.php:1650 -#: ../../include/nav.php:92 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Fotos" +#: ../../Zotlabs/Module/Admin.php:1769 +msgid "Basic Profile Fields" +msgstr "Campos básicos del perfil" -#: ../../include/apps.php:140 ../../include/conversation.php:1667 -#: ../../include/conversation.php:1670 ../../include/nav.php:198 -msgid "Events" -msgstr "Eventos" +#: ../../Zotlabs/Module/Admin.php:1770 +msgid "Advanced Profile Fields" +msgstr "Campos avanzados del perfil" -#: ../../include/apps.php:141 ../../include/nav.php:164 -msgid "Directory" -msgstr "Directorio" +#: ../../Zotlabs/Module/Admin.php:1770 +msgid "(In addition to basic fields)" +msgstr "(Además de los campos básicos)" -#: ../../include/apps.php:142 ../../include/nav.php:155 ../../mod/help.php:222 -#: ../../mod/help.php:227 ../../mod/layouts.php:177 -msgid "Help" -msgstr "Ayuda" +#: ../../Zotlabs/Module/Admin.php:1772 +msgid "All available fields" +msgstr "Todos los campos disponibles" -#: ../../include/apps.php:143 ../../include/nav.php:190 -msgid "Mail" -msgstr "Correo" +#: ../../Zotlabs/Module/Admin.php:1773 +msgid "Custom Fields" +msgstr "Campos personalizados" -#: ../../include/apps.php:144 ../../mod/mood.php:131 -msgid "Mood" -msgstr "Estado de ánimo" +#: ../../Zotlabs/Module/Admin.php:1777 +msgid "Create Custom Field" +msgstr "Crear un campo personalizado" -#: ../../include/apps.php:145 ../../include/conversation.php:965 -#: ../../mod/poke.php:164 -msgid "Poke" -msgstr "Toques y otras cosas" +#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 +msgid "Authorize application connection" +msgstr "Autorizar una conexión de aplicación" -#: ../../include/apps.php:146 ../../include/nav.php:96 -msgid "Chat" -msgstr "Chat" +#: ../../Zotlabs/Module/Api.php:62 +msgid "Return to your app and insert this Securty Code:" +msgstr "Volver a su aplicación e introducir este código de seguridad:" -#: ../../include/apps.php:147 ../../include/nav.php:161 -#: ../../include/text.php:904 ../../include/text.php:916 -#: ../../mod/connections.php:302 ../../mod/search.php:40 -msgid "Search" -msgstr "Buscar" +#: ../../Zotlabs/Module/Api.php:72 +msgid "Please login to continue." +msgstr "Por favor inicie sesión para continuar." -#: ../../include/apps.php:148 -msgid "Probe" -msgstr "Probar" +#: ../../Zotlabs/Module/Api.php:87 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?" -#: ../../include/apps.php:149 -msgid "Suggest" -msgstr "Sugerir" +#: ../../Zotlabs/Module/Appman.php:32 ../../Zotlabs/Module/Appman.php:48 +msgid "App installed." +msgstr "Aplicación instalada." -#: ../../include/apps.php:150 -msgid "Random Channel" -msgstr "Canal aleatorio" +#: ../../Zotlabs/Module/Appman.php:41 +msgid "Malformed app." +msgstr "Aplicación con errores" -#: ../../include/apps.php:151 -msgid "Invite" -msgstr "Invitar" +#: ../../Zotlabs/Module/Appman.php:84 +msgid "Embed code" +msgstr "Código incorporado" -#: ../../include/apps.php:152 ../../include/widgets.php:1338 -msgid "Features" -msgstr "Funcionalidades" +#: ../../Zotlabs/Module/Appman.php:90 +msgid "Edit App" +msgstr "Modificar la aplicación" -#: ../../include/apps.php:153 ../../mod/id.php:28 -msgid "Language" -msgstr "Idioma" +#: ../../Zotlabs/Module/Appman.php:90 +msgid "Create App" +msgstr "Crear una aplicación" -#: ../../include/apps.php:154 -msgid "Post" -msgstr "Publicación" +#: ../../Zotlabs/Module/Appman.php:95 +msgid "Name of app" +msgstr "Nombre de la aplicación" -#: ../../include/apps.php:155 ../../mod/id.php:17 ../../mod/id.php:18 -#: ../../mod/id.php:19 -msgid "Profile Photo" -msgstr "Foto del perfil" +#: ../../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 +#: ../../include/datetime.php:246 +msgid "Required" +msgstr "Obligatorio" -#: ../../include/apps.php:252 ../../mod/settings.php:84 -#: ../../mod/settings.php:623 -msgid "Update" -msgstr "Actualizar" +#: ../../Zotlabs/Module/Appman.php:96 +msgid "Location (URL) of app" +msgstr "Dirección (URL) de la aplicación" -#: ../../include/apps.php:252 -msgid "Install" -msgstr "Instalar" +#: ../../Zotlabs/Module/Appman.php:97 ../../Zotlabs/Module/Events.php:461 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Descripción" -#: ../../include/apps.php:257 -msgid "Purchase" -msgstr "Comprar" +#: ../../Zotlabs/Module/Appman.php:98 +msgid "Photo icon URL" +msgstr "Dirección del icono" -#: ../../include/items.php:423 ../../mod/profperm.php:23 -#: ../../mod/dreport.php:6 ../../mod/dreport.php:45 ../../mod/group.php:68 -#: ../../mod/import_items.php:108 ../../mod/like.php:280 -#: ../../mod/subthread.php:58 ../../index.php:173 -msgid "Permission denied" -msgstr "Permiso denegado" +#: ../../Zotlabs/Module/Appman.php:98 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixels - opcional" -#: ../../include/items.php:1138 ../../include/items.php:1183 -msgid "(Unknown)" -msgstr "(Desconocido)" +#: ../../Zotlabs/Module/Appman.php:99 +msgid "Version ID" +msgstr "Versión" -#: ../../include/items.php:1382 -msgid "Visible to anybody on the internet." -msgstr "Visible para cualquiera en internet." +#: ../../Zotlabs/Module/Appman.php:100 +msgid "Price of app" +msgstr "Precio de la aplicación" -#: ../../include/items.php:1384 -msgid "Visible to you only." -msgstr "Visible sólo para usted." - -#: ../../include/items.php:1386 -msgid "Visible to anybody in this network." -msgstr "Visible para cualquiera en esta red." +#: ../../Zotlabs/Module/Appman.php:101 +msgid "Location (URL) to purchase app" +msgstr "Dirección (URL) donde adquirir la aplicación" -#: ../../include/items.php:1388 -msgid "Visible to anybody authenticated." -msgstr "Visible para cualquiera que haya sido autenticado." +#: ../../Zotlabs/Module/Apps.php:40 ../../include/widgets.php:102 +#: ../../include/nav.php:165 +msgid "Apps" +msgstr "Aplicaciones" -#: ../../include/items.php:1390 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Visible para cualquiera en %s." +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "Elemento no disponible" -#: ../../include/items.php:1392 -msgid "Visible to all connections." -msgstr "Visible para todas las conexiones." +#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 +msgid "Invalid item." +msgstr "Elemento no válido." -#: ../../include/items.php:1394 -msgid "Visible to approved connections." -msgstr "Visible para las conexiones permitidas." +#: ../../Zotlabs/Module/Block.php:43 ../../Zotlabs/Module/Cal.php:65 +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Canal no encontrado." -#: ../../include/items.php:1396 -msgid "Visible to specific connections." -msgstr "Visible para conexiones específicas." +#: ../../Zotlabs/Module/Blocks.php:99 ../../Zotlabs/Module/Blocks.php:154 +msgid "Block Name" +msgstr "Nombre del bloque" -#: ../../include/items.php:4592 ../../mod/admin.php:141 -#: ../../mod/admin.php:1189 ../../mod/admin.php:1434 ../../mod/display.php:40 -#: ../../mod/filestorage.php:27 ../../mod/thing.php:85 -#: ../../mod/viewsrc.php:20 -msgid "Item not found." -msgstr "Elemento no encontrado." +#: ../../Zotlabs/Module/Blocks.php:153 ../../include/text.php:2278 +msgid "Blocks" +msgstr "Bloques" -#: ../../include/items.php:5126 ../../mod/group.php:38 ../../mod/group.php:137 -msgid "Privacy group not found." -msgstr "Grupo de canales no encontrado." +#: ../../Zotlabs/Module/Blocks.php:155 +msgid "Block Title" +msgstr "Título del bloque" -#: ../../include/items.php:5142 -msgid "Privacy group is empty." -msgstr "El grupo de canales está vacío." +#: ../../Zotlabs/Module/Blocks.php:156 ../../Zotlabs/Module/Layouts.php:186 +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:200 +#: ../../include/page_widgets.php:44 +msgid "Created" +msgstr "Creado" -#: ../../include/items.php:5149 -#, php-format -msgid "Privacy group: %s" -msgstr "Grupo de canales: %s" +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:187 +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:201 +#: ../../include/page_widgets.php:45 +msgid "Edited" +msgstr "Editado" -#: ../../include/items.php:5159 ../../mod/connedit.php:701 -#, php-format -msgid "Connection: %s" -msgstr "Conexión: %s" +#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Layouts.php:189 +#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Module/Webpages.php:190 +#: ../../include/conversation.php:1209 +msgid "Share" +msgstr "Compartir" -#: ../../include/items.php:5161 -msgid "Connection not found." -msgstr "Conexión no encontrada" +#: ../../Zotlabs/Module/Blocks.php:165 ../../Zotlabs/Module/Layouts.php:193 +#: ../../Zotlabs/Module/Pubsites.php:46 ../../Zotlabs/Module/Webpages.php:195 +#: ../../include/page_widgets.php:39 +msgid "View" +msgstr "Ver" -#: ../../include/items.php:5587 ../../mod/cover_photo.php:229 -msgid "female" -msgstr "mujer" +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Marcador añadido" -#: ../../include/items.php:5588 ../../mod/cover_photo.php:230 -#, php-format -msgid "%1$s updated her %2$s" -msgstr "%1$s ha actualizado su %2$s" +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "Mis marcadores" -#: ../../include/items.php:5589 ../../mod/cover_photo.php:231 -msgid "male" -msgstr "hombre" +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "Marcadores de mis conexiones" -#: ../../include/items.php:5590 ../../mod/cover_photo.php:232 -#, php-format -msgid "%1$s updated his %2$s" -msgstr "%1$s ha actualizado su %2$s" +#: ../../Zotlabs/Module/Cal.php:41 ../../Zotlabs/Module/Photos.php:45 +#: ../../include/js_strings.php:13 +msgid "everybody" +msgstr "cualquiera" -#: ../../include/items.php:5592 ../../mod/cover_photo.php:234 -#, php-format -msgid "%1$s updated their %2$s" -msgstr "%1$s ha actualizado su %2$s" +#: ../../Zotlabs/Module/Cal.php:72 +msgid "Permissions denied." +msgstr "Permisos denegados." -#: ../../include/items.php:5594 -msgid "profile photo" -msgstr "foto del perfil" +#: ../../Zotlabs/Module/Cal.php:262 ../../Zotlabs/Module/Events.php:585 +msgid "l, F j" +msgstr "l j F" -#: ../../include/network.php:659 -msgid "view full size" -msgstr "Ver en el tamaño original" +#: ../../Zotlabs/Module/Cal.php:311 ../../Zotlabs/Module/Events.php:634 +#: ../../include/text.php:1743 +msgid "Link to Source" +msgstr "Enlazar con la entrada en su ubicación original" -#: ../../include/network.php:1827 ../../include/enotify.php:57 -msgid "$Projectname Notification" -msgstr "Notificación de $Projectname" +#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:662 +msgid "Edit Event" +msgstr "Editar el evento" -#: ../../include/network.php:1828 ../../include/enotify.php:58 -msgid "$projectname" -msgstr "$projectname" +#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:662 +msgid "Create Event" +msgstr "Crear un evento" -#: ../../include/network.php:1830 ../../include/enotify.php:60 -msgid "Thank You," -msgstr "Gracias," +#: ../../Zotlabs/Module/Cal.php:335 ../../Zotlabs/Module/Cal.php:342 +#: ../../Zotlabs/Module/Events.php:663 ../../Zotlabs/Module/Events.php:670 +#: ../../Zotlabs/Module/Photos.php:948 +msgid "Previous" +msgstr "Anterior" -#: ../../include/network.php:1832 ../../include/enotify.php:62 -#, php-format -msgid "%s Administrator" -msgstr "%s Administrador" +#: ../../Zotlabs/Module/Cal.php:336 ../../Zotlabs/Module/Cal.php:343 +#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Events.php:671 +#: ../../Zotlabs/Module/Photos.php:957 ../../Zotlabs/Module/Setup.php:290 +msgid "Next" +msgstr "Siguiente" -#: ../../include/network.php:1889 -msgid "No Subject" -msgstr "Sin asunto" +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:665 +#: ../../include/widgets.php:706 +msgid "Export" +msgstr "Exportar" -#: ../../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" +#: ../../Zotlabs/Module/Cal.php:340 ../../Zotlabs/Module/Events.php:668 +#: ../../include/widgets.php:707 +msgid "Import" +msgstr "Importar" -#: ../../include/photos.php:119 -msgid "Image file is empty." -msgstr "El fichero de imagen está vacío. " +#: ../../Zotlabs/Module/Cal.php:344 ../../Zotlabs/Module/Events.php:672 +msgid "Today" +msgstr "Hoy" -#: ../../include/photos.php:146 ../../mod/profile_photo.php:225 -#: ../../mod/cover_photo.php:164 -msgid "Unable to process image" -msgstr "No ha sido posible procesar la imagen" +#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Chat.php:23 +msgid "You must be logged in to see this page." +msgstr "Debe haber iniciado sesión para poder ver esta página." -#: ../../include/photos.php:257 -msgid "Photo storage failed." -msgstr "La foto no ha podido ser guardada." +#: ../../Zotlabs/Module/Channel.php:40 +msgid "Posts and comments" +msgstr "Publicaciones y comentarios" -#: ../../include/photos.php:297 -msgid "a new photo" -msgstr "una nueva foto" +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Only posts" +msgstr "Solo publicaciones" -#: ../../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" +#: ../../Zotlabs/Module/Channel.php:101 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Permisos insuficientes. Petición redirigida a la página del perfil." -#: ../../include/photos.php:506 ../../include/conversation.php:1653 -msgid "Photo Albums" -msgstr "Álbumes de fotos" +#: ../../Zotlabs/Module/Channel.php:135 ../../Zotlabs/Module/Network.php:173 +#: ../../Zotlabs/Module/Rpost.php:118 +msgid "Public" +msgstr "Público" -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Subir nuevas fotos" +#: ../../Zotlabs/Module/Chat.php:179 +msgid "Room not found" +msgstr "Sala no encontrada" -#: ../../include/bb2diaspora.php:376 -msgid "Attachments:" -msgstr "Ficheros adjuntos:" +#: ../../Zotlabs/Module/Chat.php:195 +msgid "Leave Room" +msgstr "Abandonar la sala" -#: ../../include/bb2diaspora.php:465 ../../include/event.php:22 -#: ../../include/text.php:1437 -msgid "l F d, Y \\@ g:i A" -msgstr "l d de F, Y \\@ G:i" +#: ../../Zotlabs/Module/Chat.php:196 +msgid "Delete Room" +msgstr "Eliminar esta sala" -#: ../../include/bb2diaspora.php:467 -msgid "$Projectname event notification:" -msgstr "Notificación de eventos de $Projectname:" +#: ../../Zotlabs/Module/Chat.php:197 +msgid "I am away right now" +msgstr "Estoy ausente momentáneamente" -#: ../../include/bb2diaspora.php:471 ../../include/event.php:30 -#: ../../include/text.php:1441 -msgid "Starts:" -msgstr "Comienza:" +#: ../../Zotlabs/Module/Chat.php:198 +msgid "I am online" +msgstr "Estoy conectado/a" -#: ../../include/bb2diaspora.php:479 ../../include/event.php:40 -#: ../../include/text.php:1445 -msgid "Finishes:" -msgstr "Finaliza:" +#: ../../Zotlabs/Module/Chat.php:200 +msgid "Bookmark this room" +msgstr "Añadir esta sala a Marcadores" -#: ../../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" +#: ../../Zotlabs/Module/Chat.php:203 ../../Zotlabs/Module/Mail.php:206 +#: ../../Zotlabs/Module/Mail.php:320 ../../include/conversation.php:1170 +msgid "Please enter a link URL:" +msgstr "Por favor, introduzca la dirección del enlace:" -#: ../../include/bbcode.php:162 ../../include/bbcode.php:851 -msgid "Encrypted content" -msgstr "Contenido cifrado" +#: ../../Zotlabs/Module/Chat.php:204 ../../Zotlabs/Module/Editpost.php:163 +#: ../../Zotlabs/Module/Mail.php:259 ../../Zotlabs/Module/Mail.php:389 +#: ../../include/ItemObject.php:715 ../../include/conversation.php:1274 +msgid "Encrypt text" +msgstr "Cifrar texto" -#: ../../include/bbcode.php:179 -#, php-format -msgid "Install %s element: " -msgstr "Instalar el elemento %s:" +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Editblock.php:149 +#: ../../Zotlabs/Module/Editlayout.php:147 +#: ../../Zotlabs/Module/Editpost.php:126 +#: ../../Zotlabs/Module/Editwebpage.php:189 ../../Zotlabs/Module/Mail.php:253 +#: ../../Zotlabs/Module/Mail.php:383 ../../include/conversation.php:1225 +msgid "Insert web link" +msgstr "Insertar enlace web" -#: ../../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." +#: ../../Zotlabs/Module/Chat.php:216 +msgid "Feature disabled." +msgstr "Funcionalidad deshabilitada." -#: ../../include/bbcode.php:193 ../../mod/impel.php:37 -msgid "webpage" -msgstr "página web" +#: ../../Zotlabs/Module/Chat.php:230 +msgid "New Chatroom" +msgstr "Nueva sala de chat" -#: ../../include/bbcode.php:196 ../../mod/impel.php:47 -msgid "layout" -msgstr "plantilla" +#: ../../Zotlabs/Module/Chat.php:231 +msgid "Chatroom name" +msgstr "Nombre de la sala de chat" -#: ../../include/bbcode.php:199 ../../mod/impel.php:42 -msgid "block" -msgstr "bloque" +#: ../../Zotlabs/Module/Chat.php:232 +msgid "Expiration of chats (minutes)" +msgstr "Caducidad de los mensajes en los chats (en minutos)" -#: ../../include/bbcode.php:202 ../../mod/impel.php:54 -msgid "menu" -msgstr "menú" +#: ../../Zotlabs/Module/Chat.php:233 ../../Zotlabs/Module/Filestorage.php:151 +#: ../../Zotlabs/Module/Photos.php:670 ../../Zotlabs/Module/Photos.php:1044 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 +#: ../../include/acl_selectors.php:251 +msgid "Permissions" +msgstr "Permisos" -#: ../../include/bbcode.php:255 +#: ../../Zotlabs/Module/Chat.php:244 #, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s escribió %2$s siguiente %3$s" +msgid "%1$s's Chatrooms" +msgstr "Salas de chat de %1$s" -#: ../../include/bbcode.php:257 ../../mod/tagger.php:51 -msgid "post" -msgstr "la entrada" +#: ../../Zotlabs/Module/Chat.php:249 +msgid "No chatrooms available" +msgstr "No hay salas de chat disponibles" -#: ../../include/bbcode.php:545 -msgid "Different viewers will see this text differently" -msgstr "Visitantes diferentes verán este texto de forma distinta" +#: ../../Zotlabs/Module/Chat.php:250 ../../Zotlabs/Module/Manage.php:141 +#: ../../Zotlabs/Module/Profiles.php:781 +msgid "Create New" +msgstr "Crear" -#: ../../include/bbcode.php:762 -msgid "$1 spoiler" -msgstr "$1 spoiler" +#: ../../Zotlabs/Module/Chat.php:253 +msgid "Expiration" +msgstr "Caducidad" -#: ../../include/bbcode.php:789 -msgid "$1 wrote:" -msgstr "$1 escribió:" - -#: ../../include/conversation.php:120 ../../include/text.php:1967 -#: ../../mod/like.php:367 ../../mod/subthread.php:83 ../../mod/tagger.php:43 -msgid "photo" -msgstr "foto" +#: ../../Zotlabs/Module/Chat.php:254 +msgid "min" +msgstr "min" -#: ../../include/conversation.php:123 ../../include/event.php:915 -#: ../../include/text.php:1970 ../../mod/events.php:249 ../../mod/like.php:369 -#: ../../mod/tagger.php:47 -msgid "event" -msgstr "evento" +#: ../../Zotlabs/Module/Chatsvc.php:115 +msgid "Away" +msgstr "Ausente" -#: ../../include/conversation.php:126 ../../mod/like.php:113 -msgid "channel" -msgstr "el canal" +#: ../../Zotlabs/Module/Chatsvc.php:120 +msgid "Online" +msgstr "Conectado/a" -#: ../../include/conversation.php:148 ../../include/text.php:1973 -#: ../../mod/like.php:367 ../../mod/subthread.php:83 -msgid "status" -msgstr "el mensaje de estado" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Ningún canal." -#: ../../include/conversation.php:150 ../../include/text.php:1975 -#: ../../mod/tagger.php:53 -msgid "comment" -msgstr "el comentario" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Conexiones comunes" -#: ../../include/conversation.php:164 ../../mod/like.php:416 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "A %1$s le gusta %3$s de %2$s" +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "Ninguna conexión en común." -#: ../../include/conversation.php:167 ../../mod/like.php:418 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "A %1$s no le gusta %3$s de %2$s" +#: ../../Zotlabs/Module/Connect.php:60 ../../Zotlabs/Module/Connect.php:108 +msgid "Continue" +msgstr "Continuar" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s ahora está conectado/a con %2$s" +#: ../../Zotlabs/Module/Connect.php:89 +msgid "Premium Channel Setup" +msgstr "Configuración del canal premium" -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s ha dado un toque a %2$s" +#: ../../Zotlabs/Module/Connect.php:91 +msgid "Enable premium channel connection restrictions" +msgstr "Habilitar restricciones de conexión del canal premium" -#: ../../include/conversation.php:243 ../../include/text.php:992 -#: ../../include/text.php:997 -msgid "poked" -msgstr "ha dado un toque a" +#: ../../Zotlabs/Module/Connect.php:92 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc." -#: ../../include/conversation.php:260 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s está %2$s" +#: ../../Zotlabs/Module/Connect.php:94 ../../Zotlabs/Module/Connect.php:114 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:" -#: ../../include/conversation.php:574 ../../mod/photos.php:1102 -msgctxt "title" -msgid "Likes" -msgstr "Me gusta" +#: ../../Zotlabs/Module/Connect.php:95 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:" -#: ../../include/conversation.php:574 ../../mod/photos.php:1102 -msgctxt "title" -msgid "Dislikes" -msgstr "No me gusta" +#: ../../Zotlabs/Module/Connect.php:96 ../../Zotlabs/Module/Connect.php:117 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página." -#: ../../include/conversation.php:575 ../../mod/photos.php:1103 -msgctxt "title" -msgid "Agree" -msgstr "De acuerdo" +#: ../../Zotlabs/Module/Connect.php:105 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)" -#: ../../include/conversation.php:575 ../../mod/photos.php:1103 -msgctxt "title" -msgid "Disagree" -msgstr "En desacuerdo" +#: ../../Zotlabs/Module/Connect.php:113 +msgid "Restricted or Premium Channel" +msgstr "Canal premium o restringido" -#: ../../include/conversation.php:575 ../../mod/photos.php:1103 -msgctxt "title" -msgid "Abstain" -msgstr "Abstención" +#: ../../Zotlabs/Module/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" +msgstr "Bloqueadas" -#: ../../include/conversation.php:576 ../../mod/photos.php:1104 -msgctxt "title" -msgid "Attending" -msgstr "Participaré" +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" +msgstr "Ignoradas" -#: ../../include/conversation.php:576 ../../mod/photos.php:1104 -msgctxt "title" -msgid "Not attending" -msgstr "No participaré" +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" +msgstr "Ocultas" -#: ../../include/conversation.php:576 ../../mod/photos.php:1104 -msgctxt "title" -msgid "Might attend" -msgstr "Quizá participe" +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" +msgstr "Archivadas" -#: ../../include/conversation.php:691 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Ver el perfil @ %s de %s" +#: ../../Zotlabs/Module/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1553 +msgid "New" +msgstr "Nuevas" -#: ../../include/conversation.php:710 -msgid "Categories:" -msgstr "Categorías:" +#: ../../Zotlabs/Module/Connections.php:92 +#: ../../Zotlabs/Module/Connections.php:107 +#: ../../Zotlabs/Module/Connedit.php:597 ../../include/widgets.php:448 +msgid "All" +msgstr "Todos/as" -#: ../../include/conversation.php:711 -msgid "Filed under:" -msgstr "Archivado bajo:" +#: ../../Zotlabs/Module/Connections.php:138 +msgid "New Connections" +msgstr "Nuevas conexiones" -#: ../../include/conversation.php:738 -msgid "View in context" -msgstr "Mostrar en su contexto" +#: ../../Zotlabs/Module/Connections.php:141 +msgid "Show pending (new) connections" +msgstr "Mostrar conexiones (nuevas) pendientes" -#: ../../include/conversation.php:850 -msgid "remove" -msgstr "eliminar" +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" +msgstr "Todas las conexiones" -#: ../../include/conversation.php:854 ../../include/nav.php:244 -msgid "Loading..." -msgstr "Cargando..." +#: ../../Zotlabs/Module/Connections.php:148 +msgid "Show all connections" +msgstr "Mostrar todas las conexiones" -#: ../../include/conversation.php:855 -msgid "Delete Selected Items" -msgstr "Eliminar elementos seleccionados" +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" +msgstr "Mostrar solo las conexiones bloqueadas" -#: ../../include/conversation.php:953 -msgid "View Source" -msgstr "Ver la fuente original de la publicación" +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" +msgstr "Mostrar solo conexiones ignoradas" -#: ../../include/conversation.php:954 -msgid "Follow Thread" -msgstr "Seguir este hilo" +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Only show archived connections" +msgstr "Mostrar solo las conexiones archivadas" -#: ../../include/conversation.php:955 -msgid "Unfollow Thread" -msgstr "Dejar de seguir este hilo" +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" +msgstr "Mostrar solo las conexiones ocultas" -#: ../../include/conversation.php:959 ../../include/nav.php:86 -#: ../../mod/connedit.php:516 -msgid "View Profile" -msgstr "Ver el perfil" +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" +msgstr "Pendiente de aprobación" -#: ../../include/conversation.php:960 -msgid "Activity/Posts" -msgstr "Actividad y publicaciones" +#: ../../Zotlabs/Module/Connections.php:254 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../include/conversation.php:962 -msgid "Edit Connection" +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" msgstr "Editar conexión" -#: ../../include/conversation.php:963 -msgid "Message" -msgstr "Mensaje" +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" +msgstr "Eliminar conexión" -#: ../../include/conversation.php:964 ../../mod/pubsites.php:27 -#: ../../mod/ratings.php:99 -msgid "Ratings" -msgstr "Valoraciones" +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" +msgstr "Dirección del canal" -#: ../../include/conversation.php:1080 -#, php-format -msgid "%s likes this." -msgstr "A %s le gusta esto." +#: ../../Zotlabs/Module/Connections.php:267 +msgid "Network" +msgstr "Red" -#: ../../include/conversation.php:1080 -#, php-format -msgid "%s doesn't like this." -msgstr "A %s no le gusta esto." +#: ../../Zotlabs/Module/Connections.php:272 +msgid "Connected" +msgstr "Conectado/a" -#: ../../include/conversation.php:1084 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "a %2$d personas le gusta esto." -msgstr[1] "A %2$d personas les gusta esto." +#: ../../Zotlabs/Module/Connections.php:274 +msgid "Approve connection" +msgstr "Aprobar esta conexión" -#: ../../include/conversation.php:1086 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "a %2$d personas no les gusta esto." -msgstr[1] "A %2$d personas no les gusta esto." +#: ../../Zotlabs/Module/Connections.php:276 +msgid "Ignore connection" +msgstr "Ignorar esta conexión" -#: ../../include/conversation.php:1092 -msgid "and" -msgstr "y" +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Connedit.php:549 +#: ../../Zotlabs/Module/Notifications.php:55 +msgid "Ignore" +msgstr "Ignorar" -#: ../../include/conversation.php:1095 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] ", y %d persona más" -msgstr[1] ", y %d personas más" +#: ../../Zotlabs/Module/Connections.php:278 +msgid "Recent activity" +msgstr "Actividad reciente" -#: ../../include/conversation.php:1096 -#, php-format -msgid "%s like this." -msgstr "A %s le gusta esto." +#: ../../Zotlabs/Module/Connections.php:302 ../../include/text.php:834 +#: ../../include/nav.php:189 +msgid "Connections" +msgstr "Conexiones" -#: ../../include/conversation.php:1096 -#, php-format -msgid "%s don't like this." -msgstr "A %s no le gusta esto." +#: ../../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 +msgid "Search" +msgstr "Buscar" -#: ../../include/conversation.php:1169 -msgid "Visible to everybody" -msgstr "Visible para cualquiera" +#: ../../Zotlabs/Module/Connections.php:307 +msgid "Search your connections" +msgstr "Buscar sus conexiones" -#: ../../include/conversation.php:1170 ../../mod/chat.php:199 -#: ../../mod/mail.php:202 ../../mod/mail.php:316 -msgid "Please enter a link URL:" -msgstr "Por favor, introduzca la dirección del enlace:" +#: ../../Zotlabs/Module/Connections.php:308 +msgid "Connections search" +msgstr "Buscar conexiones" -#: ../../include/conversation.php:1171 -msgid "Please enter a video link/URL:" -msgstr "Por favor, introduzca un enlace de vídeo:" +#: ../../Zotlabs/Module/Connections.php:309 +#: ../../Zotlabs/Module/Directory.php:388 +#: ../../Zotlabs/Module/Directory.php:393 ../../include/contact_widgets.php:26 +msgid "Find" +msgstr "Encontrar" -#: ../../include/conversation.php:1172 -msgid "Please enter an audio link/URL:" -msgstr "Por favor, introduzca un enlace de audio:" +#: ../../Zotlabs/Module/Connedit.php:80 +msgid "Could not access contact record." +msgstr "No se ha podido acceder al registro de contacto." -#: ../../include/conversation.php:1173 -msgid "Tag term:" -msgstr "Término de la etiqueta:" +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." +msgstr "No se ha podido localizar el perfil seleccionado." -#: ../../include/conversation.php:1174 ../../mod/filer.php:48 -msgid "Save to Folder:" -msgstr "Guardar en carpeta:" +#: ../../Zotlabs/Module/Connedit.php:227 +msgid "Connection updated." +msgstr "Conexión actualizada." -#: ../../include/conversation.php:1175 -msgid "Where are you right now?" -msgstr "¿Donde está ahora?" +#: ../../Zotlabs/Module/Connedit.php:229 +msgid "Failed to update connection record." +msgstr "Error al actualizar el registro de la conexión." -#: ../../include/conversation.php:1176 ../../mod/editpost.php:56 -#: ../../mod/mail.php:203 ../../mod/mail.php:317 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Caduca YYYY-MM-DD HH:MM" +#: ../../Zotlabs/Module/Connedit.php:276 +msgid "is now connected to" +msgstr "ahora está conectado/a" -#: ../../include/conversation.php:1209 ../../mod/photos.php:1067 -#: ../../mod/webpages.php:186 ../../mod/blocks.php:156 -#: ../../mod/layouts.php:185 -msgid "Share" -msgstr "Compartir" +#: ../../Zotlabs/Module/Connedit.php:411 +msgid "Could not access address book record." +msgstr "No se pudo acceder al registro en su libreta de direcciones." -#: ../../include/conversation.php:1211 -msgid "Page link name" -msgstr "Nombre del enlace de la página" +#: ../../Zotlabs/Module/Connedit.php:425 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Recarga fallida - no se puede encontrar el canal en este momento." -#: ../../include/conversation.php:1214 -msgid "Post as" -msgstr "Publicar como" +#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 +#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 +#: ../../Zotlabs/Module/Connedit.php:480 +msgid "Unable to set address book parameters." +msgstr "No ha sido posible establecer los parámetros de la libreta de direcciones." -#: ../../include/conversation.php:1221 ../../mod/editpost.php:120 -#: ../../mod/editblock.php:143 ../../mod/editlayout.php:141 -#: ../../mod/editwebpage.php:183 -msgid "Upload photo" -msgstr "Subir foto" +#: ../../Zotlabs/Module/Connedit.php:504 +msgid "Connection has been removed." +msgstr "La conexión ha sido eliminada." -#: ../../include/conversation.php:1222 -msgid "upload photo" -msgstr "subir foto" +#: ../../Zotlabs/Module/Connedit.php:520 ../../include/conversation.php:959 +#: ../../include/nav.php:86 +msgid "View Profile" +msgstr "Ver el perfil" -#: ../../include/conversation.php:1223 ../../mod/editpost.php:121 -#: ../../mod/editblock.php:144 ../../mod/editlayout.php:142 -#: ../../mod/editwebpage.php:184 ../../mod/mail.php:248 ../../mod/mail.php:378 -msgid "Attach file" -msgstr "Adjuntar fichero" +#: ../../Zotlabs/Module/Connedit.php:523 +#, php-format +msgid "View %s's profile" +msgstr "Ver el perfil de %s" -#: ../../include/conversation.php:1224 -msgid "attach file" -msgstr "adjuntar fichero" +#: ../../Zotlabs/Module/Connedit.php:527 +msgid "Refresh Permissions" +msgstr "Recargar los permisos" -#: ../../include/conversation.php:1225 ../../mod/editpost.php:122 -#: ../../mod/chat.php:201 ../../mod/editblock.php:145 -#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:185 -#: ../../mod/mail.php:249 ../../mod/mail.php:379 -msgid "Insert web link" -msgstr "Insertar enlace web" +#: ../../Zotlabs/Module/Connedit.php:530 +msgid "Fetch updated permissions" +msgstr "Obtener los permisos actualizados" -#: ../../include/conversation.php:1226 -msgid "web link" -msgstr "enlace web" +#: ../../Zotlabs/Module/Connedit.php:534 +msgid "Recent Activity" +msgstr "Actividad reciente" -#: ../../include/conversation.php:1227 -msgid "Insert video link" -msgstr "Insertar enlace de vídeo" +#: ../../Zotlabs/Module/Connedit.php:537 +msgid "View recent posts and comments" +msgstr "Ver publicaciones y comentarios recientes" -#: ../../include/conversation.php:1228 -msgid "video link" -msgstr "enlace de vídeo" +#: ../../Zotlabs/Module/Connedit.php:544 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Bloquear (o desbloquear) todas las comunicaciones con esta conexión" -#: ../../include/conversation.php:1229 -msgid "Insert audio link" -msgstr "Insertar enlace de audio" +#: ../../Zotlabs/Module/Connedit.php:545 +msgid "This connection is blocked!" +msgstr "¡Esta conexión está bloqueada!" -#: ../../include/conversation.php:1230 -msgid "audio link" -msgstr "enlace de audio" +#: ../../Zotlabs/Module/Connedit.php:549 +msgid "Unignore" +msgstr "Dejar de ignorar" -#: ../../include/conversation.php:1231 ../../mod/editpost.php:126 -#: ../../mod/editblock.php:149 ../../mod/editlayout.php:147 -#: ../../mod/editwebpage.php:189 -msgid "Set your location" -msgstr "Establecer su ubicación" +#: ../../Zotlabs/Module/Connedit.php:552 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión" -#: ../../include/conversation.php:1232 -msgid "set location" -msgstr "establecer ubicación" +#: ../../Zotlabs/Module/Connedit.php:553 +msgid "This connection is ignored!" +msgstr "¡Esta conexión es ignorada!" -#: ../../include/conversation.php:1233 ../../mod/editpost.php:128 -msgid "Toggle voting" -msgstr "Cambiar votación" +#: ../../Zotlabs/Module/Connedit.php:557 +msgid "Unarchive" +msgstr "Desarchivar" -#: ../../include/conversation.php:1236 ../../mod/editpost.php:127 -#: ../../mod/editblock.php:150 ../../mod/editlayout.php:148 -#: ../../mod/editwebpage.php:190 -msgid "Clear browser location" -msgstr "Eliminar los datos de localización geográfica del navegador" +#: ../../Zotlabs/Module/Connedit.php:557 +msgid "Archive" +msgstr "Archivar" -#: ../../include/conversation.php:1237 -msgid "clear location" -msgstr "borrar los datos de ubicación" +#: ../../Zotlabs/Module/Connedit.php:560 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos" -#: ../../include/conversation.php:1239 ../../mod/editpost.php:143 -#: ../../mod/editblock.php:163 ../../mod/editwebpage.php:206 -msgid "Title (optional)" -msgstr "Título (opcional)" +#: ../../Zotlabs/Module/Connedit.php:561 +msgid "This connection is archived!" +msgstr "¡Esta conexión esta archivada!" -#: ../../include/conversation.php:1243 ../../mod/editpost.php:145 -#: ../../mod/editblock.php:166 ../../mod/editlayout.php:164 -#: ../../mod/editwebpage.php:208 -msgid "Categories (optional, comma-separated list)" -msgstr "Categorías (opcional, lista separada por comas)" +#: ../../Zotlabs/Module/Connedit.php:565 +msgid "Unhide" +msgstr "Mostrar" -#: ../../include/conversation.php:1245 ../../mod/editpost.php:132 -#: ../../mod/editblock.php:152 ../../mod/editlayout.php:150 -#: ../../mod/editwebpage.php:192 ../../mod/events.php:466 -msgid "Permission settings" -msgstr "Configuración de permisos" +#: ../../Zotlabs/Module/Connedit.php:565 +msgid "Hide" +msgstr "Ocultar" -#: ../../include/conversation.php:1246 -msgid "permissions" -msgstr "permisos" +#: ../../Zotlabs/Module/Connedit.php:568 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Ocultar o mostrar esta conexión a sus otras conexiones" -#: ../../include/conversation.php:1254 ../../mod/editpost.php:140 -#: ../../mod/editblock.php:160 ../../mod/editlayout.php:157 -#: ../../mod/editwebpage.php:201 -msgid "Public post" -msgstr "Entrada pública" +#: ../../Zotlabs/Module/Connedit.php:569 +msgid "This connection is hidden!" +msgstr "¡Esta conexión está oculta!" -#: ../../include/conversation.php:1256 ../../mod/editpost.php:146 -#: ../../mod/editblock.php:167 ../../mod/editlayout.php:165 -#: ../../mod/editwebpage.php:209 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Ejemplo: roberto@ejemplo.com, maría@ejemplo.com" +#: ../../Zotlabs/Module/Connedit.php:576 +msgid "Delete this connection" +msgstr "Eliminar esta conexión" -#: ../../include/conversation.php:1269 ../../mod/editpost.php:157 -#: ../../mod/editblock.php:177 ../../mod/editlayout.php:174 -#: ../../mod/editwebpage.php:218 ../../mod/mail.php:253 ../../mod/mail.php:383 -msgid "Set expiration date" -msgstr "Configurar fecha de caducidad" +#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:444 +msgid "Me" +msgstr "Yo" -#: ../../include/conversation.php:1272 -msgid "Set publish date" -msgstr "Establecer la fecha de publicación" +#: ../../Zotlabs/Module/Connedit.php:594 ../../include/widgets.php:445 +msgid "Family" +msgstr "Familia" -#: ../../include/conversation.php:1276 ../../mod/editpost.php:161 -msgid "OK" -msgstr "OK" +#: ../../Zotlabs/Module/Connedit.php:595 ../../Zotlabs/Module/Settings.php:340 +#: ../../Zotlabs/Module/Settings.php:344 ../../Zotlabs/Module/Settings.php:345 +#: ../../Zotlabs/Module/Settings.php:348 ../../Zotlabs/Module/Settings.php:359 +#: ../../include/identity.php:389 ../../include/identity.php:390 +#: ../../include/identity.php:397 ../../include/profile_selectors.php:80 +#: ../../include/widgets.php:446 +msgid "Friends" +msgstr "Amigos/as" -#: ../../include/conversation.php:1277 ../../mod/editpost.php:162 -#: ../../mod/fbrowser.php:77 ../../mod/fbrowser.php:112 -#: ../../mod/settings.php:598 ../../mod/settings.php:624 -#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 -msgid "Cancel" -msgstr "Cancelar" +#: ../../Zotlabs/Module/Connedit.php:596 ../../include/widgets.php:447 +msgid "Acquaintances" +msgstr "Conocidos/as" -#: ../../include/conversation.php:1521 -msgid "Discover" -msgstr "Descubrir" +#: ../../Zotlabs/Module/Connedit.php:657 +msgid "Approve this connection" +msgstr "Aprobar esta conexión" -#: ../../include/conversation.php:1524 -msgid "Imported public streams" -msgstr "Contenidos públicos importados" +#: ../../Zotlabs/Module/Connedit.php:657 +msgid "Accept connection to allow communication" +msgstr "Aceptar la conexión para permitir la comunicación" -#: ../../include/conversation.php:1529 -msgid "Commented Order" -msgstr "Comentarios recientes" +#: ../../Zotlabs/Module/Connedit.php:662 +msgid "Set Affinity" +msgstr "Ajustar la afinidad" -#: ../../include/conversation.php:1532 -msgid "Sort by Comment Date" -msgstr "Ordenar por fecha de comentario" +#: ../../Zotlabs/Module/Connedit.php:665 +msgid "Set Profile" +msgstr "Ajustar el perfil" -#: ../../include/conversation.php:1536 -msgid "Posted Order" -msgstr "Publicaciones recientes" +#: ../../Zotlabs/Module/Connedit.php:668 +msgid "Set Affinity & Profile" +msgstr "Ajustar la afinidad y el perfil" -#: ../../include/conversation.php:1539 -msgid "Sort by Post Date" -msgstr "Ordenar por fecha de publicación" +#: ../../Zotlabs/Module/Connedit.php:701 +msgid "none" +msgstr "-" -#: ../../include/conversation.php:1544 ../../include/widgets.php:105 -#: ../../mod/profiles.php:696 -msgid "Personal" -msgstr "Personales" +#: ../../Zotlabs/Module/Connedit.php:705 ../../include/widgets.php:565 +msgid "Connection Default Permissions" +msgstr "Permisos predeterminados de conexión" -#: ../../include/conversation.php:1547 -msgid "Posts that mention or involve you" -msgstr "Publicaciones que le mencionan o involucran" +#: ../../Zotlabs/Module/Connedit.php:705 ../../include/items.php:5159 +#, php-format +msgid "Connection: %s" +msgstr "Conexión: %s" -#: ../../include/conversation.php:1553 ../../mod/connections.php:72 -#: ../../mod/connections.php:82 ../../mod/menu.php:112 -msgid "New" -msgstr "Nuevas" +#: ../../Zotlabs/Module/Connedit.php:706 +msgid "Apply these permissions automatically" +msgstr "Aplicar estos permisos automaticamente" -#: ../../include/conversation.php:1556 -msgid "Activity Stream - by date" -msgstr "Contenido - por fecha" +#: ../../Zotlabs/Module/Connedit.php:706 +msgid "Connection requests will be approved without your interaction" +msgstr "Las solicitudes de conexión serán aprobadas sin su intervención" -#: ../../include/conversation.php:1562 -msgid "Starred" -msgstr "Preferidas" +#: ../../Zotlabs/Module/Connedit.php:708 +msgid "This connection's primary address is" +msgstr "La dirección primaria de esta conexión es" -#: ../../include/conversation.php:1565 -msgid "Favourite Posts" -msgstr "Publicaciones favoritas" +#: ../../Zotlabs/Module/Connedit.php:709 +msgid "Available locations:" +msgstr "Ubicaciones disponibles:" -#: ../../include/conversation.php:1572 -msgid "Spam" -msgstr "Correo basura" +#: ../../Zotlabs/Module/Connedit.php:713 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones." -#: ../../include/conversation.php:1575 -msgid "Posts flagged as SPAM" -msgstr "Publicaciones marcadas como basura" +#: ../../Zotlabs/Module/Connedit.php:715 +msgid "Slide to adjust your degree of friendship" +msgstr "Deslizar para ajustar el grado de amistad" -#: ../../include/conversation.php:1629 ../../mod/admin.php:1157 -msgid "Channel" -msgstr "Canal" +#: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Module/Rate.php:161 +#: ../../include/js_strings.php:20 +msgid "Rating" +msgstr "Valoración" -#: ../../include/conversation.php:1632 -msgid "Status Messages and Posts" -msgstr "Mensajes de estado y publicaciones" +#: ../../Zotlabs/Module/Connedit.php:717 +msgid "Slide to adjust your rating" +msgstr "Deslizar para ajustar su valoración" -#: ../../include/conversation.php:1641 -msgid "About" -msgstr "Mi perfil" +#: ../../Zotlabs/Module/Connedit.php:718 ../../Zotlabs/Module/Connedit.php:723 +msgid "Optionally explain your rating" +msgstr "Opcionalmente, puede explicar su valoración" -#: ../../include/conversation.php:1644 -msgid "Profile Details" -msgstr "Detalles del perfil" +#: ../../Zotlabs/Module/Connedit.php:720 +msgid "Custom Filter" +msgstr "Filtro personalizado" -#: ../../include/conversation.php:1660 -msgid "Files and Storage" -msgstr "Ficheros y repositorio" +#: ../../Zotlabs/Module/Connedit.php:721 +msgid "Only import posts with this text" +msgstr "Importar solo entradas que contengan este texto" -#: ../../include/conversation.php:1681 ../../include/conversation.php:1684 -#: ../../include/widgets.php:794 -msgid "Chatrooms" -msgstr "Salas de chat" +#: ../../Zotlabs/Module/Connedit.php:721 ../../Zotlabs/Module/Connedit.php:722 +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" -#: ../../include/conversation.php:1697 -msgid "Saved Bookmarks" -msgstr "Marcadores guardados" +#: ../../Zotlabs/Module/Connedit.php:722 +msgid "Do not import posts with this text" +msgstr "No importar entradas que contengan este texto" -#: ../../include/conversation.php:1707 -msgid "Manage Webpages" -msgstr "Administrar páginas web" +#: ../../Zotlabs/Module/Connedit.php:724 +msgid "This information is public!" +msgstr "¡Esta información es pública!" -#: ../../include/conversation.php:1766 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "Participaré" -msgstr[1] "Participaré" - -#: ../../include/conversation.php:1769 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "No participaré" -msgstr[1] "No participaré" - -#: ../../include/conversation.php:1772 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "Indeciso/a" -msgstr[1] "Indecisos/as" - -#: ../../include/conversation.php:1775 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "De acuerdo" -msgstr[1] "De acuerdo" - -#: ../../include/conversation.php:1778 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "En desacuerdo" -msgstr[1] "En desacuerdo" +#: ../../Zotlabs/Module/Connedit.php:729 +msgid "Connection Pending Approval" +msgstr "Conexión pendiente de aprobación" -#: ../../include/conversation.php:1781 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "se abstiene" -msgstr[1] "Se abstienen" +#: ../../Zotlabs/Module/Connedit.php:732 +msgid "inherited" +msgstr "heredado" -#: ../../include/bookmarks.php:35 +#: ../../Zotlabs/Module/Connedit.php:734 #, php-format -msgid "%1$s's bookmarks" -msgstr "Marcadores de %1$s" +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." -#: ../../include/chat.php:23 -msgid "Missing room name" -msgstr "Sala de chat sin nombre" +#: ../../Zotlabs/Module/Connedit.php:736 +msgid "Their Settings" +msgstr "Sus ajustes" -#: ../../include/chat.php:32 -msgid "Duplicate room name" -msgstr "Nombre de sala duplicado." +#: ../../Zotlabs/Module/Connedit.php:737 +msgid "My Settings" +msgstr "Mis ajustes" -#: ../../include/chat.php:82 ../../include/chat.php:90 -msgid "Invalid room specifier." -msgstr "Especificador de sala no válido." +#: ../../Zotlabs/Module/Connedit.php:739 +msgid "Individual Permissions" +msgstr "Permisos individuales" -#: ../../include/chat.php:122 -msgid "Room not found." -msgstr "Sala no encontrada." +#: ../../Zotlabs/Module/Connedit.php:740 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can not change those" +" settings here." +msgstr "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. No puede cambiar estos ajustes aquí." -#: ../../include/chat.php:143 -msgid "Room is full" -msgstr "La sala está llena." +#: ../../Zotlabs/Module/Connedit.php:741 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can change those settings here but " +"they wont have any impact unless the inherited setting changes." +msgstr "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados." -#: ../../include/Contact.php:118 -msgid "New window" -msgstr "Nueva ventana" +#: ../../Zotlabs/Module/Connedit.php:742 +msgid "Last update:" +msgstr "Última actualización:" -#: ../../include/Contact.php:119 -msgid "Open the selected location in a different window or browser tab" -msgstr "Abrir la dirección seleccionada en una ventana o pestaña aparte" +#: ../../Zotlabs/Module/Cover_photo.php:58 +#: ../../Zotlabs/Module/Profile_photo.php:79 +msgid "Image uploaded but image cropping failed." +msgstr "Imagen actualizada, pero el recorte de la imagen ha fallado. " -#: ../../include/Contact.php:237 -#, php-format -msgid "User '%s' deleted" -msgstr "El usuario '%s' ha sido eliminado" +#: ../../Zotlabs/Module/Cover_photo.php:134 +#: ../../Zotlabs/Module/Cover_photo.php:181 +msgid "Cover Photos" +msgstr "Imágenes de portada del perfil" -#: ../../include/auth.php:105 -msgid "Logged out." -msgstr "Desconectado/a." +#: ../../Zotlabs/Module/Cover_photo.php:154 +#: ../../Zotlabs/Module/Profile_photo.php:133 +msgid "Image resize failed." +msgstr "El ajuste del tamaño de la imagen ha fallado." -#: ../../include/auth.php:212 -msgid "Failed authentication" -msgstr "Autenticación fallida." +#: ../../Zotlabs/Module/Cover_photo.php:168 +#: ../../Zotlabs/Module/Profile_photo.php:192 ../../include/photos.php:146 +msgid "Unable to process image" +msgstr "No ha sido posible procesar la imagen" -#: ../../include/auth.php:226 ../../mod/openid.php:189 -msgid "Login failed." -msgstr "El acceso ha fallado." +#: ../../Zotlabs/Module/Cover_photo.php:192 +#: ../../Zotlabs/Module/Profile_photo.php:217 +msgid "Image upload failed." +msgstr "La carga de la imagen ha fallado." -#: ../../include/security.php:383 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado" +#: ../../Zotlabs/Module/Cover_photo.php:210 +#: ../../Zotlabs/Module/Profile_photo.php:236 +msgid "Unable to process image." +msgstr "No ha sido posible procesar la imagen." -#: ../../include/comanche.php:34 ../../mod/admin.php:366 -msgid "Default" -msgstr "Predeterminado" +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:5587 +msgid "female" +msgstr "mujer" -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Frecuentemente" +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:5588 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "%1$s ha actualizado su %2$s" -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Cada hora" +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:5589 +msgid "male" +msgstr "hombre" -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Dos veces al día" +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:5590 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "%1$s ha actualizado su %2$s" -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Diariamente" +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:5592 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "%1$s ha actualizado su %2$s" -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Semanalmente" +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/identity.php:1800 +msgid "cover photo" +msgstr "Imagen de portada del perfil" -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Mensualmente" +#: ../../Zotlabs/Module/Cover_photo.php:303 +#: ../../Zotlabs/Module/Cover_photo.php:318 +#: ../../Zotlabs/Module/Profile_photo.php:283 +#: ../../Zotlabs/Module/Profile_photo.php:324 +msgid "Photo not available." +msgstr "Foto no disponible." -#: ../../include/contact_selectors.php:76 -#: ../../include/contact_selectors.php:77 -msgid "Friendica" -msgstr "Friendica" +#: ../../Zotlabs/Module/Cover_photo.php:354 +#: ../../Zotlabs/Module/Profile_photo.php:365 +msgid "Upload File:" +msgstr "Subir fichero:" -#: ../../include/contact_selectors.php:78 -msgid "OStatus" -msgstr "OStatus" +#: ../../Zotlabs/Module/Cover_photo.php:355 +#: ../../Zotlabs/Module/Profile_photo.php:366 +msgid "Select a profile:" +msgstr "Seleccionar un perfil:" -#: ../../include/contact_selectors.php:79 -msgid "GNU-Social" -msgstr "GNU Social" +#: ../../Zotlabs/Module/Cover_photo.php:356 +msgid "Upload Cover Photo" +msgstr "Subir imagen de portada del perfil" -#: ../../include/contact_selectors.php:80 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:374 +#: ../../Zotlabs/Module/Settings.php:983 +msgid "or" +msgstr "o" -#: ../../include/contact_selectors.php:81 ../../mod/admin.php:989 -#: ../../mod/admin.php:998 ../../mod/id.php:15 ../../mod/id.php:16 -#: ../../boot.php:1602 -msgid "Email" -msgstr "Correo electrónico" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:374 +msgid "skip this step" +msgstr "Omitir este paso" -#: ../../include/contact_selectors.php:82 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:374 +msgid "select a photo from your photo albums" +msgstr "Seleccione una foto de sus álbumes de fotos" -#: ../../include/contact_selectors.php:83 -msgid "Facebook" -msgstr "Facebook" +#: ../../Zotlabs/Module/Cover_photo.php:377 +#: ../../Zotlabs/Module/Profile_photo.php:390 +msgid "Crop Image" +msgstr "Recortar imagen" -#: ../../include/contact_selectors.php:84 -msgid "Zot" -msgstr "Zot" +#: ../../Zotlabs/Module/Cover_photo.php:378 +#: ../../Zotlabs/Module/Profile_photo.php:391 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Por favor ajuste el recorte de la imagen para una visión óptima." -#: ../../include/contact_selectors.php:85 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../Zotlabs/Module/Cover_photo.php:380 +#: ../../Zotlabs/Module/Profile_photo.php:393 +msgid "Done Editing" +msgstr "Edición completada" -#: ../../include/contact_selectors.php:86 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../Zotlabs/Module/Dav.php:127 +msgid "$Projectname channel" +msgstr "Canal $Projectname" -#: ../../include/contact_selectors.php:87 -msgid "MySpace" -msgstr "MySpace" +#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:21 +#: ../../Zotlabs/Module/Photos.php:521 ../../Zotlabs/Module/Ratings.php:86 +#: ../../Zotlabs/Module/Search.php:17 +#: ../../Zotlabs/Module/Viewconnections.php:21 +msgid "Public access denied." +msgstr "Acceso público denegado." -#: ../../include/contact_widgets.php:14 +#: ../../Zotlabs/Module/Directory.php:243 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d invitación pendiente" -msgstr[1] "%d invitaciones disponibles" +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d valoración" +msgstr[1] "%d valoraciones" -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:461 -msgid "Advanced" -msgstr "Avanzado" +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " +msgstr "Género:" -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "Encontrar canales" +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " +msgstr "Estado:" -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "Introducir nombre o interés" +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " +msgstr "Página personal:" -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "Conectar/Seguir" +#: ../../Zotlabs/Module/Directory.php:306 ../../include/identity.php:1322 +msgid "Age:" +msgstr "Edad:" -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Ejemplos: José Fernández, Pesca" +#: ../../Zotlabs/Module/Directory.php:311 ../../include/identity.php:1022 +#: ../../include/bb2diaspora.php:509 ../../include/event.php:52 +#: ../../include/text.php:1452 +msgid "Location:" +msgstr "Ubicación:" -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:305 -#: ../../mod/directory.php:384 ../../mod/directory.php:389 -msgid "Find" -msgstr "Encontrar" +#: ../../Zotlabs/Module/Directory.php:317 +msgid "Description:" +msgstr "Descripción:" -#: ../../include/contact_widgets.php:27 ../../mod/directory.php:388 -#: ../../mod/suggest.php:60 -msgid "Channel Suggestions" -msgstr "Sugerencias de canales" +#: ../../Zotlabs/Module/Directory.php:322 ../../include/identity.php:1338 +msgid "Hometown:" +msgstr "Lugar de nacimiento:" -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "Perfil aleatorio" +#: ../../Zotlabs/Module/Directory.php:324 ../../include/identity.php:1346 +msgid "About:" +msgstr "Sobre mí:" -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "Invitar a amigos" +#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/identity.php:1007 +#: ../../include/conversation.php:961 ../../include/Contact.php:101 +#: ../../include/widgets.php:147 ../../include/widgets.php:184 +msgid "Connect" +msgstr "Conectar" -#: ../../include/contact_widgets.php:32 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Ejemplo avanzado: nombre=juan y país=españa" +#: ../../Zotlabs/Module/Directory.php:326 +msgid "Public Forum:" +msgstr "Foro público:" -#: ../../include/contact_widgets.php:57 ../../include/features.php:97 -#: ../../include/widgets.php:310 -msgid "Saved Folders" -msgstr "Carpetas guardadas" +#: ../../Zotlabs/Module/Directory.php:329 +msgid "Keywords: " +msgstr "Palabras clave:" -#: ../../include/contact_widgets.php:60 ../../include/contact_widgets.php:98 -#: ../../include/widgets.php:313 -msgid "Everything" -msgstr "Todo" +#: ../../Zotlabs/Module/Directory.php:332 +msgid "Don't suggest" +msgstr "No sugerir:" -#: ../../include/contact_widgets.php:95 ../../include/widgets.php:46 -#: ../../include/taxonomy.php:282 -msgid "Categories" -msgstr "Categorías" +#: ../../Zotlabs/Module/Directory.php:334 +msgid "Common connections:" +msgstr "Conexiones comunes:" -#: ../../include/contact_widgets.php:128 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d conexión en común" -msgstr[1] "%d conexiones en común" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Global Directory" +msgstr "Directorio global:" -#: ../../include/contact_widgets.php:133 -msgid "show more" -msgstr "mostrar más" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Local Directory" +msgstr "Directorio local:" -#: ../../include/attach.php:247 ../../include/attach.php:333 -msgid "Item was not found." -msgstr "Elemento no encontrado." +#: ../../Zotlabs/Module/Directory.php:389 +msgid "Finding:" +msgstr "Encontrar:" -#: ../../include/attach.php:497 -msgid "No source file." -msgstr "Ningún fichero de origen" +#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 +#: ../../include/contact_widgets.php:27 +msgid "Channel Suggestions" +msgstr "Sugerencias de canales" -#: ../../include/attach.php:519 -msgid "Cannot locate file to replace" -msgstr "No se puede localizar el fichero que va a ser sustituido." +#: ../../Zotlabs/Module/Directory.php:394 +msgid "next page" +msgstr "siguiente página" -#: ../../include/attach.php:537 -msgid "Cannot locate file to revise/update" -msgstr "No se puede localizar el fichero para revisar/actualizar" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "previous page" +msgstr "página anterior" -#: ../../include/attach.php:672 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "El fichero supera el limite de tamaño de %d" +#: ../../Zotlabs/Module/Directory.php:395 +msgid "Sort options" +msgstr "Ordenar opciones" -#: ../../include/attach.php:686 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos." +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Alphabetic" +msgstr "Alfabético" -#: ../../include/attach.php:842 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado." +#: ../../Zotlabs/Module/Directory.php:397 +msgid "Reverse Alphabetic" +msgstr "Alfabético inverso" -#: ../../include/attach.php:855 -msgid "Stored file could not be verified. Upload failed." -msgstr "El fichero almacenado no ha podido ser verificado. El envío ha fallado." +#: ../../Zotlabs/Module/Directory.php:398 +msgid "Newest to Oldest" +msgstr "De más nuevo a más antiguo" -#: ../../include/attach.php:909 ../../include/attach.php:925 -msgid "Path not available." -msgstr "Ruta no disponible." +#: ../../Zotlabs/Module/Directory.php:399 +msgid "Oldest to Newest" +msgstr "De más antiguo a más nuevo" -#: ../../include/attach.php:971 ../../include/attach.php:1123 -msgid "Empty pathname" -msgstr "Ruta vacía" +#: ../../Zotlabs/Module/Directory.php:416 +msgid "No entries (some entries may be hidden)." +msgstr "Sin entradas (algunas entradas pueden estar ocultas)." -#: ../../include/attach.php:997 -msgid "duplicate filename or path" -msgstr "Nombre duplicado de ruta o fichero" +#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 +msgid "This site is not a directory server" +msgstr "Este sitio no es un servidor de directorio" -#: ../../include/attach.php:1019 -msgid "Path not found." -msgstr "Ruta no encontrada" +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "El servidor de este directorio necesita un \"token\" de acceso" -#: ../../include/attach.php:1077 -msgid "mkdir failed." -msgstr "mkdir ha fallado." +#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:49 +#: ../../Zotlabs/Module/Group.php:72 ../../Zotlabs/Module/Import_items.php:112 +#: ../../Zotlabs/Module/Like.php:284 ../../Zotlabs/Module/Profperm.php:28 +#: ../../Zotlabs/Module/Subthread.php:62 ../../include/items.php:423 +#: ../../index.php:173 +msgid "Permission denied" +msgstr "Permiso denegado" -#: ../../include/attach.php:1081 -msgid "database storage failed." -msgstr "el almacenamiento en la base de datos ha fallado." +#: ../../Zotlabs/Module/Dreport.php:27 +msgid "Invalid message" +msgstr "Mensaje no válido" -#: ../../include/attach.php:1129 -msgid "Empty path" -msgstr "Ruta vacía" +#: ../../Zotlabs/Module/Dreport.php:59 +msgid "no results" +msgstr "sin resultados" -#: ../../include/datetime.php:48 ../../mod/profiles.php:699 -msgid "Miscellaneous" -msgstr "Varios" +#: ../../Zotlabs/Module/Dreport.php:64 +#, php-format +msgid "Delivery report for %1$s" +msgstr "Informe de entrega para %1$s" -#: ../../include/datetime.php:136 -msgid "Birthday" -msgstr "Cumpleaños" +#: ../../Zotlabs/Module/Dreport.php:78 +msgid "channel sync processed" +msgstr "se ha realizado la sincronización del canal" -#: ../../include/datetime.php:138 -msgid "Age: " -msgstr "Edad:" +#: ../../Zotlabs/Module/Dreport.php:82 +msgid "queued" +msgstr "encolado" -#: ../../include/datetime.php:140 -msgid "YYYY-MM-DD or MM-DD" -msgstr "AAAA-MM-DD o MM-DD" +#: ../../Zotlabs/Module/Dreport.php:86 +msgid "posted" +msgstr "enviado" -#: ../../include/datetime.php:246 ../../mod/appman.php:91 -#: ../../mod/appman.php:92 ../../mod/profiles.php:708 -#: ../../mod/profiles.php:712 ../../mod/events.php:444 -#: ../../mod/events.php:449 -msgid "Required" -msgstr "Obligatorio" +#: ../../Zotlabs/Module/Dreport.php:90 +msgid "accepted for delivery" +msgstr "aceptado para el envío" -#: ../../include/datetime.php:273 ../../boot.php:2430 -msgid "never" -msgstr "nunca" +#: ../../Zotlabs/Module/Dreport.php:94 +msgid "updated" +msgstr "actualizado" -#: ../../include/datetime.php:279 -msgid "less than a second ago" -msgstr "hace un instante" +#: ../../Zotlabs/Module/Dreport.php:97 +msgid "update ignored" +msgstr "actualización ignorada" -#: ../../include/datetime.php:297 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "hace %1$d %2$s" +#: ../../Zotlabs/Module/Dreport.php:100 +msgid "permission denied" +msgstr "permiso denegado" -#: ../../include/datetime.php:308 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "año" -msgstr[1] "años" +#: ../../Zotlabs/Module/Dreport.php:104 +msgid "recipient not found" +msgstr "destinatario no encontrado" -#: ../../include/datetime.php:311 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "mes" -msgstr[1] "meses" +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "mail recalled" +msgstr "mensaje de correo revocado" -#: ../../include/datetime.php:314 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "semana" -msgstr[1] "semanas" +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "duplicate mail received" +msgstr "se ha recibido mensaje duplicado" -#: ../../include/datetime.php:317 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "día" -msgstr[1] "días" +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "mail delivered" +msgstr "correo enviado" -#: ../../include/datetime.php:320 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "hora" -msgstr[1] "horas" +#: ../../Zotlabs/Module/Editblock.php:82 ../../Zotlabs/Module/Editblock.php:98 +#: ../../Zotlabs/Module/Editlayout.php:80 ../../Zotlabs/Module/Editpost.php:24 +#: ../../Zotlabs/Module/Editwebpage.php:81 +msgid "Item not found" +msgstr "Elemento no encontrado" -#: ../../include/datetime.php:323 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuto" -msgstr[1] "minutos" +#: ../../Zotlabs/Module/Editblock.php:122 +msgid "Delete block?" +msgstr "¿Borrar bloque?" -#: ../../include/datetime.php:326 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "segundo" -msgstr[1] "segundos" +#: ../../Zotlabs/Module/Editblock.php:141 +#: ../../Zotlabs/Module/Editlayout.php:140 +#: ../../Zotlabs/Module/Editpost.php:119 +#: ../../Zotlabs/Module/Editwebpage.php:182 ../../include/ItemObject.php:704 +#: ../../include/conversation.php:1216 +msgid "Bold" +msgstr "Negrita" -#: ../../include/datetime.php:563 -#, php-format -msgid "%1$s's birthday" -msgstr "Cumpleaños de %1$s" +#: ../../Zotlabs/Module/Editblock.php:142 +#: ../../Zotlabs/Module/Editlayout.php:141 +#: ../../Zotlabs/Module/Editpost.php:120 +#: ../../Zotlabs/Module/Editwebpage.php:183 ../../include/ItemObject.php:705 +#: ../../include/conversation.php:1217 +msgid "Italic" +msgstr "Itálico " -#: ../../include/datetime.php:564 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Feliz cumpleaños %1$s" +#: ../../Zotlabs/Module/Editblock.php:143 +#: ../../Zotlabs/Module/Editlayout.php:142 +#: ../../Zotlabs/Module/Editpost.php:121 +#: ../../Zotlabs/Module/Editwebpage.php:184 ../../include/ItemObject.php:706 +#: ../../include/conversation.php:1218 +msgid "Underline" +msgstr "Subrayar" -#: ../../include/dir_fns.php:139 -msgid "Directory Options" -msgstr "Opciones del directorio" +#: ../../Zotlabs/Module/Editblock.php:144 +#: ../../Zotlabs/Module/Editlayout.php:143 +#: ../../Zotlabs/Module/Editpost.php:122 +#: ../../Zotlabs/Module/Editwebpage.php:185 ../../include/ItemObject.php:707 +#: ../../include/conversation.php:1219 +msgid "Quote" +msgstr "Citar" -#: ../../include/dir_fns.php:141 -msgid "Safe Mode" -msgstr "Modo seguro" +#: ../../Zotlabs/Module/Editblock.php:145 +#: ../../Zotlabs/Module/Editlayout.php:144 +#: ../../Zotlabs/Module/Editpost.php:123 +#: ../../Zotlabs/Module/Editwebpage.php:186 ../../include/ItemObject.php:708 +#: ../../include/conversation.php:1220 +msgid "Code" +msgstr "Código" -#: ../../include/dir_fns.php:141 ../../include/dir_fns.php:142 -#: ../../include/dir_fns.php:143 ../../mod/admin.php:425 ../../mod/api.php:102 -#: ../../mod/photos.php:661 ../../mod/mitem.php:154 ../../mod/mitem.php:155 -#: ../../mod/mitem.php:228 ../../mod/mitem.php:229 ../../mod/connedit.php:375 -#: ../../mod/connedit.php:653 ../../mod/profiles.php:647 -#: ../../mod/events.php:454 ../../mod/events.php:455 ../../mod/events.php:464 -#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159 -#: ../../mod/removeme.php:60 ../../mod/settings.php:588 ../../mod/menu.php:96 -#: ../../mod/menu.php:153 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1604 -msgid "No" -msgstr "No" +#: ../../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" -#: ../../include/dir_fns.php:141 ../../include/dir_fns.php:142 -#: ../../include/dir_fns.php:143 ../../mod/admin.php:427 ../../mod/api.php:101 -#: ../../mod/photos.php:661 ../../mod/mitem.php:154 ../../mod/mitem.php:155 -#: ../../mod/mitem.php:228 ../../mod/mitem.php:229 ../../mod/connedit.php:375 -#: ../../mod/profiles.php:647 ../../mod/events.php:454 -#: ../../mod/events.php:455 ../../mod/events.php:464 -#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159 -#: ../../mod/removeme.php:60 ../../mod/settings.php:588 ../../mod/menu.php:96 -#: ../../mod/menu.php:153 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1604 -msgid "Yes" -msgstr "Sí" +#: ../../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/Mail.php:382 ../../include/conversation.php:1223 +msgid "Attach file" +msgstr "Adjuntar fichero" -#: ../../include/dir_fns.php:142 -msgid "Public Forums Only" -msgstr "Solo foros públicos" +#: ../../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" -#: ../../include/dir_fns.php:143 -msgid "This Website Only" -msgstr "Solo este sitio web" +#: ../../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]" -#: ../../include/enotify.php:96 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../include/enotify.php:100 -#, php-format -msgid "[Hubzilla:Notify] New mail received at %s" -msgstr "[Hubzilla:Aviso] Nuevo mensaje en %s" +#: ../../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]" -#: ../../include/enotify.php:102 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s le ha enviado un nuevo mensaje privado en %3$s." +#: ../../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" -#: ../../include/enotify.php:103 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s le ha enviado %2$s." +#: ../../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" -#: ../../include/enotify.php:103 -msgid "a private message" -msgstr "un mensaje privado" +#: ../../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" -#: ../../include/enotify.php:104 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Por favor visite %s para ver y/o responder a su mensaje privado." +#: ../../Zotlabs/Module/Editblock.php:156 +#: ../../Zotlabs/Module/Editlayout.php:154 +#: ../../Zotlabs/Module/Editpost.php:136 +#: ../../Zotlabs/Module/Editwebpage.php:196 +#: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1245 +msgid "Permission settings" +msgstr "Configuración de permisos" -#: ../../include/enotify.php:160 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s ha comentado [zrl=%3$s]%4$s[/zrl]" +#: ../../Zotlabs/Module/Editblock.php:164 +#: ../../Zotlabs/Module/Editlayout.php:161 +#: ../../Zotlabs/Module/Editpost.php:144 +#: ../../Zotlabs/Module/Editwebpage.php:205 +#: ../../include/conversation.php:1254 +msgid "Public post" +msgstr "Entrada pública" -#: ../../include/enotify.php:168 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s ha comentado [zrl=%3$s]%5$s de %4$s[/zrl] " +#: ../../Zotlabs/Module/Editblock.php:167 +#: ../../Zotlabs/Module/Editpost.php:147 +#: ../../Zotlabs/Module/Editwebpage.php:210 +#: ../../include/conversation.php:1239 +msgid "Title (optional)" +msgstr "Título (opcional)" -#: ../../include/enotify.php:177 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s ha comentado [zrl=%3$s]%4$s creado por usted[/zrl]" +#: ../../Zotlabs/Module/Editblock.php:170 +#: ../../Zotlabs/Module/Editlayout.php:168 +#: ../../Zotlabs/Module/Editpost.php:149 +#: ../../Zotlabs/Module/Editwebpage.php:212 +#: ../../include/conversation.php:1243 +msgid "Categories (optional, comma-separated list)" +msgstr "Categorías (opcional, lista separada por comas)" -#: ../../include/enotify.php:188 -#, php-format -msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Hubzilla:Aviso] Nuevo comentario de %2$s a la conversación #%1$d" +#: ../../Zotlabs/Module/Editblock.php:171 +#: ../../Zotlabs/Module/Editlayout.php:169 +#: ../../Zotlabs/Module/Editpost.php:150 +#: ../../Zotlabs/Module/Editwebpage.php:213 +#: ../../include/conversation.php:1256 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Ejemplo: roberto@ejemplo.com, maría@ejemplo.com" -#: ../../include/enotify.php:189 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s ha comentado un elemento/conversación que ha estado siguiendo." +#: ../../Zotlabs/Module/Editblock.php:176 +#: ../../Zotlabs/Module/Editpost.php:155 +#: ../../Zotlabs/Module/Editwebpage.php:217 +#: ../../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" -#: ../../include/enotify.php:192 ../../include/enotify.php:207 -#: ../../include/enotify.php:233 ../../include/enotify.php:251 -#: ../../include/enotify.php:265 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Para ver o comentar la conversación, visite %s" +#: ../../Zotlabs/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" -#: ../../include/enotify.php:198 -#, php-format -msgid "[Hubzilla:Notify] %s posted to your profile wall" -msgstr "[Hubzilla:Aviso] %s ha publicado una entrada en su página de inicio del perfil (\"muro\")" +#: ../../Zotlabs/Module/Editblock.php:186 +msgid "Edit Block" +msgstr "Modificar este bloque" -#: ../../include/enotify.php:200 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s ha publicado en su página del perfil en %3$s" +#: ../../Zotlabs/Module/Editlayout.php:116 +msgid "Delete layout?" +msgstr "¿Borrar la plantilla?" -#: ../../include/enotify.php:202 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s ha publicado en [zrl=%3$s]su página del perfil[/zrl]" +#: ../../Zotlabs/Module/Editlayout.php:164 +#: ../../Zotlabs/Module/Layouts.php:128 +msgid "Layout Description (Optional)" +msgstr "Descripción de la plantilla (opcional)" -#: ../../include/enotify.php:226 -#, php-format -msgid "[Hubzilla:Notify] %s tagged you" -msgstr "[Hubzilla:Aviso] %s le ha etiquetado" +#: ../../Zotlabs/Module/Editlayout.php:166 +#: ../../Zotlabs/Module/Layouts.php:125 ../../Zotlabs/Module/Layouts.php:184 +msgid "Layout Name" +msgstr "Nombre de la plantilla" -#: ../../include/enotify.php:227 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s le ha etiquetado en %3$s" +#: ../../Zotlabs/Module/Editlayout.php:183 +msgid "Edit Layout" +msgstr "Modificar la plantilla" -#: ../../include/enotify.php:228 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]le etiquetó[/zrl]." +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "El elemento no es editable" -#: ../../include/enotify.php:240 -#, php-format -msgid "[Hubzilla:Notify] %1$s poked you" -msgstr "[Hubzilla:Aviso] %1$s le ha dado un toque" +#: ../../Zotlabs/Module/Editpost.php:60 ../../Zotlabs/Module/Mail.php:207 +#: ../../Zotlabs/Module/Mail.php:321 ../../include/conversation.php:1176 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Caduca YYYY-MM-DD HH:MM" -#: ../../include/enotify.php:241 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s le ha dado un toque en %3$s" +#: ../../Zotlabs/Module/Editpost.php:61 +msgid "Delete item?" +msgstr "¿Borrar elemento?" -#: ../../include/enotify.php:242 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]le ha dado un toque[/zrl]." +#: ../../Zotlabs/Module/Editpost.php:132 ../../include/conversation.php:1233 +msgid "Toggle voting" +msgstr "Cambiar votación" -#: ../../include/enotify.php:258 -#, php-format -msgid "[Hubzilla:Notify] %s tagged your post" -msgstr "[Hubzilla:Aviso] %s ha etiquetado su publicación" +#: ../../Zotlabs/Module/Editpost.php:165 ../../include/conversation.php:1276 +msgid "OK" +msgstr "OK" -#: ../../include/enotify.php:259 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s ha etiquetado su publicación en %3$s" +#: ../../Zotlabs/Module/Editpost.php:166 ../../Zotlabs/Module/Fbrowser.php:66 +#: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Settings.php:589 +#: ../../Zotlabs/Module/Settings.php:615 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1277 +msgid "Cancel" +msgstr "Cancelar" -#: ../../include/enotify.php:260 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s ha etiquetado [zrl=%3$s]su publicación[/zrl]" +#: ../../Zotlabs/Module/Editpost.php:171 ../../Zotlabs/Module/Rpost.php:134 +msgid "Edit post" +msgstr "Editar la entrada" -#: ../../include/enotify.php:272 -msgid "[Hubzilla:Notify] Introduction received" -msgstr "[Hubzilla:Aviso] Ha recibido una solicitud de conexión" +#: ../../Zotlabs/Module/Editwebpage.php:157 +msgid "Delete webpage?" +msgstr "¿Eliminar la página web?" -#: ../../include/enotify.php:273 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, ha recibido una nueva solicitud de conexión de '%2$s' en %3$s" +#: ../../Zotlabs/Module/Editwebpage.php:177 +msgid "Page link title" +msgstr "Título del enlace de la página" -#: ../../include/enotify.php:274 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, ha recibido [zrl=%2$s]una nueva solicitud de conexión[/zrl] de %3$s." +#: ../../Zotlabs/Module/Editwebpage.php:227 +msgid "Edit Webpage" +msgstr "Editar la página web" -#: ../../include/enotify.php:278 ../../include/enotify.php:297 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Puede visitar su perfil en %s" +#: ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." +msgstr "Entradas de calendario importadas." -#: ../../include/enotify.php:280 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Por favor, visite %s para permitir o rechazar la solicitad de conexión." +#: ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." +msgstr "No se han encontrado entradas de calendario." -#: ../../include/enotify.php:287 -msgid "[Hubzilla:Notify] Friend suggestion received" -msgstr "[Hubzilla:Aviso] Ha recibido una sugerencia de amistad" +#: ../../Zotlabs/Module/Events.php:104 +msgid "Event can not end before it has started." +msgstr "Un evento no puede terminar antes de que haya comenzado." -#: ../../include/enotify.php:288 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, ha recibido una sugerencia de conexión de '%2$s' en %3$s" +#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 +#: ../../Zotlabs/Module/Events.php:135 +msgid "Unable to generate preview." +msgstr "No se puede crear la vista previa." -#: ../../include/enotify.php:289 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, ha recibido [zrl=%2$s]una sugerencia de conexión[/zrl] para %3$s de %4$s." +#: ../../Zotlabs/Module/Events.php:113 +msgid "Event title and start time are required." +msgstr "Se requieren el título del evento y su hora de inicio." -#: ../../include/enotify.php:295 -msgid "Name:" -msgstr "Nombre:" +#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 +msgid "Event not found." +msgstr "Evento no encontrado." -#: ../../include/enotify.php:296 -msgid "Photo:" -msgstr "Foto:" +#: ../../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 +msgid "event" +msgstr "evento" -#: ../../include/enotify.php:299 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Por favor, visite %s para aprobar o rechazar la sugerencia." +#: ../../Zotlabs/Module/Events.php:448 +msgid "Edit event title" +msgstr "Editar el título del evento" -#: ../../include/enotify.php:514 -msgid "[Hubzilla:Notify]" -msgstr "[Hubzilla:Aviso]" +#: ../../Zotlabs/Module/Events.php:448 +msgid "Event title" +msgstr "Título del evento" -#: ../../include/event.php:779 -msgid "This event has been added to your calendar." -msgstr "Este evento ha sido añadido a su calendario." +#: ../../Zotlabs/Module/Events.php:450 +msgid "Categories (comma-separated list)" +msgstr "Categorías (lista separada por comas)" -#: ../../include/event.php:978 -msgid "Not specified" -msgstr "Sin especificar" +#: ../../Zotlabs/Module/Events.php:451 +msgid "Edit Category" +msgstr "Editar la categoría" -#: ../../include/event.php:979 -msgid "Needs Action" -msgstr "Necesita de una intervención" +#: ../../Zotlabs/Module/Events.php:451 +msgid "Category" +msgstr "Categoría" -#: ../../include/event.php:980 -msgid "Completed" -msgstr "Completado/a" +#: ../../Zotlabs/Module/Events.php:454 +msgid "Edit start date and time" +msgstr "Modificar la fecha y hora de comienzo" -#: ../../include/event.php:981 -msgid "In Process" -msgstr "En proceso" +#: ../../Zotlabs/Module/Events.php:454 +msgid "Start date and time" +msgstr "Fecha y hora de comienzo" -#: ../../include/event.php:982 -msgid "Cancelled" -msgstr "Cancelado/a" +#: ../../Zotlabs/Module/Events.php:455 ../../Zotlabs/Module/Events.php:458 +msgid "Finish date and time are not known or not relevant" +msgstr "La fecha y hora de terminación no se conocen o no son relevantes" -#: ../../include/features.php:48 -msgid "General Features" -msgstr "Funcionalidades básicas" +#: ../../Zotlabs/Module/Events.php:457 +msgid "Edit finish date and time" +msgstr "Modificar la fecha y hora de terminación" -#: ../../include/features.php:50 -msgid "Content Expiration" -msgstr "Caducidad del contenido" +#: ../../Zotlabs/Module/Events.php:457 +msgid "Finish date and time" +msgstr "Fecha y hora de terminación" -#: ../../include/features.php:50 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Eliminar publicaciones/comentarios y/o mensajes privados más adelante" +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 +msgid "Adjust for viewer timezone" +msgstr "Ajustar para obtener el visor de los husos horarios" -#: ../../include/features.php:51 -msgid "Multiple Profiles" -msgstr "Múltiples perfiles" +#: ../../Zotlabs/Module/Events.php:459 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales." -#: ../../include/features.php:51 -msgid "Ability to create multiple profiles" -msgstr "Capacidad de crear múltiples perfiles" +#: ../../Zotlabs/Module/Events.php:461 +msgid "Edit Description" +msgstr "Editar la descripción" -#: ../../include/features.php:52 -msgid "Advanced Profiles" -msgstr "Perfiles avanzados" +#: ../../Zotlabs/Module/Events.php:463 +msgid "Edit Location" +msgstr "Modificar la dirección" -#: ../../include/features.php:52 -msgid "Additional profile sections and selections" -msgstr "Secciones y selecciones de perfil adicionales" +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Profiles.php:476 ../../Zotlabs/Module/Profiles.php:701 +#: ../../Zotlabs/Module/Pubsites.php:40 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Ubicación" -#: ../../include/features.php:53 -msgid "Profile Import/Export" -msgstr "Importar/Exportar perfil" +#: ../../Zotlabs/Module/Events.php:466 ../../Zotlabs/Module/Events.php:468 +msgid "Share this event" +msgstr "Compartir este evento" -#: ../../include/features.php:53 -msgid "Save and load profile details across sites/channels" -msgstr "Guardar y cargar detalles del perfil a través de sitios/canales" +#: ../../Zotlabs/Module/Events.php:473 +msgid "Advanced Options" +msgstr "Opciones avanzadas" -#: ../../include/features.php:54 -msgid "Web Pages" -msgstr "Páginas web" +#: ../../Zotlabs/Module/Events.php:607 +msgid "Edit event" +msgstr "Editar evento" -#: ../../include/features.php:54 -msgid "Provide managed web pages on your channel" -msgstr "Proveer páginas web gestionadas en su canal" +#: ../../Zotlabs/Module/Events.php:609 +msgid "Delete event" +msgstr "Borrar evento" -#: ../../include/features.php:55 -msgid "Hide Rating" -msgstr "Ocultar las valoraciones" +#: ../../Zotlabs/Module/Events.php:643 +msgid "calendar" +msgstr "calendario" -#: ../../include/features.php:55 -msgid "" -"Hide the rating buttons on your channel and profile pages. Note: People can " -"still rate you somewhere else." -msgstr "Ocultar los botones de valoración en su canal y página de perfil. Tenga en cuenta, sin embargo, que la gente podrá expresar su valoración en otros lugares." +#: ../../Zotlabs/Module/Events.php:703 +msgid "Event removed" +msgstr "Evento borrado" -#: ../../include/features.php:56 -msgid "Private Notes" -msgstr "Notas privadas" +#: ../../Zotlabs/Module/Events.php:706 +msgid "Failed to remove event" +msgstr "Error al eliminar el evento" -#: ../../include/features.php:56 -msgid "Enables a tool to store notes and reminders (note: not encrypted)" -msgstr "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)" +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../include/apps.php:139 +#: ../../include/conversation.php:1650 ../../include/nav.php:92 +msgid "Photos" +msgstr "Fotos" -#: ../../include/features.php:57 -msgid "Navigation Channel Select" -msgstr "Navegación por el selector de canales" +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Compartir contenido desde Firefox a $Projectname" -#: ../../include/features.php:57 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Cambiar de canales directamente desde el menú de navegación desplegable" +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Servicio de compartición de Firefox: activar el proveedor $Projectname " -#: ../../include/features.php:58 -msgid "Photo Location" -msgstr "Ubicación de las fotos" +#: ../../Zotlabs/Module/Filer.php:52 ../../include/conversation.php:1174 +msgid "Save to Folder:" +msgstr "Guardar en carpeta:" -#: ../../include/features.php:58 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa." +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- seleccionar -" -#: ../../include/features.php:59 -msgid "Access Controlled Chatrooms" -msgstr "Salas de chat moderadas" +#: ../../Zotlabs/Module/Filestorage.php:86 +msgid "Permission Denied." +msgstr "Permiso denegado" -#: ../../include/features.php:59 -msgid "Provide chatrooms and chat services with access control." -msgstr "Proporcionar salas y servicios de chat moderados." +#: ../../Zotlabs/Module/Filestorage.php:102 +msgid "File not found." +msgstr "Fichero no encontrado." -#: ../../include/features.php:60 -msgid "Smart Birthdays" -msgstr "Cumpleaños inteligentes" +#: ../../Zotlabs/Module/Filestorage.php:145 +msgid "Edit file permissions" +msgstr "Modificar los permisos del fichero" -#: ../../include/features.php:60 -msgid "" -"Make birthday events timezone aware in case your friends are scattered " -"across the planet." -msgstr "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo." +#: ../../Zotlabs/Module/Filestorage.php:154 +msgid "Set/edit permissions" +msgstr "Establecer/editar los permisos" -#: ../../include/features.php:61 -msgid "Expert Mode" -msgstr "Modo de experto" +#: ../../Zotlabs/Module/Filestorage.php:155 +msgid "Include all files and sub folders" +msgstr "Incluir todos los ficheros y subcarpetas" -#: ../../include/features.php:61 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Habilitar el modo de experto para acceder a opciones avanzadas de configuración" +#: ../../Zotlabs/Module/Filestorage.php:156 +msgid "Return to file list" +msgstr "Volver a la lista de ficheros" -#: ../../include/features.php:62 -msgid "Premium Channel" -msgstr "Canal premium" +#: ../../Zotlabs/Module/Filestorage.php:158 +msgid "Copy/paste this code to attach file to a post" +msgstr "Copiar/pegar este código para adjuntar el fichero al envío" -#: ../../include/features.php:62 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal" +#: ../../Zotlabs/Module/Filestorage.php:159 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Copiar/pegar esta dirección para enlazar el fichero desde una página web" -#: ../../include/features.php:67 -msgid "Post Composition Features" -msgstr "Opciones para la redacción de entradas" +#: ../../Zotlabs/Module/Filestorage.php:161 +msgid "Share this file" +msgstr "Compartir este fichero" -#: ../../include/features.php:70 -msgid "Large Photos" -msgstr "Fotos de gran tamaño" +#: ../../Zotlabs/Module/Filestorage.php:162 +msgid "Show URL to this file" +msgstr "Mostrar la dirección de este fichero" -#: ../../include/features.php:70 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" -msgstr "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)" +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Notify your contacts about this file" +msgstr "Avisar a sus contactos sobre este fichero" -#: ../../include/features.php:71 ../../include/widgets.php:581 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Orígenes de los contenidos del canal" +#: ../../Zotlabs/Module/Follow.php:31 +msgid "Channel added." +msgstr "Canal añadido." -#: ../../include/features.php:71 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Importar automáticamente contenido de otros canales o \"feeds\"" +#: ../../Zotlabs/Module/Fsuggest.php:24 ../../Zotlabs/Module/Fsuggest.php:96 +msgid "Contact not found." +msgstr "Contacto no encontrado" -#: ../../include/features.php:72 -msgid "Even More Encryption" -msgstr "Más cifrado todavía" +#: ../../Zotlabs/Module/Fsuggest.php:67 +msgid "Friend suggestion sent." +msgstr "Enviar sugerencia a un amigo." -#: ../../include/features.php:72 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida." +#: ../../Zotlabs/Module/Fsuggest.php:101 +msgid "Suggest Friends" +msgstr "Sugerir amigos" -#: ../../include/features.php:73 -msgid "Enable Voting Tools" -msgstr "Permitir entradas con votación" +#: ../../Zotlabs/Module/Fsuggest.php:103 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Sugerir un amigo a %s" -#: ../../include/features.php:73 -msgid "Provide a class of post which others can vote on" -msgstr "Proveer una clase de publicación en la que otros puedan votar" +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." +msgstr "El grupo de canales ha sido creado." -#: ../../include/features.php:74 -msgid "Delayed Posting" -msgstr "Publicación aplazada" +#: ../../Zotlabs/Module/Group.php:30 +msgid "Could not create privacy group." +msgstr "No se puede crear el grupo de canales" -#: ../../include/features.php:74 -msgid "Allow posts to be published at a later date" -msgstr "Permitir mensajes que se publicarán en una fecha posterior" +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 +#: ../../include/items.php:5126 +msgid "Privacy group not found." +msgstr "Grupo de canales no encontrado." -#: ../../include/features.php:75 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Prevenir entradas o comentarios duplicados" +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." +msgstr "Grupo de canales actualizado." -#: ../../include/features.php:75 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." -msgstr "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo." +#: ../../Zotlabs/Module/Group.php:90 +msgid "Create a group of channels." +msgstr "Crear un grupo de canales." -#: ../../include/features.php:81 -msgid "Network and Stream Filtering" -msgstr "Filtrado del contenido" +#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 +msgid "Privacy group name: " +msgstr "Nombre del grupo de canales:" -#: ../../include/features.php:82 -msgid "Search by Date" -msgstr "Buscar por fecha" +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 +msgid "Members are visible to other channels" +msgstr "Los miembros son visibles para otros canales" -#: ../../include/features.php:82 -msgid "Ability to select posts by date ranges" -msgstr "Capacidad de seleccionar entradas por rango de fechas" +#: ../../Zotlabs/Module/Group.php:111 +msgid "Privacy group removed." +msgstr "Grupo de canales eliminado." -#: ../../include/features.php:83 ../../include/group.php:311 -msgid "Privacy Groups" -msgstr "Grupos de canales" +#: ../../Zotlabs/Module/Group.php:113 +msgid "Unable to remove privacy group." +msgstr "Imposible eliminar el grupo de canales." -#: ../../include/features.php:83 -msgid "Enable management and selection of privacy groups" -msgstr "Activar la gestión y selección de grupos de canales" +#: ../../Zotlabs/Module/Group.php:183 +msgid "Privacy group editor" +msgstr "Editor de grupos de canales" -#: ../../include/features.php:84 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "Búsquedas guardadas" +#: ../../Zotlabs/Module/Group.php:197 +msgid "Members" +msgstr "Miembros" -#: ../../include/features.php:84 -msgid "Save search terms for re-use" -msgstr "Guardar términos de búsqueda para su reutilización" +#: ../../Zotlabs/Module/Group.php:199 +msgid "All Connected Channels" +msgstr "Todos los canales conectados" -#: ../../include/features.php:85 -msgid "Network Personal Tab" -msgstr "Actividad personal" +#: ../../Zotlabs/Module/Group.php:231 +msgid "Click on a channel to add or remove." +msgstr "Haga clic en un canal para agregarlo o quitarlo." -#: ../../include/features.php:85 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado." +#: ../../Zotlabs/Module/Help.php:26 +msgid "Documentation Search" +msgstr "Búsqueda de Documentación" -#: ../../include/features.php:86 -msgid "Network New Tab" -msgstr "Contenido nuevo" +#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 +#: ../../Zotlabs/Module/Help.php:79 +msgid "Help:" +msgstr "Ayuda:" -#: ../../include/features.php:86 -msgid "Enable tab to display all new Network activity" -msgstr "Habilitar una pestaña en la que se muestre solo el contenido nuevo" +#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 +#: ../../Zotlabs/Module/Layouts.php:181 ../../include/apps.php:142 +#: ../../include/nav.php:161 +msgid "Help" +msgstr "Ayuda" -#: ../../include/features.php:87 -msgid "Affinity Tool" -msgstr "Herramienta de afinidad" - -#: ../../include/features.php:87 -msgid "Filter stream activity by depth of relationships" -msgstr "Filtrar el contenido según la profundidad de las relaciones" +#: ../../Zotlabs/Module/Help.php:120 +msgid "$Projectname Documentation" +msgstr "Documentación de $Projectname" -#: ../../include/features.php:88 -msgid "Connection Filtering" -msgstr "Filtrado de conexiones" +#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "$Projectname" +msgstr "$Projectname" -#: ../../include/features.php:88 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido" +#: ../../Zotlabs/Module/Home.php:79 +#, php-format +msgid "Welcome to %s" +msgstr "Bienvenido a %s" -#: ../../include/features.php:89 -msgid "Suggest Channels" -msgstr "Sugerir canales" +#: ../../Zotlabs/Module/Id.php:13 +msgid "First Name" +msgstr "Nombre" -#: ../../include/features.php:89 -msgid "Show channel suggestions" -msgstr "Mostrar sugerencias de canales" +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "Apellido" -#: ../../include/features.php:94 -msgid "Post/Comment Tools" -msgstr "Gestión de entradas y comentarios" +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "Sobrenombre o Alias" -#: ../../include/features.php:95 -msgid "Community Tagging" -msgstr "Etiquetas de la comunidad" +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "Nombre completo" -#: ../../include/features.php:95 -msgid "Ability to tag existing posts" -msgstr "Capacidad de etiquetar entradas existentes" +#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 +#: ../../Zotlabs/Module/Id.php:21 ../../include/apps.php:155 +msgid "Profile Photo" +msgstr "Foto del perfil" -#: ../../include/features.php:96 -msgid "Post Categories" -msgstr "Categorías de entradas" +#: ../../Zotlabs/Module/Id.php:22 +msgid "Profile Photo 16px" +msgstr "Foto del perfil 16px" -#: ../../include/features.php:96 -msgid "Add categories to your posts" -msgstr "Añadir categorías a sus publicaciones" +#: ../../Zotlabs/Module/Id.php:23 +msgid "Profile Photo 32px" +msgstr "Foto del perfil 32px" -#: ../../include/features.php:97 -msgid "Ability to file posts under folders" -msgstr "Capacidad de archivar entradas en carpetas" +#: ../../Zotlabs/Module/Id.php:24 +msgid "Profile Photo 48px" +msgstr "Foto del perfil 48px" -#: ../../include/features.php:98 -msgid "Dislike Posts" -msgstr "Desagrado de publicaciones" +#: ../../Zotlabs/Module/Id.php:25 +msgid "Profile Photo 64px" +msgstr "Foto del perfil 64px" -#: ../../include/features.php:98 -msgid "Ability to dislike posts/comments" -msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios" +#: ../../Zotlabs/Module/Id.php:26 +msgid "Profile Photo 80px" +msgstr "Foto del perfil 80px" -#: ../../include/features.php:99 -msgid "Star Posts" -msgstr "Entradas destacadas" +#: ../../Zotlabs/Module/Id.php:27 +msgid "Profile Photo 128px" +msgstr "Foto del perfil 128px" -#: ../../include/features.php:99 -msgid "Ability to mark special posts with a star indicator" -msgstr "Capacidad de marcar entradas destacadas con un indicador de estrella" +#: ../../Zotlabs/Module/Id.php:28 +msgid "Timezone" +msgstr "Huso horario" -#: ../../include/features.php:100 -msgid "Tag Cloud" -msgstr "Nube de etiquetas" +#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:734 +msgid "Homepage URL" +msgstr "Dirección de la página personal" -#: ../../include/features.php:100 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Proveer nube de etiquetas personal en su página de canal" +#: ../../Zotlabs/Module/Id.php:30 ../../include/apps.php:153 +msgid "Language" +msgstr "Idioma" -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." -msgstr "El canal está bloqueado en este sitio." +#: ../../Zotlabs/Module/Id.php:31 +msgid "Birth Year" +msgstr "Año de nacimiento" -#: ../../include/follow.php:33 -msgid "Channel location missing." -msgstr "Falta la dirección del canal." +#: ../../Zotlabs/Module/Id.php:32 +msgid "Birth Month" +msgstr "Mes de nacimiento" -#: ../../include/follow.php:82 -msgid "Response from remote channel was incomplete." -msgstr "Respuesta incompleta del canal." +#: ../../Zotlabs/Module/Id.php:33 +msgid "Birth Day" +msgstr "Día de nacimiento" -#: ../../include/follow.php:99 -msgid "Channel was deleted and no longer exists." -msgstr "El canal ha sido eliminado y ya no existe." +#: ../../Zotlabs/Module/Id.php:34 +msgid "Birthdate" +msgstr "Fecha de nacimiento" -#: ../../include/follow.php:155 ../../include/follow.php:191 -msgid "Protocol disabled." -msgstr "Protocolo deshabilitado." +#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:453 +msgid "Gender" +msgstr "Género" -#: ../../include/follow.php:179 -msgid "Channel discovery failed." -msgstr "El intento de acceder al canal ha fallado." +#: ../../Zotlabs/Module/Id.php:108 ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +msgid "Male" +msgstr "Hombre" -#: ../../include/follow.php:217 -msgid "Cannot connect to yourself." -msgstr "No puede conectarse consigo mismo." +#: ../../Zotlabs/Module/Id.php:110 ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +msgid "Female" +msgstr "Mujer" -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente." +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:193 +msgid "webpage" +msgstr "página web" -#: ../../include/group.php:248 -msgid "Add new connections to this privacy group" -msgstr "Añadir conexiones nuevas a este grupo de canales" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:199 +msgid "block" +msgstr "bloque" -#: ../../include/group.php:267 ../../mod/admin.php:998 -msgid "All Channels" -msgstr "Todos los canales" +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:196 +msgid "layout" +msgstr "plantilla" -#: ../../include/group.php:289 -msgid "edit" -msgstr "editar" +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:202 +msgid "menu" +msgstr "menú" -#: ../../include/group.php:312 -msgid "Edit group" -msgstr "Editar grupo" +#: ../../Zotlabs/Module/Impel.php:196 +#, php-format +msgid "%s element installed" +msgstr "%s elemento instalado" -#: ../../include/group.php:313 -msgid "Add privacy group" -msgstr "Añadir un grupo de canales" +#: ../../Zotlabs/Module/Impel.php:199 +#, php-format +msgid "%s element installation failed" +msgstr "Elemento con instalación fallida: %s" -#: ../../include/group.php:314 -msgid "Channels not in any privacy group" -msgstr "Sin canales en ningún grupo" +#: ../../Zotlabs/Module/Import.php:32 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Su paquete de servicios solo permite %d canales." -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" -msgstr "añadir" +#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "No hay nada para importar." -#: ../../include/zot.php:680 -msgid "Invalid data packet" -msgstr "Paquete de datos no válido" +#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" +msgstr "No se han podido descargar datos de su antiguo servidor" -#: ../../include/zot.php:696 -msgid "Unable to verify channel signature" -msgstr "No ha sido posible de verificar la firma del canal" +#: ../../Zotlabs/Module/Import.php:100 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "El fichero importado está vacío." -#: ../../include/zot.php:2332 +#: ../../Zotlabs/Module/Import.php:122 +#: ../../Zotlabs/Module/Import_items.php:86 #, php-format -msgid "Unable to verify site signature for %s" -msgstr "No ha sido posible de verificar la firma del sitio para %s" +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Atención: Las versiones de la base de datos difieren en %1$d actualizaciones." -#: ../../include/zot.php:3670 -msgid "invalid target signature" -msgstr "La firma recibida no es válida" +#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:80 +msgid "Cloned channel not found. Import failed." +msgstr "No se ha podido importar el canal porque el canal clonado no se ha encontrado." -#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1599 -msgid "Logout" -msgstr "Finalizar sesión" +#: ../../Zotlabs/Module/Import.php:160 +msgid "No channel. Import failed." +msgstr "No hay canal. La importación ha fallado" -#: ../../include/nav.php:82 ../../include/nav.php:113 -msgid "End this session" -msgstr "Finalizar esta sesión" +#: ../../Zotlabs/Module/Import.php:506 +#: ../../include/Import/import_diaspora.php:143 +msgid "Import completed." +msgstr "Importación completada." -#: ../../include/nav.php:85 ../../include/nav.php:144 -msgid "Home" -msgstr "Inicio" +#: ../../Zotlabs/Module/Import.php:528 +msgid "You must be logged in to use this feature." +msgstr "Debe estar registrado para poder usar esta funcionalidad." -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Sus publicaciones y conversaciones" +#: ../../Zotlabs/Module/Import.php:533 +msgid "Import Channel" +msgstr "Importar canal" -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Su página del perfil" +#: ../../Zotlabs/Module/Import.php:534 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "Emplee este formulario para importar un canal desde un servidor/hub diferente. Puede recuperar el canal desde el antiguo servidor/hub a través de la red o proporcionando un fichero de exportación." -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Administrar/editar perfiles" +#: ../../Zotlabs/Module/Import.php:535 +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "File to Upload" +msgstr "Fichero para subir" -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Editar su perfil" +#: ../../Zotlabs/Module/Import.php:536 +msgid "Or provide the old server/hub details" +msgstr "O proporcione los detalles de su antiguo servidor/hub" -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Sus fotos" +#: ../../Zotlabs/Module/Import.php:537 +msgid "Your old identity address (xyz@example.com)" +msgstr "Su identidad en el antiguo servidor (canal@ejemplo.com)" -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Sus ficheros" +#: ../../Zotlabs/Module/Import.php:538 +msgid "Your old login email address" +msgstr "Su antigua dirección de correo electrónico" -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Sus salas de chat" +#: ../../Zotlabs/Module/Import.php:539 +msgid "Your old login password" +msgstr "Su antigua contraseña" -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Sus marcadores" +#: ../../Zotlabs/Module/Import.php:540 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Para cualquiera de las opciones, elija si hacer de este servidor su nueva dirección primaria, o si su antigua dirección debe continuar con este papel. Usted podrá publicar desde cualquier ubicación, pero sólo una puede estar marcada como la ubicación principal para los ficheros, fotos y otras imágenes o vídeos." -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Sus páginas web" +#: ../../Zotlabs/Module/Import.php:541 +msgid "Make this hub my primary location" +msgstr "Convertir este servidor en mi ubicación primaria" -#: ../../include/nav.php:110 -msgid "Sign in" -msgstr "Acceder" +#: ../../Zotlabs/Module/Import.php:542 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible" -#: ../../include/nav.php:127 -#, php-format -msgid "%s - click to logout" -msgstr "%s - pulsar para finalizar sesión" +#: ../../Zotlabs/Module/Import.php:543 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine." -#: ../../include/nav.php:130 -msgid "Remote authentication" -msgstr "Acceder desde su servidor" +#: ../../Zotlabs/Module/Import_items.php:102 +msgid "Import completed" +msgstr "Importación completada" -#: ../../include/nav.php:130 -msgid "Click to authenticate to your home hub" -msgstr "Pulsar para identificarse en su servidor de inicio" +#: ../../Zotlabs/Module/Import_items.php:117 +msgid "Import Items" +msgstr "Importar elementos" -#: ../../include/nav.php:144 -msgid "Home Page" -msgstr "Página de inicio" +#: ../../Zotlabs/Module/Import_items.php:118 +msgid "" +"Use this form to import existing posts and content from an export file." +msgstr "Utilice este formulario para importar entradas existentes y contenido desde un archivo de exportación." -#: ../../include/nav.php:148 ../../mod/register.php:258 ../../boot.php:1582 -msgid "Register" -msgstr "Registrarse" +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Se ha superado el límite máximo de invitaciones." -#: ../../include/nav.php:148 -msgid "Create an account" -msgstr "Crear una cuenta" +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : No es una dirección de correo electrónico válida. " -#: ../../include/nav.php:155 -msgid "Help and documentation" -msgstr "Ayuda y documentación" +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Únase a nosotros en $Projectname" -#: ../../include/nav.php:159 ../../include/widgets.php:102 -#: ../../mod/apps.php:36 -msgid "Apps" -msgstr "Aplicaciones" +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio." -#: ../../include/nav.php:159 -msgid "Applications, utilities, links, games" -msgstr "Aplicaciones, utilidades, enlaces, juegos" +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s : Falló el envío del mensaje." -#: ../../include/nav.php:161 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido" +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d mensajes enviados." +msgstr[1] "%d mensajes enviados." -#: ../../include/nav.php:164 -msgid "Channel Directory" -msgstr "Directorio de canales" +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "No tiene más invitaciones disponibles" -#: ../../include/nav.php:176 -msgid "Your grid" -msgstr "Mi red" +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Enviar invitaciones" -#: ../../include/nav.php:177 -msgid "Mark all grid notifications seen" -msgstr "Marcar todas las notificaciones de la red como vistas" +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Introduzca las direcciones de correo electrónico, una por línea:" -#: ../../include/nav.php:179 -msgid "Channel home" -msgstr "Mi canal" +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:250 +msgid "Your message:" +msgstr "Su mensaje:" -#: ../../include/nav.php:180 -msgid "Mark all channel notifications seen" -msgstr "Marcar todas las notificaciones del canal como leídas" +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Por favor, únase a mi comunidad en $Projectname." -#: ../../include/nav.php:183 ../../include/text.php:834 -#: ../../mod/connections.php:298 -msgid "Connections" -msgstr "Conexiones" +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Tendrá que suministrar este código de invitación:" -#: ../../include/nav.php:186 -msgid "Notices" -msgstr "Avisos" +#: ../../Zotlabs/Module/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Regístrese en cualquier sitio de $Projectname (están todos interconectados)" -#: ../../include/nav.php:186 -msgid "Notifications" -msgstr "Notificaciones" +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Introduzca mi dirección $Projectname en la caja de búsqueda del sitio." -#: ../../include/nav.php:187 -msgid "See all notifications" -msgstr "Ver todas las notificaciones" +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" +msgstr "o visitar" -#: ../../include/nav.php:188 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Marcar todas las notificaciones de sistema como leídas" +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Pulse [conectar]" -#: ../../include/nav.php:190 -msgid "Private mail" -msgstr "Correo privado" +#: ../../Zotlabs/Module/Item.php:178 +msgid "Unable to locate original post." +msgstr "No ha sido posible encontrar la entrada original." -#: ../../include/nav.php:191 -msgid "See all private messages" -msgstr "Ver todas los mensajes privados" +#: ../../Zotlabs/Module/Item.php:427 +msgid "Empty post discarded." +msgstr "La entrada vacía ha sido desechada." -#: ../../include/nav.php:192 -msgid "Mark all private messages seen" -msgstr "Marcar todos los mensajes privados como leídos" +#: ../../Zotlabs/Module/Item.php:467 +msgid "Executable content type not permitted to this channel." +msgstr "Contenido de tipo ejecutable no permitido en este canal." -#: ../../include/nav.php:193 ../../include/widgets.php:609 -msgid "Inbox" -msgstr "Bandeja de entrada" +#: ../../Zotlabs/Module/Item.php:847 +msgid "Duplicate post suppressed." +msgstr "Se ha suprimido la entrada duplicada." -#: ../../include/nav.php:194 ../../include/widgets.php:614 -msgid "Outbox" -msgstr "Bandeja de salida" +#: ../../Zotlabs/Module/Item.php:977 +msgid "System error. Post not saved." +msgstr "Error del sistema. La entrada no se ha podido salvar." -#: ../../include/nav.php:195 ../../include/widgets.php:619 -msgid "New Message" -msgstr "Nuevo mensaje" +#: ../../Zotlabs/Module/Item.php:1241 +msgid "Unable to obtain post information from database." +msgstr "No ha sido posible obtener información de la entrada en la base de datos." -#: ../../include/nav.php:198 -msgid "Event Calendar" -msgstr "Calendario de eventos" +#: ../../Zotlabs/Module/Item.php:1248 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Ha alcanzado su límite de %1$.0f entradas en la página principal." -#: ../../include/nav.php:199 -msgid "See all events" -msgstr "Ver todos los eventos" +#: ../../Zotlabs/Module/Item.php:1255 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Ha alcanzado su límite de %1$.0f páginas web." -#: ../../include/nav.php:200 -msgid "Mark all events seen" -msgstr "Marcar todos los eventos como leidos" +#: ../../Zotlabs/Module/Layouts.php:179 ../../include/text.php:2280 +msgid "Layouts" +msgstr "Plantillas" -#: ../../include/nav.php:203 -msgid "Manage Your Channels" -msgstr "Gestionar sus canales" +#: ../../Zotlabs/Module/Layouts.php:181 +msgid "Comanche page description language help" +msgstr "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche" -#: ../../include/nav.php:205 -msgid "Account/Channel Settings" -msgstr "Ajustes de cuenta/canales" +#: ../../Zotlabs/Module/Layouts.php:185 +msgid "Layout Description" +msgstr "Descripción de la plantilla" -#: ../../include/nav.php:213 ../../include/widgets.php:1368 -msgid "Admin" -msgstr "Administrador" +#: ../../Zotlabs/Module/Layouts.php:190 +msgid "Download PDL file" +msgstr "Descargar el fichero PDL" -#: ../../include/nav.php:213 -msgid "Site Setup and Configuration" -msgstr "Ajustes y configuración del sitio" +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" +msgstr "Me gusta/No me gusta" -#: ../../include/nav.php:249 -msgid "@name, #tag, ?doc, content" -msgstr "@nombre, #etiqueta, ?ayuda, contenido" +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." +msgstr "Esta acción está restringida solo para miembros." -#: ../../include/nav.php:250 -msgid "Please wait..." -msgstr "Espere por favor…" +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Por favor, identifíquese con su $Projectname ID o rregístrese como un nuevo $Projectname member para continuar." -#: ../../include/widgets.php:103 -msgid "System" -msgstr "Sistema" +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." +msgstr "Solicitud incorrecta." -#: ../../include/widgets.php:106 -msgid "Create Personal App" -msgstr "Crear una aplicación personal" +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" +msgstr "el canal" -#: ../../include/widgets.php:107 -msgid "Edit Personal App" -msgstr "Editar una aplicación personal" +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" +msgstr "elemento" -#: ../../include/widgets.php:149 ../../mod/suggest.php:54 -msgid "Ignore/Hide" -msgstr "Ignorar/Ocultar" +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." +msgstr "Canal no disponible." -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Sugerencias" +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." +msgstr "Acción anterior revocada." -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Ver más..." +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 +#: ../../include/text.php:1967 +msgid "photo" +msgstr "foto" -#: ../../include/widgets.php:175 +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/conversation.php:148 ../../include/text.php:1973 +msgid "status" +msgstr "el mensaje de estado" + +#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164 #, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Tiene %1$.0f de %2$.0f conexiones permitidas." +msgid "%1$s likes %2$s's %3$s" +msgstr "A %1$s le gusta %3$s de %2$s" -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Añadir nueva conexión" +#: ../../Zotlabs/Module/Like.php:422 ../../include/conversation.php:167 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "A %1$s no le gusta %3$s de %2$s" -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Dirección del canal" +#: ../../Zotlabs/Module/Like.php:424 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "%3$s de %2$s: %1$s está de acuerdo" -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen" +#: ../../Zotlabs/Module/Like.php:426 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "%3$s de %2$s: %1$s no está de acuerdo" -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Notas" +#: ../../Zotlabs/Module/Like.php:428 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "%3$s de %2$s: %1$s se abstiene" -#: ../../include/widgets.php:201 ../../include/text.php:905 -#: ../../include/text.php:917 ../../mod/admin.php:1687 -#: ../../mod/admin.php:1707 ../../mod/rbmark.php:28 ../../mod/rbmark.php:100 -#: ../../mod/filer.php:49 -msgid "Save" -msgstr "Guardar" +#: ../../Zotlabs/Module/Like.php:430 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%3$s de %2$s: %1$s participa" -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Eliminar término" +#: ../../Zotlabs/Module/Like.php:432 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%3$s de %2$s: %1$s no participa" -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Hemeroteca" +#: ../../Zotlabs/Module/Like.php:434 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%3$s de %2$s: %1$s quizá participe" -#: ../../include/widgets.php:444 ../../mod/connedit.php:589 -msgid "Me" -msgstr "Yo" +#: ../../Zotlabs/Module/Like.php:537 +msgid "Action completed." +msgstr "Acción completada." -#: ../../include/widgets.php:445 ../../mod/connedit.php:590 -msgid "Family" -msgstr "Familia" +#: ../../Zotlabs/Module/Like.php:538 +msgid "Thank you." +msgstr "Gracias." -#: ../../include/widgets.php:447 ../../mod/connedit.php:592 -msgid "Acquaintances" -msgstr "Conocidos/as" +#: ../../Zotlabs/Module/Lockview.php:61 +msgid "Remote privacy information not available." +msgstr "La información privada remota no está disponible." -#: ../../include/widgets.php:448 ../../mod/connections.php:88 -#: ../../mod/connections.php:103 ../../mod/connedit.php:593 -msgid "All" -msgstr "Todos/as" +#: ../../Zotlabs/Module/Lockview.php:82 +msgid "Visible to:" +msgstr "Visible para:" -#: ../../include/widgets.php:467 -msgid "Refresh" -msgstr "Recargar" +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Dirección no encontrada." -#: ../../include/widgets.php:507 -msgid "Account settings" -msgstr "Configuración de la cuenta" +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Ha fallado la búsqueda de la dirección." -#: ../../include/widgets.php:513 -msgid "Channel settings" -msgstr "Configuración del canal" +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary" +" location." +msgstr "Por favor, seleccione una copia de su canal (un clon) para convertirlo en primario antes de eliminar su canal principal." -#: ../../include/widgets.php:522 -msgid "Additional features" -msgstr "Funcionalidades" +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Sincronización de ubicaciones" -#: ../../include/widgets.php:529 -msgid "Feature/Addon settings" -msgstr "Complementos" +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "No encontrada ninguna dirección." -#: ../../include/widgets.php:535 -msgid "Display settings" -msgstr "Ajustes de visualización" +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Gestionar las direcciones del canal" -#: ../../include/widgets.php:542 -msgid "Manage locations" -msgstr "Gestión de ubicaciones (clones) del canal" +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primario" -#: ../../include/widgets.php:551 -msgid "Export channel" -msgstr "Exportar canal" +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "Eliminar" -#: ../../include/widgets.php:558 -msgid "Connected apps" -msgstr "Aplicaciones conectadas" +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Sincronizar ahora" -#: ../../include/widgets.php:565 ../../mod/connedit.php:701 -msgid "Connection Default Permissions" -msgstr "Permisos predeterminados de conexión" +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Por favor, espere algunos minutos entre operaciones consecutivas." -#: ../../include/widgets.php:573 -msgid "Premium Channel Settings" -msgstr "Configuración del canal premium" +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Cuando sea posible, elimine una ubicación iniciando sesión en el sitio web o \"hub\" y borrando su canal." -#: ../../include/widgets.php:602 -msgid "Private Mail Menu" -msgstr "Menú de correo privado" +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Utilice este formulario para eliminar la dirección si el \"hub\" no está funcionando desde hace tiempo." -#: ../../include/widgets.php:604 -msgid "Combined View" -msgstr "Vista combinada" +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "No se ha encontrado una cuenta válida." -#: ../../include/widgets.php:636 ../../include/widgets.php:648 -msgid "Conversations" -msgstr "Conversaciones" +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico." -#: ../../include/widgets.php:640 -msgid "Received Messages" -msgstr "Mensajes recibidos" +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Usuario del sitio (%s)" -#: ../../include/widgets.php:644 -msgid "Sent Messages" -msgstr "Enviar mensajes" +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Se ha solicitado restablecer la contraseña en %s" -#: ../../include/widgets.php:658 -msgid "No messages." -msgstr "Sin mensajes." +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado." -#: ../../include/widgets.php:676 -msgid "Delete conversation" -msgstr "Eliminar conversación" +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1610 +msgid "Password Reset" +msgstr "Restablecer la contraseña" -#: ../../include/widgets.php:702 -msgid "Events Menu" -msgstr "Menú de eventos" +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "Su contraseña ha sido restablecida según lo solicitó." -#: ../../include/widgets.php:703 -msgid "Day View" -msgstr "Eventos del día" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "Su nueva contraseña es" -#: ../../include/widgets.php:704 -msgid "Week View" -msgstr "Eventos de la semana" +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Guarde o copie su nueva contraseña - y después" -#: ../../include/widgets.php:705 -msgid "Month View" -msgstr "Eventos del mes" +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "pulse aquí para conectarse" -#: ../../include/widgets.php:706 ../../mod/cal.php:333 -#: ../../mod/events.php:661 -msgid "Export" -msgstr "Exportar" +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión." -#: ../../include/widgets.php:707 ../../mod/cal.php:336 -#: ../../mod/events.php:664 -msgid "Import" -msgstr "Importar" +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "Su contraseña en %s ha sido cambiada" -#: ../../include/widgets.php:717 -msgid "Events Tools" -msgstr "Gestión de eventos" +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "¿Ha olvidado su contraseña?" -#: ../../include/widgets.php:718 -msgid "Export Calendar" -msgstr "Exportar el calendario" +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones." -#: ../../include/widgets.php:719 -msgid "Import Calendar" -msgstr "Importar un calendario" +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "Dirección de correo electrónico" -#: ../../include/widgets.php:798 -msgid "Overview" -msgstr "Resumen" +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Reiniciar" -#: ../../include/widgets.php:805 -msgid "Chat Members" -msgstr "Miembros del chat" +#: ../../Zotlabs/Module/Magic.php:73 +msgid "Hub not found." +msgstr "Servidor no encontrado" -#: ../../include/widgets.php:828 -msgid "Bookmarked Chatrooms" -msgstr "Salas de chat preferidas" +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Imposible asociar a un destinatario." -#: ../../include/widgets.php:851 -msgid "Suggested Chatrooms" -msgstr "Salas de chat sugeridas" +#: ../../Zotlabs/Module/Mail.php:46 +msgid "Unable to communicate with requested channel." +msgstr "Imposible comunicar con el canal solicitado." -#: ../../include/widgets.php:996 ../../include/widgets.php:1108 -msgid "photo/image" -msgstr "foto/imagen" +#: ../../Zotlabs/Module/Mail.php:53 +msgid "Cannot verify requested channel." +msgstr "No se puede verificar el canal solicitado." -#: ../../include/widgets.php:1051 -msgid "Click to show more" -msgstr "Hacer clic para ver más" +#: ../../Zotlabs/Module/Mail.php:79 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló." -#: ../../include/widgets.php:1202 -msgid "Rating Tools" -msgstr "Valoraciones" +#: ../../Zotlabs/Module/Mail.php:144 +msgid "Messages" +msgstr "Mensajes" -#: ../../include/widgets.php:1206 ../../include/widgets.php:1208 -msgid "Rate Me" -msgstr "Valorar este canal" +#: ../../Zotlabs/Module/Mail.php:179 +msgid "Message recalled." +msgstr "Mensaje revocado." -#: ../../include/widgets.php:1211 -msgid "View Ratings" -msgstr "Mostrar las valoraciones" +#: ../../Zotlabs/Module/Mail.php:192 +msgid "Conversation removed." +msgstr "Conversación eliminada." -#: ../../include/widgets.php:1222 ../../mod/pubsites.php:18 -msgid "Public Hubs" -msgstr "Servidores públicos" +#: ../../Zotlabs/Module/Mail.php:235 +msgid "Requested channel is not in this network" +msgstr "El canal solicitado no existe en esta red" -#: ../../include/widgets.php:1268 -msgid "Forums" -msgstr "Foros" +#: ../../Zotlabs/Module/Mail.php:243 +msgid "Send Private Message" +msgstr "Enviar un mensaje privado" -#: ../../include/widgets.php:1297 -msgid "Tasks" -msgstr "Tareas" +#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:374 +msgid "To:" +msgstr "Para:" -#: ../../include/widgets.php:1306 -msgid "Documentation" -msgstr "Documentación" +#: ../../Zotlabs/Module/Mail.php:247 ../../Zotlabs/Module/Mail.php:376 +msgid "Subject:" +msgstr "Asunto:" -#: ../../include/widgets.php:1308 -msgid "Project/Site Information" -msgstr "Información sobre el proyecto o sitio" +#: ../../Zotlabs/Module/Mail.php:254 +msgid "Send" +msgstr "Enviar" -#: ../../include/widgets.php:1309 -msgid "For Members" -msgstr "Para los miembros" +#: ../../Zotlabs/Module/Mail.php:346 +msgid "Delete message" +msgstr "Borrar mensaje" -#: ../../include/widgets.php:1310 -msgid "For Administrators" -msgstr "Para los administradores" +#: ../../Zotlabs/Module/Mail.php:347 +msgid "Delivery report" +msgstr "Informe de transmisión" -#: ../../include/widgets.php:1311 -msgid "For Developers" -msgstr "Para los desarrolladores" +#: ../../Zotlabs/Module/Mail.php:348 +msgid "Recall message" +msgstr "Revocar el mensaje" -#: ../../include/widgets.php:1334 ../../mod/admin.php:456 -msgid "Site" -msgstr "Sitio" +#: ../../Zotlabs/Module/Mail.php:350 +msgid "Message has been recalled." +msgstr "El mensaje ha sido revocado." -#: ../../include/widgets.php:1335 -msgid "Accounts" -msgstr "Cuentas" +#: ../../Zotlabs/Module/Mail.php:367 +msgid "Delete Conversation" +msgstr "Eliminar conversación" -#: ../../include/widgets.php:1335 ../../include/widgets.php:1373 -msgid "Member registrations waiting for confirmation" -msgstr "Inscripciones de nuevos miembros pendientes de aprobación" +#: ../../Zotlabs/Module/Mail.php:369 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Comunicación segura no disponible. Pero puede responder desde la página del perfil del remitente." -#: ../../include/widgets.php:1336 ../../mod/admin.php:1149 -msgid "Channels" -msgstr "Canales" +#: ../../Zotlabs/Module/Mail.php:373 +msgid "Send Reply" +msgstr "Responder" -#: ../../include/widgets.php:1337 ../../mod/admin.php:710 -msgid "Security" -msgstr "Seguridad" +#: ../../Zotlabs/Module/Mail.php:378 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Su mensaje para %s (%s):" -#: ../../include/widgets.php:1339 ../../mod/admin.php:1264 -#: ../../mod/admin.php:1325 -msgid "Plugins" -msgstr "Extensiones" +#: ../../Zotlabs/Module/Manage.php:134 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Ha creado %1$.0f de %2$.0f canales permitidos." -#: ../../include/widgets.php:1340 ../../mod/admin.php:1486 -#: ../../mod/admin.php:1520 -msgid "Themes" -msgstr "Temas" +#: ../../Zotlabs/Module/Manage.php:141 +msgid "Create a new channel" +msgstr "Crear un nuevo canal" -#: ../../include/widgets.php:1341 -msgid "Inspect queue" -msgstr "Examinar la cola" +#: ../../Zotlabs/Module/Manage.php:162 ../../include/apps.php:132 +#: ../../include/nav.php:209 +msgid "Channel Manager" +msgstr "Administración de canales" -#: ../../include/widgets.php:1342 ../../mod/admin.php:1760 -msgid "Profile Fields" -msgstr "Campos del perfil" +#: ../../Zotlabs/Module/Manage.php:163 +msgid "Current Channel" +msgstr "Canal actual" -#: ../../include/widgets.php:1343 -msgid "DB updates" -msgstr "Actualizaciones de la base de datos" +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Switch to one of your channels by selecting it." +msgstr "Cambiar a uno de sus canales seleccionándolo." -#: ../../include/widgets.php:1361 ../../include/widgets.php:1371 -#: ../../mod/admin.php:1605 -msgid "Logs" -msgstr "Informes" +#: ../../Zotlabs/Module/Manage.php:166 +msgid "Default Channel" +msgstr "Canal principal" -#: ../../include/widgets.php:1369 -msgid "Plugin Features" -msgstr "Extensiones" +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Make Default" +msgstr "Convertir en predeterminado" -#: ../../include/widgets.php:1451 ../../mod/photos.php:787 -#: ../../mod/photos.php:1328 -msgid "View Photo" -msgstr "Ver foto" +#: ../../Zotlabs/Module/Manage.php:170 +#, php-format +msgid "%d new messages" +msgstr "%d mensajes nuevos" -#: ../../include/widgets.php:1468 ../../mod/photos.php:818 -msgid "Edit Album" -msgstr "Editar álbum" +#: ../../Zotlabs/Module/Manage.php:171 +#, php-format +msgid "%d new introductions" +msgstr "%d nuevas isolicitudes de conexión" -#: ../../include/taxonomy.php:240 ../../include/taxonomy.php:261 -msgid "Tags" -msgstr "Etiquetas" +#: ../../Zotlabs/Module/Manage.php:173 +msgid "Delegated Channel" +msgstr "Canal delegado" -#: ../../include/taxonomy.php:305 -msgid "Keywords" -msgstr "Palabras clave" +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Perfil compatible" -#: ../../include/taxonomy.php:326 -msgid "have" -msgstr "tener" +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal." -#: ../../include/taxonomy.php:326 -msgid "has" -msgstr "tiene" +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "está interesado en:" -#: ../../include/taxonomy.php:327 -msgid "want" -msgstr "quiero" +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "No se han encontrado perfiles compatibles" -#: ../../include/taxonomy.php:327 -msgid "wants" -msgstr "quiere" +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "No se puede actualizar el menú." -#: ../../include/taxonomy.php:328 -msgid "likes" -msgstr "gusta de" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "No se puede crear el menú." -#: ../../include/taxonomy.php:329 -msgid "dislikes" -msgstr "no gusta de" +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Nombre del menú" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "¿Borrar este elemento?" +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Nombre único (no será visible en la página web) - requerido" -#: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] mostrar menos" +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Título del menú" -#: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] expandir" +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Visible en la página web - no ponga nada si no desea un título" -#: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] contraer" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Permitir marcadores" -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Contraseña demasiado corta" +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "El menú se puede usar para guardar marcadores" -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Las contraseñas no coinciden" +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Enviar y proceder" -#: ../../include/js_strings.php:13 ../../mod/photos.php:41 -#: ../../mod/cal.php:37 -msgid "everybody" -msgstr "cualquiera" +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2279 +msgid "Menus" +msgstr "Menús" -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Contraseña secreta" +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Marcadores permitidos" -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Pista de contraseña" +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Borrar este menú" -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Aviso: los permisos han cambiado pero aún no han sido enviados." +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Editar los contenidos del menú" -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "cerrar todo" +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Modificar este menú" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Nada nuevo por aquí" +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "El menú no puede ser eliminado." -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Valorar este canal (esto es público)" +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menú no encontrado" -#: ../../include/js_strings.php:20 ../../mod/connedit.php:712 -#: ../../mod/rate.php:157 -msgid "Rating" -msgstr "Valoración" +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Modificar el menú" -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "Describir (opcional)" +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Añadir o quitar entradas en este menú" -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "Por favor, introduzca una dirección de enlace" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Nombre del menú" -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "Cambios no guardados. ¿Está seguro de que desea abandonar la página?" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Debe ser único, solo será visible para usted" -#: ../../include/js_strings.php:25 ../../mod/profiles.php:472 -#: ../../mod/profiles.php:697 ../../mod/pubsites.php:36 -#: ../../mod/events.php:459 ../../mod/locs.php:113 -msgid "Location" -msgstr "Ubicación" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Título del menú" -#: ../../include/js_strings.php:27 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "El título del menú tal como será visto por los demás" -#: ../../include/js_strings.php:28 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Permitir marcadores" -#: ../../include/js_strings.php:29 -msgid "ago" -msgstr "antes" +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "No encontrado." -#: ../../include/js_strings.php:30 -msgid "from now" -msgstr "desde ahora" +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Imposible crear el elemento." -#: ../../include/js_strings.php:31 -msgid "less than a minute" -msgstr "menos de un minuto" +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "No es posible actualizar el elemento del menú." -#: ../../include/js_strings.php:32 -msgid "about a minute" -msgstr "alrededor de un minuto" +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "No es posible añadir el elemento al menú" -#: ../../include/js_strings.php:33 -#, php-format -msgid "%d minutes" -msgstr "%d minutos" +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Permisos del elemento del menú" -#: ../../include/js_strings.php:34 -msgid "about an hour" -msgstr "alrededor de una hora" +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 +#: ../../Zotlabs/Module/Settings.php:1066 +msgid "(click to open/close)" +msgstr "(pulsar para abrir o cerrar)" -#: ../../include/js_strings.php:35 -#, php-format -msgid "about %d hours" -msgstr "alrededor de %d horas" +#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 +msgid "Link Name" +msgstr "Nombre del enlace" -#: ../../include/js_strings.php:36 -msgid "a day" -msgstr "un día" +#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Destino del enlace o submenú" -#: ../../include/js_strings.php:37 -#, php-format -msgid "%d days" -msgstr "%d días" +#: ../../Zotlabs/Module/Mitem.php:157 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Introducir la dirección del enlace o seleccionar el nombre de un submenú" -#: ../../include/js_strings.php:38 -msgid "about a month" -msgstr "alrededor de un mes" +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 +msgid "Use magic-auth if available" +msgstr "Usar la autenticación mágica si está disponible" -#: ../../include/js_strings.php:39 -#, php-format -msgid "%d months" -msgstr "%d meses" +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 +msgid "Open link in new window" +msgstr "Abrir el enlace en una nueva ventana" -#: ../../include/js_strings.php:40 -msgid "about a year" -msgstr "alrededor de un año" +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Order in list" +msgstr "Orden en la lista" -#: ../../include/js_strings.php:41 -#, php-format -msgid "%d years" -msgstr "%d años" - -#: ../../include/js_strings.php:42 -msgid " " -msgstr " " - -#: ../../include/js_strings.php:43 -msgid "timeago.numbers" -msgstr "timeago.numbers" +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Los números más altos irán al final de la lista" -#: ../../include/js_strings.php:45 ../../include/text.php:1210 -msgid "January" -msgstr "enero" +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Submit and finish" +msgstr "Enviar y terminar" -#: ../../include/js_strings.php:46 ../../include/text.php:1210 -msgid "February" -msgstr "febrero" +#: ../../Zotlabs/Module/Mitem.php:162 +msgid "Submit and continue" +msgstr "Enviar y continuar" -#: ../../include/js_strings.php:47 ../../include/text.php:1210 -msgid "March" -msgstr "marzo" +#: ../../Zotlabs/Module/Mitem.php:170 +msgid "Menu:" +msgstr "Menú:" -#: ../../include/js_strings.php:48 ../../include/text.php:1210 -msgid "April" -msgstr "abril" +#: ../../Zotlabs/Module/Mitem.php:173 +msgid "Link Target" +msgstr "Destino del enlace" -#: ../../include/js_strings.php:49 -msgctxt "long" -msgid "May" -msgstr "mayo" +#: ../../Zotlabs/Module/Mitem.php:176 +msgid "Edit menu" +msgstr "Editar menú" -#: ../../include/js_strings.php:50 ../../include/text.php:1210 -msgid "June" -msgstr "junio" +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Edit element" +msgstr "Editar el elemento" -#: ../../include/js_strings.php:51 ../../include/text.php:1210 -msgid "July" -msgstr "julio" +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Drop element" +msgstr "Eliminar el elemento" -#: ../../include/js_strings.php:52 ../../include/text.php:1210 -msgid "August" -msgstr "agosto" +#: ../../Zotlabs/Module/Mitem.php:181 +msgid "New element" +msgstr "Nuevo elemento" -#: ../../include/js_strings.php:53 ../../include/text.php:1210 -msgid "September" -msgstr "septiembre" +#: ../../Zotlabs/Module/Mitem.php:182 +msgid "Edit this menu container" +msgstr "Modificar el contenedor del menú" -#: ../../include/js_strings.php:54 ../../include/text.php:1210 -msgid "October" -msgstr "octubre" +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Add menu element" +msgstr "Añadir un elemento al menú" -#: ../../include/js_strings.php:55 ../../include/text.php:1210 -msgid "November" -msgstr "noviembre" +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Delete this menu item" +msgstr "Eliminar este elemento del menú" -#: ../../include/js_strings.php:56 ../../include/text.php:1210 -msgid "December" -msgstr "diciembre" +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "Edit this menu item" +msgstr "Modificar este elemento del menú" -#: ../../include/js_strings.php:57 -msgid "Jan" -msgstr "ene" +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Menu item not found." +msgstr "Este elemento del menú no se ha encontrado" -#: ../../include/js_strings.php:58 -msgid "Feb" -msgstr "feb" +#: ../../Zotlabs/Module/Mitem.php:215 +msgid "Menu item deleted." +msgstr "Este elemento del menú ha sido borrado" -#: ../../include/js_strings.php:59 -msgid "Mar" -msgstr "mar" +#: ../../Zotlabs/Module/Mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "Este elemento del menú no puede ser borrado." -#: ../../include/js_strings.php:60 -msgid "Apr" -msgstr "abr" +#: ../../Zotlabs/Module/Mitem.php:224 +msgid "Edit Menu Element" +msgstr "Editar elemento del menú" -#: ../../include/js_strings.php:61 -msgctxt "short" -msgid "May" -msgstr "may" +#: ../../Zotlabs/Module/Mitem.php:230 +msgid "Link text" +msgstr "Texto del enlace" -#: ../../include/js_strings.php:62 -msgid "Jun" -msgstr "jun" +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s está %2$s" -#: ../../include/js_strings.php:63 -msgid "Jul" -msgstr "jul" +#: ../../Zotlabs/Module/Mood.php:135 ../../include/apps.php:144 +msgid "Mood" +msgstr "Estado de ánimo" -#: ../../include/js_strings.php:64 -msgid "Aug" -msgstr "ago" +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Describir su estado de ánimo para comunicárselo a sus amigos" -#: ../../include/js_strings.php:65 -msgid "Sep" -msgstr "sep" +#: ../../Zotlabs/Module/Network.php:95 +msgid "No such group" +msgstr "No se encuentra el grupo" -#: ../../include/js_strings.php:66 -msgid "Oct" -msgstr "oct" +#: ../../Zotlabs/Module/Network.php:135 +msgid "No such channel" +msgstr "No se encuentra el canal" -#: ../../include/js_strings.php:67 -msgid "Nov" -msgstr "nov" +#: ../../Zotlabs/Module/Network.php:140 +msgid "forum" +msgstr "foro" -#: ../../include/js_strings.php:68 -msgid "Dec" -msgstr "dic" +#: ../../Zotlabs/Module/Network.php:152 +msgid "Search Results For:" +msgstr "Buscar resultados para:" -#: ../../include/js_strings.php:69 ../../include/text.php:1206 -msgid "Sunday" -msgstr "domingo" +#: ../../Zotlabs/Module/Network.php:216 +msgid "Privacy group is empty" +msgstr "El grupo de canales está vacío" -#: ../../include/js_strings.php:70 ../../include/text.php:1206 -msgid "Monday" -msgstr "lunes" +#: ../../Zotlabs/Module/Network.php:225 +msgid "Privacy group: " +msgstr "Grupo de canales: " -#: ../../include/js_strings.php:71 ../../include/text.php:1206 -msgid "Tuesday" -msgstr "martes" +#: ../../Zotlabs/Module/Network.php:251 +msgid "Invalid connection." +msgstr "Conexión no válida." -#: ../../include/js_strings.php:72 ../../include/text.php:1206 -msgid "Wednesday" -msgstr "miércoles" +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "Nombre o descripción" -#: ../../include/js_strings.php:73 ../../include/text.php:1206 -msgid "Thursday" -msgstr "jueves" +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Ejemplos: \"Juan García\", \"Luisa y sus caballos\", \"Fútbol\", \"Grupo de aviación\"" -#: ../../include/js_strings.php:74 ../../include/text.php:1206 -msgid "Friday" -msgstr "viernes" +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "Elija un alias corto" -#: ../../include/js_strings.php:75 ../../include/text.php:1206 -msgid "Saturday" -msgstr "sábado" +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s" -#: ../../include/js_strings.php:76 -msgid "Sun" -msgstr "dom" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Channel role and privacy" +msgstr "Clase de canal y privacidad" -#: ../../include/js_strings.php:77 -msgid "Mon" -msgstr "lun" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Select a channel role with your privacy requirements." +msgstr "Seleccione un tipo de canal con sus requisitos de privacidad" -#: ../../include/js_strings.php:78 -msgid "Tue" -msgstr "mar" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" +msgstr "Leer más sobre los roles" -#: ../../include/js_strings.php:79 -msgid "Wed" -msgstr "mié" +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Crear un canal" -#: ../../include/js_strings.php:80 -msgid "Thu" -msgstr "jue" +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Un canal es su identidad en esta red. Puede representar a una persona, un blog o un foro, por nombrar unos pocos ejemplos. Los canales se pueden conectar con otros canales para compartir información con una gama de permisos extremadamente detallada." -#: ../../include/js_strings.php:81 -msgid "Fri" -msgstr "vie" +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "O importar un canal existente desde otro lugar." -#: ../../include/js_strings.php:82 -msgid "Sat" -msgstr "sáb" +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Petición inválida del identificador." -#: ../../include/js_strings.php:83 -msgctxt "calendar" -msgid "today" -msgstr "hoy" +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Descartar" -#: ../../include/js_strings.php:84 -msgctxt "calendar" -msgid "month" -msgstr "mes" +#: ../../Zotlabs/Module/Notifications.php:98 +#: ../../Zotlabs/Module/Notify.php:57 +msgid "No more system notifications." +msgstr "No hay más notificaciones del sistema" -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" -msgstr "semana" +#: ../../Zotlabs/Module/Notifications.php:102 +#: ../../Zotlabs/Module/Notify.php:61 +msgid "System Notifications" +msgstr "Notificaciones del sistema" -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" -msgstr "día" +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:194 +msgid "Mark all system notifications seen" +msgstr "Marcar todas las notificaciones de sistema como leídas" -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" -msgstr "Todos los días" +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "No se puede encontrar su servidor." -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "No se ha especificado ningún destinatario." +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Enviado con éxito." -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[sin asunto]" +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "Error del protocolo OpenID. Ningún ID recibido como respuesta." -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "No ha sido posible determinar el remitente. " +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 +msgid "Login failed." +msgstr "El acceso ha fallado." -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "No se han podido verificar las publicaciones guardadas." - -#: ../../include/import.php:23 +#: ../../Zotlabs/Module/Page.php:133 msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "No se ha podido crear un canal con un identificador que ya existe en este sistema. La importación ha fallado." - -#: ../../include/import.php:70 -msgid "Channel clone failed. Import failed." -msgstr "La clonación del canal no ha salido bien. La importación ha fallado." +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -#: ../../include/import.php:80 ../../mod/import.php:146 -msgid "Cloned channel not found. Import failed." -msgstr "No se ha podido importar el canal porque el canal clonado no se ha encontrado." +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada." -#: ../../include/oembed.php:267 -msgid "Embedded content" -msgstr "Contenido incorporado" +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Editor de configuración" -#: ../../include/oembed.php:276 -msgid "Embedding disabled" -msgstr "Incrustación deshabilitada" +#: ../../Zotlabs/Module/Pconfig.php:49 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please" +" leave this page unless you are comfortable with and knowledgeable about how" +" to correctly use this feature." +msgstr "Atención: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica." -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Nueva página" +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "Plantilla actualizada." -#: ../../include/page_widgets.php:39 ../../mod/pubsites.php:42 -#: ../../mod/webpages.php:191 ../../mod/blocks.php:161 -#: ../../mod/layouts.php:189 -msgid "View" -msgstr "Ver" +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" +msgstr "Editor del Sistema de Descripción de Páginas" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:193 -msgid "Actions" -msgstr "Acciones" +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "Plantilla no encontrada" -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:194 -msgid "Page Link" -msgstr "Vínculo de la página" +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Nombre del módulo:" -#: ../../include/page_widgets.php:43 -msgid "Title" -msgstr "Título" +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Ayuda para el diseño de plantillas de página" -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:196 -#: ../../mod/blocks.php:152 ../../mod/layouts.php:182 ../../mod/menu.php:110 -msgid "Created" -msgstr "Creado" +#: ../../Zotlabs/Module/Photos.php:83 +msgid "Page owner information could not be retrieved." +msgstr "La información del propietario de la página no pudo ser recuperada." -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:197 -#: ../../mod/blocks.php:153 ../../mod/layouts.php:183 ../../mod/menu.php:111 -msgid "Edited" -msgstr "Editado" +#: ../../Zotlabs/Module/Photos.php:98 ../../Zotlabs/Module/Photos.php:742 +#: ../../Zotlabs/Module/Profile_photo.php:114 +#: ../../Zotlabs/Module/Profile_photo.php:206 +#: ../../Zotlabs/Module/Profile_photo.php:294 +#: ../../include/photo/photo_driver.php:722 +msgid "Profile Photos" +msgstr "Fotos del perfil" -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Pueden verse mi actividad y publicaciones normales" +#: ../../Zotlabs/Module/Photos.php:104 ../../Zotlabs/Module/Photos.php:148 +msgid "Album not found." +msgstr "Álbum no encontrado." -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Puede verse mi perfil de canal predeterminado." +#: ../../Zotlabs/Module/Photos.php:131 +msgid "Delete Album" +msgstr "Borrar álbum" -#: ../../include/permissions.php:28 -msgid "Can view my connections" -msgstr "Pueden verse mis conexiones" +#: ../../Zotlabs/Module/Photos.php:152 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "Hay varias carpetas con este nombre de álbum, pero dentro de diferentes directorios. Por favor, elimine la carpeta o carpetas que desee utilizando el administrador de ficheros" -#: ../../include/permissions.php:29 -msgid "Can view my file storage and photos" -msgstr "Pueden verse mi repositorio de ficheros y mis fotos" +#: ../../Zotlabs/Module/Photos.php:209 ../../Zotlabs/Module/Photos.php:1052 +msgid "Delete Photo" +msgstr "Borrar foto" -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Pueden verse mis páginas web" +#: ../../Zotlabs/Module/Photos.php:532 +msgid "No photos selected" +msgstr "No hay fotos seleccionadas" -#: ../../include/permissions.php:33 -msgid "Can send me their channel stream and posts" -msgstr "Me pueden enviar sus entradas y contenidos del canal" +#: ../../Zotlabs/Module/Photos.php:581 +msgid "Access to this item is restricted." +msgstr "El acceso a este elemento está restringido." -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Pueden crearse entradas en mi página de inicio del canal (“muro”)" +#: ../../Zotlabs/Module/Photos.php:620 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB de %2$.2f MB de almacenamiento de fotos utilizado." -#: ../../include/permissions.php:35 -msgid "Can comment on or like my posts" -msgstr "Pueden publicarse comentarios en mis publicaciones o marcar mis entradas con 'me gusta'." +#: ../../Zotlabs/Module/Photos.php:623 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB de almacenamiento de fotos utilizado." -#: ../../include/permissions.php:36 -msgid "Can send me private mail messages" -msgstr "Se me pueden enviar mensajes privados" +#: ../../Zotlabs/Module/Photos.php:659 +msgid "Upload Photos" +msgstr "Subir fotos" -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Puede marcarse contenido como me gusta/no me gusta" +#: ../../Zotlabs/Module/Photos.php:663 +msgid "Enter an album name" +msgstr "Introducir un nombre de álbum" -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Perfiles y otras cosas aparte de publicaciones/comentarios" +#: ../../Zotlabs/Module/Photos.php:664 +msgid "or select an existing album (doubleclick)" +msgstr "o seleccionar uno existente (doble click)" -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención" +#: ../../Zotlabs/Module/Photos.php:665 +msgid "Create a status post for this upload" +msgstr "Crear un mensaje de estado para esta subida" -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Avanzado - útil para crear canales de foros de discusión o grupos" +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Caption (optional):" +msgstr "Título (opcional):" -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Se puede charlar conmigo (cuando esté disponible)" +#: ../../Zotlabs/Module/Photos.php:667 +msgid "Description (optional):" +msgstr "Descripción (opcional):" -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Puede escribirse en mi repositorio de ficheros y fotos" +#: ../../Zotlabs/Module/Photos.php:694 +msgid "Album name could not be decoded" +msgstr "El nombre del álbum no ha podido ser descifrado" -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Pueden editarse mis páginas web" +#: ../../Zotlabs/Module/Photos.php:742 ../../Zotlabs/Module/Photos.php:1282 +#: ../../Zotlabs/Module/Photos.php:1299 +msgid "Contact Photos" +msgstr "Fotos de contacto" -#: ../../include/permissions.php:44 -msgid "Can source my public posts in derived channels" -msgstr "Pueden utilizarse mis publicaciones públicas como origen de contenidos en canales derivados" +#: ../../Zotlabs/Module/Photos.php:765 +msgid "Show Newest First" +msgstr "Mostrar lo más reciente primero" -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Algo avanzado - muy útil en comunidades abiertas" +#: ../../Zotlabs/Module/Photos.php:767 +msgid "Show Oldest First" +msgstr "Mostrar lo más antiguo primero" -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Pueden administrarse mis recursos del canal" +#: ../../Zotlabs/Module/Photos.php:791 ../../Zotlabs/Module/Photos.php:1332 +#: ../../include/widgets.php:1451 +msgid "View Photo" +msgstr "Ver foto" -#: ../../include/permissions.php:46 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo." +#: ../../Zotlabs/Module/Photos.php:822 ../../include/widgets.php:1468 +msgid "Edit Album" +msgstr "Editar álbum" -#: ../../include/permissions.php:877 -msgid "Social Networking" -msgstr "Redes sociales" +#: ../../Zotlabs/Module/Photos.php:869 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Permiso denegado. El acceso a este elemento puede estar restringido." -#: ../../include/permissions.php:877 -msgid "Social - Mostly Public" -msgstr "Social - Público en su mayor parte" +#: ../../Zotlabs/Module/Photos.php:871 +msgid "Photo not available" +msgstr "Foto no disponible" -#: ../../include/permissions.php:877 -msgid "Social - Restricted" -msgstr "Social - Restringido" +#: ../../Zotlabs/Module/Photos.php:929 +msgid "Use as profile photo" +msgstr "Usar como foto del perfil" -#: ../../include/permissions.php:877 -msgid "Social - Private" -msgstr "Social - Privado" +#: ../../Zotlabs/Module/Photos.php:930 +msgid "Use as cover photo" +msgstr "Usar como imagen de portada del perfil" -#: ../../include/permissions.php:878 -msgid "Community Forum" -msgstr "Foro de discusión" +#: ../../Zotlabs/Module/Photos.php:937 +msgid "Private Photo" +msgstr "Foto privada" -#: ../../include/permissions.php:878 -msgid "Forum - Mostly Public" -msgstr "Foro - Público en su mayor parte" +#: ../../Zotlabs/Module/Photos.php:952 +msgid "View Full Size" +msgstr "Ver tamaño completo" -#: ../../include/permissions.php:878 -msgid "Forum - Restricted" -msgstr "Foro - Restringido" +#: ../../Zotlabs/Module/Photos.php:997 ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Eliminar" -#: ../../include/permissions.php:878 -msgid "Forum - Private" -msgstr "Foro - Privado" +#: ../../Zotlabs/Module/Photos.php:1031 +msgid "Edit photo" +msgstr "Editar foto" -#: ../../include/permissions.php:879 -msgid "Feed Republish" -msgstr "Republicar un \"feed\"" +#: ../../Zotlabs/Module/Photos.php:1033 +msgid "Rotate CW (right)" +msgstr "Girar CW (a la derecha)" -#: ../../include/permissions.php:879 -msgid "Feed - Mostly Public" -msgstr "Feed - Público en su mayor parte" +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Rotate CCW (left)" +msgstr "Girar CCW (a la izquierda)" -#: ../../include/permissions.php:879 -msgid "Feed - Restricted" -msgstr "Feed - Restringido" +#: ../../Zotlabs/Module/Photos.php:1037 +msgid "Enter a new album name" +msgstr "Introducir un nuevo nombre de álbum" -#: ../../include/permissions.php:880 -msgid "Special Purpose" -msgstr "Propósito especial" +#: ../../Zotlabs/Module/Photos.php:1038 +msgid "or select an existing one (doubleclick)" +msgstr "o seleccionar uno (doble click) existente" -#: ../../include/permissions.php:880 -msgid "Special - Celebrity/Soapbox" -msgstr "Especial - Celebridad / Tribuna improvisada" +#: ../../Zotlabs/Module/Photos.php:1041 +msgid "Caption" +msgstr "Título" -#: ../../include/permissions.php:880 -msgid "Special - Group Repository" -msgstr "Especial - Repositorio de grupo" +#: ../../Zotlabs/Module/Photos.php:1043 +msgid "Add a Tag" +msgstr "Añadir una etiqueta" -#: ../../include/permissions.php:881 -msgid "Custom/Expert Mode" -msgstr "Modo personalizado/experto" +#: ../../Zotlabs/Module/Photos.php:1047 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Ejemplos: @eva, @Carmen_Osuna, @jaime@ejemplo.com" -#: ../../include/text.php:394 -msgid "prev" -msgstr "anterior" +#: ../../Zotlabs/Module/Photos.php:1050 +msgid "Flag as adult in album view" +msgstr "Marcar como \"solo para adultos\" en el álbum" -#: ../../include/text.php:396 -msgid "first" -msgstr "primera" +#: ../../Zotlabs/Module/Photos.php:1069 ../../include/ItemObject.php:254 +msgid "I like this (toggle)" +msgstr "Me gusta (cambiar)" -#: ../../include/text.php:425 -msgid "last" -msgstr "última" +#: ../../Zotlabs/Module/Photos.php:1070 ../../include/ItemObject.php:255 +msgid "I don't like this (toggle)" +msgstr "No me gusta esto (cambiar)" -#: ../../include/text.php:428 -msgid "next" -msgstr "próxima" +#: ../../Zotlabs/Module/Photos.php:1088 ../../Zotlabs/Module/Photos.php:1206 +#: ../../include/ItemObject.php:700 +msgid "This is you" +msgstr "Este es usted" -#: ../../include/text.php:438 -msgid "older" -msgstr "más antiguas" +#: ../../Zotlabs/Module/Photos.php:1090 ../../Zotlabs/Module/Photos.php:1208 +#: ../../include/ItemObject.php:702 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Comentar" -#: ../../include/text.php:440 -msgid "newer" -msgstr "más recientes" +#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:574 +msgctxt "title" +msgid "Likes" +msgstr "Me gusta" -#: ../../include/text.php:822 -msgid "No connections" -msgstr "Sin conexiones" +#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:574 +msgctxt "title" +msgid "Dislikes" +msgstr "No me gusta" -#: ../../include/text.php:847 -#, php-format -msgid "View all %s connections" -msgstr "Ver todas las %s conexiones" +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:575 +msgctxt "title" +msgid "Agree" +msgstr "De acuerdo" -#: ../../include/text.php:992 ../../include/text.php:997 -msgid "poke" -msgstr "un toque" +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:575 +msgctxt "title" +msgid "Disagree" +msgstr "En desacuerdo" -#: ../../include/text.php:998 -msgid "ping" -msgstr "un \"ping\"" +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:575 +msgctxt "title" +msgid "Abstain" +msgstr "Abstención" -#: ../../include/text.php:998 -msgid "pinged" -msgstr "ha enviado un \"ping\" a" +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:576 +msgctxt "title" +msgid "Attending" +msgstr "Participaré" -#: ../../include/text.php:999 -msgid "prod" -msgstr "una incitación " +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:576 +msgctxt "title" +msgid "Not attending" +msgstr "No participaré" -#: ../../include/text.php:999 -msgid "prodded" -msgstr "ha incitado a " +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:576 +msgctxt "title" +msgid "Might attend" +msgstr "Quizá participe" -#: ../../include/text.php:1000 -msgid "slap" -msgstr "una bofetada " +#: ../../Zotlabs/Module/Photos.php:1125 ../../Zotlabs/Module/Photos.php:1137 +#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 +#: ../../include/conversation.php:1736 +msgid "View all" +msgstr "Ver todo" -#: ../../include/text.php:1000 -msgid "slapped" -msgstr "ha abofeteado a " +#: ../../Zotlabs/Module/Photos.php:1129 ../../include/identity.php:1297 +#: ../../include/ItemObject.php:179 ../../include/conversation.php:1760 +#: ../../include/taxonomy.php:415 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "Me gusta" +msgstr[1] "Me gusta" -#: ../../include/text.php:1001 -msgid "finger" -msgstr "un \"finger\" " +#: ../../Zotlabs/Module/Photos.php:1134 ../../include/ItemObject.php:184 +#: ../../include/conversation.php:1763 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "No me gusta" +msgstr[1] "No me gusta" -#: ../../include/text.php:1001 -msgid "fingered" -msgstr "envió un \"finger\" a" +#: ../../Zotlabs/Module/Photos.php:1242 +msgid "In This Photo:" +msgstr "En esta foto:" -#: ../../include/text.php:1002 -msgid "rebuff" -msgstr "un reproche" +#: ../../Zotlabs/Module/Photos.php:1247 +msgid "Map" +msgstr "Mapa" -#: ../../include/text.php:1002 -msgid "rebuffed" -msgstr "ha hecho un reproche a " +#: ../../Zotlabs/Module/Photos.php:1255 ../../include/ItemObject.php:378 +msgctxt "noun" +msgid "Likes" +msgstr "Me gusta" -#: ../../include/text.php:1014 -msgid "happy" -msgstr "feliz " +#: ../../Zotlabs/Module/Photos.php:1256 ../../include/ItemObject.php:379 +msgctxt "noun" +msgid "Dislikes" +msgstr "No me gusta" -#: ../../include/text.php:1015 -msgid "sad" -msgstr "triste " +#: ../../Zotlabs/Module/Photos.php:1261 ../../include/ItemObject.php:384 +#: ../../include/acl_selectors.php:252 +msgid "Close" +msgstr "Cerrar" -#: ../../include/text.php:1016 -msgid "mellow" -msgstr "tranquilo/a" +#: ../../Zotlabs/Module/Photos.php:1338 +msgid "View Album" +msgstr "Ver álbum" -#: ../../include/text.php:1017 -msgid "tired" -msgstr "cansado/a " +#: ../../Zotlabs/Module/Photos.php:1349 ../../Zotlabs/Module/Photos.php:1362 +#: ../../Zotlabs/Module/Photos.php:1363 +msgid "Recent Photos" +msgstr "Fotos recientes" -#: ../../include/text.php:1018 -msgid "perky" -msgstr "vivaz" +#: ../../Zotlabs/Module/Ping.php:264 +msgid "sent you a private message" +msgstr "le ha enviado un mensaje privado" -#: ../../include/text.php:1019 -msgid "angry" -msgstr "enfadado/a" +#: ../../Zotlabs/Module/Ping.php:312 +msgid "added your channel" +msgstr "añadió este canal a sus conexiones" -#: ../../include/text.php:1020 -msgid "stupefied" -msgstr "asombrado/a" +#: ../../Zotlabs/Module/Ping.php:322 ../../include/identity.php:1116 +#: ../../include/identity.php:1192 +msgid "g A l F d" +msgstr "g A l d F" -#: ../../include/text.php:1021 -msgid "puzzled" -msgstr "perplejo/a" +#: ../../Zotlabs/Module/Ping.php:345 ../../include/identity.php:1162 +#: ../../include/identity.php:1232 +msgid "[today]" +msgstr "[hoy]" -#: ../../include/text.php:1022 -msgid "interested" -msgstr "interesado/a" +#: ../../Zotlabs/Module/Ping.php:354 +msgid "posted an event" +msgstr "publicó un evento" -#: ../../include/text.php:1023 -msgid "bitter" -msgstr "amargado/a" +#: ../../Zotlabs/Module/Poke.php:168 ../../include/apps.php:145 +#: ../../include/conversation.php:965 +msgid "Poke" +msgstr "Toques y otras cosas" -#: ../../include/text.php:1024 -msgid "cheerful" -msgstr "alegre" +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Dar un toque a alguien" -#: ../../include/text.php:1025 -msgid "alive" -msgstr "animado/a" +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Toque/Incitación" -#: ../../include/text.php:1026 -msgid "annoyed" -msgstr "molesto/a" +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Dar un toque, incitar o hacer otras cosas a alguien" -#: ../../include/text.php:1027 -msgid "anxious" -msgstr "ansioso/a" +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Destinatario" -#: ../../include/text.php:1028 -msgid "cranky" -msgstr "de mal humor" +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Elegir qué desea enviar al destinatario" -#: ../../include/text.php:1029 -msgid "disturbed" -msgstr "perturbado/a" +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Convertir en privado este envío" -#: ../../include/text.php:1030 -msgid "frustrated" -msgstr "frustrado/a" +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:34 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Al intentar obtener la dirección, retorna el error: %1$s" -#: ../../include/text.php:1031 -msgid "depressed" -msgstr "deprimido/a" +#: ../../Zotlabs/Module/Profile_photo.php:179 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente." -#: ../../include/text.php:1032 -msgid "motivated" -msgstr "motivado/a" +#: ../../Zotlabs/Module/Profile_photo.php:367 +msgid "Upload Profile Photo" +msgstr "Subir foto de perfil" -#: ../../include/text.php:1033 -msgid "relaxed" -msgstr "relajado/a" +#: ../../Zotlabs/Module/Profiles.php:23 ../../Zotlabs/Module/Profiles.php:188 +#: ../../Zotlabs/Module/Profiles.php:245 ../../Zotlabs/Module/Profiles.php:624 +msgid "Profile not found." +msgstr "Perfil no encontrado." -#: ../../include/text.php:1034 -msgid "surprised" -msgstr "sorprendido/a" +#: ../../Zotlabs/Module/Profiles.php:43 +msgid "Profile deleted." +msgstr "Perfil eliminado." -#: ../../include/text.php:1210 -msgid "May" -msgstr "mayo" +#: ../../Zotlabs/Module/Profiles.php:67 ../../Zotlabs/Module/Profiles.php:103 +msgid "Profile-" +msgstr "Perfil-" -#: ../../include/text.php:1287 ../../include/text.php:1291 -msgid "Unknown Attachment" -msgstr "Adjunto no reconocido" +#: ../../Zotlabs/Module/Profiles.php:88 ../../Zotlabs/Module/Profiles.php:131 +msgid "New profile created." +msgstr "El nuevo perfil ha sido creado." -#: ../../include/text.php:1293 -msgid "unknown" -msgstr "desconocido" +#: ../../Zotlabs/Module/Profiles.php:109 +msgid "Profile unavailable to clone." +msgstr "Perfil no disponible para clonar." -#: ../../include/text.php:1329 -msgid "remove category" -msgstr "eliminar categoría" +#: ../../Zotlabs/Module/Profiles.php:150 +msgid "Profile unavailable to export." +msgstr "Perfil no disponible para exportar." -#: ../../include/text.php:1406 -msgid "remove from file" -msgstr "eliminar del fichero" +#: ../../Zotlabs/Module/Profiles.php:255 +msgid "Profile Name is required." +msgstr "Se necesita el nombre del perfil." -#: ../../include/text.php:1548 ../../include/text.php:1559 -msgid "Click to open/close" -msgstr "Pulsar para abrir/cerrar" +#: ../../Zotlabs/Module/Profiles.php:426 +msgid "Marital Status" +msgstr "Estado civil" -#: ../../include/text.php:1743 ../../mod/cal.php:307 ../../mod/events.php:630 -msgid "Link to Source" -msgstr "Enlazar con la entrada en su ubicación original" +#: ../../Zotlabs/Module/Profiles.php:430 +msgid "Romantic Partner" +msgstr "Pareja sentimental" -#: ../../include/text.php:1764 ../../include/text.php:1836 -msgid "default" -msgstr "por defecto" +#: ../../Zotlabs/Module/Profiles.php:434 ../../Zotlabs/Module/Profiles.php:739 +msgid "Likes" +msgstr "Me gusta" -#: ../../include/text.php:1772 -msgid "Page layout" -msgstr "Plantilla de la página" +#: ../../Zotlabs/Module/Profiles.php:438 ../../Zotlabs/Module/Profiles.php:740 +msgid "Dislikes" +msgstr "No me gusta" -#: ../../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" +#: ../../Zotlabs/Module/Profiles.php:442 ../../Zotlabs/Module/Profiles.php:747 +msgid "Work/Employment" +msgstr "Trabajo:" -#: ../../include/text.php:1814 -msgid "Page content type" -msgstr "Tipo de contenido de la página" +#: ../../Zotlabs/Module/Profiles.php:445 +msgid "Religion" +msgstr "Religión" -#: ../../include/text.php:1848 -msgid "Select an alternate language" -msgstr "Seleccionar un idioma alternativo" +#: ../../Zotlabs/Module/Profiles.php:449 +msgid "Political Views" +msgstr "Ideas políticas" -#: ../../include/text.php:1980 -msgid "activity" -msgstr "la actividad" +#: ../../Zotlabs/Module/Profiles.php:457 +msgid "Sexual Preference" +msgstr "Preferencia sexual" -#: ../../include/text.php:2275 -msgid "Design Tools" -msgstr "Herramientas de diseño web" +#: ../../Zotlabs/Module/Profiles.php:461 +msgid "Homepage" +msgstr "Página personal" -#: ../../include/text.php:2278 ../../mod/blocks.php:149 -msgid "Blocks" -msgstr "Bloques" +#: ../../Zotlabs/Module/Profiles.php:465 +msgid "Interests" +msgstr "Intereses" -#: ../../include/text.php:2279 ../../mod/menu.php:103 -msgid "Menus" -msgstr "Menús" +#: ../../Zotlabs/Module/Profiles.php:559 +msgid "Profile updated." +msgstr "Perfil actualizado." -#: ../../include/text.php:2280 ../../mod/layouts.php:175 -msgid "Layouts" -msgstr "Plantillas" +#: ../../Zotlabs/Module/Profiles.php:648 +msgid "Hide your connections list from viewers of this profile" +msgstr "Ocultar la lista de conexiones a los visitantes del perfil" -#: ../../include/text.php:2281 -msgid "Pages" -msgstr "Páginas" +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Edit Profile Details" +msgstr "Modificar los detalles de este perfil" -#: ../../include/api.php:1336 -msgid "Public Timeline" -msgstr "Cronología pública" +#: ../../Zotlabs/Module/Profiles.php:692 +msgid "View this profile" +msgstr "Ver este perfil" -#: ../../mod/lockview.php:57 -msgid "Remote privacy information not available." -msgstr "La información privada remota no está disponible." +#: ../../Zotlabs/Module/Profiles.php:693 ../../Zotlabs/Module/Profiles.php:774 +#: ../../include/identity.php:952 +msgid "Edit visibility" +msgstr "Editar visibilidad" -#: ../../mod/lockview.php:78 -msgid "Visible to:" -msgstr "Visible para:" +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Change cover photo" +msgstr "Cambiar la imagen de portada del perfil" -#: ../../mod/achievements.php:34 -msgid "Some blurb about what to do when you're new here" -msgstr "Algunas propuestas para el nuevo usuario sobre qué se puede hacer aquí" +#: ../../Zotlabs/Module/Profiles.php:695 ../../include/identity.php:923 +msgid "Change profile photo" +msgstr "Cambiar la foto del perfil" -#: ../../mod/acl.php:221 -msgid "network" -msgstr "red" +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Create a new profile using these settings" +msgstr "Crear un nuevo perfil usando estos ajustes" -#: ../../mod/acl.php:231 -msgid "RSS" -msgstr "RSS" +#: ../../Zotlabs/Module/Profiles.php:697 +msgid "Clone this profile" +msgstr "Clonar este perfil" -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "No se puede encontrar su servidor." +#: ../../Zotlabs/Module/Profiles.php:698 +msgid "Delete this profile" +msgstr "Eliminar este perfil" -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Enviado con éxito." +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Add profile things" +msgstr "Añadir cosas al perfil" -#: ../../mod/admin.php:54 -msgid "Theme settings updated." -msgstr "Ajustes del tema actualizados." +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/conversation.php:1544 +#: ../../include/widgets.php:105 +msgid "Personal" +msgstr "Personales" -#: ../../mod/admin.php:174 -msgid "# Accounts" -msgstr "# Cuentas" +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Relation" +msgstr "Relación" -#: ../../mod/admin.php:175 -msgid "# blocked accounts" -msgstr "# cuentas bloqueadas" +#: ../../Zotlabs/Module/Profiles.php:703 ../../include/datetime.php:48 +msgid "Miscellaneous" +msgstr "Varios" -#: ../../mod/admin.php:176 -msgid "# expired accounts" -msgstr "# cuentas caducadas" +#: ../../Zotlabs/Module/Profiles.php:705 +msgid "Import profile from file" +msgstr "Importar perfil desde un fichero" -#: ../../mod/admin.php:177 -msgid "# expiring accounts" -msgstr "# cuentas que caducan" +#: ../../Zotlabs/Module/Profiles.php:706 +msgid "Export profile to file" +msgstr "Exportar perfil a un fichero" -#: ../../mod/admin.php:188 -msgid "# Channels" -msgstr "# Canales" +#: ../../Zotlabs/Module/Profiles.php:707 +msgid "Your gender" +msgstr "Género" -#: ../../mod/admin.php:189 -msgid "# primary" -msgstr "# primario" +#: ../../Zotlabs/Module/Profiles.php:708 +msgid "Marital status" +msgstr "Estado civil" -#: ../../mod/admin.php:190 -msgid "# clones" -msgstr "# clones" +#: ../../Zotlabs/Module/Profiles.php:709 +msgid "Sexual preference" +msgstr "Preferencia sexual" -#: ../../mod/admin.php:196 -msgid "Message queues" -msgstr "Mensajes en cola" +#: ../../Zotlabs/Module/Profiles.php:712 +msgid "Profile name" +msgstr "Nombre del perfil" -#: ../../mod/admin.php:212 ../../mod/admin.php:455 ../../mod/admin.php:669 -#: ../../mod/admin.php:709 ../../mod/admin.php:984 ../../mod/admin.php:1148 -#: ../../mod/admin.php:1263 ../../mod/admin.php:1324 ../../mod/admin.php:1485 -#: ../../mod/admin.php:1519 ../../mod/admin.php:1604 -msgid "Administration" -msgstr "Administración" +#: ../../Zotlabs/Module/Profiles.php:714 +msgid "This is your default profile." +msgstr "Este es su perfil principal." -#: ../../mod/admin.php:213 -msgid "Summary" -msgstr "Sumario" +#: ../../Zotlabs/Module/Profiles.php:716 +msgid "Your full name" +msgstr "Nombre completo" -#: ../../mod/admin.php:216 -msgid "Registered accounts" -msgstr "Cuentas registradas" +#: ../../Zotlabs/Module/Profiles.php:717 +msgid "Title/Description" +msgstr "Título o descripción" -#: ../../mod/admin.php:217 ../../mod/admin.php:673 -msgid "Pending registrations" -msgstr "Registros pendientes" +#: ../../Zotlabs/Module/Profiles.php:720 +msgid "Street address" +msgstr "Dirección" -#: ../../mod/admin.php:218 -msgid "Registered channels" -msgstr "Canales registrados" +#: ../../Zotlabs/Module/Profiles.php:721 +msgid "Locality/City" +msgstr "Ciudad" -#: ../../mod/admin.php:219 ../../mod/admin.php:674 -msgid "Active plugins" -msgstr "Extensiones activas" +#: ../../Zotlabs/Module/Profiles.php:722 +msgid "Region/State" +msgstr "Región o Estado" -#: ../../mod/admin.php:220 -msgid "Version" -msgstr "Versión" +#: ../../Zotlabs/Module/Profiles.php:723 +msgid "Postal/Zip code" +msgstr "Código postal" -#: ../../mod/admin.php:339 -msgid "Site settings updated." -msgstr "Ajustes del sitio actualizados." +#: ../../Zotlabs/Module/Profiles.php:724 +msgid "Country" +msgstr "País" -#: ../../mod/admin.php:376 ../../mod/settings.php:805 -msgid "mobile" -msgstr "móvil" +#: ../../Zotlabs/Module/Profiles.php:729 +msgid "Who (if applicable)" +msgstr "Quién (si es pertinente)" -#: ../../mod/admin.php:378 -msgid "experimental" -msgstr "experimental" +#: ../../Zotlabs/Module/Profiles.php:729 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Por ejemplo: ana123, María González, sara@ejemplo.com" -#: ../../mod/admin.php:380 -msgid "unsupported" -msgstr "no soportado" +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Since (date)" +msgstr "Desde (fecha)" -#: ../../mod/admin.php:426 -msgid "Yes - with approval" -msgstr "Sí - con aprobación" +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Tell us about yourself" +msgstr "Háblenos de usted" -#: ../../mod/admin.php:432 -msgid "My site is not a public server" -msgstr "Mi sitio no es un servidor público" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Hometown" +msgstr "Lugar de nacimiento" -#: ../../mod/admin.php:433 -msgid "My site has paid access only" -msgstr "Mi sitio es un servicio de pago" +#: ../../Zotlabs/Module/Profiles.php:736 +msgid "Political views" +msgstr "Ideas políticas" -#: ../../mod/admin.php:434 -msgid "My site has free access only" -msgstr "Mi sitio es un servicio gratuito" +#: ../../Zotlabs/Module/Profiles.php:737 +msgid "Religious views" +msgstr "Creencias religiosas" -#: ../../mod/admin.php:435 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "Mi sitio ofrece cuentas gratuitas con opciones extra de pago" +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Keywords used in directory listings" +msgstr "Palabras clave utilizadas en los listados de directorios" -#: ../../mod/admin.php:458 ../../mod/register.php:241 -msgid "Registration" -msgstr "Registro" +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Example: fishing photography software" +msgstr "Por ejemplo: software de fotografía submarina" -#: ../../mod/admin.php:459 -msgid "File upload" -msgstr "Subir fichero" +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Musical interests" +msgstr "Preferencias musicales" -#: ../../mod/admin.php:460 -msgid "Policies" -msgstr "Políticas" +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Books, literature" +msgstr "Libros, literatura" -#: ../../mod/admin.php:465 -msgid "Site name" -msgstr "Nombre del sitio" +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Television" +msgstr "Televisión" -#: ../../mod/admin.php:466 -msgid "Banner/Logo" -msgstr "Banner/Logo" +#: ../../Zotlabs/Module/Profiles.php:744 +msgid "Film/Dance/Culture/Entertainment" +msgstr "Cine, danza, cultura, entretenimiento" -#: ../../mod/admin.php:467 -msgid "Administrator Information" -msgstr "Información del Administrador" +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "Hobbies/Interests" +msgstr "Aficiones o intereses" -#: ../../mod/admin.php:467 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Información de contacto de los administradores del sitio. Visible en la página \"siteinfo\". Se puede usar BBCode" +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Love/Romance" +msgstr "Vida sentimental o amorosa" -#: ../../mod/admin.php:468 -msgid "System language" -msgstr "Idioma del sistema" +#: ../../Zotlabs/Module/Profiles.php:748 +msgid "School/Education" +msgstr "Estudios" -#: ../../mod/admin.php:469 -msgid "System theme" -msgstr "Tema gráfico del sistema" +#: ../../Zotlabs/Module/Profiles.php:749 +msgid "Contact information and social networks" +msgstr "Información de contacto y redes sociales" -#: ../../mod/admin.php:469 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Tema del sistema por defecto - se puede cambiar por cada perfil de usuario - modificar los ajustes del tema" +#: ../../Zotlabs/Module/Profiles.php:750 +msgid "My other channels" +msgstr "Mis otros canales" -#: ../../mod/admin.php:470 -msgid "Mobile system theme" -msgstr "Tema del sistema para móviles" +#: ../../Zotlabs/Module/Profiles.php:770 ../../include/identity.php:948 +msgid "Profile Image" +msgstr "Imagen del perfil" -#: ../../mod/admin.php:470 -msgid "Theme for mobile devices" -msgstr "Tema para dispositivos móviles" +#: ../../Zotlabs/Module/Profiles.php:780 ../../include/identity.php:930 +#: ../../include/nav.php:88 +msgid "Edit Profiles" +msgstr "Editar perfiles" -#: ../../mod/admin.php:472 -msgid "Allow Feeds as Connections" -msgstr "Permitir contenidos RSS como conexiones" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Identificador del perfil no válido" -#: ../../mod/admin.php:472 -msgid "(Heavy system resource usage)" -msgstr "(Uso intenso de los recursos del sistema)" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Editor de visibilidad del perfil" -#: ../../mod/admin.php:473 -msgid "Maximum image size" -msgstr "Tamaño máximo de la imagen" +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/identity.php:1388 +#: ../../include/apps.php:138 +msgid "Profile" +msgstr "Perfil" -#: ../../mod/admin.php:473 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Tamaño máximo en bytes de la imagen subida. Por defecto, es 0, lo que significa que no hay límites." +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Pulsar en un contacto para añadirlo o eliminarlo." -#: ../../mod/admin.php:474 -msgid "Does this site allow new member registration?" -msgstr "¿Debe este sitio permitir el registro de nuevos miembros?" +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Visible para" -#: ../../mod/admin.php:475 -msgid "Invitation only" -msgstr "Solo con una invitación" +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1222 +msgid "Public Hubs" +msgstr "Servidores públicos" -#: ../../mod/admin.php:475 +#: ../../Zotlabs/Module/Pubsites.php:25 msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -msgstr "Solo se permiten inscripciones de nuevos miembros con un código de invitación. Además, deben aceptarse los términos del registro marcando \"Sí\"." - -#: ../../mod/admin.php:476 -msgid "Which best describes the types of account offered by this hub?" -msgstr "¿Cómo describiría el tipo de servicio ofrecido por este servidor?" - -#: ../../mod/admin.php:477 -msgid "Register text" -msgstr "Texto del registro" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "Los sitios listados permiten el registro público en la red $Projectname. Todos los sitios de la red están vinculados entre sí, por lo que sus miembros, en ninguno de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los mismos hubs pueden proporcionar detalles adicionales." -#: ../../mod/admin.php:477 -msgid "Will be displayed prominently on the registration page." -msgstr "Se mostrará de forma destacada en la página de registro." +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "Dirección del hub" -#: ../../mod/admin.php:478 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Página personal que se mostrará a los visitantes (por defecto: la página de identificación)" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Access Type" +msgstr "Tipo de acceso" -#: ../../mod/admin.php:478 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "ejemplo: 'public' para mostrar contenido público, 'page/sys/home' para mostrar la página web definida como \"home\" o 'include:home.html' para mostrar el contenido de un fichero." +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" +msgstr "Normas de registro" -#: ../../mod/admin.php:479 -msgid "Preserve site homepage URL" -msgstr "Preservar la dirección de la página personal" +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:964 +msgid "Ratings" +msgstr "Valoraciones" -#: ../../mod/admin.php:479 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Presenta la página personal del sitio en un marco en la ubicación original, en vez de redirigirla." +#: ../../Zotlabs/Module/Pubsites.php:37 +msgid "Rate" +msgstr "Valorar" -#: ../../mod/admin.php:480 -msgid "Accounts abandoned after x days" -msgstr "Cuentas abandonadas después de x días" +#: ../../Zotlabs/Module/Rate.php:162 +msgid "Website:" +msgstr "Sitio web:" -#: ../../mod/admin.php:480 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Para evitar consumir recursos del sistema intentando poner al día las cuentas abandonadas. Introduzca 0 para no tener límite de tiempo." +#: ../../Zotlabs/Module/Rate.php:165 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Canal remoto [%s] (aún no es conocido en este sitio)" -#: ../../mod/admin.php:481 -msgid "Allowed friend domains" -msgstr "Dominios amigos permitidos" +#: ../../Zotlabs/Module/Rate.php:166 +msgid "Rating (this information is public)" +msgstr "Valoración (esta información es pública)" -#: ../../mod/admin.php:481 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Lista separada por comas de dominios a los que está permitido establecer relaciones de amistad con este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio." +#: ../../Zotlabs/Module/Rate.php:167 +msgid "Optionally explain your rating (this information is public)" +msgstr "Opcionalmente puede explicar su valoración (esta información es pública)" -#: ../../mod/admin.php:482 -msgid "Allowed email domains" -msgstr "Se aceptan dominios de correo electrónico" +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" +msgstr "Ninguna valoración" -#: ../../mod/admin.php:482 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Lista separada por comas de los dominios de los que se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio. " +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " +msgstr "Valoración:" -#: ../../mod/admin.php:483 -msgid "Not allowed email domains" -msgstr "No se permiten dominios de correo electrónico" +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " +msgstr "Sitio web:" -#: ../../mod/admin.php:483 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Lista separada por comas de los dominios de los que no se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para no aceptar cualquier dominio, excepto los que se hayan autorizado." +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "Descripción:" -#: ../../mod/admin.php:484 -msgid "Verify Email Addresses" -msgstr "Verificar las direcciones de correo electrónico" +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "Seleccionar una carpeta de marcadores" -#: ../../mod/admin.php:484 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Activar para la verificación de la dirección de correo electrónico en el registro de una cuenta (recomendado)." +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "Guardar marcador" -#: ../../mod/admin.php:485 -msgid "Force publish" -msgstr "Forzar la publicación" +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "Dirección del marcador" -#: ../../mod/admin.php:485 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Intentar forzar todos los perfiles para que sean listados en el directorio de este sitio." +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" +msgstr "O introduzca un nuevo nombre para la carpeta de marcadores" -#: ../../mod/admin.php:486 -msgid "Import Public Streams" -msgstr "Importar contenido público" +#: ../../Zotlabs/Module/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Se ha superado el límite máximo de inscripciones diarias de este sitio. Por favor, pruebe de nuevo mañana." -#: ../../mod/admin.php:486 +#: ../../Zotlabs/Module/Register.php:55 msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "Importar y permitir acceso al contenido público sacado de otros sitios. Advertencia: este contenido no está moderado, por lo que podría encontrar cosas inapropiadas u ofensivas." +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Por favor, confirme que acepta los Términos del servicio. El registro ha fallado." -#: ../../mod/admin.php:487 -msgid "login on Homepage" -msgstr "Iniciar sesión en la página personal" +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "Las contraseñas no coinciden." -#: ../../mod/admin.php:487 +#: ../../Zotlabs/Module/Register.php:131 msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Presentar a los visitantes una casilla de identificación en la página de inicio, si no se ha configurado otro tipo de contenido." - -#: ../../mod/admin.php:489 -msgid "Directory Server URL" -msgstr "URL del servidor de directorio" - -#: ../../mod/admin.php:489 -msgid "Default directory server" -msgstr "Servidor de directorio predeterminado" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registro realizado con éxito. Por favor, compruebe su correo electrónico para ver las instrucciones para validarlo." -#: ../../mod/admin.php:491 -msgid "Proxy user" -msgstr "Usuario del proxy" +#: ../../Zotlabs/Module/Register.php:137 +msgid "Your registration is pending approval by the site owner." +msgstr "Su registro está pendiente de aprobación por el propietario del sitio." -#: ../../mod/admin.php:492 -msgid "Proxy URL" -msgstr "Dirección del proxy" +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." +msgstr "Su registro no puede ser procesado." -#: ../../mod/admin.php:493 -msgid "Network timeout" -msgstr "Tiempo de espera de la red" +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." +msgstr "El registro está deshabilitado en este sitio." -#: ../../mod/admin.php:493 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Valor en segundos. Poner a 0 para que no haya tiempo límite (no recomendado)" +#: ../../Zotlabs/Module/Register.php:193 +msgid "Registration on this hub is by approval only." +msgstr "El registro en este hub está sometido a aprobación previa." -#: ../../mod/admin.php:494 -msgid "Delivery interval" -msgstr "Intervalo de entrega" +#: ../../Zotlabs/Module/Register.php:194 +msgid "Register at another affiliated hub." +msgstr "Registrarse en otro hub afiliado." -#: ../../mod/admin.php:494 +#: ../../Zotlabs/Module/Register.php:204 msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Retrasar los procesos de transmisión en segundo plano por esta cantidad de segundos para reducir la carga del sistema. Recomendado: 4-5 para sitios compartidos, 2-3 para servidores virtuales privados, 0-1 para grandes servidores dedicados." +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Este sitio ha excedido el límite de inscripción diaria de cuentas. Por favor, inténtelo de nuevo mañana." -#: ../../mod/admin.php:495 -msgid "Deliveries per process" -msgstr "Intentos de envío por proceso" +#: ../../Zotlabs/Module/Register.php:215 +msgid "Terms of Service" +msgstr "Términos del servicio" -#: ../../mod/admin.php:495 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust" -" if necessary to tune system performance. Recommend: 1-5." -msgstr "Numero de envíos a intentar en un único proceso del sistema operativo. Ajustar si es necesario mejorar el rendimiento. Se recomienda: 1-5." +#: ../../Zotlabs/Module/Register.php:221 +#, php-format +msgid "I accept the %s for this website" +msgstr "Acepto los %s de este sitio" -#: ../../mod/admin.php:496 -msgid "Poll interval" -msgstr "Intervalo máximo de tiempo entre dos mensajes sucesivos" +#: ../../Zotlabs/Module/Register.php:223 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Tengo más de 13 años de edad y acepto los %s de este sitio" -#: ../../mod/admin.php:496 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "Retrasar el intervalo de envío en segundo plano, en esta cantidad de segundos, para reducir la carga del sistema. Si es 0, usar el intervalo de entrega." +#: ../../Zotlabs/Module/Register.php:227 +msgid "Your email address" +msgstr "Su dirección de correo electrónico" -#: ../../mod/admin.php:497 -msgid "Maximum Load Average" -msgstr "Carga media máxima" +#: ../../Zotlabs/Module/Register.php:228 +msgid "Choose a password" +msgstr "Elija una contraseña" -#: ../../mod/admin.php:497 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Carga máxima del sistema antes de que los procesos de entrega y envío se hayan retardado - por defecto, 50." +#: ../../Zotlabs/Module/Register.php:229 +msgid "Please re-enter your password" +msgstr "Por favor, vuelva a escribir su contraseña" -#: ../../mod/admin.php:498 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "Caducidad del contenido importado de otros sitios (en días)" +#: ../../Zotlabs/Module/Register.php:230 +msgid "Please enter your invitation code" +msgstr "Por favor, introduzca el código de su invitación" -#: ../../mod/admin.php:498 -msgid "0 for no expiration of imported content" -msgstr "0 para que no caduque el contenido importado" +#: ../../Zotlabs/Module/Register.php:236 +msgid "no" +msgstr "no" -#: ../../mod/admin.php:635 ../../mod/admin.php:636 ../../mod/settings.php:729 -msgid "Off" -msgstr "Desactivado" +#: ../../Zotlabs/Module/Register.php:236 +msgid "yes" +msgstr "sí" -#: ../../mod/admin.php:635 ../../mod/admin.php:636 ../../mod/settings.php:729 -msgid "On" -msgstr "Activado" +#: ../../Zotlabs/Module/Register.php:250 +msgid "Membership on this site is by invitation only." +msgstr "Para registrarse en este sitio es necesaria una invitación." -#: ../../mod/admin.php:636 -#, php-format -msgid "Lock feature %s" -msgstr "Bloquear la funcionalidad %s" +#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:148 +#: ../../boot.php:1584 +msgid "Register" +msgstr "Registrarse" -#: ../../mod/admin.php:644 -msgid "Manage Additional Features" -msgstr "Gestionar las funcionalidades" +#: ../../Zotlabs/Module/Register.php:262 +msgid "Proceed to create your first channel" +msgstr "Crear su primer canal" -#: ../../mod/admin.php:661 -msgid "No server found" -msgstr "Servidor no encontrado" +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." +msgstr "Por favor, inicie sesión." -#: ../../mod/admin.php:668 ../../mod/admin.php:998 -msgid "ID" -msgstr "ID" +#: ../../Zotlabs/Module/Removeaccount.php:34 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "La eliminación de cuentas no está permitida hasta después de que hayan transcurrido 48 horas desde el último cambio de contraseña." -#: ../../mod/admin.php:668 -msgid "for channel" -msgstr "por canal" +#: ../../Zotlabs/Module/Removeaccount.php:61 +msgid "Remove This Account" +msgstr "Eliminar esta cuenta" -#: ../../mod/admin.php:668 -msgid "on server" -msgstr "en el servidor" +#: ../../Zotlabs/Module/Removeaccount.php:62 +#: ../../Zotlabs/Module/Removeme.php:62 +msgid "WARNING: " +msgstr "ATENCIÓN:" -#: ../../mod/admin.php:668 ../../mod/connections.php:266 -msgid "Status" -msgstr "Estado" +#: ../../Zotlabs/Module/Removeaccount.php:62 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " +msgstr "Esta cuenta y todos sus canales van a ser eliminados de la red." -#: ../../mod/admin.php:670 -msgid "Server" -msgstr "Servidor" +#: ../../Zotlabs/Module/Removeaccount.php:62 +#: ../../Zotlabs/Module/Removeme.php:62 +msgid "This action is permanent and can not be undone!" +msgstr "¡Esta acción tiene carácter definitivo y no se puede deshacer!" -#: ../../mod/admin.php:712 -msgid "Block public" -msgstr "Bloquear páginas públicas" +#: ../../Zotlabs/Module/Removeaccount.php:63 +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "Please enter your password for verification:" +msgstr "Por favor, introduzca su contraseña para su verificación:" -#: ../../mod/admin.php:712 +#: ../../Zotlabs/Module/Removeaccount.php:64 msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "Habilitar para impedir ver las páginas personales de este sitio a quien no esté actualmente autenticado." - -#: ../../mod/admin.php:713 -msgid "Allow communications only from these sites" -msgstr "Permitir la comunicación solo desde estos sitios" +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Remover esta cuenta, todos sus canales y clones de la red" -#: ../../mod/admin.php:713 +#: ../../Zotlabs/Module/Removeaccount.php:64 msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "Un sitio por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera" +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "Por defecto, solo las instancias de los canales ubicados en este servidor serán eliminados de la red" -#: ../../mod/admin.php:714 -msgid "Block communications from these sites" -msgstr "Bloquear la comunicación desde estos sitios" +#: ../../Zotlabs/Module/Removeaccount.php:65 +#: ../../Zotlabs/Module/Settings.php:703 +msgid "Remove Account" +msgstr "Eliminar cuenta" -#: ../../mod/admin.php:715 -msgid "Allow communications only from these channels" -msgstr "Permitir la comunicación solo desde estos canales" - -#: ../../mod/admin.php:715 +#: ../../Zotlabs/Module/Removeme.php:33 msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by " -"default" -msgstr "Un canal (hash) por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña." -#: ../../mod/admin.php:716 -msgid "Block communications from these channels" -msgstr "Bloquear la comunicación desde estos canales" +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "Remove This Channel" +msgstr "Eliminar este canal" -#: ../../mod/admin.php:717 -msgid "Allow embedded HTML content only from these domains" -msgstr "Permitir contenido con HTML incorporado solo desde estos dominios" +#: ../../Zotlabs/Module/Removeme.php:62 +msgid "This channel will be completely removed from the network. " +msgstr "Este canal va a ser completamente eliminado de la red." -#: ../../mod/admin.php:717 -msgid "One site per line. Leave empty to allow from any site by default" -msgstr "Un sitio por línea. Dejar en blanco para permitirlo por defecto desde cualquier sitio" +#: ../../Zotlabs/Module/Removeme.php:64 +msgid "Remove this channel and all its clones from the network" +msgstr "Eliminar este canal y todos sus clones de la red" -#: ../../mod/admin.php:718 -msgid "Block embedded HTML from these domains" -msgstr "Bloquear contenido con HTML incorporado desde estos dominios" +#: ../../Zotlabs/Module/Removeme.php:64 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red" -#: ../../mod/admin.php:720 -msgid "Cooperative embed security" -msgstr "Seguridad cooperativa incorporada" +#: ../../Zotlabs/Module/Removeme.php:65 ../../Zotlabs/Module/Settings.php:1122 +msgid "Remove Channel" +msgstr "Eliminar el canal" -#: ../../mod/admin.php:720 -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/Rmagic.php:44 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "Encontramos un problema durante el inicio de sesión con la OpenID que proporcionó. Por favor, compruebe que la ID está correctamente escrita." -#: ../../mod/admin.php:735 -msgid "Update has been marked successful" -msgstr "La actualización ha sido marcada como exitosa" +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "The error message was:" +msgstr "El mensaje de error fue:" -#: ../../mod/admin.php:745 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "La ejecución de %s ha fallado. Mirar en los informes del sistema." +#: ../../Zotlabs/Module/Rmagic.php:48 +msgid "Authentication failed." +msgstr "Falló la autenticación." -#: ../../mod/admin.php:748 -#, php-format -msgid "Update %s was successfully applied." -msgstr "La actualización de %s se ha realizado exitosamente." +#: ../../Zotlabs/Module/Rmagic.php:88 +msgid "Remote Authentication" +msgstr "Acceso desde su servidor" + +#: ../../Zotlabs/Module/Rmagic.php:89 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)" + +#: ../../Zotlabs/Module/Rmagic.php:90 +msgid "Authenticate" +msgstr "Acceder" -#: ../../mod/admin.php:752 +#: ../../Zotlabs/Module/Search.php:216 #, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "La actualización de %s no ha devuelto ningún estado. No se sabe si ha tenido éxito." +msgid "Items tagged with: %s" +msgstr "elementos etiquetados con: %s" -#: ../../mod/admin.php:755 +#: ../../Zotlabs/Module/Search.php:218 #, php-format -msgid "Update function %s could not be found." -msgstr "No se encuentra la función de actualización de %s." +msgid "Search results for: %s" +msgstr "Resultados de la búsqueda para: %s" -#: ../../mod/admin.php:771 -msgid "No failed updates." -msgstr "No ha fallado ninguna actualización." +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "No se han encontrado restricciones sobre esta clase de servicio." -#: ../../mod/admin.php:775 -msgid "Failed Updates" -msgstr "Han fallado las actualizaciones" +#: ../../Zotlabs/Module/Settings.php:67 +msgid "Name is required" +msgstr "El nombre es obligatorio" -#: ../../mod/admin.php:777 -msgid "Mark success (if update was manually applied)" -msgstr "Marcar como exitosa (si la actualización se ha hecho manualmente)" +#: ../../Zotlabs/Module/Settings.php:71 +msgid "Key and Secret are required" +msgstr "\"Key\" y \"Secret\" son obligatorios" -#: ../../mod/admin.php:778 -msgid "Attempt to execute this update step automatically" -msgstr "Intentar ejecutar este paso de actualización automáticamente" +#: ../../Zotlabs/Module/Settings.php:75 ../../Zotlabs/Module/Settings.php:614 +#: ../../include/apps.php:252 +msgid "Update" +msgstr "Actualizar" -#: ../../mod/admin.php:809 -msgid "Queue Statistics" -msgstr "Estadísticas de la cola" +#: ../../Zotlabs/Module/Settings.php:223 +msgid "Not valid email." +msgstr "Correo electrónico no válido." -#: ../../mod/admin.php:810 -msgid "Total Entries" -msgstr "Total de entradas" +#: ../../Zotlabs/Module/Settings.php:226 +msgid "Protected email address. Cannot change to that email." +msgstr "Dirección de correo electrónico protegida. No se puede cambiar a ella." -#: ../../mod/admin.php:811 -msgid "Priority" -msgstr "Prioridad" +#: ../../Zotlabs/Module/Settings.php:235 +msgid "System failure storing new email. Please try again." +msgstr "Fallo de sistema al guardar el nuevo correo electrónico. Por favor, inténtelo de nuevo." -#: ../../mod/admin.php:812 -msgid "Destination URL" -msgstr "Dirección de destino" +#: ../../Zotlabs/Module/Settings.php:252 +msgid "Password verification failed." +msgstr "La comprobación de la contraseña ha fallado." -#: ../../mod/admin.php:813 -msgid "Mark hub permanently offline" -msgstr "Marcar el servidor como permanentemente fuera de línea" +#: ../../Zotlabs/Module/Settings.php:259 +msgid "Passwords do not match. Password unchanged." +msgstr "Las contraseñas no coinciden. La contraseña no se ha cambiado." -#: ../../mod/admin.php:814 -msgid "Empty queue for this hub" -msgstr "Vaciar la cola para este servidor" +#: ../../Zotlabs/Module/Settings.php:263 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "No se permiten contraseñas vacías. La contraseña no se ha cambiado." -#: ../../mod/admin.php:815 -msgid "Last known contact" -msgstr "Último contacto conocido" +#: ../../Zotlabs/Module/Settings.php:277 +msgid "Password changed." +msgstr "Contraseña cambiada." -#: ../../mod/admin.php:851 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "%s cuenta bloqueada/desbloqueada" -msgstr[1] "%s cuenta bloqueada/desbloqueada" +#: ../../Zotlabs/Module/Settings.php:279 +msgid "Password update failed. Please try again." +msgstr "La actualización de la contraseña ha fallado. Por favor, inténtalo de nuevo." -#: ../../mod/admin.php:859 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "%s cuentas eliminadas" -msgstr[1] "%s cuentas eliminadas" +#: ../../Zotlabs/Module/Settings.php:523 +msgid "Settings updated." +msgstr "Ajustes actualizados." -#: ../../mod/admin.php:895 -msgid "Account not found" -msgstr "Cuenta no encontrada" +#: ../../Zotlabs/Module/Settings.php:587 ../../Zotlabs/Module/Settings.php:613 +#: ../../Zotlabs/Module/Settings.php:649 +msgid "Add application" +msgstr "Añadir aplicación" -#: ../../mod/admin.php:907 -#, php-format -msgid "Account '%s' deleted" -msgstr "La cuenta '%s' ha sido eliminada" +#: ../../Zotlabs/Module/Settings.php:590 +msgid "Name of application" +msgstr "Nombre de la aplicación" -#: ../../mod/admin.php:915 -#, php-format -msgid "Account '%s' blocked" -msgstr "La cuenta '%s' ha sido bloqueada" +#: ../../Zotlabs/Module/Settings.php:591 ../../Zotlabs/Module/Settings.php:617 +msgid "Consumer Key" +msgstr "Consumer Key" -#: ../../mod/admin.php:923 -#, php-format -msgid "Account '%s' unblocked" -msgstr "La cuenta '%s' ha sido desbloqueada" +#: ../../Zotlabs/Module/Settings.php:591 ../../Zotlabs/Module/Settings.php:592 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20" -#: ../../mod/admin.php:985 ../../mod/admin.php:997 -msgid "Users" -msgstr "Usuarios" +#: ../../Zotlabs/Module/Settings.php:592 ../../Zotlabs/Module/Settings.php:618 +msgid "Consumer Secret" +msgstr "Consumer Secret" -#: ../../mod/admin.php:987 ../../mod/admin.php:1151 -msgid "select all" -msgstr "seleccionar todo" +#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619 +msgid "Redirect" +msgstr "Redirigir" -#: ../../mod/admin.php:988 -msgid "User registrations waiting for confirm" -msgstr "Registros de usuario en espera de aprobación" +#: ../../Zotlabs/Module/Settings.php:593 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera" -#: ../../mod/admin.php:989 -msgid "Request date" -msgstr "Fecha de solicitud" +#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620 +msgid "Icon url" +msgstr "Dirección del icono" -#: ../../mod/admin.php:990 -msgid "No registrations." -msgstr "Sin registros." +#: ../../Zotlabs/Module/Settings.php:594 +msgid "Optional" +msgstr "Opcional" -#: ../../mod/admin.php:991 ../../mod/connections.php:271 -msgid "Approve" -msgstr "Aprobar" +#: ../../Zotlabs/Module/Settings.php:605 +msgid "Application not found." +msgstr "Aplicación no encontrada." -#: ../../mod/admin.php:992 -msgid "Deny" -msgstr "Rechazar" +#: ../../Zotlabs/Module/Settings.php:648 +msgid "Connected Apps" +msgstr "Aplicaciones conectadas" -#: ../../mod/admin.php:994 ../../mod/connedit.php:537 -msgid "Block" -msgstr "Bloquear" +#: ../../Zotlabs/Module/Settings.php:652 +msgid "Client key starts with" +msgstr "La \"client key\" empieza por" -#: ../../mod/admin.php:995 ../../mod/connedit.php:537 -msgid "Unblock" -msgstr "Desbloquear" +#: ../../Zotlabs/Module/Settings.php:653 +msgid "No name" +msgstr "Sin nombre" -#: ../../mod/admin.php:998 -msgid "Register date" -msgstr "Fecha de registro" +#: ../../Zotlabs/Module/Settings.php:654 +msgid "Remove authorization" +msgstr "Eliminar autorización" -#: ../../mod/admin.php:998 -msgid "Last login" -msgstr "Último acceso" +#: ../../Zotlabs/Module/Settings.php:667 +msgid "No feature settings configured" +msgstr "No se ha establecido la configuración de los complementos" -#: ../../mod/admin.php:998 -msgid "Expires" -msgstr "Caduca" +#: ../../Zotlabs/Module/Settings.php:674 +msgid "Feature/Addon Settings" +msgstr "Ajustes de los complementos" -#: ../../mod/admin.php:998 -msgid "Service Class" -msgstr "Clase de servicio" +#: ../../Zotlabs/Module/Settings.php:697 +msgid "Account Settings" +msgstr "Configuración de la cuenta" -#: ../../mod/admin.php:1000 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "¡Las cuentas seleccionadas van a ser eliminadas!\\n\\n¡Todo lo que estas cuentas han publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?" +#: ../../Zotlabs/Module/Settings.php:698 +msgid "Current Password" +msgstr "Contraseña actual" -#: ../../mod/admin.php:1001 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "¡La cuenta {0} va a ser eliminada!\\n\\n¡Todo lo que esta cuenta ha publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?" +#: ../../Zotlabs/Module/Settings.php:699 +msgid "Enter New Password" +msgstr "Escribir una nueva contraseña" -#: ../../mod/admin.php:1037 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s canales censurados/no censurados" -msgstr[1] "%s canales censurados/no censurados" +#: ../../Zotlabs/Module/Settings.php:700 +msgid "Confirm New Password" +msgstr "Confirmar la nueva contraseña" -#: ../../mod/admin.php:1046 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "%s código permitido/no permitido al canal" -msgstr[1] "%s código permitido/no permitido al canal" +#: ../../Zotlabs/Module/Settings.php:700 +msgid "Leave password fields blank unless changing" +msgstr "Dejar en blanco la contraseña a menos que desee cambiarla." -#: ../../mod/admin.php:1053 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s canales eliminados" -msgstr[1] "%s canales eliminados" +#: ../../Zotlabs/Module/Settings.php:702 +#: ../../Zotlabs/Module/Settings.php:1039 +msgid "Email Address:" +msgstr "Dirección de correo electrónico:" -#: ../../mod/admin.php:1073 -msgid "Channel not found" -msgstr "Canal no encontrado" +#: ../../Zotlabs/Module/Settings.php:704 +msgid "Remove this account including all its channels" +msgstr "Eliminar esta cuenta incluyendo todos sus canales" -#: ../../mod/admin.php:1084 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Canal '%s' eliminado" +#: ../../Zotlabs/Module/Settings.php:727 +msgid "Additional Features" +msgstr "Funcionalidades" -#: ../../mod/admin.php:1096 -#, php-format -msgid "Channel '%s' censored" -msgstr "Canal '%s' censurado" +#: ../../Zotlabs/Module/Settings.php:751 +msgid "Connector Settings" +msgstr "Configuración del conector" -#: ../../mod/admin.php:1096 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Canal '%s' no censurado" +#: ../../Zotlabs/Module/Settings.php:790 +msgid "No special theme for mobile devices" +msgstr "Sin tema especial para dispositivos móviles" -#: ../../mod/admin.php:1107 +#: ../../Zotlabs/Module/Settings.php:793 #, php-format -msgid "Channel '%s' code allowed" -msgstr "Código permitido al canal '%s'" +msgid "%s - (Experimental)" +msgstr "%s - (Experimental)" -#: ../../mod/admin.php:1107 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Código no permitido al canal '%s'" - -#: ../../mod/admin.php:1153 -msgid "Censor" -msgstr "Censurar" +#: ../../Zotlabs/Module/Settings.php:835 +msgid "Display Settings" +msgstr "Ajustes de visualización" -#: ../../mod/admin.php:1154 -msgid "Uncensor" -msgstr "No censurar" +#: ../../Zotlabs/Module/Settings.php:836 +msgid "Theme Settings" +msgstr "Ajustes del tema" -#: ../../mod/admin.php:1155 -msgid "Allow Code" -msgstr "Permitir código" +#: ../../Zotlabs/Module/Settings.php:837 +msgid "Custom Theme Settings" +msgstr "Ajustes personalizados del tema" -#: ../../mod/admin.php:1156 -msgid "Disallow Code" -msgstr "No permitir código" +#: ../../Zotlabs/Module/Settings.php:838 +msgid "Content Settings" +msgstr "Ajustes del contenido" -#: ../../mod/admin.php:1158 -msgid "UID" -msgstr "UID" +#: ../../Zotlabs/Module/Settings.php:844 +msgid "Display Theme:" +msgstr "Tema gráfico del perfil:" -#: ../../mod/admin.php:1158 ../../mod/profiles.php:465 ../../mod/locs.php:114 -msgid "Address" -msgstr "Dirección" +#: ../../Zotlabs/Module/Settings.php:845 +msgid "Mobile Theme:" +msgstr "Tema para el móvil:" -#: ../../mod/admin.php:1160 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Los canales seleccionados se eliminarán!\\n\\nTodo lo publicado por estos canales en este sitio se borrarán definitivamente!\\n\\n¿Está seguro de querer hacerlo?" +#: ../../Zotlabs/Module/Settings.php:846 +msgid "Preload images before rendering the page" +msgstr "Carga previa de las imágenes antes de generar la página" -#: ../../mod/admin.php:1161 +#: ../../Zotlabs/Module/Settings.php:846 msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "El canal {0} va a ser eliminado!\\n\\nTodo lo publicado por el canal en este sitio se borrará definitivamente!\\n\\n¿Está seguro de querer hacerlo?" - -#: ../../mod/admin.php:1218 -#, php-format -msgid "Plugin %s disabled." -msgstr "Extensión %s desactivada." +"The subjective page load time will be longer but the page will be ready when" +" displayed" +msgstr "El tiempo subjetivo de carga de la página será más largo, pero la página estará lista cuando se muestre." -#: ../../mod/admin.php:1222 -#, php-format -msgid "Plugin %s enabled." -msgstr "Extensión %s activada." +#: ../../Zotlabs/Module/Settings.php:847 +msgid "Enable user zoom on mobile devices" +msgstr "Habilitar zoom de usuario en dispositivos móviles" -#: ../../mod/admin.php:1232 ../../mod/admin.php:1458 -msgid "Disable" -msgstr "Desactivar" +#: ../../Zotlabs/Module/Settings.php:848 +msgid "Update browser every xx seconds" +msgstr "Actualizar navegador cada xx segundos" -#: ../../mod/admin.php:1235 ../../mod/admin.php:1460 -msgid "Enable" -msgstr "Activar" +#: ../../Zotlabs/Module/Settings.php:848 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Mínimo de 10 segundos, sin máximo" -#: ../../mod/admin.php:1265 ../../mod/admin.php:1487 -msgid "Toggle" -msgstr "Cambiar" +#: ../../Zotlabs/Module/Settings.php:849 +msgid "Maximum number of conversations to load at any time:" +msgstr "Máximo número de conversaciones a cargar en cualquier momento:" -#: ../../mod/admin.php:1273 ../../mod/admin.php:1497 -msgid "Author: " -msgstr "Autor:" +#: ../../Zotlabs/Module/Settings.php:849 +msgid "Maximum of 100 items" +msgstr "Máximo de 100 elementos" -#: ../../mod/admin.php:1274 ../../mod/admin.php:1498 -msgid "Maintainer: " -msgstr "Mantenedor:" +#: ../../Zotlabs/Module/Settings.php:850 +msgid "Show emoticons (smilies) as images" +msgstr "Mostrar emoticonos (smilies) como imágenes" -#: ../../mod/admin.php:1275 -msgid "Minimum project version: " -msgstr "Versión mínima del proyecto:" +#: ../../Zotlabs/Module/Settings.php:851 +msgid "Link post titles to source" +msgstr "Enlazar título de la publicación a la fuente original" -#: ../../mod/admin.php:1276 -msgid "Maximum project version: " -msgstr "Versión máxima del proyecto:" +#: ../../Zotlabs/Module/Settings.php:852 +msgid "System Page Layout Editor - (advanced)" +msgstr "Editor de plantilla de página del sistema - (avanzado)" -#: ../../mod/admin.php:1277 -msgid "Minimum PHP version: " -msgstr "Versión mínima de PHP:" +#: ../../Zotlabs/Module/Settings.php:855 +msgid "Use blog/list mode on channel page" +msgstr "Usar modo blog/lista en la página de inicio del canal" -#: ../../mod/admin.php:1278 -msgid "Requires: " -msgstr "Se requiere:" +#: ../../Zotlabs/Module/Settings.php:855 ../../Zotlabs/Module/Settings.php:856 +msgid "(comments displayed separately)" +msgstr "(comentarios mostrados de forma separada)" -#: ../../mod/admin.php:1279 ../../mod/admin.php:1330 -msgid "Disabled - version incompatibility" -msgstr "Deshabilitado - versiones incompatibles" +#: ../../Zotlabs/Module/Settings.php:856 +msgid "Use blog/list mode on grid page" +msgstr "Mostrar mi red en modo blog" -#: ../../mod/admin.php:1423 -msgid "No themes found." -msgstr "No se han encontrado temas." +#: ../../Zotlabs/Module/Settings.php:857 +msgid "Channel page max height of content (in pixels)" +msgstr "Altura máxima del contenido de la página del canal (en píxeles)" -#: ../../mod/admin.php:1479 -msgid "Screenshot" -msgstr "Instantánea de pantalla" +#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 +msgid "click to expand content exceeding this height" +msgstr "Pulsar para expandir el contenido que exceda de esta altura" -#: ../../mod/admin.php:1525 -msgid "[Experimental]" -msgstr "[Experimental]" +#: ../../Zotlabs/Module/Settings.php:858 +msgid "Grid page max height of content (in pixels)" +msgstr "Altura máxima del contenido de mi red (en píxeles)" -#: ../../mod/admin.php:1526 -msgid "[Unsupported]" -msgstr "[No soportado]" +#: ../../Zotlabs/Module/Settings.php:892 +msgid "Nobody except yourself" +msgstr "Nadie excepto usted" -#: ../../mod/admin.php:1550 -msgid "Log settings updated." -msgstr "Actualizado el informe de configuraciones." +#: ../../Zotlabs/Module/Settings.php:893 +msgid "Only those you specifically allow" +msgstr "Solo aquellos a los que usted permita explícitamente" -#: ../../mod/admin.php:1607 -msgid "Clear" -msgstr "Vaciar" +#: ../../Zotlabs/Module/Settings.php:894 +msgid "Approved connections" +msgstr "Conexiones aprobadas" -#: ../../mod/admin.php:1613 -msgid "Debugging" -msgstr "Depuración" +#: ../../Zotlabs/Module/Settings.php:895 +msgid "Any connections" +msgstr "Cualquier conexión" -#: ../../mod/admin.php:1614 -msgid "Log file" -msgstr "Fichero de informe" +#: ../../Zotlabs/Module/Settings.php:896 +msgid "Anybody on this website" +msgstr "Cualquiera en este sitio web" -#: ../../mod/admin.php:1614 -msgid "" -"Must be writable by web server. Relative to your Red top-level directory." -msgstr "Debe tener permisos de escritura por el servidor web. La ruta es relativa al directorio de instalación de Hubzilla." +#: ../../Zotlabs/Module/Settings.php:897 +msgid "Anybody in this network" +msgstr "Cualquiera en esta red" -#: ../../mod/admin.php:1615 -msgid "Log level" -msgstr "Nivel de depuración" +#: ../../Zotlabs/Module/Settings.php:898 +msgid "Anybody authenticated" +msgstr "Cualquiera que esté autenticado" -#: ../../mod/admin.php:1682 -msgid "New Profile Field" -msgstr "Nuevo campo en el perfil" +#: ../../Zotlabs/Module/Settings.php:899 +msgid "Anybody on the internet" +msgstr "Cualquiera en internet" -#: ../../mod/admin.php:1683 ../../mod/admin.php:1703 -msgid "Field nickname" -msgstr "Alias del campo" +#: ../../Zotlabs/Module/Settings.php:974 +msgid "Publish your default profile in the network directory" +msgstr "Publicar su perfil principal en el directorio de la red" -#: ../../mod/admin.php:1683 ../../mod/admin.php:1703 -msgid "System name of field" -msgstr "Nombre del campo en el sistema" +#: ../../Zotlabs/Module/Settings.php:979 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "¿Nos permite sugerirle como amigo potencial a los nuevos miembros?" -#: ../../mod/admin.php:1684 ../../mod/admin.php:1704 -msgid "Input type" -msgstr "Tipo de entrada" +#: ../../Zotlabs/Module/Settings.php:988 +msgid "Your channel address is" +msgstr "Su dirección de canal es" -#: ../../mod/admin.php:1685 ../../mod/admin.php:1705 -msgid "Field Name" -msgstr "Nombre del campo" +#: ../../Zotlabs/Module/Settings.php:1030 +msgid "Channel Settings" +msgstr "Ajustes del canal" -#: ../../mod/admin.php:1685 ../../mod/admin.php:1705 -msgid "Label on profile pages" -msgstr "Etiqueta a mostrar en la página del perfil" +#: ../../Zotlabs/Module/Settings.php:1037 +msgid "Basic Settings" +msgstr "Configuración básica" -#: ../../mod/admin.php:1686 ../../mod/admin.php:1706 -msgid "Help text" -msgstr "Texto de ayuda" +#: ../../Zotlabs/Module/Settings.php:1038 ../../include/identity.php:1279 +msgid "Full Name:" +msgstr "Nombre completo:" -#: ../../mod/admin.php:1686 ../../mod/admin.php:1706 -msgid "Additional info (optional)" -msgstr "Información adicional (opcional)" +#: ../../Zotlabs/Module/Settings.php:1040 +msgid "Your Timezone:" +msgstr "Su huso horario:" -#: ../../mod/admin.php:1696 -msgid "Field definition not found" -msgstr "Definición del campo no encontrada" +#: ../../Zotlabs/Module/Settings.php:1041 +msgid "Default Post Location:" +msgstr "Localización geográfica predeterminada para sus publicaciones:" -#: ../../mod/admin.php:1702 -msgid "Edit Profile Field" -msgstr "Modificar el campo del perfil" +#: ../../Zotlabs/Module/Settings.php:1041 +msgid "Geographical location to display on your posts" +msgstr "Localización geográfica que debe mostrarse en sus publicaciones" -#: ../../mod/admin.php:1761 -msgid "Basic Profile Fields" -msgstr "Campos básicos del perfil" +#: ../../Zotlabs/Module/Settings.php:1042 +msgid "Use Browser Location:" +msgstr "Usar la localización geográfica del navegador:" -#: ../../mod/admin.php:1762 -msgid "Advanced Profile Fields" -msgstr "Campos avanzados del perfil" +#: ../../Zotlabs/Module/Settings.php:1044 +msgid "Adult Content" +msgstr "Contenido solo para adultos" -#: ../../mod/admin.php:1762 -msgid "(In addition to basic fields)" -msgstr "(Además de los campos básicos)" +#: ../../Zotlabs/Module/Settings.php:1044 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)" -#: ../../mod/admin.php:1764 -msgid "All available fields" -msgstr "Todos los campos disponibles" +#: ../../Zotlabs/Module/Settings.php:1046 +msgid "Security and Privacy Settings" +msgstr "Configuración de seguridad y privacidad" -#: ../../mod/admin.php:1765 -msgid "Custom Fields" -msgstr "Campos personalizados" +#: ../../Zotlabs/Module/Settings.php:1049 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "Sus permisos ya están configurados. Pulse para ver/ajustar" -#: ../../mod/admin.php:1769 -msgid "Create Custom Field" -msgstr "Crear un campo personalizado" +#: ../../Zotlabs/Module/Settings.php:1051 +msgid "Hide my online presence" +msgstr "Ocultar mi presencia en línea" -#: ../../mod/api.php:74 ../../mod/api.php:98 -msgid "Authorize application connection" -msgstr "Autorizar una conexión de aplicación" +#: ../../Zotlabs/Module/Settings.php:1051 +msgid "Prevents displaying in your profile that you are online" +msgstr "Evitar mostrar en su perfil que está en línea" -#: ../../mod/api.php:75 -msgid "Return to your app and insert this Securty Code:" -msgstr "Volver a su aplicación e introducir este código de seguridad:" +#: ../../Zotlabs/Module/Settings.php:1053 +msgid "Simple Privacy Settings:" +msgstr "Configuración de privacidad sencilla:" -#: ../../mod/api.php:85 -msgid "Please login to continue." -msgstr "Por favor inicie sesión para continuar." +#: ../../Zotlabs/Module/Settings.php:1054 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Muy Público - extremadamente permisivo (debería ser usado con precaución)" -#: ../../mod/api.php:100 +#: ../../Zotlabs/Module/Settings.php:1055 msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)" -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "Error del protocolo OpenID. Ningún ID recibido como respuesta." +#: ../../Zotlabs/Module/Settings.php:1056 +msgid "Private - default private, never open or public" +msgstr "Privado - por defecto, privado, nunca abierto o público" -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." -msgstr "Aplicación instalada." +#: ../../Zotlabs/Module/Settings.php:1057 +msgid "Blocked - default blocked to/from everybody" +msgstr "Bloqueado - por defecto, bloqueado/a para cualquiera" -#: ../../mod/appman.php:37 -msgid "Malformed app." -msgstr "Aplicación con errores" +#: ../../Zotlabs/Module/Settings.php:1059 +msgid "Allow others to tag your posts" +msgstr "Permitir a otros etiquetar sus publicaciones" -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "Código incorporado" +#: ../../Zotlabs/Module/Settings.php:1059 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva." -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "Modificar la aplicación" +#: ../../Zotlabs/Module/Settings.php:1061 +msgid "Advanced Privacy Settings" +msgstr "Configuración de privacidad avanzada" -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "Crear una aplicación" +#: ../../Zotlabs/Module/Settings.php:1063 +msgid "Expire other channel content after this many days" +msgstr "Caducar contenido de otros canales después de este número de días" -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "Nombre de la aplicación" +#: ../../Zotlabs/Module/Settings.php:1063 +#, php-format +msgid "" +"0 or blank to use the website limit. The website expires after %d days." +msgstr "0 o en blanco para usar el límite del sitio. El sitio web caduca después de %d días." -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "Dirección (URL) de la aplicación" +#: ../../Zotlabs/Module/Settings.php:1064 +msgid "Maximum Friend Requests/Day:" +msgstr "Máximo de solicitudes de amistad por día:" -#: ../../mod/appman.php:93 ../../mod/events.php:457 ../../mod/rbmark.php:97 -msgid "Description" -msgstr "Descripción" +#: ../../Zotlabs/Module/Settings.php:1064 +msgid "May reduce spam activity" +msgstr "Podría reducir la actividad de spam" -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "Dirección del icono" +#: ../../Zotlabs/Module/Settings.php:1065 +msgid "Default Post Permissions" +msgstr "Permisos de publicación predeterminados" -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixels - opcional" - -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "Versión" +#: ../../Zotlabs/Module/Settings.php:1070 +msgid "Channel permissions category:" +msgstr "Categoría de permisos del canal:" -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "Precio de la aplicación" +#: ../../Zotlabs/Module/Settings.php:1076 +msgid "Maximum private messages per day from unknown people:" +msgstr "Máximo de mensajes privados por día de gente desconocida:" -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "Dirección (URL) donde adquirir la aplicación" +#: ../../Zotlabs/Module/Settings.php:1076 +msgid "Useful to reduce spamming" +msgstr "Útil para reducir el envío de correo no deseado" -#: ../../mod/page.php:36 ../../mod/block.php:27 -msgid "Invalid item." -msgstr "Elemento no válido." +#: ../../Zotlabs/Module/Settings.php:1079 +msgid "Notification Settings" +msgstr "Configuración de las notificaciones" -#: ../../mod/page.php:52 ../../mod/block.php:39 ../../mod/cal.php:61 -#: ../../mod/wall_upload.php:29 -msgid "Channel not found." -msgstr "Canal no encontrado." +#: ../../Zotlabs/Module/Settings.php:1080 +msgid "By default post a status message when:" +msgstr "Por defecto, enviar un mensaje de estado cuando:" -#: ../../mod/page.php:129 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +#: ../../Zotlabs/Module/Settings.php:1081 +msgid "accepting a friend request" +msgstr "Acepte una solicitud de amistad" -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Elemento no disponible" +#: ../../Zotlabs/Module/Settings.php:1082 +msgid "joining a forum/community" +msgstr "al unirse a un foro o comunidad" -#: ../../mod/pconfig.php:27 ../../mod/pconfig.php:60 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada." +#: ../../Zotlabs/Module/Settings.php:1083 +msgid "making an interesting profile change" +msgstr "Realice un cambio interesante en su perfil" -#: ../../mod/pconfig.php:49 -msgid "Configuration Editor" -msgstr "Editor de configuración" +#: ../../Zotlabs/Module/Settings.php:1084 +msgid "Send a notification email when:" +msgstr "Enviar una notificación por correo electrónico cuando:" -#: ../../mod/pconfig.php:50 -msgid "" -"Warning: Changing some settings could render your channel inoperable. Please" -" leave this page unless you are comfortable with and knowledgeable about how" -" to correctly use this feature." -msgstr "Atención: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica." +#: ../../Zotlabs/Module/Settings.php:1085 +msgid "You receive a connection request" +msgstr "Reciba una solicitud de conexión" -#: ../../mod/pdledit.php:14 -msgid "Layout updated." -msgstr "Plantilla actualizada." +#: ../../Zotlabs/Module/Settings.php:1086 +msgid "Your connections are confirmed" +msgstr "Sus conexiones hayan sido confirmadas" -#: ../../mod/pdledit.php:30 ../../mod/pdledit.php:57 -msgid "Edit System Page Description" -msgstr "Editor del Sistema de Descripción de Páginas" +#: ../../Zotlabs/Module/Settings.php:1087 +msgid "Someone writes on your profile wall" +msgstr "Alguien escriba en la página de su perfil (\"muro\")" -#: ../../mod/pdledit.php:52 -msgid "Layout not found." -msgstr "Plantilla no encontrada" +#: ../../Zotlabs/Module/Settings.php:1088 +msgid "Someone writes a followup comment" +msgstr "Alguien escriba un comentario sobre sus publicaciones" -#: ../../mod/pdledit.php:58 -msgid "Module Name:" -msgstr "Nombre del módulo:" +#: ../../Zotlabs/Module/Settings.php:1089 +msgid "You receive a private message" +msgstr "Reciba un mensaje privado" -#: ../../mod/pdledit.php:59 -msgid "Layout Help" -msgstr "Ayuda para el diseño de plantillas de página" +#: ../../Zotlabs/Module/Settings.php:1090 +msgid "You receive a friend suggestion" +msgstr "Reciba una sugerencia de amistad" -#: ../../mod/editpost.php:20 ../../mod/editblock.php:78 -#: ../../mod/editblock.php:94 ../../mod/editlayout.php:76 -#: ../../mod/editwebpage.php:77 -msgid "Item not found" -msgstr "Elemento no encontrado" +#: ../../Zotlabs/Module/Settings.php:1091 +msgid "You are tagged in a post" +msgstr "Usted sea etiquetado en una publicación" -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "El elemento no es editable" +#: ../../Zotlabs/Module/Settings.php:1092 +msgid "You are poked/prodded/etc. in a post" +msgstr "Reciba un toque o incitación en una publicación" -#: ../../mod/editpost.php:57 -msgid "Delete item?" -msgstr "¿Borrar elemento?" +#: ../../Zotlabs/Module/Settings.php:1095 +msgid "Show visual notifications including:" +msgstr "Mostrar notificaciones visuales que incluyan:" -#: ../../mod/editpost.php:123 ../../mod/editblock.php:146 -#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:186 -msgid "Insert YouTube video" -msgstr "Insertar vídeo de YouTube" +#: ../../Zotlabs/Module/Settings.php:1097 +msgid "Unseen grid activity" +msgstr "Nueva actividad en la red" -#: ../../mod/editpost.php:124 ../../mod/editblock.php:147 -#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:187 -msgid "Insert Vorbis [.ogg] video" -msgstr "Insertar vídeo Vorbis [.ogg]" +#: ../../Zotlabs/Module/Settings.php:1098 +msgid "Unseen channel activity" +msgstr "Actividad no vista en el canal" -#: ../../mod/editpost.php:125 ../../mod/editblock.php:148 -#: ../../mod/editlayout.php:146 ../../mod/editwebpage.php:188 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Insertar audio Vorbis [.ogg]" +#: ../../Zotlabs/Module/Settings.php:1099 +msgid "Unseen private messages" +msgstr "Mensajes privados no leídos" -#: ../../mod/editpost.php:166 ../../mod/rpost.php:128 -msgid "Edit post" -msgstr "Editar la entrada" +#: ../../Zotlabs/Module/Settings.php:1099 +#: ../../Zotlabs/Module/Settings.php:1104 +#: ../../Zotlabs/Module/Settings.php:1105 +#: ../../Zotlabs/Module/Settings.php:1106 +msgid "Recommended" +msgstr "Recomendado" -#: ../../mod/photos.php:79 -msgid "Page owner information could not be retrieved." -msgstr "La información del propietario de la página no pudo ser recuperada." +#: ../../Zotlabs/Module/Settings.php:1100 +msgid "Upcoming events" +msgstr "Próximos eventos" -#: ../../mod/photos.php:100 ../../mod/photos.php:144 -msgid "Album not found." -msgstr "Álbum no encontrado." +#: ../../Zotlabs/Module/Settings.php:1101 +msgid "Events today" +msgstr "Eventos de hoy" -#: ../../mod/photos.php:127 -msgid "Delete Album" -msgstr "Borrar álbum" +#: ../../Zotlabs/Module/Settings.php:1102 +msgid "Upcoming birthdays" +msgstr "Próximos cumpleaños" -#: ../../mod/photos.php:148 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "Hay varias carpetas con este nombre de álbum, pero dentro de diferentes directorios. Por favor, elimine la carpeta o carpetas que desee utilizando el administrador de ficheros" +#: ../../Zotlabs/Module/Settings.php:1102 +msgid "Not available in all themes" +msgstr "No disponible en todos los temas" -#: ../../mod/photos.php:205 ../../mod/photos.php:1048 -msgid "Delete Photo" -msgstr "Borrar foto" +#: ../../Zotlabs/Module/Settings.php:1103 +msgid "System (personal) notifications" +msgstr "Notificaciones del sistema (personales)" -#: ../../mod/photos.php:517 ../../mod/directory.php:59 -#: ../../mod/display.php:17 ../../mod/ratings.php:82 ../../mod/search.php:13 -#: ../../mod/viewconnections.php:17 -msgid "Public access denied." -msgstr "Acceso público denegado." +#: ../../Zotlabs/Module/Settings.php:1104 +msgid "System info messages" +msgstr "Mensajes de información del sistema" -#: ../../mod/photos.php:528 -msgid "No photos selected" -msgstr "No hay fotos seleccionadas" +#: ../../Zotlabs/Module/Settings.php:1105 +msgid "System critical alerts" +msgstr "Alertas críticas del sistema" -#: ../../mod/photos.php:577 -msgid "Access to this item is restricted." -msgstr "El acceso a este elemento está restringido." +#: ../../Zotlabs/Module/Settings.php:1106 +msgid "New connections" +msgstr "Nuevas conexiones" -#: ../../mod/photos.php:616 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB de %2$.2f MB de almacenamiento de fotos utilizado." +#: ../../Zotlabs/Module/Settings.php:1107 +msgid "System Registrations" +msgstr "Registros del sistema" -#: ../../mod/photos.php:619 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB de almacenamiento de fotos utilizado." +#: ../../Zotlabs/Module/Settings.php:1108 +msgid "" +"Also show new wall posts, private messages and connections under Notices" +msgstr "Mostrar también en Avisos las nuevas publicaciones, los mensajes privados y las conexiones" -#: ../../mod/photos.php:655 -msgid "Upload Photos" -msgstr "Subir fotos" +#: ../../Zotlabs/Module/Settings.php:1110 +msgid "Notify me of events this many days in advance" +msgstr "Avisarme de los eventos con algunos días de antelación" -#: ../../mod/photos.php:659 -msgid "Enter an album name" -msgstr "Introducir un nombre de álbum" +#: ../../Zotlabs/Module/Settings.php:1110 +msgid "Must be greater than 0" +msgstr "Debe ser mayor que 0" -#: ../../mod/photos.php:660 -msgid "or select an existing album (doubleclick)" -msgstr "o seleccionar uno existente (doble click)" +#: ../../Zotlabs/Module/Settings.php:1112 +msgid "Advanced Account/Page Type Settings" +msgstr "Ajustes avanzados de la cuenta y de los tipos de página" -#: ../../mod/photos.php:661 -msgid "Create a status post for this upload" -msgstr "Crear un mensaje de estado para esta subida" +#: ../../Zotlabs/Module/Settings.php:1113 +msgid "Change the behaviour of this account for special situations" +msgstr "Cambiar el comportamiento de esta cuenta en situaciones especiales" -#: ../../mod/photos.php:662 -msgid "Caption (optional):" -msgstr "Título (opcional):" +#: ../../Zotlabs/Module/Settings.php:1116 +msgid "" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" +msgstr "¡Activar el modo de experto (en Ajustes > Funcionalidades) para realizar cambios!." -#: ../../mod/photos.php:663 -msgid "Description (optional):" -msgstr "Descripción (opcional):" +#: ../../Zotlabs/Module/Settings.php:1117 +msgid "Miscellaneous Settings" +msgstr "Ajustes diversos" -#: ../../mod/photos.php:690 -msgid "Album name could not be decoded" -msgstr "El nombre del álbum no ha podido ser descifrado" +#: ../../Zotlabs/Module/Settings.php:1118 +msgid "Default photo upload folder" +msgstr "Carpeta por defecto de las fotos subidas" -#: ../../mod/photos.php:738 ../../mod/photos.php:1278 -#: ../../mod/photos.php:1295 -msgid "Contact Photos" -msgstr "Fotos de contacto" +#: ../../Zotlabs/Module/Settings.php:1118 +#: ../../Zotlabs/Module/Settings.php:1119 +msgid "%Y - current year, %m - current month" +msgstr "%Y - año en curso, %m - mes actual" -#: ../../mod/photos.php:761 -msgid "Show Newest First" -msgstr "Mostrar lo más reciente primero" +#: ../../Zotlabs/Module/Settings.php:1119 +msgid "Default file upload folder" +msgstr "Carpeta por defecto de los archivos subidos" -#: ../../mod/photos.php:763 -msgid "Show Oldest First" -msgstr "Mostrar lo más antiguo primero" +#: ../../Zotlabs/Module/Settings.php:1121 +msgid "Personal menu to display in your channel pages" +msgstr "Menú personal que debe mostrarse en las páginas de su canal" -#: ../../mod/photos.php:865 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Permiso denegado. El acceso a este elemento puede estar restringido." +#: ../../Zotlabs/Module/Settings.php:1123 +msgid "Remove this channel." +msgstr "Eliminar este canal." -#: ../../mod/photos.php:867 -msgid "Photo not available" -msgstr "Foto no disponible" +#: ../../Zotlabs/Module/Settings.php:1124 +msgid "Firefox Share $Projectname provider" +msgstr "Servicio de compartición de Firefox: proveedor $Projectname" -#: ../../mod/photos.php:925 -msgid "Use as profile photo" -msgstr "Usar como foto del perfil" +#: ../../Zotlabs/Module/Settings.php:1125 +msgid "Start calendar week on monday" +msgstr "Comenzar el calendario semanal por el lunes" -#: ../../mod/photos.php:926 -msgid "Use as cover photo" -msgstr "Usar como imagen de portada del perfil" +#: ../../Zotlabs/Module/Setup.php:202 +msgid "$Projectname Server - Setup" +msgstr "Servidor $Projectname - Instalación" -#: ../../mod/photos.php:933 -msgid "Private Photo" -msgstr "Foto privada" +#: ../../Zotlabs/Module/Setup.php:206 +msgid "Could not connect to database." +msgstr "No se ha podido conectar a la base de datos." -#: ../../mod/photos.php:944 ../../mod/cal.php:331 ../../mod/cal.php:338 -#: ../../mod/events.php:659 ../../mod/events.php:666 -msgid "Previous" -msgstr "Anterior" +#: ../../Zotlabs/Module/Setup.php:210 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "No se puede conectar con la dirección del sitio indicada. Podría tratarse de un problema de SSL o DNS." -#: ../../mod/photos.php:948 -msgid "View Full Size" -msgstr "Ver tamaño completo" +#: ../../Zotlabs/Module/Setup.php:217 +msgid "Could not create table." +msgstr "No se puede crear la tabla." -#: ../../mod/photos.php:953 ../../mod/cal.php:332 ../../mod/cal.php:339 -#: ../../mod/events.php:660 ../../mod/events.php:667 ../../mod/setup.php:291 -msgid "Next" -msgstr "Siguiente" +#: ../../Zotlabs/Module/Setup.php:222 +msgid "Your site database has been installed." +msgstr "La base de datos del sitio ha sido instalada." -#: ../../mod/photos.php:993 ../../mod/tagrm.php:133 -msgid "Remove" -msgstr "Eliminar" +#: ../../Zotlabs/Module/Setup.php:226 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos." -#: ../../mod/photos.php:1027 -msgid "Edit photo" -msgstr "Editar foto" +#: ../../Zotlabs/Module/Setup.php:227 ../../Zotlabs/Module/Setup.php:289 +#: ../../Zotlabs/Module/Setup.php:739 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Por favor, lea el fichero \"install/INSTALL.txt\"." -#: ../../mod/photos.php:1029 -msgid "Rotate CW (right)" -msgstr "Girar CW (a la derecha)" +#: ../../Zotlabs/Module/Setup.php:286 +msgid "System check" +msgstr "Verificación del sistema" -#: ../../mod/photos.php:1030 -msgid "Rotate CCW (left)" -msgstr "Girar CCW (a la izquierda)" +#: ../../Zotlabs/Module/Setup.php:291 +msgid "Check again" +msgstr "Verificar de nuevo" -#: ../../mod/photos.php:1033 -msgid "Enter a new album name" -msgstr "Introducir un nuevo nombre de álbum" +#: ../../Zotlabs/Module/Setup.php:313 +msgid "Database connection" +msgstr "Conexión a la base de datos" -#: ../../mod/photos.php:1034 -msgid "or select an existing one (doubleclick)" -msgstr "o seleccionar uno (doble click) existente" +#: ../../Zotlabs/Module/Setup.php:314 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "Para instalar $Projectname es necesario saber cómo conectar con su base de datos." -#: ../../mod/photos.php:1037 -msgid "Caption" -msgstr "Título" +#: ../../Zotlabs/Module/Setup.php:315 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Por favor, contacte con el proveedor de servicios o el administrador del sitio si tiene dudas sobre estos ajustes." -#: ../../mod/photos.php:1039 -msgid "Add a Tag" -msgstr "Añadir una etiqueta" - -#: ../../mod/photos.php:1043 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Ejemplos: @eva, @Carmen_Osuna, @jaime@ejemplo.com" +#: ../../Zotlabs/Module/Setup.php:316 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "La base de datos que especifique a continuación debe existir ya. Si no es así, por favor, créela antes de seguir." -#: ../../mod/photos.php:1046 -msgid "Flag as adult in album view" -msgstr "Marcar como \"solo para adultos\" en el álbum" +#: ../../Zotlabs/Module/Setup.php:320 +msgid "Database Server Name" +msgstr "Nombre del servidor de base de datos" -#: ../../mod/photos.php:1238 -msgid "In This Photo:" -msgstr "En esta foto:" +#: ../../Zotlabs/Module/Setup.php:320 +msgid "Default is 127.0.0.1" +msgstr "De forma predeterminada es 127.0.0.1" -#: ../../mod/photos.php:1243 -msgid "Map" -msgstr "Mapa" +#: ../../Zotlabs/Module/Setup.php:321 +msgid "Database Port" +msgstr "Puerto de la base de datos" -#: ../../mod/photos.php:1334 -msgid "View Album" -msgstr "Ver álbum" +#: ../../Zotlabs/Module/Setup.php:321 +msgid "Communication port number - use 0 for default" +msgstr "Número del puerto de comunicaciones - use 0 como valor por defecto" -#: ../../mod/photos.php:1345 ../../mod/photos.php:1358 -#: ../../mod/photos.php:1359 -msgid "Recent Photos" -msgstr "Fotos recientes" +#: ../../Zotlabs/Module/Setup.php:322 +msgid "Database Login Name" +msgstr "Usuario de la base de datos" -#: ../../mod/bookmarks.php:49 -msgid "Bookmark added" -msgstr "Marcador añadido" +#: ../../Zotlabs/Module/Setup.php:323 +msgid "Database Login Password" +msgstr "Contraseña de acceso a la base de datos" -#: ../../mod/bookmarks.php:71 -msgid "My Bookmarks" -msgstr "Mis marcadores" +#: ../../Zotlabs/Module/Setup.php:324 +msgid "Database Name" +msgstr "Nombre de la base de datos" -#: ../../mod/bookmarks.php:82 -msgid "My Connections Bookmarks" -msgstr "Marcadores de mis conexiones" +#: ../../Zotlabs/Module/Setup.php:325 +msgid "Database Type" +msgstr "Tipo de base de datos" -#: ../../mod/mitem.php:24 ../../mod/menu.php:140 -msgid "Menu not found." -msgstr "Menú no encontrado" +#: ../../Zotlabs/Module/Setup.php:327 ../../Zotlabs/Module/Setup.php:367 +msgid "Site administrator email address" +msgstr "Dirección de correo electrónico del administrador del sitio" -#: ../../mod/mitem.php:48 -msgid "Unable to create element." -msgstr "Imposible crear el elemento." +#: ../../Zotlabs/Module/Setup.php:327 ../../Zotlabs/Module/Setup.php:367 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Su cuenta deberá usar la misma dirección de correo electrónico para poder utilizar el panel de administración web." -#: ../../mod/mitem.php:72 -msgid "Unable to update menu element." -msgstr "No es posible actualizar el elemento del menú." +#: ../../Zotlabs/Module/Setup.php:328 ../../Zotlabs/Module/Setup.php:369 +msgid "Website URL" +msgstr "Dirección del sitio web" -#: ../../mod/mitem.php:88 -msgid "Unable to add menu element." -msgstr "No es posible añadir el elemento al menú" +#: ../../Zotlabs/Module/Setup.php:328 ../../Zotlabs/Module/Setup.php:369 +msgid "Please use SSL (https) URL if available." +msgstr "Por favor, use SSL (https) si está disponible." -#: ../../mod/mitem.php:116 ../../mod/menu.php:162 ../../mod/xchan.php:37 -msgid "Not found." -msgstr "No encontrado." +#: ../../Zotlabs/Module/Setup.php:329 ../../Zotlabs/Module/Setup.php:372 +msgid "Please select a default timezone for your website" +msgstr "Por favor, selecciones el huso horario por defecto de su sitio web" -#: ../../mod/mitem.php:149 ../../mod/mitem.php:222 -msgid "Menu Item Permissions" -msgstr "Permisos del elemento del menú" +#: ../../Zotlabs/Module/Setup.php:356 +msgid "Site settings" +msgstr "Ajustes del sitio" -#: ../../mod/mitem.php:150 ../../mod/mitem.php:223 ../../mod/settings.php:1075 -msgid "(click to open/close)" -msgstr "(pulsar para abrir o cerrar)" +#: ../../Zotlabs/Module/Setup.php:370 +msgid "Enable $Projectname advanced features?" +msgstr "¿Habilitar las funcionalidades avanzadas de $Projectname ?" -#: ../../mod/mitem.php:152 ../../mod/mitem.php:168 -msgid "Link Name" -msgstr "Nombre del enlace" +#: ../../Zotlabs/Module/Setup.php:370 +msgid "" +"Some advanced features, while useful - may be best suited for technically " +"proficient audiences" +msgstr "Algunas funcionalidades avanzadas, si bien son útiles, pueden ser más adecuadas para un público técnicamente competente" -#: ../../mod/mitem.php:153 ../../mod/mitem.php:227 -msgid "Link or Submenu Target" -msgstr "Destino del enlace o submenú" +#: ../../Zotlabs/Module/Setup.php:422 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "No se puede encontrar una versión en línea de comandos de PHP en la ruta del servidor web." -#: ../../mod/mitem.php:153 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Introducir la dirección del enlace o seleccionar el nombre de un submenú" +#: ../../Zotlabs/Module/Setup.php:423 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." +msgstr "Si no tiene instalada la versión de línea de comandos de PHP en su servidor, no podrá realizar envíos en segundo plano mediante cron." -#: ../../mod/mitem.php:154 ../../mod/mitem.php:228 -msgid "Use magic-auth if available" -msgstr "Usar la autenticación mágica si está disponible" +#: ../../Zotlabs/Module/Setup.php:427 +msgid "PHP executable path" +msgstr "Ruta del ejecutable PHP" -#: ../../mod/mitem.php:155 ../../mod/mitem.php:229 -msgid "Open link in new window" -msgstr "Abrir el enlace en una nueva ventana" +#: ../../Zotlabs/Module/Setup.php:427 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Introducir la ruta completa del ejecutable PHP. Puede dejar la línea en blanco para continuar la instalación." -#: ../../mod/mitem.php:156 ../../mod/mitem.php:230 -msgid "Order in list" -msgstr "Orden en la lista" +#: ../../Zotlabs/Module/Setup.php:432 +msgid "Command line PHP" +msgstr "PHP en línea de comandos" -#: ../../mod/mitem.php:156 ../../mod/mitem.php:230 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Los números más altos irán al final de la lista" +#: ../../Zotlabs/Module/Setup.php:441 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "La línea de comandos PHP de su sistema no tiene activado \"register_argc_argv\"." -#: ../../mod/mitem.php:157 -msgid "Submit and finish" -msgstr "Enviar y terminar" +#: ../../Zotlabs/Module/Setup.php:442 +msgid "This is required for message delivery to work." +msgstr "Esto es necesario para que funcione la transmisión de mensajes." -#: ../../mod/mitem.php:158 -msgid "Submit and continue" -msgstr "Enviar y continuar" +#: ../../Zotlabs/Module/Setup.php:445 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../mod/mitem.php:166 -msgid "Menu:" -msgstr "Menú:" +#: ../../Zotlabs/Module/Setup.php:463 +#, php-format +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to" +" upload is set to %s. You are allowed to upload up to %d files at once." +msgstr "La carga máxima que se le permite subir está establecida en %s. El tamaño máximo de un fichero está establecido en %s. Está permitido subir hasta un máximo de %d ficheros de una sola vez." -#: ../../mod/mitem.php:169 -msgid "Link Target" -msgstr "Destino del enlace" +#: ../../Zotlabs/Module/Setup.php:468 +msgid "You can adjust these settings in the servers php.ini." +msgstr "Puede ajustar estos valores en el fichero php.ini de su servidor." -#: ../../mod/mitem.php:172 -msgid "Edit menu" -msgstr "Editar menú" +#: ../../Zotlabs/Module/Setup.php:470 +msgid "PHP upload limits" +msgstr "Límites PHP de subida" -#: ../../mod/mitem.php:175 -msgid "Edit element" -msgstr "Editar el elemento" +#: ../../Zotlabs/Module/Setup.php:493 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de general claves de cifrado." -#: ../../mod/mitem.php:176 -msgid "Drop element" -msgstr "Eliminar el elemento" +#: ../../Zotlabs/Module/Setup.php:494 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "Si está en un servidor Windows, por favor, lea \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../mod/mitem.php:177 -msgid "New element" -msgstr "Nuevo elemento" +#: ../../Zotlabs/Module/Setup.php:497 +msgid "Generate encryption keys" +msgstr "Generar claves de cifrado" -#: ../../mod/mitem.php:178 -msgid "Edit this menu container" -msgstr "Modificar el contenedor del menú" +#: ../../Zotlabs/Module/Setup.php:509 +msgid "libCurl PHP module" +msgstr "módulo libCurl PHP" -#: ../../mod/mitem.php:179 -msgid "Add menu element" -msgstr "Añadir un elemento al menú" +#: ../../Zotlabs/Module/Setup.php:510 +msgid "GD graphics PHP module" +msgstr "módulo PHP GD graphics" -#: ../../mod/mitem.php:180 -msgid "Delete this menu item" -msgstr "Eliminar este elemento del menú" +#: ../../Zotlabs/Module/Setup.php:511 +msgid "OpenSSL PHP module" +msgstr "módulo PHP OpenSSL" -#: ../../mod/mitem.php:181 -msgid "Edit this menu item" -msgstr "Modificar este elemento del menú" +#: ../../Zotlabs/Module/Setup.php:512 +msgid "mysqli or postgres PHP module" +msgstr "módulo PHP mysqli o postgres" -#: ../../mod/mitem.php:198 -msgid "Menu item not found." -msgstr "Este elemento del menú no se ha encontrado" +#: ../../Zotlabs/Module/Setup.php:513 +msgid "mb_string PHP module" +msgstr "módulo PHP mb_string" -#: ../../mod/mitem.php:211 -msgid "Menu item deleted." -msgstr "Este elemento del menú ha sido borrado" +#: ../../Zotlabs/Module/Setup.php:514 +msgid "mcrypt PHP module" +msgstr "módulo PHP mcrypt " -#: ../../mod/mitem.php:213 -msgid "Menu item could not be deleted." -msgstr "Este elemento del menú no puede ser borrado." +#: ../../Zotlabs/Module/Setup.php:515 +msgid "xml PHP module" +msgstr "módulo PHP xml" -#: ../../mod/mitem.php:220 -msgid "Edit Menu Element" -msgstr "Editar elemento del menú" +#: ../../Zotlabs/Module/Setup.php:519 ../../Zotlabs/Module/Setup.php:521 +msgid "Apache mod_rewrite module" +msgstr "módulo Apache mod_rewrite " -#: ../../mod/mitem.php:226 -msgid "Link text" -msgstr "Texto del enlace" +#: ../../Zotlabs/Module/Setup.php:519 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Error: se necesita el módulo del servidor web Apache mod-rewrite pero no está instalado." -#: ../../mod/ping.php:260 -msgid "sent you a private message" -msgstr "le ha enviado un mensaje privado" +#: ../../Zotlabs/Module/Setup.php:525 ../../Zotlabs/Module/Setup.php:528 +msgid "proc_open" +msgstr "proc_open" -#: ../../mod/ping.php:308 -msgid "added your channel" -msgstr "añadió este canal a sus conexiones" +#: ../../Zotlabs/Module/Setup.php:525 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Error: se necesita proc_open pero o no está instalado o ha sido desactivado en el fichero php.ini" -#: ../../mod/ping.php:350 -msgid "posted an event" -msgstr "publicó un evento" +#: ../../Zotlabs/Module/Setup.php:533 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Error: se necesita el módulo PHP libCURL pero no está instalado." -#: ../../mod/cal.php:68 -msgid "Permissions denied." -msgstr "Permisos denegados." +#: ../../Zotlabs/Module/Setup.php:537 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Error: el módulo PHP GD graphics es necesario, pero no está instalado." -#: ../../mod/cal.php:258 ../../mod/events.php:581 -msgid "l, F j" -msgstr "l j F" +#: ../../Zotlabs/Module/Setup.php:541 +msgid "Error: openssl PHP module required but not installed." +msgstr "Error: el módulo PHP openssl es necesario, pero no está instalado." -#: ../../mod/cal.php:330 ../../mod/events.php:658 -msgid "Edit Event" -msgstr "Editar el evento" +#: ../../Zotlabs/Module/Setup.php:545 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Error: el módulo PHP mysqli o postgres es necesario pero ninguno de los dos está instalado." -#: ../../mod/cal.php:330 ../../mod/events.php:658 -msgid "Create Event" -msgstr "Crear un evento" +#: ../../Zotlabs/Module/Setup.php:549 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Error: el módulo PHP mb_string es necesario, pero no está instalado." -#: ../../mod/cal.php:340 ../../mod/events.php:668 -msgid "Today" -msgstr "Hoy" +#: ../../Zotlabs/Module/Setup.php:553 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Error: el módulo PHP mcrypt es necesario, pero no está instalado." -#: ../../mod/channel.php:25 ../../mod/chat.php:19 -msgid "You must be logged in to see this page." -msgstr "Debe haber iniciado sesión para poder ver esta página." +#: ../../Zotlabs/Module/Setup.php:557 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "Error: el módulo PHP xml es necesario para DAV, pero no está instalado." -#: ../../mod/channel.php:37 -msgid "Posts and comments" -msgstr "Publicaciones y comentarios" +#: ../../Zotlabs/Module/Setup.php:575 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor." -#: ../../mod/channel.php:38 -msgid "Only posts" -msgstr "Solo publicaciones" +#: ../../Zotlabs/Module/Setup.php:576 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "Esto está generalmente ligado a un problema de permisos, a causa del cual el servidor web tiene prohibido modificar ficheros en su carpeta - incluso si usted mismo tiene esos permisos." -#: ../../mod/channel.php:98 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Permisos insuficientes. Petición redirigida a la página del perfil." +#: ../../Zotlabs/Module/Setup.php:577 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." +msgstr "Al término de este procedimiento, podemos crear un fichero de texto para guardar con el nombre .htconfig.php en el directorio raíz de su instalación de Hubzilla." -#: ../../mod/channel.php:132 ../../mod/network.php:169 ../../mod/rpost.php:114 -msgid "Public" -msgstr "Público" +#: ../../Zotlabs/Module/Setup.php:578 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "Como alternativa, puede dejar este procedimiento e intentar realizar una instalación manual. Lea, por favor, el fichero\"install/INSTALL.txt\" para las instrucciones." -#: ../../mod/poke.php:165 -msgid "Poke somebody" -msgstr "Dar un toque a alguien" +#: ../../Zotlabs/Module/Setup.php:581 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php tiene permisos de escritura" -#: ../../mod/poke.php:168 -msgid "Poke/Prod" -msgstr "Toque/Incitación" +#: ../../Zotlabs/Module/Setup.php:595 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Hubzilla hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 es más rápido porque compila las plantillas de páginas directamente en PHP." -#: ../../mod/poke.php:169 -msgid "Poke, prod or do other things to somebody" -msgstr "Dar un toque, incitar o hacer otras cosas a alguien" +#: ../../Zotlabs/Module/Setup.php:596 +#, php-format +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the Red top level folder." +msgstr "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al subdirectorio %s en el directorio de instalación de Hubzilla." -#: ../../mod/poke.php:176 -msgid "Recipient" -msgstr "Destinatario" +#: ../../Zotlabs/Module/Setup.php:597 ../../Zotlabs/Module/Setup.php:618 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Por favor, asegúrese de que el servidor web está siendo ejecutado por un usuario que tenga permisos de escritura sobre esta carpeta (por ejemplo, www-data)." -#: ../../mod/poke.php:177 -msgid "Choose what you wish to do to recipient" -msgstr "Elegir qué desea enviar al destinatario" +#: ../../Zotlabs/Module/Setup.php:598 +#, php-format +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." +msgstr "Nota: como medida de seguridad, debe dar al servidor web permisos de escritura solo sobre %s - no sobre el fichero de plantilla (.tpl) que contiene." -#: ../../mod/poke.php:180 ../../mod/poke.php:181 -msgid "Make this post private" -msgstr "Convertir en privado este envío" +#: ../../Zotlabs/Module/Setup.php:601 +#, php-format +msgid "%s is writable" +msgstr "%s tiene permisos de escritura" -#: ../../mod/chat.php:175 -msgid "Room not found" -msgstr "Sala no encontrada" +#: ../../Zotlabs/Module/Setup.php:617 +msgid "" +"Red uses the store directory to save uploaded files. The web server needs to" +" have write access to the store directory under the Red top level folder" +msgstr "Hubzilla guarda los ficheros descargados en la carpeta \"store\". El servidor web necesita tener permisos de escritura sobre esa carpeta, en el directorio de instalación." -#: ../../mod/chat.php:191 -msgid "Leave Room" -msgstr "Abandonar la sala" +#: ../../Zotlabs/Module/Setup.php:621 +msgid "store is writable" +msgstr "\"store\" tiene permisos de escritura" -#: ../../mod/chat.php:192 -msgid "Delete Room" -msgstr "Eliminar esta sala" +#: ../../Zotlabs/Module/Setup.php:654 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio." -#: ../../mod/chat.php:193 -msgid "I am away right now" -msgstr "Estoy ausente momentáneamente" +#: ../../Zotlabs/Module/Setup.php:655 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" +msgstr "Si su servidor soporta conexiones cifradas SSL o si permite conexiones al puerto TCP 443 (el puerto usado por el protocolo https), debe utilizar un certificado válido. No debe usar un certificado firmado por usted mismo." -#: ../../mod/chat.php:194 -msgid "I am online" -msgstr "Estoy conectado/a" +#: ../../Zotlabs/Module/Setup.php:656 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "Se ha incorporado esta restricción para evitar que sus publicaciones públicas hagan referencia a imágenes en su propio servidor." -#: ../../mod/chat.php:196 -msgid "Bookmark this room" -msgstr "Añadir esta sala a Marcadores" +#: ../../Zotlabs/Module/Setup.php:657 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." +msgstr "Si su certificado no ha sido reconocido, los miembros de otros sitios (con certificados válidos) recibirán mensajes de aviso en sus propios sitios web." -#: ../../mod/chat.php:212 -msgid "Feature disabled." -msgstr "Funcionalidad deshabilitada." +#: ../../Zotlabs/Module/Setup.php:658 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos." -#: ../../mod/chat.php:226 -msgid "New Chatroom" -msgstr "Nueva sala de chat" +#: ../../Zotlabs/Module/Setup.php:659 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Existen varias Autoridades de Certificación que le pueden proporcionar certificados válidos." -#: ../../mod/chat.php:227 -msgid "Chatroom name" -msgstr "Nombre de la sala de chat" +#: ../../Zotlabs/Module/Setup.php:661 +msgid "SSL certificate validation" +msgstr "validación del certificado SSL" -#: ../../mod/chat.php:228 -msgid "Expiration of chats (minutes)" -msgstr "Caducidad de los mensajes en los chats (en minutos)" +#: ../../Zotlabs/Module/Setup.php:667 +msgid "" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:" -#: ../../mod/chat.php:240 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Salas de chat de %1$s" +#: ../../Zotlabs/Module/Setup.php:670 +msgid "Url rewrite is working" +msgstr "La reescritura de las direcciones funciona correctamente" -#: ../../mod/chat.php:245 -msgid "No chatrooms available" -msgstr "No hay salas de chat disponibles" +#: ../../Zotlabs/Module/Setup.php:679 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "El fichero de configuración de la base de datos .htconfig.php no se ha podido modificar. Por favor, copie el texto generado en un fichero con ese nombre en el directorio raíz de su servidor." -#: ../../mod/chat.php:246 ../../mod/profiles.php:777 ../../mod/manage.php:137 -msgid "Create New" -msgstr "Crear" +#: ../../Zotlabs/Module/Setup.php:703 +msgid "Errors encountered creating database tables." +msgstr "Se han encontrado errores al crear las tablas de la base de datos." -#: ../../mod/chat.php:249 -msgid "Expiration" -msgstr "Caducidad" +#: ../../Zotlabs/Module/Setup.php:737 +msgid "

What next

" +msgstr "

Siguiente paso

" -#: ../../mod/chat.php:250 -msgid "min" -msgstr "min" +#: ../../Zotlabs/Module/Setup.php:738 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANTE: Debe crear [manualmente] una tarea programada para el \"poller\"." -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Ausente" +#: ../../Zotlabs/Module/Sharedwithme.php:98 +msgid "Files: shared with me" +msgstr "Ficheros: compartidos conmigo" -#: ../../mod/chatsvc.php:116 -msgid "Online" -msgstr "Conectado/a" +#: ../../Zotlabs/Module/Sharedwithme.php:100 +msgid "NEW" +msgstr "NUEVO" + +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Remove all files" +msgstr "Eliminar todos los ficheros" -#: ../../mod/probe.php:24 ../../mod/probe.php:30 +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Remove this file" +msgstr "Eliminar este fichero" + +#: ../../Zotlabs/Module/Siteinfo.php:19 #, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Al intentar obtener la dirección, retorna el error: %1$s" +msgid "Version %s" +msgstr "Versión %s" -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Ningún canal." +#: ../../Zotlabs/Module/Siteinfo.php:40 +msgid "Installed plugins/addons/apps:" +msgstr "Extensiones, complementos o aplicaciones instaladas:" -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Conexiones comunes" +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "No installed plugins/addons/apps" +msgstr "No hay instalada ninguna extensión, complemento o aplicación" -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Ninguna conexión en común." +#: ../../Zotlabs/Module/Siteinfo.php:66 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Este es un sitio integrado en $Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada." -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" -msgstr "Continuar" +#: ../../Zotlabs/Module/Siteinfo.php:68 +msgid "Tag: " +msgstr "Etiqueta:" -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" -msgstr "Configuración del canal premium" +#: ../../Zotlabs/Module/Siteinfo.php:70 +msgid "Last background fetch: " +msgstr "Última actualización en segundo plano:" -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" -msgstr "Habilitar restricciones de conexión del canal premium" +#: ../../Zotlabs/Module/Siteinfo.php:72 +msgid "Current load average: " +msgstr "Carga media actual:" -#: ../../mod/connect.php:88 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc." +#: ../../Zotlabs/Module/Siteinfo.php:75 +msgid "Running at web location" +msgstr "Corriendo en el sitio web" -#: ../../mod/connect.php:90 ../../mod/connect.php:110 +#: ../../Zotlabs/Module/Siteinfo.php:76 msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Por favor, visite hubzilla.org para más información sobre $Projectname." -#: ../../mod/connect.php:91 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:" +#: ../../Zotlabs/Module/Siteinfo.php:77 +msgid "Bug reports and issues: please visit" +msgstr "Informes de errores e incidencias: por favor visite" + +#: ../../Zotlabs/Module/Siteinfo.php:79 +msgid "$projectname issues" +msgstr "Problemas en $projectname" -#: ../../mod/connect.php:92 ../../mod/connect.php:113 +#: ../../Zotlabs/Module/Siteinfo.php:80 msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página." +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com" -#: ../../mod/connect.php:101 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)" +#: ../../Zotlabs/Module/Siteinfo.php:82 +msgid "Site Administrators" +msgstr "Administradores del sitio" -#: ../../mod/connect.php:109 -msgid "Restricted or Premium Channel" -msgstr "Canal premium o restringido" +#: ../../Zotlabs/Module/Sources.php:36 +msgid "Failed to create source. No channel selected." +msgstr "Imposible crear el origen de los contenidos. Ningún canal ha sido seleccionado." -#: ../../mod/mood.php:132 -msgid "Set your current mood and tell your friends" -msgstr "Describir su estado de ánimo para comunicárselo a sus amigos" +#: ../../Zotlabs/Module/Sources.php:49 +msgid "Source created." +msgstr "Fuente creada." -#: ../../mod/connections.php:52 ../../mod/connections.php:157 -#: ../../mod/connections.php:238 -msgid "Blocked" -msgstr "Bloqueadas" +#: ../../Zotlabs/Module/Sources.php:61 +msgid "Source updated." +msgstr "Fuente actualizada." -#: ../../mod/connections.php:57 ../../mod/connections.php:164 -#: ../../mod/connections.php:237 -msgid "Ignored" -msgstr "Ignoradas" +#: ../../Zotlabs/Module/Sources.php:86 +msgid "*" +msgstr "*" -#: ../../mod/connections.php:62 ../../mod/connections.php:178 -#: ../../mod/connections.php:236 -msgid "Hidden" -msgstr "Ocultas" +#: ../../Zotlabs/Module/Sources.php:92 ../../include/features.php:71 +#: ../../include/widgets.php:581 +msgid "Channel Sources" +msgstr "Orígenes de los contenidos del canal" -#: ../../mod/connections.php:67 ../../mod/connections.php:171 -#: ../../mod/connections.php:235 -msgid "Archived" -msgstr "Archivadas" +#: ../../Zotlabs/Module/Sources.php:93 +msgid "Manage remote sources of content for your channel." +msgstr "Gestionar contenido de origen remoto para su canal." -#: ../../mod/connections.php:134 -msgid "New Connections" -msgstr "Nuevas conexiones" +#: ../../Zotlabs/Module/Sources.php:94 ../../Zotlabs/Module/Sources.php:104 +msgid "New Source" +msgstr "Nueva fuente" -#: ../../mod/connections.php:137 -msgid "Show pending (new) connections" -msgstr "Mostrar conexiones (nuevas) pendientes" +#: ../../Zotlabs/Module/Sources.php:105 ../../Zotlabs/Module/Sources.php:137 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importar todo el contenido o una selección de los siguientes canales en este canal y distribuirlo de acuerdo con sus ajustes." -#: ../../mod/connections.php:141 ../../mod/profperm.php:139 -msgid "All Connections" -msgstr "Todas las conexiones" +#: ../../Zotlabs/Module/Sources.php:106 ../../Zotlabs/Module/Sources.php:138 +msgid "Only import content with these words (one per line)" +msgstr "Importar solo contenido que contenga estas palabras (una por línea)" -#: ../../mod/connections.php:144 -msgid "Show all connections" -msgstr "Mostrar todas las conexiones" +#: ../../Zotlabs/Module/Sources.php:106 ../../Zotlabs/Module/Sources.php:138 +msgid "Leave blank to import all public content" +msgstr "Dejar en blanco para importar todo el contenido público" -#: ../../mod/connections.php:160 -msgid "Only show blocked connections" -msgstr "Mostrar solo las conexiones bloqueadas" +#: ../../Zotlabs/Module/Sources.php:107 ../../Zotlabs/Module/Sources.php:141 +msgid "Channel Name" +msgstr "Nombre del canal" -#: ../../mod/connections.php:167 -msgid "Only show ignored connections" -msgstr "Mostrar solo conexiones ignoradas" +#: ../../Zotlabs/Module/Sources.php:127 ../../Zotlabs/Module/Sources.php:154 +msgid "Source not found." +msgstr "Fuente no encontrada" -#: ../../mod/connections.php:174 -msgid "Only show archived connections" -msgstr "Mostrar solo las conexiones archivadas" +#: ../../Zotlabs/Module/Sources.php:134 +msgid "Edit Source" +msgstr "Editar fuente" -#: ../../mod/connections.php:181 -msgid "Only show hidden connections" -msgstr "Mostrar solo las conexiones ocultas" +#: ../../Zotlabs/Module/Sources.php:135 +msgid "Delete Source" +msgstr "Eliminar fuente" -#: ../../mod/connections.php:234 -msgid "Pending approval" -msgstr "Pendiente de aprobación" +#: ../../Zotlabs/Module/Sources.php:162 +msgid "Source removed" +msgstr "Fuente eliminada" -#: ../../mod/connections.php:250 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" +#: ../../Zotlabs/Module/Sources.php:164 +msgid "Unable to remove source." +msgstr "Imposible eliminar la fuente." -#: ../../mod/connections.php:251 -msgid "Edit connection" -msgstr "Editar conexión" +#: ../../Zotlabs/Module/Subthread.php:118 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s está siguiendo %3$s de %2$s" -#: ../../mod/connections.php:252 -msgid "Delete connection" -msgstr "Eliminar conexión" - -#: ../../mod/connections.php:261 -msgid "Channel address" -msgstr "Dirección del canal" +#: ../../Zotlabs/Module/Subthread.php:120 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "%1$s ha dejado de seguir %3$s de %2$s" -#: ../../mod/connections.php:263 -msgid "Network" -msgstr "Red" +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo." -#: ../../mod/connections.php:268 -msgid "Connected" -msgstr "Conectado/a" +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" +msgstr "Ignorar/Ocultar" -#: ../../mod/connections.php:270 -msgid "Approve connection" -msgstr "Aprobar esta conexión" +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:257 +msgid "post" +msgstr "la entrada" -#: ../../mod/connections.php:272 -msgid "Ignore connection" -msgstr "Ignorar esta conexión" +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 +#: ../../include/text.php:1975 +msgid "comment" +msgstr "el comentario" -#: ../../mod/connections.php:273 ../../mod/connedit.php:545 -#: ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "Ignorar" +#: ../../Zotlabs/Module/Tagger.php:100 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s ha etiquetado %3$s de %2$s con %4$s" -#: ../../mod/connections.php:274 -msgid "Recent activity" -msgstr "Actividad reciente" +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "Etiqueta eliminada." -#: ../../mod/connections.php:303 -msgid "Search your connections" -msgstr "Buscar sus conexiones" +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Eliminar etiqueta del elemento." -#: ../../mod/connections.php:304 -msgid "Connections search" -msgstr "Buscar conexiones" +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Seleccionar una etiqueta para eliminar:" -#: ../../mod/profile_photo.php:112 ../../mod/cover_photo.php:54 -msgid "Image uploaded but image cropping failed." -msgstr "Imagen actualizada, pero el recorte de la imagen ha fallado. " +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "Elemento actualizado." -#: ../../mod/profile_photo.php:166 ../../mod/cover_photo.php:150 -msgid "Image resize failed." -msgstr "El ajuste del tamaño de la imagen ha fallado." +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Guardar objeto: ha fallado" -#: ../../mod/profile_photo.php:212 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente." +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "Elemento añadido" -#: ../../mod/profile_photo.php:250 ../../mod/cover_photo.php:188 -msgid "Image upload failed." -msgstr "La carga de la imagen ha fallado." +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../mod/profile_photo.php:269 ../../mod/cover_photo.php:206 -msgid "Unable to process image." -msgstr "No ha sido posible procesar la imagen." +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Mostrar elemento" -#: ../../mod/profile_photo.php:316 ../../mod/profile_photo.php:357 -#: ../../mod/cover_photo.php:299 ../../mod/cover_photo.php:314 -msgid "Photo not available." -msgstr "Foto no disponible." +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "elemento no encontrado." -#: ../../mod/profile_photo.php:398 ../../mod/cover_photo.php:350 -msgid "Upload File:" -msgstr "Subir fichero:" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Editar elemento" -#: ../../mod/profile_photo.php:399 ../../mod/cover_photo.php:351 -msgid "Select a profile:" -msgstr "Seleccionar un perfil:" +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 +msgid "Select a profile" +msgstr "Seleccionar un perfil" -#: ../../mod/profile_photo.php:400 -msgid "Upload Profile Photo" -msgstr "Subir foto de perfil" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Post an activity" +msgstr "Publicar una actividad" -#: ../../mod/profile_photo.php:407 ../../mod/cover_photo.php:357 -#: ../../mod/settings.php:992 -msgid "or" -msgstr "o" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Only sends to viewers of the applicable profile" +msgstr "Sólo enviar a espectadores del perfil pertinente." -#: ../../mod/profile_photo.php:407 ../../mod/cover_photo.php:357 -msgid "skip this step" -msgstr "Omitir este paso" +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 +msgid "Name of thing e.g. something" +msgstr "Nombre del elemento, p. ej.:. \"algo\"" -#: ../../mod/profile_photo.php:407 ../../mod/cover_photo.php:357 -msgid "select a photo from your photo albums" -msgstr "Seleccione una foto de sus álbumes de fotos" +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 +msgid "URL of thing (optional)" +msgstr "Dirección del elemento (opcional)" -#: ../../mod/profile_photo.php:423 ../../mod/cover_photo.php:373 -msgid "Crop Image" -msgstr "Recortar imagen" +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 +msgid "URL for photo of thing (optional)" +msgstr "Dirección para la foto o elemento (opcional)" -#: ../../mod/profile_photo.php:424 ../../mod/cover_photo.php:374 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Por favor ajuste el recorte de la imagen para una visión óptima." +#: ../../Zotlabs/Module/Thing.php:349 +msgid "Add Thing to your Profile" +msgstr "Añadir alguna cosa a su perfil" -#: ../../mod/profile_photo.php:426 ../../mod/cover_photo.php:376 -msgid "Done Editing" -msgstr "Edición completada" +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Exportar el canal" -#: ../../mod/connedit.php:75 -msgid "Could not access contact record." -msgstr "No se ha podido acceder al registro de contacto." +#: ../../Zotlabs/Module/Uexport.php:57 +msgid "" +"Export your basic channel information to a file. This acts as a backup of " +"your connections, permissions, profile and basic data, which can be used to " +"import your data to a new server hub, but does not contain your content." +msgstr "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido." -#: ../../mod/connedit.php:99 -msgid "Could not locate selected profile." -msgstr "No se ha podido localizar el perfil seleccionado." +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Exportar contenidos" -#: ../../mod/connedit.php:223 -msgid "Connection updated." -msgstr "Conexión actualizada." +#: ../../Zotlabs/Module/Uexport.php:59 +msgid "" +"Export your channel information and recent content to a JSON backup that can" +" be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for" +" this download to begin." +msgstr "Exportar la información sobre su canal y el contenido reciente a un fichero de respaldo JSON, que puede ser restaurado o importado a otro servidor. Este fichero incluye todas sus conexiones, permisos, datos del perfil y publicaciones de varios meses. Puede llegar a ser MUY grande. Por favor, sea paciente, la descarga puede tardar varios minutos en comenzar." -#: ../../mod/connedit.php:225 -msgid "Failed to update connection record." -msgstr "Error al actualizar el registro de la conexión." +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Exporta sus publicaciones de un año dado." -#: ../../mod/connedit.php:272 -msgid "is now connected to" -msgstr "ahora está conectado/a" +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "También puede exportar sus mensajes y conversaciones durante un año o mes en particular. Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, intente de nuevo la selección de un rango de fechas más pequeño." -#: ../../mod/connedit.php:407 -msgid "Could not access address book record." -msgstr "No se pudo acceder al registro en su libreta de direcciones." +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Para seleccionar todos los mensajes de un año determinado, como este año, visite %2$s" -#: ../../mod/connedit.php:421 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Recarga fallida - no se puede encontrar el canal en este momento." +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %2$s" -#: ../../mod/connedit.php:436 ../../mod/connedit.php:445 -#: ../../mod/connedit.php:454 ../../mod/connedit.php:463 -#: ../../mod/connedit.php:476 -msgid "Unable to set address book parameters." -msgstr "No ha sido posible establecer los parámetros de la libreta de direcciones." +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Estos ficheros pueden ser importados o restaurados visitando %2$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)." -#: ../../mod/connedit.php:500 -msgid "Connection has been removed." -msgstr "La conexión ha sido eliminada." +#: ../../Zotlabs/Module/Viewconnections.php:63 +msgid "No connections." +msgstr "Sin conexiones." -#: ../../mod/connedit.php:519 +#: ../../Zotlabs/Module/Viewconnections.php:76 #, php-format -msgid "View %s's profile" -msgstr "Ver el perfil de %s" - -#: ../../mod/connedit.php:523 -msgid "Refresh Permissions" -msgstr "Recargar los permisos" +msgid "Visit %s's profile [%s]" +msgstr "Visitar el perfil de %s [%s]" -#: ../../mod/connedit.php:526 -msgid "Fetch updated permissions" -msgstr "Obtener los permisos actualizados" +#: ../../Zotlabs/Module/Viewconnections.php:105 +msgid "View Connections" +msgstr "Ver conexiones" -#: ../../mod/connedit.php:530 -msgid "Recent Activity" -msgstr "Actividad reciente" +#: ../../Zotlabs/Module/Viewsrc.php:44 +msgid "Source of Item" +msgstr "Origen del elemento" -#: ../../mod/connedit.php:533 -msgid "View recent posts and comments" -msgstr "Ver publicaciones y comentarios recientes" +#: ../../Zotlabs/Module/Webpages.php:186 ../../include/apps.php:136 +#: ../../include/conversation.php:1704 ../../include/nav.php:106 +msgid "Webpages" +msgstr "Páginas web" -#: ../../mod/connedit.php:540 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Bloquear (o desbloquear) todas las comunicaciones con esta conexión" +#: ../../Zotlabs/Module/Webpages.php:197 ../../include/page_widgets.php:41 +msgid "Actions" +msgstr "Acciones" -#: ../../mod/connedit.php:541 -msgid "This connection is blocked!" -msgstr "¡Esta conexión está bloqueada!" +#: ../../Zotlabs/Module/Webpages.php:198 ../../include/page_widgets.php:42 +msgid "Page Link" +msgstr "Vínculo de la página" -#: ../../mod/connedit.php:545 -msgid "Unignore" -msgstr "Dejar de ignorar" +#: ../../Zotlabs/Module/Webpages.php:199 +msgid "Page Title" +msgstr "Título de página" -#: ../../mod/connedit.php:548 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión" +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "Búsqueda de canales" -#: ../../mod/connedit.php:549 -msgid "This connection is ignored!" -msgstr "¡Esta conexión es ignorada!" +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Buscar un canal (o un \"webbie\") que comience por:" -#: ../../mod/connedit.php:553 -msgid "Unarchive" -msgstr "Desarchivar" +#: ../../include/Import/import_diaspora.php:17 +msgid "No username found in import file." +msgstr "No se ha encontrado el nombre de usuario en el fichero importado." -#: ../../mod/connedit.php:553 -msgid "Archive" -msgstr "Archivar" +#: ../../include/Import/import_diaspora.php:42 ../../include/import.php:44 +msgid "Unable to create a unique channel address. Import failed." +msgstr "No se ha podido crear una dirección de canal única. Ha fallado la importación." -#: ../../mod/connedit.php:556 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos" +#: ../../include/dba/dba_driver.php:141 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "No se ha podido localizar información de DNS para el servidor de base de datos “%s”" -#: ../../mod/connedit.php:557 -msgid "This connection is archived!" -msgstr "¡Esta conexión esta archivada!" +#: ../../include/identity.php:32 +msgid "Unable to obtain identity information from database" +msgstr "No ha sido posible obtener información sobre la identidad desde la base de datos" -#: ../../mod/connedit.php:561 -msgid "Unhide" -msgstr "Mostrar" +#: ../../include/identity.php:66 +msgid "Empty name" +msgstr "Nombre vacío" -#: ../../mod/connedit.php:561 -msgid "Hide" -msgstr "Ocultar" +#: ../../include/identity.php:69 +msgid "Name too long" +msgstr "Nombre demasiado largo" -#: ../../mod/connedit.php:564 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Ocultar o mostrar esta conexión a sus otras conexiones" +#: ../../include/identity.php:180 +msgid "No account identifier" +msgstr "Ningún identificador de la cuenta" -#: ../../mod/connedit.php:565 -msgid "This connection is hidden!" -msgstr "¡Esta conexión está oculta!" +#: ../../include/identity.php:192 +msgid "Nickname is required." +msgstr "Se requiere un sobrenombre (alias)." -#: ../../mod/connedit.php:572 -msgid "Delete this connection" -msgstr "Eliminar esta conexión" +#: ../../include/identity.php:206 +msgid "Reserved nickname. Please choose another." +msgstr "Sobrenombre en uso. Por favor, elija otro." -#: ../../mod/connedit.php:653 -msgid "Approve this connection" -msgstr "Aprobar esta conexión" +#: ../../include/identity.php:211 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio." -#: ../../mod/connedit.php:653 -msgid "Accept connection to allow communication" -msgstr "Aceptar la conexión para permitir la comunicación" +#: ../../include/identity.php:287 +msgid "Unable to retrieve created identity" +msgstr "No ha sido posible recuperar la identidad creada" -#: ../../mod/connedit.php:658 -msgid "Set Affinity" -msgstr "Ajustar la afinidad" +#: ../../include/identity.php:345 +msgid "Default Profile" +msgstr "Perfil principal" -#: ../../mod/connedit.php:661 -msgid "Set Profile" -msgstr "Ajustar el perfil" +#: ../../include/identity.php:784 +msgid "Requested channel is not available." +msgstr "El canal solicitado no está disponible." -#: ../../mod/connedit.php:664 -msgid "Set Affinity & Profile" -msgstr "Ajustar la afinidad y el perfil" +#: ../../include/identity.php:931 +msgid "Create New Profile" +msgstr "Crear un nuevo perfil" -#: ../../mod/connedit.php:697 -msgid "none" -msgstr "-" +#: ../../include/identity.php:934 ../../include/nav.php:90 +msgid "Edit Profile" +msgstr "Editar el perfil" -#: ../../mod/connedit.php:702 -msgid "Apply these permissions automatically" -msgstr "Aplicar estos permisos automaticamente" +#: ../../include/identity.php:951 +msgid "Visible to everybody" +msgstr "Visible para todos" -#: ../../mod/connedit.php:702 -msgid "Connection requests will be approved without your interaction" -msgstr "Las solicitudes de conexión serán aprobadas sin su intervención" +#: ../../include/identity.php:1026 ../../include/identity.php:1281 +msgid "Gender:" +msgstr "Género:" -#: ../../mod/connedit.php:704 -msgid "This connection's primary address is" -msgstr "La dirección primaria de esta conexión es" +#: ../../include/identity.php:1027 ../../include/identity.php:1325 +msgid "Status:" +msgstr "Estado:" -#: ../../mod/connedit.php:705 -msgid "Available locations:" -msgstr "Ubicaciones disponibles:" +#: ../../include/identity.php:1028 ../../include/identity.php:1336 +msgid "Homepage:" +msgstr "Página personal:" -#: ../../mod/connedit.php:709 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." -msgstr "Los permisos indicados en esta página serán aplicados en todas las nuevas conexiones." +#: ../../include/identity.php:1029 +msgid "Online Now" +msgstr "Ahora en línea" -#: ../../mod/connedit.php:711 -msgid "Slide to adjust your degree of friendship" -msgstr "Deslizar para ajustar el grado de amistad" +#: ../../include/identity.php:1117 ../../include/identity.php:1193 +msgid "F d" +msgstr "d F" -#: ../../mod/connedit.php:713 -msgid "Slide to adjust your rating" -msgstr "Deslizar para ajustar su valoración" +#: ../../include/identity.php:1173 +msgid "Birthday Reminders" +msgstr "Recordatorios de cumpleaños" -#: ../../mod/connedit.php:714 ../../mod/connedit.php:719 -msgid "Optionally explain your rating" -msgstr "Opcionalmente, puede explicar su valoración" +#: ../../include/identity.php:1174 +msgid "Birthdays this week:" +msgstr "Cumpleaños de esta semana:" -#: ../../mod/connedit.php:716 -msgid "Custom Filter" -msgstr "Filtro personalizado" +#: ../../include/identity.php:1225 +msgid "[No description]" +msgstr "[Sin descripción]" -#: ../../mod/connedit.php:717 -msgid "Only import posts with this text" -msgstr "Importar solo entradas que contengan este texto" +#: ../../include/identity.php:1243 +msgid "Event Reminders" +msgstr "Recordatorios de eventos" -#: ../../mod/connedit.php:717 ../../mod/connedit.php:718 -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" +#: ../../include/identity.php:1244 +msgid "Events this week:" +msgstr "Eventos de esta semana:" -#: ../../mod/connedit.php:718 -msgid "Do not import posts with this text" -msgstr "No importar entradas que contengan este texto" +#: ../../include/identity.php:1286 +msgid "Like this channel" +msgstr "Me gusta este canal" -#: ../../mod/connedit.php:720 -msgid "This information is public!" -msgstr "¡Esta información es pública!" +#: ../../include/identity.php:1310 +msgid "j F, Y" +msgstr "j F Y" -#: ../../mod/connedit.php:725 -msgid "Connection Pending Approval" -msgstr "Conexión pendiente de aprobación" +#: ../../include/identity.php:1311 +msgid "j F" +msgstr "j F" -#: ../../mod/connedit.php:728 -msgid "inherited" -msgstr "heredado" +#: ../../include/identity.php:1318 +msgid "Birthday:" +msgstr "Cumpleaños:" -#: ../../mod/connedit.php:730 +#: ../../include/identity.php:1331 #, 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." +msgid "for %1$d %2$s" +msgstr "por %1$d %2$s" -#: ../../mod/connedit.php:732 -msgid "Their Settings" -msgstr "Sus ajustes" +#: ../../include/identity.php:1334 +msgid "Sexual Preference:" +msgstr "Orientación sexual:" -#: ../../mod/connedit.php:733 -msgid "My Settings" -msgstr "Mis ajustes" +#: ../../include/identity.php:1340 +msgid "Tags:" +msgstr "Etiquetas:" -#: ../../mod/connedit.php:735 -msgid "Individual Permissions" -msgstr "Permisos individuales" +#: ../../include/identity.php:1342 +msgid "Political Views:" +msgstr "Posición política:" -#: ../../mod/connedit.php:736 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can not change those" -" settings here." -msgstr "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. No puede cambiar estos ajustes aquí." +#: ../../include/identity.php:1344 +msgid "Religion:" +msgstr "Religión:" -#: ../../mod/connedit.php:737 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can change those settings here but " -"they wont have any impact unless the inherited setting changes." -msgstr "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados." +#: ../../include/identity.php:1348 +msgid "Hobbies/Interests:" +msgstr "Aficciones o intereses:" -#: ../../mod/connedit.php:738 -msgid "Last update:" -msgstr "Última actualización:" +#: ../../include/identity.php:1350 +msgid "Likes:" +msgstr "Me gusta:" -#: ../../mod/network.php:91 -msgid "No such group" -msgstr "No se encuentra el grupo" +#: ../../include/identity.php:1352 +msgid "Dislikes:" +msgstr "No me gusta:" -#: ../../mod/network.php:131 -msgid "No such channel" -msgstr "No se encuentra el canal" +#: ../../include/identity.php:1354 +msgid "Contact information and Social Networks:" +msgstr "Información de contacto y redes sociales:" -#: ../../mod/network.php:136 -msgid "forum" -msgstr "foro" +#: ../../include/identity.php:1356 +msgid "My other channels:" +msgstr "Mis otros canales:" -#: ../../mod/network.php:148 -msgid "Search Results For:" -msgstr "Buscar resultados para:" +#: ../../include/identity.php:1358 +msgid "Musical interests:" +msgstr "Preferencias musicales:" -#: ../../mod/network.php:212 -msgid "Privacy group is empty" -msgstr "El grupo de canales está vacío" +#: ../../include/identity.php:1360 +msgid "Books, literature:" +msgstr "Libros, literatura:" -#: ../../mod/network.php:221 -msgid "Privacy group: " -msgstr "Grupo de canales: " +#: ../../include/identity.php:1362 +msgid "Television:" +msgstr "Televisión:" -#: ../../mod/network.php:247 -msgid "Invalid connection." -msgstr "Conexión no válida." +#: ../../include/identity.php:1364 +msgid "Film/dance/culture/entertainment:" +msgstr "Cine, danza, cultura, entretenimiento:" -#: ../../mod/cover_photo.php:130 ../../mod/cover_photo.php:177 -msgid "Cover Photos" -msgstr "Imágenes de portada del perfil" +#: ../../include/identity.php:1366 +msgid "Love/Romance:" +msgstr "Vida sentimental o amorosa:" -#: ../../mod/cover_photo.php:352 -msgid "Upload Cover Photo" -msgstr "Subir imagen de portada del perfil" +#: ../../include/identity.php:1368 +msgid "Work/employment:" +msgstr "Trabajo:" -#: ../../mod/profiles.php:19 ../../mod/profiles.php:184 -#: ../../mod/profiles.php:241 ../../mod/profiles.php:620 -msgid "Profile not found." -msgstr "Perfil no encontrado." +#: ../../include/identity.php:1370 +msgid "School/education:" +msgstr "Estudios:" -#: ../../mod/profiles.php:39 -msgid "Profile deleted." -msgstr "Perfil eliminado." +#: ../../include/identity.php:1390 +msgid "Like this thing" +msgstr "Me gusta esto" -#: ../../mod/profiles.php:63 ../../mod/profiles.php:99 -msgid "Profile-" -msgstr "Perfil-" +#: ../../include/notify.php:20 +msgid "created a new post" +msgstr "ha creado una nueva entrada" -#: ../../mod/profiles.php:84 ../../mod/profiles.php:127 -msgid "New profile created." -msgstr "El nuevo perfil ha sido creado." +#: ../../include/notify.php:21 +#, php-format +msgid "commented on %s's post" +msgstr "ha comentado la entrada de %s" -#: ../../mod/profiles.php:105 -msgid "Profile unavailable to clone." -msgstr "Perfil no disponible para clonar." +#: ../../include/ItemObject.php:89 ../../include/conversation.php:664 +msgid "Private Message" +msgstr "Mensaje Privado" -#: ../../mod/profiles.php:146 -msgid "Profile unavailable to export." -msgstr "Perfil no disponible para exportar." +#: ../../include/ItemObject.php:126 ../../include/conversation.php:656 +msgid "Select" +msgstr "Seleccionar" -#: ../../mod/profiles.php:251 -msgid "Profile Name is required." -msgstr "Se necesita el nombre del perfil." +#: ../../include/ItemObject.php:130 +msgid "Save to Folder" +msgstr "Guardar en carpeta" -#: ../../mod/profiles.php:422 -msgid "Marital Status" -msgstr "Estado civil" +#: ../../include/ItemObject.php:151 +msgid "I will attend" +msgstr "Participaré" -#: ../../mod/profiles.php:426 -msgid "Romantic Partner" -msgstr "Pareja sentimental" +#: ../../include/ItemObject.php:151 +msgid "I will not attend" +msgstr "No participaré" -#: ../../mod/profiles.php:430 ../../mod/profiles.php:735 -msgid "Likes" -msgstr "Me gusta" +#: ../../include/ItemObject.php:151 +msgid "I might attend" +msgstr "Quizá participe" -#: ../../mod/profiles.php:434 ../../mod/profiles.php:736 -msgid "Dislikes" -msgstr "No me gusta" +#: ../../include/ItemObject.php:161 +msgid "I agree" +msgstr "Estoy de acuerdo" -#: ../../mod/profiles.php:438 ../../mod/profiles.php:743 -msgid "Work/Employment" -msgstr "Trabajo:" +#: ../../include/ItemObject.php:161 +msgid "I disagree" +msgstr "No estoy de acuerdo" -#: ../../mod/profiles.php:441 -msgid "Religion" -msgstr "Religión" +#: ../../include/ItemObject.php:161 +msgid "I abstain" +msgstr "Me abstengo" -#: ../../mod/profiles.php:445 -msgid "Political Views" -msgstr "Ideas políticas" +#: ../../include/ItemObject.php:212 +msgid "Add Star" +msgstr "Destacar añadiendo una estrella" -#: ../../mod/profiles.php:449 ../../mod/id.php:33 -msgid "Gender" -msgstr "Género" +#: ../../include/ItemObject.php:213 +msgid "Remove Star" +msgstr "Eliminar estrella" -#: ../../mod/profiles.php:453 -msgid "Sexual Preference" -msgstr "Preferencia sexual" +#: ../../include/ItemObject.php:214 +msgid "Toggle Star Status" +msgstr "Activar o desactivar el estado de entrada preferida" -#: ../../mod/profiles.php:457 -msgid "Homepage" -msgstr "Página personal" +#: ../../include/ItemObject.php:218 +msgid "starred" +msgstr "preferidas" -#: ../../mod/profiles.php:461 -msgid "Interests" -msgstr "Intereses" +#: ../../include/ItemObject.php:227 ../../include/conversation.php:671 +msgid "Message signature validated" +msgstr "Firma de mensaje validada" -#: ../../mod/profiles.php:555 -msgid "Profile updated." -msgstr "Perfil actualizado." +#: ../../include/ItemObject.php:228 ../../include/conversation.php:672 +msgid "Message signature incorrect" +msgstr "Firma de mensaje incorrecta" -#: ../../mod/profiles.php:644 -msgid "Hide your connections list from viewers of this profile" -msgstr "Ocultar la lista de conexiones a los visitantes del perfil" +#: ../../include/ItemObject.php:236 +msgid "Add Tag" +msgstr "Añadir etiqueta" -#: ../../mod/profiles.php:686 -msgid "Edit Profile Details" -msgstr "Modificar los detalles de este perfil" +#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:328 +msgid "like" +msgstr "me gusta" -#: ../../mod/profiles.php:688 -msgid "View this profile" -msgstr "Ver este perfil" +#: ../../include/ItemObject.php:255 ../../include/taxonomy.php:329 +msgid "dislike" +msgstr "no me gusta" -#: ../../mod/profiles.php:690 -msgid "Change cover photo" -msgstr "Cambiar la imagen de portada del perfil" +#: ../../include/ItemObject.php:259 +msgid "Share This" +msgstr "Compartir esto" -#: ../../mod/profiles.php:692 -msgid "Create a new profile using these settings" -msgstr "Crear un nuevo perfil usando estos ajustes" +#: ../../include/ItemObject.php:259 +msgid "share" +msgstr "compartir" -#: ../../mod/profiles.php:693 -msgid "Clone this profile" -msgstr "Clonar este perfil" +#: ../../include/ItemObject.php:268 +msgid "Delivery Report" +msgstr "Informe de transmisión" -#: ../../mod/profiles.php:694 -msgid "Delete this profile" -msgstr "Eliminar este perfil" +#: ../../include/ItemObject.php:286 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d comentario" +msgstr[1] "%d comentarios" -#: ../../mod/profiles.php:695 -msgid "Add profile things" -msgstr "Añadir cosas al perfil" +#: ../../include/ItemObject.php:315 ../../include/ItemObject.php:316 +#, php-format +msgid "View %s's profile - %s" +msgstr "Ver el perfil de %s - %s" -#: ../../mod/profiles.php:698 -msgid "Relation" -msgstr "Relación" +#: ../../include/ItemObject.php:319 +msgid "to" +msgstr "a" -#: ../../mod/profiles.php:701 -msgid "Import profile from file" -msgstr "Importar perfil desde un fichero" +#: ../../include/ItemObject.php:320 +msgid "via" +msgstr "mediante" -#: ../../mod/profiles.php:702 -msgid "Export profile to file" -msgstr "Exportar perfil a un fichero" +#: ../../include/ItemObject.php:321 +msgid "Wall-to-Wall" +msgstr "De página del perfil a página del perfil (de \"muro\" a \"muro\")" -#: ../../mod/profiles.php:703 -msgid "Your gender" -msgstr "Género" +#: ../../include/ItemObject.php:322 +msgid "via Wall-To-Wall:" +msgstr "Mediante el procedimiento página del perfil a página del perfil (de \"muro\" a \"muro\")" -#: ../../mod/profiles.php:704 -msgid "Marital status" -msgstr "Estado civil" +#: ../../include/ItemObject.php:334 ../../include/conversation.php:719 +#, php-format +msgid "from %s" +msgstr "desde %s" -#: ../../mod/profiles.php:705 -msgid "Sexual preference" -msgstr "Preferencia sexual" +#: ../../include/ItemObject.php:337 ../../include/conversation.php:722 +#, php-format +msgid "last edited: %s" +msgstr "último cambio: %s" -#: ../../mod/profiles.php:708 -msgid "Profile name" -msgstr "Nombre del perfil" +#: ../../include/ItemObject.php:338 ../../include/conversation.php:723 +#, php-format +msgid "Expires: %s" +msgstr "Caduca: %s" -#: ../../mod/profiles.php:710 -msgid "This is your default profile." -msgstr "Este es su perfil principal." +#: ../../include/ItemObject.php:362 ../../bookmarker/bookmarker.php:45 +msgid "Save Bookmarks" +msgstr "Guardar en Marcadores" -#: ../../mod/profiles.php:712 -msgid "Your full name" -msgstr "Nombre completo" +#: ../../include/ItemObject.php:363 +msgid "Add to Calendar" +msgstr "Añadir al calendario" -#: ../../mod/profiles.php:713 -msgid "Title/Description" -msgstr "Título o descripción" +#: ../../include/ItemObject.php:372 +msgid "Mark all seen" +msgstr "Marcar todo como visto" -#: ../../mod/profiles.php:716 -msgid "Street address" -msgstr "Dirección" +#: ../../include/ItemObject.php:413 ../../include/js_strings.php:7 +msgid "[+] show all" +msgstr "[+] mostrar todo:" -#: ../../mod/profiles.php:717 -msgid "Locality/City" -msgstr "Ciudad" +#: ../../include/ItemObject.php:709 +msgid "Image" +msgstr "Imagen" -#: ../../mod/profiles.php:718 -msgid "Region/State" -msgstr "Región o Estado" +#: ../../include/ItemObject.php:710 +msgid "Insert Link" +msgstr "Insertar enlace" -#: ../../mod/profiles.php:719 -msgid "Postal/Zip code" -msgstr "Código postal" +#: ../../include/ItemObject.php:711 +msgid "Video" +msgstr "Vídeo" -#: ../../mod/profiles.php:720 -msgid "Country" -msgstr "País" +#: ../../include/account.php:28 +msgid "Not a valid email address" +msgstr "Dirección de correo no válida" -#: ../../mod/profiles.php:725 -msgid "Who (if applicable)" -msgstr "Quién (si es pertinente)" +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" +msgstr "Su dirección de correo no pertenece a ninguno de los dominios permitidos en este sitio." -#: ../../mod/profiles.php:725 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Por ejemplo: ana123, María González, sara@ejemplo.com" +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." +msgstr "Su dirección de correo está ya registrada en este sitio." -#: ../../mod/profiles.php:726 -msgid "Since (date)" -msgstr "Desde (fecha)" +#: ../../include/account.php:68 +msgid "An invitation is required." +msgstr "Es obligatorio que le inviten." -#: ../../mod/profiles.php:729 -msgid "Tell us about yourself" -msgstr "Háblenos de usted" +#: ../../include/account.php:72 +msgid "Invitation could not be verified." +msgstr "No se ha podido verificar su invitación." -#: ../../mod/profiles.php:730 ../../mod/id.php:27 -msgid "Homepage URL" -msgstr "Dirección de la página personal" +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "Por favor introduzca la información requerida." -#: ../../mod/profiles.php:731 -msgid "Hometown" -msgstr "Lugar de nacimiento" +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "La información de la cuenta no se ha podido guardar." -#: ../../mod/profiles.php:732 -msgid "Political views" -msgstr "Ideas políticas" +#: ../../include/account.php:249 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Confirmación de registro para %s" -#: ../../mod/profiles.php:733 -msgid "Religious views" -msgstr "Creencias religiosas" +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %s" +msgstr "Solicitud de registro en %s" -#: ../../mod/profiles.php:734 -msgid "Keywords used in directory listings" -msgstr "Palabras clave utilizadas en los listados de directorios" +#: ../../include/account.php:317 ../../include/account.php:344 +#: ../../include/account.php:404 ../../include/network.php:1875 +msgid "Administrator" +msgstr "Administrador" -#: ../../mod/profiles.php:734 -msgid "Example: fishing photography software" -msgstr "Por ejemplo: software de fotografía submarina" +#: ../../include/account.php:339 +msgid "your registration password" +msgstr "su contraseña de registro" -#: ../../mod/profiles.php:737 -msgid "Musical interests" -msgstr "Preferencias musicales" +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" +msgstr "Detalles del registro de %s" -#: ../../mod/profiles.php:738 -msgid "Books, literature" -msgstr "Libros, literatura" +#: ../../include/account.php:414 +msgid "Account approved." +msgstr "Cuenta aprobada." -#: ../../mod/profiles.php:739 -msgid "Television" -msgstr "Televisión" +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registro revocado para %s" -#: ../../mod/profiles.php:740 -msgid "Film/Dance/Culture/Entertainment" -msgstr "Cine, danza, cultura, entretenimiento" +#: ../../include/account.php:506 +msgid "Account verified. Please login." +msgstr "Cuenta verificada. Por favor, inicie sesión." -#: ../../mod/profiles.php:741 -msgid "Hobbies/Interests" -msgstr "Aficiones o intereses" +#: ../../include/account.php:719 ../../include/account.php:721 +msgid "Click here to upgrade." +msgstr "Pulse aquí para actualizar" -#: ../../mod/profiles.php:742 -msgid "Love/Romance" -msgstr "Vida sentimental o amorosa" +#: ../../include/account.php:727 +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 " -#: ../../mod/profiles.php:744 -msgid "School/Education" -msgstr "Estudios" +#: ../../include/account.php:732 +msgid "This action is not available under your subscription plan." +msgstr "Esta acción no está disponible en su plan de suscripción." -#: ../../mod/profiles.php:745 -msgid "Contact information and social networks" -msgstr "Información de contacto y redes sociales" +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Actualmente hombre" -#: ../../mod/profiles.php:746 -msgid "My other channels" -msgstr "Mis otros canales" +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Actualmente mujer" -#: ../../mod/dav.php:121 -msgid "$Projectname channel" -msgstr "Canal $Projectname" - -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Identificador del perfil no válido" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Generalmente hombre" -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Editor de visibilidad del perfil" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Generalmente mujer" -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "Pulsar en un contacto para añadirlo o eliminarlo." +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgénero" -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Visible para" +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Intersexual" -#: ../../mod/directory.php:239 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d valoración" -msgstr[1] "%d valoraciones" +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transexual" -#: ../../mod/directory.php:250 -msgid "Gender: " -msgstr "Género:" +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermafrodita" -#: ../../mod/directory.php:252 -msgid "Status: " -msgstr "Estado:" +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Neutral" -#: ../../mod/directory.php:254 -msgid "Homepage: " -msgstr "Página personal:" +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "No especificado" -#: ../../mod/directory.php:313 -msgid "Description:" -msgstr "Descripción:" +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +#: ../../include/profile_selectors.php:61 +#: ../../include/profile_selectors.php:97 ../../include/permissions.php:881 +msgid "Other" +msgstr "Otro" -#: ../../mod/directory.php:322 -msgid "Public Forum:" -msgstr "Foro público:" +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Indeciso/a" -#: ../../mod/directory.php:325 -msgid "Keywords: " -msgstr "Palabras clave:" +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Males" +msgstr "Hombres" -#: ../../mod/directory.php:328 -msgid "Don't suggest" -msgstr "No sugerir:" +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Females" +msgstr "Mujeres" -#: ../../mod/directory.php:330 -msgid "Common connections:" -msgstr "Conexiones comunes:" +#: ../../include/profile_selectors.php:42 +msgid "Gay" +msgstr "Homosexual" -#: ../../mod/directory.php:379 -msgid "Global Directory" -msgstr "Directorio global:" +#: ../../include/profile_selectors.php:42 +msgid "Lesbian" +msgstr "Lesbiana" -#: ../../mod/directory.php:379 -msgid "Local Directory" -msgstr "Directorio local:" +#: ../../include/profile_selectors.php:42 +msgid "No Preference" +msgstr "Sin preferencias" -#: ../../mod/directory.php:385 -msgid "Finding:" -msgstr "Encontrar:" +#: ../../include/profile_selectors.php:42 +msgid "Bisexual" +msgstr "Bisexual" -#: ../../mod/directory.php:390 -msgid "next page" -msgstr "siguiente página" +#: ../../include/profile_selectors.php:42 +msgid "Autosexual" +msgstr "Autosexual" -#: ../../mod/directory.php:390 -msgid "previous page" -msgstr "página anterior" +#: ../../include/profile_selectors.php:42 +msgid "Abstinent" +msgstr "Casto/a" -#: ../../mod/directory.php:391 -msgid "Sort options" -msgstr "Ordenar opciones" +#: ../../include/profile_selectors.php:42 +msgid "Virgin" +msgstr "Virgen" -#: ../../mod/directory.php:392 -msgid "Alphabetic" -msgstr "Alfabético" +#: ../../include/profile_selectors.php:42 +msgid "Deviant" +msgstr "Fuera de lo común" -#: ../../mod/directory.php:393 -msgid "Reverse Alphabetic" -msgstr "Alfabético inverso" +#: ../../include/profile_selectors.php:42 +msgid "Fetish" +msgstr "Fetichista" -#: ../../mod/directory.php:394 -msgid "Newest to Oldest" -msgstr "De más nuevo a más antiguo" +#: ../../include/profile_selectors.php:42 +msgid "Oodles" +msgstr "Orgías" -#: ../../mod/directory.php:395 -msgid "Oldest to Newest" -msgstr "De más antiguo a más nuevo" +#: ../../include/profile_selectors.php:42 +msgid "Nonsexual" +msgstr "Asexual" -#: ../../mod/directory.php:412 -msgid "No entries (some entries may be hidden)." -msgstr "Sin entradas (algunas entradas pueden estar ocultas)." +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Single" +msgstr "Soltero/a" -#: ../../mod/dirsearch.php:21 ../../mod/regdir.php:45 -msgid "This site is not a directory server" -msgstr "Este sitio no es un servidor de directorio" +#: ../../include/profile_selectors.php:80 +msgid "Lonely" +msgstr "Solo/a" -#: ../../mod/dirsearch.php:29 -msgid "This directory server requires an access token" -msgstr "El servidor de este directorio necesita un \"token\" de acceso" +#: ../../include/profile_selectors.php:80 +msgid "Available" +msgstr "Disponible" -#: ../../mod/pubsites.php:21 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "Los sitios listados permiten el registro público en la red $Projectname. Todos los sitios de la red están vinculados entre sí, por lo que sus miembros, en ninguno de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los mismos hubs pueden proporcionar detalles adicionales." +#: ../../include/profile_selectors.php:80 +msgid "Unavailable" +msgstr "No disponible" -#: ../../mod/pubsites.php:27 -msgid "Hub URL" -msgstr "Dirección del hub" +#: ../../include/profile_selectors.php:80 +msgid "Has crush" +msgstr "Enamorado/a" -#: ../../mod/pubsites.php:27 -msgid "Access Type" -msgstr "Tipo de acceso" +#: ../../include/profile_selectors.php:80 +msgid "Infatuated" +msgstr "Apasionado/a" -#: ../../mod/pubsites.php:27 -msgid "Registration Policy" -msgstr "Normas de registro" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Dating" +msgstr "Saliendo con alguien" -#: ../../mod/pubsites.php:33 -msgid "Rate" -msgstr "Valorar" +#: ../../include/profile_selectors.php:80 +msgid "Unfaithful" +msgstr "Infiel" -#: ../../mod/dreport.php:23 -msgid "Invalid message" -msgstr "Mensaje no válido" +#: ../../include/profile_selectors.php:80 +msgid "Sex Addict" +msgstr "Con adicción al sexo" -#: ../../mod/dreport.php:55 -msgid "no results" -msgstr "sin resultados" +#: ../../include/profile_selectors.php:80 +msgid "Friends/Benefits" +msgstr "Amigos con algo extra" -#: ../../mod/dreport.php:60 -#, php-format -msgid "Delivery report for %1$s" -msgstr "Informe de entrega para %1$s" +#: ../../include/profile_selectors.php:80 +msgid "Casual" +msgstr "Casual" -#: ../../mod/dreport.php:74 -msgid "channel sync processed" -msgstr "se ha realizado la sincronización del canal" +#: ../../include/profile_selectors.php:80 +msgid "Engaged" +msgstr "Prometido/a" -#: ../../mod/dreport.php:78 -msgid "queued" -msgstr "encolado" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Married" +msgstr "Casado/a" -#: ../../mod/dreport.php:82 -msgid "posted" -msgstr "enviado" +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily married" +msgstr "Casado/a en sueños" -#: ../../mod/dreport.php:86 -msgid "accepted for delivery" -msgstr "aceptado para el envío" +#: ../../include/profile_selectors.php:80 +msgid "Partners" +msgstr "Pareja" -#: ../../mod/dreport.php:90 -msgid "updated" -msgstr "actualizado" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Cohabiting" +msgstr "Cohabitando" -#: ../../mod/dreport.php:93 -msgid "update ignored" -msgstr "actualización ignorada" +#: ../../include/profile_selectors.php:80 +msgid "Common law" +msgstr "Matrimonio tradicional" -#: ../../mod/dreport.php:96 -msgid "permission denied" -msgstr "permiso denegado" +#: ../../include/profile_selectors.php:80 +msgid "Happy" +msgstr "Felíz" -#: ../../mod/dreport.php:100 -msgid "recipient not found" -msgstr "destinatario no encontrado" +#: ../../include/profile_selectors.php:80 +msgid "Not looking" +msgstr "No estoy buscando" -#: ../../mod/dreport.php:103 -msgid "mail recalled" -msgstr "mensaje de correo revocado" +#: ../../include/profile_selectors.php:80 +msgid "Swinger" +msgstr "Libertino" -#: ../../mod/dreport.php:106 -msgid "duplicate mail received" -msgstr "se ha recibido mensaje duplicado" +#: ../../include/profile_selectors.php:80 +msgid "Betrayed" +msgstr "Engañado/a" -#: ../../mod/dreport.php:109 -msgid "mail delivered" -msgstr "correo enviado" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Separated" +msgstr "Separado/a" -#: ../../mod/editblock.php:118 -msgid "Delete block?" -msgstr "¿Borrar bloque?" +#: ../../include/profile_selectors.php:80 +msgid "Unstable" +msgstr "Inestable" -#: ../../mod/editblock.php:182 -msgid "Edit Block" -msgstr "Modificar este bloque" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Divorced" +msgstr "Divorciado/a" -#: ../../mod/new_channel.php:117 ../../mod/manage.php:130 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Ha creado %1$.0f de %2$.0f canales permitidos." - -#: ../../mod/new_channel.php:124 ../../mod/register.php:227 -msgid "Name or caption" -msgstr "Nombre o descripción" - -#: ../../mod/new_channel.php:124 ../../mod/register.php:227 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Ejemplos: \"Juan García\", \"Luisa y sus caballos\", \"Fútbol\", \"Grupo de aviación\"" +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily divorced" +msgstr "Divorciado/a en sueños" -#: ../../mod/new_channel.php:126 ../../mod/register.php:229 -msgid "Choose a short nickname" -msgstr "Elija un alias corto" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Widowed" +msgstr "Viudo/a" -#: ../../mod/new_channel.php:126 ../../mod/register.php:229 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s" +#: ../../include/profile_selectors.php:80 +msgid "Uncertain" +msgstr "Indeterminado" -#: ../../mod/new_channel.php:128 ../../mod/register.php:231 -msgid "Channel role and privacy" -msgstr "Clase de canal y privacidad" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "It's complicated" +msgstr "Es complicado" -#: ../../mod/new_channel.php:128 ../../mod/register.php:231 -msgid "Select a channel role with your privacy requirements." -msgstr "Seleccione un tipo de canal con sus requisitos de privacidad" +#: ../../include/profile_selectors.php:80 +msgid "Don't care" +msgstr "No me importa" -#: ../../mod/new_channel.php:128 ../../mod/register.php:231 -msgid "Read more about roles" -msgstr "Leer más sobre los roles" +#: ../../include/profile_selectors.php:80 +msgid "Ask me" +msgstr "Pregúnteme" -#: ../../mod/new_channel.php:131 -msgid "Create Channel" -msgstr "Crear un canal" +#: ../../include/acl_selectors.php:218 +msgid "Visible to your default audience" +msgstr "Visible para su público predeterminado." -#: ../../mod/new_channel.php:132 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "Un canal es su identidad en esta red. Puede representar a una persona, un blog o un foro, por nombrar unos pocos ejemplos. Los canales se pueden conectar con otros canales para compartir información con una gama de permisos extremadamente detallada." +#: ../../include/acl_selectors.php:243 +msgid "Show" +msgstr "Mostrar" -#: ../../mod/new_channel.php:133 -msgid "" -"or import an existing channel from another location." -msgstr "O importar un canal existente desde otro lugar." +#: ../../include/acl_selectors.php:244 +msgid "Don't show" +msgstr "No mostrar" -#: ../../mod/editlayout.php:112 -msgid "Delete layout?" -msgstr "¿Borrar la plantilla?" +#: ../../include/acl_selectors.php:249 +msgid "Other networks and post services" +msgstr "Otras redes y servicios de publicación" -#: ../../mod/editlayout.php:160 ../../mod/layouts.php:124 -msgid "Layout Description (Optional)" -msgstr "Descripción de la plantilla (opcional)" +#: ../../include/activities.php:42 +msgid " and " +msgstr " y " -#: ../../mod/editlayout.php:162 ../../mod/layouts.php:121 -#: ../../mod/layouts.php:180 -msgid "Layout Name" -msgstr "Nombre de la plantilla" +#: ../../include/activities.php:50 +msgid "public profile" +msgstr "el perfil público" -#: ../../mod/editlayout.php:179 -msgid "Edit Layout" -msgstr "Modificar la plantilla" +#: ../../include/activities.php:59 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s ha cambiado %2$s a “%3$s”" -#: ../../mod/rate.php:158 -msgid "Website:" -msgstr "Sitio web:" +#: ../../include/activities.php:60 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Visitar %2$s de %1$s" -#: ../../mod/rate.php:161 +#: ../../include/activities.php:63 #, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Canal remoto [%s] (aún no es conocido en este sitio)" +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s ha actualizado %2$s, cambiando %3$s." -#: ../../mod/rate.php:162 -msgid "Rating (this information is public)" -msgstr "Valoración (esta información es pública)" +#: ../../include/api.php:1338 +msgid "Public Timeline" +msgstr "Cronología pública" -#: ../../mod/rate.php:163 -msgid "Optionally explain your rating (this information is public)" -msgstr "Opcionalmente puede explicar su valoración (esta información es pública)" +#: ../../include/apps.php:128 +msgid "Site Admin" +msgstr "Administrador del sitio" -#: ../../mod/webpages.php:195 -msgid "Page Title" -msgstr "Título de página" +#: ../../include/apps.php:129 ../../include/conversation.php:1694 +#: ../../include/nav.php:102 +msgid "Bookmarks" +msgstr "Marcadores" -#: ../../mod/editwebpage.php:153 -msgid "Delete webpage?" -msgstr "¿Eliminar la página web?" +#: ../../include/apps.php:130 +msgid "Address Book" +msgstr "Libreta de direcciones" -#: ../../mod/editwebpage.php:173 -msgid "Page link title" -msgstr "Título del enlace de la página" +#: ../../include/apps.php:131 ../../include/nav.php:110 ../../boot.php:1602 +msgid "Login" +msgstr "Iniciar sesión" -#: ../../mod/editwebpage.php:223 -msgid "Edit Webpage" -msgstr "Editar la página web" +#: ../../include/apps.php:133 ../../include/nav.php:182 +msgid "Grid" +msgstr "Red" -#: ../../mod/blocks.php:95 ../../mod/blocks.php:150 -msgid "Block Name" -msgstr "Nombre del bloque" +#: ../../include/apps.php:137 ../../include/nav.php:185 +msgid "Channel Home" +msgstr "Mi canal" -#: ../../mod/blocks.php:151 -msgid "Block Title" -msgstr "Título del bloque" +#: ../../include/apps.php:140 ../../include/conversation.php:1667 +#: ../../include/conversation.php:1670 ../../include/nav.php:204 +msgid "Events" +msgstr "Eventos" -#: ../../mod/ratings.php:69 -msgid "No ratings" -msgstr "Ninguna valoración" +#: ../../include/apps.php:141 ../../include/nav.php:170 +msgid "Directory" +msgstr "Directorio" -#: ../../mod/ratings.php:100 -msgid "Rating: " -msgstr "Valoración:" +#: ../../include/apps.php:143 ../../include/nav.php:196 +msgid "Mail" +msgstr "Correo" -#: ../../mod/ratings.php:101 -msgid "Website: " -msgstr "Sitio web:" +#: ../../include/apps.php:146 ../../include/nav.php:96 +msgid "Chat" +msgstr "Chat" -#: ../../mod/ratings.php:103 -msgid "Description: " -msgstr "Descripción:" +#: ../../include/apps.php:148 +msgid "Probe" +msgstr "Probar" -#: ../../mod/events.php:21 -msgid "Calendar entries imported." -msgstr "Entradas de calendario importadas." +#: ../../include/apps.php:149 +msgid "Suggest" +msgstr "Sugerir" -#: ../../mod/events.php:23 -msgid "No calendar entries found." -msgstr "No se han encontrado entradas de calendario." +#: ../../include/apps.php:150 +msgid "Random Channel" +msgstr "Canal aleatorio" -#: ../../mod/events.php:100 -msgid "Event can not end before it has started." -msgstr "Un evento no puede terminar antes de que haya comenzado." +#: ../../include/apps.php:151 +msgid "Invite" +msgstr "Invitar" -#: ../../mod/events.php:102 ../../mod/events.php:111 ../../mod/events.php:131 -msgid "Unable to generate preview." -msgstr "No se puede crear la vista previa." +#: ../../include/apps.php:152 ../../include/widgets.php:1338 +msgid "Features" +msgstr "Funcionalidades" -#: ../../mod/events.php:109 -msgid "Event title and start time are required." -msgstr "Se requieren el título del evento y su hora de inicio." +#: ../../include/apps.php:154 +msgid "Post" +msgstr "Publicación" -#: ../../mod/events.php:129 ../../mod/events.php:254 -msgid "Event not found." -msgstr "Evento no encontrado." +#: ../../include/apps.php:252 +msgid "Install" +msgstr "Instalar" -#: ../../mod/events.php:444 -msgid "Edit event title" -msgstr "Editar el título del evento" +#: ../../include/apps.php:257 +msgid "Purchase" +msgstr "Comprar" -#: ../../mod/events.php:444 -msgid "Event title" -msgstr "Título del evento" +#: ../../include/network.php:659 +msgid "view full size" +msgstr "Ver en el tamaño original" -#: ../../mod/events.php:446 -msgid "Categories (comma-separated list)" -msgstr "Categorías (lista separada por comas)" +#: ../../include/network.php:1827 ../../include/enotify.php:57 +msgid "$Projectname Notification" +msgstr "Notificación de $Projectname" -#: ../../mod/events.php:447 -msgid "Edit Category" -msgstr "Editar la categoría" +#: ../../include/network.php:1828 ../../include/enotify.php:58 +msgid "$projectname" +msgstr "$projectname" -#: ../../mod/events.php:447 -msgid "Category" -msgstr "Categoría" +#: ../../include/network.php:1830 ../../include/enotify.php:60 +msgid "Thank You," +msgstr "Gracias," -#: ../../mod/events.php:450 -msgid "Edit start date and time" -msgstr "Modificar la fecha y hora de comienzo" +#: ../../include/network.php:1832 ../../include/enotify.php:62 +#, php-format +msgid "%s Administrator" +msgstr "%s Administrador" -#: ../../mod/events.php:450 -msgid "Start date and time" -msgstr "Fecha y hora de comienzo" +#: ../../include/network.php:1889 +msgid "No Subject" +msgstr "Sin asunto" -#: ../../mod/events.php:451 ../../mod/events.php:454 -msgid "Finish date and time are not known or not relevant" -msgstr "La fecha y hora de terminación no se conocen o no son relevantes" +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Ficheros adjuntos:" -#: ../../mod/events.php:453 -msgid "Edit finish date and time" -msgstr "Modificar la fecha y hora de terminación" +#: ../../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" -#: ../../mod/events.php:453 -msgid "Finish date and time" -msgstr "Fecha y hora de terminación" +#: ../../include/bb2diaspora.php:489 +msgid "$Projectname event notification:" +msgstr "Notificación de eventos de $Projectname:" -#: ../../mod/events.php:455 ../../mod/events.php:456 -msgid "Adjust for viewer timezone" -msgstr "Ajustar para obtener el visor de los husos horarios" +#: ../../include/bb2diaspora.php:493 ../../include/event.php:30 +#: ../../include/text.php:1441 +msgid "Starts:" +msgstr "Comienza:" -#: ../../mod/events.php:455 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales." +#: ../../include/bb2diaspora.php:501 ../../include/event.php:40 +#: ../../include/text.php:1445 +msgid "Finishes:" +msgstr "Finaliza:" -#: ../../mod/events.php:457 -msgid "Edit Description" -msgstr "Editar la descripción" +#: ../../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" -#: ../../mod/events.php:459 -msgid "Edit Location" -msgstr "Modificar la dirección" +#: ../../include/bbcode.php:162 ../../include/bbcode.php:851 +msgid "Encrypted content" +msgstr "Contenido cifrado" -#: ../../mod/events.php:462 ../../mod/events.php:464 -msgid "Share this event" -msgstr "Compartir este evento" - -#: ../../mod/events.php:469 -msgid "Advanced Options" -msgstr "Opciones avanzadas" +#: ../../include/bbcode.php:179 +#, php-format +msgid "Install %s element: " +msgstr "Instalar el elemento %s:" -#: ../../mod/events.php:603 -msgid "Edit event" -msgstr "Editar evento" +#: ../../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." -#: ../../mod/events.php:605 -msgid "Delete event" -msgstr "Borrar evento" +#: ../../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" -#: ../../mod/events.php:639 -msgid "calendar" -msgstr "calendario" +#: ../../include/bbcode.php:545 +msgid "Different viewers will see this text differently" +msgstr "Visitantes diferentes verán este texto de forma distinta" -#: ../../mod/events.php:699 -msgid "Event removed" -msgstr "Evento borrado" +#: ../../include/bbcode.php:762 +msgid "$1 spoiler" +msgstr "$1 spoiler" -#: ../../mod/events.php:702 -msgid "Failed to remove event" -msgstr "Error al eliminar el evento" +#: ../../include/bbcode.php:789 +msgid "$1 wrote:" +msgstr "$1 escribió:" -#: ../../mod/rbmark.php:90 -msgid "Select a bookmark folder" -msgstr "Seleccionar una carpeta de marcadores" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s ahora está conectado/a con %2$s" -#: ../../mod/rbmark.php:95 -msgid "Save Bookmark" -msgstr "Guardar marcador" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s ha dado un toque a %2$s" -#: ../../mod/rbmark.php:96 -msgid "URL of bookmark" -msgstr "Dirección del marcador" +#: ../../include/conversation.php:243 ../../include/text.php:992 +#: ../../include/text.php:997 +msgid "poked" +msgstr "ha dado un toque a" -#: ../../mod/rbmark.php:101 -msgid "Or enter new bookmark folder name" -msgstr "O introduzca un nuevo nombre para la carpeta de marcadores" +#: ../../include/conversation.php:691 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Ver el perfil @ %s de %s" -#: ../../mod/ffsapi.php:8 -msgid "Share content from Firefox to $Projectname" -msgstr "Compartir contenido desde Firefox a $Projectname" +#: ../../include/conversation.php:710 +msgid "Categories:" +msgstr "Categorías:" -#: ../../mod/ffsapi.php:11 -msgid "Activate the Firefox $Projectname provider" -msgstr "Servicio de compartición de Firefox: activar el proveedor $Projectname " +#: ../../include/conversation.php:711 +msgid "Filed under:" +msgstr "Archivado bajo:" -#: ../../mod/register.php:45 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Se ha superado el límite máximo de inscripciones diarias de este sitio. Por favor, pruebe de nuevo mañana." +#: ../../include/conversation.php:738 +msgid "View in context" +msgstr "Mostrar en su contexto" -#: ../../mod/register.php:51 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Por favor, confirme que acepta los Términos del servicio. El registro ha fallado." +#: ../../include/conversation.php:850 +msgid "remove" +msgstr "eliminar" -#: ../../mod/register.php:85 -msgid "Passwords do not match." -msgstr "Las contraseñas no coinciden." +#: ../../include/conversation.php:854 ../../include/nav.php:256 +msgid "Loading..." +msgstr "Cargando..." -#: ../../mod/register.php:127 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registro realizado con éxito. Por favor, compruebe su correo electrónico para ver las instrucciones para validarlo." +#: ../../include/conversation.php:855 +msgid "Delete Selected Items" +msgstr "Eliminar elementos seleccionados" -#: ../../mod/register.php:133 -msgid "Your registration is pending approval by the site owner." -msgstr "Su registro está pendiente de aprobación por el propietario del sitio." +#: ../../include/conversation.php:953 +msgid "View Source" +msgstr "Ver la fuente original de la publicación" -#: ../../mod/register.php:136 -msgid "Your registration can not be processed." -msgstr "Su registro no puede ser procesado." +#: ../../include/conversation.php:954 +msgid "Follow Thread" +msgstr "Seguir este hilo" -#: ../../mod/register.php:180 -msgid "Registration on this hub is disabled." -msgstr "El registro está deshabilitado en este sitio." +#: ../../include/conversation.php:955 +msgid "Unfollow Thread" +msgstr "Dejar de seguir este hilo" -#: ../../mod/register.php:189 -msgid "Registration on this hub is by approval only." -msgstr "El registro en este hub está sometido a aprobación previa." +#: ../../include/conversation.php:960 +msgid "Activity/Posts" +msgstr "Actividad y publicaciones" -#: ../../mod/register.php:190 -msgid "Register at another affiliated hub." -msgstr "Registrarse en otro hub afiliado." +#: ../../include/conversation.php:962 +msgid "Edit Connection" +msgstr "Editar conexión" -#: ../../mod/register.php:200 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Este sitio ha excedido el límite de inscripción diaria de cuentas. Por favor, inténtelo de nuevo mañana." +#: ../../include/conversation.php:963 +msgid "Message" +msgstr "Mensaje" -#: ../../mod/register.php:211 -msgid "Terms of Service" -msgstr "Términos del servicio" +#: ../../include/conversation.php:1080 +#, php-format +msgid "%s likes this." +msgstr "A %s le gusta esto." -#: ../../mod/register.php:217 +#: ../../include/conversation.php:1080 #, php-format -msgid "I accept the %s for this website" -msgstr "Acepto los %s de este sitio" +msgid "%s doesn't like this." +msgstr "A %s no le gusta esto." -#: ../../mod/register.php:219 +#: ../../include/conversation.php:1084 #, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Tengo más de 13 años de edad y acepto los %s de este sitio" +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "a %2$d personas le gusta esto." +msgstr[1] "A %2$d personas les gusta esto." -#: ../../mod/register.php:223 -msgid "Your email address" -msgstr "Su dirección de correo electrónico" +#: ../../include/conversation.php:1086 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "a %2$d personas no les gusta esto." +msgstr[1] "A %2$d personas no les gusta esto." -#: ../../mod/register.php:224 -msgid "Choose a password" -msgstr "Elija una contraseña" +#: ../../include/conversation.php:1092 +msgid "and" +msgstr "y" -#: ../../mod/register.php:225 -msgid "Please re-enter your password" -msgstr "Por favor, vuelva a escribir su contraseña" +#: ../../include/conversation.php:1095 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] ", y %d persona más" +msgstr[1] ", y %d personas más" -#: ../../mod/register.php:226 -msgid "Please enter your invitation code" -msgstr "Por favor, introduzca el código de su invitación" +#: ../../include/conversation.php:1096 +#, php-format +msgid "%s like this." +msgstr "A %s le gusta esto." -#: ../../mod/register.php:232 -msgid "no" -msgstr "no" +#: ../../include/conversation.php:1096 +#, php-format +msgid "%s don't like this." +msgstr "A %s no le gusta esto." -#: ../../mod/register.php:232 -msgid "yes" -msgstr "sí" +#: ../../include/conversation.php:1169 +msgid "Visible to everybody" +msgstr "Visible para cualquiera" -#: ../../mod/register.php:246 -msgid "Membership on this site is by invitation only." -msgstr "Para registrarse en este sitio es necesaria una invitación." +#: ../../include/conversation.php:1171 +msgid "Please enter a video link/URL:" +msgstr "Por favor, introduzca un enlace de vídeo:" -#: ../../mod/register.php:258 -msgid "Proceed to create your first channel" -msgstr "Crear su primer canal" +#: ../../include/conversation.php:1172 +msgid "Please enter an audio link/URL:" +msgstr "Por favor, introduzca un enlace de audio:" -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "Por favor, inicie sesión." +#: ../../include/conversation.php:1173 +msgid "Tag term:" +msgstr "Término de la etiqueta:" -#: ../../mod/filer.php:48 -msgid "- select -" -msgstr "- seleccionar -" +#: ../../include/conversation.php:1175 +msgid "Where are you right now?" +msgstr "¿Donde está ahora?" -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Petición inválida del identificador." +#: ../../include/conversation.php:1211 +msgid "Page link name" +msgstr "Nombre del enlace de la página" -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "Descartar" +#: ../../include/conversation.php:1214 +msgid "Post as" +msgstr "Publicar como" -#: ../../mod/notifications.php:94 ../../mod/notify.php:53 -msgid "No more system notifications." -msgstr "No hay más notificaciones del sistema" +#: ../../include/conversation.php:1222 +msgid "upload photo" +msgstr "subir foto" -#: ../../mod/notifications.php:98 ../../mod/notify.php:57 -msgid "System Notifications" -msgstr "Notificaciones del sistema" +#: ../../include/conversation.php:1224 +msgid "attach file" +msgstr "adjuntar fichero" -#: ../../mod/filestorage.php:82 -msgid "Permission Denied." -msgstr "Permiso denegado" +#: ../../include/conversation.php:1226 +msgid "web link" +msgstr "enlace web" -#: ../../mod/filestorage.php:98 -msgid "File not found." -msgstr "Fichero no encontrado." +#: ../../include/conversation.php:1227 +msgid "Insert video link" +msgstr "Insertar enlace de vídeo" -#: ../../mod/filestorage.php:141 -msgid "Edit file permissions" -msgstr "Modificar los permisos del fichero" +#: ../../include/conversation.php:1228 +msgid "video link" +msgstr "enlace de vídeo" -#: ../../mod/filestorage.php:150 -msgid "Set/edit permissions" -msgstr "Establecer/editar los permisos" +#: ../../include/conversation.php:1229 +msgid "Insert audio link" +msgstr "Insertar enlace de audio" -#: ../../mod/filestorage.php:151 -msgid "Include all files and sub folders" -msgstr "Incluir todos los ficheros y subcarpetas" +#: ../../include/conversation.php:1230 +msgid "audio link" +msgstr "enlace de audio" -#: ../../mod/filestorage.php:152 -msgid "Return to file list" -msgstr "Volver a la lista de ficheros" +#: ../../include/conversation.php:1232 +msgid "set location" +msgstr "establecer ubicación" -#: ../../mod/filestorage.php:154 -msgid "Copy/paste this code to attach file to a post" -msgstr "Copiar/pegar este código para adjuntar el fichero al envío" +#: ../../include/conversation.php:1237 +msgid "clear location" +msgstr "borrar los datos de ubicación" -#: ../../mod/filestorage.php:155 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Copiar/pegar esta dirección para enlazar el fichero desde una página web" - -#: ../../mod/filestorage.php:157 -msgid "Share this file" -msgstr "Compartir este fichero" +#: ../../include/conversation.php:1246 +msgid "permissions" +msgstr "permisos" -#: ../../mod/filestorage.php:158 -msgid "Show URL to this file" -msgstr "Mostrar la dirección de este fichero" +#: ../../include/conversation.php:1272 +msgid "Set publish date" +msgstr "Establecer la fecha de publicación" -#: ../../mod/filestorage.php:159 -msgid "Notify your contacts about this file" -msgstr "Avisar a sus contactos sobre este fichero" +#: ../../include/conversation.php:1521 +msgid "Discover" +msgstr "Descubrir" -#: ../../mod/removeaccount.php:30 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "La eliminación de cuentas no está permitida hasta después de que hayan transcurrido 48 horas desde el último cambio de contraseña." +#: ../../include/conversation.php:1524 +msgid "Imported public streams" +msgstr "Contenidos públicos importados" -#: ../../mod/removeaccount.php:57 -msgid "Remove This Account" -msgstr "Eliminar esta cuenta" +#: ../../include/conversation.php:1529 +msgid "Commented Order" +msgstr "Comentarios recientes" -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "WARNING: " -msgstr "ATENCIÓN:" +#: ../../include/conversation.php:1532 +msgid "Sort by Comment Date" +msgstr "Ordenar por fecha de comentario" -#: ../../mod/removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Esta cuenta y todos sus canales van a ser eliminados de la red." +#: ../../include/conversation.php:1536 +msgid "Posted Order" +msgstr "Publicaciones recientes" -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "This action is permanent and can not be undone!" -msgstr "¡Esta acción tiene carácter definitivo y no se puede deshacer!" +#: ../../include/conversation.php:1539 +msgid "Sort by Post Date" +msgstr "Ordenar por fecha de publicación" -#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 -msgid "Please enter your password for verification:" -msgstr "Por favor, introduzca su contraseña para su verificación:" +#: ../../include/conversation.php:1547 +msgid "Posts that mention or involve you" +msgstr "Publicaciones que le mencionan o involucran" -#: ../../mod/removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Remover esta cuenta, todos sus canales y clones de la red" +#: ../../include/conversation.php:1556 +msgid "Activity Stream - by date" +msgstr "Contenido - por fecha" -#: ../../mod/removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "Por defecto, solo las instancias de los canales ubicados en este servidor serán eliminados de la red" +#: ../../include/conversation.php:1562 +msgid "Starred" +msgstr "Preferidas" -#: ../../mod/removeaccount.php:61 ../../mod/settings.php:712 -msgid "Remove Account" -msgstr "Eliminar cuenta" +#: ../../include/conversation.php:1565 +msgid "Favourite Posts" +msgstr "Publicaciones favoritas" -#: ../../mod/follow.php:27 -msgid "Channel added." -msgstr "Canal añadido." +#: ../../include/conversation.php:1572 +msgid "Spam" +msgstr "Correo basura" -#: ../../mod/removeme.php:29 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña." +#: ../../include/conversation.php:1575 +msgid "Posts flagged as SPAM" +msgstr "Publicaciones marcadas como basura" -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "Eliminar este canal" +#: ../../include/conversation.php:1632 +msgid "Status Messages and Posts" +msgstr "Mensajes de estado y publicaciones" -#: ../../mod/removeme.php:58 -msgid "This channel will be completely removed from the network. " -msgstr "Este canal va a ser completamente eliminado de la red." +#: ../../include/conversation.php:1641 +msgid "About" +msgstr "Mi perfil" -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" -msgstr "Eliminar este canal y todos sus clones de la red" +#: ../../include/conversation.php:1644 +msgid "Profile Details" +msgstr "Detalles del perfil" -#: ../../mod/removeme.php:60 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red" +#: ../../include/conversation.php:1653 ../../include/photos.php:506 +msgid "Photo Albums" +msgstr "Álbumes de fotos" -#: ../../mod/removeme.php:61 ../../mod/settings.php:1131 -msgid "Remove Channel" -msgstr "Eliminar el canal" +#: ../../include/conversation.php:1660 +msgid "Files and Storage" +msgstr "Ficheros y repositorio" -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Contacto no encontrado" +#: ../../include/conversation.php:1681 ../../include/conversation.php:1684 +#: ../../include/widgets.php:794 +msgid "Chatrooms" +msgstr "Salas de chat" -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Enviar sugerencia a un amigo." +#: ../../include/conversation.php:1697 +msgid "Saved Bookmarks" +msgstr "Marcadores guardados" -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Sugerir amigos" +#: ../../include/conversation.php:1707 +msgid "Manage Webpages" +msgstr "Administrar páginas web" -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Sugerir un amigo a %s" +#: ../../include/conversation.php:1766 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "Participaré" +msgstr[1] "Participaré" -#: ../../mod/rmagic.php:40 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "Encontramos un problema durante el inicio de sesión con la OpenID que proporcionó. Por favor, compruebe que la ID está correctamente escrita." +#: ../../include/conversation.php:1769 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "No participaré" +msgstr[1] "No participaré" -#: ../../mod/rmagic.php:40 -msgid "The error message was:" -msgstr "El mensaje de error fue:" +#: ../../include/conversation.php:1772 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "Indeciso/a" +msgstr[1] "Indecisos/as" -#: ../../mod/rmagic.php:44 -msgid "Authentication failed." -msgstr "Falló la autenticación." +#: ../../include/conversation.php:1775 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "De acuerdo" +msgstr[1] "De acuerdo" -#: ../../mod/rmagic.php:84 -msgid "Remote Authentication" -msgstr "Acceso desde su servidor" +#: ../../include/conversation.php:1778 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "En desacuerdo" +msgstr[1] "En desacuerdo" -#: ../../mod/rmagic.php:85 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)" +#: ../../include/conversation.php:1781 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "se abstiene" +msgstr[1] "Se abstienen" -#: ../../mod/rmagic.php:86 -msgid "Authenticate" -msgstr "Acceder" +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "Marcadores de %1$s" -#: ../../mod/help.php:163 -msgid "Documentation Search" -msgstr "Búsqueda de Documentación" +#: ../../include/chat.php:23 +msgid "Missing room name" +msgstr "Sala de chat sin nombre" -#: ../../mod/help.php:204 ../../mod/help.php:210 ../../mod/help.php:216 -msgid "Help:" -msgstr "Ayuda:" +#: ../../include/chat.php:32 +msgid "Duplicate room name" +msgstr "Nombre de sala duplicado." -#: ../../mod/help.php:257 -msgid "$Projectname Documentation" -msgstr "Documentación de $Projectname" +#: ../../include/chat.php:82 ../../include/chat.php:90 +msgid "Invalid room specifier." +msgstr "Especificador de sala no válido." -#: ../../mod/group.php:20 -msgid "Privacy group created." -msgstr "El grupo de canales ha sido creado." +#: ../../include/chat.php:122 +msgid "Room not found." +msgstr "Sala no encontrada." -#: ../../mod/group.php:26 -msgid "Could not create privacy group." -msgstr "No se puede crear el grupo de canales" +#: ../../include/chat.php:143 +msgid "Room is full" +msgstr "La sala está llena." -#: ../../mod/group.php:54 -msgid "Privacy group updated." -msgstr "Grupo de canales actualizado." +#: ../../include/Contact.php:118 +msgid "New window" +msgstr "Nueva ventana" -#: ../../mod/group.php:86 -msgid "Create a group of channels." -msgstr "Crear un grupo de canales." +#: ../../include/Contact.php:119 +msgid "Open the selected location in a different window or browser tab" +msgstr "Abrir la dirección seleccionada en una ventana o pestaña aparte" -#: ../../mod/group.php:87 ../../mod/group.php:180 -msgid "Privacy group name: " -msgstr "Nombre del grupo de canales:" +#: ../../include/Contact.php:237 +#, php-format +msgid "User '%s' deleted" +msgstr "El usuario '%s' ha sido eliminado" -#: ../../mod/group.php:89 ../../mod/group.php:183 -msgid "Members are visible to other channels" -msgstr "Los miembros son visibles para otros canales" +#: ../../include/auth.php:105 +msgid "Logged out." +msgstr "Desconectado/a." -#: ../../mod/group.php:107 -msgid "Privacy group removed." -msgstr "Grupo de canales eliminado." +#: ../../include/auth.php:212 +msgid "Failed authentication" +msgstr "Autenticación fallida." -#: ../../mod/group.php:109 -msgid "Unable to remove privacy group." -msgstr "Imposible eliminar el grupo de canales." +#: ../../include/security.php:383 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "El \"token\" de seguridad del formulario no es correcto. Esto ha ocurrido probablemente porque el formulario ha estado abierto demasiado tiempo (>3 horas) antes de ser enviado" -#: ../../mod/group.php:179 -msgid "Privacy group editor" -msgstr "Editor de grupos de canales" +#: ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Frecuentemente" -#: ../../mod/group.php:193 -msgid "Members" -msgstr "Miembros" +#: ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Cada hora" -#: ../../mod/group.php:195 -msgid "All Connected Channels" -msgstr "Todos los canales conectados" +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Dos veces al día" -#: ../../mod/group.php:227 -msgid "Click on a channel to add or remove." -msgstr "Haga clic en un canal para agregarlo o quitarlo." - -#: ../../mod/search.php:212 -#, php-format -msgid "Items tagged with: %s" -msgstr "elementos etiquetados con: %s" +#: ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Diariamente" -#: ../../mod/search.php:214 -#, php-format -msgid "Search results for: %s" -msgstr "Resultados de la búsqueda para: %s" +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Semanalmente" -#: ../../mod/home.php:57 ../../mod/home.php:65 ../../mod/siteinfo.php:61 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Mensualmente" -#: ../../mod/home.php:75 -#, php-format -msgid "Welcome to %s" -msgstr "Bienvenido a %s" +#: ../../include/contact_selectors.php:76 +#: ../../include/contact_selectors.php:77 +msgid "Friendica" +msgstr "Friendica" -#: ../../mod/service_limits.php:19 -msgid "No service class restrictions found." -msgstr "No se han encontrado restricciones sobre esta clase de servicio." +#: ../../include/contact_selectors.php:78 +msgid "OStatus" +msgstr "OStatus" -#: ../../mod/settings.php:76 -msgid "Name is required" -msgstr "El nombre es obligatorio" +#: ../../include/contact_selectors.php:79 +msgid "GNU-Social" +msgstr "GNU Social" -#: ../../mod/settings.php:80 -msgid "Key and Secret are required" -msgstr "\"Key\" y \"Secret\" son obligatorios" +#: ../../include/contact_selectors.php:80 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../mod/settings.php:232 -msgid "Not valid email." -msgstr "Correo electrónico no válido." +#: ../../include/contact_selectors.php:82 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../mod/settings.php:235 -msgid "Protected email address. Cannot change to that email." -msgstr "Dirección de correo electrónico protegida. No se puede cambiar a ella." +#: ../../include/contact_selectors.php:83 +msgid "Facebook" +msgstr "Facebook" -#: ../../mod/settings.php:244 -msgid "System failure storing new email. Please try again." -msgstr "Fallo de sistema al guardar el nuevo correo electrónico. Por favor, inténtelo de nuevo." +#: ../../include/contact_selectors.php:84 +msgid "Zot" +msgstr "Zot" -#: ../../mod/settings.php:261 -msgid "Password verification failed." -msgstr "La comprobación de la contraseña ha fallado." +#: ../../include/contact_selectors.php:85 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../mod/settings.php:268 -msgid "Passwords do not match. Password unchanged." -msgstr "Las contraseñas no coinciden. La contraseña no se ha cambiado." +#: ../../include/contact_selectors.php:86 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../mod/settings.php:272 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "No se permiten contraseñas vacías. La contraseña no se ha cambiado." +#: ../../include/contact_selectors.php:87 +msgid "MySpace" +msgstr "MySpace" -#: ../../mod/settings.php:286 -msgid "Password changed." -msgstr "Contraseña cambiada." +#: ../../include/contact_widgets.php:14 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d invitación pendiente" +msgstr[1] "%d invitaciones disponibles" -#: ../../mod/settings.php:288 -msgid "Password update failed. Please try again." -msgstr "La actualización de la contraseña ha fallado. Por favor, inténtalo de nuevo." +#: ../../include/contact_widgets.php:22 +msgid "Find Channels" +msgstr "Encontrar canales" -#: ../../mod/settings.php:532 -msgid "Settings updated." -msgstr "Ajustes actualizados." +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" +msgstr "Introducir nombre o interés" -#: ../../mod/settings.php:596 ../../mod/settings.php:622 -#: ../../mod/settings.php:658 -msgid "Add application" -msgstr "Añadir aplicación" +#: ../../include/contact_widgets.php:24 +msgid "Connect/Follow" +msgstr "Conectar/Seguir" -#: ../../mod/settings.php:599 -msgid "Name of application" -msgstr "Nombre de la aplicación" +#: ../../include/contact_widgets.php:25 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Ejemplos: José Fernández, Pesca" -#: ../../mod/settings.php:600 ../../mod/settings.php:626 -msgid "Consumer Key" -msgstr "Consumer Key" +#: ../../include/contact_widgets.php:29 +msgid "Random Profile" +msgstr "Perfil aleatorio" -#: ../../mod/settings.php:600 ../../mod/settings.php:601 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Generado automáticamente - si lo desea, cámbielo. Longitud máxima: 20" +#: ../../include/contact_widgets.php:30 +msgid "Invite Friends" +msgstr "Invitar a amigos" -#: ../../mod/settings.php:601 ../../mod/settings.php:627 -msgid "Consumer Secret" -msgstr "Consumer Secret" +#: ../../include/contact_widgets.php:32 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Ejemplo avanzado: nombre=juan y país=españa" -#: ../../mod/settings.php:602 ../../mod/settings.php:628 -msgid "Redirect" -msgstr "Redirigir" +#: ../../include/contact_widgets.php:57 ../../include/features.php:97 +#: ../../include/widgets.php:310 +msgid "Saved Folders" +msgstr "Carpetas guardadas" -#: ../../mod/settings.php:602 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "URI de redirección - dejar en blanco a menos que su aplicación específicamente lo requiera" +#: ../../include/contact_widgets.php:60 ../../include/contact_widgets.php:98 +#: ../../include/widgets.php:313 +msgid "Everything" +msgstr "Todo" -#: ../../mod/settings.php:603 ../../mod/settings.php:629 -msgid "Icon url" -msgstr "Dirección del icono" +#: ../../include/contact_widgets.php:95 ../../include/widgets.php:46 +#: ../../include/taxonomy.php:282 +msgid "Categories" +msgstr "Categorías" -#: ../../mod/settings.php:603 -msgid "Optional" -msgstr "Opcional" +#: ../../include/contact_widgets.php:128 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d conexión en común" +msgstr[1] "%d conexiones en común" -#: ../../mod/settings.php:614 -msgid "Application not found." -msgstr "Aplicación no encontrada." +#: ../../include/contact_widgets.php:133 +msgid "show more" +msgstr "mostrar más" -#: ../../mod/settings.php:657 -msgid "Connected Apps" -msgstr "Aplicaciones conectadas" +#: ../../include/attach.php:247 ../../include/attach.php:333 +msgid "Item was not found." +msgstr "Elemento no encontrado." -#: ../../mod/settings.php:661 -msgid "Client key starts with" -msgstr "La \"client key\" empieza por" +#: ../../include/attach.php:497 +msgid "No source file." +msgstr "Ningún fichero de origen" -#: ../../mod/settings.php:662 -msgid "No name" -msgstr "Sin nombre" +#: ../../include/attach.php:519 +msgid "Cannot locate file to replace" +msgstr "No se puede localizar el fichero que va a ser sustituido." -#: ../../mod/settings.php:663 -msgid "Remove authorization" -msgstr "Eliminar autorización" +#: ../../include/attach.php:537 +msgid "Cannot locate file to revise/update" +msgstr "No se puede localizar el fichero para revisar/actualizar" -#: ../../mod/settings.php:676 -msgid "No feature settings configured" -msgstr "No se ha establecido la configuración de los complementos" +#: ../../include/attach.php:672 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "El fichero supera el limite de tamaño de %d" -#: ../../mod/settings.php:683 -msgid "Feature/Addon Settings" -msgstr "Ajustes de los complementos" +#: ../../include/attach.php:686 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos." -#: ../../mod/settings.php:706 -msgid "Account Settings" -msgstr "Configuración de la cuenta" +#: ../../include/attach.php:842 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado." -#: ../../mod/settings.php:707 -msgid "Current Password" -msgstr "Contraseña actual" +#: ../../include/attach.php:855 +msgid "Stored file could not be verified. Upload failed." +msgstr "El fichero almacenado no ha podido ser verificado. El envío ha fallado." -#: ../../mod/settings.php:708 -msgid "Enter New Password" -msgstr "Escribir una nueva contraseña" +#: ../../include/attach.php:909 ../../include/attach.php:925 +msgid "Path not available." +msgstr "Ruta no disponible." -#: ../../mod/settings.php:709 -msgid "Confirm New Password" -msgstr "Confirmar la nueva contraseña" +#: ../../include/attach.php:971 ../../include/attach.php:1123 +msgid "Empty pathname" +msgstr "Ruta vacía" -#: ../../mod/settings.php:709 -msgid "Leave password fields blank unless changing" -msgstr "Dejar en blanco la contraseña a menos que desee cambiarla." +#: ../../include/attach.php:997 +msgid "duplicate filename or path" +msgstr "Nombre duplicado de ruta o fichero" -#: ../../mod/settings.php:711 ../../mod/settings.php:1048 -msgid "Email Address:" -msgstr "Dirección de correo electrónico:" +#: ../../include/attach.php:1019 +msgid "Path not found." +msgstr "Ruta no encontrada" -#: ../../mod/settings.php:713 -msgid "Remove this account including all its channels" -msgstr "Eliminar esta cuenta incluyendo todos sus canales" +#: ../../include/attach.php:1077 +msgid "mkdir failed." +msgstr "mkdir ha fallado." -#: ../../mod/settings.php:736 -msgid "Additional Features" -msgstr "Funcionalidades" +#: ../../include/attach.php:1081 +msgid "database storage failed." +msgstr "el almacenamiento en la base de datos ha fallado." -#: ../../mod/settings.php:760 -msgid "Connector Settings" -msgstr "Configuración del conector" +#: ../../include/attach.php:1129 +msgid "Empty path" +msgstr "Ruta vacía" -#: ../../mod/settings.php:799 -msgid "No special theme for mobile devices" -msgstr "Sin tema especial para dispositivos móviles" +#: ../../include/datetime.php:136 +msgid "Birthday" +msgstr "Cumpleaños" -#: ../../mod/settings.php:802 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (Experimental)" +#: ../../include/datetime.php:138 +msgid "Age: " +msgstr "Edad:" -#: ../../mod/settings.php:844 -msgid "Display Settings" -msgstr "Ajustes de visualización" +#: ../../include/datetime.php:140 +msgid "YYYY-MM-DD or MM-DD" +msgstr "AAAA-MM-DD o MM-DD" -#: ../../mod/settings.php:845 -msgid "Theme Settings" -msgstr "Ajustes del tema" +#: ../../include/datetime.php:273 ../../boot.php:2432 +msgid "never" +msgstr "nunca" -#: ../../mod/settings.php:846 -msgid "Custom Theme Settings" -msgstr "Ajustes personalizados del tema" +#: ../../include/datetime.php:279 +msgid "less than a second ago" +msgstr "hace un instante" -#: ../../mod/settings.php:847 -msgid "Content Settings" -msgstr "Ajustes del contenido" +#: ../../include/datetime.php:297 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "hace %1$d %2$s" -#: ../../mod/settings.php:853 -msgid "Display Theme:" -msgstr "Tema gráfico del perfil:" +#: ../../include/datetime.php:308 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "año" +msgstr[1] "años" -#: ../../mod/settings.php:854 -msgid "Mobile Theme:" -msgstr "Tema para el móvil:" +#: ../../include/datetime.php:311 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "mes" +msgstr[1] "meses" -#: ../../mod/settings.php:855 -msgid "Preload images before rendering the page" -msgstr "Carga previa de las imágenes antes de generar la página" +#: ../../include/datetime.php:314 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "semana" +msgstr[1] "semanas" -#: ../../mod/settings.php:855 -msgid "" -"The subjective page load time will be longer but the page will be ready when" -" displayed" -msgstr "El tiempo subjetivo de carga de la página será más largo, pero la página estará lista cuando se muestre." +#: ../../include/datetime.php:317 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "día" +msgstr[1] "días" -#: ../../mod/settings.php:856 -msgid "Enable user zoom on mobile devices" -msgstr "Habilitar zoom de usuario en dispositivos móviles" +#: ../../include/datetime.php:320 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "hora" +msgstr[1] "horas" -#: ../../mod/settings.php:857 -msgid "Update browser every xx seconds" -msgstr "Actualizar navegador cada xx segundos" +#: ../../include/datetime.php:323 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuto" +msgstr[1] "minutos" -#: ../../mod/settings.php:857 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Mínimo de 10 segundos, sin máximo" +#: ../../include/datetime.php:326 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "segundo" +msgstr[1] "segundos" -#: ../../mod/settings.php:858 -msgid "Maximum number of conversations to load at any time:" -msgstr "Máximo número de conversaciones a cargar en cualquier momento:" +#: ../../include/datetime.php:563 +#, php-format +msgid "%1$s's birthday" +msgstr "Cumpleaños de %1$s" -#: ../../mod/settings.php:858 -msgid "Maximum of 100 items" -msgstr "Máximo de 100 elementos" +#: ../../include/datetime.php:564 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Feliz cumpleaños %1$s" -#: ../../mod/settings.php:859 -msgid "Show emoticons (smilies) as images" -msgstr "Mostrar emoticonos (smilies) como imágenes" +#: ../../include/dir_fns.php:139 +msgid "Directory Options" +msgstr "Opciones del directorio" -#: ../../mod/settings.php:860 -msgid "Link post titles to source" -msgstr "Enlazar título de la publicación a la fuente original" +#: ../../include/dir_fns.php:141 +msgid "Safe Mode" +msgstr "Modo seguro" -#: ../../mod/settings.php:861 -msgid "System Page Layout Editor - (advanced)" -msgstr "Editor de plantilla de página del sistema - (avanzado)" +#: ../../include/dir_fns.php:142 +msgid "Public Forums Only" +msgstr "Solo foros públicos" -#: ../../mod/settings.php:864 -msgid "Use blog/list mode on channel page" -msgstr "Usar modo blog/lista en la página de inicio del canal" +#: ../../include/dir_fns.php:143 +msgid "This Website Only" +msgstr "Solo este sitio web" -#: ../../mod/settings.php:864 ../../mod/settings.php:865 -msgid "(comments displayed separately)" -msgstr "(comentarios mostrados de forma separada)" +#: ../../include/enotify.php:96 +#, php-format +msgid "%s " +msgstr "%s " -#: ../../mod/settings.php:865 -msgid "Use blog/list mode on grid page" -msgstr "Mostrar mi red en modo blog" +#: ../../include/enotify.php:100 +#, php-format +msgid "[Hubzilla:Notify] New mail received at %s" +msgstr "[Hubzilla:Aviso] Nuevo mensaje en %s" -#: ../../mod/settings.php:866 -msgid "Channel page max height of content (in pixels)" -msgstr "Altura máxima del contenido de la página del canal (en píxeles)" +#: ../../include/enotify.php:102 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "%1$s, %2$s le ha enviado un nuevo mensaje privado en %3$s." -#: ../../mod/settings.php:866 ../../mod/settings.php:867 -msgid "click to expand content exceeding this height" -msgstr "Pulsar para expandir el contenido que exceda de esta altura" +#: ../../include/enotify.php:103 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s le ha enviado %2$s." -#: ../../mod/settings.php:867 -msgid "Grid page max height of content (in pixels)" -msgstr "Altura máxima del contenido de mi red (en píxeles)" +#: ../../include/enotify.php:103 +msgid "a private message" +msgstr "un mensaje privado" -#: ../../mod/settings.php:901 -msgid "Nobody except yourself" -msgstr "Nadie excepto usted" +#: ../../include/enotify.php:104 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Por favor visite %s para ver y/o responder a su mensaje privado." -#: ../../mod/settings.php:902 -msgid "Only those you specifically allow" -msgstr "Solo aquellos a los que usted permita explícitamente" +#: ../../include/enotify.php:160 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +msgstr "%1$s, %2$s ha comentado [zrl=%3$s]%4$s[/zrl]" -#: ../../mod/settings.php:903 -msgid "Approved connections" -msgstr "Conexiones aprobadas" +#: ../../include/enotify.php:168 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "%1$s, %2$s ha comentado [zrl=%3$s]%5$s de %4$s[/zrl] " -#: ../../mod/settings.php:904 -msgid "Any connections" -msgstr "Cualquier conexión" +#: ../../include/enotify.php:177 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s, %2$s ha comentado [zrl=%3$s]%4$s creado por usted[/zrl]" -#: ../../mod/settings.php:905 -msgid "Anybody on this website" -msgstr "Cualquiera en este sitio web" +#: ../../include/enotify.php:188 +#, php-format +msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Hubzilla:Aviso] Nuevo comentario de %2$s a la conversación #%1$d" -#: ../../mod/settings.php:906 -msgid "Anybody in this network" -msgstr "Cualquiera en esta red" +#: ../../include/enotify.php:189 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." +msgstr "%1$s, %2$s ha comentado un elemento/conversación que ha estado siguiendo." -#: ../../mod/settings.php:907 -msgid "Anybody authenticated" -msgstr "Cualquiera que esté autenticado" +#: ../../include/enotify.php:192 ../../include/enotify.php:207 +#: ../../include/enotify.php:233 ../../include/enotify.php:251 +#: ../../include/enotify.php:265 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Para ver o comentar la conversación, visite %s" -#: ../../mod/settings.php:908 -msgid "Anybody on the internet" -msgstr "Cualquiera en internet" +#: ../../include/enotify.php:198 +#, php-format +msgid "[Hubzilla:Notify] %s posted to your profile wall" +msgstr "[Hubzilla:Aviso] %s ha publicado una entrada en su página de inicio del perfil (\"muro\")" -#: ../../mod/settings.php:983 -msgid "Publish your default profile in the network directory" -msgstr "Publicar su perfil principal en el directorio de la red" +#: ../../include/enotify.php:200 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "%1$s, %2$s ha publicado en su página del perfil en %3$s" -#: ../../mod/settings.php:988 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "¿Nos permite sugerirle como amigo potencial a los nuevos miembros?" +#: ../../include/enotify.php:202 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "%1$s, %2$s ha publicado en [zrl=%3$s]su página del perfil[/zrl]" -#: ../../mod/settings.php:997 -msgid "Your channel address is" -msgstr "Su dirección de canal es" +#: ../../include/enotify.php:226 +#, php-format +msgid "[Hubzilla:Notify] %s tagged you" +msgstr "[Hubzilla:Aviso] %s le ha etiquetado" -#: ../../mod/settings.php:1039 -msgid "Channel Settings" -msgstr "Ajustes del canal" +#: ../../include/enotify.php:227 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "%1$s, %2$s le ha etiquetado en %3$s" -#: ../../mod/settings.php:1046 -msgid "Basic Settings" -msgstr "Configuración básica" +#: ../../include/enotify.php:228 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgstr "%1$s, %2$s [zrl=%3$s]le etiquetó[/zrl]." -#: ../../mod/settings.php:1049 -msgid "Your Timezone:" -msgstr "Su huso horario:" +#: ../../include/enotify.php:240 +#, php-format +msgid "[Hubzilla:Notify] %1$s poked you" +msgstr "[Hubzilla:Aviso] %1$s le ha dado un toque" -#: ../../mod/settings.php:1050 -msgid "Default Post Location:" -msgstr "Localización geográfica predeterminada para sus publicaciones:" +#: ../../include/enotify.php:241 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "%1$s, %2$s le ha dado un toque en %3$s" -#: ../../mod/settings.php:1050 -msgid "Geographical location to display on your posts" -msgstr "Localización geográfica que debe mostrarse en sus publicaciones" +#: ../../include/enotify.php:242 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s, %2$s [zrl=%2$s]le ha dado un toque[/zrl]." -#: ../../mod/settings.php:1051 -msgid "Use Browser Location:" -msgstr "Usar la localización geográfica del navegador:" +#: ../../include/enotify.php:258 +#, php-format +msgid "[Hubzilla:Notify] %s tagged your post" +msgstr "[Hubzilla:Aviso] %s ha etiquetado su publicación" -#: ../../mod/settings.php:1053 -msgid "Adult Content" -msgstr "Contenido solo para adultos" +#: ../../include/enotify.php:259 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "%1$s, %2$s ha etiquetado su publicación en %3$s" + +#: ../../include/enotify.php:260 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "%1$s, %2$s ha etiquetado [zrl=%3$s]su publicación[/zrl]" + +#: ../../include/enotify.php:272 +msgid "[Hubzilla:Notify] Introduction received" +msgstr "[Hubzilla:Aviso] Ha recibido una solicitud de conexión" -#: ../../mod/settings.php:1053 +#: ../../include/enotify.php:273 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgstr "%1$s, ha recibido una nueva solicitud de conexión de '%2$s' en %3$s" + +#: ../../include/enotify.php:274 +#, php-format msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Este canal publica contenido solo para adultos con frecuencia o regularmente. (Por favor etiquete cualquier material para adultos con la etiqueta #NSFW)" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "%1$s, ha recibido [zrl=%2$s]una nueva solicitud de conexión[/zrl] de %3$s." -#: ../../mod/settings.php:1055 -msgid "Security and Privacy Settings" -msgstr "Configuración de seguridad y privacidad" +#: ../../include/enotify.php:278 ../../include/enotify.php:297 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Puede visitar su perfil en %s" -#: ../../mod/settings.php:1058 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Sus permisos ya están configurados. Pulse para ver/ajustar" +#: ../../include/enotify.php:280 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Por favor, visite %s para permitir o rechazar la solicitad de conexión." -#: ../../mod/settings.php:1060 -msgid "Hide my online presence" -msgstr "Ocultar mi presencia en línea" +#: ../../include/enotify.php:287 +msgid "[Hubzilla:Notify] Friend suggestion received" +msgstr "[Hubzilla:Aviso] Ha recibido una sugerencia de amistad" -#: ../../mod/settings.php:1060 -msgid "Prevents displaying in your profile that you are online" -msgstr "Evitar mostrar en su perfil que está en línea" +#: ../../include/enotify.php:288 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, ha recibido una sugerencia de conexión de '%2$s' en %3$s" -#: ../../mod/settings.php:1062 -msgid "Simple Privacy Settings:" -msgstr "Configuración de privacidad sencilla:" +#: ../../include/enotify.php:289 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " +"%4$s." +msgstr "%1$s, ha recibido [zrl=%2$s]una sugerencia de conexión[/zrl] para %3$s de %4$s." + +#: ../../include/enotify.php:295 +msgid "Name:" +msgstr "Nombre:" -#: ../../mod/settings.php:1063 +#: ../../include/enotify.php:296 +msgid "Photo:" +msgstr "Foto:" + +#: ../../include/enotify.php:299 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Por favor, visite %s para aprobar o rechazar la sugerencia." + +#: ../../include/enotify.php:514 +msgid "[Hubzilla:Notify]" +msgstr "[Hubzilla:Aviso]" + +#: ../../include/event.php:779 +msgid "This event has been added to your calendar." +msgstr "Este evento ha sido añadido a su calendario." + +#: ../../include/event.php:978 +msgid "Not specified" +msgstr "Sin especificar" + +#: ../../include/event.php:979 +msgid "Needs Action" +msgstr "Necesita de una intervención" + +#: ../../include/event.php:980 +msgid "Completed" +msgstr "Completado/a" + +#: ../../include/event.php:981 +msgid "In Process" +msgstr "En proceso" + +#: ../../include/event.php:982 +msgid "Cancelled" +msgstr "Cancelado/a" + +#: ../../include/features.php:48 +msgid "General Features" +msgstr "Funcionalidades básicas" + +#: ../../include/features.php:50 +msgid "Content Expiration" +msgstr "Caducidad del contenido" + +#: ../../include/features.php:50 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Eliminar publicaciones/comentarios y/o mensajes privados más adelante" + +#: ../../include/features.php:51 +msgid "Multiple Profiles" +msgstr "Múltiples perfiles" + +#: ../../include/features.php:51 +msgid "Ability to create multiple profiles" +msgstr "Capacidad de crear múltiples perfiles" + +#: ../../include/features.php:52 +msgid "Advanced Profiles" +msgstr "Perfiles avanzados" + +#: ../../include/features.php:52 +msgid "Additional profile sections and selections" +msgstr "Secciones y selecciones de perfil adicionales" + +#: ../../include/features.php:53 +msgid "Profile Import/Export" +msgstr "Importar/Exportar perfil" + +#: ../../include/features.php:53 +msgid "Save and load profile details across sites/channels" +msgstr "Guardar y cargar detalles del perfil a través de sitios/canales" + +#: ../../include/features.php:54 +msgid "Web Pages" +msgstr "Páginas web" + +#: ../../include/features.php:54 +msgid "Provide managed web pages on your channel" +msgstr "Proveer páginas web gestionadas en su canal" + +#: ../../include/features.php:55 +msgid "Hide Rating" +msgstr "Ocultar las valoraciones" + +#: ../../include/features.php:55 msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Muy Público - extremadamente permisivo (debería ser usado con precaución)" +"Hide the rating buttons on your channel and profile pages. Note: People can " +"still rate you somewhere else." +msgstr "Ocultar los botones de valoración en su canal y página de perfil. Tenga en cuenta, sin embargo, que la gente podrá expresar su valoración en otros lugares." + +#: ../../include/features.php:56 +msgid "Private Notes" +msgstr "Notas privadas" -#: ../../mod/settings.php:1064 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Típico - por defecto público, privado cuando se desee (similar a los permisos de una red social pero con privacidad mejorada)" +#: ../../include/features.php:56 +msgid "Enables a tool to store notes and reminders (note: not encrypted)" +msgstr "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)" -#: ../../mod/settings.php:1065 -msgid "Private - default private, never open or public" -msgstr "Privado - por defecto, privado, nunca abierto o público" +#: ../../include/features.php:57 +msgid "Navigation Channel Select" +msgstr "Navegación por el selector de canales" -#: ../../mod/settings.php:1066 -msgid "Blocked - default blocked to/from everybody" -msgstr "Bloqueado - por defecto, bloqueado/a para cualquiera" +#: ../../include/features.php:57 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Cambiar de canales directamente desde el menú de navegación desplegable" -#: ../../mod/settings.php:1068 -msgid "Allow others to tag your posts" -msgstr "Permitir a otros etiquetar sus publicaciones" +#: ../../include/features.php:58 +msgid "Photo Location" +msgstr "Ubicación de las fotos" -#: ../../mod/settings.php:1068 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "A menudo usado por la comunidad para marcar contenido inapropiado de forma retroactiva." +#: ../../include/features.php:58 +msgid "If location data is available on uploaded photos, link this to a map." +msgstr "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa." -#: ../../mod/settings.php:1070 -msgid "Advanced Privacy Settings" -msgstr "Configuración de privacidad avanzada" +#: ../../include/features.php:59 +msgid "Access Controlled Chatrooms" +msgstr "Salas de chat moderadas" -#: ../../mod/settings.php:1072 -msgid "Expire other channel content after this many days" -msgstr "Caducar contenido de otros canales después de este número de días" +#: ../../include/features.php:59 +msgid "Provide chatrooms and chat services with access control." +msgstr "Proporcionar salas y servicios de chat moderados." -#: ../../mod/settings.php:1072 -#, php-format -msgid "" -"0 or blank to use the website limit. The website expires after %d days." -msgstr "0 o en blanco para usar el límite del sitio. El sitio web caduca después de %d días." +#: ../../include/features.php:60 +msgid "Smart Birthdays" +msgstr "Cumpleaños inteligentes" -#: ../../mod/settings.php:1073 -msgid "Maximum Friend Requests/Day:" -msgstr "Máximo de solicitudes de amistad por día:" +#: ../../include/features.php:60 +msgid "" +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." +msgstr "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo." -#: ../../mod/settings.php:1073 -msgid "May reduce spam activity" -msgstr "Podría reducir la actividad de spam" +#: ../../include/features.php:61 +msgid "Expert Mode" +msgstr "Modo de experto" -#: ../../mod/settings.php:1074 -msgid "Default Post Permissions" -msgstr "Permisos de publicación predeterminados" +#: ../../include/features.php:61 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "Habilitar el modo de experto para acceder a opciones avanzadas de configuración" -#: ../../mod/settings.php:1079 -msgid "Channel permissions category:" -msgstr "Categoría de permisos del canal:" +#: ../../include/features.php:62 +msgid "Premium Channel" +msgstr "Canal premium" -#: ../../mod/settings.php:1085 -msgid "Maximum private messages per day from unknown people:" -msgstr "Máximo de mensajes privados por día de gente desconocida:" +#: ../../include/features.php:62 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal" -#: ../../mod/settings.php:1085 -msgid "Useful to reduce spamming" -msgstr "Útil para reducir el envío de correo no deseado" +#: ../../include/features.php:67 +msgid "Post Composition Features" +msgstr "Opciones para la redacción de entradas" -#: ../../mod/settings.php:1088 -msgid "Notification Settings" -msgstr "Configuración de las notificaciones" +#: ../../include/features.php:70 +msgid "Large Photos" +msgstr "Fotos de gran tamaño" -#: ../../mod/settings.php:1089 -msgid "By default post a status message when:" -msgstr "Por defecto, enviar un mensaje de estado cuando:" +#: ../../include/features.php:70 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" +msgstr "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)" -#: ../../mod/settings.php:1090 -msgid "accepting a friend request" -msgstr "Acepte una solicitud de amistad" +#: ../../include/features.php:71 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Importar automáticamente contenido de otros canales o \"feeds\"" -#: ../../mod/settings.php:1091 -msgid "joining a forum/community" -msgstr "al unirse a un foro o comunidad" +#: ../../include/features.php:72 +msgid "Even More Encryption" +msgstr "Más cifrado todavía" -#: ../../mod/settings.php:1092 -msgid "making an interesting profile change" -msgstr "Realice un cambio interesante en su perfil" +#: ../../include/features.php:72 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida." -#: ../../mod/settings.php:1093 -msgid "Send a notification email when:" -msgstr "Enviar una notificación por correo electrónico cuando:" +#: ../../include/features.php:73 +msgid "Enable Voting Tools" +msgstr "Permitir entradas con votación" -#: ../../mod/settings.php:1094 -msgid "You receive a connection request" -msgstr "Reciba una solicitud de conexión" +#: ../../include/features.php:73 +msgid "Provide a class of post which others can vote on" +msgstr "Proveer una clase de publicación en la que otros puedan votar" -#: ../../mod/settings.php:1095 -msgid "Your connections are confirmed" -msgstr "Sus conexiones hayan sido confirmadas" +#: ../../include/features.php:74 +msgid "Delayed Posting" +msgstr "Publicación aplazada" -#: ../../mod/settings.php:1096 -msgid "Someone writes on your profile wall" -msgstr "Alguien escriba en la página de su perfil (\"muro\")" +#: ../../include/features.php:74 +msgid "Allow posts to be published at a later date" +msgstr "Permitir mensajes que se publicarán en una fecha posterior" -#: ../../mod/settings.php:1097 -msgid "Someone writes a followup comment" -msgstr "Alguien escriba un comentario sobre sus publicaciones" +#: ../../include/features.php:75 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Prevenir entradas o comentarios duplicados" -#: ../../mod/settings.php:1098 -msgid "You receive a private message" -msgstr "Reciba un mensaje privado" +#: ../../include/features.php:75 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." +msgstr "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo." -#: ../../mod/settings.php:1099 -msgid "You receive a friend suggestion" -msgstr "Reciba una sugerencia de amistad" +#: ../../include/features.php:81 +msgid "Network and Stream Filtering" +msgstr "Filtrado del contenido" -#: ../../mod/settings.php:1100 -msgid "You are tagged in a post" -msgstr "Usted sea etiquetado en una publicación" +#: ../../include/features.php:82 +msgid "Search by Date" +msgstr "Buscar por fecha" -#: ../../mod/settings.php:1101 -msgid "You are poked/prodded/etc. in a post" -msgstr "Reciba un toque o incitación en una publicación" +#: ../../include/features.php:82 +msgid "Ability to select posts by date ranges" +msgstr "Capacidad de seleccionar entradas por rango de fechas" -#: ../../mod/settings.php:1104 -msgid "Show visual notifications including:" -msgstr "Mostrar notificaciones visuales que incluyan:" +#: ../../include/features.php:83 ../../include/group.php:311 +msgid "Privacy Groups" +msgstr "Grupos de canales" -#: ../../mod/settings.php:1106 -msgid "Unseen grid activity" -msgstr "Nueva actividad en la red" +#: ../../include/features.php:83 +msgid "Enable management and selection of privacy groups" +msgstr "Activar la gestión y selección de grupos de canales" -#: ../../mod/settings.php:1107 -msgid "Unseen channel activity" -msgstr "Actividad no vista en el canal" +#: ../../include/features.php:84 ../../include/widgets.php:281 +msgid "Saved Searches" +msgstr "Búsquedas guardadas" -#: ../../mod/settings.php:1108 -msgid "Unseen private messages" -msgstr "Mensajes privados no leídos" +#: ../../include/features.php:84 +msgid "Save search terms for re-use" +msgstr "Guardar términos de búsqueda para su reutilización" -#: ../../mod/settings.php:1108 ../../mod/settings.php:1113 -#: ../../mod/settings.php:1114 ../../mod/settings.php:1115 -msgid "Recommended" -msgstr "Recomendado" +#: ../../include/features.php:85 +msgid "Network Personal Tab" +msgstr "Actividad personal" -#: ../../mod/settings.php:1109 -msgid "Upcoming events" -msgstr "Próximos eventos" +#: ../../include/features.php:85 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado." -#: ../../mod/settings.php:1110 -msgid "Events today" -msgstr "Eventos de hoy" +#: ../../include/features.php:86 +msgid "Network New Tab" +msgstr "Contenido nuevo" -#: ../../mod/settings.php:1111 -msgid "Upcoming birthdays" -msgstr "Próximos cumpleaños" +#: ../../include/features.php:86 +msgid "Enable tab to display all new Network activity" +msgstr "Habilitar una pestaña en la que se muestre solo el contenido nuevo" -#: ../../mod/settings.php:1111 -msgid "Not available in all themes" -msgstr "No disponible en todos los temas" +#: ../../include/features.php:87 +msgid "Affinity Tool" +msgstr "Herramienta de afinidad" -#: ../../mod/settings.php:1112 -msgid "System (personal) notifications" -msgstr "Notificaciones del sistema (personales)" +#: ../../include/features.php:87 +msgid "Filter stream activity by depth of relationships" +msgstr "Filtrar el contenido según la profundidad de las relaciones" -#: ../../mod/settings.php:1113 -msgid "System info messages" -msgstr "Mensajes de información del sistema" +#: ../../include/features.php:88 +msgid "Connection Filtering" +msgstr "Filtrado de conexiones" -#: ../../mod/settings.php:1114 -msgid "System critical alerts" -msgstr "Alertas críticas del sistema" +#: ../../include/features.php:88 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido" -#: ../../mod/settings.php:1115 -msgid "New connections" -msgstr "Nuevas conexiones" +#: ../../include/features.php:89 +msgid "Suggest Channels" +msgstr "Sugerir canales" -#: ../../mod/settings.php:1116 -msgid "System Registrations" -msgstr "Registros del sistema" +#: ../../include/features.php:89 +msgid "Show channel suggestions" +msgstr "Mostrar sugerencias de canales" -#: ../../mod/settings.php:1117 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Mostrar también en Avisos las nuevas publicaciones, los mensajes privados y las conexiones" +#: ../../include/features.php:94 +msgid "Post/Comment Tools" +msgstr "Gestión de entradas y comentarios" -#: ../../mod/settings.php:1119 -msgid "Notify me of events this many days in advance" -msgstr "Avisarme de los eventos con algunos días de antelación" +#: ../../include/features.php:95 +msgid "Community Tagging" +msgstr "Etiquetas de la comunidad" -#: ../../mod/settings.php:1119 -msgid "Must be greater than 0" -msgstr "Debe ser mayor que 0" +#: ../../include/features.php:95 +msgid "Ability to tag existing posts" +msgstr "Capacidad de etiquetar entradas existentes" -#: ../../mod/settings.php:1121 -msgid "Advanced Account/Page Type Settings" -msgstr "Ajustes avanzados de la cuenta y de los tipos de página" +#: ../../include/features.php:96 +msgid "Post Categories" +msgstr "Categorías de entradas" -#: ../../mod/settings.php:1122 -msgid "Change the behaviour of this account for special situations" -msgstr "Cambiar el comportamiento de esta cuenta en situaciones especiales" +#: ../../include/features.php:96 +msgid "Add categories to your posts" +msgstr "Añadir categorías a sus publicaciones" -#: ../../mod/settings.php:1125 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "¡Activar el modo de experto (en Ajustes > Funcionalidades) para realizar cambios!." +#: ../../include/features.php:97 +msgid "Ability to file posts under folders" +msgstr "Capacidad de archivar entradas en carpetas" -#: ../../mod/settings.php:1126 -msgid "Miscellaneous Settings" -msgstr "Ajustes diversos" +#: ../../include/features.php:98 +msgid "Dislike Posts" +msgstr "Desagrado de publicaciones" -#: ../../mod/settings.php:1127 -msgid "Default photo upload folder" -msgstr "Carpeta por defecto de las fotos subidas" +#: ../../include/features.php:98 +msgid "Ability to dislike posts/comments" +msgstr "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios" -#: ../../mod/settings.php:1127 ../../mod/settings.php:1128 -msgid "%Y - current year, %m - current month" -msgstr "%Y - año en curso, %m - mes actual" +#: ../../include/features.php:99 +msgid "Star Posts" +msgstr "Entradas destacadas" -#: ../../mod/settings.php:1128 -msgid "Default file upload folder" -msgstr "Carpeta por defecto de los archivos subidos" +#: ../../include/features.php:99 +msgid "Ability to mark special posts with a star indicator" +msgstr "Capacidad de marcar entradas destacadas con un indicador de estrella" -#: ../../mod/settings.php:1130 -msgid "Personal menu to display in your channel pages" -msgstr "Menú personal que debe mostrarse en las páginas de su canal" +#: ../../include/features.php:100 +msgid "Tag Cloud" +msgstr "Nube de etiquetas" -#: ../../mod/settings.php:1132 -msgid "Remove this channel." -msgstr "Eliminar este canal." +#: ../../include/features.php:100 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Proveer nube de etiquetas personal en su página de canal" -#: ../../mod/settings.php:1133 -msgid "Firefox Share $Projectname provider" -msgstr "Servicio de compartición de Firefox: proveedor $Projectname" +#: ../../include/follow.php:28 +msgid "Channel is blocked on this site." +msgstr "El canal está bloqueado en este sitio." -#: ../../mod/settings.php:1134 -msgid "Start calendar week on monday" -msgstr "Comenzar el calendario semanal por el lunes" +#: ../../include/follow.php:33 +msgid "Channel location missing." +msgstr "Falta la dirección del canal." -#: ../../mod/id.php:11 -msgid "First Name" -msgstr "Nombre" +#: ../../include/follow.php:82 +msgid "Response from remote channel was incomplete." +msgstr "Respuesta incompleta del canal." -#: ../../mod/id.php:12 -msgid "Last Name" -msgstr "Apellido" +#: ../../include/follow.php:99 +msgid "Channel was deleted and no longer exists." +msgstr "El canal ha sido eliminado y ya no existe." -#: ../../mod/id.php:13 -msgid "Nickname" -msgstr "Sobrenombre o Alias" +#: ../../include/follow.php:155 ../../include/follow.php:191 +msgid "Protocol disabled." +msgstr "Protocolo deshabilitado." -#: ../../mod/id.php:14 -msgid "Full Name" -msgstr "Nombre completo" +#: ../../include/follow.php:179 +msgid "Channel discovery failed." +msgstr "El intento de acceder al canal ha fallado." -#: ../../mod/id.php:20 -msgid "Profile Photo 16px" -msgstr "Foto del perfil 16px" +#: ../../include/follow.php:217 +msgid "Cannot connect to yourself." +msgstr "No puede conectarse consigo mismo." -#: ../../mod/id.php:21 -msgid "Profile Photo 32px" -msgstr "Foto del perfil 32px" +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente." -#: ../../mod/id.php:22 -msgid "Profile Photo 48px" -msgstr "Foto del perfil 48px" +#: ../../include/group.php:248 +msgid "Add new connections to this privacy group" +msgstr "Añadir conexiones nuevas a este grupo de canales" -#: ../../mod/id.php:23 -msgid "Profile Photo 64px" -msgstr "Foto del perfil 64px" +#: ../../include/group.php:289 +msgid "edit" +msgstr "editar" -#: ../../mod/id.php:24 -msgid "Profile Photo 80px" -msgstr "Foto del perfil 80px" +#: ../../include/group.php:312 +msgid "Edit group" +msgstr "Editar grupo" -#: ../../mod/id.php:25 -msgid "Profile Photo 128px" -msgstr "Foto del perfil 128px" +#: ../../include/group.php:313 +msgid "Add privacy group" +msgstr "Añadir un grupo de canales" -#: ../../mod/id.php:26 -msgid "Timezone" -msgstr "Huso horario" +#: ../../include/group.php:314 +msgid "Channels not in any privacy group" +msgstr "Sin canales en ningún grupo" -#: ../../mod/id.php:29 -msgid "Birth Year" -msgstr "Año de nacimiento" +#: ../../include/group.php:316 ../../include/widgets.php:282 +msgid "add" +msgstr "añadir" -#: ../../mod/id.php:30 -msgid "Birth Month" -msgstr "Mes de nacimiento" +#: ../../include/items.php:1138 ../../include/items.php:1183 +msgid "(Unknown)" +msgstr "(Desconocido)" -#: ../../mod/id.php:31 -msgid "Birth Day" -msgstr "Día de nacimiento" +#: ../../include/items.php:1382 +msgid "Visible to anybody on the internet." +msgstr "Visible para cualquiera en internet." -#: ../../mod/id.php:32 -msgid "Birthdate" -msgstr "Fecha de nacimiento" +#: ../../include/items.php:1384 +msgid "Visible to you only." +msgstr "Visible sólo para usted." -#: ../../mod/setup.php:197 -msgid "$Projectname Server - Setup" -msgstr "Servidor $Projectname - Instalación" +#: ../../include/items.php:1386 +msgid "Visible to anybody in this network." +msgstr "Visible para cualquiera en esta red." -#: ../../mod/setup.php:201 -msgid "Could not connect to database." -msgstr "No se ha podido conectar a la base de datos." +#: ../../include/items.php:1388 +msgid "Visible to anybody authenticated." +msgstr "Visible para cualquiera que haya sido autenticado." -#: ../../mod/setup.php:205 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "No se puede conectar con la dirección del sitio indicada. Podría tratarse de un problema de SSL o DNS." +#: ../../include/items.php:1390 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Visible para cualquiera en %s." -#: ../../mod/setup.php:212 -msgid "Could not create table." -msgstr "No se puede crear la tabla." +#: ../../include/items.php:1392 +msgid "Visible to all connections." +msgstr "Visible para todas las conexiones." -#: ../../mod/setup.php:217 -msgid "Your site database has been installed." -msgstr "La base de datos del sitio ha sido instalada." +#: ../../include/items.php:1394 +msgid "Visible to approved connections." +msgstr "Visible para las conexiones permitidas." -#: ../../mod/setup.php:221 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "Podría tener que importar manualmente el fichero \"install/schema_xxx.sql\" usando un cliente de base de datos." +#: ../../include/items.php:1396 +msgid "Visible to specific connections." +msgstr "Visible para conexiones específicas." -#: ../../mod/setup.php:222 ../../mod/setup.php:290 ../../mod/setup.php:740 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Por favor, lea el fichero \"install/INSTALL.txt\"." +#: ../../include/items.php:5142 +msgid "Privacy group is empty." +msgstr "El grupo de canales está vacío." -#: ../../mod/setup.php:287 -msgid "System check" -msgstr "Verificación del sistema" +#: ../../include/items.php:5149 +#, php-format +msgid "Privacy group: %s" +msgstr "Grupo de canales: %s" -#: ../../mod/setup.php:292 -msgid "Check again" -msgstr "Verificar de nuevo" +#: ../../include/items.php:5161 +msgid "Connection not found." +msgstr "Conexión no encontrada" -#: ../../mod/setup.php:314 -msgid "Database connection" -msgstr "Conexión a la base de datos" +#: ../../include/items.php:5594 +msgid "profile photo" +msgstr "foto del perfil" -#: ../../mod/setup.php:315 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "Para instalar $Projectname es necesario saber cómo conectar con su base de datos." +#: ../../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" -#: ../../mod/setup.php:316 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Por favor, contacte con el proveedor de servicios o el administrador del sitio si tiene dudas sobre estos ajustes." +#: ../../include/photos.php:119 +msgid "Image file is empty." +msgstr "El fichero de imagen está vacío. " -#: ../../mod/setup.php:317 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "La base de datos que especifique a continuación debe existir ya. Si no es así, por favor, créela antes de seguir." +#: ../../include/photos.php:257 +msgid "Photo storage failed." +msgstr "La foto no ha podido ser guardada." -#: ../../mod/setup.php:321 -msgid "Database Server Name" -msgstr "Nombre del servidor de base de datos" +#: ../../include/photos.php:297 +msgid "a new photo" +msgstr "una nueva foto" -#: ../../mod/setup.php:321 -msgid "Default is 127.0.0.1" -msgstr "De forma predeterminada es 127.0.0.1" +#: ../../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" -#: ../../mod/setup.php:322 -msgid "Database Port" -msgstr "Puerto de la base de datos" +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "Subir nuevas fotos" -#: ../../mod/setup.php:322 -msgid "Communication port number - use 0 for default" -msgstr "Número del puerto de comunicaciones - use 0 como valor por defecto" +#: ../../include/widgets.php:103 +msgid "System" +msgstr "Sistema" -#: ../../mod/setup.php:323 -msgid "Database Login Name" -msgstr "Usuario de la base de datos" +#: ../../include/widgets.php:106 +msgid "Create Personal App" +msgstr "Crear una aplicación personal" -#: ../../mod/setup.php:324 -msgid "Database Login Password" -msgstr "Contraseña de acceso a la base de datos" +#: ../../include/widgets.php:107 +msgid "Edit Personal App" +msgstr "Editar una aplicación personal" -#: ../../mod/setup.php:325 -msgid "Database Name" -msgstr "Nombre de la base de datos" +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Sugerencias" -#: ../../mod/setup.php:326 -msgid "Database Type" -msgstr "Tipo de base de datos" +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Ver más..." -#: ../../mod/setup.php:328 ../../mod/setup.php:368 -msgid "Site administrator email address" -msgstr "Dirección de correo electrónico del administrador del sitio" +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Tiene %1$.0f de %2$.0f conexiones permitidas." -#: ../../mod/setup.php:328 ../../mod/setup.php:368 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Su cuenta deberá usar la misma dirección de correo electrónico para poder utilizar el panel de administración web." +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Añadir nueva conexión" -#: ../../mod/setup.php:329 ../../mod/setup.php:370 -msgid "Website URL" -msgstr "Dirección del sitio web" +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Dirección del canal" -#: ../../mod/setup.php:329 ../../mod/setup.php:370 -msgid "Please use SSL (https) URL if available." -msgstr "Por favor, use SSL (https) si está disponible." +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen" -#: ../../mod/setup.php:330 ../../mod/setup.php:373 -msgid "Please select a default timezone for your website" -msgstr "Por favor, selecciones el huso horario por defecto de su sitio web" +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Notas" -#: ../../mod/setup.php:357 -msgid "Site settings" -msgstr "Ajustes del sitio" +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Eliminar término" -#: ../../mod/setup.php:371 -msgid "Enable $Projectname advanced features?" -msgstr "¿Habilitar las funcionalidades avanzadas de $Projectname ?" +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Hemeroteca" -#: ../../mod/setup.php:371 -msgid "" -"Some advanced features, while useful - may be best suited for technically " -"proficient audiences" -msgstr "Algunas funcionalidades avanzadas, si bien son útiles, pueden ser más adecuadas para un público técnicamente competente" +#: ../../include/widgets.php:467 +msgid "Refresh" +msgstr "Recargar" -#: ../../mod/setup.php:423 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "No se puede encontrar una versión en línea de comandos de PHP en la ruta del servidor web." +#: ../../include/widgets.php:507 +msgid "Account settings" +msgstr "Configuración de la cuenta" -#: ../../mod/setup.php:424 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "Si no tiene instalada la versión de línea de comandos de PHP en su servidor, no podrá realizar envíos en segundo plano mediante cron." +#: ../../include/widgets.php:513 +msgid "Channel settings" +msgstr "Configuración del canal" -#: ../../mod/setup.php:428 -msgid "PHP executable path" -msgstr "Ruta del ejecutable PHP" +#: ../../include/widgets.php:522 +msgid "Additional features" +msgstr "Funcionalidades" -#: ../../mod/setup.php:428 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Introducir la ruta completa del ejecutable PHP. Puede dejar la línea en blanco para continuar la instalación." +#: ../../include/widgets.php:529 +msgid "Feature/Addon settings" +msgstr "Complementos" -#: ../../mod/setup.php:433 -msgid "Command line PHP" -msgstr "PHP en línea de comandos" +#: ../../include/widgets.php:535 +msgid "Display settings" +msgstr "Ajustes de visualización" -#: ../../mod/setup.php:442 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "La línea de comandos PHP de su sistema no tiene activado \"register_argc_argv\"." +#: ../../include/widgets.php:542 +msgid "Manage locations" +msgstr "Gestión de ubicaciones (clones) del canal" -#: ../../mod/setup.php:443 -msgid "This is required for message delivery to work." -msgstr "Esto es necesario para que funcione la transmisión de mensajes." +#: ../../include/widgets.php:551 +msgid "Export channel" +msgstr "Exportar canal" -#: ../../mod/setup.php:446 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../include/widgets.php:558 +msgid "Connected apps" +msgstr "Aplicaciones conectadas" -#: ../../mod/setup.php:464 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to" -" upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "La carga máxima que se le permite subir está establecida en %s. El tamaño máximo de un fichero está establecido en %s. Está permitido subir hasta un máximo de %d ficheros de una sola vez." +#: ../../include/widgets.php:573 +msgid "Premium Channel Settings" +msgstr "Configuración del canal premium" -#: ../../mod/setup.php:469 -msgid "You can adjust these settings in the servers php.ini." -msgstr "Puede ajustar estos valores en el fichero php.ini de su servidor." +#: ../../include/widgets.php:602 +msgid "Private Mail Menu" +msgstr "Menú de correo privado" -#: ../../mod/setup.php:471 -msgid "PHP upload limits" -msgstr "Límites PHP de subida" +#: ../../include/widgets.php:604 +msgid "Combined View" +msgstr "Vista combinada" -#: ../../mod/setup.php:494 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Error: La función \"openssl_pkey_new\" en este sistema no es capaz de general claves de cifrado." +#: ../../include/widgets.php:609 ../../include/nav.php:199 +msgid "Inbox" +msgstr "Bandeja de entrada" -#: ../../mod/setup.php:495 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "Si está en un servidor Windows, por favor, lea \"http://www.php.net/manual/en/openssl.installation.php\"." +#: ../../include/widgets.php:614 ../../include/nav.php:200 +msgid "Outbox" +msgstr "Bandeja de salida" -#: ../../mod/setup.php:498 -msgid "Generate encryption keys" -msgstr "Generar claves de cifrado" +#: ../../include/widgets.php:619 ../../include/nav.php:201 +msgid "New Message" +msgstr "Nuevo mensaje" -#: ../../mod/setup.php:510 -msgid "libCurl PHP module" -msgstr "módulo libCurl PHP" +#: ../../include/widgets.php:636 ../../include/widgets.php:648 +msgid "Conversations" +msgstr "Conversaciones" -#: ../../mod/setup.php:511 -msgid "GD graphics PHP module" -msgstr "módulo PHP GD graphics" +#: ../../include/widgets.php:640 +msgid "Received Messages" +msgstr "Mensajes recibidos" -#: ../../mod/setup.php:512 -msgid "OpenSSL PHP module" -msgstr "módulo PHP OpenSSL" +#: ../../include/widgets.php:644 +msgid "Sent Messages" +msgstr "Enviar mensajes" -#: ../../mod/setup.php:513 -msgid "mysqli or postgres PHP module" -msgstr "módulo PHP mysqli o postgres" +#: ../../include/widgets.php:658 +msgid "No messages." +msgstr "Sin mensajes." -#: ../../mod/setup.php:514 -msgid "mb_string PHP module" -msgstr "módulo PHP mb_string" +#: ../../include/widgets.php:676 +msgid "Delete conversation" +msgstr "Eliminar conversación" -#: ../../mod/setup.php:515 -msgid "mcrypt PHP module" -msgstr "módulo PHP mcrypt " +#: ../../include/widgets.php:702 +msgid "Events Menu" +msgstr "Menú de eventos" -#: ../../mod/setup.php:516 -msgid "xml PHP module" -msgstr "módulo PHP xml" +#: ../../include/widgets.php:703 +msgid "Day View" +msgstr "Eventos del día" -#: ../../mod/setup.php:520 ../../mod/setup.php:522 -msgid "Apache mod_rewrite module" -msgstr "módulo Apache mod_rewrite " +#: ../../include/widgets.php:704 +msgid "Week View" +msgstr "Eventos de la semana" -#: ../../mod/setup.php:520 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Error: se necesita el módulo del servidor web Apache mod-rewrite pero no está instalado." +#: ../../include/widgets.php:705 +msgid "Month View" +msgstr "Eventos del mes" -#: ../../mod/setup.php:526 ../../mod/setup.php:529 -msgid "proc_open" -msgstr "proc_open" +#: ../../include/widgets.php:717 +msgid "Events Tools" +msgstr "Gestión de eventos" -#: ../../mod/setup.php:526 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Error: se necesita proc_open pero o no está instalado o ha sido desactivado en el fichero php.ini" +#: ../../include/widgets.php:718 +msgid "Export Calendar" +msgstr "Exportar el calendario" -#: ../../mod/setup.php:534 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Error: se necesita el módulo PHP libCURL pero no está instalado." +#: ../../include/widgets.php:719 +msgid "Import Calendar" +msgstr "Importar un calendario" -#: ../../mod/setup.php:538 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Error: el módulo PHP GD graphics es necesario, pero no está instalado." +#: ../../include/widgets.php:798 +msgid "Overview" +msgstr "Resumen" -#: ../../mod/setup.php:542 -msgid "Error: openssl PHP module required but not installed." -msgstr "Error: el módulo PHP openssl es necesario, pero no está instalado." +#: ../../include/widgets.php:805 +msgid "Chat Members" +msgstr "Miembros del chat" -#: ../../mod/setup.php:546 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Error: el módulo PHP mysqli o postgres es necesario pero ninguno de los dos está instalado." +#: ../../include/widgets.php:828 +msgid "Bookmarked Chatrooms" +msgstr "Salas de chat preferidas" -#: ../../mod/setup.php:550 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Error: el módulo PHP mb_string es necesario, pero no está instalado." +#: ../../include/widgets.php:851 +msgid "Suggested Chatrooms" +msgstr "Salas de chat sugeridas" -#: ../../mod/setup.php:554 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Error: el módulo PHP mcrypt es necesario, pero no está instalado." +#: ../../include/widgets.php:996 ../../include/widgets.php:1108 +msgid "photo/image" +msgstr "foto/imagen" -#: ../../mod/setup.php:558 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "Error: el módulo PHP xml es necesario para DAV, pero no está instalado." +#: ../../include/widgets.php:1051 +msgid "Click to show more" +msgstr "Hacer clic para ver más" -#: ../../mod/setup.php:576 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "El instalador web no ha podido crear un fichero llamado “.htconfig.php” en la carpeta base de su servidor." +#: ../../include/widgets.php:1202 +msgid "Rating Tools" +msgstr "Valoraciones" -#: ../../mod/setup.php:577 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "Esto está generalmente ligado a un problema de permisos, a causa del cual el servidor web tiene prohibido modificar ficheros en su carpeta - incluso si usted mismo tiene esos permisos." +#: ../../include/widgets.php:1206 ../../include/widgets.php:1208 +msgid "Rate Me" +msgstr "Valorar este canal" -#: ../../mod/setup.php:578 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." -msgstr "Al término de este procedimiento, podemos crear un fichero de texto para guardar con el nombre .htconfig.php en el directorio raíz de su instalación de Hubzilla." +#: ../../include/widgets.php:1211 +msgid "View Ratings" +msgstr "Mostrar las valoraciones" -#: ../../mod/setup.php:579 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "Como alternativa, puede dejar este procedimiento e intentar realizar una instalación manual. Lea, por favor, el fichero\"install/INSTALL.txt\" para las instrucciones." +#: ../../include/widgets.php:1268 +msgid "Forums" +msgstr "Foros" -#: ../../mod/setup.php:582 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php tiene permisos de escritura" +#: ../../include/widgets.php:1297 +msgid "Tasks" +msgstr "Tareas" -#: ../../mod/setup.php:596 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Hubzilla hace uso del motor de plantillas Smarty3 para diseñar sus plantillas gráficas. Smarty3 es más rápido porque compila las plantillas de páginas directamente en PHP." +#: ../../include/widgets.php:1306 +msgid "Documentation" +msgstr "Documentación" -#: ../../mod/setup.php:597 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the Red top level folder." -msgstr "Para poder guardar las plantillas compiladas, el servidor web necesita permisos para acceder al subdirectorio %s en el directorio de instalación de Hubzilla." +#: ../../include/widgets.php:1308 +msgid "Project/Site Information" +msgstr "Información sobre el proyecto o sitio" -#: ../../mod/setup.php:598 ../../mod/setup.php:619 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Por favor, asegúrese de que el servidor web está siendo ejecutado por un usuario que tenga permisos de escritura sobre esta carpeta (por ejemplo, www-data)." +#: ../../include/widgets.php:1309 +msgid "For Members" +msgstr "Para los miembros" -#: ../../mod/setup.php:599 -#, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." -msgstr "Nota: como medida de seguridad, debe dar al servidor web permisos de escritura solo sobre %s - no sobre el fichero de plantilla (.tpl) que contiene." +#: ../../include/widgets.php:1310 +msgid "For Administrators" +msgstr "Para los administradores" -#: ../../mod/setup.php:602 -#, php-format -msgid "%s is writable" -msgstr "%s tiene permisos de escritura" +#: ../../include/widgets.php:1311 +msgid "For Developers" +msgstr "Para los desarrolladores" -#: ../../mod/setup.php:618 -msgid "" -"Red uses the store directory to save uploaded files. The web server needs to" -" have write access to the store directory under the Red top level folder" -msgstr "Hubzilla guarda los ficheros descargados en la carpeta \"store\". El servidor web necesita tener permisos de escritura sobre esa carpeta, en el directorio de instalación." +#: ../../include/widgets.php:1335 +msgid "Accounts" +msgstr "Cuentas" -#: ../../mod/setup.php:622 -msgid "store is writable" -msgstr "\"store\" tiene permisos de escritura" +#: ../../include/widgets.php:1335 ../../include/widgets.php:1373 +msgid "Member registrations waiting for confirmation" +msgstr "Inscripciones de nuevos miembros pendientes de aprobación" -#: ../../mod/setup.php:655 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "El certificado SSL no ha podido ser validado. Corrija este problema o desactive el acceso https a este sitio." +#: ../../include/widgets.php:1341 +msgid "Inspect queue" +msgstr "Examinar la cola" -#: ../../mod/setup.php:656 -msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" -msgstr "Si su servidor soporta conexiones cifradas SSL o si permite conexiones al puerto TCP 443 (el puerto usado por el protocolo https), debe utilizar un certificado válido. No debe usar un certificado firmado por usted mismo." +#: ../../include/widgets.php:1343 +msgid "DB updates" +msgstr "Actualizaciones de la base de datos" -#: ../../mod/setup.php:657 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "Se ha incorporado esta restricción para evitar que sus publicaciones públicas hagan referencia a imágenes en su propio servidor." +#: ../../include/widgets.php:1368 ../../include/nav.php:219 +msgid "Admin" +msgstr "Administrador" -#: ../../mod/setup.php:658 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." -msgstr "Si su certificado no ha sido reconocido, los miembros de otros sitios (con certificados válidos) recibirán mensajes de aviso en sus propios sitios web." +#: ../../include/widgets.php:1369 +msgid "Plugin Features" +msgstr "Extensiones" -#: ../../mod/setup.php:659 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "Por razones de compatibilidad (sobre el conjunto de la red, no solo sobre su propio sitio), debemos insistir en estos requisitos." +#: ../../include/taxonomy.php:240 ../../include/taxonomy.php:261 +msgid "Tags" +msgstr "Etiquetas" -#: ../../mod/setup.php:660 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Existen varias Autoridades de Certificación que le pueden proporcionar certificados válidos." +#: ../../include/taxonomy.php:305 +msgid "Keywords" +msgstr "Palabras clave" -#: ../../mod/setup.php:662 -msgid "SSL certificate validation" -msgstr "validación del certificado SSL" +#: ../../include/taxonomy.php:326 +msgid "have" +msgstr "tener" -#: ../../mod/setup.php:668 -msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "No se pueden reescribir las direcciones web en .htaccess. Compruebe la configuración de su servidor:" +#: ../../include/taxonomy.php:326 +msgid "has" +msgstr "tiene" -#: ../../mod/setup.php:671 -msgid "Url rewrite is working" -msgstr "La reescritura de las direcciones funciona correctamente" +#: ../../include/taxonomy.php:327 +msgid "want" +msgstr "quiero" -#: ../../mod/setup.php:680 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "El fichero de configuración de la base de datos .htconfig.php no se ha podido modificar. Por favor, copie el texto generado en un fichero con ese nombre en el directorio raíz de su servidor." +#: ../../include/taxonomy.php:327 +msgid "wants" +msgstr "quiere" -#: ../../mod/setup.php:704 -msgid "Errors encountered creating database tables." -msgstr "Se han encontrado errores al crear las tablas de la base de datos." +#: ../../include/taxonomy.php:328 +msgid "likes" +msgstr "gusta de" -#: ../../mod/setup.php:738 -msgid "

What next

" -msgstr "

Siguiente paso

" +#: ../../include/taxonomy.php:329 +msgid "dislikes" +msgstr "no gusta de" -#: ../../mod/setup.php:739 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANTE: Debe crear [manualmente] una tarea programada para el \"poller\"." +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "¿Borrar este elemento?" -#: ../../mod/impel.php:192 -#, php-format -msgid "%s element installed" -msgstr "%s elemento instalado" +#: ../../include/js_strings.php:8 +msgid "[-] show less" +msgstr "[-] mostrar menos" -#: ../../mod/impel.php:195 -#, php-format -msgid "%s element installation failed" -msgstr "Elemento con instalación fallida: %s" +#: ../../include/js_strings.php:9 +msgid "[+] expand" +msgstr "[+] expandir" -#: ../../mod/import.php:28 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Su paquete de servicios solo permite %d canales." +#: ../../include/js_strings.php:10 +msgid "[-] collapse" +msgstr "[-] contraer" -#: ../../mod/import.php:66 ../../mod/import_items.php:38 -msgid "Nothing to import." -msgstr "No hay nada para importar." +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "Contraseña demasiado corta" -#: ../../mod/import.php:90 ../../mod/import_items.php:62 -msgid "Unable to download data from old server" -msgstr "No se han podido descargar datos de su antiguo servidor" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "Las contraseñas no coinciden" -#: ../../mod/import.php:96 ../../mod/import_items.php:68 -msgid "Imported file is empty." -msgstr "El fichero importado está vacío." +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "Contraseña secreta" -#: ../../mod/import.php:118 ../../mod/import_items.php:82 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Atención: Las versiones de la base de datos difieren en %1$d actualizaciones." +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "Pista de contraseña" -#: ../../mod/import.php:156 -msgid "No channel. Import failed." -msgstr "No hay canal. La importación ha fallado" +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "Aviso: los permisos han cambiado pero aún no han sido enviados." -#: ../../mod/import.php:524 -msgid "You must be logged in to use this feature." -msgstr "Debe estar registrado para poder usar esta funcionalidad." +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "cerrar todo" -#: ../../mod/import.php:529 -msgid "Import Channel" -msgstr "Importar canal" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "Nada nuevo por aquí" -#: ../../mod/import.php:530 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file." -msgstr "Emplee este formulario para importar un canal desde un servidor/hub diferente. Puede recuperar el canal desde el antiguo servidor/hub a través de la red o proporcionando un fichero de exportación." +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" +msgstr "Valorar este canal (esto es público)" -#: ../../mod/import.php:531 ../../mod/import_items.php:115 -msgid "File to Upload" -msgstr "Fichero para subir" +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" +msgstr "Describir (opcional)" -#: ../../mod/import.php:532 -msgid "Or provide the old server/hub details" -msgstr "O proporcione los detalles de su antiguo servidor/hub" +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" +msgstr "Por favor, introduzca una dirección de enlace" -#: ../../mod/import.php:533 -msgid "Your old identity address (xyz@example.com)" -msgstr "Su identidad en el antiguo servidor (canal@ejemplo.com)" +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" +msgstr "Cambios no guardados. ¿Está seguro de que desea abandonar la página?" -#: ../../mod/import.php:534 -msgid "Your old login email address" -msgstr "Su antigua dirección de correo electrónico" +#: ../../include/js_strings.php:27 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" -#: ../../mod/import.php:535 -msgid "Your old login password" -msgstr "Su antigua contraseña" +#: ../../include/js_strings.php:28 +msgid "timeago.prefixFromNow" +msgstr "timeago.prefixFromNow" -#: ../../mod/import.php:536 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Para cualquiera de las opciones, elija si hacer de este servidor su nueva dirección primaria, o si su antigua dirección debe continuar con este papel. Usted podrá publicar desde cualquier ubicación, pero sólo una puede estar marcada como la ubicación principal para los ficheros, fotos y otras imágenes o vídeos." +#: ../../include/js_strings.php:29 +msgid "ago" +msgstr "antes" -#: ../../mod/import.php:537 -msgid "Make this hub my primary location" -msgstr "Convertir este servidor en mi ubicación primaria" +#: ../../include/js_strings.php:30 +msgid "from now" +msgstr "desde ahora" -#: ../../mod/import.php:538 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible" +#: ../../include/js_strings.php:31 +msgid "less than a minute" +msgstr "menos de un minuto" -#: ../../mod/import.php:539 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine." +#: ../../include/js_strings.php:32 +msgid "about a minute" +msgstr "alrededor de un minuto" -#: ../../mod/import_items.php:98 -msgid "Import completed" -msgstr "Importación completada" +#: ../../include/js_strings.php:33 +#, php-format +msgid "%d minutes" +msgstr "%d minutos" -#: ../../mod/import_items.php:113 -msgid "Import Items" -msgstr "Importar elementos" +#: ../../include/js_strings.php:34 +msgid "about an hour" +msgstr "alrededor de una hora" -#: ../../mod/import_items.php:114 -msgid "" -"Use this form to import existing posts and content from an export file." -msgstr "Utilice este formulario para importar entradas existentes y contenido desde un archivo de exportación." +#: ../../include/js_strings.php:35 +#, php-format +msgid "about %d hours" +msgstr "alrededor de %d horas" -#: ../../mod/sharedwithme.php:94 -msgid "Files: shared with me" -msgstr "Ficheros: compartidos conmigo" +#: ../../include/js_strings.php:36 +msgid "a day" +msgstr "un día" -#: ../../mod/sharedwithme.php:96 -msgid "NEW" -msgstr "NUEVO" +#: ../../include/js_strings.php:37 +#, php-format +msgid "%d days" +msgstr "%d días" -#: ../../mod/sharedwithme.php:99 -msgid "Remove all files" -msgstr "Eliminar todos los ficheros" +#: ../../include/js_strings.php:38 +msgid "about a month" +msgstr "alrededor de un mes" -#: ../../mod/sharedwithme.php:100 -msgid "Remove this file" -msgstr "Eliminar este fichero" +#: ../../include/js_strings.php:39 +#, php-format +msgid "%d months" +msgstr "%d meses" -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Se ha superado el límite máximo de invitaciones." +#: ../../include/js_strings.php:40 +msgid "about a year" +msgstr "alrededor de un año" -#: ../../mod/invite.php:49 +#: ../../include/js_strings.php:41 #, php-format -msgid "%s : Not a valid email address." -msgstr "%s : No es una dirección de correo electrónico válida. " +msgid "%d years" +msgstr "%d años" -#: ../../mod/invite.php:59 -msgid "Please join us on $Projectname" -msgstr "Únase a nosotros en $Projectname" +#: ../../include/js_strings.php:42 +msgid " " +msgstr " " -#: ../../mod/invite.php:70 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio." +#: ../../include/js_strings.php:43 +msgid "timeago.numbers" +msgstr "timeago.numbers" -#: ../../mod/invite.php:75 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s : Falló el envío del mensaje." +#: ../../include/js_strings.php:45 ../../include/text.php:1210 +msgid "January" +msgstr "enero" -#: ../../mod/invite.php:79 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d mensajes enviados." -msgstr[1] "%d mensajes enviados." +#: ../../include/js_strings.php:46 ../../include/text.php:1210 +msgid "February" +msgstr "febrero" -#: ../../mod/invite.php:98 -msgid "You have no more invitations available" -msgstr "No tiene más invitaciones disponibles" +#: ../../include/js_strings.php:47 ../../include/text.php:1210 +msgid "March" +msgstr "marzo" -#: ../../mod/invite.php:129 -msgid "Send invitations" -msgstr "Enviar invitaciones" +#: ../../include/js_strings.php:48 ../../include/text.php:1210 +msgid "April" +msgstr "abril" -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" -msgstr "Introduzca las direcciones de correo electrónico, una por línea:" +#: ../../include/js_strings.php:49 +msgctxt "long" +msgid "May" +msgstr "mayo" -#: ../../mod/invite.php:131 ../../mod/mail.php:246 -msgid "Your message:" -msgstr "Su mensaje:" +#: ../../include/js_strings.php:50 ../../include/text.php:1210 +msgid "June" +msgstr "junio" -#: ../../mod/invite.php:132 -msgid "Please join my community on $Projectname." -msgstr "Por favor, únase a mi comunidad en $Projectname." +#: ../../include/js_strings.php:51 ../../include/text.php:1210 +msgid "July" +msgstr "julio" -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code:" -msgstr "Tendrá que suministrar este código de invitación:" +#: ../../include/js_strings.php:52 ../../include/text.php:1210 +msgid "August" +msgstr "agosto" -#: ../../mod/invite.php:135 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Regístrese en cualquier sitio de $Projectname (están todos interconectados)" +#: ../../include/js_strings.php:53 ../../include/text.php:1210 +msgid "September" +msgstr "septiembre" -#: ../../mod/invite.php:137 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Introduzca mi dirección $Projectname en la caja de búsqueda del sitio." +#: ../../include/js_strings.php:54 ../../include/text.php:1210 +msgid "October" +msgstr "octubre" -#: ../../mod/invite.php:138 -msgid "or visit" -msgstr "o visitar" +#: ../../include/js_strings.php:55 ../../include/text.php:1210 +msgid "November" +msgstr "noviembre" -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" -msgstr "3. Pulse [conectar]" +#: ../../include/js_strings.php:56 ../../include/text.php:1210 +msgid "December" +msgstr "diciembre" -#: ../../mod/siteinfo.php:15 -#, php-format -msgid "Version %s" -msgstr "Versión %s" +#: ../../include/js_strings.php:57 +msgid "Jan" +msgstr "ene" -#: ../../mod/siteinfo.php:36 -msgid "Installed plugins/addons/apps:" -msgstr "Extensiones, complementos o aplicaciones instaladas:" +#: ../../include/js_strings.php:58 +msgid "Feb" +msgstr "feb" -#: ../../mod/siteinfo.php:49 -msgid "No installed plugins/addons/apps" -msgstr "No hay instalada ninguna extensión, complemento o aplicación" +#: ../../include/js_strings.php:59 +msgid "Mar" +msgstr "mar" -#: ../../mod/siteinfo.php:62 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Este es un sitio integrado en $Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada." +#: ../../include/js_strings.php:60 +msgid "Apr" +msgstr "abr" -#: ../../mod/siteinfo.php:64 -msgid "Tag: " -msgstr "Etiqueta:" +#: ../../include/js_strings.php:61 +msgctxt "short" +msgid "May" +msgstr "may" -#: ../../mod/siteinfo.php:66 -msgid "Last background fetch: " -msgstr "Última actualización en segundo plano:" +#: ../../include/js_strings.php:62 +msgid "Jun" +msgstr "jun" -#: ../../mod/siteinfo.php:68 -msgid "Current load average: " -msgstr "Carga media actual:" +#: ../../include/js_strings.php:63 +msgid "Jul" +msgstr "jul" -#: ../../mod/siteinfo.php:71 -msgid "Running at web location" -msgstr "Corriendo en el sitio web" +#: ../../include/js_strings.php:64 +msgid "Aug" +msgstr "ago" -#: ../../mod/siteinfo.php:72 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Por favor, visite hubzilla.org para más información sobre $Projectname." +#: ../../include/js_strings.php:65 +msgid "Sep" +msgstr "sep" -#: ../../mod/siteinfo.php:73 -msgid "Bug reports and issues: please visit" -msgstr "Informes de errores e incidencias: por favor visite" +#: ../../include/js_strings.php:66 +msgid "Oct" +msgstr "oct" -#: ../../mod/siteinfo.php:75 -msgid "$projectname issues" -msgstr "Problemas en $projectname" +#: ../../include/js_strings.php:67 +msgid "Nov" +msgstr "nov" -#: ../../mod/siteinfo.php:76 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com" +#: ../../include/js_strings.php:68 +msgid "Dec" +msgstr "dic" -#: ../../mod/siteinfo.php:78 -msgid "Site Administrators" -msgstr "Administradores del sitio" +#: ../../include/js_strings.php:69 ../../include/text.php:1206 +msgid "Sunday" +msgstr "domingo" -#: ../../mod/item.php:174 -msgid "Unable to locate original post." -msgstr "No ha sido posible encontrar la entrada original." +#: ../../include/js_strings.php:70 ../../include/text.php:1206 +msgid "Monday" +msgstr "lunes" -#: ../../mod/item.php:423 -msgid "Empty post discarded." -msgstr "La entrada vacía ha sido desechada." +#: ../../include/js_strings.php:71 ../../include/text.php:1206 +msgid "Tuesday" +msgstr "martes" -#: ../../mod/item.php:463 -msgid "Executable content type not permitted to this channel." -msgstr "Contenido de tipo ejecutable no permitido en este canal." +#: ../../include/js_strings.php:72 ../../include/text.php:1206 +msgid "Wednesday" +msgstr "miércoles" -#: ../../mod/item.php:843 -msgid "Duplicate post suppressed." -msgstr "Se ha suprimido la entrada duplicada." +#: ../../include/js_strings.php:73 ../../include/text.php:1206 +msgid "Thursday" +msgstr "jueves" -#: ../../mod/item.php:973 -msgid "System error. Post not saved." -msgstr "Error del sistema. La entrada no se ha podido salvar." +#: ../../include/js_strings.php:74 ../../include/text.php:1206 +msgid "Friday" +msgstr "viernes" -#: ../../mod/item.php:1240 -msgid "Unable to obtain post information from database." -msgstr "No ha sido posible obtener información de la entrada en la base de datos." +#: ../../include/js_strings.php:75 ../../include/text.php:1206 +msgid "Saturday" +msgstr "sábado" -#: ../../mod/item.php:1247 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Ha alcanzado su límite de %1$.0f entradas en la página principal." +#: ../../include/js_strings.php:76 +msgid "Sun" +msgstr "dom" -#: ../../mod/item.php:1254 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Ha alcanzado su límite de %1$.0f páginas web." +#: ../../include/js_strings.php:77 +msgid "Mon" +msgstr "lun" -#: ../../mod/layouts.php:177 -msgid "Comanche page description language help" -msgstr "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche" +#: ../../include/js_strings.php:78 +msgid "Tue" +msgstr "mar" -#: ../../mod/layouts.php:181 -msgid "Layout Description" -msgstr "Descripción de la plantilla" +#: ../../include/js_strings.php:79 +msgid "Wed" +msgstr "mié" -#: ../../mod/layouts.php:186 -msgid "Download PDL file" -msgstr "Descargar el fichero PDL" +#: ../../include/js_strings.php:80 +msgid "Thu" +msgstr "jue" -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "Me gusta/No me gusta" +#: ../../include/js_strings.php:81 +msgid "Fri" +msgstr "vie" -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "Esta acción está restringida solo para miembros." +#: ../../include/js_strings.php:82 +msgid "Sat" +msgstr "sáb" -#: ../../mod/like.php:21 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Por favor, identifíquese con su $Projectname ID o rregístrese como un nuevo $Projectname member para continuar." +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "today" +msgstr "hoy" -#: ../../mod/like.php:101 ../../mod/like.php:127 ../../mod/like.php:165 -msgid "Invalid request." -msgstr "Solicitud incorrecta." +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "month" +msgstr "mes" -#: ../../mod/like.php:142 -msgid "thing" -msgstr "elemento" +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "week" +msgstr "semana" -#: ../../mod/like.php:188 -msgid "Channel unavailable." -msgstr "Canal no disponible." +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "day" +msgstr "día" -#: ../../mod/like.php:236 -msgid "Previous action reversed." -msgstr "Acción anterior revocada." +#: ../../include/js_strings.php:87 +msgctxt "calendar" +msgid "All day" +msgstr "Todos los días" -#: ../../mod/like.php:420 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%3$s de %2$s: %1$s está de acuerdo" +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "No se ha especificado ningún destinatario." -#: ../../mod/like.php:422 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%3$s de %2$s: %1$s no está de acuerdo" +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[sin asunto]" -#: ../../mod/like.php:424 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%3$s de %2$s: %1$s se abstiene" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "No ha sido posible determinar el remitente. " -#: ../../mod/like.php:426 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%3$s de %2$s: %1$s participa" +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "No se han podido verificar las publicaciones guardadas." -#: ../../mod/like.php:428 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%3$s de %2$s: %1$s no participa" +#: ../../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." -#: ../../mod/like.php:430 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%3$s de %2$s: %1$s quizá participe" +#: ../../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." -#: ../../mod/like.php:533 -msgid "Action completed." -msgstr "Acción completada." +#: ../../include/oembed.php:267 +msgid "Embedded content" +msgstr "Contenido incorporado" -#: ../../mod/like.php:534 -msgid "Thank you." -msgstr "Gracias." +#: ../../include/oembed.php:276 +msgid "Embedding disabled" +msgstr "Incrustación deshabilitada" -#: ../../mod/locs.php:21 ../../mod/locs.php:50 -msgid "Location not found." -msgstr "Dirección no encontrada." +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Nueva página" -#: ../../mod/locs.php:58 -msgid "Location lookup failed." -msgstr "Ha fallado la búsqueda de la dirección." +#: ../../include/page_widgets.php:43 +msgid "Title" +msgstr "Título" -#: ../../mod/locs.php:62 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Por favor, seleccione una copia de su canal (un clon) para convertirlo en primario antes de eliminar su canal principal." +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Pueden verse mi actividad y publicaciones normales" -#: ../../mod/locs.php:91 -msgid "Syncing locations" -msgstr "Sincronización de ubicaciones" +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Puede verse mi perfil de canal predeterminado." -#: ../../mod/locs.php:101 -msgid "No locations found." -msgstr "No encontrada ninguna dirección." +#: ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Pueden verse mis conexiones" -#: ../../mod/locs.php:112 -msgid "Manage Channel Locations" -msgstr "Gestionar las direcciones del canal" +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Pueden verse mi repositorio de ficheros y mis fotos" -#: ../../mod/locs.php:115 -msgid "Primary" -msgstr "Primario" +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Pueden verse mis páginas web" -#: ../../mod/locs.php:116 ../../mod/menu.php:109 -msgid "Drop" -msgstr "Eliminar" +#: ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "Me pueden enviar sus entradas y contenidos del canal" -#: ../../mod/locs.php:118 -msgid "Sync Now" -msgstr "Sincronizar ahora" +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Pueden crearse entradas en mi página de inicio del canal (“muro”)" -#: ../../mod/locs.php:119 -msgid "Please wait several minutes between consecutive operations." -msgstr "Por favor, espere algunos minutos entre operaciones consecutivas." +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Pueden publicarse comentarios en mis publicaciones o marcar mis entradas con 'me gusta'." -#: ../../mod/locs.php:120 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Cuando sea posible, elimine una ubicación iniciando sesión en el sitio web o \"hub\" y borrando su canal." +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Se me pueden enviar mensajes privados" -#: ../../mod/locs.php:121 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Utilice este formulario para eliminar la dirección si el \"hub\" no está funcionando desde hace tiempo." +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Puede marcarse contenido como me gusta/no me gusta" -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "Imposible crear el origen de los contenidos. Ningún canal ha sido seleccionado." +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Perfiles y otras cosas aparte de publicaciones/comentarios" -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "Fuente creada." +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Puede enviarse una entrada a todos mis contactos del canal mediante una @mención" -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "Fuente actualizada." +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Avanzado - útil para crear canales de foros de discusión o grupos" -#: ../../mod/sources.php:82 -msgid "*" -msgstr "*" +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Se puede charlar conmigo (cuando esté disponible)" -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "Gestionar contenido de origen remoto para su canal." +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Puede escribirse en mi repositorio de ficheros y fotos" -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "Nueva fuente" +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Pueden editarse mis páginas web" -#: ../../mod/sources.php:101 ../../mod/sources.php:133 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importar todo el contenido o una selección de los siguientes canales en este canal y distribuirlo de acuerdo con sus ajustes." +#: ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "Pueden utilizarse mis publicaciones públicas como origen de contenidos en canales derivados" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "Importar solo contenido que contenga estas palabras (una por línea)" +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Algo avanzado - muy útil en comunidades abiertas" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "Dejar en blanco para importar todo el contenido público" +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Pueden administrarse mis recursos del canal" -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -msgid "Channel Name" -msgstr "Nombre del canal" +#: ../../include/permissions.php:46 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Muy avanzado. Déjelo a no ser que sepa bien lo que está haciendo." -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "Fuente no encontrada" +#: ../../include/permissions.php:877 +msgid "Social Networking" +msgstr "Redes sociales" -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "Editar fuente" +#: ../../include/permissions.php:877 +msgid "Social - Mostly Public" +msgstr "Social - Público en su mayor parte" -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "Eliminar fuente" +#: ../../include/permissions.php:877 +msgid "Social - Restricted" +msgstr "Social - Restringido" -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "Fuente eliminada" +#: ../../include/permissions.php:877 +msgid "Social - Private" +msgstr "Social - Privado" -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "Imposible eliminar la fuente." +#: ../../include/permissions.php:878 +msgid "Community Forum" +msgstr "Foro de discusión" -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "No se ha encontrado una cuenta válida." +#: ../../include/permissions.php:878 +msgid "Forum - Mostly Public" +msgstr "Foro - Público en su mayor parte" -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico." +#: ../../include/permissions.php:878 +msgid "Forum - Restricted" +msgstr "Foro - Restringido" -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103 -#, php-format -msgid "Site Member (%s)" -msgstr "Usuario del sitio (%s)" +#: ../../include/permissions.php:878 +msgid "Forum - Private" +msgstr "Foro - Privado" -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "Se ha solicitado restablecer la contraseña en %s" +#: ../../include/permissions.php:879 +msgid "Feed Republish" +msgstr "Republicar un \"feed\"" -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado." +#: ../../include/permissions.php:879 +msgid "Feed - Mostly Public" +msgstr "Feed - Público en su mayor parte" -#: ../../mod/lostpass.php:86 ../../boot.php:1608 -msgid "Password Reset" -msgstr "Restablecer la contraseña" +#: ../../include/permissions.php:879 +msgid "Feed - Restricted" +msgstr "Feed - Restringido" -#: ../../mod/lostpass.php:87 -msgid "Your password has been reset as requested." -msgstr "Su contraseña ha sido restablecida según lo solicitó." +#: ../../include/permissions.php:880 +msgid "Special Purpose" +msgstr "Propósito especial" -#: ../../mod/lostpass.php:88 -msgid "Your new password is" -msgstr "Su nueva contraseña es" +#: ../../include/permissions.php:880 +msgid "Special - Celebrity/Soapbox" +msgstr "Especial - Celebridad / Tribuna improvisada" -#: ../../mod/lostpass.php:89 -msgid "Save or copy your new password - and then" -msgstr "Guarde o copie su nueva contraseña - y después" +#: ../../include/permissions.php:880 +msgid "Special - Group Repository" +msgstr "Especial - Repositorio de grupo" -#: ../../mod/lostpass.php:90 -msgid "click here to login" -msgstr "pulse aquí para conectarse" +#: ../../include/permissions.php:881 +msgid "Custom/Expert Mode" +msgstr "Modo personalizado/experto" -#: ../../mod/lostpass.php:91 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión." +#: ../../include/text.php:394 +msgid "prev" +msgstr "anterior" -#: ../../mod/lostpass.php:108 -#, php-format -msgid "Your password has changed at %s" -msgstr "Su contraseña en %s ha sido cambiada" +#: ../../include/text.php:396 +msgid "first" +msgstr "primera" -#: ../../mod/lostpass.php:123 -msgid "Forgot your Password?" -msgstr "¿Ha olvidado su contraseña?" +#: ../../include/text.php:425 +msgid "last" +msgstr "última" -#: ../../mod/lostpass.php:124 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones." +#: ../../include/text.php:428 +msgid "next" +msgstr "próxima" -#: ../../mod/lostpass.php:125 -msgid "Email Address" -msgstr "Dirección de correo electrónico" +#: ../../include/text.php:438 +msgid "older" +msgstr "más antiguas" -#: ../../mod/lostpass.php:126 -msgid "Reset" -msgstr "Reiniciar" +#: ../../include/text.php:440 +msgid "newer" +msgstr "más recientes" -#: ../../mod/magic.php:69 -msgid "Hub not found." -msgstr "Servidor no encontrado" +#: ../../include/text.php:822 +msgid "No connections" +msgstr "Sin conexiones" -#: ../../mod/subthread.php:114 +#: ../../include/text.php:847 #, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s está siguiendo %3$s de %2$s" +msgid "View all %s connections" +msgstr "Ver todas las %s conexiones" -#: ../../mod/subthread.php:116 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s ha dejado de seguir %3$s de %2$s" +#: ../../include/text.php:992 ../../include/text.php:997 +msgid "poke" +msgstr "un toque" -#: ../../mod/mail.php:34 -msgid "Unable to lookup recipient." -msgstr "Imposible asociar a un destinatario." +#: ../../include/text.php:998 +msgid "ping" +msgstr "un \"ping\"" -#: ../../mod/mail.php:42 -msgid "Unable to communicate with requested channel." -msgstr "Imposible comunicar con el canal solicitado." +#: ../../include/text.php:998 +msgid "pinged" +msgstr "ha enviado un \"ping\" a" -#: ../../mod/mail.php:49 -msgid "Cannot verify requested channel." -msgstr "No se puede verificar el canal solicitado." +#: ../../include/text.php:999 +msgid "prod" +msgstr "una incitación " -#: ../../mod/mail.php:75 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló." +#: ../../include/text.php:999 +msgid "prodded" +msgstr "ha incitado a " -#: ../../mod/mail.php:140 -msgid "Messages" -msgstr "Mensajes" +#: ../../include/text.php:1000 +msgid "slap" +msgstr "una bofetada " -#: ../../mod/mail.php:175 -msgid "Message recalled." -msgstr "Mensaje revocado." +#: ../../include/text.php:1000 +msgid "slapped" +msgstr "ha abofeteado a " -#: ../../mod/mail.php:188 -msgid "Conversation removed." -msgstr "Conversación eliminada." +#: ../../include/text.php:1001 +msgid "finger" +msgstr "un \"finger\" " -#: ../../mod/mail.php:231 -msgid "Requested channel is not in this network" -msgstr "El canal solicitado no existe en esta red" +#: ../../include/text.php:1001 +msgid "fingered" +msgstr "envió un \"finger\" a" -#: ../../mod/mail.php:239 -msgid "Send Private Message" -msgstr "Enviar un mensaje privado" +#: ../../include/text.php:1002 +msgid "rebuff" +msgstr "un reproche" -#: ../../mod/mail.php:240 ../../mod/mail.php:370 -msgid "To:" -msgstr "Para:" +#: ../../include/text.php:1002 +msgid "rebuffed" +msgstr "ha hecho un reproche a " -#: ../../mod/mail.php:243 ../../mod/mail.php:372 -msgid "Subject:" -msgstr "Asunto:" +#: ../../include/text.php:1014 +msgid "happy" +msgstr "feliz " -#: ../../mod/mail.php:250 -msgid "Send" -msgstr "Enviar" +#: ../../include/text.php:1015 +msgid "sad" +msgstr "triste " -#: ../../mod/mail.php:342 -msgid "Delete message" -msgstr "Borrar mensaje" +#: ../../include/text.php:1016 +msgid "mellow" +msgstr "tranquilo/a" -#: ../../mod/mail.php:343 -msgid "Delivery report" -msgstr "Informe de transmisión" +#: ../../include/text.php:1017 +msgid "tired" +msgstr "cansado/a " -#: ../../mod/mail.php:344 -msgid "Recall message" -msgstr "Revocar el mensaje" +#: ../../include/text.php:1018 +msgid "perky" +msgstr "vivaz" -#: ../../mod/mail.php:346 -msgid "Message has been recalled." -msgstr "El mensaje ha sido revocado." +#: ../../include/text.php:1019 +msgid "angry" +msgstr "enfadado/a" -#: ../../mod/mail.php:363 -msgid "Delete Conversation" -msgstr "Eliminar conversación" +#: ../../include/text.php:1020 +msgid "stupefied" +msgstr "asombrado/a" -#: ../../mod/mail.php:365 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Comunicación segura no disponible. Pero puede responder desde la página del perfil del remitente." +#: ../../include/text.php:1021 +msgid "puzzled" +msgstr "perplejo/a" -#: ../../mod/mail.php:369 -msgid "Send Reply" -msgstr "Responder" +#: ../../include/text.php:1022 +msgid "interested" +msgstr "interesado/a" -#: ../../mod/mail.php:374 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Su mensaje para %s (%s):" +#: ../../include/text.php:1023 +msgid "bitter" +msgstr "amargado/a" -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo." +#: ../../include/text.php:1024 +msgid "cheerful" +msgstr "alegre" -#: ../../mod/manage.php:137 -msgid "Create a new channel" -msgstr "Crear un nuevo canal" +#: ../../include/text.php:1025 +msgid "alive" +msgstr "animado/a" -#: ../../mod/manage.php:159 -msgid "Current Channel" -msgstr "Canal actual" +#: ../../include/text.php:1026 +msgid "annoyed" +msgstr "molesto/a" -#: ../../mod/manage.php:161 -msgid "Switch to one of your channels by selecting it." -msgstr "Cambiar a uno de sus canales seleccionándolo." +#: ../../include/text.php:1027 +msgid "anxious" +msgstr "ansioso/a" -#: ../../mod/manage.php:162 -msgid "Default Channel" -msgstr "Canal principal" +#: ../../include/text.php:1028 +msgid "cranky" +msgstr "de mal humor" -#: ../../mod/manage.php:163 -msgid "Make Default" -msgstr "Convertir en predeterminado" +#: ../../include/text.php:1029 +msgid "disturbed" +msgstr "perturbado/a" -#: ../../mod/manage.php:166 -#, php-format -msgid "%d new messages" -msgstr "%d mensajes nuevos" +#: ../../include/text.php:1030 +msgid "frustrated" +msgstr "frustrado/a" -#: ../../mod/manage.php:167 -#, php-format -msgid "%d new introductions" -msgstr "%d nuevas isolicitudes de conexión" +#: ../../include/text.php:1031 +msgid "depressed" +msgstr "deprimido/a" -#: ../../mod/manage.php:169 -msgid "Delegated Channel" -msgstr "Canal delegado" +#: ../../include/text.php:1032 +msgid "motivated" +msgstr "motivado/a" -#: ../../mod/tagger.php:96 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s ha etiquetado %3$s de %2$s con %4$s" +#: ../../include/text.php:1033 +msgid "relaxed" +msgstr "relajado/a" -#: ../../mod/match.php:22 -msgid "Profile Match" -msgstr "Perfil compatible" +#: ../../include/text.php:1034 +msgid "surprised" +msgstr "sorprendido/a" -#: ../../mod/match.php:31 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal." +#: ../../include/text.php:1210 +msgid "May" +msgstr "mayo" -#: ../../mod/match.php:63 -msgid "is interested in:" -msgstr "está interesado en:" +#: ../../include/text.php:1287 ../../include/text.php:1291 +msgid "Unknown Attachment" +msgstr "Adjunto no reconocido" -#: ../../mod/match.php:70 -msgid "No matches" -msgstr "No se han encontrado perfiles compatibles" +#: ../../include/text.php:1293 +msgid "unknown" +msgstr "desconocido" -#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 -msgid "Tag removed" -msgstr "Etiqueta eliminada." +#: ../../include/text.php:1329 +msgid "remove category" +msgstr "eliminar categoría" -#: ../../mod/tagrm.php:119 -msgid "Remove Item Tag" -msgstr "Eliminar etiqueta del elemento." +#: ../../include/text.php:1406 +msgid "remove from file" +msgstr "eliminar del fichero" -#: ../../mod/tagrm.php:121 -msgid "Select a tag to remove: " -msgstr "Seleccionar una etiqueta para eliminar:" +#: ../../include/text.php:1548 ../../include/text.php:1559 +msgid "Click to open/close" +msgstr "Pulsar para abrir/cerrar" -#: ../../mod/menu.php:45 -msgid "Unable to update menu." -msgstr "No se puede actualizar el menú." +#: ../../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" -#: ../../mod/menu.php:56 -msgid "Unable to create menu." -msgstr "No se puede crear el menú." +#: ../../include/text.php:1814 +msgid "Page content type" +msgstr "Tipo de contenido de la página" -#: ../../mod/menu.php:94 ../../mod/menu.php:106 -msgid "Menu Name" -msgstr "Nombre del menú" +#: ../../include/text.php:1848 +msgid "Select an alternate language" +msgstr "Seleccionar un idioma alternativo" -#: ../../mod/menu.php:94 -msgid "Unique name (not visible on webpage) - required" -msgstr "Nombre único (no será visible en la página web) - requerido" +#: ../../include/text.php:1980 +msgid "activity" +msgstr "la actividad" -#: ../../mod/menu.php:95 ../../mod/menu.php:107 -msgid "Menu Title" -msgstr "Título del menú" +#: ../../include/text.php:2275 +msgid "Design Tools" +msgstr "Herramientas de diseño web" -#: ../../mod/menu.php:95 -msgid "Visible on webpage - leave empty for no title" -msgstr "Visible en la página web - no ponga nada si no desea un título" +#: ../../include/text.php:2281 +msgid "Pages" +msgstr "Páginas" -#: ../../mod/menu.php:96 -msgid "Allow Bookmarks" -msgstr "Permitir marcadores" +#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1601 +msgid "Logout" +msgstr "Finalizar sesión" -#: ../../mod/menu.php:96 ../../mod/menu.php:153 -msgid "Menu may be used to store saved bookmarks" -msgstr "El menú se puede usar para guardar marcadores" +#: ../../include/nav.php:82 ../../include/nav.php:113 +msgid "End this session" +msgstr "Finalizar esta sesión" -#: ../../mod/menu.php:97 ../../mod/menu.php:155 -msgid "Submit and proceed" -msgstr "Enviar y proceder" +#: ../../include/nav.php:85 ../../include/nav.php:144 +msgid "Home" +msgstr "Inicio" -#: ../../mod/menu.php:113 -msgid "Bookmarks allowed" -msgstr "Marcadores permitidos" +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Sus publicaciones y conversaciones" -#: ../../mod/menu.php:115 -msgid "Delete this menu" -msgstr "Borrar este menú" +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Su página del perfil" -#: ../../mod/menu.php:116 ../../mod/menu.php:150 -msgid "Edit menu contents" -msgstr "Editar los contenidos del menú" +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Administrar/editar perfiles" -#: ../../mod/menu.php:117 -msgid "Edit this menu" -msgstr "Modificar este menú" +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Editar su perfil" -#: ../../mod/menu.php:132 -msgid "Menu could not be deleted." -msgstr "El menú no puede ser eliminado." +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Sus fotos" -#: ../../mod/menu.php:145 -msgid "Edit Menu" -msgstr "Modificar el menú" +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Sus ficheros" -#: ../../mod/menu.php:149 -msgid "Add or remove entries to this menu" -msgstr "Añadir o quitar entradas en este menú" +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "Sus salas de chat" -#: ../../mod/menu.php:151 -msgid "Menu name" -msgstr "Nombre del menú" +#: ../../include/nav.php:102 +msgid "Your bookmarks" +msgstr "Sus marcadores" -#: ../../mod/menu.php:151 -msgid "Must be unique, only seen by you" -msgstr "Debe ser único, solo será visible para usted" +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "Sus páginas web" -#: ../../mod/menu.php:152 -msgid "Menu title" -msgstr "Título del menú" +#: ../../include/nav.php:110 +msgid "Sign in" +msgstr "Acceder" -#: ../../mod/menu.php:152 -msgid "Menu title as seen by others" -msgstr "El título del menú tal como será visto por los demás" +#: ../../include/nav.php:127 +#, php-format +msgid "%s - click to logout" +msgstr "%s - pulsar para finalizar sesión" -#: ../../mod/menu.php:153 -msgid "Allow bookmarks" -msgstr "Permitir marcadores" +#: ../../include/nav.php:130 +msgid "Remote authentication" +msgstr "Acceder desde su servidor" -#: ../../mod/thing.php:110 -msgid "Thing updated" -msgstr "Elemento actualizado." +#: ../../include/nav.php:130 +msgid "Click to authenticate to your home hub" +msgstr "Pulsar para identificarse en su servidor de inicio" -#: ../../mod/thing.php:162 -msgid "Object store: failed" -msgstr "Guardar objeto: ha fallado" +#: ../../include/nav.php:144 +msgid "Home Page" +msgstr "Página de inicio" -#: ../../mod/thing.php:166 -msgid "Thing added" -msgstr "Elemento añadido" +#: ../../include/nav.php:148 +msgid "Create an account" +msgstr "Crear una cuenta" -#: ../../mod/thing.php:192 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +#: ../../include/nav.php:161 +msgid "Help and documentation" +msgstr "Ayuda y documentación" -#: ../../mod/thing.php:255 -msgid "Show Thing" -msgstr "Mostrar elemento" +#: ../../include/nav.php:165 +msgid "Applications, utilities, links, games" +msgstr "Aplicaciones, utilidades, enlaces, juegos" -#: ../../mod/thing.php:262 -msgid "item not found." -msgstr "elemento no encontrado." +#: ../../include/nav.php:167 +msgid "Search site @name, #tag, ?docs, content" +msgstr "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido" -#: ../../mod/thing.php:295 -msgid "Edit Thing" -msgstr "Editar elemento" +#: ../../include/nav.php:170 +msgid "Channel Directory" +msgstr "Directorio de canales" -#: ../../mod/thing.php:297 ../../mod/thing.php:347 -msgid "Select a profile" -msgstr "Seleccionar un perfil" +#: ../../include/nav.php:182 +msgid "Your grid" +msgstr "Mi red" -#: ../../mod/thing.php:301 ../../mod/thing.php:350 -msgid "Post an activity" -msgstr "Publicar una actividad" +#: ../../include/nav.php:183 +msgid "Mark all grid notifications seen" +msgstr "Marcar todas las notificaciones de la red como vistas" -#: ../../mod/thing.php:301 ../../mod/thing.php:350 -msgid "Only sends to viewers of the applicable profile" -msgstr "Sólo enviar a espectadores del perfil pertinente." +#: ../../include/nav.php:185 +msgid "Channel home" +msgstr "Mi canal" -#: ../../mod/thing.php:303 ../../mod/thing.php:352 -msgid "Name of thing e.g. something" -msgstr "Nombre del elemento, p. ej.:. \"algo\"" +#: ../../include/nav.php:186 +msgid "Mark all channel notifications seen" +msgstr "Marcar todas las notificaciones del canal como leídas" -#: ../../mod/thing.php:305 ../../mod/thing.php:353 -msgid "URL of thing (optional)" -msgstr "Dirección del elemento (opcional)" +#: ../../include/nav.php:192 +msgid "Notices" +msgstr "Avisos" -#: ../../mod/thing.php:307 ../../mod/thing.php:354 -msgid "URL for photo of thing (optional)" -msgstr "Dirección para la foto o elemento (opcional)" +#: ../../include/nav.php:192 +msgid "Notifications" +msgstr "Notificaciones" -#: ../../mod/thing.php:345 -msgid "Add Thing to your Profile" -msgstr "Añadir alguna cosa a su perfil" +#: ../../include/nav.php:193 +msgid "See all notifications" +msgstr "Ver todas las notificaciones" -#: ../../mod/uexport.php:51 ../../mod/uexport.php:52 -msgid "Export Channel" -msgstr "Exportar el canal" +#: ../../include/nav.php:196 +msgid "Private mail" +msgstr "Correo privado" -#: ../../mod/uexport.php:53 -msgid "" -"Export your basic channel information to a file. This acts as a backup of " -"your connections, permissions, profile and basic data, which can be used to " -"import your data to a new server hub, but does not contain your content." -msgstr "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido." +#: ../../include/nav.php:197 +msgid "See all private messages" +msgstr "Ver todas los mensajes privados" -#: ../../mod/uexport.php:54 -msgid "Export Content" -msgstr "Exportar contenidos" +#: ../../include/nav.php:198 +msgid "Mark all private messages seen" +msgstr "Marcar todos los mensajes privados como leídos" -#: ../../mod/uexport.php:55 -msgid "" -"Export your channel information and recent content to a JSON backup that can" -" be restored or imported to another server hub. This backs up all of your " -"connections, permissions, profile data and several months of posts. This " -"file may be VERY large. Please be patient - it may take several minutes for" -" this download to begin." -msgstr "Exportar la información sobre su canal y el contenido reciente a un fichero de respaldo JSON, que puede ser restaurado o importado a otro servidor. Este fichero incluye todas sus conexiones, permisos, datos del perfil y publicaciones de varios meses. Puede llegar a ser MUY grande. Por favor, sea paciente, la descarga puede tardar varios minutos en comenzar." +#: ../../include/nav.php:204 +msgid "Event Calendar" +msgstr "Calendario de eventos" -#: ../../mod/uexport.php:56 -msgid "Export your posts from a given year." -msgstr "Exporta sus publicaciones de un año dado." +#: ../../include/nav.php:205 +msgid "See all events" +msgstr "Ver todos los eventos" -#: ../../mod/uexport.php:58 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "También puede exportar sus mensajes y conversaciones durante un año o mes en particular. Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, intente de nuevo la selección de un rango de fechas más pequeño." +#: ../../include/nav.php:206 +msgid "Mark all events seen" +msgstr "Marcar todos los eventos como leidos" -#: ../../mod/uexport.php:59 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "Para seleccionar todos los mensajes de un año determinado, como este año, visite %2$s" +#: ../../include/nav.php:209 +msgid "Manage Your Channels" +msgstr "Gestionar sus canales" -#: ../../mod/uexport.php:60 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %2$s" +#: ../../include/nav.php:211 +msgid "Account/Channel Settings" +msgstr "Ajustes de cuenta/canales" -#: ../../mod/uexport.php:61 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Estos ficheros pueden ser importados o restaurados visitando %2$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)." +#: ../../include/nav.php:219 +msgid "Site Setup and Configuration" +msgstr "Ajustes y configuración del sitio" -#: ../../mod/viewconnections.php:59 -msgid "No connections." -msgstr "Sin conexiones." +#: ../../include/nav.php:261 +msgid "@name, #tag, ?doc, content" +msgstr "@nombre, #etiqueta, ?ayuda, contenido" -#: ../../mod/viewconnections.php:72 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Visitar el perfil de %s [%s]" +#: ../../include/nav.php:262 +msgid "Please wait..." +msgstr "Espere por favor…" -#: ../../mod/viewconnections.php:101 -msgid "View Connections" -msgstr "Ver conexiones" +#: ../../include/zot.php:680 +msgid "Invalid data packet" +msgstr "Paquete de datos no válido" -#: ../../mod/viewsrc.php:40 -msgid "Source of Item" -msgstr "Origen del elemento" +#: ../../include/zot.php:696 +msgid "Unable to verify channel signature" +msgstr "No ha sido posible de verificar la firma del canal" -#: ../../mod/xchan.php:6 -msgid "Xchan Lookup" -msgstr "Búsqueda de canales" +#: ../../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" -#: ../../mod/xchan.php:9 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Buscar un canal (o un \"webbie\") que comience por:" +#: ../../include/zot.php:3670 +msgid "invalid target signature" +msgstr "La firma recibida no es válida" #: ../../view/theme/redbasic/php/config.php:82 msgid "Focus (Hubzilla default)" @@ -9602,62 +9773,62 @@ msgstr "Ajustar el tamaño de la foto del autor de la conversación" msgid "Set size of followup author photos" msgstr "Ajustar el tamaño de foto de los seguidores del autor" -#: ../../boot.php:1073 +#: ../../boot.php:1075 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "Buscar %1$s (%2$s)" -#: ../../boot.php:1073 +#: ../../boot.php:1075 msgctxt "opensearch" msgid "$Projectname" msgstr "$Projectname" -#: ../../boot.php:1390 +#: ../../boot.php:1392 #, php-format msgid "Update %s failed. See error logs." msgstr "La actualización %s ha fallado. Mire el informe de errores." -#: ../../boot.php:1393 +#: ../../boot.php:1395 #, php-format msgid "Update Error at %s" msgstr "Error de actualización en %s" -#: ../../boot.php:1581 +#: ../../boot.php:1583 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:1603 +#: ../../boot.php:1605 msgid "Password" msgstr "Contraseña" -#: ../../boot.php:1604 +#: ../../boot.php:1606 msgid "Remember me" msgstr "Recordarme" -#: ../../boot.php:1607 +#: ../../boot.php:1609 msgid "Forgot your password?" msgstr "¿Olvidó su contraseña?" -#: ../../boot.php:2236 +#: ../../boot.php:2238 msgid "toggle mobile" msgstr "cambiar a modo móvil" -#: ../../boot.php:2389 +#: ../../boot.php:2391 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:2392 +#: ../../boot.php:2394 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Error SSL del sitio web en %s" -#: ../../boot.php:2429 +#: ../../boot.php:2431 msgid "Cron/Scheduled tasks not running." msgstr "Las tareas del Planificador/Cron no están funcionando." -#: ../../boot.php:2433 +#: ../../boot.php:2435 #, 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 d66c2650c..f4512d058 100644 --- a/view/es-es/hstrings.php +++ b/view/es-es/hstrings.php @@ -34,1244 +34,843 @@ App::$strings["Not Found"] = "No encontrado"; App::$strings["Page not found."] = "Página no encontrada."; App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "La autenticación desde su servidor está bloqueada. Ha iniciado sesión localmente. Por favor, salga de la sesión y vuelva a intentarlo."; App::$strings["Welcome %s. Remote authentication successful."] = "Bienvenido %s. La identificación desde su servidor se ha llevado a cabo correctamente."; -App::$strings["No username found in import file."] = "No se ha encontrado el nombre de usuario en el fichero importado."; -App::$strings["Unable to create a unique channel address. Import failed."] = "No se ha podido crear una dirección de canal única. Ha fallado la importación."; -App::$strings["Import completed."] = "Importación completada."; -App::$strings["Cannot locate DNS info for database server '%s'"] = "No se ha podido localizar información de DNS para el servidor de base de datos “%s”"; -App::$strings["Profile Photos"] = "Fotos del perfil"; -App::$strings["Unable to obtain identity information from database"] = "No ha sido posible obtener información sobre la identidad desde la base de datos"; -App::$strings["Empty name"] = "Nombre vacío"; -App::$strings["Name too long"] = "Nombre demasiado largo"; -App::$strings["No account identifier"] = "Ningún identificador de la cuenta"; -App::$strings["Nickname is required."] = "Se requiere un sobrenombre (alias)."; -App::$strings["Reserved nickname. Please choose another."] = "Sobrenombre en uso. Por favor, elija otro."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio."; -App::$strings["Unable to retrieve created identity"] = "No ha sido posible recuperar la identidad creada"; -App::$strings["Default Profile"] = "Perfil principal"; -App::$strings["Friends"] = "Amigos/as"; -App::$strings["Requested channel is not available."] = "El canal solicitado no está disponible."; App::$strings["Requested profile is not available."] = "El perfil solicitado no está disponible."; -App::$strings["Change profile photo"] = "Cambiar la foto del perfil"; -App::$strings["Edit Profiles"] = "Editar perfiles"; -App::$strings["Create New Profile"] = "Crear un nuevo perfil"; -App::$strings["Edit Profile"] = "Editar el perfil"; -App::$strings["Profile Image"] = "Imagen del perfil"; -App::$strings["Visible to everybody"] = "Visible para todos"; -App::$strings["Edit visibility"] = "Editar visibilidad"; -App::$strings["Connect"] = "Conectar"; -App::$strings["Location:"] = "Ubicación:"; -App::$strings["Gender:"] = "Género:"; -App::$strings["Status:"] = "Estado:"; -App::$strings["Homepage:"] = "Página personal:"; -App::$strings["Online Now"] = "Ahora en línea"; -App::$strings["g A l F d"] = "g A l d F"; -App::$strings["F d"] = "d F"; -App::$strings["[today]"] = "[hoy]"; -App::$strings["Birthday Reminders"] = "Recordatorios de cumpleaños"; -App::$strings["Birthdays this week:"] = "Cumpleaños de esta semana:"; -App::$strings["[No description]"] = "[Sin descripción]"; -App::$strings["Event Reminders"] = "Recordatorios de eventos"; -App::$strings["Events this week:"] = "Eventos de esta semana:"; -App::$strings["Full Name:"] = "Nombre completo:"; -App::$strings["Like this channel"] = "Me gusta este canal"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "Me gusta", - 1 => "Me gusta", -); -App::$strings["j F, Y"] = "j F Y"; -App::$strings["j F"] = "j F"; -App::$strings["Birthday:"] = "Cumpleaños:"; -App::$strings["Age:"] = "Edad:"; -App::$strings["for %1\$d %2\$s"] = "por %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Orientación sexual:"; -App::$strings["Hometown:"] = "Lugar de nacimiento:"; -App::$strings["Tags:"] = "Etiquetas:"; -App::$strings["Political Views:"] = "Posición política:"; -App::$strings["Religion:"] = "Religión:"; -App::$strings["About:"] = "Sobre mí:"; -App::$strings["Hobbies/Interests:"] = "Aficciones o intereses:"; -App::$strings["Likes:"] = "Me gusta:"; -App::$strings["Dislikes:"] = "No me gusta:"; -App::$strings["Contact information and Social Networks:"] = "Información de contacto y redes sociales:"; -App::$strings["My other channels:"] = "Mis otros canales:"; -App::$strings["Musical interests:"] = "Preferencias musicales:"; -App::$strings["Books, literature:"] = "Libros, literatura:"; -App::$strings["Television:"] = "Televisión:"; -App::$strings["Film/dance/culture/entertainment:"] = "Cine, danza, cultura, entretenimiento:"; -App::$strings["Love/Romance:"] = "Vida sentimental o amorosa:"; -App::$strings["Work/employment:"] = "Trabajo:"; -App::$strings["School/education:"] = "Estudios:"; -App::$strings["Profile"] = "Perfil"; -App::$strings["Like this thing"] = "Me gusta esto"; -App::$strings["cover photo"] = "Imagen de portada del perfil"; -App::$strings["created a new post"] = "ha creado una nueva entrada"; -App::$strings["commented on %s's post"] = "ha comentado la entrada de %s"; -App::$strings["Private Message"] = "Mensaje Privado"; -App::$strings["Select"] = "Seleccionar"; -App::$strings["Save to Folder"] = "Guardar en carpeta"; -App::$strings["I will attend"] = "Participaré"; -App::$strings["I will not attend"] = "No participaré"; -App::$strings["I might attend"] = "Quizá participe"; -App::$strings["I agree"] = "Estoy de acuerdo"; -App::$strings["I disagree"] = "No estoy de acuerdo"; -App::$strings["I abstain"] = "Me abstengo"; -App::$strings["View all"] = "Ver todo"; -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "No me gusta", - 1 => "No me gusta", +App::$strings["Some blurb about what to do when you're new here"] = "Algunas propuestas para el nuevo usuario sobre qué se puede hacer aquí"; +App::$strings["network"] = "red"; +App::$strings["RSS"] = "RSS"; +App::$strings["Theme settings updated."] = "Ajustes del tema actualizados."; +App::$strings["Item not found."] = "Elemento no encontrado."; +App::$strings["# Accounts"] = "# Cuentas"; +App::$strings["# blocked accounts"] = "# cuentas bloqueadas"; +App::$strings["# expired accounts"] = "# cuentas caducadas"; +App::$strings["# expiring accounts"] = "# cuentas que caducan"; +App::$strings["# Channels"] = "# Canales"; +App::$strings["# primary"] = "# primario"; +App::$strings["# clones"] = "# clones"; +App::$strings["Message queues"] = "Mensajes en cola"; +App::$strings["Administration"] = "Administración"; +App::$strings["Summary"] = "Sumario"; +App::$strings["Registered accounts"] = "Cuentas registradas"; +App::$strings["Pending registrations"] = "Registros pendientes"; +App::$strings["Registered channels"] = "Canales registrados"; +App::$strings["Active plugins"] = "Extensiones activas"; +App::$strings["Version"] = "Versión"; +App::$strings["Site settings updated."] = "Ajustes del sitio actualizados."; +App::$strings["Default"] = "Predeterminado"; +App::$strings["mobile"] = "móvil"; +App::$strings["experimental"] = "experimental"; +App::$strings["unsupported"] = "no soportado"; +App::$strings["No"] = "No"; +App::$strings["Yes - with approval"] = "Sí - con aprobación"; +App::$strings["Yes"] = "Sí"; +App::$strings["My site is not a public server"] = "Mi sitio no es un servidor público"; +App::$strings["My site has paid access only"] = "Mi sitio es un servicio de pago"; +App::$strings["My site has free access only"] = "Mi sitio es un servicio gratuito"; +App::$strings["My site offers free accounts with optional paid upgrades"] = "Mi sitio ofrece cuentas gratuitas con opciones extra de pago"; +App::$strings["Site"] = "Sitio"; +App::$strings["Submit"] = "Enviar"; +App::$strings["Registration"] = "Registro"; +App::$strings["File upload"] = "Subir fichero"; +App::$strings["Policies"] = "Políticas"; +App::$strings["Advanced"] = "Avanzado"; +App::$strings["Site name"] = "Nombre del sitio"; +App::$strings["Banner/Logo"] = "Banner/Logo"; +App::$strings["Administrator Information"] = "Información del Administrador"; +App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Información de contacto de los administradores del sitio. Visible en la página \"siteinfo\". Se puede usar BBCode"; +App::$strings["System language"] = "Idioma del sistema"; +App::$strings["System theme"] = "Tema gráfico del sistema"; +App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema del sistema por defecto - se puede cambiar por cada perfil de usuario - modificar los ajustes del tema"; +App::$strings["Mobile system theme"] = "Tema del sistema para móviles"; +App::$strings["Theme for mobile devices"] = "Tema para dispositivos móviles"; +App::$strings["Allow Feeds as Connections"] = "Permitir contenidos RSS como conexiones"; +App::$strings["(Heavy system resource usage)"] = "(Uso intenso de los recursos del sistema)"; +App::$strings["Maximum image size"] = "Tamaño máximo de la imagen"; +App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Tamaño máximo en bytes de la imagen subida. Por defecto, es 0, lo que significa que no hay límites."; +App::$strings["Does this site allow new member registration?"] = "¿Debe este sitio permitir el registro de nuevos miembros?"; +App::$strings["Invitation only"] = "Solo con una invitación"; +App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Solo se permiten inscripciones de nuevos miembros con un código de invitación. Además, deben aceptarse los términos del registro marcando \"Sí\"."; +App::$strings["Which best describes the types of account offered by this hub?"] = "¿Cómo describiría el tipo de servicio ofrecido por este servidor?"; +App::$strings["Register text"] = "Texto del registro"; +App::$strings["Will be displayed prominently on the registration page."] = "Se mostrará de forma destacada en la página de registro."; +App::$strings["Site homepage to show visitors (default: login box)"] = "Página personal que se mostrará a los visitantes (por defecto: la página de identificación)"; +App::$strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "ejemplo: 'public' para mostrar contenido público, 'page/sys/home' para mostrar la página web definida como \"home\" o 'include:home.html' para mostrar el contenido de un fichero."; +App::$strings["Preserve site homepage URL"] = "Preservar la dirección de la página personal"; +App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenta la página personal del sitio en un marco en la ubicación original, en vez de redirigirla."; +App::$strings["Accounts abandoned after x days"] = "Cuentas abandonadas después de x días"; +App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Para evitar consumir recursos del sistema intentando poner al día las cuentas abandonadas. Introduzca 0 para no tener límite de tiempo."; +App::$strings["Allowed friend domains"] = "Dominios amigos permitidos"; +App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Lista separada por comas de dominios a los que está permitido establecer relaciones de amistad con este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio."; +App::$strings["Allowed email domains"] = "Se aceptan dominios de correo electrónico"; +App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Lista separada por comas de los dominios de los que se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio. "; +App::$strings["Not allowed email domains"] = "No se permiten dominios de correo electrónico"; +App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Lista separada por comas de los dominios de los que no se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para no aceptar cualquier dominio, excepto los que se hayan autorizado."; +App::$strings["Verify Email Addresses"] = "Verificar las direcciones de correo electrónico"; +App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Activar para la verificación de la dirección de correo electrónico en el registro de una cuenta (recomendado)."; +App::$strings["Force publish"] = "Forzar la publicación"; +App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Intentar forzar todos los perfiles para que sean listados en el directorio de este sitio."; +App::$strings["Import Public Streams"] = "Importar contenido público"; +App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Importar y permitir acceso al contenido público sacado de otros sitios. Advertencia: este contenido no está moderado, por lo que podría encontrar cosas inapropiadas u ofensivas."; +App::$strings["Login on Homepage"] = "Iniciar sesión en la página personal"; +App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presentar a los visitantes una casilla de identificación en la página de inicio, si no se ha configurado otro tipo de contenido."; +App::$strings["Enable context help"] = "Habilitar la ayuda contextual"; +App::$strings["Display contextual help for the current page when the help button is pressed."] = "Ver la ayuda contextual para la página actual cuando se pulse el botón de Ayuda."; +App::$strings["Directory Server URL"] = "URL del servidor de directorio"; +App::$strings["Default directory server"] = "Servidor de directorio predeterminado"; +App::$strings["Proxy user"] = "Usuario del proxy"; +App::$strings["Proxy URL"] = "Dirección del proxy"; +App::$strings["Network timeout"] = "Tiempo de espera de la red"; +App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valor en segundos. Poner a 0 para que no haya tiempo límite (no recomendado)"; +App::$strings["Delivery interval"] = "Intervalo de entrega"; +App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Retrasar los procesos de transmisión en segundo plano por esta cantidad de segundos para reducir la carga del sistema. Recomendado: 4-5 para sitios compartidos, 2-3 para servidores virtuales privados, 0-1 para grandes servidores dedicados."; +App::$strings["Deliveries per process"] = "Intentos de envío por proceso"; +App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Numero de envíos a intentar en un único proceso del sistema operativo. Ajustar si es necesario mejorar el rendimiento. Se recomienda: 1-5."; +App::$strings["Poll interval"] = "Intervalo máximo de tiempo entre dos mensajes sucesivos"; +App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Retrasar el intervalo de envío en segundo plano, en esta cantidad de segundos, para reducir la carga del sistema. Si es 0, usar el intervalo de entrega."; +App::$strings["Maximum Load Average"] = "Carga media máxima"; +App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carga máxima del sistema antes de que los procesos de entrega y envío se hayan retardado - por defecto, 50."; +App::$strings["Expiration period in days for imported (grid/network) content"] = "Caducidad del contenido importado de otros sitios (en días)"; +App::$strings["0 for no expiration of imported content"] = "0 para que no caduque el contenido importado"; +App::$strings["Off"] = "Desactivado"; +App::$strings["On"] = "Activado"; +App::$strings["Lock feature %s"] = "Bloquear la funcionalidad %s"; +App::$strings["Manage Additional Features"] = "Gestionar las funcionalidades"; +App::$strings["No server found"] = "Servidor no encontrado"; +App::$strings["ID"] = "ID"; +App::$strings["for channel"] = "por canal"; +App::$strings["on server"] = "en el servidor"; +App::$strings["Status"] = "Estado"; +App::$strings["Server"] = "Servidor"; +App::$strings["Security"] = "Seguridad"; +App::$strings["Block public"] = "Bloquear páginas públicas"; +App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Habilitar para impedir ver las páginas personales de este sitio a quien no esté actualmente autenticado."; +App::$strings["Allow communications only from these sites"] = "Permitir la comunicación solo desde estos sitios"; +App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Un sitio por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera"; +App::$strings["Block communications from these sites"] = "Bloquear la comunicación desde estos sitios"; +App::$strings["Allow communications only from these channels"] = "Permitir la comunicación solo desde estos canales"; +App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Un canal (hash) por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera"; +App::$strings["Block communications from these channels"] = "Bloquear la comunicación desde estos canales"; +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."; +App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "La actualización de %s no ha devuelto ningún estado. No se sabe si ha tenido éxito."; +App::$strings["Update function %s could not be found."] = "No se encuentra la función de actualización de %s."; +App::$strings["No failed updates."] = "No ha fallado ninguna actualización."; +App::$strings["Failed Updates"] = "Han fallado las actualizaciones"; +App::$strings["Mark success (if update was manually applied)"] = "Marcar como exitosa (si la actualización se ha hecho manualmente)"; +App::$strings["Attempt to execute this update step automatically"] = "Intentar ejecutar este paso de actualización automáticamente"; +App::$strings["Queue Statistics"] = "Estadísticas de la cola"; +App::$strings["Total Entries"] = "Total de entradas"; +App::$strings["Priority"] = "Prioridad"; +App::$strings["Destination URL"] = "Dirección de destino"; +App::$strings["Mark hub permanently offline"] = "Marcar el servidor como permanentemente fuera de línea"; +App::$strings["Empty queue for this hub"] = "Vaciar la cola para este servidor"; +App::$strings["Last known contact"] = "Último contacto conocido"; +App::$strings["%s account blocked/unblocked"] = array( + 0 => "%s cuenta bloqueada/desbloqueada", + 1 => "%s cuenta bloqueada/desbloqueada", ); -App::$strings["Add Star"] = "Destacar añadiendo una estrella"; -App::$strings["Remove Star"] = "Eliminar estrella"; -App::$strings["Toggle Star Status"] = "Activar o desactivar el estado de entrada preferida"; -App::$strings["starred"] = "preferidas"; -App::$strings["Message signature validated"] = "Firma de mensaje validada"; -App::$strings["Message signature incorrect"] = "Firma de mensaje incorrecta"; -App::$strings["Add Tag"] = "Añadir etiqueta"; -App::$strings["I like this (toggle)"] = "Me gusta (cambiar)"; -App::$strings["like"] = "me gusta"; -App::$strings["I don't like this (toggle)"] = "No me gusta esto (cambiar)"; -App::$strings["dislike"] = "no me gusta"; -App::$strings["Share This"] = "Compartir esto"; -App::$strings["share"] = "compartir"; -App::$strings["Delivery Report"] = "Informe de transmisión"; -App::$strings["%d comment"] = array( - 0 => "%d comentario", - 1 => "%d comentarios", +App::$strings["%s account deleted"] = array( + 0 => "%s cuentas eliminadas", + 1 => "%s cuentas eliminadas", ); -App::$strings["View %s's profile - %s"] = "Ver el perfil de %s - %s"; -App::$strings["to"] = "a"; -App::$strings["via"] = "mediante"; -App::$strings["Wall-to-Wall"] = "De página del perfil a página del perfil (de \"muro\" a \"muro\")"; -App::$strings["via Wall-To-Wall:"] = "Mediante el procedimiento página del perfil a página del perfil (de \"muro\" a \"muro\")"; -App::$strings["from %s"] = "desde %s"; -App::$strings["last edited: %s"] = "último cambio: %s"; -App::$strings["Expires: %s"] = "Caduca: %s"; -App::$strings["Save Bookmarks"] = "Guardar en Marcadores"; -App::$strings["Add to Calendar"] = "Añadir al calendario"; -App::$strings["Mark all seen"] = "Marcar todo como visto"; -App::$strings["__ctx:noun__ Likes"] = "Me gusta"; -App::$strings["__ctx:noun__ Dislikes"] = "No me gusta"; -App::$strings["Close"] = "Cerrar"; -App::$strings["Please wait"] = "Espere por favor"; -App::$strings["[+] show all"] = "[+] mostrar todo:"; -App::$strings["This is you"] = "Este es usted"; -App::$strings["Comment"] = "Comentar"; -App::$strings["Submit"] = "Enviar"; -App::$strings["Bold"] = "Negrita"; -App::$strings["Italic"] = "Itálico "; -App::$strings["Underline"] = "Subrayar"; -App::$strings["Quote"] = "Citar"; -App::$strings["Code"] = "Código"; -App::$strings["Image"] = "Imagen"; -App::$strings["Insert Link"] = "Insertar enlace"; -App::$strings["Video"] = "Vídeo"; -App::$strings["Preview"] = "Previsualizar"; -App::$strings["Encrypt text"] = "Cifrar texto"; -App::$strings["Not a valid email address"] = "Dirección de correo no válida"; -App::$strings["Your email domain is not among those allowed on this site"] = "Su dirección de correo no pertenece a ninguno de los dominios permitidos en este sitio."; -App::$strings["Your email address is already registered at this site."] = "Su dirección de correo está ya registrada en este sitio."; -App::$strings["An invitation is required."] = "Es obligatorio que le inviten."; -App::$strings["Invitation could not be verified."] = "No se ha podido verificar su invitación."; -App::$strings["Please enter the required information."] = "Por favor introduzca la información requerida."; -App::$strings["Failed to store account information."] = "La información de la cuenta no se ha podido guardar."; -App::$strings["Registration confirmation for %s"] = "Confirmación de registro para %s"; -App::$strings["Registration request at %s"] = "Solicitud de registro en %s"; -App::$strings["Administrator"] = "Administrador"; -App::$strings["your registration password"] = "su contraseña de registro"; -App::$strings["Registration details for %s"] = "Detalles del registro de %s"; -App::$strings["Account approved."] = "Cuenta aprobada."; -App::$strings["Registration revoked for %s"] = "Registro revocado para %s"; -App::$strings["Account verified. Please login."] = "Cuenta verificada. Por favor, inicie sesión."; -App::$strings["Click here to upgrade."] = "Pulse aquí para actualizar"; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Esta acción supera los límites establecidos por su plan de suscripción "; -App::$strings["This action is not available under your subscription plan."] = "Esta acción no está disponible en su plan de suscripción."; -App::$strings["Male"] = "Hombre"; -App::$strings["Female"] = "Mujer"; -App::$strings["Currently Male"] = "Actualmente hombre"; -App::$strings["Currently Female"] = "Actualmente mujer"; -App::$strings["Mostly Male"] = "Generalmente hombre"; -App::$strings["Mostly Female"] = "Generalmente mujer"; -App::$strings["Transgender"] = "Transgénero"; -App::$strings["Intersex"] = "Intersexual"; -App::$strings["Transsexual"] = "Transexual"; -App::$strings["Hermaphrodite"] = "Hermafrodita"; -App::$strings["Neuter"] = "Neutral"; -App::$strings["Non-specific"] = "No especificado"; -App::$strings["Other"] = "Otro"; -App::$strings["Undecided"] = "Indeciso/a"; -App::$strings["Males"] = "Hombres"; -App::$strings["Females"] = "Mujeres"; -App::$strings["Gay"] = "Homosexual"; -App::$strings["Lesbian"] = "Lesbiana"; -App::$strings["No Preference"] = "Sin preferencias"; -App::$strings["Bisexual"] = "Bisexual"; -App::$strings["Autosexual"] = "Autosexual"; -App::$strings["Abstinent"] = "Casto/a"; -App::$strings["Virgin"] = "Virgen"; -App::$strings["Deviant"] = "Fuera de lo común"; -App::$strings["Fetish"] = "Fetichista"; -App::$strings["Oodles"] = "Orgías"; -App::$strings["Nonsexual"] = "Asexual"; -App::$strings["Single"] = "Soltero/a"; -App::$strings["Lonely"] = "Solo/a"; -App::$strings["Available"] = "Disponible"; -App::$strings["Unavailable"] = "No disponible"; -App::$strings["Has crush"] = "Enamorado/a"; -App::$strings["Infatuated"] = "Apasionado/a"; -App::$strings["Dating"] = "Saliendo con alguien"; -App::$strings["Unfaithful"] = "Infiel"; -App::$strings["Sex Addict"] = "Con adicción al sexo"; -App::$strings["Friends/Benefits"] = "Amigos con algo extra"; -App::$strings["Casual"] = "Casual"; -App::$strings["Engaged"] = "Prometido/a"; -App::$strings["Married"] = "Casado/a"; -App::$strings["Imaginarily married"] = "Casado/a en sueños"; -App::$strings["Partners"] = "Pareja"; -App::$strings["Cohabiting"] = "Cohabitando"; -App::$strings["Common law"] = "Matrimonio tradicional"; -App::$strings["Happy"] = "Felíz"; -App::$strings["Not looking"] = "No estoy buscando"; -App::$strings["Swinger"] = "Libertino"; -App::$strings["Betrayed"] = "Engañado/a"; -App::$strings["Separated"] = "Separado/a"; -App::$strings["Unstable"] = "Inestable"; -App::$strings["Divorced"] = "Divorciado/a"; -App::$strings["Imaginarily divorced"] = "Divorciado/a en sueños"; -App::$strings["Widowed"] = "Viudo/a"; -App::$strings["Uncertain"] = "Indeterminado"; -App::$strings["It's complicated"] = "Es complicado"; -App::$strings["Don't care"] = "No me importa"; -App::$strings["Ask me"] = "Pregúnteme"; -App::$strings["Visible to your default audience"] = "Visible para su público predeterminado."; -App::$strings["Show"] = "Mostrar"; -App::$strings["Don't show"] = "No mostrar"; -App::$strings["Other networks and post services"] = "Otras redes y servicios de publicación"; -App::$strings["Permissions"] = "Permisos"; -App::$strings[" and "] = " y "; -App::$strings["public profile"] = "el perfil público"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiado %2\$s a “%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "Visitar %2\$s de %1\$s"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha actualizado %2\$s, cambiando %3\$s."; -App::$strings["Site Admin"] = "Administrador del sitio"; -App::$strings["Bookmarks"] = "Marcadores"; -App::$strings["Address Book"] = "Libreta de direcciones"; -App::$strings["Login"] = "Iniciar sesión"; -App::$strings["Channel Manager"] = "Administración de canales"; -App::$strings["Grid"] = "Red"; -App::$strings["Settings"] = "Ajustes"; -App::$strings["Webpages"] = "Páginas web"; -App::$strings["Channel Home"] = "Mi canal"; -App::$strings["Photos"] = "Fotos"; -App::$strings["Events"] = "Eventos"; -App::$strings["Directory"] = "Directorio"; -App::$strings["Help"] = "Ayuda"; -App::$strings["Mail"] = "Correo"; -App::$strings["Mood"] = "Estado de ánimo"; -App::$strings["Poke"] = "Toques y otras cosas"; -App::$strings["Chat"] = "Chat"; -App::$strings["Search"] = "Buscar"; -App::$strings["Probe"] = "Probar"; -App::$strings["Suggest"] = "Sugerir"; -App::$strings["Random Channel"] = "Canal aleatorio"; -App::$strings["Invite"] = "Invitar"; -App::$strings["Features"] = "Funcionalidades"; -App::$strings["Language"] = "Idioma"; -App::$strings["Post"] = "Publicación"; -App::$strings["Profile Photo"] = "Foto del perfil"; -App::$strings["Update"] = "Actualizar"; -App::$strings["Install"] = "Instalar"; -App::$strings["Purchase"] = "Comprar"; -App::$strings["Permission denied"] = "Permiso denegado"; -App::$strings["(Unknown)"] = "(Desconocido)"; -App::$strings["Visible to anybody on the internet."] = "Visible para cualquiera en internet."; -App::$strings["Visible to you only."] = "Visible sólo para usted."; -App::$strings["Visible to anybody in this network."] = "Visible para cualquiera en esta red."; -App::$strings["Visible to anybody authenticated."] = "Visible para cualquiera que haya sido autenticado."; -App::$strings["Visible to anybody on %s."] = "Visible para cualquiera en %s."; -App::$strings["Visible to all connections."] = "Visible para todas las conexiones."; -App::$strings["Visible to approved connections."] = "Visible para las conexiones permitidas."; -App::$strings["Visible to specific connections."] = "Visible para conexiones específicas."; -App::$strings["Item not found."] = "Elemento no encontrado."; -App::$strings["Privacy group not found."] = "Grupo de canales no encontrado."; -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: %s"] = "Conexión: %s"; -App::$strings["Connection not found."] = "Conexión no encontrada"; -App::$strings["female"] = "mujer"; -App::$strings["%1\$s updated her %2\$s"] = "%1\$s ha actualizado su %2\$s"; -App::$strings["male"] = "hombre"; -App::$strings["%1\$s updated his %2\$s"] = "%1\$s ha actualizado su %2\$s"; -App::$strings["%1\$s updated their %2\$s"] = "%1\$s ha actualizado su %2\$s"; -App::$strings["profile photo"] = "foto del perfil"; -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["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["Unable to process image"] = "No ha sido posible procesar la imagen"; -App::$strings["Photo storage failed."] = "La foto no ha podido ser guardada."; -App::$strings["a new photo"] = "una nueva foto"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s ha publicado %2\$s en %3\$s"; -App::$strings["Photo Albums"] = "Álbumes de fotos"; -App::$strings["Upload New Photos"] = "Subir nuevas fotos"; -App::$strings["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["webpage"] = "página web"; -App::$strings["layout"] = "plantilla"; -App::$strings["block"] = "bloque"; -App::$strings["menu"] = "menú"; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s escribió %2\$s siguiente %3\$s"; -App::$strings["post"] = "la entrada"; -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["photo"] = "foto"; -App::$strings["event"] = "evento"; -App::$strings["channel"] = "el canal"; -App::$strings["status"] = "el mensaje de estado"; -App::$strings["comment"] = "el comentario"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s le gusta %3\$s de %2\$s"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s no le gusta %3\$s de %2\$s"; -App::$strings["%1\$s 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["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s está %2\$s"; -App::$strings["__ctx:title__ Likes"] = "Me gusta"; -App::$strings["__ctx:title__ Dislikes"] = "No me gusta"; -App::$strings["__ctx:title__ Agree"] = "De acuerdo"; -App::$strings["__ctx:title__ Disagree"] = "En desacuerdo"; -App::$strings["__ctx:title__ Abstain"] = "Abstención"; -App::$strings["__ctx:title__ Attending"] = "Participaré"; -App::$strings["__ctx:title__ Not attending"] = "No participaré"; -App::$strings["__ctx:title__ Might attend"] = "Quizá participe"; -App::$strings["View %s's profile @ %s"] = "Ver el perfil @ %s de %s"; -App::$strings["Categories:"] = "Categorías:"; -App::$strings["Filed under:"] = "Archivado bajo:"; -App::$strings["View in context"] = "Mostrar en su contexto"; -App::$strings["remove"] = "eliminar"; -App::$strings["Loading..."] = "Cargando..."; -App::$strings["Delete Selected Items"] = "Eliminar elementos seleccionados"; -App::$strings["View Source"] = "Ver la fuente original de la publicación"; -App::$strings["Follow Thread"] = "Seguir este hilo"; -App::$strings["Unfollow Thread"] = "Dejar de seguir este hilo"; -App::$strings["View Profile"] = "Ver el perfil"; -App::$strings["Activity/Posts"] = "Actividad y publicaciones"; -App::$strings["Edit Connection"] = "Editar conexión"; -App::$strings["Message"] = "Mensaje"; -App::$strings["Ratings"] = "Valoraciones"; -App::$strings["%s likes this."] = "A %s le gusta esto."; -App::$strings["%s doesn't like this."] = "A %s no le gusta esto."; -App::$strings["%2\$d people like this."] = array( - 0 => "a %2\$d personas le gusta esto.", - 1 => "A %2\$d personas les gusta esto.", +App::$strings["Account not found"] = "Cuenta no encontrada"; +App::$strings["Account '%s' deleted"] = "La cuenta '%s' ha sido eliminada"; +App::$strings["Account '%s' blocked"] = "La cuenta '%s' ha sido bloqueada"; +App::$strings["Account '%s' unblocked"] = "La cuenta '%s' ha sido desbloqueada"; +App::$strings["Users"] = "Usuarios"; +App::$strings["select all"] = "seleccionar todo"; +App::$strings["User registrations waiting for confirm"] = "Registros de usuario en espera de aprobación"; +App::$strings["Request date"] = "Fecha de solicitud"; +App::$strings["Email"] = "Correo electrónico"; +App::$strings["No registrations."] = "Sin registros."; +App::$strings["Approve"] = "Aprobar"; +App::$strings["Deny"] = "Rechazar"; +App::$strings["Block"] = "Bloquear"; +App::$strings["Unblock"] = "Desbloquear"; +App::$strings["All Channels"] = "Todos los canales"; +App::$strings["Register date"] = "Fecha de registro"; +App::$strings["Last login"] = "Último acceso"; +App::$strings["Expires"] = "Caduca"; +App::$strings["Service Class"] = "Clase de servicio"; +App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡Las cuentas seleccionadas van a ser eliminadas!\\n\\n¡Todo lo que estas cuentas han publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?"; +App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡La cuenta {0} va a ser eliminada!\\n\\n¡Todo lo que esta cuenta ha publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?"; +App::$strings["%s channel censored/uncensored"] = array( + 0 => "%s canales censurados/no censurados", + 1 => "%s canales censurados/no censurados", ); -App::$strings["%2\$d people don't like this."] = array( - 0 => "a %2\$d personas no les gusta esto.", - 1 => "A %2\$d personas no les gusta esto.", +App::$strings["%s channel code allowed/disallowed"] = array( + 0 => "%s código permitido/no permitido al canal", + 1 => "%s código permitido/no permitido al canal", ); -App::$strings["and"] = "y"; -App::$strings[", and %d other people"] = array( - 0 => ", y %d persona más", - 1 => ", y %d personas más", +App::$strings["%s channel deleted"] = array( + 0 => "%s canales eliminados", + 1 => "%s canales eliminados", ); -App::$strings["%s like this."] = "A %s le gusta esto."; -App::$strings["%s don't like this."] = "A %s no le gusta esto."; -App::$strings["Visible to everybody"] = "Visible para cualquiera"; -App::$strings["Please enter a link URL:"] = "Por favor, introduzca la dirección del enlace:"; -App::$strings["Please enter a video link/URL:"] = "Por favor, introduzca un enlace de vídeo:"; -App::$strings["Please enter an audio link/URL:"] = "Por favor, introduzca un enlace de audio:"; -App::$strings["Tag term:"] = "Término de la etiqueta:"; -App::$strings["Save to Folder:"] = "Guardar en carpeta:"; -App::$strings["Where are you right now?"] = "¿Donde está ahora?"; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Caduca YYYY-MM-DD HH:MM"; +App::$strings["Channel not found"] = "Canal no encontrado"; +App::$strings["Channel '%s' deleted"] = "Canal '%s' eliminado"; +App::$strings["Channel '%s' censored"] = "Canal '%s' censurado"; +App::$strings["Channel '%s' uncensored"] = "Canal '%s' no censurado"; +App::$strings["Channel '%s' code allowed"] = "Código permitido al canal '%s'"; +App::$strings["Channel '%s' code disallowed"] = "Código no permitido al canal '%s'"; +App::$strings["Channels"] = "Canales"; +App::$strings["Censor"] = "Censurar"; +App::$strings["Uncensor"] = "No censurar"; +App::$strings["Allow Code"] = "Permitir código"; +App::$strings["Disallow Code"] = "No permitir código"; +App::$strings["Channel"] = "Canal"; +App::$strings["UID"] = "UID"; +App::$strings["Address"] = "Dirección"; +App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Los canales seleccionados se eliminarán!\\n\\nTodo lo publicado por estos canales en este sitio se borrarán definitivamente!\\n\\n¿Está seguro de querer hacerlo?"; +App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "El canal {0} va a ser eliminado!\\n\\nTodo lo publicado por el canal en este sitio se borrará definitivamente!\\n\\n¿Está seguro de querer hacerlo?"; +App::$strings["Plugin %s disabled."] = "Extensión %s desactivada."; +App::$strings["Plugin %s enabled."] = "Extensión %s activada."; +App::$strings["Disable"] = "Desactivar"; +App::$strings["Enable"] = "Activar"; +App::$strings["Plugins"] = "Extensiones"; +App::$strings["Toggle"] = "Cambiar"; +App::$strings["Settings"] = "Ajustes"; +App::$strings["Author: "] = "Autor:"; +App::$strings["Maintainer: "] = "Mantenedor:"; +App::$strings["Minimum project version: "] = "Versión mínima del proyecto:"; +App::$strings["Maximum project version: "] = "Versión máxima del proyecto:"; +App::$strings["Minimum PHP version: "] = "Versión mínima de PHP:"; +App::$strings["Requires: "] = "Se requiere:"; +App::$strings["Disabled - version incompatibility"] = "Deshabilitado - versiones incompatibles"; +App::$strings["No themes found."] = "No se han encontrado temas."; +App::$strings["Screenshot"] = "Instantánea de pantalla"; +App::$strings["Themes"] = "Temas"; +App::$strings["[Experimental]"] = "[Experimental]"; +App::$strings["[Unsupported]"] = "[No soportado]"; +App::$strings["Log settings updated."] = "Actualizado el informe de configuraciones."; +App::$strings["Logs"] = "Informes"; +App::$strings["Clear"] = "Vaciar"; +App::$strings["Debugging"] = "Depuración"; +App::$strings["Log file"] = "Fichero de informe"; +App::$strings["Must be writable by web server. Relative to your Red top-level directory."] = "Debe tener permisos de escritura por el servidor web. La ruta es relativa al directorio de instalación de Hubzilla."; +App::$strings["Log level"] = "Nivel de depuración"; +App::$strings["New Profile Field"] = "Nuevo campo en el perfil"; +App::$strings["Field nickname"] = "Alias del campo"; +App::$strings["System name of field"] = "Nombre del campo en el sistema"; +App::$strings["Input type"] = "Tipo de entrada"; +App::$strings["Field Name"] = "Nombre del campo"; +App::$strings["Label on profile pages"] = "Etiqueta a mostrar en la página del perfil"; +App::$strings["Help text"] = "Texto de ayuda"; +App::$strings["Additional info (optional)"] = "Información adicional (opcional)"; +App::$strings["Save"] = "Guardar"; +App::$strings["Field definition not found"] = "Definición del campo no encontrada"; +App::$strings["Edit Profile Field"] = "Modificar el campo del perfil"; +App::$strings["Profile Fields"] = "Campos del perfil"; +App::$strings["Basic Profile Fields"] = "Campos básicos del perfil"; +App::$strings["Advanced Profile Fields"] = "Campos avanzados del perfil"; +App::$strings["(In addition to basic fields)"] = "(Además de los campos básicos)"; +App::$strings["All available fields"] = "Todos los campos disponibles"; +App::$strings["Custom Fields"] = "Campos personalizados"; +App::$strings["Create Custom Field"] = "Crear un campo personalizado"; +App::$strings["Authorize application connection"] = "Autorizar una conexión de aplicación"; +App::$strings["Return to your app and insert this Securty Code:"] = "Volver a su aplicación e introducir este código de seguridad:"; +App::$strings["Please login to continue."] = "Por favor inicie sesión para continuar."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?"; +App::$strings["App installed."] = "Aplicación instalada."; +App::$strings["Malformed app."] = "Aplicación con errores"; +App::$strings["Embed code"] = "Código incorporado"; +App::$strings["Edit App"] = "Modificar la aplicación"; +App::$strings["Create App"] = "Crear una aplicación"; +App::$strings["Name of app"] = "Nombre de la aplicación"; +App::$strings["Required"] = "Obligatorio"; +App::$strings["Location (URL) of app"] = "Dirección (URL) de la aplicación"; +App::$strings["Description"] = "Descripción"; +App::$strings["Photo icon URL"] = "Dirección del icono"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - opcional"; +App::$strings["Version ID"] = "Versión"; +App::$strings["Price of app"] = "Precio de la aplicación"; +App::$strings["Location (URL) to purchase app"] = "Dirección (URL) donde adquirir la aplicación"; +App::$strings["Apps"] = "Aplicaciones"; +App::$strings["Item not available."] = "Elemento no disponible"; +App::$strings["Invalid item."] = "Elemento no válido."; +App::$strings["Channel not found."] = "Canal no encontrado."; +App::$strings["Block Name"] = "Nombre del bloque"; +App::$strings["Blocks"] = "Bloques"; +App::$strings["Block Title"] = "Título del bloque"; +App::$strings["Created"] = "Creado"; +App::$strings["Edited"] = "Editado"; App::$strings["Share"] = "Compartir"; -App::$strings["Page link name"] = "Nombre del enlace de la página"; -App::$strings["Post as"] = "Publicar como"; -App::$strings["Upload photo"] = "Subir foto"; -App::$strings["upload photo"] = "subir foto"; -App::$strings["Attach file"] = "Adjuntar fichero"; -App::$strings["attach file"] = "adjuntar fichero"; +App::$strings["View"] = "Ver"; +App::$strings["Bookmark added"] = "Marcador añadido"; +App::$strings["My Bookmarks"] = "Mis marcadores"; +App::$strings["My Connections Bookmarks"] = "Marcadores de mis conexiones"; +App::$strings["everybody"] = "cualquiera"; +App::$strings["Permissions denied."] = "Permisos denegados."; +App::$strings["l, F j"] = "l j F"; +App::$strings["Link to Source"] = "Enlazar con la entrada en su ubicación original"; +App::$strings["Edit Event"] = "Editar el evento"; +App::$strings["Create Event"] = "Crear un evento"; +App::$strings["Previous"] = "Anterior"; +App::$strings["Next"] = "Siguiente"; +App::$strings["Export"] = "Exportar"; +App::$strings["Import"] = "Importar"; +App::$strings["Today"] = "Hoy"; +App::$strings["You must be logged in to see this page."] = "Debe haber iniciado sesión para poder ver esta página."; +App::$strings["Posts and comments"] = "Publicaciones y comentarios"; +App::$strings["Only posts"] = "Solo publicaciones"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permisos insuficientes. Petición redirigida a la página del perfil."; +App::$strings["Public"] = "Público"; +App::$strings["Room not found"] = "Sala no encontrada"; +App::$strings["Leave Room"] = "Abandonar la sala"; +App::$strings["Delete Room"] = "Eliminar esta sala"; +App::$strings["I am away right now"] = "Estoy ausente momentáneamente"; +App::$strings["I am online"] = "Estoy conectado/a"; +App::$strings["Bookmark this room"] = "Añadir esta sala a Marcadores"; +App::$strings["Please enter a link URL:"] = "Por favor, introduzca la dirección del enlace:"; +App::$strings["Encrypt text"] = "Cifrar texto"; App::$strings["Insert web link"] = "Insertar enlace web"; -App::$strings["web link"] = "enlace web"; -App::$strings["Insert video link"] = "Insertar enlace de vídeo"; -App::$strings["video link"] = "enlace de vídeo"; -App::$strings["Insert audio link"] = "Insertar enlace de audio"; -App::$strings["audio link"] = "enlace de audio"; -App::$strings["Set your location"] = "Establecer su ubicación"; -App::$strings["set location"] = "establecer ubicación"; -App::$strings["Toggle voting"] = "Cambiar votación"; -App::$strings["Clear browser location"] = "Eliminar los datos de localización geográfica del navegador"; -App::$strings["clear location"] = "borrar los datos de ubicación"; -App::$strings["Title (optional)"] = "Título (opcional)"; -App::$strings["Categories (optional, comma-separated list)"] = "Categorías (opcional, lista separada por comas)"; -App::$strings["Permission settings"] = "Configuración de permisos"; -App::$strings["permissions"] = "permisos"; -App::$strings["Public post"] = "Entrada pública"; -App::$strings["Example: bob@example.com, mary@example.com"] = "Ejemplo: roberto@ejemplo.com, maría@ejemplo.com"; -App::$strings["Set expiration date"] = "Configurar fecha de caducidad"; -App::$strings["Set publish date"] = "Establecer la fecha de publicación"; -App::$strings["OK"] = "OK"; -App::$strings["Cancel"] = "Cancelar"; -App::$strings["Discover"] = "Descubrir"; -App::$strings["Imported public streams"] = "Contenidos públicos importados"; -App::$strings["Commented Order"] = "Comentarios recientes"; -App::$strings["Sort by Comment Date"] = "Ordenar por fecha de comentario"; -App::$strings["Posted Order"] = "Publicaciones recientes"; -App::$strings["Sort by Post Date"] = "Ordenar por fecha de publicación"; -App::$strings["Personal"] = "Personales"; -App::$strings["Posts that mention or involve you"] = "Publicaciones que le mencionan o involucran"; +App::$strings["Feature disabled."] = "Funcionalidad deshabilitada."; +App::$strings["New Chatroom"] = "Nueva sala de chat"; +App::$strings["Chatroom name"] = "Nombre de la sala de chat"; +App::$strings["Expiration of chats (minutes)"] = "Caducidad de los mensajes en los chats (en minutos)"; +App::$strings["Permissions"] = "Permisos"; +App::$strings["%1\$s's Chatrooms"] = "Salas de chat de %1\$s"; +App::$strings["No chatrooms available"] = "No hay salas de chat disponibles"; +App::$strings["Create New"] = "Crear"; +App::$strings["Expiration"] = "Caducidad"; +App::$strings["min"] = "min"; +App::$strings["Away"] = "Ausente"; +App::$strings["Online"] = "Conectado/a"; +App::$strings["No channel."] = "Ningún canal."; +App::$strings["Common connections"] = "Conexiones comunes"; +App::$strings["No connections in common."] = "Ninguna conexión en común."; +App::$strings["Continue"] = "Continuar"; +App::$strings["Premium Channel Setup"] = "Configuración del canal premium"; +App::$strings["Enable premium channel connection restrictions"] = "Habilitar restricciones de conexión del canal premium"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)"; +App::$strings["Restricted or Premium Channel"] = "Canal premium o restringido"; +App::$strings["Blocked"] = "Bloqueadas"; +App::$strings["Ignored"] = "Ignoradas"; +App::$strings["Hidden"] = "Ocultas"; +App::$strings["Archived"] = "Archivadas"; App::$strings["New"] = "Nuevas"; -App::$strings["Activity Stream - by date"] = "Contenido - por fecha"; -App::$strings["Starred"] = "Preferidas"; -App::$strings["Favourite Posts"] = "Publicaciones favoritas"; -App::$strings["Spam"] = "Correo basura"; -App::$strings["Posts flagged as SPAM"] = "Publicaciones marcadas como basura"; -App::$strings["Channel"] = "Canal"; -App::$strings["Status Messages and Posts"] = "Mensajes de estado y publicaciones"; -App::$strings["About"] = "Mi perfil"; -App::$strings["Profile Details"] = "Detalles del perfil"; -App::$strings["Files and Storage"] = "Ficheros y repositorio"; -App::$strings["Chatrooms"] = "Salas de chat"; -App::$strings["Saved Bookmarks"] = "Marcadores guardados"; -App::$strings["Manage Webpages"] = "Administrar páginas web"; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "Participaré", - 1 => "Participaré", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "No participaré", - 1 => "No participaré", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "Indeciso/a", - 1 => "Indecisos/as", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "De acuerdo", - 1 => "De acuerdo", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "En desacuerdo", - 1 => "En desacuerdo", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "se abstiene", - 1 => "Se abstienen", -); -App::$strings["%1\$s's bookmarks"] = "Marcadores de %1\$s"; -App::$strings["Missing room name"] = "Sala de chat sin nombre"; -App::$strings["Duplicate room name"] = "Nombre de sala duplicado."; -App::$strings["Invalid room specifier."] = "Especificador de sala no válido."; -App::$strings["Room not found."] = "Sala no encontrada."; -App::$strings["Room is full"] = "La sala está llena."; -App::$strings["New window"] = "Nueva ventana"; -App::$strings["Open the selected location in a different window or browser tab"] = "Abrir la dirección seleccionada en una ventana o pestaña aparte"; -App::$strings["User '%s' deleted"] = "El usuario '%s' ha sido eliminado"; -App::$strings["Logged out."] = "Desconectado/a."; -App::$strings["Failed authentication"] = "Autenticación fallida."; -App::$strings["Login failed."] = "El acceso ha fallado."; -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["Default"] = "Predeterminado"; -App::$strings["Frequently"] = "Frecuentemente"; -App::$strings["Hourly"] = "Cada hora"; -App::$strings["Twice daily"] = "Dos veces al día"; -App::$strings["Daily"] = "Diariamente"; -App::$strings["Weekly"] = "Semanalmente"; -App::$strings["Monthly"] = "Mensualmente"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = "GNU Social"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Email"] = "Correo electrónico"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["%d invitation available"] = array( - 0 => "%d invitación pendiente", - 1 => "%d invitaciones disponibles", -); -App::$strings["Advanced"] = "Avanzado"; -App::$strings["Find Channels"] = "Encontrar canales"; -App::$strings["Enter name or interest"] = "Introducir nombre o interés"; -App::$strings["Connect/Follow"] = "Conectar/Seguir"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Ejemplos: José Fernández, Pesca"; +App::$strings["All"] = "Todos/as"; +App::$strings["New Connections"] = "Nuevas conexiones"; +App::$strings["Show pending (new) connections"] = "Mostrar conexiones (nuevas) pendientes"; +App::$strings["All Connections"] = "Todas las conexiones"; +App::$strings["Show all connections"] = "Mostrar todas las conexiones"; +App::$strings["Only show blocked connections"] = "Mostrar solo las conexiones bloqueadas"; +App::$strings["Only show ignored connections"] = "Mostrar solo conexiones ignoradas"; +App::$strings["Only show archived connections"] = "Mostrar solo las conexiones archivadas"; +App::$strings["Only show hidden connections"] = "Mostrar solo las conexiones ocultas"; +App::$strings["Pending approval"] = "Pendiente de aprobación"; +App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +App::$strings["Edit connection"] = "Editar conexión"; +App::$strings["Delete connection"] = "Eliminar conexión"; +App::$strings["Channel address"] = "Dirección del canal"; +App::$strings["Network"] = "Red"; +App::$strings["Connected"] = "Conectado/a"; +App::$strings["Approve connection"] = "Aprobar esta conexión"; +App::$strings["Ignore connection"] = "Ignorar esta conexión"; +App::$strings["Ignore"] = "Ignorar"; +App::$strings["Recent activity"] = "Actividad reciente"; +App::$strings["Connections"] = "Conexiones"; +App::$strings["Search"] = "Buscar"; +App::$strings["Search your connections"] = "Buscar sus conexiones"; +App::$strings["Connections search"] = "Buscar conexiones"; App::$strings["Find"] = "Encontrar"; -App::$strings["Channel Suggestions"] = "Sugerencias de canales"; -App::$strings["Random Profile"] = "Perfil aleatorio"; -App::$strings["Invite Friends"] = "Invitar a amigos"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Ejemplo avanzado: nombre=juan y país=españa"; -App::$strings["Saved Folders"] = "Carpetas guardadas"; -App::$strings["Everything"] = "Todo"; -App::$strings["Categories"] = "Categorías"; -App::$strings["%d connection in common"] = array( - 0 => "%d conexión en común", - 1 => "%d conexiones en común", -); -App::$strings["show more"] = "mostrar más"; -App::$strings["Item was not found."] = "Elemento no encontrado."; -App::$strings["No source file."] = "Ningún fichero de origen"; -App::$strings["Cannot locate file to replace"] = "No se puede localizar el fichero que va a ser sustituido."; -App::$strings["Cannot locate file to revise/update"] = "No se puede localizar el fichero para revisar/actualizar"; -App::$strings["File exceeds size limit of %d"] = "El fichero supera el limite de tamaño de %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado."; -App::$strings["Stored file could not be verified. Upload failed."] = "El fichero almacenado no ha podido ser verificado. El envío ha fallado."; -App::$strings["Path not available."] = "Ruta no disponible."; -App::$strings["Empty pathname"] = "Ruta vacía"; -App::$strings["duplicate filename or path"] = "Nombre duplicado de ruta o fichero"; -App::$strings["Path not found."] = "Ruta no encontrada"; -App::$strings["mkdir failed."] = "mkdir ha fallado."; -App::$strings["database storage failed."] = "el almacenamiento en la base de datos ha fallado."; -App::$strings["Empty path"] = "Ruta vacía"; -App::$strings["Miscellaneous"] = "Varios"; -App::$strings["Birthday"] = "Cumpleaños"; -App::$strings["Age: "] = "Edad:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-DD o MM-DD"; -App::$strings["Required"] = "Obligatorio"; -App::$strings["never"] = "nunca"; -App::$strings["less than a second ago"] = "hace un instante"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "hace %1\$d %2\$s"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "año", - 1 => "años", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "mes", - 1 => "meses", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "semana", - 1 => "semanas", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "día", - 1 => "días", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "hora", - 1 => "horas", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "minuto", - 1 => "minutos", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "segundo", - 1 => "segundos", +App::$strings["Could not access contact record."] = "No se ha podido acceder al registro de contacto."; +App::$strings["Could not locate selected profile."] = "No se ha podido localizar el perfil seleccionado."; +App::$strings["Connection updated."] = "Conexión actualizada."; +App::$strings["Failed to update connection record."] = "Error al actualizar el registro de la conexión."; +App::$strings["is now connected to"] = "ahora está conectado/a"; +App::$strings["Could not access address book record."] = "No se pudo acceder al registro en su libreta de direcciones."; +App::$strings["Refresh failed - channel is currently unavailable."] = "Recarga fallida - no se puede encontrar el canal en este momento."; +App::$strings["Unable to set address book parameters."] = "No ha sido posible establecer los parámetros de la libreta de direcciones."; +App::$strings["Connection has been removed."] = "La conexión ha sido eliminada."; +App::$strings["View Profile"] = "Ver el perfil"; +App::$strings["View %s's profile"] = "Ver el perfil de %s"; +App::$strings["Refresh Permissions"] = "Recargar los permisos"; +App::$strings["Fetch updated permissions"] = "Obtener los permisos actualizados"; +App::$strings["Recent Activity"] = "Actividad reciente"; +App::$strings["View recent posts and comments"] = "Ver publicaciones y comentarios recientes"; +App::$strings["Block (or Unblock) all communications with this connection"] = "Bloquear (o desbloquear) todas las comunicaciones con esta conexión"; +App::$strings["This connection is blocked!"] = "¡Esta conexión está bloqueada!"; +App::$strings["Unignore"] = "Dejar de ignorar"; +App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión"; +App::$strings["This connection is ignored!"] = "¡Esta conexión es ignorada!"; +App::$strings["Unarchive"] = "Desarchivar"; +App::$strings["Archive"] = "Archivar"; +App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos"; +App::$strings["This connection is archived!"] = "¡Esta conexión esta archivada!"; +App::$strings["Unhide"] = "Mostrar"; +App::$strings["Hide"] = "Ocultar"; +App::$strings["Hide or Unhide this connection from your other connections"] = "Ocultar o mostrar esta conexión a sus otras conexiones"; +App::$strings["This connection is hidden!"] = "¡Esta conexión está oculta!"; +App::$strings["Delete this connection"] = "Eliminar esta conexión"; +App::$strings["Me"] = "Yo"; +App::$strings["Family"] = "Familia"; +App::$strings["Friends"] = "Amigos/as"; +App::$strings["Acquaintances"] = "Conocidos/as"; +App::$strings["Approve this connection"] = "Aprobar esta conexión"; +App::$strings["Accept connection to allow communication"] = "Aceptar la conexión para permitir la comunicación"; +App::$strings["Set Affinity"] = "Ajustar la afinidad"; +App::$strings["Set Profile"] = "Ajustar el perfil"; +App::$strings["Set Affinity & Profile"] = "Ajustar la afinidad y el perfil"; +App::$strings["none"] = "-"; +App::$strings["Connection Default Permissions"] = "Permisos predeterminados de conexión"; +App::$strings["Connection: %s"] = "Conexión: %s"; +App::$strings["Apply these permissions automatically"] = "Aplicar estos permisos automaticamente"; +App::$strings["Connection requests will be approved without your interaction"] = "Las solicitudes de conexión serán aprobadas sin su intervención"; +App::$strings["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["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"; +App::$strings["Optionally explain your rating"] = "Opcionalmente, puede explicar su valoración"; +App::$strings["Custom Filter"] = "Filtro personalizado"; +App::$strings["Only import posts with this text"] = "Importar solo entradas que contengan este texto"; +App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "Una sola opción por línea: palabras, #etiquetas, /patrones/ o lang=xx. Dejar en blanco para importarlo todo"; +App::$strings["Do not import posts with this text"] = "No importar entradas que contengan este texto"; +App::$strings["This information is public!"] = "¡Esta información es pública!"; +App::$strings["Connection Pending Approval"] = "Conexión pendiente de aprobación"; +App::$strings["inherited"] = "heredado"; +App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura."; +App::$strings["Their Settings"] = "Sus ajustes"; +App::$strings["My Settings"] = "Mis ajustes"; +App::$strings["Individual Permissions"] = "Permisos individuales"; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. No puede cambiar estos ajustes aquí."; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados."; +App::$strings["Last update:"] = "Última actualización:"; +App::$strings["Image uploaded but image cropping failed."] = "Imagen actualizada, pero el recorte de la imagen ha fallado. "; +App::$strings["Cover Photos"] = "Imágenes de portada del perfil"; +App::$strings["Image resize failed."] = "El ajuste del tamaño de la imagen ha fallado."; +App::$strings["Unable to process image"] = "No ha sido posible procesar la imagen"; +App::$strings["Image upload failed."] = "La carga de la imagen ha fallado."; +App::$strings["Unable to process image."] = "No ha sido posible procesar la imagen."; +App::$strings["female"] = "mujer"; +App::$strings["%1\$s updated her %2\$s"] = "%1\$s ha actualizado su %2\$s"; +App::$strings["male"] = "hombre"; +App::$strings["%1\$s updated his %2\$s"] = "%1\$s ha actualizado su %2\$s"; +App::$strings["%1\$s updated their %2\$s"] = "%1\$s ha actualizado su %2\$s"; +App::$strings["cover photo"] = "Imagen de portada del perfil"; +App::$strings["Photo not available."] = "Foto no disponible."; +App::$strings["Upload File:"] = "Subir fichero:"; +App::$strings["Select a profile:"] = "Seleccionar un perfil:"; +App::$strings["Upload Cover Photo"] = "Subir imagen de portada del perfil"; +App::$strings["or"] = "o"; +App::$strings["skip this step"] = "Omitir este paso"; +App::$strings["select a photo from your photo albums"] = "Seleccione una foto de sus álbumes de fotos"; +App::$strings["Crop Image"] = "Recortar imagen"; +App::$strings["Please adjust the image cropping for optimum viewing."] = "Por favor ajuste el recorte de la imagen para una visión óptima."; +App::$strings["Done Editing"] = "Edición completada"; +App::$strings["\$Projectname channel"] = "Canal \$Projectname"; +App::$strings["Public access denied."] = "Acceso público denegado."; +App::$strings["%d rating"] = array( + 0 => "%d valoración", + 1 => "%d valoraciones", ); -App::$strings["%1\$s's birthday"] = "Cumpleaños de %1\$s"; -App::$strings["Happy Birthday %1\$s"] = "Feliz cumpleaños %1\$s"; -App::$strings["Directory Options"] = "Opciones del directorio"; -App::$strings["Safe Mode"] = "Modo seguro"; -App::$strings["No"] = "No"; -App::$strings["Yes"] = "Sí"; -App::$strings["Public Forums Only"] = "Solo foros públicos"; -App::$strings["This Website Only"] = "Solo este sitio web"; -App::$strings["%s "] = "%s "; -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."; -App::$strings["%1\$s sent you %2\$s."] = "%1\$s le ha enviado %2\$s."; -App::$strings["a private message"] = "un mensaje privado"; -App::$strings["Please visit %s to view and/or reply to your private messages."] = "Por favor visite %s para ver y/o responder a su mensaje privado."; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%4\$s[/zrl]"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%5\$s de %4\$s[/zrl] "; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%4\$s creado por usted[/zrl]"; -App::$strings["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla:Aviso] Nuevo comentario de %2\$s a la conversación #%1\$d"; -App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s ha comentado un elemento/conversación que ha estado siguiendo."; -App::$strings["Please visit %s to view and/or reply to the conversation."] = "Para ver o comentar la conversación, visite %s"; -App::$strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla:Aviso] %s ha publicado una entrada en su página de inicio del perfil (\"muro\")"; -App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s ha publicado en su página del perfil en %3\$s"; -App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s ha publicado en [zrl=%3\$s]su página del perfil[/zrl]"; -App::$strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla:Aviso] %s le ha etiquetado"; -App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s le ha etiquetado en %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]le etiquetó[/zrl]."; -App::$strings["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla:Aviso] %1\$s le ha dado un toque"; -App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s le ha dado un toque en %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]le ha dado un toque[/zrl]."; -App::$strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla:Aviso] %s ha etiquetado su publicación"; -App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha etiquetado su publicación en %3\$s"; -App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s ha etiquetado [zrl=%3\$s]su publicación[/zrl]"; -App::$strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla:Aviso] Ha recibido una solicitud de conexión"; -App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, ha recibido una nueva solicitud de conexión de '%2\$s' en %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, ha recibido [zrl=%2\$s]una nueva solicitud de conexión[/zrl] de %3\$s."; -App::$strings["You may visit their profile at %s"] = "Puede visitar su perfil en %s"; -App::$strings["Please visit %s to approve or reject the connection request."] = "Por favor, visite %s para permitir o rechazar la solicitad de conexión."; -App::$strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla:Aviso] Ha recibido una sugerencia de amistad"; -App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, ha recibido una sugerencia de conexión de '%2\$s' en %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, ha recibido [zrl=%2\$s]una sugerencia de conexión[/zrl] para %3\$s de %4\$s."; -App::$strings["Name:"] = "Nombre:"; -App::$strings["Photo:"] = "Foto:"; -App::$strings["Please visit %s to approve or reject the suggestion."] = "Por favor, visite %s para aprobar o rechazar la sugerencia."; -App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Aviso]"; -App::$strings["This event has been added to your calendar."] = "Este evento ha sido añadido a su calendario."; -App::$strings["Not specified"] = "Sin especificar"; -App::$strings["Needs Action"] = "Necesita de una intervención"; -App::$strings["Completed"] = "Completado/a"; -App::$strings["In Process"] = "En proceso"; -App::$strings["Cancelled"] = "Cancelado/a"; -App::$strings["General Features"] = "Funcionalidades básicas"; -App::$strings["Content Expiration"] = "Caducidad del contenido"; -App::$strings["Remove posts/comments and/or private messages at a future time"] = "Eliminar publicaciones/comentarios y/o mensajes privados más adelante"; -App::$strings["Multiple Profiles"] = "Múltiples perfiles"; -App::$strings["Ability to create multiple profiles"] = "Capacidad de crear múltiples perfiles"; -App::$strings["Advanced Profiles"] = "Perfiles avanzados"; -App::$strings["Additional profile sections and selections"] = "Secciones y selecciones de perfil adicionales"; -App::$strings["Profile Import/Export"] = "Importar/Exportar perfil"; -App::$strings["Save and load profile details across sites/channels"] = "Guardar y cargar detalles del perfil a través de sitios/canales"; -App::$strings["Web Pages"] = "Páginas web"; -App::$strings["Provide managed web pages on your channel"] = "Proveer páginas web gestionadas en su canal"; -App::$strings["Hide Rating"] = "Ocultar las valoraciones"; -App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Ocultar los botones de valoración en su canal y página de perfil. Tenga en cuenta, sin embargo, que la gente podrá expresar su valoración en otros lugares."; -App::$strings["Private Notes"] = "Notas privadas"; -App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)"; -App::$strings["Navigation Channel Select"] = "Navegación por el selector de canales"; -App::$strings["Change channels directly from within the navigation dropdown menu"] = "Cambiar de canales directamente desde el menú de navegación desplegable"; -App::$strings["Photo Location"] = "Ubicación de las fotos"; -App::$strings["If location data is available on uploaded photos, link this to a map."] = "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa."; -App::$strings["Access Controlled Chatrooms"] = "Salas de chat moderadas"; -App::$strings["Provide chatrooms and chat services with access control."] = "Proporcionar salas y servicios de chat moderados."; -App::$strings["Smart Birthdays"] = "Cumpleaños inteligentes"; -App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo."; -App::$strings["Expert Mode"] = "Modo de experto"; -App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Habilitar el modo de experto para acceder a opciones avanzadas de configuración"; -App::$strings["Premium Channel"] = "Canal premium"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal"; -App::$strings["Post Composition Features"] = "Opciones para la redacción de entradas"; -App::$strings["Large Photos"] = "Fotos de gran tamaño"; -App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)"; -App::$strings["Channel Sources"] = "Orígenes de los contenidos del canal"; -App::$strings["Automatically import channel content from other channels or feeds"] = "Importar automáticamente contenido de otros canales o \"feeds\""; -App::$strings["Even More Encryption"] = "Más cifrado todavía"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida."; -App::$strings["Enable Voting Tools"] = "Permitir entradas con votación"; -App::$strings["Provide a class of post which others can vote on"] = "Proveer una clase de publicación en la que otros puedan votar"; -App::$strings["Delayed Posting"] = "Publicación aplazada"; -App::$strings["Allow posts to be published at a later date"] = "Permitir mensajes que se publicarán en una fecha posterior"; -App::$strings["Suppress Duplicate Posts/Comments"] = "Prevenir entradas o comentarios duplicados"; -App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo."; -App::$strings["Network and Stream Filtering"] = "Filtrado del contenido"; -App::$strings["Search by Date"] = "Buscar por fecha"; -App::$strings["Ability to select posts by date ranges"] = "Capacidad de seleccionar entradas por rango de fechas"; -App::$strings["Privacy Groups"] = "Grupos de canales"; -App::$strings["Enable management and selection of privacy groups"] = "Activar la gestión y selección de grupos de canales"; -App::$strings["Saved Searches"] = "Búsquedas guardadas"; -App::$strings["Save search terms for re-use"] = "Guardar términos de búsqueda para su reutilización"; -App::$strings["Network Personal Tab"] = "Actividad personal"; -App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado."; -App::$strings["Network New Tab"] = "Contenido nuevo"; -App::$strings["Enable tab to display all new Network activity"] = "Habilitar una pestaña en la que se muestre solo el contenido nuevo"; -App::$strings["Affinity Tool"] = "Herramienta de afinidad"; -App::$strings["Filter stream activity by depth of relationships"] = "Filtrar el contenido según la profundidad de las relaciones"; -App::$strings["Connection Filtering"] = "Filtrado de conexiones"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido"; -App::$strings["Suggest Channels"] = "Sugerir canales"; -App::$strings["Show channel suggestions"] = "Mostrar sugerencias de canales"; -App::$strings["Post/Comment Tools"] = "Gestión de entradas y comentarios"; -App::$strings["Community Tagging"] = "Etiquetas de la comunidad"; -App::$strings["Ability to tag existing posts"] = "Capacidad de etiquetar entradas existentes"; -App::$strings["Post Categories"] = "Categorías de entradas"; -App::$strings["Add categories to your posts"] = "Añadir categorías a sus publicaciones"; -App::$strings["Ability to file posts under folders"] = "Capacidad de archivar entradas en carpetas"; -App::$strings["Dislike Posts"] = "Desagrado de publicaciones"; -App::$strings["Ability to dislike posts/comments"] = "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios"; -App::$strings["Star Posts"] = "Entradas destacadas"; -App::$strings["Ability to mark special posts with a star indicator"] = "Capacidad de marcar entradas destacadas con un indicador de estrella"; -App::$strings["Tag Cloud"] = "Nube de etiquetas"; -App::$strings["Provide a personal tag cloud on your channel page"] = "Proveer nube de etiquetas personal en su página de canal"; -App::$strings["Channel is blocked on this site."] = "El canal está bloqueado en este sitio."; -App::$strings["Channel location missing."] = "Falta la dirección del canal."; -App::$strings["Response from remote channel was incomplete."] = "Respuesta incompleta del canal."; -App::$strings["Channel was deleted and no longer exists."] = "El canal ha sido eliminado y ya no existe."; -App::$strings["Protocol disabled."] = "Protocolo deshabilitado."; -App::$strings["Channel discovery failed."] = "El intento de acceder al canal ha fallado."; -App::$strings["Cannot connect to yourself."] = "No puede conectarse consigo mismo."; -App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente."; -App::$strings["Add new connections to this privacy group"] = "Añadir conexiones nuevas a este grupo de canales"; -App::$strings["All Channels"] = "Todos los canales"; -App::$strings["edit"] = "editar"; -App::$strings["Edit group"] = "Editar grupo"; -App::$strings["Add privacy group"] = "Añadir un grupo de canales"; -App::$strings["Channels not in any privacy group"] = "Sin canales en ningún grupo"; -App::$strings["add"] = "añadir"; -App::$strings["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["Logout"] = "Finalizar sesión"; -App::$strings["End this session"] = "Finalizar esta sesión"; -App::$strings["Home"] = "Inicio"; -App::$strings["Your posts and conversations"] = "Sus publicaciones y conversaciones"; -App::$strings["Your profile page"] = "Su página del perfil"; -App::$strings["Manage/Edit profiles"] = "Administrar/editar perfiles"; -App::$strings["Edit your profile"] = "Editar su perfil"; -App::$strings["Your photos"] = "Sus fotos"; -App::$strings["Your files"] = "Sus ficheros"; -App::$strings["Your chatrooms"] = "Sus salas de chat"; -App::$strings["Your bookmarks"] = "Sus marcadores"; -App::$strings["Your webpages"] = "Sus páginas web"; -App::$strings["Sign in"] = "Acceder"; -App::$strings["%s - click to logout"] = "%s - pulsar para finalizar sesión"; -App::$strings["Remote authentication"] = "Acceder desde su servidor"; -App::$strings["Click to authenticate to your home hub"] = "Pulsar para identificarse en su servidor de inicio"; -App::$strings["Home Page"] = "Página de inicio"; -App::$strings["Register"] = "Registrarse"; -App::$strings["Create an account"] = "Crear una cuenta"; -App::$strings["Help and documentation"] = "Ayuda y documentación"; -App::$strings["Apps"] = "Aplicaciones"; -App::$strings["Applications, utilities, links, games"] = "Aplicaciones, utilidades, enlaces, juegos"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido"; -App::$strings["Channel Directory"] = "Directorio de canales"; -App::$strings["Your grid"] = "Mi red"; -App::$strings["Mark all grid notifications seen"] = "Marcar todas las notificaciones de la red como vistas"; -App::$strings["Channel home"] = "Mi canal"; -App::$strings["Mark all channel notifications seen"] = "Marcar todas las notificaciones del canal como leídas"; -App::$strings["Connections"] = "Conexiones"; -App::$strings["Notices"] = "Avisos"; -App::$strings["Notifications"] = "Notificaciones"; -App::$strings["See all notifications"] = "Ver todas las notificaciones"; -App::$strings["Mark all system notifications seen"] = "Marcar todas las notificaciones de sistema como leídas"; -App::$strings["Private mail"] = "Correo privado"; -App::$strings["See all private messages"] = "Ver todas los mensajes privados"; -App::$strings["Mark all private messages seen"] = "Marcar todos los mensajes privados como leídos"; -App::$strings["Inbox"] = "Bandeja de entrada"; -App::$strings["Outbox"] = "Bandeja de salida"; -App::$strings["New Message"] = "Nuevo mensaje"; -App::$strings["Event Calendar"] = "Calendario de eventos"; -App::$strings["See all events"] = "Ver todos los eventos"; -App::$strings["Mark all events seen"] = "Marcar todos los eventos como leidos"; -App::$strings["Manage Your Channels"] = "Gestionar sus canales"; -App::$strings["Account/Channel Settings"] = "Ajustes de cuenta/canales"; -App::$strings["Admin"] = "Administrador"; -App::$strings["Site Setup and Configuration"] = "Ajustes y configuración del sitio"; -App::$strings["@name, #tag, ?doc, content"] = "@nombre, #etiqueta, ?ayuda, contenido"; -App::$strings["Please wait..."] = "Espere por favor…"; -App::$strings["System"] = "Sistema"; -App::$strings["Create Personal App"] = "Crear una aplicación personal"; -App::$strings["Edit Personal App"] = "Editar una aplicación personal"; -App::$strings["Ignore/Hide"] = "Ignorar/Ocultar"; -App::$strings["Suggestions"] = "Sugerencias"; -App::$strings["See more..."] = "Ver más..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Tiene %1$.0f de %2$.0f conexiones permitidas."; -App::$strings["Add New Connection"] = "Añadir nueva conexión"; -App::$strings["Enter channel address"] = "Dirección del canal"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen"; -App::$strings["Notes"] = "Notas"; -App::$strings["Save"] = "Guardar"; -App::$strings["Remove term"] = "Eliminar término"; -App::$strings["Archives"] = "Hemeroteca"; -App::$strings["Me"] = "Yo"; -App::$strings["Family"] = "Familia"; -App::$strings["Acquaintances"] = "Conocidos/as"; -App::$strings["All"] = "Todos/as"; -App::$strings["Refresh"] = "Recargar"; -App::$strings["Account settings"] = "Configuración de la cuenta"; -App::$strings["Channel settings"] = "Configuración del canal"; -App::$strings["Additional features"] = "Funcionalidades"; -App::$strings["Feature/Addon settings"] = "Complementos"; -App::$strings["Display settings"] = "Ajustes de visualización"; -App::$strings["Manage locations"] = "Gestión de ubicaciones (clones) del canal"; -App::$strings["Export channel"] = "Exportar canal"; -App::$strings["Connected apps"] = "Aplicaciones conectadas"; -App::$strings["Connection Default Permissions"] = "Permisos predeterminados de conexión"; -App::$strings["Premium Channel Settings"] = "Configuración del canal premium"; -App::$strings["Private Mail Menu"] = "Menú de correo privado"; -App::$strings["Combined View"] = "Vista combinada"; -App::$strings["Conversations"] = "Conversaciones"; -App::$strings["Received Messages"] = "Mensajes recibidos"; -App::$strings["Sent Messages"] = "Enviar mensajes"; -App::$strings["No messages."] = "Sin mensajes."; -App::$strings["Delete conversation"] = "Eliminar conversación"; -App::$strings["Events Menu"] = "Menú de eventos"; -App::$strings["Day View"] = "Eventos del día"; -App::$strings["Week View"] = "Eventos de la semana"; -App::$strings["Month View"] = "Eventos del mes"; -App::$strings["Export"] = "Exportar"; -App::$strings["Import"] = "Importar"; -App::$strings["Events Tools"] = "Gestión de eventos"; -App::$strings["Export Calendar"] = "Exportar el calendario"; -App::$strings["Import Calendar"] = "Importar un calendario"; -App::$strings["Overview"] = "Resumen"; -App::$strings["Chat Members"] = "Miembros del chat"; -App::$strings["Bookmarked Chatrooms"] = "Salas de chat preferidas"; -App::$strings["Suggested Chatrooms"] = "Salas de chat sugeridas"; -App::$strings["photo/image"] = "foto/imagen"; -App::$strings["Click to show more"] = "Hacer clic para ver más"; -App::$strings["Rating Tools"] = "Valoraciones"; -App::$strings["Rate Me"] = "Valorar este canal"; -App::$strings["View Ratings"] = "Mostrar las valoraciones"; -App::$strings["Public Hubs"] = "Servidores públicos"; -App::$strings["Forums"] = "Foros"; -App::$strings["Tasks"] = "Tareas"; -App::$strings["Documentation"] = "Documentación"; -App::$strings["Project/Site Information"] = "Información sobre el proyecto o sitio"; -App::$strings["For Members"] = "Para los miembros"; -App::$strings["For Administrators"] = "Para los administradores"; -App::$strings["For Developers"] = "Para los desarrolladores"; -App::$strings["Site"] = "Sitio"; -App::$strings["Accounts"] = "Cuentas"; -App::$strings["Member registrations waiting for confirmation"] = "Inscripciones de nuevos miembros pendientes de aprobación"; -App::$strings["Channels"] = "Canales"; -App::$strings["Security"] = "Seguridad"; -App::$strings["Plugins"] = "Extensiones"; -App::$strings["Themes"] = "Temas"; -App::$strings["Inspect queue"] = "Examinar la cola"; -App::$strings["Profile Fields"] = "Campos del perfil"; -App::$strings["DB updates"] = "Actualizaciones de la base de datos"; -App::$strings["Logs"] = "Informes"; -App::$strings["Plugin Features"] = "Extensiones"; -App::$strings["View Photo"] = "Ver foto"; -App::$strings["Edit Album"] = "Editar álbum"; -App::$strings["Tags"] = "Etiquetas"; -App::$strings["Keywords"] = "Palabras clave"; -App::$strings["have"] = "tener"; -App::$strings["has"] = "tiene"; -App::$strings["want"] = "quiero"; -App::$strings["wants"] = "quiere"; -App::$strings["likes"] = "gusta de"; -App::$strings["dislikes"] = "no gusta de"; -App::$strings["Delete this item?"] = "¿Borrar este elemento?"; -App::$strings["[-] show less"] = "[-] mostrar menos"; -App::$strings["[+] expand"] = "[+] expandir"; -App::$strings["[-] collapse"] = "[-] contraer"; -App::$strings["Password too short"] = "Contraseña demasiado corta"; -App::$strings["Passwords do not match"] = "Las contraseñas no coinciden"; -App::$strings["everybody"] = "cualquiera"; -App::$strings["Secret Passphrase"] = "Contraseña secreta"; -App::$strings["Passphrase hint"] = "Pista de contraseña"; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Aviso: los permisos han cambiado pero aún no han sido enviados."; -App::$strings["close all"] = "cerrar todo"; -App::$strings["Nothing new here"] = "Nada nuevo por aquí"; -App::$strings["Rate This Channel (this is public)"] = "Valorar este canal (esto es público)"; -App::$strings["Rating"] = "Valoración"; -App::$strings["Describe (optional)"] = "Describir (opcional)"; -App::$strings["Please enter a link URL"] = "Por favor, introduzca una dirección de enlace"; -App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Cambios no guardados. ¿Está seguro de que desea abandonar la página?"; -App::$strings["Location"] = "Ubicación"; -App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; -App::$strings["ago"] = "antes"; -App::$strings["from now"] = "desde ahora"; -App::$strings["less than a minute"] = "menos de un minuto"; -App::$strings["about a minute"] = "alrededor de un minuto"; -App::$strings["%d minutes"] = "%d minutos"; -App::$strings["about an hour"] = "alrededor de una hora"; -App::$strings["about %d hours"] = "alrededor de %d horas"; -App::$strings["a day"] = "un día"; -App::$strings["%d days"] = "%d días"; -App::$strings["about a month"] = "alrededor de un mes"; -App::$strings["%d months"] = "%d meses"; -App::$strings["about a year"] = "alrededor de un año"; -App::$strings["%d years"] = "%d años"; -App::$strings[" "] = " "; -App::$strings["timeago.numbers"] = "timeago.numbers"; -App::$strings["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"; -App::$strings["Apr"] = "abr"; -App::$strings["__ctx:short__ May"] = "may"; -App::$strings["Jun"] = "jun"; -App::$strings["Jul"] = "jul"; -App::$strings["Aug"] = "ago"; -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"; -App::$strings["Wed"] = "mié"; -App::$strings["Thu"] = "jue"; -App::$strings["Fri"] = "vie"; -App::$strings["Sat"] = "sáb"; -App::$strings["__ctx:calendar__ today"] = "hoy"; -App::$strings["__ctx:calendar__ month"] = "mes"; -App::$strings["__ctx:calendar__ week"] = "semana"; -App::$strings["__ctx:calendar__ day"] = "día"; -App::$strings["__ctx:calendar__ All day"] = "Todos los días"; -App::$strings["No recipient provided."] = "No se ha especificado ningún destinatario."; -App::$strings["[no subject]"] = "[sin asunto]"; -App::$strings["Unable to determine sender."] = "No ha sido posible determinar el remitente. "; -App::$strings["Stored post could not be verified."] = "No se han podido verificar las publicaciones guardadas."; -App::$strings["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["Cloned channel not found. Import failed."] = "No se ha podido importar el canal porque el canal clonado no se ha encontrado."; -App::$strings["Embedded content"] = "Contenido incorporado"; -App::$strings["Embedding disabled"] = "Incrustación deshabilitada"; -App::$strings["New Page"] = "Nueva página"; -App::$strings["View"] = "Ver"; -App::$strings["Actions"] = "Acciones"; -App::$strings["Page Link"] = "Vínculo de la página"; -App::$strings["Title"] = "Título"; -App::$strings["Created"] = "Creado"; -App::$strings["Edited"] = "Editado"; -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["Link to Source"] = "Enlazar con la entrada en su ubicación original"; -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["Blocks"] = "Bloques"; -App::$strings["Menus"] = "Menús"; -App::$strings["Layouts"] = "Plantillas"; -App::$strings["Pages"] = "Páginas"; -App::$strings["Public Timeline"] = "Cronología pública"; -App::$strings["Remote privacy information not available."] = "La información privada remota no está disponible."; -App::$strings["Visible to:"] = "Visible para:"; -App::$strings["Some blurb about what to do when you're new here"] = "Algunas propuestas para el nuevo usuario sobre qué se puede hacer aquí"; -App::$strings["network"] = "red"; -App::$strings["RSS"] = "RSS"; -App::$strings["Unable to find your hub."] = "No se puede encontrar su servidor."; -App::$strings["Post successful."] = "Enviado con éxito."; -App::$strings["Theme settings updated."] = "Ajustes del tema actualizados."; -App::$strings["# Accounts"] = "# Cuentas"; -App::$strings["# blocked accounts"] = "# cuentas bloqueadas"; -App::$strings["# expired accounts"] = "# cuentas caducadas"; -App::$strings["# expiring accounts"] = "# cuentas que caducan"; -App::$strings["# Channels"] = "# Canales"; -App::$strings["# primary"] = "# primario"; -App::$strings["# clones"] = "# clones"; -App::$strings["Message queues"] = "Mensajes en cola"; -App::$strings["Administration"] = "Administración"; -App::$strings["Summary"] = "Sumario"; -App::$strings["Registered accounts"] = "Cuentas registradas"; -App::$strings["Pending registrations"] = "Registros pendientes"; -App::$strings["Registered channels"] = "Canales registrados"; -App::$strings["Active plugins"] = "Extensiones activas"; -App::$strings["Version"] = "Versión"; -App::$strings["Site settings updated."] = "Ajustes del sitio actualizados."; -App::$strings["mobile"] = "móvil"; -App::$strings["experimental"] = "experimental"; -App::$strings["unsupported"] = "no soportado"; -App::$strings["Yes - with approval"] = "Sí - con aprobación"; -App::$strings["My site is not a public server"] = "Mi sitio no es un servidor público"; -App::$strings["My site has paid access only"] = "Mi sitio es un servicio de pago"; -App::$strings["My site has free access only"] = "Mi sitio es un servicio gratuito"; -App::$strings["My site offers free accounts with optional paid upgrades"] = "Mi sitio ofrece cuentas gratuitas con opciones extra de pago"; -App::$strings["Registration"] = "Registro"; -App::$strings["File upload"] = "Subir fichero"; -App::$strings["Policies"] = "Políticas"; -App::$strings["Site name"] = "Nombre del sitio"; -App::$strings["Banner/Logo"] = "Banner/Logo"; -App::$strings["Administrator Information"] = "Información del Administrador"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Información de contacto de los administradores del sitio. Visible en la página \"siteinfo\". Se puede usar BBCode"; -App::$strings["System language"] = "Idioma del sistema"; -App::$strings["System theme"] = "Tema gráfico del sistema"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Tema del sistema por defecto - se puede cambiar por cada perfil de usuario - modificar los ajustes del tema"; -App::$strings["Mobile system theme"] = "Tema del sistema para móviles"; -App::$strings["Theme for mobile devices"] = "Tema para dispositivos móviles"; -App::$strings["Allow Feeds as Connections"] = "Permitir contenidos RSS como conexiones"; -App::$strings["(Heavy system resource usage)"] = "(Uso intenso de los recursos del sistema)"; -App::$strings["Maximum image size"] = "Tamaño máximo de la imagen"; -App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Tamaño máximo en bytes de la imagen subida. Por defecto, es 0, lo que significa que no hay límites."; -App::$strings["Does this site allow new member registration?"] = "¿Debe este sitio permitir el registro de nuevos miembros?"; -App::$strings["Invitation only"] = "Solo con una invitación"; -App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Solo se permiten inscripciones de nuevos miembros con un código de invitación. Además, deben aceptarse los términos del registro marcando \"Sí\"."; -App::$strings["Which best describes the types of account offered by this hub?"] = "¿Cómo describiría el tipo de servicio ofrecido por este servidor?"; -App::$strings["Register text"] = "Texto del registro"; -App::$strings["Will be displayed prominently on the registration page."] = "Se mostrará de forma destacada en la página de registro."; -App::$strings["Site homepage to show visitors (default: login box)"] = "Página personal que se mostrará a los visitantes (por defecto: la página de identificación)"; -App::$strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "ejemplo: 'public' para mostrar contenido público, 'page/sys/home' para mostrar la página web definida como \"home\" o 'include:home.html' para mostrar el contenido de un fichero."; -App::$strings["Preserve site homepage URL"] = "Preservar la dirección de la página personal"; -App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Presenta la página personal del sitio en un marco en la ubicación original, en vez de redirigirla."; -App::$strings["Accounts abandoned after x days"] = "Cuentas abandonadas después de x días"; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Para evitar consumir recursos del sistema intentando poner al día las cuentas abandonadas. Introduzca 0 para no tener límite de tiempo."; -App::$strings["Allowed friend domains"] = "Dominios amigos permitidos"; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Lista separada por comas de dominios a los que está permitido establecer relaciones de amistad con este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio."; -App::$strings["Allowed email domains"] = "Se aceptan dominios de correo electrónico"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Lista separada por comas de los dominios de los que se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para aceptar cualquier dominio. "; -App::$strings["Not allowed email domains"] = "No se permiten dominios de correo electrónico"; -App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Lista separada por comas de los dominios de los que no se acepta una dirección de correo electrónico para registros en este sitio. Se permiten comodines. Dejar en claro para no aceptar cualquier dominio, excepto los que se hayan autorizado."; -App::$strings["Verify Email Addresses"] = "Verificar las direcciones de correo electrónico"; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Activar para la verificación de la dirección de correo electrónico en el registro de una cuenta (recomendado)."; -App::$strings["Force publish"] = "Forzar la publicación"; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Intentar forzar todos los perfiles para que sean listados en el directorio de este sitio."; -App::$strings["Import Public Streams"] = "Importar contenido público"; -App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Importar y permitir acceso al contenido público sacado de otros sitios. Advertencia: este contenido no está moderado, por lo que podría encontrar cosas inapropiadas u ofensivas."; -App::$strings["login on Homepage"] = "Iniciar sesión en la página personal"; -App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Presentar a los visitantes una casilla de identificación en la página de inicio, si no se ha configurado otro tipo de contenido."; -App::$strings["Directory Server URL"] = "URL del servidor de directorio"; -App::$strings["Default directory server"] = "Servidor de directorio predeterminado"; -App::$strings["Proxy user"] = "Usuario del proxy"; -App::$strings["Proxy URL"] = "Dirección del proxy"; -App::$strings["Network timeout"] = "Tiempo de espera de la red"; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Valor en segundos. Poner a 0 para que no haya tiempo límite (no recomendado)"; -App::$strings["Delivery interval"] = "Intervalo de entrega"; -App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Retrasar los procesos de transmisión en segundo plano por esta cantidad de segundos para reducir la carga del sistema. Recomendado: 4-5 para sitios compartidos, 2-3 para servidores virtuales privados, 0-1 para grandes servidores dedicados."; -App::$strings["Deliveries per process"] = "Intentos de envío por proceso"; -App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Numero de envíos a intentar en un único proceso del sistema operativo. Ajustar si es necesario mejorar el rendimiento. Se recomienda: 1-5."; -App::$strings["Poll interval"] = "Intervalo máximo de tiempo entre dos mensajes sucesivos"; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "Retrasar el intervalo de envío en segundo plano, en esta cantidad de segundos, para reducir la carga del sistema. Si es 0, usar el intervalo de entrega."; -App::$strings["Maximum Load Average"] = "Carga media máxima"; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Carga máxima del sistema antes de que los procesos de entrega y envío se hayan retardado - por defecto, 50."; -App::$strings["Expiration period in days for imported (grid/network) content"] = "Caducidad del contenido importado de otros sitios (en días)"; -App::$strings["0 for no expiration of imported content"] = "0 para que no caduque el contenido importado"; -App::$strings["Off"] = "Desactivado"; -App::$strings["On"] = "Activado"; -App::$strings["Lock feature %s"] = "Bloquear la funcionalidad %s"; -App::$strings["Manage Additional Features"] = "Gestionar las funcionalidades"; -App::$strings["No server found"] = "Servidor no encontrado"; -App::$strings["ID"] = "ID"; -App::$strings["for channel"] = "por canal"; -App::$strings["on server"] = "en el servidor"; -App::$strings["Status"] = "Estado"; -App::$strings["Server"] = "Servidor"; -App::$strings["Block public"] = "Bloquear páginas públicas"; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Habilitar para impedir ver las páginas personales de este sitio a quien no esté actualmente autenticado."; -App::$strings["Allow communications only from these sites"] = "Permitir la comunicación solo desde estos sitios"; -App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Un sitio por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera"; -App::$strings["Block communications from these sites"] = "Bloquear la comunicación desde estos sitios"; -App::$strings["Allow communications only from these channels"] = "Permitir la comunicación solo desde estos canales"; -App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Un canal (hash) por línea. Dejar en blanco para permitir por defecto la comunicación desde cualquiera"; -App::$strings["Block communications from these channels"] = "Bloquear la comunicación desde estos canales"; -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."; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "La actualización de %s no ha devuelto ningún estado. No se sabe si ha tenido éxito."; -App::$strings["Update function %s could not be found."] = "No se encuentra la función de actualización de %s."; -App::$strings["No failed updates."] = "No ha fallado ninguna actualización."; -App::$strings["Failed Updates"] = "Han fallado las actualizaciones"; -App::$strings["Mark success (if update was manually applied)"] = "Marcar como exitosa (si la actualización se ha hecho manualmente)"; -App::$strings["Attempt to execute this update step automatically"] = "Intentar ejecutar este paso de actualización automáticamente"; -App::$strings["Queue Statistics"] = "Estadísticas de la cola"; -App::$strings["Total Entries"] = "Total de entradas"; -App::$strings["Priority"] = "Prioridad"; -App::$strings["Destination URL"] = "Dirección de destino"; -App::$strings["Mark hub permanently offline"] = "Marcar el servidor como permanentemente fuera de línea"; -App::$strings["Empty queue for this hub"] = "Vaciar la cola para este servidor"; -App::$strings["Last known contact"] = "Último contacto conocido"; -App::$strings["%s account blocked/unblocked"] = array( - 0 => "%s cuenta bloqueada/desbloqueada", - 1 => "%s cuenta bloqueada/desbloqueada", -); -App::$strings["%s account deleted"] = array( - 0 => "%s cuentas eliminadas", - 1 => "%s cuentas eliminadas", -); -App::$strings["Account not found"] = "Cuenta no encontrada"; -App::$strings["Account '%s' deleted"] = "La cuenta '%s' ha sido eliminada"; -App::$strings["Account '%s' blocked"] = "La cuenta '%s' ha sido bloqueada"; -App::$strings["Account '%s' unblocked"] = "La cuenta '%s' ha sido desbloqueada"; -App::$strings["Users"] = "Usuarios"; -App::$strings["select all"] = "seleccionar todo"; -App::$strings["User registrations waiting for confirm"] = "Registros de usuario en espera de aprobación"; -App::$strings["Request date"] = "Fecha de solicitud"; -App::$strings["No registrations."] = "Sin registros."; -App::$strings["Approve"] = "Aprobar"; -App::$strings["Deny"] = "Rechazar"; -App::$strings["Block"] = "Bloquear"; -App::$strings["Unblock"] = "Desbloquear"; -App::$strings["Register date"] = "Fecha de registro"; -App::$strings["Last login"] = "Último acceso"; -App::$strings["Expires"] = "Caduca"; -App::$strings["Service Class"] = "Clase de servicio"; -App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡Las cuentas seleccionadas van a ser eliminadas!\\n\\n¡Todo lo que estas cuentas han publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?"; -App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "¡La cuenta {0} va a ser eliminada!\\n\\n¡Todo lo que esta cuenta ha publicado en este sitio será borrado de forma permanente!\\n\\n¿Está seguro de querer hacerlo?"; -App::$strings["%s channel censored/uncensored"] = array( - 0 => "%s canales censurados/no censurados", - 1 => "%s canales censurados/no censurados", -); -App::$strings["%s channel code allowed/disallowed"] = array( - 0 => "%s código permitido/no permitido al canal", - 1 => "%s código permitido/no permitido al canal", -); -App::$strings["%s channel deleted"] = array( - 0 => "%s canales eliminados", - 1 => "%s canales eliminados", +App::$strings["Gender: "] = "Género:"; +App::$strings["Status: "] = "Estado:"; +App::$strings["Homepage: "] = "Página personal:"; +App::$strings["Age:"] = "Edad:"; +App::$strings["Location:"] = "Ubicación:"; +App::$strings["Description:"] = "Descripción:"; +App::$strings["Hometown:"] = "Lugar de nacimiento:"; +App::$strings["About:"] = "Sobre mí:"; +App::$strings["Connect"] = "Conectar"; +App::$strings["Public Forum:"] = "Foro público:"; +App::$strings["Keywords: "] = "Palabras clave:"; +App::$strings["Don't suggest"] = "No sugerir:"; +App::$strings["Common connections:"] = "Conexiones comunes:"; +App::$strings["Global Directory"] = "Directorio global:"; +App::$strings["Local Directory"] = "Directorio local:"; +App::$strings["Finding:"] = "Encontrar:"; +App::$strings["Channel Suggestions"] = "Sugerencias de canales"; +App::$strings["next page"] = "siguiente página"; +App::$strings["previous page"] = "página anterior"; +App::$strings["Sort options"] = "Ordenar opciones"; +App::$strings["Alphabetic"] = "Alfabético"; +App::$strings["Reverse Alphabetic"] = "Alfabético inverso"; +App::$strings["Newest to Oldest"] = "De más nuevo a más antiguo"; +App::$strings["Oldest to Newest"] = "De más antiguo a más nuevo"; +App::$strings["No entries (some entries may be hidden)."] = "Sin entradas (algunas entradas pueden estar ocultas)."; +App::$strings["This site is not a directory server"] = "Este sitio no es un servidor de directorio"; +App::$strings["This directory server requires an access token"] = "El servidor de este directorio necesita un \"token\" de acceso"; +App::$strings["Permission denied"] = "Permiso denegado"; +App::$strings["Invalid message"] = "Mensaje no válido"; +App::$strings["no results"] = "sin resultados"; +App::$strings["Delivery report for %1\$s"] = "Informe de entrega para %1\$s"; +App::$strings["channel sync processed"] = "se ha realizado la sincronización del canal"; +App::$strings["queued"] = "encolado"; +App::$strings["posted"] = "enviado"; +App::$strings["accepted for delivery"] = "aceptado para el envío"; +App::$strings["updated"] = "actualizado"; +App::$strings["update ignored"] = "actualización ignorada"; +App::$strings["permission denied"] = "permiso denegado"; +App::$strings["recipient not found"] = "destinatario no encontrado"; +App::$strings["mail recalled"] = "mensaje de correo revocado"; +App::$strings["duplicate mail received"] = "se ha recibido mensaje duplicado"; +App::$strings["mail delivered"] = "correo enviado"; +App::$strings["Item not found"] = "Elemento no encontrado"; +App::$strings["Delete block?"] = "¿Borrar bloque?"; +App::$strings["Bold"] = "Negrita"; +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["Layout Description (Optional)"] = "Descripción de la plantilla (opcional)"; +App::$strings["Layout Name"] = "Nombre de la plantilla"; +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"; +App::$strings["Delete item?"] = "¿Borrar elemento?"; +App::$strings["Toggle voting"] = "Cambiar votación"; +App::$strings["OK"] = "OK"; +App::$strings["Cancel"] = "Cancelar"; +App::$strings["Edit post"] = "Editar la entrada"; +App::$strings["Delete webpage?"] = "¿Eliminar la página web?"; +App::$strings["Page link title"] = "Título del enlace de la página"; +App::$strings["Edit Webpage"] = "Editar la página web"; +App::$strings["Calendar entries imported."] = "Entradas de calendario importadas."; +App::$strings["No calendar entries found."] = "No se han encontrado entradas de calendario."; +App::$strings["Event can not end before it has started."] = "Un evento no puede terminar antes de que haya comenzado."; +App::$strings["Unable to generate preview."] = "No se puede crear la vista previa."; +App::$strings["Event title and start time are required."] = "Se requieren el título del evento y su hora de inicio."; +App::$strings["Event not found."] = "Evento no encontrado."; +App::$strings["event"] = "evento"; +App::$strings["Edit event title"] = "Editar el título del evento"; +App::$strings["Event title"] = "Título del evento"; +App::$strings["Categories (comma-separated list)"] = "Categorías (lista separada por comas)"; +App::$strings["Edit Category"] = "Editar la categoría"; +App::$strings["Category"] = "Categoría"; +App::$strings["Edit start date and time"] = "Modificar la fecha y hora de comienzo"; +App::$strings["Start date and time"] = "Fecha y hora de comienzo"; +App::$strings["Finish date and time are not known or not relevant"] = "La fecha y hora de terminación no se conocen o no son relevantes"; +App::$strings["Edit finish date and time"] = "Modificar la fecha y hora de terminación"; +App::$strings["Finish date and time"] = "Fecha y hora de terminación"; +App::$strings["Adjust for viewer timezone"] = "Ajustar para obtener el visor de los husos horarios"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales."; +App::$strings["Edit Description"] = "Editar la descripción"; +App::$strings["Edit Location"] = "Modificar la dirección"; +App::$strings["Location"] = "Ubicación"; +App::$strings["Share this event"] = "Compartir este evento"; +App::$strings["Advanced Options"] = "Opciones avanzadas"; +App::$strings["Edit event"] = "Editar evento"; +App::$strings["Delete event"] = "Borrar evento"; +App::$strings["calendar"] = "calendario"; +App::$strings["Event removed"] = "Evento borrado"; +App::$strings["Failed to remove event"] = "Error al eliminar el evento"; +App::$strings["Photos"] = "Fotos"; +App::$strings["Share content from Firefox to \$Projectname"] = "Compartir contenido desde Firefox a \$Projectname"; +App::$strings["Activate the Firefox \$Projectname provider"] = "Servicio de compartición de Firefox: activar el proveedor \$Projectname "; +App::$strings["Save to Folder:"] = "Guardar en carpeta:"; +App::$strings["- select -"] = "- seleccionar -"; +App::$strings["Permission Denied."] = "Permiso denegado"; +App::$strings["File not found."] = "Fichero no encontrado."; +App::$strings["Edit file permissions"] = "Modificar los permisos del fichero"; +App::$strings["Set/edit permissions"] = "Establecer/editar los permisos"; +App::$strings["Include all files and sub folders"] = "Incluir todos los ficheros y subcarpetas"; +App::$strings["Return to file list"] = "Volver a la lista de ficheros"; +App::$strings["Copy/paste this code to attach file to a post"] = "Copiar/pegar este código para adjuntar el fichero al envío"; +App::$strings["Copy/paste this URL to link file from a web page"] = "Copiar/pegar esta dirección para enlazar el fichero desde una página web"; +App::$strings["Share this file"] = "Compartir este fichero"; +App::$strings["Show URL to this file"] = "Mostrar la dirección de este fichero"; +App::$strings["Notify your contacts about this file"] = "Avisar a sus contactos sobre este fichero"; +App::$strings["Channel added."] = "Canal añadido."; +App::$strings["Contact not found."] = "Contacto no encontrado"; +App::$strings["Friend suggestion sent."] = "Enviar sugerencia a un amigo."; +App::$strings["Suggest Friends"] = "Sugerir amigos"; +App::$strings["Suggest a friend for %s"] = "Sugerir un amigo a %s"; +App::$strings["Privacy group created."] = "El grupo de canales ha sido creado."; +App::$strings["Could not create privacy group."] = "No se puede crear el grupo de canales"; +App::$strings["Privacy group not found."] = "Grupo de canales no encontrado."; +App::$strings["Privacy group updated."] = "Grupo de canales actualizado."; +App::$strings["Create a group of channels."] = "Crear un grupo de canales."; +App::$strings["Privacy group name: "] = "Nombre del grupo de canales:"; +App::$strings["Members are visible to other channels"] = "Los miembros son visibles para otros canales"; +App::$strings["Privacy group removed."] = "Grupo de canales eliminado."; +App::$strings["Unable to remove privacy group."] = "Imposible eliminar el grupo de canales."; +App::$strings["Privacy group editor"] = "Editor de grupos de canales"; +App::$strings["Members"] = "Miembros"; +App::$strings["All Connected Channels"] = "Todos los canales conectados"; +App::$strings["Click on a channel to add or remove."] = "Haga clic en un canal para agregarlo o quitarlo."; +App::$strings["Documentation Search"] = "Búsqueda de Documentación"; +App::$strings["Help:"] = "Ayuda:"; +App::$strings["Help"] = "Ayuda"; +App::$strings["\$Projectname Documentation"] = "Documentación de \$Projectname"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Bienvenido a %s"; +App::$strings["First Name"] = "Nombre"; +App::$strings["Last Name"] = "Apellido"; +App::$strings["Nickname"] = "Sobrenombre o Alias"; +App::$strings["Full Name"] = "Nombre completo"; +App::$strings["Profile Photo"] = "Foto del perfil"; +App::$strings["Profile Photo 16px"] = "Foto del perfil 16px"; +App::$strings["Profile Photo 32px"] = "Foto del perfil 32px"; +App::$strings["Profile Photo 48px"] = "Foto del perfil 48px"; +App::$strings["Profile Photo 64px"] = "Foto del perfil 64px"; +App::$strings["Profile Photo 80px"] = "Foto del perfil 80px"; +App::$strings["Profile Photo 128px"] = "Foto del perfil 128px"; +App::$strings["Timezone"] = "Huso horario"; +App::$strings["Homepage URL"] = "Dirección de la página personal"; +App::$strings["Language"] = "Idioma"; +App::$strings["Birth Year"] = "Año de nacimiento"; +App::$strings["Birth Month"] = "Mes de nacimiento"; +App::$strings["Birth Day"] = "Día de nacimiento"; +App::$strings["Birthdate"] = "Fecha de nacimiento"; +App::$strings["Gender"] = "Género"; +App::$strings["Male"] = "Hombre"; +App::$strings["Female"] = "Mujer"; +App::$strings["webpage"] = "página web"; +App::$strings["block"] = "bloque"; +App::$strings["layout"] = "plantilla"; +App::$strings["menu"] = "menú"; +App::$strings["%s element installed"] = "%s elemento instalado"; +App::$strings["%s element installation failed"] = "Elemento con instalación fallida: %s"; +App::$strings["Your service plan only allows %d channels."] = "Su paquete de servicios solo permite %d canales."; +App::$strings["Nothing to import."] = "No hay nada para importar."; +App::$strings["Unable to download data from old server"] = "No se han podido descargar datos de su antiguo servidor"; +App::$strings["Imported file is empty."] = "El fichero importado está vacío."; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Atención: Las versiones de la base de datos difieren en %1\$d actualizaciones."; +App::$strings["Cloned channel not found. Import failed."] = "No se ha podido importar el canal porque el canal clonado no se ha encontrado."; +App::$strings["No channel. Import failed."] = "No hay canal. La importación ha fallado"; +App::$strings["Import completed."] = "Importación completada."; +App::$strings["You must be logged in to use this feature."] = "Debe estar registrado para poder usar esta funcionalidad."; +App::$strings["Import Channel"] = "Importar canal"; +App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Emplee este formulario para importar un canal desde un servidor/hub diferente. Puede recuperar el canal desde el antiguo servidor/hub a través de la red o proporcionando un fichero de exportación."; +App::$strings["File to Upload"] = "Fichero para subir"; +App::$strings["Or provide the old server/hub details"] = "O proporcione los detalles de su antiguo servidor/hub"; +App::$strings["Your old identity address (xyz@example.com)"] = "Su identidad en el antiguo servidor (canal@ejemplo.com)"; +App::$strings["Your old login email address"] = "Su antigua dirección de correo electrónico"; +App::$strings["Your old login password"] = "Su antigua contraseña"; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Para cualquiera de las opciones, elija si hacer de este servidor su nueva dirección primaria, o si su antigua dirección debe continuar con este papel. Usted podrá publicar desde cualquier ubicación, pero sólo una puede estar marcada como la ubicación principal para los ficheros, fotos y otras imágenes o vídeos."; +App::$strings["Make this hub my primary location"] = "Convertir este servidor en mi ubicación primaria"; +App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible"; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine."; +App::$strings["Import completed"] = "Importación completada"; +App::$strings["Import Items"] = "Importar elementos"; +App::$strings["Use this form to import existing posts and content from an export file."] = "Utilice este formulario para importar entradas existentes y contenido desde un archivo de exportación."; +App::$strings["Total invitation limit exceeded."] = "Se ha superado el límite máximo de invitaciones."; +App::$strings["%s : Not a valid email address."] = "%s : No es una dirección de correo electrónico válida. "; +App::$strings["Please join us on \$Projectname"] = "Únase a nosotros en \$Projectname"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio."; +App::$strings["%s : Message delivery failed."] = "%s : Falló el envío del mensaje."; +App::$strings["%d message sent."] = array( + 0 => "%d mensajes enviados.", + 1 => "%d mensajes enviados.", ); -App::$strings["Channel not found"] = "Canal no encontrado"; -App::$strings["Channel '%s' deleted"] = "Canal '%s' eliminado"; -App::$strings["Channel '%s' censored"] = "Canal '%s' censurado"; -App::$strings["Channel '%s' uncensored"] = "Canal '%s' no censurado"; -App::$strings["Channel '%s' code allowed"] = "Código permitido al canal '%s'"; -App::$strings["Channel '%s' code disallowed"] = "Código no permitido al canal '%s'"; -App::$strings["Censor"] = "Censurar"; -App::$strings["Uncensor"] = "No censurar"; -App::$strings["Allow Code"] = "Permitir código"; -App::$strings["Disallow Code"] = "No permitir código"; -App::$strings["UID"] = "UID"; -App::$strings["Address"] = "Dirección"; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Los canales seleccionados se eliminarán!\\n\\nTodo lo publicado por estos canales en este sitio se borrarán definitivamente!\\n\\n¿Está seguro de querer hacerlo?"; -App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "El canal {0} va a ser eliminado!\\n\\nTodo lo publicado por el canal en este sitio se borrará definitivamente!\\n\\n¿Está seguro de querer hacerlo?"; -App::$strings["Plugin %s disabled."] = "Extensión %s desactivada."; -App::$strings["Plugin %s enabled."] = "Extensión %s activada."; -App::$strings["Disable"] = "Desactivar"; -App::$strings["Enable"] = "Activar"; -App::$strings["Toggle"] = "Cambiar"; -App::$strings["Author: "] = "Autor:"; -App::$strings["Maintainer: "] = "Mantenedor:"; -App::$strings["Minimum project version: "] = "Versión mínima del proyecto:"; -App::$strings["Maximum project version: "] = "Versión máxima del proyecto:"; -App::$strings["Minimum PHP version: "] = "Versión mínima de PHP:"; -App::$strings["Requires: "] = "Se requiere:"; -App::$strings["Disabled - version incompatibility"] = "Deshabilitado - versiones incompatibles"; -App::$strings["No themes found."] = "No se han encontrado temas."; -App::$strings["Screenshot"] = "Instantánea de pantalla"; -App::$strings["[Experimental]"] = "[Experimental]"; -App::$strings["[Unsupported]"] = "[No soportado]"; -App::$strings["Log settings updated."] = "Actualizado el informe de configuraciones."; -App::$strings["Clear"] = "Vaciar"; -App::$strings["Debugging"] = "Depuración"; -App::$strings["Log file"] = "Fichero de informe"; -App::$strings["Must be writable by web server. Relative to your Red top-level directory."] = "Debe tener permisos de escritura por el servidor web. La ruta es relativa al directorio de instalación de Hubzilla."; -App::$strings["Log level"] = "Nivel de depuración"; -App::$strings["New Profile Field"] = "Nuevo campo en el perfil"; -App::$strings["Field nickname"] = "Alias del campo"; -App::$strings["System name of field"] = "Nombre del campo en el sistema"; -App::$strings["Input type"] = "Tipo de entrada"; -App::$strings["Field Name"] = "Nombre del campo"; -App::$strings["Label on profile pages"] = "Etiqueta a mostrar en la página del perfil"; -App::$strings["Help text"] = "Texto de ayuda"; -App::$strings["Additional info (optional)"] = "Información adicional (opcional)"; -App::$strings["Field definition not found"] = "Definición del campo no encontrada"; -App::$strings["Edit Profile Field"] = "Modificar el campo del perfil"; -App::$strings["Basic Profile Fields"] = "Campos básicos del perfil"; -App::$strings["Advanced Profile Fields"] = "Campos avanzados del perfil"; -App::$strings["(In addition to basic fields)"] = "(Además de los campos básicos)"; -App::$strings["All available fields"] = "Todos los campos disponibles"; -App::$strings["Custom Fields"] = "Campos personalizados"; -App::$strings["Create Custom Field"] = "Crear un campo personalizado"; -App::$strings["Authorize application connection"] = "Autorizar una conexión de aplicación"; -App::$strings["Return to your app and insert this Securty Code:"] = "Volver a su aplicación e introducir este código de seguridad:"; -App::$strings["Please login to continue."] = "Por favor inicie sesión para continuar."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "¿Desea autorizar a esta aplicación a acceder a sus publicaciones y contactos, y/o crear nuevas publicaciones por usted?"; +App::$strings["You have no more invitations available"] = "No tiene más invitaciones disponibles"; +App::$strings["Send invitations"] = "Enviar invitaciones"; +App::$strings["Enter email addresses, one per line:"] = "Introduzca las direcciones de correo electrónico, una por línea:"; +App::$strings["Your message:"] = "Su mensaje:"; +App::$strings["Please join my community on \$Projectname."] = "Por favor, únase a mi comunidad en \$Projectname."; +App::$strings["You will need to supply this invitation code:"] = "Tendrá que suministrar este código de invitación:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Regístrese en cualquier sitio de \$Projectname (están todos interconectados)"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Introduzca mi dirección \$Projectname en la caja de búsqueda del sitio."; +App::$strings["or visit"] = "o visitar"; +App::$strings["3. Click [Connect]"] = "3. Pulse [conectar]"; +App::$strings["Unable to locate original post."] = "No ha sido posible encontrar la entrada original."; +App::$strings["Empty post discarded."] = "La entrada vacía ha sido desechada."; +App::$strings["Executable content type not permitted to this channel."] = "Contenido de tipo ejecutable no permitido en este canal."; +App::$strings["Duplicate post suppressed."] = "Se ha suprimido la entrada duplicada."; +App::$strings["System error. Post not saved."] = "Error del sistema. La entrada no se ha podido salvar."; +App::$strings["Unable to obtain post information from database."] = "No ha sido posible obtener información de la entrada en la base de datos."; +App::$strings["You have reached your limit of %1$.0f top level posts."] = "Ha alcanzado su límite de %1$.0f entradas en la página principal."; +App::$strings["You have reached your limit of %1$.0f webpages."] = "Ha alcanzado su límite de %1$.0f páginas web."; +App::$strings["Layouts"] = "Plantillas"; +App::$strings["Comanche page description language help"] = "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche"; +App::$strings["Layout Description"] = "Descripción de la plantilla"; +App::$strings["Download PDL file"] = "Descargar el fichero PDL"; +App::$strings["Like/Dislike"] = "Me gusta/No me gusta"; +App::$strings["This action is restricted to members."] = "Esta acción está restringida solo para miembros."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Por favor, identifíquese con su \$Projectname ID o rregístrese como un nuevo \$Projectname member para continuar."; +App::$strings["Invalid request."] = "Solicitud incorrecta."; +App::$strings["channel"] = "el canal"; +App::$strings["thing"] = "elemento"; +App::$strings["Channel unavailable."] = "Canal no disponible."; +App::$strings["Previous action reversed."] = "Acción anterior revocada."; +App::$strings["photo"] = "foto"; +App::$strings["status"] = "el mensaje de estado"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "A %1\$s le gusta %3\$s de %2\$s"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "A %1\$s no le gusta %3\$s de %2\$s"; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s está de acuerdo"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s no está de acuerdo"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s se abstiene"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s participa"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s no participa"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s quizá participe"; +App::$strings["Action completed."] = "Acción completada."; +App::$strings["Thank you."] = "Gracias."; +App::$strings["Remote privacy information not available."] = "La información privada remota no está disponible."; +App::$strings["Visible to:"] = "Visible para:"; +App::$strings["Location not found."] = "Dirección no encontrada."; +App::$strings["Location lookup failed."] = "Ha fallado la búsqueda de la dirección."; +App::$strings["Please select another location to become primary before removing the primary location."] = "Por favor, seleccione una copia de su canal (un clon) para convertirlo en primario antes de eliminar su canal principal."; +App::$strings["Syncing locations"] = "Sincronización de ubicaciones"; +App::$strings["No locations found."] = "No encontrada ninguna dirección."; +App::$strings["Manage Channel Locations"] = "Gestionar las direcciones del canal"; +App::$strings["Primary"] = "Primario"; +App::$strings["Drop"] = "Eliminar"; +App::$strings["Sync Now"] = "Sincronizar ahora"; +App::$strings["Please wait several minutes between consecutive operations."] = "Por favor, espere algunos minutos entre operaciones consecutivas."; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Cuando sea posible, elimine una ubicación iniciando sesión en el sitio web o \"hub\" y borrando su canal."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Utilice este formulario para eliminar la dirección si el \"hub\" no está funcionando desde hace tiempo."; +App::$strings["No valid account found."] = "No se ha encontrado una cuenta válida."; +App::$strings["Password reset request issued. Check your email."] = "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico."; +App::$strings["Site Member (%s)"] = "Usuario del sitio (%s)"; +App::$strings["Password reset requested at %s"] = "Se ha solicitado restablecer la contraseña en %s"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado."; +App::$strings["Password Reset"] = "Restablecer la contraseña"; +App::$strings["Your password has been reset as requested."] = "Su contraseña ha sido restablecida según lo solicitó."; +App::$strings["Your new password is"] = "Su nueva contraseña es"; +App::$strings["Save or copy your new password - and then"] = "Guarde o copie su nueva contraseña - y después"; +App::$strings["click here to login"] = "pulse aquí para conectarse"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión."; +App::$strings["Your password has changed at %s"] = "Su contraseña en %s ha sido cambiada"; +App::$strings["Forgot your Password?"] = "¿Ha olvidado su contraseña?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones."; +App::$strings["Email Address"] = "Dirección de correo electrónico"; +App::$strings["Reset"] = "Reiniciar"; +App::$strings["Hub not found."] = "Servidor no encontrado"; +App::$strings["Unable to lookup recipient."] = "Imposible asociar a un destinatario."; +App::$strings["Unable to communicate with requested channel."] = "Imposible comunicar con el canal solicitado."; +App::$strings["Cannot verify requested channel."] = "No se puede verificar el canal solicitado."; +App::$strings["Selected channel has private message restrictions. Send failed."] = "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló."; +App::$strings["Messages"] = "Mensajes"; +App::$strings["Message recalled."] = "Mensaje revocado."; +App::$strings["Conversation removed."] = "Conversación eliminada."; +App::$strings["Requested channel is not in this network"] = "El canal solicitado no existe en esta red"; +App::$strings["Send Private Message"] = "Enviar un mensaje privado"; +App::$strings["To:"] = "Para:"; +App::$strings["Subject:"] = "Asunto:"; +App::$strings["Send"] = "Enviar"; +App::$strings["Delete message"] = "Borrar mensaje"; +App::$strings["Delivery report"] = "Informe de transmisión"; +App::$strings["Recall message"] = "Revocar el mensaje"; +App::$strings["Message has been recalled."] = "El mensaje ha sido revocado."; +App::$strings["Delete Conversation"] = "Eliminar conversación"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Comunicación segura no disponible. Pero puede responder desde la página del perfil del remitente."; +App::$strings["Send Reply"] = "Responder"; +App::$strings["Your message for %s (%s):"] = "Su mensaje para %s (%s):"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Ha creado %1$.0f de %2$.0f canales permitidos."; +App::$strings["Create a new channel"] = "Crear un nuevo canal"; +App::$strings["Channel Manager"] = "Administración de canales"; +App::$strings["Current Channel"] = "Canal actual"; +App::$strings["Switch to one of your channels by selecting it."] = "Cambiar a uno de sus canales seleccionándolo."; +App::$strings["Default Channel"] = "Canal principal"; +App::$strings["Make Default"] = "Convertir en predeterminado"; +App::$strings["%d new messages"] = "%d mensajes nuevos"; +App::$strings["%d new introductions"] = "%d nuevas isolicitudes de conexión"; +App::$strings["Delegated Channel"] = "Canal delegado"; +App::$strings["Profile Match"] = "Perfil compatible"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal."; +App::$strings["is interested in:"] = "está interesado en:"; +App::$strings["No matches"] = "No se han encontrado perfiles compatibles"; +App::$strings["Unable to update menu."] = "No se puede actualizar el menú."; +App::$strings["Unable to create menu."] = "No se puede crear el menú."; +App::$strings["Menu Name"] = "Nombre del menú"; +App::$strings["Unique name (not visible on webpage) - required"] = "Nombre único (no será visible en la página web) - requerido"; +App::$strings["Menu Title"] = "Título del menú"; +App::$strings["Visible on webpage - leave empty for no title"] = "Visible en la página web - no ponga nada si no desea un título"; +App::$strings["Allow Bookmarks"] = "Permitir marcadores"; +App::$strings["Menu may be used to store saved bookmarks"] = "El menú se puede usar para guardar marcadores"; +App::$strings["Submit and proceed"] = "Enviar y proceder"; +App::$strings["Menus"] = "Menús"; +App::$strings["Bookmarks allowed"] = "Marcadores permitidos"; +App::$strings["Delete this menu"] = "Borrar este menú"; +App::$strings["Edit menu contents"] = "Editar los contenidos del menú"; +App::$strings["Edit this menu"] = "Modificar este menú"; +App::$strings["Menu could not be deleted."] = "El menú no puede ser eliminado."; +App::$strings["Menu not found."] = "Menú no encontrado"; +App::$strings["Edit Menu"] = "Modificar el menú"; +App::$strings["Add or remove entries to this menu"] = "Añadir o quitar entradas en este menú"; +App::$strings["Menu name"] = "Nombre del menú"; +App::$strings["Must be unique, only seen by you"] = "Debe ser único, solo será visible para usted"; +App::$strings["Menu title"] = "Título del menú"; +App::$strings["Menu title as seen by others"] = "El título del menú tal como será visto por los demás"; +App::$strings["Allow bookmarks"] = "Permitir marcadores"; +App::$strings["Not found."] = "No encontrado."; +App::$strings["Unable to create element."] = "Imposible crear el elemento."; +App::$strings["Unable to update menu element."] = "No es posible actualizar el elemento del menú."; +App::$strings["Unable to add menu element."] = "No es posible añadir el elemento al menú"; +App::$strings["Menu Item Permissions"] = "Permisos del elemento del menú"; +App::$strings["(click to open/close)"] = "(pulsar para abrir o cerrar)"; +App::$strings["Link Name"] = "Nombre del enlace"; +App::$strings["Link or Submenu Target"] = "Destino del enlace o submenú"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Introducir la dirección del enlace o seleccionar el nombre de un submenú"; +App::$strings["Use magic-auth if available"] = "Usar la autenticación mágica si está disponible"; +App::$strings["Open link in new window"] = "Abrir el enlace en una nueva ventana"; +App::$strings["Order in list"] = "Orden en la lista"; +App::$strings["Higher numbers will sink to bottom of listing"] = "Los números más altos irán al final de la lista"; +App::$strings["Submit and finish"] = "Enviar y terminar"; +App::$strings["Submit and continue"] = "Enviar y continuar"; +App::$strings["Menu:"] = "Menú:"; +App::$strings["Link Target"] = "Destino del enlace"; +App::$strings["Edit menu"] = "Editar menú"; +App::$strings["Edit element"] = "Editar el elemento"; +App::$strings["Drop element"] = "Eliminar el elemento"; +App::$strings["New element"] = "Nuevo elemento"; +App::$strings["Edit this menu container"] = "Modificar el contenedor del menú"; +App::$strings["Add menu element"] = "Añadir un elemento al menú"; +App::$strings["Delete this menu item"] = "Eliminar este elemento del menú"; +App::$strings["Edit this menu item"] = "Modificar este elemento del menú"; +App::$strings["Menu item not found."] = "Este elemento del menú no se ha encontrado"; +App::$strings["Menu item deleted."] = "Este elemento del menú ha sido borrado"; +App::$strings["Menu item could not be deleted."] = "Este elemento del menú no puede ser borrado."; +App::$strings["Edit Menu Element"] = "Editar elemento del menú"; +App::$strings["Link text"] = "Texto del enlace"; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s está %2\$s"; +App::$strings["Mood"] = "Estado de ánimo"; +App::$strings["Set your current mood and tell your friends"] = "Describir su estado de ánimo para comunicárselo a sus amigos"; +App::$strings["No such group"] = "No se encuentra el grupo"; +App::$strings["No such channel"] = "No se encuentra el canal"; +App::$strings["forum"] = "foro"; +App::$strings["Search Results For:"] = "Buscar resultados para:"; +App::$strings["Privacy group is empty"] = "El grupo de canales está vacío"; +App::$strings["Privacy group: "] = "Grupo de canales: "; +App::$strings["Invalid connection."] = "Conexión no válida."; +App::$strings["Name or caption"] = "Nombre o descripción"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Ejemplos: \"Juan García\", \"Luisa y sus caballos\", \"Fútbol\", \"Grupo de aviación\""; +App::$strings["Choose a short nickname"] = "Elija un alias corto"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s"; +App::$strings["Channel role and privacy"] = "Clase de canal y privacidad"; +App::$strings["Select a channel role with your privacy requirements."] = "Seleccione un tipo de canal con sus requisitos de privacidad"; +App::$strings["Read more about roles"] = "Leer más sobre los roles"; +App::$strings["Create Channel"] = "Crear un canal"; +App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canal es su identidad en esta red. Puede representar a una persona, un blog o un foro, por nombrar unos pocos ejemplos. Los canales se pueden conectar con otros canales para compartir información con una gama de permisos extremadamente detallada."; +App::$strings["or import an existing channel from another location."] = "O importar un canal existente desde otro lugar."; +App::$strings["Invalid request identifier."] = "Petición inválida del identificador."; +App::$strings["Discard"] = "Descartar"; +App::$strings["No more system notifications."] = "No hay más notificaciones del sistema"; +App::$strings["System Notifications"] = "Notificaciones del sistema"; +App::$strings["Mark all system notifications seen"] = "Marcar todas las notificaciones de sistema como leídas"; +App::$strings["Unable to find your hub."] = "No se puede encontrar su servidor."; +App::$strings["Post successful."] = "Enviado con éxito."; App::$strings["OpenID protocol error. No ID returned."] = "Error del protocolo OpenID. Ningún ID recibido como respuesta."; -App::$strings["App installed."] = "Aplicación instalada."; -App::$strings["Malformed app."] = "Aplicación con errores"; -App::$strings["Embed code"] = "Código incorporado"; -App::$strings["Edit App"] = "Modificar la aplicación"; -App::$strings["Create App"] = "Crear una aplicación"; -App::$strings["Name of app"] = "Nombre de la aplicación"; -App::$strings["Location (URL) of app"] = "Dirección (URL) de la aplicación"; -App::$strings["Description"] = "Descripción"; -App::$strings["Photo icon URL"] = "Dirección del icono"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels - opcional"; -App::$strings["Version ID"] = "Versión"; -App::$strings["Price of app"] = "Precio de la aplicación"; -App::$strings["Location (URL) to purchase app"] = "Dirección (URL) donde adquirir la aplicación"; -App::$strings["Invalid item."] = "Elemento no válido."; -App::$strings["Channel not found."] = "Canal no encontrado."; +App::$strings["Login failed."] = "El acceso ha fallado."; App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["Item not available."] = "Elemento no disponible"; App::$strings["This setting requires special processing and editing has been blocked."] = "Este ajuste necesita de un proceso especial y la edición ha sido bloqueada."; App::$strings["Configuration Editor"] = "Editor de configuración"; App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Atención: El cambio de algunos ajustes puede volver inutilizable su canal. Por favor, abandone la página excepto que esté seguro y sepa cómo usar correctamente esta característica."; @@ -1280,19 +879,12 @@ App::$strings["Edit System Page Description"] = "Editor del Sistema de Descripci App::$strings["Layout not found."] = "Plantilla no encontrada"; App::$strings["Module Name:"] = "Nombre del módulo:"; App::$strings["Layout Help"] = "Ayuda para el diseño de plantillas de página"; -App::$strings["Item not found"] = "Elemento no encontrado"; -App::$strings["Item is not editable"] = "El elemento no es editable"; -App::$strings["Delete item?"] = "¿Borrar elemento?"; -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["Edit post"] = "Editar la entrada"; App::$strings["Page owner information could not be retrieved."] = "La información del propietario de la página no pudo ser recuperada."; +App::$strings["Profile Photos"] = "Fotos del perfil"; App::$strings["Album not found."] = "Álbum no encontrado."; App::$strings["Delete Album"] = "Borrar álbum"; App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Hay varias carpetas con este nombre de álbum, pero dentro de diferentes directorios. Por favor, elimine la carpeta o carpetas que desee utilizando el administrador de ficheros"; App::$strings["Delete Photo"] = "Borrar foto"; -App::$strings["Public access denied."] = "Acceso público denegado."; App::$strings["No photos selected"] = "No hay fotos seleccionadas"; App::$strings["Access to this item is restricted."] = "El acceso a este elemento está restringido."; App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB de %2$.2f MB de almacenamiento de fotos utilizado."; @@ -1307,14 +899,14 @@ App::$strings["Album name could not be decoded"] = "El nombre del álbum no ha p App::$strings["Contact Photos"] = "Fotos de contacto"; App::$strings["Show Newest First"] = "Mostrar lo más reciente primero"; App::$strings["Show Oldest First"] = "Mostrar lo más antiguo primero"; +App::$strings["View Photo"] = "Ver foto"; +App::$strings["Edit Album"] = "Editar álbum"; App::$strings["Permission denied. Access to this item may be restricted."] = "Permiso denegado. El acceso a este elemento puede estar restringido."; App::$strings["Photo not available"] = "Foto no disponible"; App::$strings["Use as profile photo"] = "Usar como foto del perfil"; App::$strings["Use as cover photo"] = "Usar como imagen de portada del perfil"; App::$strings["Private Photo"] = "Foto privada"; -App::$strings["Previous"] = "Anterior"; App::$strings["View Full Size"] = "Ver tamaño completo"; -App::$strings["Next"] = "Siguiente"; App::$strings["Remove"] = "Eliminar"; App::$strings["Edit photo"] = "Editar foto"; App::$strings["Rotate CW (right)"] = "Girar CW (a la derecha)"; @@ -1325,199 +917,49 @@ App::$strings["Caption"] = "Título"; App::$strings["Add a Tag"] = "Añadir una etiqueta"; App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Ejemplos: @eva, @Carmen_Osuna, @jaime@ejemplo.com"; App::$strings["Flag as adult in album view"] = "Marcar como \"solo para adultos\" en el álbum"; +App::$strings["I like this (toggle)"] = "Me gusta (cambiar)"; +App::$strings["I don't like this (toggle)"] = "No me gusta esto (cambiar)"; +App::$strings["This is you"] = "Este es usted"; +App::$strings["Comment"] = "Comentar"; +App::$strings["__ctx:title__ Likes"] = "Me gusta"; +App::$strings["__ctx:title__ Dislikes"] = "No me gusta"; +App::$strings["__ctx:title__ Agree"] = "De acuerdo"; +App::$strings["__ctx:title__ Disagree"] = "En desacuerdo"; +App::$strings["__ctx:title__ Abstain"] = "Abstención"; +App::$strings["__ctx:title__ Attending"] = "Participaré"; +App::$strings["__ctx:title__ Not attending"] = "No participaré"; +App::$strings["__ctx:title__ Might attend"] = "Quizá participe"; +App::$strings["View all"] = "Ver todo"; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "Me gusta", + 1 => "Me gusta", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "No me gusta", + 1 => "No me gusta", +); App::$strings["In This Photo:"] = "En esta foto:"; App::$strings["Map"] = "Mapa"; +App::$strings["__ctx:noun__ Likes"] = "Me gusta"; +App::$strings["__ctx:noun__ Dislikes"] = "No me gusta"; +App::$strings["Close"] = "Cerrar"; App::$strings["View Album"] = "Ver álbum"; App::$strings["Recent Photos"] = "Fotos recientes"; -App::$strings["Bookmark added"] = "Marcador añadido"; -App::$strings["My Bookmarks"] = "Mis marcadores"; -App::$strings["My Connections Bookmarks"] = "Marcadores de mis conexiones"; -App::$strings["Menu not found."] = "Menú no encontrado"; -App::$strings["Unable to create element."] = "Imposible crear el elemento."; -App::$strings["Unable to update menu element."] = "No es posible actualizar el elemento del menú."; -App::$strings["Unable to add menu element."] = "No es posible añadir el elemento al menú"; -App::$strings["Not found."] = "No encontrado."; -App::$strings["Menu Item Permissions"] = "Permisos del elemento del menú"; -App::$strings["(click to open/close)"] = "(pulsar para abrir o cerrar)"; -App::$strings["Link Name"] = "Nombre del enlace"; -App::$strings["Link or Submenu Target"] = "Destino del enlace o submenú"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Introducir la dirección del enlace o seleccionar el nombre de un submenú"; -App::$strings["Use magic-auth if available"] = "Usar la autenticación mágica si está disponible"; -App::$strings["Open link in new window"] = "Abrir el enlace en una nueva ventana"; -App::$strings["Order in list"] = "Orden en la lista"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Los números más altos irán al final de la lista"; -App::$strings["Submit and finish"] = "Enviar y terminar"; -App::$strings["Submit and continue"] = "Enviar y continuar"; -App::$strings["Menu:"] = "Menú:"; -App::$strings["Link Target"] = "Destino del enlace"; -App::$strings["Edit menu"] = "Editar menú"; -App::$strings["Edit element"] = "Editar el elemento"; -App::$strings["Drop element"] = "Eliminar el elemento"; -App::$strings["New element"] = "Nuevo elemento"; -App::$strings["Edit this menu container"] = "Modificar el contenedor del menú"; -App::$strings["Add menu element"] = "Añadir un elemento al menú"; -App::$strings["Delete this menu item"] = "Eliminar este elemento del menú"; -App::$strings["Edit this menu item"] = "Modificar este elemento del menú"; -App::$strings["Menu item not found."] = "Este elemento del menú no se ha encontrado"; -App::$strings["Menu item deleted."] = "Este elemento del menú ha sido borrado"; -App::$strings["Menu item could not be deleted."] = "Este elemento del menú no puede ser borrado."; -App::$strings["Edit Menu Element"] = "Editar elemento del menú"; -App::$strings["Link text"] = "Texto del enlace"; App::$strings["sent you a private message"] = "le ha enviado un mensaje privado"; App::$strings["added your channel"] = "añadió este canal a sus conexiones"; +App::$strings["g A l F d"] = "g A l d F"; +App::$strings["[today]"] = "[hoy]"; App::$strings["posted an event"] = "publicó un evento"; -App::$strings["Permissions denied."] = "Permisos denegados."; -App::$strings["l, F j"] = "l j F"; -App::$strings["Edit Event"] = "Editar el evento"; -App::$strings["Create Event"] = "Crear un evento"; -App::$strings["Today"] = "Hoy"; -App::$strings["You must be logged in to see this page."] = "Debe haber iniciado sesión para poder ver esta página."; -App::$strings["Posts and comments"] = "Publicaciones y comentarios"; -App::$strings["Only posts"] = "Solo publicaciones"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Permisos insuficientes. Petición redirigida a la página del perfil."; -App::$strings["Public"] = "Público"; +App::$strings["Poke"] = "Toques y otras cosas"; App::$strings["Poke somebody"] = "Dar un toque a alguien"; App::$strings["Poke/Prod"] = "Toque/Incitación"; App::$strings["Poke, prod or do other things to somebody"] = "Dar un toque, incitar o hacer otras cosas a alguien"; App::$strings["Recipient"] = "Destinatario"; App::$strings["Choose what you wish to do to recipient"] = "Elegir qué desea enviar al destinatario"; App::$strings["Make this post private"] = "Convertir en privado este envío"; -App::$strings["Room not found"] = "Sala no encontrada"; -App::$strings["Leave Room"] = "Abandonar la sala"; -App::$strings["Delete Room"] = "Eliminar esta sala"; -App::$strings["I am away right now"] = "Estoy ausente momentáneamente"; -App::$strings["I am online"] = "Estoy conectado/a"; -App::$strings["Bookmark this room"] = "Añadir esta sala a Marcadores"; -App::$strings["Feature disabled."] = "Funcionalidad deshabilitada."; -App::$strings["New Chatroom"] = "Nueva sala de chat"; -App::$strings["Chatroom name"] = "Nombre de la sala de chat"; -App::$strings["Expiration of chats (minutes)"] = "Caducidad de los mensajes en los chats (en minutos)"; -App::$strings["%1\$s's Chatrooms"] = "Salas de chat de %1\$s"; -App::$strings["No chatrooms available"] = "No hay salas de chat disponibles"; -App::$strings["Create New"] = "Crear"; -App::$strings["Expiration"] = "Caducidad"; -App::$strings["min"] = "min"; -App::$strings["Away"] = "Ausente"; -App::$strings["Online"] = "Conectado/a"; App::$strings["Fetching URL returns error: %1\$s"] = "Al intentar obtener la dirección, retorna el error: %1\$s"; -App::$strings["No channel."] = "Ningún canal."; -App::$strings["Common connections"] = "Conexiones comunes"; -App::$strings["No connections in common."] = "Ninguna conexión en común."; -App::$strings["Continue"] = "Continuar"; -App::$strings["Premium Channel Setup"] = "Configuración del canal premium"; -App::$strings["Enable premium channel connection restrictions"] = "Habilitar restricciones de conexión del canal premium"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Por favor introduzca sus restricciones o condiciones, como recibo de paypal, normas de uso, etc."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Este canal puede requerir antes de conectar unos pasos adicionales o el conocimiento de las siguientes condiciones:"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Las posibles conexiones verán, por tanto, el siguiente texto antes de proceder:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Al continuar, certifico que he cumplido con todas las instrucciones proporcionadas en esta página."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(No ha sido proporcionada ninguna instrucción específica por el propietario del canal.)"; -App::$strings["Restricted or Premium Channel"] = "Canal premium o restringido"; -App::$strings["Set your current mood and tell your friends"] = "Describir su estado de ánimo para comunicárselo a sus amigos"; -App::$strings["Blocked"] = "Bloqueadas"; -App::$strings["Ignored"] = "Ignoradas"; -App::$strings["Hidden"] = "Ocultas"; -App::$strings["Archived"] = "Archivadas"; -App::$strings["New Connections"] = "Nuevas conexiones"; -App::$strings["Show pending (new) connections"] = "Mostrar conexiones (nuevas) pendientes"; -App::$strings["All Connections"] = "Todas las conexiones"; -App::$strings["Show all connections"] = "Mostrar todas las conexiones"; -App::$strings["Only show blocked connections"] = "Mostrar solo las conexiones bloqueadas"; -App::$strings["Only show ignored connections"] = "Mostrar solo conexiones ignoradas"; -App::$strings["Only show archived connections"] = "Mostrar solo las conexiones archivadas"; -App::$strings["Only show hidden connections"] = "Mostrar solo las conexiones ocultas"; -App::$strings["Pending approval"] = "Pendiente de aprobación"; -App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -App::$strings["Edit connection"] = "Editar conexión"; -App::$strings["Delete connection"] = "Eliminar conexión"; -App::$strings["Channel address"] = "Dirección del canal"; -App::$strings["Network"] = "Red"; -App::$strings["Connected"] = "Conectado/a"; -App::$strings["Approve connection"] = "Aprobar esta conexión"; -App::$strings["Ignore connection"] = "Ignorar esta conexión"; -App::$strings["Ignore"] = "Ignorar"; -App::$strings["Recent activity"] = "Actividad reciente"; -App::$strings["Search your connections"] = "Buscar sus conexiones"; -App::$strings["Connections search"] = "Buscar conexiones"; -App::$strings["Image uploaded but image cropping failed."] = "Imagen actualizada, pero el recorte de la imagen ha fallado. "; -App::$strings["Image resize failed."] = "El ajuste del tamaño de la imagen ha fallado."; App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Recargue la página o limpie el caché del navegador si la nueva foto no se muestra inmediatamente."; -App::$strings["Image upload failed."] = "La carga de la imagen ha fallado."; -App::$strings["Unable to process image."] = "No ha sido posible procesar la imagen."; -App::$strings["Photo not available."] = "Foto no disponible."; -App::$strings["Upload File:"] = "Subir fichero:"; -App::$strings["Select a profile:"] = "Seleccionar un perfil:"; App::$strings["Upload Profile Photo"] = "Subir foto de perfil"; -App::$strings["or"] = "o"; -App::$strings["skip this step"] = "Omitir este paso"; -App::$strings["select a photo from your photo albums"] = "Seleccione una foto de sus álbumes de fotos"; -App::$strings["Crop Image"] = "Recortar imagen"; -App::$strings["Please adjust the image cropping for optimum viewing."] = "Por favor ajuste el recorte de la imagen para una visión óptima."; -App::$strings["Done Editing"] = "Edición completada"; -App::$strings["Could not access contact record."] = "No se ha podido acceder al registro de contacto."; -App::$strings["Could not locate selected profile."] = "No se ha podido localizar el perfil seleccionado."; -App::$strings["Connection updated."] = "Conexión actualizada."; -App::$strings["Failed to update connection record."] = "Error al actualizar el registro de la conexión."; -App::$strings["is now connected to"] = "ahora está conectado/a"; -App::$strings["Could not access address book record."] = "No se pudo acceder al registro en su libreta de direcciones."; -App::$strings["Refresh failed - channel is currently unavailable."] = "Recarga fallida - no se puede encontrar el canal en este momento."; -App::$strings["Unable to set address book parameters."] = "No ha sido posible establecer los parámetros de la libreta de direcciones."; -App::$strings["Connection has been removed."] = "La conexión ha sido eliminada."; -App::$strings["View %s's profile"] = "Ver el perfil de %s"; -App::$strings["Refresh Permissions"] = "Recargar los permisos"; -App::$strings["Fetch updated permissions"] = "Obtener los permisos actualizados"; -App::$strings["Recent Activity"] = "Actividad reciente"; -App::$strings["View recent posts and comments"] = "Ver publicaciones y comentarios recientes"; -App::$strings["Block (or Unblock) all communications with this connection"] = "Bloquear (o desbloquear) todas las comunicaciones con esta conexión"; -App::$strings["This connection is blocked!"] = "¡Esta conexión está bloqueada!"; -App::$strings["Unignore"] = "Dejar de ignorar"; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Ignorar (o dejar de ignorar) todas las comunicaciones entrantes de esta conexión"; -App::$strings["This connection is ignored!"] = "¡Esta conexión es ignorada!"; -App::$strings["Unarchive"] = "Desarchivar"; -App::$strings["Archive"] = "Archivar"; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiva (o desarchiva) esta conexión - marca el canal como muerto aunque mantiene sus contenidos"; -App::$strings["This connection is archived!"] = "¡Esta conexión esta archivada!"; -App::$strings["Unhide"] = "Mostrar"; -App::$strings["Hide"] = "Ocultar"; -App::$strings["Hide or Unhide this connection from your other connections"] = "Ocultar o mostrar esta conexión a sus otras conexiones"; -App::$strings["This connection is hidden!"] = "¡Esta conexión está oculta!"; -App::$strings["Delete this connection"] = "Eliminar esta conexión"; -App::$strings["Approve this connection"] = "Aprobar esta conexión"; -App::$strings["Accept connection to allow communication"] = "Aceptar la conexión para permitir la comunicación"; -App::$strings["Set Affinity"] = "Ajustar la afinidad"; -App::$strings["Set Profile"] = "Ajustar el perfil"; -App::$strings["Set Affinity & Profile"] = "Ajustar la afinidad y el perfil"; -App::$strings["none"] = "-"; -App::$strings["Apply these permissions automatically"] = "Aplicar estos permisos automaticamente"; -App::$strings["Connection requests will be approved without your interaction"] = "Las solicitudes de conexión serán aprobadas sin su intervención"; -App::$strings["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["Slide to adjust your degree of friendship"] = "Deslizar para ajustar el grado de amistad"; -App::$strings["Slide to adjust your rating"] = "Deslizar para ajustar su valoración"; -App::$strings["Optionally explain your rating"] = "Opcionalmente, puede explicar su valoración"; -App::$strings["Custom Filter"] = "Filtro personalizado"; -App::$strings["Only import posts with this text"] = "Importar solo entradas que contengan este texto"; -App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "Una sola opción por línea: palabras, #etiquetas, /patrones/ o lang=xx. Dejar en blanco para importarlo todo"; -App::$strings["Do not import posts with this text"] = "No importar entradas que contengan este texto"; -App::$strings["This information is public!"] = "¡Esta información es pública!"; -App::$strings["Connection Pending Approval"] = "Conexión pendiente de aprobación"; -App::$strings["inherited"] = "heredado"; -App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Por favor, escoja el perfil que quiere mostrar a %s cuando esté viendo su perfil de forma segura."; -App::$strings["Their Settings"] = "Sus ajustes"; -App::$strings["My Settings"] = "Mis ajustes"; -App::$strings["Individual Permissions"] = "Permisos individuales"; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. No puede cambiar estos ajustes aquí."; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Algunos permisos pueden ser heredados de los ajustes de privacidad de sus canales, los cuales tienen una prioridad más alta que los ajustes individuales. Puede cambiar estos ajustes aquí, pero no tendrán ningún consecuencia hasta que cambie los ajustes heredados."; -App::$strings["Last update:"] = "Última actualización:"; -App::$strings["No such group"] = "No se encuentra el grupo"; -App::$strings["No such channel"] = "No se encuentra el canal"; -App::$strings["forum"] = "foro"; -App::$strings["Search Results For:"] = "Buscar resultados para:"; -App::$strings["Privacy group is empty"] = "El grupo de canales está vacío"; -App::$strings["Privacy group: "] = "Grupo de canales: "; -App::$strings["Invalid connection."] = "Conexión no válida."; -App::$strings["Cover Photos"] = "Imágenes de portada del perfil"; -App::$strings["Upload Cover Photo"] = "Subir imagen de portada del perfil"; App::$strings["Profile not found."] = "Perfil no encontrado."; App::$strings["Profile deleted."] = "Perfil eliminado."; App::$strings["Profile-"] = "Perfil-"; @@ -1532,7 +974,6 @@ App::$strings["Dislikes"] = "No me gusta"; App::$strings["Work/Employment"] = "Trabajo:"; App::$strings["Religion"] = "Religión"; App::$strings["Political Views"] = "Ideas políticas"; -App::$strings["Gender"] = "Género"; App::$strings["Sexual Preference"] = "Preferencia sexual"; App::$strings["Homepage"] = "Página personal"; App::$strings["Interests"] = "Intereses"; @@ -1540,12 +981,16 @@ App::$strings["Profile updated."] = "Perfil actualizado."; App::$strings["Hide your connections list from viewers of this profile"] = "Ocultar la lista de conexiones a los visitantes del perfil"; App::$strings["Edit Profile Details"] = "Modificar los detalles de este perfil"; App::$strings["View this profile"] = "Ver este perfil"; +App::$strings["Edit visibility"] = "Editar visibilidad"; App::$strings["Change cover photo"] = "Cambiar la imagen de portada del perfil"; +App::$strings["Change profile photo"] = "Cambiar la foto del perfil"; App::$strings["Create a new profile using these settings"] = "Crear un nuevo perfil usando estos ajustes"; App::$strings["Clone this profile"] = "Clonar este perfil"; App::$strings["Delete this profile"] = "Eliminar este perfil"; App::$strings["Add profile things"] = "Añadir cosas al perfil"; +App::$strings["Personal"] = "Personales"; App::$strings["Relation"] = "Relación"; +App::$strings["Miscellaneous"] = "Varios"; App::$strings["Import profile from file"] = "Importar perfil desde un fichero"; App::$strings["Export profile to file"] = "Exportar perfil a un fichero"; App::$strings["Your gender"] = "Género"; @@ -1564,7 +1009,6 @@ App::$strings["Who (if applicable)"] = "Quién (si es pertinente)"; App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Por ejemplo: ana123, María González, sara@ejemplo.com"; App::$strings["Since (date)"] = "Desde (fecha)"; App::$strings["Tell us about yourself"] = "Háblenos de usted"; -App::$strings["Homepage URL"] = "Dirección de la página personal"; App::$strings["Hometown"] = "Lugar de nacimiento"; App::$strings["Political views"] = "Ideas políticas"; App::$strings["Religious views"] = "Creencias religiosas"; @@ -1579,119 +1023,32 @@ App::$strings["Love/Romance"] = "Vida sentimental o amorosa"; App::$strings["School/Education"] = "Estudios"; App::$strings["Contact information and social networks"] = "Información de contacto y redes sociales"; App::$strings["My other channels"] = "Mis otros canales"; -App::$strings["\$Projectname channel"] = "Canal \$Projectname"; +App::$strings["Profile Image"] = "Imagen del perfil"; +App::$strings["Edit Profiles"] = "Editar perfiles"; App::$strings["Invalid profile identifier."] = "Identificador del perfil no válido"; App::$strings["Profile Visibility Editor"] = "Editor de visibilidad del perfil"; +App::$strings["Profile"] = "Perfil"; App::$strings["Click on a contact to add or remove."] = "Pulsar en un contacto para añadirlo o eliminarlo."; App::$strings["Visible To"] = "Visible para"; -App::$strings["%d rating"] = array( - 0 => "%d valoración", - 1 => "%d valoraciones", -); -App::$strings["Gender: "] = "Género:"; -App::$strings["Status: "] = "Estado:"; -App::$strings["Homepage: "] = "Página personal:"; -App::$strings["Description:"] = "Descripción:"; -App::$strings["Public Forum:"] = "Foro público:"; -App::$strings["Keywords: "] = "Palabras clave:"; -App::$strings["Don't suggest"] = "No sugerir:"; -App::$strings["Common connections:"] = "Conexiones comunes:"; -App::$strings["Global Directory"] = "Directorio global:"; -App::$strings["Local Directory"] = "Directorio local:"; -App::$strings["Finding:"] = "Encontrar:"; -App::$strings["next page"] = "siguiente página"; -App::$strings["previous page"] = "página anterior"; -App::$strings["Sort options"] = "Ordenar opciones"; -App::$strings["Alphabetic"] = "Alfabético"; -App::$strings["Reverse Alphabetic"] = "Alfabético inverso"; -App::$strings["Newest to Oldest"] = "De más nuevo a más antiguo"; -App::$strings["Oldest to Newest"] = "De más antiguo a más nuevo"; -App::$strings["No entries (some entries may be hidden)."] = "Sin entradas (algunas entradas pueden estar ocultas)."; -App::$strings["This site is not a directory server"] = "Este sitio no es un servidor de directorio"; -App::$strings["This directory server requires an access token"] = "El servidor de este directorio necesita un \"token\" de acceso"; +App::$strings["Public Hubs"] = "Servidores públicos"; App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Los sitios listados permiten el registro público en la red \$Projectname. Todos los sitios de la red están vinculados entre sí, por lo que sus miembros, en ninguno de ellos, indican la pertenencia a la red en su conjunto. Algunos sitios pueden requerir suscripción o proporcionar planes de servicio por niveles. Los mismos hubs pueden proporcionar detalles adicionales."; App::$strings["Hub URL"] = "Dirección del hub"; App::$strings["Access Type"] = "Tipo de acceso"; App::$strings["Registration Policy"] = "Normas de registro"; +App::$strings["Ratings"] = "Valoraciones"; App::$strings["Rate"] = "Valorar"; -App::$strings["Invalid message"] = "Mensaje no válido"; -App::$strings["no results"] = "sin resultados"; -App::$strings["Delivery report for %1\$s"] = "Informe de entrega para %1\$s"; -App::$strings["channel sync processed"] = "se ha realizado la sincronización del canal"; -App::$strings["queued"] = "encolado"; -App::$strings["posted"] = "enviado"; -App::$strings["accepted for delivery"] = "aceptado para el envío"; -App::$strings["updated"] = "actualizado"; -App::$strings["update ignored"] = "actualización ignorada"; -App::$strings["permission denied"] = "permiso denegado"; -App::$strings["recipient not found"] = "destinatario no encontrado"; -App::$strings["mail recalled"] = "mensaje de correo revocado"; -App::$strings["duplicate mail received"] = "se ha recibido mensaje duplicado"; -App::$strings["mail delivered"] = "correo enviado"; -App::$strings["Delete block?"] = "¿Borrar bloque?"; -App::$strings["Edit Block"] = "Modificar este bloque"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Ha creado %1$.0f de %2$.0f canales permitidos."; -App::$strings["Name or caption"] = "Nombre o descripción"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Ejemplos: \"Juan García\", \"Luisa y sus caballos\", \"Fútbol\", \"Grupo de aviación\""; -App::$strings["Choose a short nickname"] = "Elija un alias corto"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Su alias se usará para crear una dirección de canal fácil de recordar, p. ej.: alias%s"; -App::$strings["Channel role and privacy"] = "Clase de canal y privacidad"; -App::$strings["Select a channel role with your privacy requirements."] = "Seleccione un tipo de canal con sus requisitos de privacidad"; -App::$strings["Read more about roles"] = "Leer más sobre los roles"; -App::$strings["Create Channel"] = "Crear un canal"; -App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Un canal es su identidad en esta red. Puede representar a una persona, un blog o un foro, por nombrar unos pocos ejemplos. Los canales se pueden conectar con otros canales para compartir información con una gama de permisos extremadamente detallada."; -App::$strings["or import an existing channel from another location."] = "O importar un canal existente desde otro lugar."; -App::$strings["Delete layout?"] = "¿Borrar la plantilla?"; -App::$strings["Layout Description (Optional)"] = "Descripción de la plantilla (opcional)"; -App::$strings["Layout Name"] = "Nombre de la plantilla"; -App::$strings["Edit Layout"] = "Modificar la plantilla"; App::$strings["Website:"] = "Sitio web:"; App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Canal remoto [%s] (aún no es conocido en este sitio)"; App::$strings["Rating (this information is public)"] = "Valoración (esta información es pública)"; App::$strings["Optionally explain your rating (this information is public)"] = "Opcionalmente puede explicar su valoración (esta información es pública)"; -App::$strings["Page Title"] = "Título de página"; -App::$strings["Delete webpage?"] = "¿Eliminar la página web?"; -App::$strings["Page link title"] = "Título del enlace de la página"; -App::$strings["Edit Webpage"] = "Editar la página web"; -App::$strings["Block Name"] = "Nombre del bloque"; -App::$strings["Block Title"] = "Título del bloque"; App::$strings["No ratings"] = "Ninguna valoración"; App::$strings["Rating: "] = "Valoración:"; App::$strings["Website: "] = "Sitio web:"; App::$strings["Description: "] = "Descripción:"; -App::$strings["Calendar entries imported."] = "Entradas de calendario importadas."; -App::$strings["No calendar entries found."] = "No se han encontrado entradas de calendario."; -App::$strings["Event can not end before it has started."] = "Un evento no puede terminar antes de que haya comenzado."; -App::$strings["Unable to generate preview."] = "No se puede crear la vista previa."; -App::$strings["Event title and start time are required."] = "Se requieren el título del evento y su hora de inicio."; -App::$strings["Event not found."] = "Evento no encontrado."; -App::$strings["Edit event title"] = "Editar el título del evento"; -App::$strings["Event title"] = "Título del evento"; -App::$strings["Categories (comma-separated list)"] = "Categorías (lista separada por comas)"; -App::$strings["Edit Category"] = "Editar la categoría"; -App::$strings["Category"] = "Categoría"; -App::$strings["Edit start date and time"] = "Modificar la fecha y hora de comienzo"; -App::$strings["Start date and time"] = "Fecha y hora de comienzo"; -App::$strings["Finish date and time are not known or not relevant"] = "La fecha y hora de terminación no se conocen o no son relevantes"; -App::$strings["Edit finish date and time"] = "Modificar la fecha y hora de terminación"; -App::$strings["Finish date and time"] = "Fecha y hora de terminación"; -App::$strings["Adjust for viewer timezone"] = "Ajustar para obtener el visor de los husos horarios"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Importante para los eventos que suceden en un lugar determinado. No es práctico para los globales."; -App::$strings["Edit Description"] = "Editar la descripción"; -App::$strings["Edit Location"] = "Modificar la dirección"; -App::$strings["Share this event"] = "Compartir este evento"; -App::$strings["Advanced Options"] = "Opciones avanzadas"; -App::$strings["Edit event"] = "Editar evento"; -App::$strings["Delete event"] = "Borrar evento"; -App::$strings["calendar"] = "calendario"; -App::$strings["Event removed"] = "Evento borrado"; -App::$strings["Failed to remove event"] = "Error al eliminar el evento"; App::$strings["Select a bookmark folder"] = "Seleccionar una carpeta de marcadores"; App::$strings["Save Bookmark"] = "Guardar marcador"; App::$strings["URL of bookmark"] = "Dirección del marcador"; App::$strings["Or enter new bookmark folder name"] = "O introduzca un nuevo nombre para la carpeta de marcadores"; -App::$strings["Share content from Firefox to \$Projectname"] = "Compartir contenido desde Firefox a \$Projectname"; -App::$strings["Activate the Firefox \$Projectname provider"] = "Servicio de compartición de Firefox: activar el proveedor \$Projectname "; App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Se ha superado el límite máximo de inscripciones diarias de este sitio. Por favor, pruebe de nuevo mañana."; App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Por favor, confirme que acepta los Términos del servicio. El registro ha fallado."; App::$strings["Passwords do not match."] = "Las contraseñas no coinciden."; @@ -1712,24 +1069,9 @@ App::$strings["Please enter your invitation code"] = "Por favor, introduzca el c App::$strings["no"] = "no"; App::$strings["yes"] = "sí"; App::$strings["Membership on this site is by invitation only."] = "Para registrarse en este sitio es necesaria una invitación."; +App::$strings["Register"] = "Registrarse"; App::$strings["Proceed to create your first channel"] = "Crear su primer canal"; App::$strings["Please login."] = "Por favor, inicie sesión."; -App::$strings["- select -"] = "- seleccionar -"; -App::$strings["Invalid request identifier."] = "Petición inválida del identificador."; -App::$strings["Discard"] = "Descartar"; -App::$strings["No more system notifications."] = "No hay más notificaciones del sistema"; -App::$strings["System Notifications"] = "Notificaciones del sistema"; -App::$strings["Permission Denied."] = "Permiso denegado"; -App::$strings["File not found."] = "Fichero no encontrado."; -App::$strings["Edit file permissions"] = "Modificar los permisos del fichero"; -App::$strings["Set/edit permissions"] = "Establecer/editar los permisos"; -App::$strings["Include all files and sub folders"] = "Incluir todos los ficheros y subcarpetas"; -App::$strings["Return to file list"] = "Volver a la lista de ficheros"; -App::$strings["Copy/paste this code to attach file to a post"] = "Copiar/pegar este código para adjuntar el fichero al envío"; -App::$strings["Copy/paste this URL to link file from a web page"] = "Copiar/pegar esta dirección para enlazar el fichero desde una página web"; -App::$strings["Share this file"] = "Compartir este fichero"; -App::$strings["Show URL to this file"] = "Mostrar la dirección de este fichero"; -App::$strings["Notify your contacts about this file"] = "Avisar a sus contactos sobre este fichero"; App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "La eliminación de cuentas no está permitida hasta después de que hayan transcurrido 48 horas desde el último cambio de contraseña."; App::$strings["Remove This Account"] = "Eliminar esta cuenta"; App::$strings["WARNING: "] = "ATENCIÓN:"; @@ -1739,45 +1081,24 @@ App::$strings["Please enter your password for verification:"] = "Por favor, intr App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Remover esta cuenta, todos sus canales y clones de la red"; App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Por defecto, solo las instancias de los canales ubicados en este servidor serán eliminados de la red"; App::$strings["Remove Account"] = "Eliminar cuenta"; -App::$strings["Channel added."] = "Canal añadido."; App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "La eliminación de canales no está permitida hasta pasadas 48 horas desde el último cambio de contraseña."; App::$strings["Remove This Channel"] = "Eliminar este canal"; App::$strings["This channel will be completely removed from the network. "] = "Este canal va a ser completamente eliminado de la red."; App::$strings["Remove this channel and all its clones from the network"] = "Eliminar este canal y todos sus clones de la red"; App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Por defecto, solo la instancia del canal alojado en este servidor será eliminado de la red"; App::$strings["Remove Channel"] = "Eliminar el canal"; -App::$strings["Contact not found."] = "Contacto no encontrado"; -App::$strings["Friend suggestion sent."] = "Enviar sugerencia a un amigo."; -App::$strings["Suggest Friends"] = "Sugerir amigos"; -App::$strings["Suggest a friend for %s"] = "Sugerir un amigo a %s"; App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "Encontramos un problema durante el inicio de sesión con la OpenID que proporcionó. Por favor, compruebe que la ID está correctamente escrita."; App::$strings["The error message was:"] = "El mensaje de error fue:"; App::$strings["Authentication failed."] = "Falló la autenticación."; App::$strings["Remote Authentication"] = "Acceso desde su servidor"; App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Introduzca la dirección del canal (p.ej. canal@ejemplo.com)"; App::$strings["Authenticate"] = "Acceder"; -App::$strings["Documentation Search"] = "Búsqueda de Documentación"; -App::$strings["Help:"] = "Ayuda:"; -App::$strings["\$Projectname Documentation"] = "Documentación de \$Projectname"; -App::$strings["Privacy group created."] = "El grupo de canales ha sido creado."; -App::$strings["Could not create privacy group."] = "No se puede crear el grupo de canales"; -App::$strings["Privacy group updated."] = "Grupo de canales actualizado."; -App::$strings["Create a group of channels."] = "Crear un grupo de canales."; -App::$strings["Privacy group name: "] = "Nombre del grupo de canales:"; -App::$strings["Members are visible to other channels"] = "Los miembros son visibles para otros canales"; -App::$strings["Privacy group removed."] = "Grupo de canales eliminado."; -App::$strings["Unable to remove privacy group."] = "Imposible eliminar el grupo de canales."; -App::$strings["Privacy group editor"] = "Editor de grupos de canales"; -App::$strings["Members"] = "Miembros"; -App::$strings["All Connected Channels"] = "Todos los canales conectados"; -App::$strings["Click on a channel to add or remove."] = "Haga clic en un canal para agregarlo o quitarlo."; App::$strings["Items tagged with: %s"] = "elementos etiquetados con: %s"; App::$strings["Search results for: %s"] = "Resultados de la búsqueda para: %s"; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Bienvenido a %s"; App::$strings["No service class restrictions found."] = "No se han encontrado restricciones sobre esta clase de servicio."; App::$strings["Name is required"] = "El nombre es obligatorio"; App::$strings["Key and Secret are required"] = "\"Key\" y \"Secret\" son obligatorios"; +App::$strings["Update"] = "Actualizar"; App::$strings["Not valid email."] = "Correo electrónico no válido."; App::$strings["Protected email address. Cannot change to that email."] = "Dirección de correo electrónico protegida. No se puede cambiar a ella."; App::$strings["System failure storing new email. Please try again."] = "Fallo de sistema al guardar el nuevo correo electrónico. Por favor, inténtelo de nuevo."; @@ -1849,6 +1170,7 @@ App::$strings["Allow us to suggest you as a potential friend to new members?"] = App::$strings["Your channel address is"] = "Su dirección de canal es"; App::$strings["Channel Settings"] = "Ajustes del canal"; App::$strings["Basic Settings"] = "Configuración básica"; +App::$strings["Full Name:"] = "Nombre completo:"; App::$strings["Your Timezone:"] = "Su huso horario:"; App::$strings["Default Post Location:"] = "Localización geográfica predeterminada para sus publicaciones:"; App::$strings["Geographical location to display on your posts"] = "Localización geográfica que debe mostrarse en sus publicaciones"; @@ -1917,21 +1239,6 @@ App::$strings["Personal menu to display in your channel pages"] = "Menú persona App::$strings["Remove this channel."] = "Eliminar este canal."; App::$strings["Firefox Share \$Projectname provider"] = "Servicio de compartición de Firefox: proveedor \$Projectname"; App::$strings["Start calendar week on monday"] = "Comenzar el calendario semanal por el lunes"; -App::$strings["First Name"] = "Nombre"; -App::$strings["Last Name"] = "Apellido"; -App::$strings["Nickname"] = "Sobrenombre o Alias"; -App::$strings["Full Name"] = "Nombre completo"; -App::$strings["Profile Photo 16px"] = "Foto del perfil 16px"; -App::$strings["Profile Photo 32px"] = "Foto del perfil 32px"; -App::$strings["Profile Photo 48px"] = "Foto del perfil 48px"; -App::$strings["Profile Photo 64px"] = "Foto del perfil 64px"; -App::$strings["Profile Photo 80px"] = "Foto del perfil 80px"; -App::$strings["Profile Photo 128px"] = "Foto del perfil 128px"; -App::$strings["Timezone"] = "Huso horario"; -App::$strings["Birth Year"] = "Año de nacimiento"; -App::$strings["Birth Month"] = "Mes de nacimiento"; -App::$strings["Birth Day"] = "Día de nacimiento"; -App::$strings["Birthdate"] = "Fecha de nacimiento"; App::$strings["\$Projectname Server - Setup"] = "Servidor \$Projectname - Instalación"; App::$strings["Could not connect to database."] = "No se ha podido conectar a la base de datos."; App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "No se puede conectar con la dirección del sitio indicada. Podría tratarse de un problema de SSL o DNS."; @@ -2018,224 +1325,919 @@ App::$strings["The database configuration file \".htconfig.php\" could not be wr App::$strings["Errors encountered creating database tables."] = "Se han encontrado errores al crear las tablas de la base de datos."; App::$strings["

What next

"] = "

Siguiente paso

"; App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANTE: Debe crear [manualmente] una tarea programada para el \"poller\"."; -App::$strings["%s element installed"] = "%s elemento instalado"; -App::$strings["%s element installation failed"] = "Elemento con instalación fallida: %s"; -App::$strings["Your service plan only allows %d channels."] = "Su paquete de servicios solo permite %d canales."; -App::$strings["Nothing to import."] = "No hay nada para importar."; -App::$strings["Unable to download data from old server"] = "No se han podido descargar datos de su antiguo servidor"; -App::$strings["Imported file is empty."] = "El fichero importado está vacío."; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Atención: Las versiones de la base de datos difieren en %1\$d actualizaciones."; -App::$strings["No channel. Import failed."] = "No hay canal. La importación ha fallado"; -App::$strings["You must be logged in to use this feature."] = "Debe estar registrado para poder usar esta funcionalidad."; -App::$strings["Import Channel"] = "Importar canal"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Emplee este formulario para importar un canal desde un servidor/hub diferente. Puede recuperar el canal desde el antiguo servidor/hub a través de la red o proporcionando un fichero de exportación."; -App::$strings["File to Upload"] = "Fichero para subir"; -App::$strings["Or provide the old server/hub details"] = "O proporcione los detalles de su antiguo servidor/hub"; -App::$strings["Your old identity address (xyz@example.com)"] = "Su identidad en el antiguo servidor (canal@ejemplo.com)"; -App::$strings["Your old login email address"] = "Su antigua dirección de correo electrónico"; -App::$strings["Your old login password"] = "Su antigua contraseña"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Para cualquiera de las opciones, elija si hacer de este servidor su nueva dirección primaria, o si su antigua dirección debe continuar con este papel. Usted podrá publicar desde cualquier ubicación, pero sólo una puede estar marcada como la ubicación principal para los ficheros, fotos y otras imágenes o vídeos."; -App::$strings["Make this hub my primary location"] = "Convertir este servidor en mi ubicación primaria"; -App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importar el contenido publicado si es posible (experimental - limitado por la memoria disponible"; -App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Este proceso puede tardar varios minutos en completarse. Por favor envíe el formulario una sola vez y mantenga esta página abierta hasta que termine."; -App::$strings["Import completed"] = "Importación completada"; -App::$strings["Import Items"] = "Importar elementos"; -App::$strings["Use this form to import existing posts and content from an export file."] = "Utilice este formulario para importar entradas existentes y contenido desde un archivo de exportación."; App::$strings["Files: shared with me"] = "Ficheros: compartidos conmigo"; App::$strings["NEW"] = "NUEVO"; App::$strings["Remove all files"] = "Eliminar todos los ficheros"; App::$strings["Remove this file"] = "Eliminar este fichero"; -App::$strings["Total invitation limit exceeded."] = "Se ha superado el límite máximo de invitaciones."; -App::$strings["%s : Not a valid email address."] = "%s : No es una dirección de correo electrónico válida. "; -App::$strings["Please join us on \$Projectname"] = "Únase a nosotros en \$Projectname"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Excedido el límite de invitaciones. Por favor, contacte con el Administrador de su sitio."; -App::$strings["%s : Message delivery failed."] = "%s : Falló el envío del mensaje."; -App::$strings["%d message sent."] = array( - 0 => "%d mensajes enviados.", - 1 => "%d mensajes enviados.", +App::$strings["Version %s"] = "Versión %s"; +App::$strings["Installed plugins/addons/apps:"] = "Extensiones, complementos o aplicaciones instaladas:"; +App::$strings["No installed plugins/addons/apps"] = "No hay instalada ninguna extensión, complemento o aplicación"; +App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Este es un sitio integrado en \$Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada."; +App::$strings["Tag: "] = "Etiqueta:"; +App::$strings["Last background fetch: "] = "Última actualización en segundo plano:"; +App::$strings["Current load average: "] = "Carga media actual:"; +App::$strings["Running at web location"] = "Corriendo en el sitio web"; +App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Por favor, visite hubzilla.org para más información sobre \$Projectname."; +App::$strings["Bug reports and issues: please visit"] = "Informes de errores e incidencias: por favor visite"; +App::$strings["\$projectname issues"] = "Problemas en \$projectname"; +App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com"; +App::$strings["Site Administrators"] = "Administradores del sitio"; +App::$strings["Failed to create source. No channel selected."] = "Imposible crear el origen de los contenidos. Ningún canal ha sido seleccionado."; +App::$strings["Source created."] = "Fuente creada."; +App::$strings["Source updated."] = "Fuente actualizada."; +App::$strings["*"] = "*"; +App::$strings["Channel Sources"] = "Orígenes de los contenidos del canal"; +App::$strings["Manage remote sources of content for your channel."] = "Gestionar contenido de origen remoto para su canal."; +App::$strings["New Source"] = "Nueva fuente"; +App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importar todo el contenido o una selección de los siguientes canales en este canal y distribuirlo de acuerdo con sus ajustes."; +App::$strings["Only import content with these words (one per line)"] = "Importar solo contenido que contenga estas palabras (una por línea)"; +App::$strings["Leave blank to import all public content"] = "Dejar en blanco para importar todo el contenido público"; +App::$strings["Channel Name"] = "Nombre del canal"; +App::$strings["Source not found."] = "Fuente no encontrada"; +App::$strings["Edit Source"] = "Editar fuente"; +App::$strings["Delete Source"] = "Eliminar fuente"; +App::$strings["Source removed"] = "Fuente eliminada"; +App::$strings["Unable to remove source."] = "Imposible eliminar la fuente."; +App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está siguiendo %3\$s de %2\$s"; +App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s ha dejado de seguir %3\$s de %2\$s"; +App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo."; +App::$strings["Ignore/Hide"] = "Ignorar/Ocultar"; +App::$strings["post"] = "la entrada"; +App::$strings["comment"] = "el comentario"; +App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetado %3\$s de %2\$s con %4\$s"; +App::$strings["Tag removed"] = "Etiqueta eliminada."; +App::$strings["Remove Item Tag"] = "Eliminar etiqueta del elemento."; +App::$strings["Select a tag to remove: "] = "Seleccionar una etiqueta para eliminar:"; +App::$strings["Thing updated"] = "Elemento actualizado."; +App::$strings["Object store: failed"] = "Guardar objeto: ha fallado"; +App::$strings["Thing added"] = "Elemento añadido"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Mostrar elemento"; +App::$strings["item not found."] = "elemento no encontrado."; +App::$strings["Edit Thing"] = "Editar elemento"; +App::$strings["Select a profile"] = "Seleccionar un perfil"; +App::$strings["Post an activity"] = "Publicar una actividad"; +App::$strings["Only sends to viewers of the applicable profile"] = "Sólo enviar a espectadores del perfil pertinente."; +App::$strings["Name of thing e.g. something"] = "Nombre del elemento, p. ej.:. \"algo\""; +App::$strings["URL of thing (optional)"] = "Dirección del elemento (opcional)"; +App::$strings["URL for photo of thing (optional)"] = "Dirección para la foto o elemento (opcional)"; +App::$strings["Add Thing to your Profile"] = "Añadir alguna cosa a su perfil"; +App::$strings["Export Channel"] = "Exportar el canal"; +App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido."; +App::$strings["Export Content"] = "Exportar contenidos"; +App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Exportar la información sobre su canal y el contenido reciente a un fichero de respaldo JSON, que puede ser restaurado o importado a otro servidor. Este fichero incluye todas sus conexiones, permisos, datos del perfil y publicaciones de varios meses. Puede llegar a ser MUY grande. Por favor, sea paciente, la descarga puede tardar varios minutos en comenzar."; +App::$strings["Export your posts from a given year."] = "Exporta sus publicaciones de un año dado."; +App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "También puede exportar sus mensajes y conversaciones durante un año o mes en particular. Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, intente de nuevo la selección de un rango de fechas más pequeño."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Para seleccionar todos los mensajes de un año determinado, como este año, visite %2\$s"; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %2\$s"; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Estos ficheros pueden ser importados o restaurados visitando %2\$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)."; +App::$strings["No connections."] = "Sin conexiones."; +App::$strings["Visit %s's profile [%s]"] = "Visitar el perfil de %s [%s]"; +App::$strings["View Connections"] = "Ver conexiones"; +App::$strings["Source of Item"] = "Origen del elemento"; +App::$strings["Webpages"] = "Páginas web"; +App::$strings["Actions"] = "Acciones"; +App::$strings["Page Link"] = "Vínculo de la página"; +App::$strings["Page Title"] = "Título de página"; +App::$strings["Xchan Lookup"] = "Búsqueda de canales"; +App::$strings["Lookup xchan beginning with (or webbie): "] = "Buscar un canal (o un \"webbie\") que comience por:"; +App::$strings["No username found in import file."] = "No se ha encontrado el nombre de usuario en el fichero importado."; +App::$strings["Unable to create a unique channel address. Import failed."] = "No se ha podido crear una dirección de canal única. Ha fallado la importación."; +App::$strings["Cannot locate DNS info for database server '%s'"] = "No se ha podido localizar información de DNS para el servidor de base de datos “%s”"; +App::$strings["Unable to obtain identity information from database"] = "No ha sido posible obtener información sobre la identidad desde la base de datos"; +App::$strings["Empty name"] = "Nombre vacío"; +App::$strings["Name too long"] = "Nombre demasiado largo"; +App::$strings["No account identifier"] = "Ningún identificador de la cuenta"; +App::$strings["Nickname is required."] = "Se requiere un sobrenombre (alias)."; +App::$strings["Reserved nickname. Please choose another."] = "Sobrenombre en uso. Por favor, elija otro."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "El alias contiene caracteres no admitidos o está ya en uso por otros miembros de este sitio."; +App::$strings["Unable to retrieve created identity"] = "No ha sido posible recuperar la identidad creada"; +App::$strings["Default Profile"] = "Perfil principal"; +App::$strings["Requested channel is not available."] = "El canal solicitado no está disponible."; +App::$strings["Create New Profile"] = "Crear un nuevo perfil"; +App::$strings["Edit Profile"] = "Editar el perfil"; +App::$strings["Visible to everybody"] = "Visible para todos"; +App::$strings["Gender:"] = "Género:"; +App::$strings["Status:"] = "Estado:"; +App::$strings["Homepage:"] = "Página personal:"; +App::$strings["Online Now"] = "Ahora en línea"; +App::$strings["F d"] = "d F"; +App::$strings["Birthday Reminders"] = "Recordatorios de cumpleaños"; +App::$strings["Birthdays this week:"] = "Cumpleaños de esta semana:"; +App::$strings["[No description]"] = "[Sin descripción]"; +App::$strings["Event Reminders"] = "Recordatorios de eventos"; +App::$strings["Events this week:"] = "Eventos de esta semana:"; +App::$strings["Like this channel"] = "Me gusta este canal"; +App::$strings["j F, Y"] = "j F Y"; +App::$strings["j F"] = "j F"; +App::$strings["Birthday:"] = "Cumpleaños:"; +App::$strings["for %1\$d %2\$s"] = "por %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Orientación sexual:"; +App::$strings["Tags:"] = "Etiquetas:"; +App::$strings["Political Views:"] = "Posición política:"; +App::$strings["Religion:"] = "Religión:"; +App::$strings["Hobbies/Interests:"] = "Aficciones o intereses:"; +App::$strings["Likes:"] = "Me gusta:"; +App::$strings["Dislikes:"] = "No me gusta:"; +App::$strings["Contact information and Social Networks:"] = "Información de contacto y redes sociales:"; +App::$strings["My other channels:"] = "Mis otros canales:"; +App::$strings["Musical interests:"] = "Preferencias musicales:"; +App::$strings["Books, literature:"] = "Libros, literatura:"; +App::$strings["Television:"] = "Televisión:"; +App::$strings["Film/dance/culture/entertainment:"] = "Cine, danza, cultura, entretenimiento:"; +App::$strings["Love/Romance:"] = "Vida sentimental o amorosa:"; +App::$strings["Work/employment:"] = "Trabajo:"; +App::$strings["School/education:"] = "Estudios:"; +App::$strings["Like this thing"] = "Me gusta esto"; +App::$strings["created a new post"] = "ha creado una nueva entrada"; +App::$strings["commented on %s's post"] = "ha comentado la entrada de %s"; +App::$strings["Private Message"] = "Mensaje Privado"; +App::$strings["Select"] = "Seleccionar"; +App::$strings["Save to Folder"] = "Guardar en carpeta"; +App::$strings["I will attend"] = "Participaré"; +App::$strings["I will not attend"] = "No participaré"; +App::$strings["I might attend"] = "Quizá participe"; +App::$strings["I agree"] = "Estoy de acuerdo"; +App::$strings["I disagree"] = "No estoy de acuerdo"; +App::$strings["I abstain"] = "Me abstengo"; +App::$strings["Add Star"] = "Destacar añadiendo una estrella"; +App::$strings["Remove Star"] = "Eliminar estrella"; +App::$strings["Toggle Star Status"] = "Activar o desactivar el estado de entrada preferida"; +App::$strings["starred"] = "preferidas"; +App::$strings["Message signature validated"] = "Firma de mensaje validada"; +App::$strings["Message signature incorrect"] = "Firma de mensaje incorrecta"; +App::$strings["Add Tag"] = "Añadir etiqueta"; +App::$strings["like"] = "me gusta"; +App::$strings["dislike"] = "no me gusta"; +App::$strings["Share This"] = "Compartir esto"; +App::$strings["share"] = "compartir"; +App::$strings["Delivery Report"] = "Informe de transmisión"; +App::$strings["%d comment"] = array( + 0 => "%d comentario", + 1 => "%d comentarios", +); +App::$strings["View %s's profile - %s"] = "Ver el perfil de %s - %s"; +App::$strings["to"] = "a"; +App::$strings["via"] = "mediante"; +App::$strings["Wall-to-Wall"] = "De página del perfil a página del perfil (de \"muro\" a \"muro\")"; +App::$strings["via Wall-To-Wall:"] = "Mediante el procedimiento página del perfil a página del perfil (de \"muro\" a \"muro\")"; +App::$strings["from %s"] = "desde %s"; +App::$strings["last edited: %s"] = "último cambio: %s"; +App::$strings["Expires: %s"] = "Caduca: %s"; +App::$strings["Save Bookmarks"] = "Guardar en Marcadores"; +App::$strings["Add to Calendar"] = "Añadir al calendario"; +App::$strings["Mark all seen"] = "Marcar todo como visto"; +App::$strings["[+] show all"] = "[+] mostrar todo:"; +App::$strings["Image"] = "Imagen"; +App::$strings["Insert Link"] = "Insertar enlace"; +App::$strings["Video"] = "Vídeo"; +App::$strings["Not a valid email address"] = "Dirección de correo no válida"; +App::$strings["Your email domain is not among those allowed on this site"] = "Su dirección de correo no pertenece a ninguno de los dominios permitidos en este sitio."; +App::$strings["Your email address is already registered at this site."] = "Su dirección de correo está ya registrada en este sitio."; +App::$strings["An invitation is required."] = "Es obligatorio que le inviten."; +App::$strings["Invitation could not be verified."] = "No se ha podido verificar su invitación."; +App::$strings["Please enter the required information."] = "Por favor introduzca la información requerida."; +App::$strings["Failed to store account information."] = "La información de la cuenta no se ha podido guardar."; +App::$strings["Registration confirmation for %s"] = "Confirmación de registro para %s"; +App::$strings["Registration request at %s"] = "Solicitud de registro en %s"; +App::$strings["Administrator"] = "Administrador"; +App::$strings["your registration password"] = "su contraseña de registro"; +App::$strings["Registration details for %s"] = "Detalles del registro de %s"; +App::$strings["Account approved."] = "Cuenta aprobada."; +App::$strings["Registration revoked for %s"] = "Registro revocado para %s"; +App::$strings["Account verified. Please login."] = "Cuenta verificada. Por favor, inicie sesión."; +App::$strings["Click here to upgrade."] = "Pulse aquí para actualizar"; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Esta acción supera los límites establecidos por su plan de suscripción "; +App::$strings["This action is not available under your subscription plan."] = "Esta acción no está disponible en su plan de suscripción."; +App::$strings["Currently Male"] = "Actualmente hombre"; +App::$strings["Currently Female"] = "Actualmente mujer"; +App::$strings["Mostly Male"] = "Generalmente hombre"; +App::$strings["Mostly Female"] = "Generalmente mujer"; +App::$strings["Transgender"] = "Transgénero"; +App::$strings["Intersex"] = "Intersexual"; +App::$strings["Transsexual"] = "Transexual"; +App::$strings["Hermaphrodite"] = "Hermafrodita"; +App::$strings["Neuter"] = "Neutral"; +App::$strings["Non-specific"] = "No especificado"; +App::$strings["Other"] = "Otro"; +App::$strings["Undecided"] = "Indeciso/a"; +App::$strings["Males"] = "Hombres"; +App::$strings["Females"] = "Mujeres"; +App::$strings["Gay"] = "Homosexual"; +App::$strings["Lesbian"] = "Lesbiana"; +App::$strings["No Preference"] = "Sin preferencias"; +App::$strings["Bisexual"] = "Bisexual"; +App::$strings["Autosexual"] = "Autosexual"; +App::$strings["Abstinent"] = "Casto/a"; +App::$strings["Virgin"] = "Virgen"; +App::$strings["Deviant"] = "Fuera de lo común"; +App::$strings["Fetish"] = "Fetichista"; +App::$strings["Oodles"] = "Orgías"; +App::$strings["Nonsexual"] = "Asexual"; +App::$strings["Single"] = "Soltero/a"; +App::$strings["Lonely"] = "Solo/a"; +App::$strings["Available"] = "Disponible"; +App::$strings["Unavailable"] = "No disponible"; +App::$strings["Has crush"] = "Enamorado/a"; +App::$strings["Infatuated"] = "Apasionado/a"; +App::$strings["Dating"] = "Saliendo con alguien"; +App::$strings["Unfaithful"] = "Infiel"; +App::$strings["Sex Addict"] = "Con adicción al sexo"; +App::$strings["Friends/Benefits"] = "Amigos con algo extra"; +App::$strings["Casual"] = "Casual"; +App::$strings["Engaged"] = "Prometido/a"; +App::$strings["Married"] = "Casado/a"; +App::$strings["Imaginarily married"] = "Casado/a en sueños"; +App::$strings["Partners"] = "Pareja"; +App::$strings["Cohabiting"] = "Cohabitando"; +App::$strings["Common law"] = "Matrimonio tradicional"; +App::$strings["Happy"] = "Felíz"; +App::$strings["Not looking"] = "No estoy buscando"; +App::$strings["Swinger"] = "Libertino"; +App::$strings["Betrayed"] = "Engañado/a"; +App::$strings["Separated"] = "Separado/a"; +App::$strings["Unstable"] = "Inestable"; +App::$strings["Divorced"] = "Divorciado/a"; +App::$strings["Imaginarily divorced"] = "Divorciado/a en sueños"; +App::$strings["Widowed"] = "Viudo/a"; +App::$strings["Uncertain"] = "Indeterminado"; +App::$strings["It's complicated"] = "Es complicado"; +App::$strings["Don't care"] = "No me importa"; +App::$strings["Ask me"] = "Pregúnteme"; +App::$strings["Visible to your default audience"] = "Visible para su público predeterminado."; +App::$strings["Show"] = "Mostrar"; +App::$strings["Don't show"] = "No mostrar"; +App::$strings["Other networks and post services"] = "Otras redes y servicios de publicación"; +App::$strings[" and "] = " y "; +App::$strings["public profile"] = "el perfil público"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s ha cambiado %2\$s a “%3\$s”"; +App::$strings["Visit %1\$s's %2\$s"] = "Visitar %2\$s de %1\$s"; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s ha actualizado %2\$s, cambiando %3\$s."; +App::$strings["Public Timeline"] = "Cronología pública"; +App::$strings["Site Admin"] = "Administrador del sitio"; +App::$strings["Bookmarks"] = "Marcadores"; +App::$strings["Address Book"] = "Libreta de direcciones"; +App::$strings["Login"] = "Iniciar sesión"; +App::$strings["Grid"] = "Red"; +App::$strings["Channel Home"] = "Mi canal"; +App::$strings["Events"] = "Eventos"; +App::$strings["Directory"] = "Directorio"; +App::$strings["Mail"] = "Correo"; +App::$strings["Chat"] = "Chat"; +App::$strings["Probe"] = "Probar"; +App::$strings["Suggest"] = "Sugerir"; +App::$strings["Random Channel"] = "Canal aleatorio"; +App::$strings["Invite"] = "Invitar"; +App::$strings["Features"] = "Funcionalidades"; +App::$strings["Post"] = "Publicación"; +App::$strings["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["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:"; +App::$strings["View in context"] = "Mostrar en su contexto"; +App::$strings["remove"] = "eliminar"; +App::$strings["Loading..."] = "Cargando..."; +App::$strings["Delete Selected Items"] = "Eliminar elementos seleccionados"; +App::$strings["View Source"] = "Ver la fuente original de la publicación"; +App::$strings["Follow Thread"] = "Seguir este hilo"; +App::$strings["Unfollow Thread"] = "Dejar de seguir este hilo"; +App::$strings["Activity/Posts"] = "Actividad y publicaciones"; +App::$strings["Edit Connection"] = "Editar conexión"; +App::$strings["Message"] = "Mensaje"; +App::$strings["%s likes this."] = "A %s le gusta esto."; +App::$strings["%s doesn't like this."] = "A %s no le gusta esto."; +App::$strings["%2\$d people like this."] = array( + 0 => "a %2\$d personas le gusta esto.", + 1 => "A %2\$d personas les gusta esto.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "a %2\$d personas no les gusta esto.", + 1 => "A %2\$d personas no les gusta esto.", +); +App::$strings["and"] = "y"; +App::$strings[", and %d other people"] = array( + 0 => ", y %d persona más", + 1 => ", y %d personas más", +); +App::$strings["%s like this."] = "A %s le gusta esto."; +App::$strings["%s don't like this."] = "A %s no le gusta esto."; +App::$strings["Visible to everybody"] = "Visible para cualquiera"; +App::$strings["Please enter a video link/URL:"] = "Por favor, introduzca un enlace de vídeo:"; +App::$strings["Please enter an audio link/URL:"] = "Por favor, introduzca un enlace de audio:"; +App::$strings["Tag term:"] = "Término de la etiqueta:"; +App::$strings["Where are you right now?"] = "¿Donde está ahora?"; +App::$strings["Page link name"] = "Nombre del enlace de la página"; +App::$strings["Post as"] = "Publicar como"; +App::$strings["upload photo"] = "subir foto"; +App::$strings["attach file"] = "adjuntar fichero"; +App::$strings["web link"] = "enlace web"; +App::$strings["Insert video link"] = "Insertar enlace de vídeo"; +App::$strings["video link"] = "enlace de vídeo"; +App::$strings["Insert audio link"] = "Insertar enlace de audio"; +App::$strings["audio link"] = "enlace de audio"; +App::$strings["set location"] = "establecer ubicación"; +App::$strings["clear location"] = "borrar los datos de ubicación"; +App::$strings["permissions"] = "permisos"; +App::$strings["Set publish date"] = "Establecer la fecha de publicación"; +App::$strings["Discover"] = "Descubrir"; +App::$strings["Imported public streams"] = "Contenidos públicos importados"; +App::$strings["Commented Order"] = "Comentarios recientes"; +App::$strings["Sort by Comment Date"] = "Ordenar por fecha de comentario"; +App::$strings["Posted Order"] = "Publicaciones recientes"; +App::$strings["Sort by Post Date"] = "Ordenar por fecha de publicación"; +App::$strings["Posts that mention or involve you"] = "Publicaciones que le mencionan o involucran"; +App::$strings["Activity Stream - by date"] = "Contenido - por fecha"; +App::$strings["Starred"] = "Preferidas"; +App::$strings["Favourite Posts"] = "Publicaciones favoritas"; +App::$strings["Spam"] = "Correo basura"; +App::$strings["Posts flagged as SPAM"] = "Publicaciones marcadas como basura"; +App::$strings["Status Messages and Posts"] = "Mensajes de estado y publicaciones"; +App::$strings["About"] = "Mi perfil"; +App::$strings["Profile Details"] = "Detalles del perfil"; +App::$strings["Photo Albums"] = "Álbumes de fotos"; +App::$strings["Files and Storage"] = "Ficheros y repositorio"; +App::$strings["Chatrooms"] = "Salas de chat"; +App::$strings["Saved Bookmarks"] = "Marcadores guardados"; +App::$strings["Manage Webpages"] = "Administrar páginas web"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "Participaré", + 1 => "Participaré", ); -App::$strings["You have no more invitations available"] = "No tiene más invitaciones disponibles"; -App::$strings["Send invitations"] = "Enviar invitaciones"; -App::$strings["Enter email addresses, one per line:"] = "Introduzca las direcciones de correo electrónico, una por línea:"; -App::$strings["Your message:"] = "Su mensaje:"; -App::$strings["Please join my community on \$Projectname."] = "Por favor, únase a mi comunidad en \$Projectname."; -App::$strings["You will need to supply this invitation code:"] = "Tendrá que suministrar este código de invitación:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Regístrese en cualquier sitio de \$Projectname (están todos interconectados)"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Introduzca mi dirección \$Projectname en la caja de búsqueda del sitio."; -App::$strings["or visit"] = "o visitar"; -App::$strings["3. Click [Connect]"] = "3. Pulse [conectar]"; -App::$strings["Version %s"] = "Versión %s"; -App::$strings["Installed plugins/addons/apps:"] = "Extensiones, complementos o aplicaciones instaladas:"; -App::$strings["No installed plugins/addons/apps"] = "No hay instalada ninguna extensión, complemento o aplicación"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Este es un sitio integrado en \$Projectname - una red cooperativa mundial de sitios web descentralizados de privacidad mejorada."; -App::$strings["Tag: "] = "Etiqueta:"; -App::$strings["Last background fetch: "] = "Última actualización en segundo plano:"; -App::$strings["Current load average: "] = "Carga media actual:"; -App::$strings["Running at web location"] = "Corriendo en el sitio web"; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Por favor, visite hubzilla.org para más información sobre \$Projectname."; -App::$strings["Bug reports and issues: please visit"] = "Informes de errores e incidencias: por favor visite"; -App::$strings["\$projectname issues"] = "Problemas en \$projectname"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Sugerencias, elogios, etc - por favor, un correo electrónico a \"redmatrix\" en librelist - punto com"; -App::$strings["Site Administrators"] = "Administradores del sitio"; -App::$strings["Unable to locate original post."] = "No ha sido posible encontrar la entrada original."; -App::$strings["Empty post discarded."] = "La entrada vacía ha sido desechada."; -App::$strings["Executable content type not permitted to this channel."] = "Contenido de tipo ejecutable no permitido en este canal."; -App::$strings["Duplicate post suppressed."] = "Se ha suprimido la entrada duplicada."; -App::$strings["System error. Post not saved."] = "Error del sistema. La entrada no se ha podido salvar."; -App::$strings["Unable to obtain post information from database."] = "No ha sido posible obtener información de la entrada en la base de datos."; -App::$strings["You have reached your limit of %1$.0f top level posts."] = "Ha alcanzado su límite de %1$.0f entradas en la página principal."; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Ha alcanzado su límite de %1$.0f páginas web."; -App::$strings["Comanche page description language help"] = "Página de ayuda del lenguaje de descripción de páginas (PDL) Comanche"; -App::$strings["Layout Description"] = "Descripción de la plantilla"; -App::$strings["Download PDL file"] = "Descargar el fichero PDL"; -App::$strings["Like/Dislike"] = "Me gusta/No me gusta"; -App::$strings["This action is restricted to members."] = "Esta acción está restringida solo para miembros."; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Por favor, identifíquese con su \$Projectname ID o rregístrese como un nuevo \$Projectname member para continuar."; -App::$strings["Invalid request."] = "Solicitud incorrecta."; -App::$strings["thing"] = "elemento"; -App::$strings["Channel unavailable."] = "Canal no disponible."; -App::$strings["Previous action reversed."] = "Acción anterior revocada."; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s está de acuerdo"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s no está de acuerdo"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s se abstiene"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s participa"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s no participa"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%3\$s de %2\$s: %1\$s quizá participe"; -App::$strings["Action completed."] = "Acción completada."; -App::$strings["Thank you."] = "Gracias."; -App::$strings["Location not found."] = "Dirección no encontrada."; -App::$strings["Location lookup failed."] = "Ha fallado la búsqueda de la dirección."; -App::$strings["Please select another location to become primary before removing the primary location."] = "Por favor, seleccione una copia de su canal (un clon) para convertirlo en primario antes de eliminar su canal principal."; -App::$strings["Syncing locations"] = "Sincronización de ubicaciones"; -App::$strings["No locations found."] = "No encontrada ninguna dirección."; -App::$strings["Manage Channel Locations"] = "Gestionar las direcciones del canal"; -App::$strings["Primary"] = "Primario"; -App::$strings["Drop"] = "Eliminar"; -App::$strings["Sync Now"] = "Sincronizar ahora"; -App::$strings["Please wait several minutes between consecutive operations."] = "Por favor, espere algunos minutos entre operaciones consecutivas."; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Cuando sea posible, elimine una ubicación iniciando sesión en el sitio web o \"hub\" y borrando su canal."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Utilice este formulario para eliminar la dirección si el \"hub\" no está funcionando desde hace tiempo."; -App::$strings["Failed to create source. No channel selected."] = "Imposible crear el origen de los contenidos. Ningún canal ha sido seleccionado."; -App::$strings["Source created."] = "Fuente creada."; -App::$strings["Source updated."] = "Fuente actualizada."; -App::$strings["*"] = "*"; -App::$strings["Manage remote sources of content for your channel."] = "Gestionar contenido de origen remoto para su canal."; -App::$strings["New Source"] = "Nueva fuente"; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importar todo el contenido o una selección de los siguientes canales en este canal y distribuirlo de acuerdo con sus ajustes."; -App::$strings["Only import content with these words (one per line)"] = "Importar solo contenido que contenga estas palabras (una por línea)"; -App::$strings["Leave blank to import all public content"] = "Dejar en blanco para importar todo el contenido público"; -App::$strings["Channel Name"] = "Nombre del canal"; -App::$strings["Source not found."] = "Fuente no encontrada"; -App::$strings["Edit Source"] = "Editar fuente"; -App::$strings["Delete Source"] = "Eliminar fuente"; -App::$strings["Source removed"] = "Fuente eliminada"; -App::$strings["Unable to remove source."] = "Imposible eliminar la fuente."; -App::$strings["No valid account found."] = "No se ha encontrado una cuenta válida."; -App::$strings["Password reset request issued. Check your email."] = "Se ha recibido una solicitud de restablecimiento de contraseña. Consulte su correo electrónico."; -App::$strings["Site Member (%s)"] = "Usuario del sitio (%s)"; -App::$strings["Password reset requested at %s"] = "Se ha solicitado restablecer la contraseña en %s"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "La solicitud no ha podido ser verificada. (Puede que la haya enviado con anterioridad) El restablecimiento de la contraseña ha fallado."; -App::$strings["Password Reset"] = "Restablecer la contraseña"; -App::$strings["Your password has been reset as requested."] = "Su contraseña ha sido restablecida según lo solicitó."; -App::$strings["Your new password is"] = "Su nueva contraseña es"; -App::$strings["Save or copy your new password - and then"] = "Guarde o copie su nueva contraseña - y después"; -App::$strings["click here to login"] = "pulse aquí para conectarse"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Puede cambiar la contraseña en la página Ajustes una vez iniciada la sesión."; -App::$strings["Your password has changed at %s"] = "Su contraseña en %s ha sido cambiada"; -App::$strings["Forgot your Password?"] = "¿Ha olvidado su contraseña?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Introduzca y envíe su dirección de correo electrónico para el restablecimiento de su contraseña. Luego revise su correo para obtener más instrucciones."; -App::$strings["Email Address"] = "Dirección de correo electrónico"; -App::$strings["Reset"] = "Reiniciar"; -App::$strings["Hub not found."] = "Servidor no encontrado"; -App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s está siguiendo %3\$s de %2\$s"; -App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s ha dejado de seguir %3\$s de %2\$s"; -App::$strings["Unable to lookup recipient."] = "Imposible asociar a un destinatario."; -App::$strings["Unable to communicate with requested channel."] = "Imposible comunicar con el canal solicitado."; -App::$strings["Cannot verify requested channel."] = "No se puede verificar el canal solicitado."; -App::$strings["Selected channel has private message restrictions. Send failed."] = "El canal seleccionado tiene restricciones sobre los mensajes privados. El envío falló."; -App::$strings["Messages"] = "Mensajes"; -App::$strings["Message recalled."] = "Mensaje revocado."; -App::$strings["Conversation removed."] = "Conversación eliminada."; -App::$strings["Requested channel is not in this network"] = "El canal solicitado no existe en esta red"; -App::$strings["Send Private Message"] = "Enviar un mensaje privado"; -App::$strings["To:"] = "Para:"; -App::$strings["Subject:"] = "Asunto:"; -App::$strings["Send"] = "Enviar"; -App::$strings["Delete message"] = "Borrar mensaje"; -App::$strings["Delivery report"] = "Informe de transmisión"; -App::$strings["Recall message"] = "Revocar el mensaje"; -App::$strings["Message has been recalled."] = "El mensaje ha sido revocado."; -App::$strings["Delete Conversation"] = "Eliminar conversación"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Comunicación segura no disponible. Pero puede responder desde la página del perfil del remitente."; -App::$strings["Send Reply"] = "Responder"; -App::$strings["Your message for %s (%s):"] = "Su mensaje para %s (%s):"; -App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "No hay sugerencias disponibles. Si es un sitio nuevo, espere 24 horas y pruebe de nuevo."; -App::$strings["Create a new channel"] = "Crear un nuevo canal"; -App::$strings["Current Channel"] = "Canal actual"; -App::$strings["Switch to one of your channels by selecting it."] = "Cambiar a uno de sus canales seleccionándolo."; -App::$strings["Default Channel"] = "Canal principal"; -App::$strings["Make Default"] = "Convertir en predeterminado"; -App::$strings["%d new messages"] = "%d mensajes nuevos"; -App::$strings["%d new introductions"] = "%d nuevas isolicitudes de conexión"; -App::$strings["Delegated Channel"] = "Canal delegado"; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s ha etiquetado %3\$s de %2\$s con %4\$s"; -App::$strings["Profile Match"] = "Perfil compatible"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "No hay palabras clave en el perfil principal para poder encontrar perfiles compatibles. Por favor, añada palabras clave a su perfil principal."; -App::$strings["is interested in:"] = "está interesado en:"; -App::$strings["No matches"] = "No se han encontrado perfiles compatibles"; -App::$strings["Tag removed"] = "Etiqueta eliminada."; -App::$strings["Remove Item Tag"] = "Eliminar etiqueta del elemento."; -App::$strings["Select a tag to remove: "] = "Seleccionar una etiqueta para eliminar:"; -App::$strings["Unable to update menu."] = "No se puede actualizar el menú."; -App::$strings["Unable to create menu."] = "No se puede crear el menú."; -App::$strings["Menu Name"] = "Nombre del menú"; -App::$strings["Unique name (not visible on webpage) - required"] = "Nombre único (no será visible en la página web) - requerido"; -App::$strings["Menu Title"] = "Título del menú"; -App::$strings["Visible on webpage - leave empty for no title"] = "Visible en la página web - no ponga nada si no desea un título"; -App::$strings["Allow Bookmarks"] = "Permitir marcadores"; -App::$strings["Menu may be used to store saved bookmarks"] = "El menú se puede usar para guardar marcadores"; -App::$strings["Submit and proceed"] = "Enviar y proceder"; -App::$strings["Bookmarks allowed"] = "Marcadores permitidos"; -App::$strings["Delete this menu"] = "Borrar este menú"; -App::$strings["Edit menu contents"] = "Editar los contenidos del menú"; -App::$strings["Edit this menu"] = "Modificar este menú"; -App::$strings["Menu could not be deleted."] = "El menú no puede ser eliminado."; -App::$strings["Edit Menu"] = "Modificar el menú"; -App::$strings["Add or remove entries to this menu"] = "Añadir o quitar entradas en este menú"; -App::$strings["Menu name"] = "Nombre del menú"; -App::$strings["Must be unique, only seen by you"] = "Debe ser único, solo será visible para usted"; -App::$strings["Menu title"] = "Título del menú"; -App::$strings["Menu title as seen by others"] = "El título del menú tal como será visto por los demás"; -App::$strings["Allow bookmarks"] = "Permitir marcadores"; -App::$strings["Thing updated"] = "Elemento actualizado."; -App::$strings["Object store: failed"] = "Guardar objeto: ha fallado"; -App::$strings["Thing added"] = "Elemento añadido"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Mostrar elemento"; -App::$strings["item not found."] = "elemento no encontrado."; -App::$strings["Edit Thing"] = "Editar elemento"; -App::$strings["Select a profile"] = "Seleccionar un perfil"; -App::$strings["Post an activity"] = "Publicar una actividad"; -App::$strings["Only sends to viewers of the applicable profile"] = "Sólo enviar a espectadores del perfil pertinente."; -App::$strings["Name of thing e.g. something"] = "Nombre del elemento, p. ej.:. \"algo\""; -App::$strings["URL of thing (optional)"] = "Dirección del elemento (opcional)"; -App::$strings["URL for photo of thing (optional)"] = "Dirección para la foto o elemento (opcional)"; -App::$strings["Add Thing to your Profile"] = "Añadir alguna cosa a su perfil"; -App::$strings["Export Channel"] = "Exportar el canal"; -App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Exportar la información básica del canal a un fichero. Este equivale a una copia de seguridad de sus conexiones, el perfil y datos fundamentales, que puede usarse para importar sus datos a un nuevo servidor, pero no incluye su contenido."; -App::$strings["Export Content"] = "Exportar contenidos"; -App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Exportar la información sobre su canal y el contenido reciente a un fichero de respaldo JSON, que puede ser restaurado o importado a otro servidor. Este fichero incluye todas sus conexiones, permisos, datos del perfil y publicaciones de varios meses. Puede llegar a ser MUY grande. Por favor, sea paciente, la descarga puede tardar varios minutos en comenzar."; -App::$strings["Export your posts from a given year."] = "Exporta sus publicaciones de un año dado."; -App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "También puede exportar sus mensajes y conversaciones durante un año o mes en particular. Ajuste la fecha en la barra de direcciones del navegador para seleccionar otras fechas. Si la exportación falla (posiblemente debido al agotamiento de la memoria del servidor hub), por favor, intente de nuevo la selección de un rango de fechas más pequeño."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Para seleccionar todos los mensajes de un año determinado, como este año, visite %2\$s"; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Para seleccionar todos los mensajes de un mes determinado, como el de enero de este año, visite %2\$s"; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Estos ficheros pueden ser importados o restaurados visitando %2\$s o cualquier sitio que contenga su canal. Para obtener los mejores resultados, por favor, importar o restaurar estos ficheros en orden de fecha (la más antigua primero)."; -App::$strings["No connections."] = "Sin conexiones."; -App::$strings["Visit %s's profile [%s]"] = "Visitar el perfil de %s [%s]"; -App::$strings["View Connections"] = "Ver conexiones"; -App::$strings["Source of Item"] = "Origen del elemento"; -App::$strings["Xchan Lookup"] = "Búsqueda de canales"; -App::$strings["Lookup xchan beginning with (or webbie): "] = "Buscar un canal (o un \"webbie\") que comience por:"; +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "No participaré", + 1 => "No participaré", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "Indeciso/a", + 1 => "Indecisos/as", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "De acuerdo", + 1 => "De acuerdo", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "En desacuerdo", + 1 => "En desacuerdo", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "se abstiene", + 1 => "Se abstienen", +); +App::$strings["%1\$s's bookmarks"] = "Marcadores de %1\$s"; +App::$strings["Missing room name"] = "Sala de chat sin nombre"; +App::$strings["Duplicate room name"] = "Nombre de sala duplicado."; +App::$strings["Invalid room specifier."] = "Especificador de sala no válido."; +App::$strings["Room not found."] = "Sala no encontrada."; +App::$strings["Room is full"] = "La sala está llena."; +App::$strings["New window"] = "Nueva ventana"; +App::$strings["Open the selected location in a different window or browser tab"] = "Abrir la dirección seleccionada en una ventana o pestaña aparte"; +App::$strings["User '%s' deleted"] = "El usuario '%s' ha sido eliminado"; +App::$strings["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["Frequently"] = "Frecuentemente"; +App::$strings["Hourly"] = "Cada hora"; +App::$strings["Twice daily"] = "Dos veces al día"; +App::$strings["Daily"] = "Diariamente"; +App::$strings["Weekly"] = "Semanalmente"; +App::$strings["Monthly"] = "Mensualmente"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = "GNU Social"; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["%d invitation available"] = array( + 0 => "%d invitación pendiente", + 1 => "%d invitaciones disponibles", +); +App::$strings["Find Channels"] = "Encontrar canales"; +App::$strings["Enter name or interest"] = "Introducir nombre o interés"; +App::$strings["Connect/Follow"] = "Conectar/Seguir"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Ejemplos: José Fernández, Pesca"; +App::$strings["Random Profile"] = "Perfil aleatorio"; +App::$strings["Invite Friends"] = "Invitar a amigos"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Ejemplo avanzado: nombre=juan y país=españa"; +App::$strings["Saved Folders"] = "Carpetas guardadas"; +App::$strings["Everything"] = "Todo"; +App::$strings["Categories"] = "Categorías"; +App::$strings["%d connection in common"] = array( + 0 => "%d conexión en común", + 1 => "%d conexiones en común", +); +App::$strings["show more"] = "mostrar más"; +App::$strings["Item was not found."] = "Elemento no encontrado."; +App::$strings["No source file."] = "Ningún fichero de origen"; +App::$strings["Cannot locate file to replace"] = "No se puede localizar el fichero que va a ser sustituido."; +App::$strings["Cannot locate file to revise/update"] = "No se puede localizar el fichero para revisar/actualizar"; +App::$strings["File exceeds size limit of %d"] = "El fichero supera el limite de tamaño de %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Ha alcanzado su límite de %1$.0f Mbytes de almacenamiento de adjuntos."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Error de carga, posiblemente por limite del sistema o porque la acción ha finalizado."; +App::$strings["Stored file could not be verified. Upload failed."] = "El fichero almacenado no ha podido ser verificado. El envío ha fallado."; +App::$strings["Path not available."] = "Ruta no disponible."; +App::$strings["Empty pathname"] = "Ruta vacía"; +App::$strings["duplicate filename or path"] = "Nombre duplicado de ruta o fichero"; +App::$strings["Path not found."] = "Ruta no encontrada"; +App::$strings["mkdir failed."] = "mkdir ha fallado."; +App::$strings["database storage failed."] = "el almacenamiento en la base de datos ha fallado."; +App::$strings["Empty path"] = "Ruta vacía"; +App::$strings["Birthday"] = "Cumpleaños"; +App::$strings["Age: "] = "Edad:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "AAAA-MM-DD o MM-DD"; +App::$strings["never"] = "nunca"; +App::$strings["less than a second ago"] = "hace un instante"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "hace %1\$d %2\$s"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "año", + 1 => "años", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "mes", + 1 => "meses", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "semana", + 1 => "semanas", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "día", + 1 => "días", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "hora", + 1 => "horas", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "minuto", + 1 => "minutos", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "segundo", + 1 => "segundos", +); +App::$strings["%1\$s's birthday"] = "Cumpleaños de %1\$s"; +App::$strings["Happy Birthday %1\$s"] = "Feliz cumpleaños %1\$s"; +App::$strings["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["%s "] = "%s "; +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."; +App::$strings["%1\$s sent you %2\$s."] = "%1\$s le ha enviado %2\$s."; +App::$strings["a private message"] = "un mensaje privado"; +App::$strings["Please visit %s to view and/or reply to your private messages."] = "Por favor visite %s para ver y/o responder a su mensaje privado."; +App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%4\$s[/zrl]"; +App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%5\$s de %4\$s[/zrl] "; +App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s ha comentado [zrl=%3\$s]%4\$s creado por usted[/zrl]"; +App::$strings["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla:Aviso] Nuevo comentario de %2\$s a la conversación #%1\$d"; +App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s ha comentado un elemento/conversación que ha estado siguiendo."; +App::$strings["Please visit %s to view and/or reply to the conversation."] = "Para ver o comentar la conversación, visite %s"; +App::$strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla:Aviso] %s ha publicado una entrada en su página de inicio del perfil (\"muro\")"; +App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s ha publicado en su página del perfil en %3\$s"; +App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s ha publicado en [zrl=%3\$s]su página del perfil[/zrl]"; +App::$strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla:Aviso] %s le ha etiquetado"; +App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s le ha etiquetado en %3\$s"; +App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]le etiquetó[/zrl]."; +App::$strings["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla:Aviso] %1\$s le ha dado un toque"; +App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s le ha dado un toque en %3\$s"; +App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]le ha dado un toque[/zrl]."; +App::$strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla:Aviso] %s ha etiquetado su publicación"; +App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s ha etiquetado su publicación en %3\$s"; +App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s ha etiquetado [zrl=%3\$s]su publicación[/zrl]"; +App::$strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla:Aviso] Ha recibido una solicitud de conexión"; +App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, ha recibido una nueva solicitud de conexión de '%2\$s' en %3\$s"; +App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, ha recibido [zrl=%2\$s]una nueva solicitud de conexión[/zrl] de %3\$s."; +App::$strings["You may visit their profile at %s"] = "Puede visitar su perfil en %s"; +App::$strings["Please visit %s to approve or reject the connection request."] = "Por favor, visite %s para permitir o rechazar la solicitad de conexión."; +App::$strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla:Aviso] Ha recibido una sugerencia de amistad"; +App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, ha recibido una sugerencia de conexión de '%2\$s' en %3\$s"; +App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, ha recibido [zrl=%2\$s]una sugerencia de conexión[/zrl] para %3\$s de %4\$s."; +App::$strings["Name:"] = "Nombre:"; +App::$strings["Photo:"] = "Foto:"; +App::$strings["Please visit %s to approve or reject the suggestion."] = "Por favor, visite %s para aprobar o rechazar la sugerencia."; +App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Aviso]"; +App::$strings["This event has been added to your calendar."] = "Este evento ha sido añadido a su calendario."; +App::$strings["Not specified"] = "Sin especificar"; +App::$strings["Needs Action"] = "Necesita de una intervención"; +App::$strings["Completed"] = "Completado/a"; +App::$strings["In Process"] = "En proceso"; +App::$strings["Cancelled"] = "Cancelado/a"; +App::$strings["General Features"] = "Funcionalidades básicas"; +App::$strings["Content Expiration"] = "Caducidad del contenido"; +App::$strings["Remove posts/comments and/or private messages at a future time"] = "Eliminar publicaciones/comentarios y/o mensajes privados más adelante"; +App::$strings["Multiple Profiles"] = "Múltiples perfiles"; +App::$strings["Ability to create multiple profiles"] = "Capacidad de crear múltiples perfiles"; +App::$strings["Advanced Profiles"] = "Perfiles avanzados"; +App::$strings["Additional profile sections and selections"] = "Secciones y selecciones de perfil adicionales"; +App::$strings["Profile Import/Export"] = "Importar/Exportar perfil"; +App::$strings["Save and load profile details across sites/channels"] = "Guardar y cargar detalles del perfil a través de sitios/canales"; +App::$strings["Web Pages"] = "Páginas web"; +App::$strings["Provide managed web pages on your channel"] = "Proveer páginas web gestionadas en su canal"; +App::$strings["Hide Rating"] = "Ocultar las valoraciones"; +App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Ocultar los botones de valoración en su canal y página de perfil. Tenga en cuenta, sin embargo, que la gente podrá expresar su valoración en otros lugares."; +App::$strings["Private Notes"] = "Notas privadas"; +App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Habilita una herramienta para guardar notas y recordatorios (advertencia: las notas no estarán cifradas)"; +App::$strings["Navigation Channel Select"] = "Navegación por el selector de canales"; +App::$strings["Change channels directly from within the navigation dropdown menu"] = "Cambiar de canales directamente desde el menú de navegación desplegable"; +App::$strings["Photo Location"] = "Ubicación de las fotos"; +App::$strings["If location data is available on uploaded photos, link this to a map."] = "Si los datos de ubicación están disponibles en las fotos subidas, enlazar estas a un mapa."; +App::$strings["Access Controlled Chatrooms"] = "Salas de chat moderadas"; +App::$strings["Provide chatrooms and chat services with access control."] = "Proporcionar salas y servicios de chat moderados."; +App::$strings["Smart Birthdays"] = "Cumpleaños inteligentes"; +App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Enlazar los eventos de cumpleaños con el huso horario en el caso de que sus amigos estén dispersos por el mundo."; +App::$strings["Expert Mode"] = "Modo de experto"; +App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Habilitar el modo de experto para acceder a opciones avanzadas de configuración"; +App::$strings["Premium Channel"] = "Canal premium"; +App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Le permite configurar restricciones y normas de uso a aquellos que conectan con su canal"; +App::$strings["Post Composition Features"] = "Opciones para la redacción de entradas"; +App::$strings["Large Photos"] = "Fotos de gran tamaño"; +App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Incluir miniaturas de fotos grandes (1024px) en publicaciones. Si no está habilitado, usar miniaturas pequeñas (640px)"; +App::$strings["Automatically import channel content from other channels or feeds"] = "Importar automáticamente contenido de otros canales o \"feeds\""; +App::$strings["Even More Encryption"] = "Más cifrado todavía"; +App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Permitir cifrado adicional de contenido \"punto-a-punto\" con una clave secreta compartida."; +App::$strings["Enable Voting Tools"] = "Permitir entradas con votación"; +App::$strings["Provide a class of post which others can vote on"] = "Proveer una clase de publicación en la que otros puedan votar"; +App::$strings["Delayed Posting"] = "Publicación aplazada"; +App::$strings["Allow posts to be published at a later date"] = "Permitir mensajes que se publicarán en una fecha posterior"; +App::$strings["Suppress Duplicate Posts/Comments"] = "Prevenir entradas o comentarios duplicados"; +App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Prevenir que entradas con contenido idéntico se publiquen con menos de dos minutos de intervalo."; +App::$strings["Network and Stream Filtering"] = "Filtrado del contenido"; +App::$strings["Search by Date"] = "Buscar por fecha"; +App::$strings["Ability to select posts by date ranges"] = "Capacidad de seleccionar entradas por rango de fechas"; +App::$strings["Privacy Groups"] = "Grupos de canales"; +App::$strings["Enable management and selection of privacy groups"] = "Activar la gestión y selección de grupos de canales"; +App::$strings["Saved Searches"] = "Búsquedas guardadas"; +App::$strings["Save search terms for re-use"] = "Guardar términos de búsqueda para su reutilización"; +App::$strings["Network Personal Tab"] = "Actividad personal"; +App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Habilitar una pestaña en la cual se muestren solo las entradas en las que ha participado."; +App::$strings["Network New Tab"] = "Contenido nuevo"; +App::$strings["Enable tab to display all new Network activity"] = "Habilitar una pestaña en la que se muestre solo el contenido nuevo"; +App::$strings["Affinity Tool"] = "Herramienta de afinidad"; +App::$strings["Filter stream activity by depth of relationships"] = "Filtrar el contenido según la profundidad de las relaciones"; +App::$strings["Connection Filtering"] = "Filtrado de conexiones"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filtrar publicaciones entrantes de conexiones por palabras clave o contenido"; +App::$strings["Suggest Channels"] = "Sugerir canales"; +App::$strings["Show channel suggestions"] = "Mostrar sugerencias de canales"; +App::$strings["Post/Comment Tools"] = "Gestión de entradas y comentarios"; +App::$strings["Community Tagging"] = "Etiquetas de la comunidad"; +App::$strings["Ability to tag existing posts"] = "Capacidad de etiquetar entradas existentes"; +App::$strings["Post Categories"] = "Categorías de entradas"; +App::$strings["Add categories to your posts"] = "Añadir categorías a sus publicaciones"; +App::$strings["Ability to file posts under folders"] = "Capacidad de archivar entradas en carpetas"; +App::$strings["Dislike Posts"] = "Desagrado de publicaciones"; +App::$strings["Ability to dislike posts/comments"] = "Capacidad de mostrar desacuerdo con el contenido de entradas y comentarios"; +App::$strings["Star Posts"] = "Entradas destacadas"; +App::$strings["Ability to mark special posts with a star indicator"] = "Capacidad de marcar entradas destacadas con un indicador de estrella"; +App::$strings["Tag Cloud"] = "Nube de etiquetas"; +App::$strings["Provide a personal tag cloud on your channel page"] = "Proveer nube de etiquetas personal en su página de canal"; +App::$strings["Channel is blocked on this site."] = "El canal está bloqueado en este sitio."; +App::$strings["Channel location missing."] = "Falta la dirección del canal."; +App::$strings["Response from remote channel was incomplete."] = "Respuesta incompleta del canal."; +App::$strings["Channel was deleted and no longer exists."] = "El canal ha sido eliminado y ya no existe."; +App::$strings["Protocol disabled."] = "Protocolo deshabilitado."; +App::$strings["Channel discovery failed."] = "El intento de acceder al canal ha fallado."; +App::$strings["Cannot connect to yourself."] = "No puede conectarse consigo mismo."; +App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Un grupo suprimido con este nombre ha sido restablecido. Es posible que los permisos existentes sean aplicados a este grupo y sus futuros miembros. Si no quiere esto, por favor cree otro grupo con un nombre diferente."; +App::$strings["Add new connections to this privacy group"] = "Añadir conexiones nuevas a este grupo de canales"; +App::$strings["edit"] = "editar"; +App::$strings["Edit group"] = "Editar grupo"; +App::$strings["Add privacy group"] = "Añadir un grupo de canales"; +App::$strings["Channels not in any privacy group"] = "Sin canales en ningún grupo"; +App::$strings["add"] = "añadir"; +App::$strings["(Unknown)"] = "(Desconocido)"; +App::$strings["Visible to anybody on the internet."] = "Visible para cualquiera en internet."; +App::$strings["Visible to you only."] = "Visible sólo para usted."; +App::$strings["Visible to anybody in this network."] = "Visible para cualquiera en esta red."; +App::$strings["Visible to anybody authenticated."] = "Visible para cualquiera que haya sido autenticado."; +App::$strings["Visible to anybody on %s."] = "Visible para cualquiera en %s."; +App::$strings["Visible to all connections."] = "Visible para todas las conexiones."; +App::$strings["Visible to approved connections."] = "Visible para las conexiones permitidas."; +App::$strings["Visible to specific connections."] = "Visible para conexiones específicas."; +App::$strings["Privacy group is empty."] = "El grupo de canales está vacío."; +App::$strings["Privacy group: %s"] = "Grupo de canales: %s"; +App::$strings["Connection not found."] = "Conexión no encontrada"; +App::$strings["profile photo"] = "foto del perfil"; +App::$strings["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["System"] = "Sistema"; +App::$strings["Create Personal App"] = "Crear una aplicación personal"; +App::$strings["Edit Personal App"] = "Editar una aplicación personal"; +App::$strings["Suggestions"] = "Sugerencias"; +App::$strings["See more..."] = "Ver más..."; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Tiene %1$.0f de %2$.0f conexiones permitidas."; +App::$strings["Add New Connection"] = "Añadir nueva conexión"; +App::$strings["Enter channel address"] = "Dirección del canal"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Ejemplos: manuel@ejemplo.com, https://ejemplo.com/carmen"; +App::$strings["Notes"] = "Notas"; +App::$strings["Remove term"] = "Eliminar término"; +App::$strings["Archives"] = "Hemeroteca"; +App::$strings["Refresh"] = "Recargar"; +App::$strings["Account settings"] = "Configuración de la cuenta"; +App::$strings["Channel settings"] = "Configuración del canal"; +App::$strings["Additional features"] = "Funcionalidades"; +App::$strings["Feature/Addon settings"] = "Complementos"; +App::$strings["Display settings"] = "Ajustes de visualización"; +App::$strings["Manage locations"] = "Gestión de ubicaciones (clones) del canal"; +App::$strings["Export channel"] = "Exportar canal"; +App::$strings["Connected apps"] = "Aplicaciones conectadas"; +App::$strings["Premium Channel Settings"] = "Configuración del canal premium"; +App::$strings["Private Mail Menu"] = "Menú de correo privado"; +App::$strings["Combined View"] = "Vista combinada"; +App::$strings["Inbox"] = "Bandeja de entrada"; +App::$strings["Outbox"] = "Bandeja de salida"; +App::$strings["New Message"] = "Nuevo mensaje"; +App::$strings["Conversations"] = "Conversaciones"; +App::$strings["Received Messages"] = "Mensajes recibidos"; +App::$strings["Sent Messages"] = "Enviar mensajes"; +App::$strings["No messages."] = "Sin mensajes."; +App::$strings["Delete conversation"] = "Eliminar conversación"; +App::$strings["Events Menu"] = "Menú de eventos"; +App::$strings["Day View"] = "Eventos del día"; +App::$strings["Week View"] = "Eventos de la semana"; +App::$strings["Month View"] = "Eventos del mes"; +App::$strings["Events Tools"] = "Gestión de eventos"; +App::$strings["Export Calendar"] = "Exportar el calendario"; +App::$strings["Import Calendar"] = "Importar un calendario"; +App::$strings["Overview"] = "Resumen"; +App::$strings["Chat Members"] = "Miembros del chat"; +App::$strings["Bookmarked Chatrooms"] = "Salas de chat preferidas"; +App::$strings["Suggested Chatrooms"] = "Salas de chat sugeridas"; +App::$strings["photo/image"] = "foto/imagen"; +App::$strings["Click to show more"] = "Hacer clic para ver más"; +App::$strings["Rating Tools"] = "Valoraciones"; +App::$strings["Rate Me"] = "Valorar este canal"; +App::$strings["View Ratings"] = "Mostrar las valoraciones"; +App::$strings["Forums"] = "Foros"; +App::$strings["Tasks"] = "Tareas"; +App::$strings["Documentation"] = "Documentación"; +App::$strings["Project/Site Information"] = "Información sobre el proyecto o sitio"; +App::$strings["For Members"] = "Para los miembros"; +App::$strings["For Administrators"] = "Para los administradores"; +App::$strings["For Developers"] = "Para los desarrolladores"; +App::$strings["Accounts"] = "Cuentas"; +App::$strings["Member registrations waiting for confirmation"] = "Inscripciones de nuevos miembros pendientes de aprobación"; +App::$strings["Inspect queue"] = "Examinar la cola"; +App::$strings["DB updates"] = "Actualizaciones de la base de datos"; +App::$strings["Admin"] = "Administrador"; +App::$strings["Plugin Features"] = "Extensiones"; +App::$strings["Tags"] = "Etiquetas"; +App::$strings["Keywords"] = "Palabras clave"; +App::$strings["have"] = "tener"; +App::$strings["has"] = "tiene"; +App::$strings["want"] = "quiero"; +App::$strings["wants"] = "quiere"; +App::$strings["likes"] = "gusta de"; +App::$strings["dislikes"] = "no gusta de"; +App::$strings["Delete this item?"] = "¿Borrar este elemento?"; +App::$strings["[-] show less"] = "[-] mostrar menos"; +App::$strings["[+] expand"] = "[+] expandir"; +App::$strings["[-] collapse"] = "[-] contraer"; +App::$strings["Password too short"] = "Contraseña demasiado corta"; +App::$strings["Passwords do not match"] = "Las contraseñas no coinciden"; +App::$strings["Secret Passphrase"] = "Contraseña secreta"; +App::$strings["Passphrase hint"] = "Pista de contraseña"; +App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Aviso: los permisos han cambiado pero aún no han sido enviados."; +App::$strings["close all"] = "cerrar todo"; +App::$strings["Nothing new here"] = "Nada nuevo por aquí"; +App::$strings["Rate This Channel (this is public)"] = "Valorar este canal (esto es público)"; +App::$strings["Describe (optional)"] = "Describir (opcional)"; +App::$strings["Please enter a link URL"] = "Por favor, introduzca una dirección de enlace"; +App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Cambios no guardados. ¿Está seguro de que desea abandonar la página?"; +App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; +App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; +App::$strings["ago"] = "antes"; +App::$strings["from now"] = "desde ahora"; +App::$strings["less than a minute"] = "menos de un minuto"; +App::$strings["about a minute"] = "alrededor de un minuto"; +App::$strings["%d minutes"] = "%d minutos"; +App::$strings["about an hour"] = "alrededor de una hora"; +App::$strings["about %d hours"] = "alrededor de %d horas"; +App::$strings["a day"] = "un día"; +App::$strings["%d days"] = "%d días"; +App::$strings["about a month"] = "alrededor de un mes"; +App::$strings["%d months"] = "%d meses"; +App::$strings["about a year"] = "alrededor de un año"; +App::$strings["%d years"] = "%d años"; +App::$strings[" "] = " "; +App::$strings["timeago.numbers"] = "timeago.numbers"; +App::$strings["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"; +App::$strings["Apr"] = "abr"; +App::$strings["__ctx:short__ May"] = "may"; +App::$strings["Jun"] = "jun"; +App::$strings["Jul"] = "jul"; +App::$strings["Aug"] = "ago"; +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"; +App::$strings["Wed"] = "mié"; +App::$strings["Thu"] = "jue"; +App::$strings["Fri"] = "vie"; +App::$strings["Sat"] = "sáb"; +App::$strings["__ctx:calendar__ today"] = "hoy"; +App::$strings["__ctx:calendar__ month"] = "mes"; +App::$strings["__ctx:calendar__ week"] = "semana"; +App::$strings["__ctx:calendar__ day"] = "día"; +App::$strings["__ctx:calendar__ All day"] = "Todos los días"; +App::$strings["No recipient provided."] = "No se ha especificado ningún destinatario."; +App::$strings["[no subject]"] = "[sin asunto]"; +App::$strings["Unable to determine sender."] = "No ha sido posible determinar el remitente. "; +App::$strings["Stored post could not be verified."] = "No se han podido verificar las publicaciones guardadas."; +App::$strings["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"; +App::$strings["Your posts and conversations"] = "Sus publicaciones y conversaciones"; +App::$strings["Your profile page"] = "Su página del perfil"; +App::$strings["Manage/Edit profiles"] = "Administrar/editar perfiles"; +App::$strings["Edit your profile"] = "Editar su perfil"; +App::$strings["Your photos"] = "Sus fotos"; +App::$strings["Your files"] = "Sus ficheros"; +App::$strings["Your chatrooms"] = "Sus salas de chat"; +App::$strings["Your bookmarks"] = "Sus marcadores"; +App::$strings["Your webpages"] = "Sus páginas web"; +App::$strings["Sign in"] = "Acceder"; +App::$strings["%s - click to logout"] = "%s - pulsar para finalizar sesión"; +App::$strings["Remote authentication"] = "Acceder desde su servidor"; +App::$strings["Click to authenticate to your home hub"] = "Pulsar para identificarse en su servidor de inicio"; +App::$strings["Home Page"] = "Página de inicio"; +App::$strings["Create an account"] = "Crear una cuenta"; +App::$strings["Help and documentation"] = "Ayuda y documentación"; +App::$strings["Applications, utilities, links, games"] = "Aplicaciones, utilidades, enlaces, juegos"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Buscar en el sitio por @nombre, #etiqueta, ?ayuda o contenido"; +App::$strings["Channel Directory"] = "Directorio de canales"; +App::$strings["Your grid"] = "Mi red"; +App::$strings["Mark all grid notifications seen"] = "Marcar todas las notificaciones de la red como vistas"; +App::$strings["Channel home"] = "Mi canal"; +App::$strings["Mark all channel notifications seen"] = "Marcar todas las notificaciones del canal como leídas"; +App::$strings["Notices"] = "Avisos"; +App::$strings["Notifications"] = "Notificaciones"; +App::$strings["See all notifications"] = "Ver todas las notificaciones"; +App::$strings["Private mail"] = "Correo privado"; +App::$strings["See all private messages"] = "Ver todas los mensajes privados"; +App::$strings["Mark all private messages seen"] = "Marcar todos los mensajes privados como leídos"; +App::$strings["Event Calendar"] = "Calendario de eventos"; +App::$strings["See all events"] = "Ver todos los eventos"; +App::$strings["Mark all events seen"] = "Marcar todos los eventos como leidos"; +App::$strings["Manage Your Channels"] = "Gestionar sus canales"; +App::$strings["Account/Channel Settings"] = "Ajustes de cuenta/canales"; +App::$strings["Site Setup and Configuration"] = "Ajustes y configuración del sitio"; +App::$strings["@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["Focus (Hubzilla default)"] = "Focus (predefinido)"; App::$strings["Theme settings"] = "Ajustes del tema"; App::$strings["Select scheme"] = "Elegir un esquema"; diff --git a/view/nl/hmessages.po b/view/nl/hmessages.po index 5cc64246d..85b3676f1 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-15 00:01-0700\n" -"PO-Revision-Date: 2016-04-15 18:18+0000\n" +"POT-Creation-Date: 2016-04-22 00:01-0700\n" +"PO-Revision-Date: 2016-04-25 13:03+0000\n" "Last-Translator: jeroenpraat \n" "Language-Team: Dutch (http://www.transifex.com/Friendica/red-matrix/language/nl/)\n" "MIME-Version: 1.0\n" @@ -46,16 +46,16 @@ msgstr "Planning-postvak IN" msgid "Schedule Outbox" msgstr "Planning-postvak UIT" -#: ../../Zotlabs/Storage/Browser.php:164 ../../include/apps.php:360 +#: ../../Zotlabs/Storage/Browser.php:164 ../../Zotlabs/Module/Photos.php:797 +#: ../../Zotlabs/Module/Photos.php:1241 ../../include/apps.php:360 #: ../../include/apps.php:415 ../../include/conversation.php:1037 -#: ../../include/widgets.php:1457 ../../mod/photos.php:793 -#: ../../mod/photos.php:1237 +#: ../../include/widgets.php:1457 msgid "Unknown" msgstr "Onbekend" -#: ../../Zotlabs/Storage/Browser.php:226 ../../include/apps.php:135 -#: ../../include/conversation.php:1657 ../../include/nav.php:93 -#: ../../mod/fbrowser.php:109 +#: ../../Zotlabs/Storage/Browser.php:226 ../../Zotlabs/Module/Fbrowser.php:85 +#: ../../include/apps.php:135 ../../include/conversation.php:1657 +#: ../../include/nav.php:93 msgid "Files" msgstr "Bestanden" @@ -68,21 +68,23 @@ msgid "Shared" msgstr "Gedeeld" #: ../../Zotlabs/Storage/Browser.php:230 ../../Zotlabs/Storage/Browser.php:303 -#: ../../mod/new_channel.php:138 ../../mod/webpages.php:184 -#: ../../mod/blocks.php:154 ../../mod/layouts.php:176 ../../mod/menu.php:114 +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:180 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/New_channel.php:142 +#: ../../Zotlabs/Module/Webpages.php:188 msgid "Create" msgstr "Aanmaken" #: ../../Zotlabs/Storage/Browser.php:231 ../../Zotlabs/Storage/Browser.php:305 -#: ../../include/widgets.php:1470 ../../mod/photos.php:820 -#: ../../mod/photos.php:1361 ../../mod/profile_photo.php:401 -#: ../../mod/cover_photo.php:353 +#: ../../Zotlabs/Module/Cover_photo.php:357 +#: ../../Zotlabs/Module/Photos.php:824 ../../Zotlabs/Module/Photos.php:1365 +#: ../../Zotlabs/Module/Profile_photo.php:368 ../../include/widgets.php:1470 msgid "Upload" msgstr "Uploaden" -#: ../../Zotlabs/Storage/Browser.php:235 ../../mod/admin.php:1158 -#: ../../mod/chat.php:241 ../../mod/settings.php:599 -#: ../../mod/settings.php:625 ../../mod/sharedwithme.php:95 +#: ../../Zotlabs/Storage/Browser.php:235 ../../Zotlabs/Module/Admin.php:1166 +#: ../../Zotlabs/Module/Chat.php:245 ../../Zotlabs/Module/Settings.php:590 +#: ../../Zotlabs/Module/Settings.php:616 +#: ../../Zotlabs/Module/Sharedwithme.php:99 msgid "Name" msgstr "Naam" @@ -90,36 +92,45 @@ msgstr "Naam" msgid "Type" msgstr "Type" -#: ../../Zotlabs/Storage/Browser.php:237 ../../include/text.php:1293 -#: ../../mod/sharedwithme.php:97 +#: ../../Zotlabs/Storage/Browser.php:237 +#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1293 msgid "Size" msgstr "Grootte" -#: ../../Zotlabs/Storage/Browser.php:238 ../../mod/sharedwithme.php:98 +#: ../../Zotlabs/Storage/Browser.php:238 +#: ../../Zotlabs/Module/Sharedwithme.php:102 msgid "Last Modified" msgstr "Laatst gewijzigd" -#: ../../Zotlabs/Storage/Browser.php:240 ../../include/identity.php:930 +#: ../../Zotlabs/Storage/Browser.php:240 ../../Zotlabs/Module/Admin.php:1775 +#: ../../Zotlabs/Module/Blocks.php:159 +#: ../../Zotlabs/Module/Connections.php:290 +#: ../../Zotlabs/Module/Connections.php:310 +#: ../../Zotlabs/Module/Editblock.php:140 +#: ../../Zotlabs/Module/Editlayout.php:139 +#: ../../Zotlabs/Module/Editpost.php:118 +#: ../../Zotlabs/Module/Editwebpage.php:181 +#: ../../Zotlabs/Module/Layouts.php:188 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Settings.php:650 ../../Zotlabs/Module/Thing.php:260 +#: ../../Zotlabs/Module/Webpages.php:189 ../../include/identity.php:930 #: ../../include/identity.php:934 ../../include/ItemObject.php:100 #: ../../include/apps.php:259 ../../include/menu.php:108 #: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 -#: ../../mod/admin.php:1767 ../../mod/editpost.php:114 -#: ../../mod/connections.php:286 ../../mod/connections.php:306 -#: ../../mod/editblock.php:136 ../../mod/editlayout.php:135 -#: ../../mod/webpages.php:185 ../../mod/editwebpage.php:177 -#: ../../mod/blocks.php:155 ../../mod/settings.php:659 -#: ../../mod/layouts.php:184 ../../mod/menu.php:108 ../../mod/thing.php:256 msgid "Edit" msgstr "Bewerken" -#: ../../Zotlabs/Storage/Browser.php:241 ../../include/ItemObject.php:120 -#: ../../include/apps.php:260 ../../include/conversation.php:657 -#: ../../mod/admin.php:993 ../../mod/admin.php:1152 ../../mod/admin.php:1768 -#: ../../mod/photos.php:1168 ../../mod/connections.php:259 -#: ../../mod/connedit.php:569 ../../mod/editblock.php:183 -#: ../../mod/editlayout.php:180 ../../mod/webpages.php:187 -#: ../../mod/editwebpage.php:224 ../../mod/blocks.php:157 -#: ../../mod/group.php:173 ../../mod/settings.php:660 ../../mod/thing.php:257 +#: ../../Zotlabs/Storage/Browser.php:241 ../../Zotlabs/Module/Admin.php:1001 +#: ../../Zotlabs/Module/Admin.php:1160 ../../Zotlabs/Module/Admin.php:1776 +#: ../../Zotlabs/Module/Blocks.php:161 +#: ../../Zotlabs/Module/Connections.php:263 +#: ../../Zotlabs/Module/Connedit.php:573 +#: ../../Zotlabs/Module/Editblock.php:187 +#: ../../Zotlabs/Module/Editlayout.php:184 +#: ../../Zotlabs/Module/Editwebpage.php:228 ../../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 +#: ../../include/conversation.php:657 msgid "Delete" msgstr "Verwijderen" @@ -145,58 +156,77 @@ msgstr "Nieuwe map aanmaken" msgid "Upload file" msgstr "Bestand uploaden" -#: ../../Zotlabs/Web/Router.php:47 ../../include/items.php:4671 -#: ../../include/photos.php:29 ../../include/chat.php:133 -#: ../../include/attach.php:141 ../../include/attach.php:189 -#: ../../include/attach.php:252 ../../include/attach.php:266 -#: ../../include/attach.php:273 ../../include/attach.php:338 -#: ../../include/attach.php:352 ../../include/attach.php:359 -#: ../../include/attach.php:437 ../../include/attach.php:895 -#: ../../include/attach.php:966 ../../include/attach.php:1118 -#: ../../mod/achievements.php:30 ../../mod/api.php:26 ../../mod/api.php:31 -#: ../../mod/appman.php:66 ../../mod/page.php:31 ../../mod/page.php:86 -#: ../../mod/authtest.php:13 ../../mod/pdledit.php:22 ../../mod/block.php:22 -#: ../../mod/block.php:72 ../../mod/editpost.php:13 ../../mod/photos.php:70 -#: ../../mod/bookmarks.php:57 ../../mod/mitem.php:111 -#: ../../mod/channel.php:101 ../../mod/channel.php:221 -#: ../../mod/channel.php:261 ../../mod/poke.php:133 ../../mod/chat.php:94 -#: ../../mod/chat.php:99 ../../mod/common.php:35 ../../mod/profile.php:64 -#: ../../mod/profile.php:72 ../../mod/mood.php:112 -#: ../../mod/connections.php:29 ../../mod/profile_photo.php:289 -#: ../../mod/profile_photo.php:302 ../../mod/connedit.php:362 -#: ../../mod/network.php:12 ../../mod/cover_photo.php:273 -#: ../../mod/cover_photo.php:286 ../../mod/profiles.php:198 -#: ../../mod/profiles.php:596 ../../mod/editblock.php:65 -#: ../../mod/new_channel.php:73 ../../mod/new_channel.php:100 -#: ../../mod/editlayout.php:63 ../../mod/editlayout.php:87 -#: ../../mod/rate.php:111 ../../mod/webpages.php:69 -#: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86 -#: ../../mod/editwebpage.php:101 ../../mod/editwebpage.php:125 -#: ../../mod/blocks.php:69 ../../mod/blocks.php:76 ../../mod/events.php:260 -#: ../../mod/register.php:73 ../../mod/regmod.php:17 -#: ../../mod/notifications.php:66 ../../mod/filestorage.php:18 -#: ../../mod/filestorage.php:73 ../../mod/filestorage.php:88 -#: ../../mod/filestorage.php:115 ../../mod/fsuggest.php:78 -#: ../../mod/group.php:9 ../../mod/service_limits.php:7 -#: ../../mod/settings.php:579 ../../mod/id.php:71 ../../mod/setup.php:233 -#: ../../mod/sharedwithme.php:7 ../../mod/invite.php:13 -#: ../../mod/invite.php:87 ../../mod/item.php:206 ../../mod/item.php:214 -#: ../../mod/item.php:1069 ../../mod/layouts.php:69 ../../mod/layouts.php:76 -#: ../../mod/layouts.php:87 ../../mod/like.php:177 ../../mod/locs.php:83 -#: ../../mod/sources.php:66 ../../mod/mail.php:126 ../../mod/suggest.php:26 -#: ../../mod/manage.php:6 ../../mod/menu.php:74 ../../mod/message.php:16 -#: ../../mod/thing.php:270 ../../mod/thing.php:290 ../../mod/thing.php:327 -#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 -#: ../../mod/viewsrc.php:14 ../../index.php:174 +#: ../../Zotlabs/Web/Router.php:65 ../../Zotlabs/Module/Achievements.php:34 +#: ../../Zotlabs/Module/Api.php:13 ../../Zotlabs/Module/Api.php:18 +#: ../../Zotlabs/Module/Appman.php:70 ../../Zotlabs/Module/Authtest.php:16 +#: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76 +#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 +#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Channel.php:104 +#: ../../Zotlabs/Module/Channel.php:224 ../../Zotlabs/Module/Channel.php:264 +#: ../../Zotlabs/Module/Chat.php:98 ../../Zotlabs/Module/Chat.php:103 +#: ../../Zotlabs/Module/Common.php:39 ../../Zotlabs/Module/Connections.php:33 +#: ../../Zotlabs/Module/Connedit.php:366 +#: ../../Zotlabs/Module/Cover_photo.php:277 +#: ../../Zotlabs/Module/Cover_photo.php:290 +#: ../../Zotlabs/Module/Editblock.php:69 +#: ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Editlayout.php:91 ../../Zotlabs/Module/Editpost.php:17 +#: ../../Zotlabs/Module/Editwebpage.php:68 +#: ../../Zotlabs/Module/Editwebpage.php:90 +#: ../../Zotlabs/Module/Editwebpage.php:105 +#: ../../Zotlabs/Module/Editwebpage.php:129 +#: ../../Zotlabs/Module/Events.php:264 ../../Zotlabs/Module/Filestorage.php:22 +#: ../../Zotlabs/Module/Filestorage.php:77 +#: ../../Zotlabs/Module/Filestorage.php:92 +#: ../../Zotlabs/Module/Filestorage.php:119 +#: ../../Zotlabs/Module/Fsuggest.php:82 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Id.php:76 ../../Zotlabs/Module/Invite.php:17 +#: ../../Zotlabs/Module/Invite.php:91 ../../Zotlabs/Module/Item.php:210 +#: ../../Zotlabs/Module/Item.php:218 ../../Zotlabs/Module/Item.php:1070 +#: ../../Zotlabs/Module/Layouts.php:73 ../../Zotlabs/Module/Layouts.php:80 +#: ../../Zotlabs/Module/Layouts.php:91 ../../Zotlabs/Module/Like.php:181 +#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Mail.php:130 +#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Menu.php:78 +#: ../../Zotlabs/Module/Message.php:20 ../../Zotlabs/Module/Mitem.php:115 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Network.php:16 +#: ../../Zotlabs/Module/New_channel.php:77 +#: ../../Zotlabs/Module/New_channel.php:104 +#: ../../Zotlabs/Module/Notifications.php:70 ../../Zotlabs/Module/Page.php:35 +#: ../../Zotlabs/Module/Page.php:90 ../../Zotlabs/Module/Pdledit.php:26 +#: ../../Zotlabs/Module/Photos.php:74 ../../Zotlabs/Module/Poke.php:137 +#: ../../Zotlabs/Module/Profile.php:68 ../../Zotlabs/Module/Profile.php:76 +#: ../../Zotlabs/Module/Profile_photo.php:256 +#: ../../Zotlabs/Module/Profile_photo.php:269 +#: ../../Zotlabs/Module/Profiles.php:202 ../../Zotlabs/Module/Profiles.php:600 +#: ../../Zotlabs/Module/Rate.php:115 ../../Zotlabs/Module/Register.php:77 +#: ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Service_limits.php:11 +#: ../../Zotlabs/Module/Settings.php:570 ../../Zotlabs/Module/Setup.php:238 +#: ../../Zotlabs/Module/Sharedwithme.php:11 +#: ../../Zotlabs/Module/Sources.php:70 ../../Zotlabs/Module/Suggest.php:30 +#: ../../Zotlabs/Module/Thing.php:274 ../../Zotlabs/Module/Thing.php:294 +#: ../../Zotlabs/Module/Thing.php:331 +#: ../../Zotlabs/Module/Viewconnections.php:26 +#: ../../Zotlabs/Module/Viewconnections.php:31 +#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Webpages.php:73 +#: ../../include/chat.php:133 ../../include/attach.php:141 +#: ../../include/attach.php:189 ../../include/attach.php:252 +#: ../../include/attach.php:266 ../../include/attach.php:273 +#: ../../include/attach.php:338 ../../include/attach.php:352 +#: ../../include/attach.php:359 ../../include/attach.php:437 +#: ../../include/attach.php:895 ../../include/attach.php:966 +#: ../../include/attach.php:1118 ../../include/items.php:4671 +#: ../../include/photos.php:29 ../../index.php:174 msgid "Permission denied." msgstr "Toegang geweigerd." -#: ../../Zotlabs/Web/Router.php:105 ../../mod/help.php:231 +#: ../../Zotlabs/Web/Router.php:146 ../../Zotlabs/Module/Help.php:94 msgid "Not Found" msgstr "Niet gevonden" -#: ../../Zotlabs/Web/Router.php:108 ../../mod/page.php:89 -#: ../../mod/block.php:75 ../../mod/display.php:117 ../../mod/help.php:234 +#: ../../Zotlabs/Web/Router.php:149 ../../Zotlabs/Module/Block.php:79 +#: ../../Zotlabs/Module/Display.php:121 ../../Zotlabs/Module/Help.php:97 +#: ../../Zotlabs/Module/Page.php:93 msgid "Page not found." msgstr "Pagina niet gevonden." @@ -206,9260 +236,9401 @@ msgid "" " logout and retry." msgstr "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelogd. Uitloggen en opnieuw proberen." -#: ../../Zotlabs/Zot/Auth.php:248 ../../mod/openid.php:72 -#: ../../mod/openid.php:179 +#: ../../Zotlabs/Zot/Auth.php:248 ../../Zotlabs/Module/Openid.php:76 +#: ../../Zotlabs/Module/Openid.php:183 #, php-format msgid "Welcome %s. Remote authentication successful." msgstr "Welkom %s. Authenticatie op afstand geslaagd." -#: ../../include/Import/import_diaspora.php:17 -msgid "No username found in import file." -msgstr "Geen gebruikersnaam in het importbestand gevonden." - -#: ../../include/Import/import_diaspora.php:42 ../../include/import.php:44 -msgid "Unable to create a unique channel address. Import failed." -msgstr "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt." +#: ../../Zotlabs/Module/Achievements.php:15 ../../Zotlabs/Module/Blocks.php:33 +#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editblock.php:33 +#: ../../Zotlabs/Module/Editlayout.php:31 +#: ../../Zotlabs/Module/Editwebpage.php:32 +#: ../../Zotlabs/Module/Filestorage.php:58 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Layouts.php:33 ../../Zotlabs/Module/Profile.php:20 +#: ../../Zotlabs/Module/Webpages.php:33 ../../include/identity.php:830 +msgid "Requested profile is not available." +msgstr "Opgevraagd profiel is niet beschikbaar" -#: ../../include/Import/import_diaspora.php:143 ../../mod/import.php:502 -msgid "Import completed." -msgstr "Import voltooid." +#: ../../Zotlabs/Module/Achievements.php:38 +msgid "Some blurb about what to do when you're new here" +msgstr "Welkom op $Projectname. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook apps, waar je vrijwel alle functies van $Projectname kunt vinden. Voor hulp met $Projectname klik je op het vraagteken." -#: ../../include/dba/dba_driver.php:141 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "Kan DNS-informatie voor databaseserver '%s' niet vinden" +#: ../../Zotlabs/Module/Acl.php:225 +msgid "network" +msgstr "netwerk" -#: ../../include/photo/photo_driver.php:722 ../../mod/photos.php:94 -#: ../../mod/photos.php:738 ../../mod/profile_photo.php:147 -#: ../../mod/profile_photo.php:239 ../../mod/profile_photo.php:327 -msgid "Profile Photos" -msgstr "Profielfoto's" +#: ../../Zotlabs/Module/Acl.php:235 +msgid "RSS" +msgstr "RSS" -#: ../../include/identity.php:32 -msgid "Unable to obtain identity information from database" -msgstr "Niet in staat om identiteitsinformatie uit de database te verkrijgen" +#: ../../Zotlabs/Module/Admin.php:58 +msgid "Theme settings updated." +msgstr "Thema-instellingen bijgewerkt." -#: ../../include/identity.php:66 -msgid "Empty name" -msgstr "Ontbrekende naam" +#: ../../Zotlabs/Module/Admin.php:145 ../../Zotlabs/Module/Admin.php:1197 +#: ../../Zotlabs/Module/Admin.php:1442 ../../Zotlabs/Module/Display.php:44 +#: ../../Zotlabs/Module/Filestorage.php:31 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:4592 +msgid "Item not found." +msgstr "Item niet gevonden." -#: ../../include/identity.php:69 -msgid "Name too long" -msgstr "Naam te lang" +#: ../../Zotlabs/Module/Admin.php:178 +msgid "# Accounts" +msgstr "# accounts" -#: ../../include/identity.php:180 -msgid "No account identifier" -msgstr "Geen account-identificator" +#: ../../Zotlabs/Module/Admin.php:179 +msgid "# blocked accounts" +msgstr "# geblokkeerde accounts" -#: ../../include/identity.php:192 -msgid "Nickname is required." -msgstr "Bijnaam is verplicht" +#: ../../Zotlabs/Module/Admin.php:180 +msgid "# expired accounts" +msgstr "# verlopen accounts" -#: ../../include/identity.php:206 -msgid "Reserved nickname. Please choose another." -msgstr "Deze naam is gereserveerd. Kies een andere." +#: ../../Zotlabs/Module/Admin.php:181 +msgid "# expiring accounts" +msgstr "# accounts die nog moeten verlopen" -#: ../../include/identity.php:211 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik." +#: ../../Zotlabs/Module/Admin.php:192 +msgid "# Channels" +msgstr "# Kanalen" -#: ../../include/identity.php:287 -msgid "Unable to retrieve created identity" -msgstr "Niet in staat om aangemaakte identiteit te vinden" +#: ../../Zotlabs/Module/Admin.php:193 +msgid "# primary" +msgstr "# primair" -#: ../../include/identity.php:345 -msgid "Default Profile" -msgstr "Standaardprofiel" +#: ../../Zotlabs/Module/Admin.php:194 +msgid "# clones" +msgstr "# klonen" -#: ../../include/identity.php:389 ../../include/identity.php:390 -#: ../../include/identity.php:397 ../../include/profile_selectors.php:80 -#: ../../include/widgets.php:446 ../../mod/connedit.php:591 -#: ../../mod/settings.php:349 ../../mod/settings.php:353 -#: ../../mod/settings.php:354 ../../mod/settings.php:357 -#: ../../mod/settings.php:368 -msgid "Friends" -msgstr "Vrienden" +#: ../../Zotlabs/Module/Admin.php:200 +msgid "Message queues" +msgstr "Berichtenwachtrij" -#: ../../include/identity.php:784 -msgid "Requested channel is not available." -msgstr "Opgevraagd kanaal is niet beschikbaar." +#: ../../Zotlabs/Module/Admin.php:216 ../../Zotlabs/Module/Admin.php:462 +#: ../../Zotlabs/Module/Admin.php:677 ../../Zotlabs/Module/Admin.php:717 +#: ../../Zotlabs/Module/Admin.php:992 ../../Zotlabs/Module/Admin.php:1156 +#: ../../Zotlabs/Module/Admin.php:1271 ../../Zotlabs/Module/Admin.php:1332 +#: ../../Zotlabs/Module/Admin.php:1493 ../../Zotlabs/Module/Admin.php:1527 +#: ../../Zotlabs/Module/Admin.php:1612 +msgid "Administration" +msgstr "Beheer" -#: ../../include/identity.php:830 ../../mod/achievements.php:11 -#: ../../mod/profile.php:16 ../../mod/connect.php:13 -#: ../../mod/editblock.php:29 ../../mod/editlayout.php:27 -#: ../../mod/webpages.php:29 ../../mod/editwebpage.php:28 -#: ../../mod/blocks.php:29 ../../mod/filestorage.php:54 ../../mod/hcard.php:8 -#: ../../mod/layouts.php:29 -msgid "Requested profile is not available." -msgstr "Opgevraagd profiel is niet beschikbaar" +#: ../../Zotlabs/Module/Admin.php:217 +msgid "Summary" +msgstr "Samenvatting" -#: ../../include/identity.php:923 ../../mod/profiles.php:691 -msgid "Change profile photo" -msgstr "Profielfoto veranderen" +#: ../../Zotlabs/Module/Admin.php:220 +msgid "Registered accounts" +msgstr "Geregistreerde accounts" -#: ../../include/identity.php:930 ../../include/nav.php:88 -#: ../../mod/profiles.php:776 -msgid "Edit Profiles" -msgstr "Bewerk profielen" +#: ../../Zotlabs/Module/Admin.php:221 ../../Zotlabs/Module/Admin.php:681 +msgid "Pending registrations" +msgstr "Accounts die op goedkeuring wachten" -#: ../../include/identity.php:931 -msgid "Create New Profile" -msgstr "Nieuw profiel aanmaken" +#: ../../Zotlabs/Module/Admin.php:222 +msgid "Registered channels" +msgstr "Geregistreerde kanalen" -#: ../../include/identity.php:934 ../../include/nav.php:90 -msgid "Edit Profile" -msgstr "Profiel bewerken" +#: ../../Zotlabs/Module/Admin.php:223 ../../Zotlabs/Module/Admin.php:682 +msgid "Active plugins" +msgstr "Ingeschakelde plugins" -#: ../../include/identity.php:948 ../../mod/profiles.php:766 -msgid "Profile Image" -msgstr "Profielfoto" +#: ../../Zotlabs/Module/Admin.php:224 +msgid "Version" +msgstr "Versie" -#: ../../include/identity.php:951 -msgid "Visible to everybody" -msgstr "Voor iedereen zichtbaar" +#: ../../Zotlabs/Module/Admin.php:345 +msgid "Site settings updated." +msgstr "Hub-instellingen bijgewerkt." -#: ../../include/identity.php:952 ../../mod/profiles.php:689 -#: ../../mod/profiles.php:770 -msgid "Edit visibility" -msgstr "Zichtbaarheid bewerken" +#: ../../Zotlabs/Module/Admin.php:372 ../../include/comanche.php:34 +msgid "Default" +msgstr "Standaard" -#: ../../include/identity.php:1007 ../../include/conversation.php:961 -#: ../../include/Contact.php:101 ../../include/widgets.php:147 -#: ../../include/widgets.php:184 ../../mod/directory.php:321 -#: ../../mod/suggest.php:52 ../../mod/match.php:64 -msgid "Connect" -msgstr "Verbinden" +#: ../../Zotlabs/Module/Admin.php:382 ../../Zotlabs/Module/Settings.php:796 +msgid "mobile" +msgstr "mobiel" -#: ../../include/identity.php:1022 ../../include/bb2diaspora.php:487 -#: ../../include/event.php:52 ../../include/text.php:1452 -#: ../../mod/directory.php:307 -msgid "Location:" -msgstr "Plaats:" +#: ../../Zotlabs/Module/Admin.php:384 +msgid "experimental" +msgstr "experimenteel" -#: ../../include/identity.php:1026 ../../include/identity.php:1281 -msgid "Gender:" -msgstr "Geslacht:" +#: ../../Zotlabs/Module/Admin.php:386 +msgid "unsupported" +msgstr "Niet ondersteund" -#: ../../include/identity.php:1027 ../../include/identity.php:1325 -msgid "Status:" -msgstr "Status:" +#: ../../Zotlabs/Module/Admin.php:431 ../../Zotlabs/Module/Api.php:89 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Connedit.php:657 +#: ../../Zotlabs/Module/Events.php:458 ../../Zotlabs/Module/Events.php:459 +#: ../../Zotlabs/Module/Events.php:468 +#: ../../Zotlabs/Module/Filestorage.php:155 +#: ../../Zotlabs/Module/Filestorage.php:163 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:665 +#: ../../Zotlabs/Module/Profiles.php:651 ../../Zotlabs/Module/Removeme.php:64 +#: ../../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 +msgid "No" +msgstr "Nee" -#: ../../include/identity.php:1028 ../../include/identity.php:1336 -msgid "Homepage:" -msgstr "Homepagina:" +#: ../../Zotlabs/Module/Admin.php:432 +msgid "Yes - with approval" +msgstr "Ja - met goedkeuring" -#: ../../include/identity.php:1029 -msgid "Online Now" -msgstr "Nu online" +#: ../../Zotlabs/Module/Admin.php:433 ../../Zotlabs/Module/Api.php:88 +#: ../../Zotlabs/Module/Connedit.php:379 ../../Zotlabs/Module/Events.php:458 +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:468 +#: ../../Zotlabs/Module/Filestorage.php:155 +#: ../../Zotlabs/Module/Filestorage.php:163 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Mitem.php:158 +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:232 +#: ../../Zotlabs/Module/Mitem.php:233 ../../Zotlabs/Module/Photos.php:665 +#: ../../Zotlabs/Module/Profiles.php:651 ../../Zotlabs/Module/Removeme.php:64 +#: ../../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 +msgid "Yes" +msgstr "Ja" -#: ../../include/identity.php:1116 ../../include/identity.php:1192 -#: ../../mod/ping.php:318 -msgid "g A l F d" -msgstr "G:i, l d F" +#: ../../Zotlabs/Module/Admin.php:438 +msgid "My site is not a public server" +msgstr "Mijn $Projectname-hub is niet openbaar" -#: ../../include/identity.php:1117 ../../include/identity.php:1193 -msgid "F d" -msgstr "d F" +#: ../../Zotlabs/Module/Admin.php:439 +msgid "My site has paid access only" +msgstr "Mijn $Projectname-hub kent alleen betaalde toegang" -#: ../../include/identity.php:1162 ../../include/identity.php:1232 -#: ../../mod/ping.php:341 -msgid "[today]" -msgstr "[vandaag]" +#: ../../Zotlabs/Module/Admin.php:440 +msgid "My site has free access only" +msgstr "Mijn $Projectname-hub kent alleen gratis toegang" -#: ../../include/identity.php:1173 -msgid "Birthday Reminders" -msgstr "Verjaardagsherinneringen" +#: ../../Zotlabs/Module/Admin.php:441 +msgid "My site offers free accounts with optional paid upgrades" +msgstr "Mijn $Projectname-hub biedt gratis accounts aan met betaalde uitbreidingen als optie" -#: ../../include/identity.php:1174 -msgid "Birthdays this week:" -msgstr "Verjaardagen deze week:" +#: ../../Zotlabs/Module/Admin.php:463 ../../include/widgets.php:1334 +msgid "Site" +msgstr "Hub-instellingen" -#: ../../include/identity.php:1225 -msgid "[No description]" -msgstr "[Geen omschrijving]" +#: ../../Zotlabs/Module/Admin.php:464 ../../Zotlabs/Module/Admin.php:654 +#: ../../Zotlabs/Module/Admin.php:729 ../../Zotlabs/Module/Admin.php:994 +#: ../../Zotlabs/Module/Admin.php:1158 ../../Zotlabs/Module/Admin.php:1334 +#: ../../Zotlabs/Module/Admin.php:1529 ../../Zotlabs/Module/Admin.php:1614 +#: ../../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/Events.php:669 +#: ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Fsuggest.php:112 ../../Zotlabs/Module/Group.php:85 +#: ../../Zotlabs/Module/Import.php:546 +#: ../../Zotlabs/Module/Import_items.php:120 +#: ../../Zotlabs/Module/Invite.php:146 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mail.php:384 ../../Zotlabs/Module/Mitem.php:235 +#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Pdledit.php:66 ../../Zotlabs/Module/Photos.php:676 +#: ../../Zotlabs/Module/Photos.php:1051 ../../Zotlabs/Module/Photos.php:1091 +#: ../../Zotlabs/Module/Photos.php:1209 ../../Zotlabs/Module/Poke.php:186 +#: ../../Zotlabs/Module/Profiles.php:691 ../../Zotlabs/Module/Rate.php:172 +#: ../../Zotlabs/Module/Settings.php:588 ../../Zotlabs/Module/Settings.php:701 +#: ../../Zotlabs/Module/Settings.php:729 ../../Zotlabs/Module/Settings.php:752 +#: ../../Zotlabs/Module/Settings.php:840 +#: ../../Zotlabs/Module/Settings.php:1032 ../../Zotlabs/Module/Setup.php:335 +#: ../../Zotlabs/Module/Setup.php:376 ../../Zotlabs/Module/Sources.php:108 +#: ../../Zotlabs/Module/Sources.php:142 ../../Zotlabs/Module/Thing.php:316 +#: ../../Zotlabs/Module/Thing.php:362 ../../Zotlabs/Module/Xchan.php:15 +#: ../../include/ItemObject.php:703 ../../include/widgets.php:708 +#: ../../include/widgets.php:720 ../../include/js_strings.php:22 +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Submit" +msgstr "Opslaan" -#: ../../include/identity.php:1243 -msgid "Event Reminders" -msgstr "Herinneringen" +#: ../../Zotlabs/Module/Admin.php:465 ../../Zotlabs/Module/Register.php:245 +msgid "Registration" +msgstr "Registratie" -#: ../../include/identity.php:1244 -msgid "Events this week:" -msgstr "Gebeurtenissen deze week:" +#: ../../Zotlabs/Module/Admin.php:466 +msgid "File upload" +msgstr "Bestand uploaden" -#: ../../include/identity.php:1279 ../../mod/settings.php:1047 -msgid "Full Name:" -msgstr "Volledige naam:" +#: ../../Zotlabs/Module/Admin.php:467 +msgid "Policies" +msgstr "Beleid" -#: ../../include/identity.php:1286 -msgid "Like this channel" -msgstr "Vind dit kanaal leuk" +#: ../../Zotlabs/Module/Admin.php:468 ../../include/contact_widgets.php:19 +msgid "Advanced" +msgstr "Geavanceerd" -#: ../../include/identity.php:1297 ../../include/ItemObject.php:179 -#: ../../include/conversation.php:1760 ../../include/taxonomy.php:415 -#: ../../mod/photos.php:1125 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "vindt dit leuk" -msgstr[1] "vinden dit leuk" +#: ../../Zotlabs/Module/Admin.php:472 +msgid "Site name" +msgstr "Naam van deze $Projectname-hub" -#: ../../include/identity.php:1310 -msgid "j F, Y" -msgstr "F j Y" +#: ../../Zotlabs/Module/Admin.php:473 +msgid "Banner/Logo" +msgstr "Banner/logo" -#: ../../include/identity.php:1311 -msgid "j F" -msgstr "F j" +#: ../../Zotlabs/Module/Admin.php:474 +msgid "Administrator Information" +msgstr "Informatie over de beheerder van deze hub" -#: ../../include/identity.php:1318 -msgid "Birthday:" -msgstr "Geboortedatum:" +#: ../../Zotlabs/Module/Admin.php:474 +msgid "" +"Contact information for site administrators. Displayed on siteinfo page. " +"BBCode can be used here" +msgstr "Contactinformatie voor hub-beheerders. Getoond op pagina met hub-informatie. Er kan hier bbcode gebruikt worden." -#: ../../include/identity.php:1322 ../../mod/directory.php:302 -msgid "Age:" -msgstr "Leeftijd:" +#: ../../Zotlabs/Module/Admin.php:475 +msgid "System language" +msgstr "Standaardtaal" -#: ../../include/identity.php:1331 -#, php-format -msgid "for %1$d %2$s" -msgstr "voor %1$d %2$s" +#: ../../Zotlabs/Module/Admin.php:476 +msgid "System theme" +msgstr "Standaardthema" -#: ../../include/identity.php:1334 -msgid "Sexual Preference:" -msgstr "Seksuele voorkeur:" +#: ../../Zotlabs/Module/Admin.php:476 +msgid "" +"Default system theme - may be over-ridden by user profiles - change theme settings" +msgstr "Standaardthema voor $Projectname-hub (kan door lid veranderd worden) - verander thema-instellingen" -#: ../../include/identity.php:1338 ../../mod/directory.php:318 -msgid "Hometown:" -msgstr "Oorspronkelijk uit:" +#: ../../Zotlabs/Module/Admin.php:477 +msgid "Mobile system theme" +msgstr "Standaardthema voor mobiel" -#: ../../include/identity.php:1340 -msgid "Tags:" -msgstr "Tags:" +#: ../../Zotlabs/Module/Admin.php:477 +msgid "Theme for mobile devices" +msgstr "Thema voor mobiele apparaten" -#: ../../include/identity.php:1342 -msgid "Political Views:" -msgstr "Politieke overtuigingen:" +#: ../../Zotlabs/Module/Admin.php:479 +msgid "Allow Feeds as Connections" +msgstr "Sta feeds toe als connecties" -#: ../../include/identity.php:1344 -msgid "Religion:" -msgstr "Religie:" +#: ../../Zotlabs/Module/Admin.php:479 +msgid "(Heavy system resource usage)" +msgstr "(sterk negatieve invloed op systeembronnen hub)" -#: ../../include/identity.php:1346 ../../mod/directory.php:320 -msgid "About:" -msgstr "Over:" +#: ../../Zotlabs/Module/Admin.php:480 +msgid "Maximum image size" +msgstr "Maximale grootte van afbeeldingen" -#: ../../include/identity.php:1348 -msgid "Hobbies/Interests:" -msgstr "Hobby's/interesses:" +#: ../../Zotlabs/Module/Admin.php:480 +msgid "" +"Maximum size in bytes of uploaded images. Default is 0, which means no " +"limits." +msgstr "Maximale grootte in bytes voor afbeeldingen die worden geüpload. Standaard is 0, wat geen limiet betekend." -#: ../../include/identity.php:1350 -msgid "Likes:" -msgstr "Houdt van:" +#: ../../Zotlabs/Module/Admin.php:481 +msgid "Does this site allow new member registration?" +msgstr "Staat deze hub nieuwe accounts toe?" -#: ../../include/identity.php:1352 -msgid "Dislikes:" -msgstr "Houdt niet van:" +#: ../../Zotlabs/Module/Admin.php:482 +msgid "Invitation only" +msgstr "Alleen op uitnodiging" -#: ../../include/identity.php:1354 -msgid "Contact information and Social Networks:" -msgstr "Contactinformatie en sociale netwerken:" +#: ../../Zotlabs/Module/Admin.php:482 +msgid "" +"Only allow new member registrations with an invitation code. Above register " +"policy must be set to Yes." +msgstr "Sta alleen nieuwe registraties toe van mensen die een uitnodigingscode hebben. Bovenstaand accountbeleid moet op Ja staan." -#: ../../include/identity.php:1356 -msgid "My other channels:" -msgstr "Mijn andere kanalen" +#: ../../Zotlabs/Module/Admin.php:483 +msgid "Which best describes the types of account offered by this hub?" +msgstr "Wat voor soort accounts biedt deze $Projectname-hub aan? Kies wat het meest in de buurt komt." -#: ../../include/identity.php:1358 -msgid "Musical interests:" -msgstr "Muzikale interesses:" +#: ../../Zotlabs/Module/Admin.php:484 +msgid "Register text" +msgstr "Tekst tijdens registratie" -#: ../../include/identity.php:1360 -msgid "Books, literature:" -msgstr "Boeken, literatuur:" +#: ../../Zotlabs/Module/Admin.php:484 +msgid "Will be displayed prominently on the registration page." +msgstr "Tekst dat op de pagina voor het registreren van nieuwe accounts wordt getoond." -#: ../../include/identity.php:1362 -msgid "Television:" -msgstr "Televisie:" +#: ../../Zotlabs/Module/Admin.php:485 +msgid "Site homepage to show visitors (default: login box)" +msgstr "Homepagina van deze hub die aan bezoekers wordt getoond (standaard: inlogformulier)" -#: ../../include/identity.php:1364 -msgid "Film/dance/culture/entertainment:" -msgstr "Films/dansen/cultuur/vermaak:" +#: ../../Zotlabs/Module/Admin.php:485 +msgid "" +"example: 'public' to show public stream, 'page/sys/home' to show a system " +"webpage called 'home' or 'include:home.html' to include a file." +msgstr "voorbeeld: 'public' om de openbare stream te tonen, 'page/sys/home' om de webpagina 'home' van het systeemkanaal te tonen of 'include:home.html' om een gewoon bestand te gebruiken." -#: ../../include/identity.php:1366 -msgid "Love/Romance:" -msgstr "Liefde/romantiek:" +#: ../../Zotlabs/Module/Admin.php:486 +msgid "Preserve site homepage URL" +msgstr "Behoudt de URL van de hub (/)" -#: ../../include/identity.php:1368 -msgid "Work/employment:" -msgstr "Werk/beroep:" +#: ../../Zotlabs/Module/Admin.php:486 +msgid "" +"Present the site homepage in a frame at the original location instead of " +"redirecting" +msgstr "Toon de homepagina van de hub in een frame op de oorspronkelijke locatie (/), i.p.v. een doorverwijzing naar een andere locatie (bv. .../home.html)" -#: ../../include/identity.php:1370 -msgid "School/education:" -msgstr "School/opleiding:" +#: ../../Zotlabs/Module/Admin.php:487 +msgid "Accounts abandoned after x days" +msgstr "Accounts als verlaten beschouwen na zoveel aantal dagen:" -#: ../../include/identity.php:1388 ../../include/apps.php:138 -#: ../../mod/profperm.php:112 -msgid "Profile" -msgstr "Profiel" +#: ../../Zotlabs/Module/Admin.php:487 +msgid "" +"Will not waste system resources polling external sites for abandonded " +"accounts. Enter 0 for no time limit." +msgstr "Zal geen systeembronnen verspillen door polling van externe hubs voor verlaten accounts. Vul 0 in voor geen tijdslimiet." -#: ../../include/identity.php:1390 -msgid "Like this thing" -msgstr "Vind dit ding leuk" +#: ../../Zotlabs/Module/Admin.php:488 +msgid "Allowed friend domains" +msgstr "Toegestane domeinen" -#: ../../include/identity.php:1800 ../../mod/cover_photo.php:236 -msgid "cover photo" -msgstr "omslagfoto" +#: ../../Zotlabs/Module/Admin.php:488 +msgid "" +"Comma separated list of domains which are allowed to establish friendships " +"with this site. Wildcards are accepted. Empty to allow any domains" +msgstr "Komma-gescheiden lijst van domeinen waarvan kanalen connecties kunnen aangaan met kanalen op deze $Projectname-hub. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten." -#: ../../include/notify.php:20 -msgid "created a new post" -msgstr "maakte een nieuw bericht aan" +#: ../../Zotlabs/Module/Admin.php:489 +msgid "Allowed email domains" +msgstr "Toegestane e-maildomeinen" -#: ../../include/notify.php:21 -#, php-format -msgid "commented on %s's post" -msgstr "gaf een reactie op een bericht van %s" +#: ../../Zotlabs/Module/Admin.php:489 +msgid "" +"Comma separated list of domains which are allowed in email addresses for " +"registrations to this site. Wildcards are accepted. Empty to allow any " +"domains" +msgstr "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te laten." -#: ../../include/ItemObject.php:89 ../../include/conversation.php:664 -msgid "Private Message" -msgstr "Niet voor iedereen zichtbaar" +#: ../../Zotlabs/Module/Admin.php:490 +msgid "Not allowed email domains" +msgstr "Niet toegestane e-maildomeinen" -#: ../../include/ItemObject.php:126 ../../include/conversation.php:656 -msgid "Select" -msgstr "Kies" +#: ../../Zotlabs/Module/Admin.php:490 +msgid "" +"Comma separated list of domains which are not allowed in email addresses for" +" registrations to this site. Wildcards are accepted. Empty to allow any " +"domains, unless allowed domains have been defined." +msgstr "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen niet op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te staan, tenzij er toegestane domeinen zijn ingesteld. " -#: ../../include/ItemObject.php:130 -msgid "Save to Folder" -msgstr "In map opslaan" +#: ../../Zotlabs/Module/Admin.php:491 +msgid "Verify Email Addresses" +msgstr "E-mailadres verifieren" -#: ../../include/ItemObject.php:151 -msgid "I will attend" -msgstr "Aanwezig" +#: ../../Zotlabs/Module/Admin.php:491 +msgid "" +"Check to verify email addresses used in account registration (recommended)." +msgstr "Inschakelen om e-mailadressen te verifiëren die tijdens de accountregistratie worden gebruikt (aanbevolen)." -#: ../../include/ItemObject.php:151 -msgid "I will not attend" -msgstr "Niet aanwezig" +#: ../../Zotlabs/Module/Admin.php:492 +msgid "Force publish" +msgstr "Dwing kanaalvermelding af" -#: ../../include/ItemObject.php:151 -msgid "I might attend" -msgstr "Mogelijk aanwezig" +#: ../../Zotlabs/Module/Admin.php:492 +msgid "" +"Check to force all profiles on this site to be listed in the site directory." +msgstr "Vink dit aan om af te dwingen dat alle kanalen op deze hub in de kanalengids worden vermeld." -#: ../../include/ItemObject.php:161 -msgid "I agree" -msgstr "Eens" +#: ../../Zotlabs/Module/Admin.php:493 +msgid "Import Public Streams" +msgstr "Openbare streams importeren" -#: ../../include/ItemObject.php:161 -msgid "I disagree" -msgstr "Oneens" +#: ../../Zotlabs/Module/Admin.php:493 +msgid "" +"Import and allow access to public content pulled from other sites. Warning: " +"this content is unmoderated." +msgstr "Toegang verlenen tot openbare berichten die vanuit andere hubs worden geïmporteerd. Waarschuwing: de inhoud van deze berichten wordt niet gemodereerd." -#: ../../include/ItemObject.php:161 -msgid "I abstain" -msgstr "Onthouding" +#: ../../Zotlabs/Module/Admin.php:494 +msgid "Login on Homepage" +msgstr "Inlogformulier op de homepagina" -#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 -#: ../../include/conversation.php:1736 ../../mod/photos.php:1121 -#: ../../mod/photos.php:1133 -msgid "View all" -msgstr "Toon alles" +#: ../../Zotlabs/Module/Admin.php:494 +msgid "" +"Present a login box to visitors on the home page if no other content has " +"been configured." +msgstr "Toon een inlogformulier voor bezoekers op de homepagina wanneer geen andere inhoud is geconfigureerd. " -#: ../../include/ItemObject.php:184 ../../include/conversation.php:1763 -#: ../../mod/photos.php:1130 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "vindt dit niet leuk" -msgstr[1] "vinden dit niet leuk" +#: ../../Zotlabs/Module/Admin.php:495 +msgid "Enable context help" +msgstr "Schakel contextuele hulp in" -#: ../../include/ItemObject.php:212 -msgid "Add Star" -msgstr "Ster toevoegen" +#: ../../Zotlabs/Module/Admin.php:495 +msgid "" +"Display contextual help for the current page when the help button is " +"pressed." +msgstr "Toon hulp en documentatie voor de op dat moment getoonde pagina, wanneer op de hulp-knop wordt geklikt." -#: ../../include/ItemObject.php:213 -msgid "Remove Star" -msgstr "Ster verwijderen" +#: ../../Zotlabs/Module/Admin.php:497 +msgid "Directory Server URL" +msgstr "Server-URL voor de kanalengids" -#: ../../include/ItemObject.php:214 -msgid "Toggle Star Status" -msgstr "Ster toevoegen of verwijderen" +#: ../../Zotlabs/Module/Admin.php:497 +msgid "Default directory server" +msgstr "Standaardserver voor de kanalengids" -#: ../../include/ItemObject.php:218 -msgid "starred" -msgstr "met ster" +#: ../../Zotlabs/Module/Admin.php:499 +msgid "Proxy user" +msgstr "Gebruikersnaam proxy" -#: ../../include/ItemObject.php:227 ../../include/conversation.php:671 -msgid "Message signature validated" -msgstr "Berichtkenmerk gevalideerd" +#: ../../Zotlabs/Module/Admin.php:500 +msgid "Proxy URL" +msgstr "Proxy-URL" -#: ../../include/ItemObject.php:228 ../../include/conversation.php:672 -msgid "Message signature incorrect" -msgstr "Berichtkenmerk onjuist" +#: ../../Zotlabs/Module/Admin.php:501 +msgid "Network timeout" +msgstr "Netwerktimeout" -#: ../../include/ItemObject.php:236 -msgid "Add Tag" -msgstr "Tag toevoegen" +#: ../../Zotlabs/Module/Admin.php:501 +msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." +msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)" -#: ../../include/ItemObject.php:254 ../../mod/photos.php:1065 -msgid "I like this (toggle)" -msgstr "Vind ik leuk" +#: ../../Zotlabs/Module/Admin.php:502 +msgid "Delivery interval" +msgstr "Afleveringsinterval" -#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:328 -msgid "like" -msgstr "vind dit leuk" +#: ../../Zotlabs/Module/Admin.php:502 +msgid "" +"Delay background delivery processes by this many seconds to reduce system " +"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " +"for large dedicated servers." +msgstr "Vertraag de achtergrondprocessen voor het afleveren met een aantal seconden om de systeembelasting te verminderen. Aanbevolen: 4-5 voor shared hosts, 2-3 voor virtual private servers (VPS) en 0-1 voor grote dedicated servers." -#: ../../include/ItemObject.php:255 ../../mod/photos.php:1066 -msgid "I don't like this (toggle)" -msgstr "Vind ik niet leuk" +#: ../../Zotlabs/Module/Admin.php:503 +msgid "Deliveries per process" +msgstr "Leveringen per serverproces" -#: ../../include/ItemObject.php:255 ../../include/taxonomy.php:329 -msgid "dislike" -msgstr "vind dit niet leuk" +#: ../../Zotlabs/Module/Admin.php:503 +msgid "" +"Number of deliveries to attempt in a single operating system process. Adjust" +" if necessary to tune system performance. Recommend: 1-5." +msgstr "Aantal leveringen die aan één serverproces worden meegegeven. Pas dit aan wanneer het nodig is om systeemprestaties te verbeteren. Aangeraden: 1-5" -#: ../../include/ItemObject.php:259 -msgid "Share This" -msgstr "Delen" +#: ../../Zotlabs/Module/Admin.php:504 +msgid "Poll interval" +msgstr "Poll-interval" -#: ../../include/ItemObject.php:259 -msgid "share" -msgstr "delen" +#: ../../Zotlabs/Module/Admin.php:504 +msgid "" +"Delay background polling processes by this many seconds to reduce system " +"load. If 0, use delivery interval." +msgstr "De achtergrondprocessen voor het afleveren met zoveel seconden vertragen om de systeembelasting te verminderen. 0 om de afleveringsinterval te gebruiken." -#: ../../include/ItemObject.php:268 -msgid "Delivery Report" -msgstr "Afleveringsrapport" +#: ../../Zotlabs/Module/Admin.php:505 +msgid "Maximum Load Average" +msgstr "Maximaal gemiddelde systeembelasting" -#: ../../include/ItemObject.php:286 -#, php-format -msgid "%d comment" -msgid_plural "%d comments" -msgstr[0] "%d reactie" -msgstr[1] "%d reacties weergeven" +#: ../../Zotlabs/Module/Admin.php:505 +msgid "" +"Maximum system load before delivery and poll processes are deferred - " +"default 50." +msgstr "Maximale systeembelasting voordat de afleverings- en polllingsprocessen worden uitgesteld. Standaard is 50." -#: ../../include/ItemObject.php:315 ../../include/ItemObject.php:316 -#, php-format -msgid "View %s's profile - %s" -msgstr "Profiel van %s bekijken - %s" +#: ../../Zotlabs/Module/Admin.php:506 +msgid "Expiration period in days for imported (grid/network) content" +msgstr "Aantal dagen waarna geïmporteerde inhoud uit iemands grid/netwerk-pagina wordt verwijderd." -#: ../../include/ItemObject.php:319 -msgid "to" -msgstr "aan" - -#: ../../include/ItemObject.php:320 -msgid "via" -msgstr "via" +#: ../../Zotlabs/Module/Admin.php:506 +msgid "0 for no expiration of imported content" +msgstr "Dit geldt alleen voor inhoud van andere kanalen, dus niet voor iemands eigen kanaal. 0 voor het niet verwijderen van geïmporteerde inhoud." -#: ../../include/ItemObject.php:321 -msgid "Wall-to-Wall" -msgstr "Kanaal-naar-kanaal" +#: ../../Zotlabs/Module/Admin.php:643 ../../Zotlabs/Module/Admin.php:644 +#: ../../Zotlabs/Module/Settings.php:720 +msgid "Off" +msgstr "Uit" -#: ../../include/ItemObject.php:322 -msgid "via Wall-To-Wall:" -msgstr "via kanaal-naar-kanaal" +#: ../../Zotlabs/Module/Admin.php:643 ../../Zotlabs/Module/Admin.php:644 +#: ../../Zotlabs/Module/Settings.php:720 +msgid "On" +msgstr "Aan" -#: ../../include/ItemObject.php:334 ../../include/conversation.php:719 +#: ../../Zotlabs/Module/Admin.php:644 #, php-format -msgid "from %s" -msgstr "van %s" +msgid "Lock feature %s" +msgstr " Vergrendel de functie '%s'" -#: ../../include/ItemObject.php:337 ../../include/conversation.php:722 -#, php-format -msgid "last edited: %s" -msgstr "laatst bewerkt: %s" +#: ../../Zotlabs/Module/Admin.php:652 +msgid "Manage Additional Features" +msgstr "Beheer - Extra functies" -#: ../../include/ItemObject.php:338 ../../include/conversation.php:723 -#, php-format -msgid "Expires: %s" -msgstr "Verloopt: %s" +#: ../../Zotlabs/Module/Admin.php:669 +msgid "No server found" +msgstr "Geen hub gevonden" -#: ../../include/ItemObject.php:362 -msgid "Save Bookmarks" -msgstr "Bladwijzers opslaan" +#: ../../Zotlabs/Module/Admin.php:676 ../../Zotlabs/Module/Admin.php:1006 +msgid "ID" +msgstr "ID" -#: ../../include/ItemObject.php:363 -msgid "Add to Calendar" -msgstr "Aan agenda toevoegen" +#: ../../Zotlabs/Module/Admin.php:676 +msgid "for channel" +msgstr "voor kanaal" -#: ../../include/ItemObject.php:372 -msgid "Mark all seen" -msgstr "Markeer alles als bekeken" +#: ../../Zotlabs/Module/Admin.php:676 +msgid "on server" +msgstr "op hub" -#: ../../include/ItemObject.php:378 ../../mod/photos.php:1251 -msgctxt "noun" -msgid "Likes" -msgstr "vinden dit leuk" +#: ../../Zotlabs/Module/Admin.php:676 ../../Zotlabs/Module/Connections.php:270 +msgid "Status" +msgstr "Status" -#: ../../include/ItemObject.php:379 ../../mod/photos.php:1252 -msgctxt "noun" -msgid "Dislikes" -msgstr "vinden dit niet leuk" +#: ../../Zotlabs/Module/Admin.php:678 +msgid "Server" +msgstr "Hubbeheer" -#: ../../include/ItemObject.php:384 ../../include/acl_selectors.php:252 -#: ../../mod/photos.php:1257 -msgid "Close" -msgstr "Sluiten" +#: ../../Zotlabs/Module/Admin.php:718 ../../include/widgets.php:1337 +msgid "Security" +msgstr "Beveiliging" -#: ../../include/ItemObject.php:389 ../../include/conversation.php:740 -#: ../../include/conversation.php:1244 ../../mod/editpost.php:131 -#: ../../mod/photos.php:1068 ../../mod/editblock.php:151 -#: ../../mod/editlayout.php:149 ../../mod/editwebpage.php:191 -msgid "Please wait" -msgstr "Even wachten" +#: ../../Zotlabs/Module/Admin.php:720 +msgid "Block public" +msgstr "Openbare toegang blokkeren" -#: ../../include/ItemObject.php:413 ../../include/js_strings.php:7 -msgid "[+] show all" -msgstr "[+] alle" +#: ../../Zotlabs/Module/Admin.php:720 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." +msgstr "Vink dit aan om alle normaliter openbare persoonlijke pagina's op deze hub alleen toegankelijk te maken voor leden die zich hebben geauthenticeerd." -#: ../../include/ItemObject.php:700 ../../mod/photos.php:1084 -#: ../../mod/photos.php:1202 -msgid "This is you" -msgstr "Dit ben jij" +#: ../../Zotlabs/Module/Admin.php:721 +msgid "Allow communications only from these sites" +msgstr "Alleen communicatie met deze hubs toestaan" -#: ../../include/ItemObject.php:702 ../../include/js_strings.php:6 -#: ../../mod/photos.php:1086 ../../mod/photos.php:1204 -msgid "Comment" -msgstr "Reactie" +#: ../../Zotlabs/Module/Admin.php:721 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" +msgstr "Eén hub per regel. Laat leeg om communicatie standaard met alle hubs toe te staan" -#: ../../include/ItemObject.php:703 ../../include/widgets.php:708 -#: ../../include/widgets.php:720 ../../include/js_strings.php:22 -#: ../../mod/admin.php:457 ../../mod/admin.php:646 ../../mod/admin.php:721 -#: ../../mod/admin.php:986 ../../mod/admin.php:1150 ../../mod/admin.php:1326 -#: ../../mod/admin.php:1521 ../../mod/admin.php:1606 ../../mod/admin.php:1770 -#: ../../mod/appman.php:99 ../../mod/pconfig.php:108 ../../mod/pdledit.php:62 -#: ../../mod/photos.php:672 ../../mod/photos.php:1047 -#: ../../mod/photos.php:1087 ../../mod/photos.php:1205 ../../mod/mitem.php:231 -#: ../../mod/cal.php:337 ../../mod/poke.php:182 ../../mod/chat.php:190 -#: ../../mod/chat.php:232 ../../mod/connect.php:93 ../../mod/mood.php:135 -#: ../../mod/connedit.php:729 ../../mod/profiles.php:687 -#: ../../mod/rate.php:168 ../../mod/events.php:468 ../../mod/events.php:665 -#: ../../mod/filestorage.php:156 ../../mod/fsuggest.php:108 -#: ../../mod/group.php:81 ../../mod/settings.php:597 -#: ../../mod/settings.php:710 ../../mod/settings.php:738 -#: ../../mod/settings.php:761 ../../mod/settings.php:849 -#: ../../mod/settings.php:1041 ../../mod/setup.php:336 ../../mod/setup.php:377 -#: ../../mod/import.php:542 ../../mod/import_items.php:116 -#: ../../mod/invite.php:142 ../../mod/locs.php:117 ../../mod/sources.php:104 -#: ../../mod/sources.php:138 ../../mod/mail.php:380 ../../mod/thing.php:312 -#: ../../mod/thing.php:358 ../../mod/xchan.php:11 -#: ../../view/theme/redbasic/php/config.php:99 -msgid "Submit" -msgstr "Opslaan" +#: ../../Zotlabs/Module/Admin.php:722 +msgid "Block communications from these sites" +msgstr "Communicatie met deze hubs blokkeren" -#: ../../include/ItemObject.php:704 ../../include/conversation.php:1216 -#: ../../mod/editpost.php:115 ../../mod/editblock.php:137 -#: ../../mod/editlayout.php:136 ../../mod/editwebpage.php:178 -msgid "Bold" -msgstr "Vet" +#: ../../Zotlabs/Module/Admin.php:723 +msgid "Allow communications only from these channels" +msgstr "Sta alleen communicatie toe met deze kanalen" -#: ../../include/ItemObject.php:705 ../../include/conversation.php:1217 -#: ../../mod/editpost.php:116 ../../mod/editblock.php:138 -#: ../../mod/editlayout.php:137 ../../mod/editwebpage.php:179 -msgid "Italic" -msgstr "Cursief" +#: ../../Zotlabs/Module/Admin.php:723 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by " +"default" +msgstr "Eén kanaal (hash) per regel. Laat leeg om communicatie standaard met alle kanalen toe te staan" -#: ../../include/ItemObject.php:706 ../../include/conversation.php:1218 -#: ../../mod/editpost.php:117 ../../mod/editblock.php:139 -#: ../../mod/editlayout.php:138 ../../mod/editwebpage.php:180 -msgid "Underline" -msgstr "Onderstrepen" +#: ../../Zotlabs/Module/Admin.php:724 +msgid "Block communications from these channels" +msgstr "Communicatie met deze kanalen blokkeren" -#: ../../include/ItemObject.php:707 ../../include/conversation.php:1219 -#: ../../mod/editpost.php:118 ../../mod/editblock.php:140 -#: ../../mod/editlayout.php:139 ../../mod/editwebpage.php:181 -msgid "Quote" -msgstr "Citeren" +#: ../../Zotlabs/Module/Admin.php:725 +msgid "Allow embedded HTML content only from these domains" +msgstr "Alleen ingesloten (embedded) HTML vanaf deze domeinen toestaan" -#: ../../include/ItemObject.php:708 ../../include/conversation.php:1220 -#: ../../mod/editpost.php:119 ../../mod/editblock.php:141 -#: ../../mod/editlayout.php:140 ../../mod/editwebpage.php:182 -msgid "Code" -msgstr "Broncode" +#: ../../Zotlabs/Module/Admin.php:725 +msgid "One site per line. Leave empty to allow from any site by default" +msgstr "Eén per regel. Laat leeg om standaard vanaf elk domein toe te staan" -#: ../../include/ItemObject.php:709 -msgid "Image" -msgstr "Afbeelding" +#: ../../Zotlabs/Module/Admin.php:726 +msgid "Block embedded HTML from these domains" +msgstr "Ingesloten (embedded) HTML vanaf deze domeinen blokkeren" -#: ../../include/ItemObject.php:710 -msgid "Insert Link" -msgstr "Link invoegen" +#: ../../Zotlabs/Module/Admin.php:728 +msgid "Cooperative embed security" +msgstr "Met elkaar ingesloten (embedded) HTML beveiligen" -#: ../../include/ItemObject.php:711 -msgid "Video" -msgstr "Video" +#: ../../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." -#: ../../include/ItemObject.php:712 ../../include/conversation.php:1186 -#: ../../include/page_widgets.php:40 ../../mod/editpost.php:151 -#: ../../mod/photos.php:1088 ../../mod/editblock.php:172 -#: ../../mod/webpages.php:192 ../../mod/editwebpage.php:213 -#: ../../mod/events.php:465 -msgid "Preview" -msgstr "Voorvertoning" +#: ../../Zotlabs/Module/Admin.php:743 +msgid "Update has been marked successful" +msgstr "Update is als succesvol gemarkeerd" -#: ../../include/ItemObject.php:715 ../../include/conversation.php:1274 -#: ../../mod/editpost.php:159 ../../mod/chat.php:200 ../../mod/mail.php:255 -#: ../../mod/mail.php:385 -msgid "Encrypt text" -msgstr "Tekst versleutelen" +#: ../../Zotlabs/Module/Admin.php:753 +#, php-format +msgid "Executing %s failed. Check system logs." +msgstr "Uitvoeren van %s is mislukt. Controleer systeemlogboek." -#: ../../include/account.php:28 -msgid "Not a valid email address" -msgstr "Geen geldig e-mailadres" +#: ../../Zotlabs/Module/Admin.php:756 +#, php-format +msgid "Update %s was successfully applied." +msgstr "Update %s was geslaagd." -#: ../../include/account.php:30 -msgid "Your email domain is not among those allowed on this site" -msgstr "Jouw e-maildomein is op deze hub niet toegestaan" +#: ../../Zotlabs/Module/Admin.php:760 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." +msgstr "Update %s gaf geen melding. Het is daarom niet bekend of deze geslaagd is." -#: ../../include/account.php:36 -msgid "Your email address is already registered at this site." -msgstr "Jouw e-mailadres is al op deze hub geregistreerd." +#: ../../Zotlabs/Module/Admin.php:763 +#, php-format +msgid "Update function %s could not be found." +msgstr "Update-functie %s kon niet gevonden worden." -#: ../../include/account.php:68 -msgid "An invitation is required." -msgstr "Een uitnodiging is vereist" +#: ../../Zotlabs/Module/Admin.php:779 +msgid "No failed updates." +msgstr "Geen mislukte updates." -#: ../../include/account.php:72 -msgid "Invitation could not be verified." -msgstr "Uitnodiging kon niet geverifieerd worden" +#: ../../Zotlabs/Module/Admin.php:783 +msgid "Failed Updates" +msgstr "Mislukte updates" -#: ../../include/account.php:122 -msgid "Please enter the required information." -msgstr "Vul de vereiste informatie in." +#: ../../Zotlabs/Module/Admin.php:785 +msgid "Mark success (if update was manually applied)" +msgstr "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)" -#: ../../include/account.php:189 -msgid "Failed to store account information." -msgstr "Account-informatie kon niet opgeslagen worden." +#: ../../Zotlabs/Module/Admin.php:786 +msgid "Attempt to execute this update step automatically" +msgstr "Poging om deze stap van de update automatisch uit te voeren." -#: ../../include/account.php:249 -#, php-format -msgid "Registration confirmation for %s" -msgstr "Registratiebevestiging voor %s" +#: ../../Zotlabs/Module/Admin.php:817 +msgid "Queue Statistics" +msgstr "Wachtrij-statistieken" -#: ../../include/account.php:315 -#, php-format -msgid "Registration request at %s" -msgstr "Registratiebevestiging voor %s" +#: ../../Zotlabs/Module/Admin.php:818 +msgid "Total Entries" +msgstr "Aantal vermeldingen" -#: ../../include/account.php:317 ../../include/account.php:344 -#: ../../include/account.php:404 ../../include/network.php:1875 -msgid "Administrator" -msgstr "Beheerder" +#: ../../Zotlabs/Module/Admin.php:819 +msgid "Priority" +msgstr "Prioriteit" -#: ../../include/account.php:339 -msgid "your registration password" -msgstr "jouw registratiewachtwoord" +#: ../../Zotlabs/Module/Admin.php:820 +msgid "Destination URL" +msgstr "Doel-URL" -#: ../../include/account.php:342 ../../include/account.php:402 -#, php-format -msgid "Registration details for %s" -msgstr "Registratiegegevens voor %s" +#: ../../Zotlabs/Module/Admin.php:821 +msgid "Mark hub permanently offline" +msgstr "Hub als permanent offline markeren" -#: ../../include/account.php:414 -msgid "Account approved." -msgstr "Account goedgekeurd" +#: ../../Zotlabs/Module/Admin.php:822 +msgid "Empty queue for this hub" +msgstr "Berichtenwachtrij voor deze hub legen" -#: ../../include/account.php:454 +#: ../../Zotlabs/Module/Admin.php:823 +msgid "Last known contact" +msgstr "Voor het laatst contact" + +#: ../../Zotlabs/Module/Admin.php:859 #, php-format -msgid "Registration revoked for %s" -msgstr "Registratie ingetrokken voor %s" +msgid "%s account blocked/unblocked" +msgid_plural "%s account blocked/unblocked" +msgstr[0] "%s account geblokkeerd/gedeblokkeerd" +msgstr[1] "%s accounts geblokkeerd/gedeblokkeerd" -#: ../../include/account.php:506 -msgid "Account verified. Please login." -msgstr "Account is geverifieerd. Je kan inloggen." +#: ../../Zotlabs/Module/Admin.php:867 +#, php-format +msgid "%s account deleted" +msgid_plural "%s accounts deleted" +msgstr[0] "%s account verwijderd" +msgstr[1] "%s accounts verwijderd" -#: ../../include/account.php:719 ../../include/account.php:721 -msgid "Click here to upgrade." -msgstr "Klik hier om te upgraden." +#: ../../Zotlabs/Module/Admin.php:903 +msgid "Account not found" +msgstr "Account niet gevonden" -#: ../../include/account.php:727 -msgid "This action exceeds the limits set by your subscription plan." -msgstr "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden." +#: ../../Zotlabs/Module/Admin.php:915 +#, php-format +msgid "Account '%s' deleted" +msgstr "Account '%s' verwijderd" -#: ../../include/account.php:732 -msgid "This action is not available under your subscription plan." -msgstr "Deze handeling is niet mogelijk met jouw abonnement." +#: ../../Zotlabs/Module/Admin.php:923 +#, php-format +msgid "Account '%s' blocked" +msgstr "Account '%s' geblokkeerd" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 ../../mod/id.php:103 -msgid "Male" -msgstr "Man" +#: ../../Zotlabs/Module/Admin.php:931 +#, php-format +msgid "Account '%s' unblocked" +msgstr "Account '%s' gedeblokkeerd" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 ../../mod/id.php:105 -msgid "Female" -msgstr "Vrouw" +#: ../../Zotlabs/Module/Admin.php:993 ../../Zotlabs/Module/Admin.php:1005 +msgid "Users" +msgstr "Accounts" -#: ../../include/profile_selectors.php:6 -msgid "Currently Male" -msgstr "Momenteel man" +#: ../../Zotlabs/Module/Admin.php:995 ../../Zotlabs/Module/Admin.php:1159 +msgid "select all" +msgstr "alles selecteren" -#: ../../include/profile_selectors.php:6 -msgid "Currently Female" -msgstr "Momenteel vrouw" +#: ../../Zotlabs/Module/Admin.php:996 +msgid "User registrations waiting for confirm" +msgstr "Accounts die op goedkeuring wachten" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Male" -msgstr "Voornamelijk man" +#: ../../Zotlabs/Module/Admin.php:997 +msgid "Request date" +msgstr "Tijd/datum verzoek" -#: ../../include/profile_selectors.php:6 -msgid "Mostly Female" -msgstr "Voornamelijk vrouw" +#: ../../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 +msgid "Email" +msgstr "E-mail" -#: ../../include/profile_selectors.php:6 -msgid "Transgender" -msgstr "Transgender" +#: ../../Zotlabs/Module/Admin.php:998 +msgid "No registrations." +msgstr "Geen verzoeken." -#: ../../include/profile_selectors.php:6 -msgid "Intersex" -msgstr "Interseksueel" +#: ../../Zotlabs/Module/Admin.php:999 ../../Zotlabs/Module/Connections.php:275 +msgid "Approve" +msgstr "Goedkeuren" -#: ../../include/profile_selectors.php:6 -msgid "Transsexual" -msgstr "Transseksueel" +#: ../../Zotlabs/Module/Admin.php:1000 +msgid "Deny" +msgstr "Afkeuren" -#: ../../include/profile_selectors.php:6 -msgid "Hermaphrodite" -msgstr "Hermafrodiet" +#: ../../Zotlabs/Module/Admin.php:1002 ../../Zotlabs/Module/Connedit.php:541 +msgid "Block" +msgstr "Blokkeren" -#: ../../include/profile_selectors.php:6 -msgid "Neuter" -msgstr "Genderneutraal" +#: ../../Zotlabs/Module/Admin.php:1003 ../../Zotlabs/Module/Connedit.php:541 +msgid "Unblock" +msgstr "Deblokkeren" -#: ../../include/profile_selectors.php:6 -msgid "Non-specific" -msgstr "Niet gespecificeerd" +#: ../../Zotlabs/Module/Admin.php:1006 ../../include/group.php:267 +msgid "All Channels" +msgstr "Alle kanalen" -#: ../../include/profile_selectors.php:6 -#: ../../include/profile_selectors.php:23 -#: ../../include/profile_selectors.php:61 -#: ../../include/profile_selectors.php:97 ../../include/permissions.php:881 -msgid "Other" -msgstr "Anders" +#: ../../Zotlabs/Module/Admin.php:1006 +msgid "Register date" +msgstr "Geregistreerd" -#: ../../include/profile_selectors.php:6 -msgid "Undecided" -msgstr "Nog niet beslist" +#: ../../Zotlabs/Module/Admin.php:1006 +msgid "Last login" +msgstr "Laatste keer ingelogd" -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Males" -msgstr "Mannen" +#: ../../Zotlabs/Module/Admin.php:1006 +msgid "Expires" +msgstr "Verloopt" -#: ../../include/profile_selectors.php:42 -#: ../../include/profile_selectors.php:61 -msgid "Females" -msgstr "Vrouwen" +#: ../../Zotlabs/Module/Admin.php:1006 +msgid "Service Class" +msgstr "Abonnementen" -#: ../../include/profile_selectors.php:42 -msgid "Gay" -msgstr "Homoseksueel" +#: ../../Zotlabs/Module/Admin.php:1008 +msgid "" +"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" +" on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Geselecteerde accounts (met bijbehorende kanalen) worden verwijderd!\\n\\nAlles wat deze accounts op deze hub hebben gepubliceerd wordt definitief verwijderd!\\n\\Weet je het zeker?" -#: ../../include/profile_selectors.php:42 -msgid "Lesbian" -msgstr "Lesbisch" +#: ../../Zotlabs/Module/Admin.php:1009 +msgid "" +"The account {0} will be deleted!\\n\\nEverything this account has posted on " +"this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Account {0} (met bijbehorende kanalen) wordt verwijderd !\\n\\nAlles wat dit account op deze hub heeft gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" -#: ../../include/profile_selectors.php:42 -msgid "No Preference" -msgstr "Geen voorkeur" +#: ../../Zotlabs/Module/Admin.php:1045 +#, php-format +msgid "%s channel censored/uncensored" +msgid_plural "%s channels censored/uncensored" +msgstr[0] "%s kanaal gecensureerd/ongecensureerd" +msgstr[1] "%s kanalen gecensureerd/ongecensureerd" -#: ../../include/profile_selectors.php:42 -msgid "Bisexual" -msgstr "Biseksueel" +#: ../../Zotlabs/Module/Admin.php:1054 +#, php-format +msgid "%s channel code allowed/disallowed" +msgid_plural "%s channels code allowed/disallowed" +msgstr[0] "Scripts toegestaan/niet toegestaan voor %s kanaal" +msgstr[1] "Scripts toegestaan/niet toegestaan voor %s kanalen" -#: ../../include/profile_selectors.php:42 -msgid "Autosexual" -msgstr "Autoseksueel" +#: ../../Zotlabs/Module/Admin.php:1061 +#, php-format +msgid "%s channel deleted" +msgid_plural "%s channels deleted" +msgstr[0] "%s kanaal verwijderd" +msgstr[1] "%s kanalen verwijderd" -#: ../../include/profile_selectors.php:42 -msgid "Abstinent" -msgstr "Seksuele onthouding" +#: ../../Zotlabs/Module/Admin.php:1081 +msgid "Channel not found" +msgstr "Kanaal niet gevonden" -#: ../../include/profile_selectors.php:42 -msgid "Virgin" -msgstr "Maagd" +#: ../../Zotlabs/Module/Admin.php:1092 +#, php-format +msgid "Channel '%s' deleted" +msgstr "Kanaal '%s' verwijderd" -#: ../../include/profile_selectors.php:42 -msgid "Deviant" -msgstr "Afwijkend" +#: ../../Zotlabs/Module/Admin.php:1104 +#, php-format +msgid "Channel '%s' censored" +msgstr "Kanaal '%s' gecensureerd" -#: ../../include/profile_selectors.php:42 -msgid "Fetish" -msgstr "Fetisj" +#: ../../Zotlabs/Module/Admin.php:1104 +#, php-format +msgid "Channel '%s' uncensored" +msgstr "Kanaal '%s' ongecensureerd" -#: ../../include/profile_selectors.php:42 -msgid "Oodles" -msgstr "Veel" +#: ../../Zotlabs/Module/Admin.php:1115 +#, php-format +msgid "Channel '%s' code allowed" +msgstr "Scripts toegestaan voor kanaal '%s'" -#: ../../include/profile_selectors.php:42 -msgid "Nonsexual" -msgstr "Aseksueel" +#: ../../Zotlabs/Module/Admin.php:1115 +#, php-format +msgid "Channel '%s' code disallowed" +msgstr "Scripts niet toegestaan voor kanaal '%s'" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Single" -msgstr "Alleen" +#: ../../Zotlabs/Module/Admin.php:1157 ../../include/widgets.php:1336 +msgid "Channels" +msgstr "Kanalen" -#: ../../include/profile_selectors.php:80 -msgid "Lonely" -msgstr "Eenzaam" +#: ../../Zotlabs/Module/Admin.php:1161 +msgid "Censor" +msgstr "Censureren" -#: ../../include/profile_selectors.php:80 -msgid "Available" -msgstr "Beschikbaar" +#: ../../Zotlabs/Module/Admin.php:1162 +msgid "Uncensor" +msgstr "Niet censureren" -#: ../../include/profile_selectors.php:80 -msgid "Unavailable" -msgstr "Niet beschikbaar" +#: ../../Zotlabs/Module/Admin.php:1163 +msgid "Allow Code" +msgstr "Scripts toestaan" -#: ../../include/profile_selectors.php:80 -msgid "Has crush" -msgstr "Heeft een oogje op iemand" +#: ../../Zotlabs/Module/Admin.php:1164 +msgid "Disallow Code" +msgstr "Scripts niet toestaan" -#: ../../include/profile_selectors.php:80 -msgid "Infatuated" -msgstr "Smoorverliefd" +#: ../../Zotlabs/Module/Admin.php:1165 ../../include/conversation.php:1629 +msgid "Channel" +msgstr "Kanaal" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Dating" -msgstr "Aan het daten" +#: ../../Zotlabs/Module/Admin.php:1166 +msgid "UID" +msgstr "UID" -#: ../../include/profile_selectors.php:80 -msgid "Unfaithful" -msgstr "Ontrouw" +#: ../../Zotlabs/Module/Admin.php:1166 ../../Zotlabs/Module/Locs.php:118 +#: ../../Zotlabs/Module/Profiles.php:469 +msgid "Address" +msgstr "Kanaaladres" -#: ../../include/profile_selectors.php:80 -msgid "Sex Addict" -msgstr "Seksverslaafd" +#: ../../Zotlabs/Module/Admin.php:1168 +msgid "" +"Selected channels will be deleted!\\n\\nEverything that was posted in these " +"channels on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Geselecteerde kanalen worden verwijderd!\\n\\nAlles wat in deze kanalen op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" -#: ../../include/profile_selectors.php:80 -msgid "Friends/Benefits" -msgstr "Vriendschap plus" +#: ../../Zotlabs/Module/Admin.php:1169 +msgid "" +"The channel {0} will be deleted!\\n\\nEverything that was posted in this " +"channel on this site will be permanently deleted!\\n\\nAre you sure?" +msgstr "Kanaal {0} wordt verwijderd!\\n\\nAlles wat in dit kanaal op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" -#: ../../include/profile_selectors.php:80 -msgid "Casual" -msgstr "Ongebonden/vluchtig" +#: ../../Zotlabs/Module/Admin.php:1226 +#, php-format +msgid "Plugin %s disabled." +msgstr "Plugin %s uitgeschakeld." -#: ../../include/profile_selectors.php:80 -msgid "Engaged" -msgstr "Verloofd" +#: ../../Zotlabs/Module/Admin.php:1230 +#, php-format +msgid "Plugin %s enabled." +msgstr "Plugin %s ingeschakeld" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Married" -msgstr "Getrouwd" +#: ../../Zotlabs/Module/Admin.php:1240 ../../Zotlabs/Module/Admin.php:1466 +msgid "Disable" +msgstr "Uitschakelen" -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily married" -msgstr "Denkbeeldig getrouwd" +#: ../../Zotlabs/Module/Admin.php:1243 ../../Zotlabs/Module/Admin.php:1468 +msgid "Enable" +msgstr "Inschakelen" -#: ../../include/profile_selectors.php:80 -msgid "Partners" -msgstr "Partners" +#: ../../Zotlabs/Module/Admin.php:1272 ../../Zotlabs/Module/Admin.php:1333 +#: ../../include/widgets.php:1339 +msgid "Plugins" +msgstr "Plugins" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Cohabiting" -msgstr "Samenwonend" +#: ../../Zotlabs/Module/Admin.php:1273 ../../Zotlabs/Module/Admin.php:1495 +msgid "Toggle" +msgstr "Omschakelen" -#: ../../include/profile_selectors.php:80 -msgid "Common law" -msgstr "Common-law-huwelijk" +#: ../../Zotlabs/Module/Admin.php:1274 ../../Zotlabs/Module/Admin.php:1496 +#: ../../include/apps.php:134 ../../include/widgets.php:589 +#: ../../include/nav.php:211 +msgid "Settings" +msgstr "Instellingen" -#: ../../include/profile_selectors.php:80 -msgid "Happy" -msgstr "Gelukkig" +#: ../../Zotlabs/Module/Admin.php:1281 ../../Zotlabs/Module/Admin.php:1505 +msgid "Author: " +msgstr "Auteur: " -#: ../../include/profile_selectors.php:80 -msgid "Not looking" -msgstr "Niet op zoek" +#: ../../Zotlabs/Module/Admin.php:1282 ../../Zotlabs/Module/Admin.php:1506 +msgid "Maintainer: " +msgstr "Beheerder: " -#: ../../include/profile_selectors.php:80 -msgid "Swinger" -msgstr "Swinger" - -#: ../../include/profile_selectors.php:80 -msgid "Betrayed" -msgstr "Verraden" +#: ../../Zotlabs/Module/Admin.php:1283 +msgid "Minimum project version: " +msgstr "Minimum versie Hubzilla: " -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Separated" -msgstr "Uit elkaar" +#: ../../Zotlabs/Module/Admin.php:1284 +msgid "Maximum project version: " +msgstr "Maximum versie Hubzilla:" -#: ../../include/profile_selectors.php:80 -msgid "Unstable" -msgstr "Onstabiel" +#: ../../Zotlabs/Module/Admin.php:1285 +msgid "Minimum PHP version: " +msgstr "Minimum versie PHP: " -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Divorced" -msgstr "Gescheiden" +#: ../../Zotlabs/Module/Admin.php:1286 +msgid "Requires: " +msgstr "Vereist: " -#: ../../include/profile_selectors.php:80 -msgid "Imaginarily divorced" -msgstr "Denkbeeldig gescheiden" +#: ../../Zotlabs/Module/Admin.php:1287 ../../Zotlabs/Module/Admin.php:1338 +msgid "Disabled - version incompatibility" +msgstr "Uitgeschakeld - versie is incompatibel" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "Widowed" -msgstr "Weduwnaar/weduwe" +#: ../../Zotlabs/Module/Admin.php:1431 +msgid "No themes found." +msgstr "Geen thema's gevonden" -#: ../../include/profile_selectors.php:80 -msgid "Uncertain" -msgstr "Onzeker" +#: ../../Zotlabs/Module/Admin.php:1487 +msgid "Screenshot" +msgstr "Schermafdruk" -#: ../../include/profile_selectors.php:80 -#: ../../include/profile_selectors.php:97 -msgid "It's complicated" -msgstr "Het is ingewikkeld" +#: ../../Zotlabs/Module/Admin.php:1494 ../../Zotlabs/Module/Admin.php:1528 +#: ../../include/widgets.php:1340 +msgid "Themes" +msgstr "Thema's" -#: ../../include/profile_selectors.php:80 -msgid "Don't care" -msgstr "Maakt mij niks uit" +#: ../../Zotlabs/Module/Admin.php:1533 +msgid "[Experimental]" +msgstr "[Experimenteel]" -#: ../../include/profile_selectors.php:80 -msgid "Ask me" -msgstr "Vraag het me" +#: ../../Zotlabs/Module/Admin.php:1534 +msgid "[Unsupported]" +msgstr "[Niet ondersteund]" -#: ../../include/acl_selectors.php:218 -msgid "Visible to your default audience" -msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" +#: ../../Zotlabs/Module/Admin.php:1558 +msgid "Log settings updated." +msgstr "Logboek-instellingen bijgewerkt." -#: ../../include/acl_selectors.php:243 -msgid "Show" -msgstr "Tonen" +#: ../../Zotlabs/Module/Admin.php:1613 ../../include/widgets.php:1361 +#: ../../include/widgets.php:1371 +msgid "Logs" +msgstr "Logboeken" -#: ../../include/acl_selectors.php:244 -msgid "Don't show" -msgstr "Niet tonen" +#: ../../Zotlabs/Module/Admin.php:1615 +msgid "Clear" +msgstr "Leegmaken" -#: ../../include/acl_selectors.php:249 -msgid "Other networks and post services" -msgstr "Andere netwerken en diensten" +#: ../../Zotlabs/Module/Admin.php:1621 +msgid "Debugging" +msgstr "Debuggen" -#: ../../include/acl_selectors.php:251 ../../mod/photos.php:666 -#: ../../mod/photos.php:1040 ../../mod/chat.php:229 -#: ../../mod/filestorage.php:147 ../../mod/thing.php:309 -#: ../../mod/thing.php:355 -msgid "Permissions" -msgstr "Permissies" +#: ../../Zotlabs/Module/Admin.php:1622 +msgid "Log file" +msgstr "Logbestand" -#: ../../include/activities.php:42 -msgid " and " -msgstr " en " +#: ../../Zotlabs/Module/Admin.php:1622 +msgid "" +"Must be writable by web server. Relative to your Red top-level directory." +msgstr "Moet door de webserver beschrijfbaar zijn. Relatief ten opzichte van de bovenste map van je $Projectname-installatie." -#: ../../include/activities.php:50 -msgid "public profile" -msgstr "openbaar profiel" +#: ../../Zotlabs/Module/Admin.php:1623 +msgid "Log level" +msgstr "Logniveau" -#: ../../include/activities.php:59 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" -msgstr "%1$s veranderde %2$s naar “%3$s”" +#: ../../Zotlabs/Module/Admin.php:1690 +msgid "New Profile Field" +msgstr "Nieuw profielveld" -#: ../../include/activities.php:60 -#, php-format -msgid "Visit %1$s's %2$s" -msgstr "Bezoek het %2$s van %1$s" +#: ../../Zotlabs/Module/Admin.php:1691 ../../Zotlabs/Module/Admin.php:1711 +msgid "Field nickname" +msgstr "Bijnaam voor veld" -#: ../../include/activities.php:63 -#, php-format -msgid "%1$s has an updated %2$s, changing %3$s." -msgstr "%1$s heeft een aangepaste %2$s, %3$s veranderd." +#: ../../Zotlabs/Module/Admin.php:1691 ../../Zotlabs/Module/Admin.php:1711 +msgid "System name of field" +msgstr "Systeemnaam voor veld" -#: ../../include/apps.php:128 -msgid "Site Admin" -msgstr "Hubbeheerder" +#: ../../Zotlabs/Module/Admin.php:1692 ../../Zotlabs/Module/Admin.php:1712 +msgid "Input type" +msgstr "Invoertype" -#: ../../include/apps.php:129 ../../include/conversation.php:1694 -#: ../../include/nav.php:102 -msgid "Bookmarks" -msgstr "Bladwijzers" +#: ../../Zotlabs/Module/Admin.php:1693 ../../Zotlabs/Module/Admin.php:1713 +msgid "Field Name" +msgstr "Veldnaam" -#: ../../include/apps.php:130 -msgid "Address Book" -msgstr "Connecties" +#: ../../Zotlabs/Module/Admin.php:1693 ../../Zotlabs/Module/Admin.php:1713 +msgid "Label on profile pages" +msgstr "Tekstlabel voor op profielpagina's" -#: ../../include/apps.php:131 ../../include/nav.php:110 ../../boot.php:1600 -msgid "Login" -msgstr "Inloggen" +#: ../../Zotlabs/Module/Admin.php:1694 ../../Zotlabs/Module/Admin.php:1714 +msgid "Help text" +msgstr "Helptekst" -#: ../../include/apps.php:132 ../../include/nav.php:203 -#: ../../mod/manage.php:158 -msgid "Channel Manager" -msgstr "Kanaalbeheer" +#: ../../Zotlabs/Module/Admin.php:1694 ../../Zotlabs/Module/Admin.php:1714 +msgid "Additional info (optional)" +msgstr "Extra informatie (optioneel)" -#: ../../include/apps.php:133 ../../include/nav.php:176 -msgid "Grid" -msgstr "Grid" +#: ../../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 +msgid "Save" +msgstr "Opslaan" -#: ../../include/apps.php:134 ../../include/nav.php:205 -#: ../../include/widgets.php:589 ../../mod/admin.php:1266 -#: ../../mod/admin.php:1488 -msgid "Settings" -msgstr "Instellingen" +#: ../../Zotlabs/Module/Admin.php:1704 +msgid "Field definition not found" +msgstr "Velddefinitie niet gevonden" -#: ../../include/apps.php:136 ../../include/conversation.php:1704 -#: ../../include/nav.php:106 ../../mod/webpages.php:182 -msgid "Webpages" -msgstr "Webpagina's" +#: ../../Zotlabs/Module/Admin.php:1710 +msgid "Edit Profile Field" +msgstr "Profielveld bewerken" -#: ../../include/apps.php:137 ../../include/nav.php:179 -msgid "Channel Home" -msgstr "Jouw kanaal" +#: ../../Zotlabs/Module/Admin.php:1768 ../../include/widgets.php:1342 +msgid "Profile Fields" +msgstr "Profielvelden" -#: ../../include/apps.php:139 ../../include/conversation.php:1650 -#: ../../include/nav.php:92 ../../mod/fbrowser.php:25 -msgid "Photos" -msgstr "Foto's" +#: ../../Zotlabs/Module/Admin.php:1769 +msgid "Basic Profile Fields" +msgstr "Standaard profielvelden" -#: ../../include/apps.php:140 ../../include/conversation.php:1667 -#: ../../include/conversation.php:1670 ../../include/nav.php:198 -msgid "Events" -msgstr "Agenda" +#: ../../Zotlabs/Module/Admin.php:1770 +msgid "Advanced Profile Fields" +msgstr "Geavanceerde profielvelden" -#: ../../include/apps.php:141 ../../include/nav.php:164 -msgid "Directory" -msgstr "Kanalengids" +#: ../../Zotlabs/Module/Admin.php:1770 +msgid "(In addition to basic fields)" +msgstr "(als toevoeging op de standaard velden)" -#: ../../include/apps.php:142 ../../include/nav.php:155 ../../mod/help.php:222 -#: ../../mod/help.php:227 ../../mod/layouts.php:177 -msgid "Help" -msgstr "Hulp" +#: ../../Zotlabs/Module/Admin.php:1772 +msgid "All available fields" +msgstr "Alle beschikbare velden" -#: ../../include/apps.php:143 ../../include/nav.php:190 -msgid "Mail" -msgstr "Privéberichten" +#: ../../Zotlabs/Module/Admin.php:1773 +msgid "Custom Fields" +msgstr "Extra (handmatig toegevoegde) velden" -#: ../../include/apps.php:144 ../../mod/mood.php:131 -msgid "Mood" -msgstr "Stemming" +#: ../../Zotlabs/Module/Admin.php:1777 +msgid "Create Custom Field" +msgstr "Extra velden aanmaken" -#: ../../include/apps.php:145 ../../include/conversation.php:965 -#: ../../mod/poke.php:164 -msgid "Poke" -msgstr "Aanstoten" +#: ../../Zotlabs/Module/Api.php:61 ../../Zotlabs/Module/Api.php:85 +msgid "Authorize application connection" +msgstr "Geef toestemming voor applicatiekoppeling" -#: ../../include/apps.php:146 ../../include/nav.php:96 -msgid "Chat" -msgstr "Chatten" +#: ../../Zotlabs/Module/Api.php:62 +msgid "Return to your app and insert this Securty Code:" +msgstr "Ga terug naar je app en voeg deze beveiligingscode in:" -#: ../../include/apps.php:147 ../../include/nav.php:161 -#: ../../include/text.php:904 ../../include/text.php:916 -#: ../../mod/connections.php:302 ../../mod/search.php:40 -msgid "Search" -msgstr "Zoeken" +#: ../../Zotlabs/Module/Api.php:72 +msgid "Please login to continue." +msgstr "Inloggen om verder te kunnen gaan." -#: ../../include/apps.php:148 -msgid "Probe" -msgstr "Onderzoeken" +#: ../../Zotlabs/Module/Api.php:87 +msgid "" +"Do you want to authorize this application to access your posts and contacts," +" and/or create new posts for you?" +msgstr "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?" -#: ../../include/apps.php:149 -msgid "Suggest" -msgstr "Voorstellen" +#: ../../Zotlabs/Module/Appman.php:32 ../../Zotlabs/Module/Appman.php:48 +msgid "App installed." +msgstr "App geïnstalleerd" -#: ../../include/apps.php:150 -msgid "Random Channel" -msgstr "Willekeurig kanaal" +#: ../../Zotlabs/Module/Appman.php:41 +msgid "Malformed app." +msgstr "Misvormde app." -#: ../../include/apps.php:151 -msgid "Invite" -msgstr "Uitnodigen " +#: ../../Zotlabs/Module/Appman.php:84 +msgid "Embed code" +msgstr "Insluitcode" -#: ../../include/apps.php:152 ../../include/widgets.php:1338 -msgid "Features" -msgstr "Extra functies" +#: ../../Zotlabs/Module/Appman.php:90 +msgid "Edit App" +msgstr "App bewerken" -#: ../../include/apps.php:153 ../../mod/id.php:28 -msgid "Language" -msgstr "Taal" +#: ../../Zotlabs/Module/Appman.php:90 +msgid "Create App" +msgstr "App maken" -#: ../../include/apps.php:154 -msgid "Post" -msgstr "Bericht" +#: ../../Zotlabs/Module/Appman.php:95 +msgid "Name of app" +msgstr "Naam van app" -#: ../../include/apps.php:155 ../../mod/id.php:17 ../../mod/id.php:18 -#: ../../mod/id.php:19 -msgid "Profile Photo" -msgstr "Profielfoto" +#: ../../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 +#: ../../include/datetime.php:246 +msgid "Required" +msgstr "Vereist" -#: ../../include/apps.php:252 ../../mod/settings.php:84 -#: ../../mod/settings.php:623 -msgid "Update" -msgstr "Bijwerken" +#: ../../Zotlabs/Module/Appman.php:96 +msgid "Location (URL) of app" +msgstr "Locatie (URL) van app" -#: ../../include/apps.php:252 -msgid "Install" -msgstr "Installeren" +#: ../../Zotlabs/Module/Appman.php:97 ../../Zotlabs/Module/Events.php:461 +#: ../../Zotlabs/Module/Rbmark.php:101 +msgid "Description" +msgstr "Omschrijving" -#: ../../include/apps.php:257 -msgid "Purchase" -msgstr "Aanschaffen" +#: ../../Zotlabs/Module/Appman.php:98 +msgid "Photo icon URL" +msgstr "URL van pictogram" -#: ../../include/items.php:423 ../../mod/profperm.php:23 -#: ../../mod/dreport.php:6 ../../mod/dreport.php:45 ../../mod/group.php:68 -#: ../../mod/import_items.php:108 ../../mod/like.php:280 -#: ../../mod/subthread.php:58 ../../index.php:173 -msgid "Permission denied" -msgstr "Toegang geweigerd" +#: ../../Zotlabs/Module/Appman.php:98 +msgid "80 x 80 pixels - optional" +msgstr "80 x 80 pixels (optioneel)" -#: ../../include/items.php:1138 ../../include/items.php:1183 -msgid "(Unknown)" -msgstr "(Onbekend)" +#: ../../Zotlabs/Module/Appman.php:99 +msgid "Version ID" +msgstr "Versie-ID" -#: ../../include/items.php:1382 -msgid "Visible to anybody on the internet." -msgstr "Voor iedereen op het internet zichtbaar." +#: ../../Zotlabs/Module/Appman.php:100 +msgid "Price of app" +msgstr "Prijs van de app" -#: ../../include/items.php:1384 -msgid "Visible to you only." -msgstr "Alleen voor jou zichtbaar." - -#: ../../include/items.php:1386 -msgid "Visible to anybody in this network." -msgstr "Voor iedereen in dit netwerk zichtbaar." +#: ../../Zotlabs/Module/Appman.php:101 +msgid "Location (URL) to purchase app" +msgstr "Locatie (URL) om de app aan te schaffen" -#: ../../include/items.php:1388 -msgid "Visible to anybody authenticated." -msgstr "Voor iedereen die geauthenticeerd is zichtbaar." +#: ../../Zotlabs/Module/Apps.php:40 ../../include/widgets.php:102 +#: ../../include/nav.php:165 +msgid "Apps" +msgstr "Apps" -#: ../../include/items.php:1390 -#, php-format -msgid "Visible to anybody on %s." -msgstr "Voor iedereen op %s zichtbaar." +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." +msgstr "Item is niet aanwezig." -#: ../../include/items.php:1392 -msgid "Visible to all connections." -msgstr "Voor alle connecties zichtbaar." +#: ../../Zotlabs/Module/Block.php:31 ../../Zotlabs/Module/Page.php:40 +msgid "Invalid item." +msgstr "Ongeldig item." -#: ../../include/items.php:1394 -msgid "Visible to approved connections." -msgstr "Voor alle geaccepteerde connecties zichtbaar." +#: ../../Zotlabs/Module/Block.php:43 ../../Zotlabs/Module/Cal.php:65 +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:33 +msgid "Channel not found." +msgstr "Kanaal niet gevonden." -#: ../../include/items.php:1396 -msgid "Visible to specific connections." -msgstr "Voor specifieke connecties zichtbaar." +#: ../../Zotlabs/Module/Blocks.php:99 ../../Zotlabs/Module/Blocks.php:154 +msgid "Block Name" +msgstr "Bloknaam" -#: ../../include/items.php:4592 ../../mod/admin.php:141 -#: ../../mod/admin.php:1189 ../../mod/admin.php:1434 ../../mod/display.php:40 -#: ../../mod/filestorage.php:27 ../../mod/thing.php:85 -#: ../../mod/viewsrc.php:20 -msgid "Item not found." -msgstr "Item niet gevonden." +#: ../../Zotlabs/Module/Blocks.php:153 ../../include/text.php:2278 +msgid "Blocks" +msgstr "Blokken" -#: ../../include/items.php:5126 ../../mod/group.php:38 ../../mod/group.php:137 -msgid "Privacy group not found." -msgstr "Privacygroep niet gevonden" +#: ../../Zotlabs/Module/Blocks.php:155 +msgid "Block Title" +msgstr "Bloktitel" -#: ../../include/items.php:5142 -msgid "Privacy group is empty." -msgstr "Privacygroep is leeg" +#: ../../Zotlabs/Module/Blocks.php:156 ../../Zotlabs/Module/Layouts.php:186 +#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Webpages.php:200 +#: ../../include/page_widgets.php:44 +msgid "Created" +msgstr "Aangemaakt" -#: ../../include/items.php:5149 -#, php-format -msgid "Privacy group: %s" -msgstr "Privacygroep: %s" +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:187 +#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Webpages.php:201 +#: ../../include/page_widgets.php:45 +msgid "Edited" +msgstr "Bewerkt" -#: ../../include/items.php:5159 ../../mod/connedit.php:701 -#, php-format -msgid "Connection: %s" -msgstr "Connectie: %s" +#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Layouts.php:189 +#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Module/Webpages.php:190 +#: ../../include/conversation.php:1209 +msgid "Share" +msgstr "Delen" -#: ../../include/items.php:5161 -msgid "Connection not found." -msgstr "Connectie niet gevonden." +#: ../../Zotlabs/Module/Blocks.php:165 ../../Zotlabs/Module/Layouts.php:193 +#: ../../Zotlabs/Module/Pubsites.php:46 ../../Zotlabs/Module/Webpages.php:195 +#: ../../include/page_widgets.php:39 +msgid "View" +msgstr "Weergeven" -#: ../../include/items.php:5587 ../../mod/cover_photo.php:229 -msgid "female" -msgstr "vrouw" +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" +msgstr "Bladwijzer toegevoegd" -#: ../../include/items.php:5588 ../../mod/cover_photo.php:230 -#, php-format -msgid "%1$s updated her %2$s" -msgstr "%1$s heeft haar %2$s bijgewerkt" +#: ../../Zotlabs/Module/Bookmarks.php:75 +msgid "My Bookmarks" +msgstr "Mijn bladwijzers" -#: ../../include/items.php:5589 ../../mod/cover_photo.php:231 -msgid "male" -msgstr "man" +#: ../../Zotlabs/Module/Bookmarks.php:86 +msgid "My Connections Bookmarks" +msgstr "Bladwijzers van mijn connecties" -#: ../../include/items.php:5590 ../../mod/cover_photo.php:232 -#, php-format -msgid "%1$s updated his %2$s" -msgstr "%1$s heeft zijn %2$s bijgewerkt" +#: ../../Zotlabs/Module/Cal.php:41 ../../Zotlabs/Module/Photos.php:45 +#: ../../include/js_strings.php:13 +msgid "everybody" +msgstr "iedereen" -#: ../../include/items.php:5592 ../../mod/cover_photo.php:234 -#, php-format -msgid "%1$s updated their %2$s" -msgstr "De %2$s van %1$s is bijgewerkt" +#: ../../Zotlabs/Module/Cal.php:72 +msgid "Permissions denied." +msgstr "Permissies niet toegestaan" -#: ../../include/items.php:5594 -msgid "profile photo" -msgstr "profielfoto" +#: ../../Zotlabs/Module/Cal.php:262 ../../Zotlabs/Module/Events.php:585 +msgid "l, F j" +msgstr "l j F" -#: ../../include/network.php:659 -msgid "view full size" -msgstr "volledige grootte tonen" +#: ../../Zotlabs/Module/Cal.php:311 ../../Zotlabs/Module/Events.php:634 +#: ../../include/text.php:1743 +msgid "Link to Source" +msgstr "Originele locatie" -#: ../../include/network.php:1827 ../../include/enotify.php:57 -msgid "$Projectname Notification" -msgstr "$Projectname-notificatie" +#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:662 +msgid "Edit Event" +msgstr "Gebeurtenis bewerken" -#: ../../include/network.php:1828 ../../include/enotify.php:58 -msgid "$projectname" -msgstr "$projectname" +#: ../../Zotlabs/Module/Cal.php:334 ../../Zotlabs/Module/Events.php:662 +msgid "Create Event" +msgstr "Gebeurtenis aanmaken" -#: ../../include/network.php:1830 ../../include/enotify.php:60 -msgid "Thank You," -msgstr "Bedankt," +#: ../../Zotlabs/Module/Cal.php:335 ../../Zotlabs/Module/Cal.php:342 +#: ../../Zotlabs/Module/Events.php:663 ../../Zotlabs/Module/Events.php:670 +#: ../../Zotlabs/Module/Photos.php:948 +msgid "Previous" +msgstr "Vorige" -#: ../../include/network.php:1832 ../../include/enotify.php:62 -#, php-format -msgid "%s Administrator" -msgstr "Beheerder %s" +#: ../../Zotlabs/Module/Cal.php:336 ../../Zotlabs/Module/Cal.php:343 +#: ../../Zotlabs/Module/Events.php:664 ../../Zotlabs/Module/Events.php:671 +#: ../../Zotlabs/Module/Photos.php:957 ../../Zotlabs/Module/Setup.php:290 +msgid "Next" +msgstr "Volgende" -#: ../../include/network.php:1889 -msgid "No Subject" -msgstr "Geen onderwerp" +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Events.php:665 +#: ../../include/widgets.php:706 +msgid "Export" +msgstr "Exporteren" -#: ../../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" +#: ../../Zotlabs/Module/Cal.php:340 ../../Zotlabs/Module/Events.php:668 +#: ../../include/widgets.php:707 +msgid "Import" +msgstr "Importeren" -#: ../../include/photos.php:119 -msgid "Image file is empty." -msgstr "Afbeeldingsbestand is leeg" +#: ../../Zotlabs/Module/Cal.php:344 ../../Zotlabs/Module/Events.php:672 +msgid "Today" +msgstr "Vandaag" -#: ../../include/photos.php:146 ../../mod/profile_photo.php:225 -#: ../../mod/cover_photo.php:164 -msgid "Unable to process image" -msgstr "Afbeelding kan niet verwerkt worden" +#: ../../Zotlabs/Module/Channel.php:28 ../../Zotlabs/Module/Chat.php:23 +msgid "You must be logged in to see this page." +msgstr "Je moet zijn ingelogd om deze pagina te kunnen bekijken." -#: ../../include/photos.php:257 -msgid "Photo storage failed." -msgstr "Foto kan niet worden opgeslagen" +#: ../../Zotlabs/Module/Channel.php:40 +msgid "Posts and comments" +msgstr "Berichten en reacties" -#: ../../include/photos.php:297 -msgid "a new photo" -msgstr "een nieuwe foto" +#: ../../Zotlabs/Module/Channel.php:41 +msgid "Only posts" +msgstr "Alleen berichten" -#: ../../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" +#: ../../Zotlabs/Module/Channel.php:101 +msgid "Insufficient permissions. Request redirected to profile page." +msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." -#: ../../include/photos.php:506 ../../include/conversation.php:1653 -msgid "Photo Albums" -msgstr "Fotoalbums" +#: ../../Zotlabs/Module/Channel.php:135 ../../Zotlabs/Module/Network.php:173 +#: ../../Zotlabs/Module/Rpost.php:118 +msgid "Public" +msgstr "Openbaar" -#: ../../include/photos.php:510 -msgid "Upload New Photos" -msgstr "Nieuwe foto's uploaden" +#: ../../Zotlabs/Module/Chat.php:179 +msgid "Room not found" +msgstr "Chatkanaal niet gevonden" -#: ../../include/bb2diaspora.php:376 -msgid "Attachments:" -msgstr "Bijlagen:" +#: ../../Zotlabs/Module/Chat.php:195 +msgid "Leave Room" +msgstr "Chatkanaal verlaten" -#: ../../include/bb2diaspora.php:465 ../../include/event.php:22 -#: ../../include/text.php:1437 -msgid "l F d, Y \\@ g:i A" -msgstr "l d F Y \\@ G:i" +#: ../../Zotlabs/Module/Chat.php:196 +msgid "Delete Room" +msgstr "Chatkanaal verwijderen" -#: ../../include/bb2diaspora.php:467 -msgid "$Projectname event notification:" -msgstr "Notificatie $Projectname-gebeurtenis:" +#: ../../Zotlabs/Module/Chat.php:197 +msgid "I am away right now" +msgstr "Ik ben momenteel afwezig" -#: ../../include/bb2diaspora.php:471 ../../include/event.php:30 -#: ../../include/text.php:1441 -msgid "Starts:" -msgstr "Start:" +#: ../../Zotlabs/Module/Chat.php:198 +msgid "I am online" +msgstr "Ik ben online" -#: ../../include/bb2diaspora.php:479 ../../include/event.php:40 -#: ../../include/text.php:1445 -msgid "Finishes:" -msgstr "Einde:" +#: ../../Zotlabs/Module/Chat.php:200 +msgid "Bookmark this room" +msgstr "Chatkanaal aan bladwijzers toevoegen" -#: ../../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" +#: ../../Zotlabs/Module/Chat.php:203 ../../Zotlabs/Module/Mail.php:206 +#: ../../Zotlabs/Module/Mail.php:320 ../../include/conversation.php:1170 +msgid "Please enter a link URL:" +msgstr "Vul een URL in:" -#: ../../include/bbcode.php:162 ../../include/bbcode.php:851 -msgid "Encrypted content" -msgstr "Versleutelde inhoud" +#: ../../Zotlabs/Module/Chat.php:204 ../../Zotlabs/Module/Editpost.php:163 +#: ../../Zotlabs/Module/Mail.php:259 ../../Zotlabs/Module/Mail.php:389 +#: ../../include/ItemObject.php:715 ../../include/conversation.php:1274 +msgid "Encrypt text" +msgstr "Tekst versleutelen" -#: ../../include/bbcode.php:179 -#, php-format -msgid "Install %s element: " -msgstr "Installeer %s-element: " +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Editblock.php:149 +#: ../../Zotlabs/Module/Editlayout.php:147 +#: ../../Zotlabs/Module/Editpost.php:126 +#: ../../Zotlabs/Module/Editwebpage.php:189 ../../Zotlabs/Module/Mail.php:253 +#: ../../Zotlabs/Module/Mail.php:383 ../../include/conversation.php:1225 +msgid "Insert web link" +msgstr "Weblink invoegen" -#: ../../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." +#: ../../Zotlabs/Module/Chat.php:216 +msgid "Feature disabled." +msgstr "Functie uitgeschakeld." -#: ../../include/bbcode.php:193 ../../mod/impel.php:37 -msgid "webpage" -msgstr "Webpagina" +#: ../../Zotlabs/Module/Chat.php:230 +msgid "New Chatroom" +msgstr "Nieuw chatkanaal" -#: ../../include/bbcode.php:196 ../../mod/impel.php:47 -msgid "layout" -msgstr "lay-out" +#: ../../Zotlabs/Module/Chat.php:231 +msgid "Chatroom name" +msgstr "Naam chatkanaal" -#: ../../include/bbcode.php:199 ../../mod/impel.php:42 -msgid "block" -msgstr "blok" +#: ../../Zotlabs/Module/Chat.php:232 +msgid "Expiration of chats (minutes)" +msgstr "Aantal minuten voordat chatberichten worden verwijderd" -#: ../../include/bbcode.php:202 ../../mod/impel.php:54 -msgid "menu" -msgstr "menu" +#: ../../Zotlabs/Module/Chat.php:233 ../../Zotlabs/Module/Filestorage.php:151 +#: ../../Zotlabs/Module/Photos.php:670 ../../Zotlabs/Module/Photos.php:1044 +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:359 +#: ../../include/acl_selectors.php:251 +msgid "Permissions" +msgstr "Permissies" -#: ../../include/bbcode.php:255 +#: ../../Zotlabs/Module/Chat.php:244 #, php-format -msgid "%1$s wrote the following %2$s %3$s" -msgstr "%1$s schreef het volgende %2$s %3$s" +msgid "%1$s's Chatrooms" +msgstr "Chatkanalen van %1$s" -#: ../../include/bbcode.php:257 ../../mod/tagger.php:51 -msgid "post" -msgstr "bericht" +#: ../../Zotlabs/Module/Chat.php:249 +msgid "No chatrooms available" +msgstr "Geen chatkanalen beschikbaar" -#: ../../include/bbcode.php:545 -msgid "Different viewers will see this text differently" -msgstr "Deze tekst wordt per persoon anders weergeven." +#: ../../Zotlabs/Module/Chat.php:250 ../../Zotlabs/Module/Manage.php:141 +#: ../../Zotlabs/Module/Profiles.php:781 +msgid "Create New" +msgstr "Nieuwe aanmaken" -#: ../../include/bbcode.php:762 -msgid "$1 spoiler" -msgstr "$1 spoiler" +#: ../../Zotlabs/Module/Chat.php:253 +msgid "Expiration" +msgstr "Verloopt na" -#: ../../include/bbcode.php:789 -msgid "$1 wrote:" -msgstr "$1 schreef:" - -#: ../../include/conversation.php:120 ../../include/text.php:1967 -#: ../../mod/like.php:367 ../../mod/subthread.php:83 ../../mod/tagger.php:43 -msgid "photo" -msgstr "foto" +#: ../../Zotlabs/Module/Chat.php:254 +msgid "min" +msgstr "min" -#: ../../include/conversation.php:123 ../../include/event.php:915 -#: ../../include/text.php:1970 ../../mod/events.php:249 ../../mod/like.php:369 -#: ../../mod/tagger.php:47 -msgid "event" -msgstr "gebeurtenis" +#: ../../Zotlabs/Module/Chatsvc.php:115 +msgid "Away" +msgstr "Afwezig" -#: ../../include/conversation.php:126 ../../mod/like.php:113 -msgid "channel" -msgstr "kanaal" +#: ../../Zotlabs/Module/Chatsvc.php:120 +msgid "Online" +msgstr "Online" -#: ../../include/conversation.php:148 ../../include/text.php:1973 -#: ../../mod/like.php:367 ../../mod/subthread.php:83 -msgid "status" -msgstr "bericht" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." +msgstr "Geen kanaal." -#: ../../include/conversation.php:150 ../../include/text.php:1975 -#: ../../mod/tagger.php:53 -msgid "comment" -msgstr "reactie" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" +msgstr "Veel voorkomende connecties" -#: ../../include/conversation.php:164 ../../mod/like.php:416 -#, php-format -msgid "%1$s likes %2$s's %3$s" -msgstr "%1$s vindt %3$s van %2$s leuk" +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." +msgstr "Geen gemeenschappelijke connecties." -#: ../../include/conversation.php:167 ../../mod/like.php:418 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" -msgstr "%1$s vindt %3$s van %2$s niet leuk" +#: ../../Zotlabs/Module/Connect.php:60 ../../Zotlabs/Module/Connect.php:108 +msgid "Continue" +msgstr "Ga verder" -#: ../../include/conversation.php:204 -#, php-format -msgid "%1$s is now connected with %2$s" -msgstr "%1$s is nu met %2$s verbonden" +#: ../../Zotlabs/Module/Connect.php:89 +msgid "Premium Channel Setup" +msgstr "Instellen premiumkanaal " -#: ../../include/conversation.php:239 -#, php-format -msgid "%1$s poked %2$s" -msgstr "%1$s heeft %2$s aangestoten" +#: ../../Zotlabs/Module/Connect.php:91 +msgid "Enable premium channel connection restrictions" +msgstr "Restricties voor connecties van premiumkanaal toestaan" -#: ../../include/conversation.php:243 ../../include/text.php:992 -#: ../../include/text.php:997 -msgid "poked" -msgstr "aangestoten" +#: ../../Zotlabs/Module/Connect.php:92 +msgid "" +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." +msgstr "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz." -#: ../../include/conversation.php:260 ../../mod/mood.php:63 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" -msgstr "%1$s is %2$s" +#: ../../Zotlabs/Module/Connect.php:94 ../../Zotlabs/Module/Connect.php:114 +msgid "" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" +msgstr "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:" -#: ../../include/conversation.php:574 ../../mod/photos.php:1102 -msgctxt "title" -msgid "Likes" -msgstr "vinden dit leuk" +#: ../../Zotlabs/Module/Connect.php:95 +msgid "" +"Potential connections will then see the following text before proceeding:" +msgstr "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:" -#: ../../include/conversation.php:574 ../../mod/photos.php:1102 -msgctxt "title" -msgid "Dislikes" -msgstr "vinden dit niet leuk" +#: ../../Zotlabs/Module/Connect.php:96 ../../Zotlabs/Module/Connect.php:117 +msgid "" +"By continuing, I certify that I have complied with any instructions provided" +" on this page." +msgstr "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina." -#: ../../include/conversation.php:575 ../../mod/photos.php:1103 -msgctxt "title" -msgid "Agree" -msgstr "eens" +#: ../../Zotlabs/Module/Connect.php:105 +msgid "(No specific instructions have been provided by the channel owner.)" +msgstr "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) " -#: ../../include/conversation.php:575 ../../mod/photos.php:1103 -msgctxt "title" -msgid "Disagree" -msgstr "oneens" +#: ../../Zotlabs/Module/Connect.php:113 +msgid "Restricted or Premium Channel" +msgstr "Beperkt of premiumkanaal" -#: ../../include/conversation.php:575 ../../mod/photos.php:1103 -msgctxt "title" -msgid "Abstain" -msgstr "onthoudingen" +#: ../../Zotlabs/Module/Connections.php:56 +#: ../../Zotlabs/Module/Connections.php:161 +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Blocked" +msgstr "Geblokkeerd" -#: ../../include/conversation.php:576 ../../mod/photos.php:1104 -msgctxt "title" -msgid "Attending" -msgstr "aanwezig" +#: ../../Zotlabs/Module/Connections.php:61 +#: ../../Zotlabs/Module/Connections.php:168 +#: ../../Zotlabs/Module/Connections.php:241 +msgid "Ignored" +msgstr "Genegeerd" -#: ../../include/conversation.php:576 ../../mod/photos.php:1104 -msgctxt "title" -msgid "Not attending" -msgstr "niet aanwezig" +#: ../../Zotlabs/Module/Connections.php:66 +#: ../../Zotlabs/Module/Connections.php:182 +#: ../../Zotlabs/Module/Connections.php:240 +msgid "Hidden" +msgstr "Verborgen" -#: ../../include/conversation.php:576 ../../mod/photos.php:1104 -msgctxt "title" -msgid "Might attend" -msgstr "mogelijk aanwezig" +#: ../../Zotlabs/Module/Connections.php:71 +#: ../../Zotlabs/Module/Connections.php:175 +#: ../../Zotlabs/Module/Connections.php:239 +msgid "Archived" +msgstr "Gearchiveerd" -#: ../../include/conversation.php:691 -#, php-format -msgid "View %s's profile @ %s" -msgstr "Bekijk het profiel van %s @ %s" +#: ../../Zotlabs/Module/Connections.php:76 +#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1553 +msgid "New" +msgstr "Nieuw" -#: ../../include/conversation.php:710 -msgid "Categories:" -msgstr "Categorieën:" +#: ../../Zotlabs/Module/Connections.php:92 +#: ../../Zotlabs/Module/Connections.php:107 +#: ../../Zotlabs/Module/Connedit.php:597 ../../include/widgets.php:448 +msgid "All" +msgstr "Alles" -#: ../../include/conversation.php:711 -msgid "Filed under:" -msgstr "Bewaard onder:" +#: ../../Zotlabs/Module/Connections.php:138 +msgid "New Connections" +msgstr "Nieuwe connecties" -#: ../../include/conversation.php:738 -msgid "View in context" -msgstr "In context bekijken" +#: ../../Zotlabs/Module/Connections.php:141 +msgid "Show pending (new) connections" +msgstr "Nog te accepteren (nieuwe) connecties weergeven" -#: ../../include/conversation.php:850 -msgid "remove" -msgstr "verwijderen" +#: ../../Zotlabs/Module/Connections.php:145 +#: ../../Zotlabs/Module/Profperm.php:144 +msgid "All Connections" +msgstr "Alle connecties" -#: ../../include/conversation.php:854 ../../include/nav.php:244 -msgid "Loading..." -msgstr "Aan het laden..." +#: ../../Zotlabs/Module/Connections.php:148 +msgid "Show all connections" +msgstr "Toon alle connecties" -#: ../../include/conversation.php:855 -msgid "Delete Selected Items" -msgstr "Verwijder de geselecteerde items" +#: ../../Zotlabs/Module/Connections.php:164 +msgid "Only show blocked connections" +msgstr "Toon alleen geblokkeerde connecties" -#: ../../include/conversation.php:953 -msgid "View Source" -msgstr "Bron weergeven" +#: ../../Zotlabs/Module/Connections.php:171 +msgid "Only show ignored connections" +msgstr "Toon alleen genegeerde connecties" -#: ../../include/conversation.php:954 -msgid "Follow Thread" -msgstr "Conversatie volgen" +#: ../../Zotlabs/Module/Connections.php:178 +msgid "Only show archived connections" +msgstr "Toon alleen gearchiveerde connecties" -#: ../../include/conversation.php:955 -msgid "Unfollow Thread" -msgstr "Conversatie niet meer volgen" +#: ../../Zotlabs/Module/Connections.php:185 +msgid "Only show hidden connections" +msgstr "Toon alleen verborgen connecties" -#: ../../include/conversation.php:959 ../../include/nav.php:86 -#: ../../mod/connedit.php:516 -msgid "View Profile" -msgstr "Profiel weergeven" +#: ../../Zotlabs/Module/Connections.php:238 +msgid "Pending approval" +msgstr "Moet nog geaccepteerd worden" -#: ../../include/conversation.php:960 -msgid "Activity/Posts" -msgstr "Activiteit/berichten connectie" +#: ../../Zotlabs/Module/Connections.php:254 +#, php-format +msgid "%1$s [%2$s]" +msgstr "%1$s [%2$s]" -#: ../../include/conversation.php:962 -msgid "Edit Connection" +#: ../../Zotlabs/Module/Connections.php:255 +msgid "Edit connection" msgstr "Connectie bewerken" -#: ../../include/conversation.php:963 -msgid "Message" -msgstr "Bericht" +#: ../../Zotlabs/Module/Connections.php:256 +msgid "Delete connection" +msgstr "Connectie verwijderen" -#: ../../include/conversation.php:964 ../../mod/pubsites.php:27 -#: ../../mod/ratings.php:99 -msgid "Ratings" -msgstr "Beoordelingen" +#: ../../Zotlabs/Module/Connections.php:265 +msgid "Channel address" +msgstr "Kanaaladres" -#: ../../include/conversation.php:1080 -#, php-format -msgid "%s likes this." -msgstr "%s vindt dit leuk." +#: ../../Zotlabs/Module/Connections.php:267 +msgid "Network" +msgstr "Netwerk" -#: ../../include/conversation.php:1080 -#, php-format -msgid "%s doesn't like this." -msgstr "%s vindt dit niet leuk." +#: ../../Zotlabs/Module/Connections.php:272 +msgid "Connected" +msgstr "Verbonden" -#: ../../include/conversation.php:1084 -#, php-format -msgid "%2$d people like this." -msgid_plural "%2$d people like this." -msgstr[0] "%2$d persoon vindt dit leuk." -msgstr[1] "%2$d personen vinden dit leuk." +#: ../../Zotlabs/Module/Connections.php:274 +msgid "Approve connection" +msgstr "Connectie accepteren" -#: ../../include/conversation.php:1086 -#, php-format -msgid "%2$d people don't like this." -msgid_plural "%2$d people don't like this." -msgstr[0] "%2$d persoon vindt dit niet leuk." -msgstr[1] "%2$d personen vinden dit niet leuk." +#: ../../Zotlabs/Module/Connections.php:276 +msgid "Ignore connection" +msgstr "Connectie negeren" -#: ../../include/conversation.php:1092 -msgid "and" -msgstr "en" +#: ../../Zotlabs/Module/Connections.php:277 +#: ../../Zotlabs/Module/Connedit.php:549 +#: ../../Zotlabs/Module/Notifications.php:55 +msgid "Ignore" +msgstr "Negeren" -#: ../../include/conversation.php:1095 -#, php-format -msgid ", and %d other people" -msgid_plural ", and %d other people" -msgstr[0] ", en %d ander persoon" -msgstr[1] ", en %d andere personen" +#: ../../Zotlabs/Module/Connections.php:278 +msgid "Recent activity" +msgstr "Recente activiteit" -#: ../../include/conversation.php:1096 -#, php-format -msgid "%s like this." -msgstr "%s vinden dit leuk." +#: ../../Zotlabs/Module/Connections.php:302 ../../include/text.php:834 +#: ../../include/nav.php:189 +msgid "Connections" +msgstr "Connecties" -#: ../../include/conversation.php:1096 -#, php-format -msgid "%s don't like this." -msgstr "%s vinden dit niet leuk." +#: ../../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 +msgid "Search" +msgstr "Zoeken" -#: ../../include/conversation.php:1169 -msgid "Visible to everybody" -msgstr "Voor iedereen zichtbaar" +#: ../../Zotlabs/Module/Connections.php:307 +msgid "Search your connections" +msgstr "Doorzoek jouw connecties" -#: ../../include/conversation.php:1170 ../../mod/chat.php:199 -#: ../../mod/mail.php:202 ../../mod/mail.php:316 -msgid "Please enter a link URL:" -msgstr "Vul een URL in:" +#: ../../Zotlabs/Module/Connections.php:308 +msgid "Connections search" +msgstr "Connecties zoeken" -#: ../../include/conversation.php:1171 -msgid "Please enter a video link/URL:" -msgstr "Vul een videolink/URL in:" +#: ../../Zotlabs/Module/Connections.php:309 +#: ../../Zotlabs/Module/Directory.php:388 +#: ../../Zotlabs/Module/Directory.php:393 ../../include/contact_widgets.php:26 +msgid "Find" +msgstr "Vinden" -#: ../../include/conversation.php:1172 -msgid "Please enter an audio link/URL:" -msgstr "Vul een audiolink/URL in:" +#: ../../Zotlabs/Module/Connedit.php:80 +msgid "Could not access contact record." +msgstr "Kon geen toegang krijgen tot de connectie-gegevens." -#: ../../include/conversation.php:1173 -msgid "Tag term:" -msgstr "Tag:" +#: ../../Zotlabs/Module/Connedit.php:104 +msgid "Could not locate selected profile." +msgstr "Kon het gekozen profiel niet vinden." -#: ../../include/conversation.php:1174 ../../mod/filer.php:48 -msgid "Save to Folder:" -msgstr "Bewaar in map: " +#: ../../Zotlabs/Module/Connedit.php:227 +msgid "Connection updated." +msgstr "Connectie bijgewerkt." -#: ../../include/conversation.php:1175 -msgid "Where are you right now?" -msgstr "Waar bevind je je op dit moment?" +#: ../../Zotlabs/Module/Connedit.php:229 +msgid "Failed to update connection record." +msgstr "Bijwerken van connectie-gegevens mislukt." -#: ../../include/conversation.php:1176 ../../mod/editpost.php:56 -#: ../../mod/mail.php:203 ../../mod/mail.php:317 -msgid "Expires YYYY-MM-DD HH:MM" -msgstr "Verloopt op DD-MM-YYYY om HH:MM" +#: ../../Zotlabs/Module/Connedit.php:276 +msgid "is now connected to" +msgstr "is nu verbonden met" -#: ../../include/conversation.php:1209 ../../mod/photos.php:1067 -#: ../../mod/webpages.php:186 ../../mod/blocks.php:156 -#: ../../mod/layouts.php:185 -msgid "Share" -msgstr "Delen" +#: ../../Zotlabs/Module/Connedit.php:411 +msgid "Could not access address book record." +msgstr "Kon geen toegang krijgen tot de record van de connectie." -#: ../../include/conversation.php:1211 -msgid "Page link name" -msgstr "Linknaam pagina" +#: ../../Zotlabs/Module/Connedit.php:425 +msgid "Refresh failed - channel is currently unavailable." +msgstr "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar" -#: ../../include/conversation.php:1214 -msgid "Post as" -msgstr "Bericht plaatsen als" +#: ../../Zotlabs/Module/Connedit.php:440 ../../Zotlabs/Module/Connedit.php:449 +#: ../../Zotlabs/Module/Connedit.php:458 ../../Zotlabs/Module/Connedit.php:467 +#: ../../Zotlabs/Module/Connedit.php:480 +msgid "Unable to set address book parameters." +msgstr "Niet in staat om de parameters van connecties in te stellen." -#: ../../include/conversation.php:1221 ../../mod/editpost.php:120 -#: ../../mod/editblock.php:143 ../../mod/editlayout.php:141 -#: ../../mod/editwebpage.php:183 -msgid "Upload photo" -msgstr "Foto uploaden" +#: ../../Zotlabs/Module/Connedit.php:504 +msgid "Connection has been removed." +msgstr "Connectie is verwijderd" -#: ../../include/conversation.php:1222 -msgid "upload photo" -msgstr "foto uploaden" +#: ../../Zotlabs/Module/Connedit.php:520 ../../include/conversation.php:959 +#: ../../include/nav.php:86 +msgid "View Profile" +msgstr "Profiel weergeven" -#: ../../include/conversation.php:1223 ../../mod/editpost.php:121 -#: ../../mod/editblock.php:144 ../../mod/editlayout.php:142 -#: ../../mod/editwebpage.php:184 ../../mod/mail.php:248 ../../mod/mail.php:378 -msgid "Attach file" -msgstr "Bestand toevoegen" +#: ../../Zotlabs/Module/Connedit.php:523 +#, php-format +msgid "View %s's profile" +msgstr "Profiel van %s weergeven" -#: ../../include/conversation.php:1224 -msgid "attach file" -msgstr "bestand toevoegen" +#: ../../Zotlabs/Module/Connedit.php:527 +msgid "Refresh Permissions" +msgstr "Permissies vernieuwen" -#: ../../include/conversation.php:1225 ../../mod/editpost.php:122 -#: ../../mod/chat.php:201 ../../mod/editblock.php:145 -#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:185 -#: ../../mod/mail.php:249 ../../mod/mail.php:379 -msgid "Insert web link" -msgstr "Weblink invoegen" +#: ../../Zotlabs/Module/Connedit.php:530 +msgid "Fetch updated permissions" +msgstr "Aangepaste permissies ophalen" -#: ../../include/conversation.php:1226 -msgid "web link" -msgstr "Weblink" +#: ../../Zotlabs/Module/Connedit.php:534 +msgid "Recent Activity" +msgstr "Recente activiteit/berichten" -#: ../../include/conversation.php:1227 -msgid "Insert video link" -msgstr "Videolink invoegen" +#: ../../Zotlabs/Module/Connedit.php:537 +msgid "View recent posts and comments" +msgstr "Recente berichten en reacties weergeven" -#: ../../include/conversation.php:1228 -msgid "video link" -msgstr "videolink" +#: ../../Zotlabs/Module/Connedit.php:544 +msgid "Block (or Unblock) all communications with this connection" +msgstr "Blokkeer (of deblokkeer) alle communicatie met deze connectie" -#: ../../include/conversation.php:1229 -msgid "Insert audio link" -msgstr "Audiolink invoegen" +#: ../../Zotlabs/Module/Connedit.php:545 +msgid "This connection is blocked!" +msgstr "Deze connectie is geblokkeerd!" -#: ../../include/conversation.php:1230 -msgid "audio link" -msgstr "audiolink" +#: ../../Zotlabs/Module/Connedit.php:549 +msgid "Unignore" +msgstr "Niet meer negeren" -#: ../../include/conversation.php:1231 ../../mod/editpost.php:126 -#: ../../mod/editblock.php:149 ../../mod/editlayout.php:147 -#: ../../mod/editwebpage.php:189 -msgid "Set your location" -msgstr "Locatie instellen" +#: ../../Zotlabs/Module/Connedit.php:552 +msgid "Ignore (or Unignore) all inbound communications from this connection" +msgstr "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie" -#: ../../include/conversation.php:1232 -msgid "set location" -msgstr "locatie instellen" +#: ../../Zotlabs/Module/Connedit.php:553 +msgid "This connection is ignored!" +msgstr "Deze connectie wordt genegeerd!" -#: ../../include/conversation.php:1233 ../../mod/editpost.php:128 -msgid "Toggle voting" -msgstr "Peiling in- of uitschakelen" +#: ../../Zotlabs/Module/Connedit.php:557 +msgid "Unarchive" +msgstr "Niet meer archiveren" -#: ../../include/conversation.php:1236 ../../mod/editpost.php:127 -#: ../../mod/editblock.php:150 ../../mod/editlayout.php:148 -#: ../../mod/editwebpage.php:190 -msgid "Clear browser location" -msgstr "Locatie van webbrowser wissen" +#: ../../Zotlabs/Module/Connedit.php:557 +msgid "Archive" +msgstr "Archiveren" -#: ../../include/conversation.php:1237 -msgid "clear location" -msgstr "locatie wissen" +#: ../../Zotlabs/Module/Connedit.php:560 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" +msgstr "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud" -#: ../../include/conversation.php:1239 ../../mod/editpost.php:143 -#: ../../mod/editblock.php:163 ../../mod/editwebpage.php:206 -msgid "Title (optional)" -msgstr "Titel (optioneel)" +#: ../../Zotlabs/Module/Connedit.php:561 +msgid "This connection is archived!" +msgstr "Deze connectie is gearchiveerd!" -#: ../../include/conversation.php:1243 ../../mod/editpost.php:145 -#: ../../mod/editblock.php:166 ../../mod/editlayout.php:164 -#: ../../mod/editwebpage.php:208 -msgid "Categories (optional, comma-separated list)" -msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" +#: ../../Zotlabs/Module/Connedit.php:565 +msgid "Unhide" +msgstr "Niet meer verbergen" -#: ../../include/conversation.php:1245 ../../mod/editpost.php:132 -#: ../../mod/editblock.php:152 ../../mod/editlayout.php:150 -#: ../../mod/editwebpage.php:192 ../../mod/events.php:466 -msgid "Permission settings" -msgstr "Permissies" +#: ../../Zotlabs/Module/Connedit.php:565 +msgid "Hide" +msgstr "Verbergen" -#: ../../include/conversation.php:1246 -msgid "permissions" -msgstr "permissies" +#: ../../Zotlabs/Module/Connedit.php:568 +msgid "Hide or Unhide this connection from your other connections" +msgstr "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties" -#: ../../include/conversation.php:1254 ../../mod/editpost.php:140 -#: ../../mod/editblock.php:160 ../../mod/editlayout.php:157 -#: ../../mod/editwebpage.php:201 -msgid "Public post" -msgstr "Openbaar bericht" +#: ../../Zotlabs/Module/Connedit.php:569 +msgid "This connection is hidden!" +msgstr "Deze connectie is verborgen!" -#: ../../include/conversation.php:1256 ../../mod/editpost.php:146 -#: ../../mod/editblock.php:167 ../../mod/editlayout.php:165 -#: ../../mod/editwebpage.php:209 -msgid "Example: bob@example.com, mary@example.com" -msgstr "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be" +#: ../../Zotlabs/Module/Connedit.php:576 +msgid "Delete this connection" +msgstr "Deze connectie verwijderen" -#: ../../include/conversation.php:1269 ../../mod/editpost.php:157 -#: ../../mod/editblock.php:177 ../../mod/editlayout.php:174 -#: ../../mod/editwebpage.php:218 ../../mod/mail.php:253 ../../mod/mail.php:383 -msgid "Set expiration date" -msgstr "Verloopdatum instellen" +#: ../../Zotlabs/Module/Connedit.php:593 ../../include/widgets.php:444 +msgid "Me" +msgstr "Ik" -#: ../../include/conversation.php:1272 -msgid "Set publish date" -msgstr "Publicatiedatum instellen" +#: ../../Zotlabs/Module/Connedit.php:594 ../../include/widgets.php:445 +msgid "Family" +msgstr "Familie" -#: ../../include/conversation.php:1276 ../../mod/editpost.php:161 -msgid "OK" -msgstr "OK" +#: ../../Zotlabs/Module/Connedit.php:595 ../../Zotlabs/Module/Settings.php:340 +#: ../../Zotlabs/Module/Settings.php:344 ../../Zotlabs/Module/Settings.php:345 +#: ../../Zotlabs/Module/Settings.php:348 ../../Zotlabs/Module/Settings.php:359 +#: ../../include/identity.php:389 ../../include/identity.php:390 +#: ../../include/identity.php:397 ../../include/profile_selectors.php:80 +#: ../../include/widgets.php:446 +msgid "Friends" +msgstr "Vrienden" -#: ../../include/conversation.php:1277 ../../mod/editpost.php:162 -#: ../../mod/fbrowser.php:77 ../../mod/fbrowser.php:112 -#: ../../mod/settings.php:598 ../../mod/settings.php:624 -#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 -msgid "Cancel" -msgstr "Annuleren" +#: ../../Zotlabs/Module/Connedit.php:596 ../../include/widgets.php:447 +msgid "Acquaintances" +msgstr "Kennissen" -#: ../../include/conversation.php:1521 -msgid "Discover" -msgstr "Ontdekken" +#: ../../Zotlabs/Module/Connedit.php:657 +msgid "Approve this connection" +msgstr "Deze connectie accepteren" -#: ../../include/conversation.php:1524 -msgid "Imported public streams" -msgstr "Openbare streams importeren" +#: ../../Zotlabs/Module/Connedit.php:657 +msgid "Accept connection to allow communication" +msgstr "Keur deze connectie goed om communicatie toe te staan" -#: ../../include/conversation.php:1529 -msgid "Commented Order" -msgstr "Nieuwe reacties bovenaan" +#: ../../Zotlabs/Module/Connedit.php:662 +msgid "Set Affinity" +msgstr "Verwantschapsfilter instellen" -#: ../../include/conversation.php:1532 -msgid "Sort by Comment Date" -msgstr "Berichten met nieuwe reacties bovenaan" +#: ../../Zotlabs/Module/Connedit.php:665 +msgid "Set Profile" +msgstr "Profiel instellen" -#: ../../include/conversation.php:1536 -msgid "Posted Order" -msgstr "Nieuwe berichten bovenaan" +#: ../../Zotlabs/Module/Connedit.php:668 +msgid "Set Affinity & Profile" +msgstr "Verwantschapsfilter en profiel instellen" -#: ../../include/conversation.php:1539 -msgid "Sort by Post Date" -msgstr "Nieuwe berichten bovenaan" +#: ../../Zotlabs/Module/Connedit.php:701 +msgid "none" +msgstr "geen" -#: ../../include/conversation.php:1544 ../../include/widgets.php:105 -#: ../../mod/profiles.php:696 -msgid "Personal" -msgstr "Persoonlijk" +#: ../../Zotlabs/Module/Connedit.php:705 ../../include/widgets.php:565 +msgid "Connection Default Permissions" +msgstr "Standaard permissies voor connecties" -#: ../../include/conversation.php:1547 -msgid "Posts that mention or involve you" -msgstr "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent" +#: ../../Zotlabs/Module/Connedit.php:705 ../../include/items.php:5159 +#, php-format +msgid "Connection: %s" +msgstr "Connectie: %s" -#: ../../include/conversation.php:1553 ../../mod/connections.php:72 -#: ../../mod/connections.php:82 ../../mod/menu.php:112 -msgid "New" -msgstr "Nieuw" +#: ../../Zotlabs/Module/Connedit.php:706 +msgid "Apply these permissions automatically" +msgstr "Deze permissies automatisch toepassen" -#: ../../include/conversation.php:1556 -msgid "Activity Stream - by date" -msgstr "Activiteitenstroom - volgens datum" +#: ../../Zotlabs/Module/Connedit.php:706 +msgid "Connection requests will be approved without your interaction" +msgstr "Connectieverzoeken zullen automatisch worden geaccepteerd" -#: ../../include/conversation.php:1562 -msgid "Starred" -msgstr "Met ster" +#: ../../Zotlabs/Module/Connedit.php:708 +msgid "This connection's primary address is" +msgstr "Het primaire kanaaladres van deze connectie is" -#: ../../include/conversation.php:1565 -msgid "Favourite Posts" -msgstr "Favoriete berichten" +#: ../../Zotlabs/Module/Connedit.php:709 +msgid "Available locations:" +msgstr "Beschikbare locaties:" -#: ../../include/conversation.php:1572 -msgid "Spam" -msgstr "Spam" +#: ../../Zotlabs/Module/Connedit.php:713 +msgid "" +"The permissions indicated on this page will be applied to all new " +"connections." +msgstr "Permissies die op deze pagina staan vermeld worden op alle nieuwe connecties toegepast." -#: ../../include/conversation.php:1575 -msgid "Posts flagged as SPAM" -msgstr "Berichten gemarkeerd als SPAM" +#: ../../Zotlabs/Module/Connedit.php:715 +msgid "Slide to adjust your degree of friendship" +msgstr "Schuif om te bepalen hoe goed je iemand kent en/of mag" -#: ../../include/conversation.php:1629 ../../mod/admin.php:1157 -msgid "Channel" -msgstr "Kanaal" +#: ../../Zotlabs/Module/Connedit.php:716 ../../Zotlabs/Module/Rate.php:161 +#: ../../include/js_strings.php:20 +msgid "Rating" +msgstr "Beoordeling" -#: ../../include/conversation.php:1632 -msgid "Status Messages and Posts" -msgstr "Berichten in dit kanaal" +#: ../../Zotlabs/Module/Connedit.php:717 +msgid "Slide to adjust your rating" +msgstr "Gebruik de schuif om je beoordeling te geven" -#: ../../include/conversation.php:1641 -msgid "About" -msgstr "Over" +#: ../../Zotlabs/Module/Connedit.php:718 ../../Zotlabs/Module/Connedit.php:723 +msgid "Optionally explain your rating" +msgstr "Verklaar jouw beoordeling (niet verplicht)" -#: ../../include/conversation.php:1644 -msgid "Profile Details" -msgstr "Profiel" +#: ../../Zotlabs/Module/Connedit.php:720 +msgid "Custom Filter" +msgstr "Berichtenfilter" -#: ../../include/conversation.php:1660 -msgid "Files and Storage" -msgstr "Bestanden en opslagruimte" +#: ../../Zotlabs/Module/Connedit.php:721 +msgid "Only import posts with this text" +msgstr "Importeer alleen berichten met deze tekst" -#: ../../include/conversation.php:1681 ../../include/conversation.php:1684 -#: ../../include/widgets.php:794 -msgid "Chatrooms" -msgstr "Chatkanalen" +#: ../../Zotlabs/Module/Connedit.php:721 ../../Zotlabs/Module/Connedit.php:722 +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" -#: ../../include/conversation.php:1697 -msgid "Saved Bookmarks" -msgstr "Opgeslagen bladwijzers" +#: ../../Zotlabs/Module/Connedit.php:722 +msgid "Do not import posts with this text" +msgstr "Importeer geen berichten met deze tekst" -#: ../../include/conversation.php:1707 -msgid "Manage Webpages" -msgstr "Webpagina's beheren" +#: ../../Zotlabs/Module/Connedit.php:724 +msgid "This information is public!" +msgstr "Deze informatie is openbaar!" -#: ../../include/conversation.php:1766 -msgctxt "noun" -msgid "Attending" -msgid_plural "Attending" -msgstr[0] "aanwezig" -msgstr[1] "aanwezig" - -#: ../../include/conversation.php:1769 -msgctxt "noun" -msgid "Not Attending" -msgid_plural "Not Attending" -msgstr[0] "niet aanwezig" -msgstr[1] "niet aanwezig" - -#: ../../include/conversation.php:1772 -msgctxt "noun" -msgid "Undecided" -msgid_plural "Undecided" -msgstr[0] "nog niet beslist" -msgstr[1] "nog niet beslist" - -#: ../../include/conversation.php:1775 -msgctxt "noun" -msgid "Agree" -msgid_plural "Agrees" -msgstr[0] "eens" -msgstr[1] "eens" - -#: ../../include/conversation.php:1778 -msgctxt "noun" -msgid "Disagree" -msgid_plural "Disagrees" -msgstr[0] "oneens" -msgstr[1] "oneens" +#: ../../Zotlabs/Module/Connedit.php:729 +msgid "Connection Pending Approval" +msgstr "Connectie moet nog geaccepteerd worden" -#: ../../include/conversation.php:1781 -msgctxt "noun" -msgid "Abstain" -msgid_plural "Abstains" -msgstr[0] "onthouding" -msgstr[1] "onthoudingen" +#: ../../Zotlabs/Module/Connedit.php:732 +msgid "inherited" +msgstr "geërfd" -#: ../../include/bookmarks.php:35 +#: ../../Zotlabs/Module/Connedit.php:734 #, php-format -msgid "%1$s's bookmarks" -msgstr "Bladwijzers van %1$s" +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." -#: ../../include/chat.php:23 -msgid "Missing room name" -msgstr "Naam chatkanaal ontbreekt" +#: ../../Zotlabs/Module/Connedit.php:736 +msgid "Their Settings" +msgstr "Hun instellingen" -#: ../../include/chat.php:32 -msgid "Duplicate room name" -msgstr "Naam chatkanaal bestaat al" +#: ../../Zotlabs/Module/Connedit.php:737 +msgid "My Settings" +msgstr "Mijn instellingen" -#: ../../include/chat.php:82 ../../include/chat.php:90 -msgid "Invalid room specifier." -msgstr "Ongeldige omschrijving chatkanaal" +#: ../../Zotlabs/Module/Connedit.php:739 +msgid "Individual Permissions" +msgstr "Individuele permissies" -#: ../../include/chat.php:122 -msgid "Room not found." -msgstr "Chatkanaal niet gevonden" +#: ../../Zotlabs/Module/Connedit.php:740 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can not change those" +" settings here." +msgstr "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele instellingen. Je kan je deze overgeërfde permissies hier niet veranderen." -#: ../../include/chat.php:143 -msgid "Room is full" -msgstr "Chatkanaal is vol" +#: ../../Zotlabs/Module/Connedit.php:741 +msgid "" +"Some permissions may be inherited from your channel's privacy settings, which have higher " +"priority than individual settings. You can change those settings here but " +"they wont have any impact unless the inherited setting changes." +msgstr "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele permissies. Je kan de permissies hier veranderen, maar die hebben geen effect, tenzij de overgeërfde permissies worden veranderd. " -#: ../../include/Contact.php:118 -msgid "New window" -msgstr "Nieuw venster" +#: ../../Zotlabs/Module/Connedit.php:742 +msgid "Last update:" +msgstr "Laatste wijziging:" -#: ../../include/Contact.php:119 -msgid "Open the selected location in a different window or browser tab" -msgstr "Open de geselecteerde locatie in een ander venster of tab" +#: ../../Zotlabs/Module/Cover_photo.php:58 +#: ../../Zotlabs/Module/Profile_photo.php:79 +msgid "Image uploaded but image cropping failed." +msgstr "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. " -#: ../../include/Contact.php:237 -#, php-format -msgid "User '%s' deleted" -msgstr "Account '%s' verwijderd" +#: ../../Zotlabs/Module/Cover_photo.php:134 +#: ../../Zotlabs/Module/Cover_photo.php:181 +msgid "Cover Photos" +msgstr "Omslagfoto's" -#: ../../include/auth.php:105 -msgid "Logged out." -msgstr "Uitgelogd." +#: ../../Zotlabs/Module/Cover_photo.php:154 +#: ../../Zotlabs/Module/Profile_photo.php:133 +msgid "Image resize failed." +msgstr "Afbeelding kon niet van grootte veranderd worden." -#: ../../include/auth.php:212 -msgid "Failed authentication" -msgstr "Mislukte authenticatie" +#: ../../Zotlabs/Module/Cover_photo.php:168 +#: ../../Zotlabs/Module/Profile_photo.php:192 ../../include/photos.php:146 +msgid "Unable to process image" +msgstr "Afbeelding kan niet verwerkt worden" -#: ../../include/auth.php:226 ../../mod/openid.php:189 -msgid "Login failed." -msgstr "Inloggen mislukt." +#: ../../Zotlabs/Module/Cover_photo.php:192 +#: ../../Zotlabs/Module/Profile_photo.php:217 +msgid "Image upload failed." +msgstr "Uploaden afbeelding mislukt" -#: ../../include/security.php:383 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." -msgstr "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. " +#: ../../Zotlabs/Module/Cover_photo.php:210 +#: ../../Zotlabs/Module/Profile_photo.php:236 +msgid "Unable to process image." +msgstr "Niet in staat om afbeelding te verwerken." -#: ../../include/comanche.php:34 ../../mod/admin.php:366 -msgid "Default" -msgstr "Standaard" +#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:5587 +msgid "female" +msgstr "vrouw" -#: ../../include/contact_selectors.php:56 -msgid "Frequently" -msgstr "Regelmatig" +#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:5588 +#, php-format +msgid "%1$s updated her %2$s" +msgstr "%1$s heeft haar %2$s bijgewerkt" -#: ../../include/contact_selectors.php:57 -msgid "Hourly" -msgstr "Elk uur" +#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:5589 +msgid "male" +msgstr "man" -#: ../../include/contact_selectors.php:58 -msgid "Twice daily" -msgstr "Twee keer per dag" +#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:5590 +#, php-format +msgid "%1$s updated his %2$s" +msgstr "%1$s heeft zijn %2$s bijgewerkt" -#: ../../include/contact_selectors.php:59 -msgid "Daily" -msgstr "Dagelijks" +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:5592 +#, php-format +msgid "%1$s updated their %2$s" +msgstr "De %2$s van %1$s is bijgewerkt" -#: ../../include/contact_selectors.php:60 -msgid "Weekly" -msgstr "Wekelijks" +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/identity.php:1800 +msgid "cover photo" +msgstr "omslagfoto" -#: ../../include/contact_selectors.php:61 -msgid "Monthly" -msgstr "Maandelijks" +#: ../../Zotlabs/Module/Cover_photo.php:303 +#: ../../Zotlabs/Module/Cover_photo.php:318 +#: ../../Zotlabs/Module/Profile_photo.php:283 +#: ../../Zotlabs/Module/Profile_photo.php:324 +msgid "Photo not available." +msgstr "Foto niet beschikbaar." -#: ../../include/contact_selectors.php:76 -#: ../../include/contact_selectors.php:77 -msgid "Friendica" -msgstr "Friendica" +#: ../../Zotlabs/Module/Cover_photo.php:354 +#: ../../Zotlabs/Module/Profile_photo.php:365 +msgid "Upload File:" +msgstr "Bestand uploaden:" -#: ../../include/contact_selectors.php:78 -msgid "OStatus" -msgstr "OStatus" +#: ../../Zotlabs/Module/Cover_photo.php:355 +#: ../../Zotlabs/Module/Profile_photo.php:366 +msgid "Select a profile:" +msgstr "Kies een profiel:" -#: ../../include/contact_selectors.php:79 -msgid "GNU-Social" -msgstr "GNU social" +#: ../../Zotlabs/Module/Cover_photo.php:356 +msgid "Upload Cover Photo" +msgstr "Omslagfoto uploaden" -#: ../../include/contact_selectors.php:80 -msgid "RSS/Atom" -msgstr "RSS/Atom" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:374 +#: ../../Zotlabs/Module/Settings.php:983 +msgid "or" +msgstr "of" -#: ../../include/contact_selectors.php:81 ../../mod/admin.php:989 -#: ../../mod/admin.php:998 ../../mod/id.php:15 ../../mod/id.php:16 -#: ../../boot.php:1602 -msgid "Email" -msgstr "E-mail" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:374 +msgid "skip this step" +msgstr "sla deze stap over" -#: ../../include/contact_selectors.php:82 -msgid "Diaspora" -msgstr "Diaspora" +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Profile_photo.php:374 +msgid "select a photo from your photo albums" +msgstr "Kies een foto uit jouw fotoalbums" -#: ../../include/contact_selectors.php:83 -msgid "Facebook" -msgstr "Facebook" +#: ../../Zotlabs/Module/Cover_photo.php:377 +#: ../../Zotlabs/Module/Profile_photo.php:390 +msgid "Crop Image" +msgstr "Afbeelding bijsnijden" -#: ../../include/contact_selectors.php:84 -msgid "Zot" -msgstr "Zot" +#: ../../Zotlabs/Module/Cover_photo.php:378 +#: ../../Zotlabs/Module/Profile_photo.php:391 +msgid "Please adjust the image cropping for optimum viewing." +msgstr "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven." -#: ../../include/contact_selectors.php:85 -msgid "LinkedIn" -msgstr "LinkedIn" +#: ../../Zotlabs/Module/Cover_photo.php:380 +#: ../../Zotlabs/Module/Profile_photo.php:393 +msgid "Done Editing" +msgstr "Klaar met bewerken" -#: ../../include/contact_selectors.php:86 -msgid "XMPP/IM" -msgstr "XMPP/IM" +#: ../../Zotlabs/Module/Dav.php:127 +msgid "$Projectname channel" +msgstr "$Projectname-kanaal" -#: ../../include/contact_selectors.php:87 -msgid "MySpace" -msgstr "MySpace" +#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:21 +#: ../../Zotlabs/Module/Photos.php:521 ../../Zotlabs/Module/Ratings.php:86 +#: ../../Zotlabs/Module/Search.php:17 +#: ../../Zotlabs/Module/Viewconnections.php:21 +msgid "Public access denied." +msgstr "Openbare toegang geweigerd." -#: ../../include/contact_widgets.php:14 +#: ../../Zotlabs/Module/Directory.php:243 #, php-format -msgid "%d invitation available" -msgid_plural "%d invitations available" -msgstr[0] "%d uitnodiging beschikbaar" -msgstr[1] "%d uitnodigingen beschikbaar" +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "%d beoordeling" +msgstr[1] "%d beoordelingen" -#: ../../include/contact_widgets.php:19 ../../mod/admin.php:461 -msgid "Advanced" -msgstr "Geavanceerd" +#: ../../Zotlabs/Module/Directory.php:254 +msgid "Gender: " +msgstr "Geslacht:" -#: ../../include/contact_widgets.php:22 -msgid "Find Channels" -msgstr "Kanalen vinden" +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Status: " +msgstr "Status: " -#: ../../include/contact_widgets.php:23 -msgid "Enter name or interest" -msgstr "Vul naam of interesse in" +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Homepage: " +msgstr "Homepage: " -#: ../../include/contact_widgets.php:24 -msgid "Connect/Follow" -msgstr "Verbinden/volgen" +#: ../../Zotlabs/Module/Directory.php:306 ../../include/identity.php:1322 +msgid "Age:" +msgstr "Leeftijd:" -#: ../../include/contact_widgets.php:25 -msgid "Examples: Robert Morgenstein, Fishing" -msgstr "Voorbeeld: Robert Morgenstein, vissen" +#: ../../Zotlabs/Module/Directory.php:311 ../../include/identity.php:1022 +#: ../../include/bb2diaspora.php:509 ../../include/event.php:52 +#: ../../include/text.php:1452 +msgid "Location:" +msgstr "Plaats:" -#: ../../include/contact_widgets.php:26 ../../mod/connections.php:305 -#: ../../mod/directory.php:384 ../../mod/directory.php:389 -msgid "Find" -msgstr "Vinden" +#: ../../Zotlabs/Module/Directory.php:317 +msgid "Description:" +msgstr "Omschrijving:" -#: ../../include/contact_widgets.php:27 ../../mod/directory.php:388 -#: ../../mod/suggest.php:60 -msgid "Channel Suggestions" -msgstr "Voorgestelde kanalen" +#: ../../Zotlabs/Module/Directory.php:322 ../../include/identity.php:1338 +msgid "Hometown:" +msgstr "Oorspronkelijk uit:" -#: ../../include/contact_widgets.php:29 -msgid "Random Profile" -msgstr "Willekeurig profiel" +#: ../../Zotlabs/Module/Directory.php:324 ../../include/identity.php:1346 +msgid "About:" +msgstr "Over:" -#: ../../include/contact_widgets.php:30 -msgid "Invite Friends" -msgstr "Vrienden uitnodigen" +#: ../../Zotlabs/Module/Directory.php:325 ../../Zotlabs/Module/Match.php:68 +#: ../../Zotlabs/Module/Suggest.php:56 ../../include/identity.php:1007 +#: ../../include/conversation.php:961 ../../include/Contact.php:101 +#: ../../include/widgets.php:147 ../../include/widgets.php:184 +msgid "Connect" +msgstr "Verbinden" -#: ../../include/contact_widgets.php:32 -msgid "Advanced example: name=fred and country=iceland" -msgstr "Geavanceerd voorbeeld (Engels): name=jan en country=nederland" +#: ../../Zotlabs/Module/Directory.php:326 +msgid "Public Forum:" +msgstr "Openbaar forum:" -#: ../../include/contact_widgets.php:57 ../../include/features.php:97 -#: ../../include/widgets.php:310 -msgid "Saved Folders" -msgstr "Bewaarde mappen" +#: ../../Zotlabs/Module/Directory.php:329 +msgid "Keywords: " +msgstr "Trefwoorden: " -#: ../../include/contact_widgets.php:60 ../../include/contact_widgets.php:98 -#: ../../include/widgets.php:313 -msgid "Everything" -msgstr "Alles" +#: ../../Zotlabs/Module/Directory.php:332 +msgid "Don't suggest" +msgstr "Niet voorstellen" -#: ../../include/contact_widgets.php:95 ../../include/widgets.php:46 -#: ../../include/taxonomy.php:282 -msgid "Categories" -msgstr "Categorieën" +#: ../../Zotlabs/Module/Directory.php:334 +msgid "Common connections:" +msgstr "Gemeenschappelijke connecties:" -#: ../../include/contact_widgets.php:128 -#, php-format -msgid "%d connection in common" -msgid_plural "%d connections in common" -msgstr[0] "%d gemeenschappelijke connectie" -msgstr[1] "%d gemeenschappelijke connecties" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Global Directory" +msgstr "Volledige kanalengids" -#: ../../include/contact_widgets.php:133 -msgid "show more" -msgstr "meer connecties weergeven" +#: ../../Zotlabs/Module/Directory.php:383 +msgid "Local Directory" +msgstr "Lokale kanalengids" -#: ../../include/attach.php:247 ../../include/attach.php:333 -msgid "Item was not found." -msgstr "Item niet gevonden" +#: ../../Zotlabs/Module/Directory.php:389 +msgid "Finding:" +msgstr "Gezocht naar:" -#: ../../include/attach.php:497 -msgid "No source file." -msgstr "Geen bronbestand." +#: ../../Zotlabs/Module/Directory.php:392 ../../Zotlabs/Module/Suggest.php:64 +#: ../../include/contact_widgets.php:27 +msgid "Channel Suggestions" +msgstr "Voorgestelde kanalen" -#: ../../include/attach.php:519 -msgid "Cannot locate file to replace" -msgstr "Kan het te vervangen bestand niet vinden" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "next page" +msgstr "volgende pagina" -#: ../../include/attach.php:537 -msgid "Cannot locate file to revise/update" -msgstr "Kan het bestand wat aangepast moet worden niet vinden" +#: ../../Zotlabs/Module/Directory.php:394 +msgid "previous page" +msgstr "vorige pagina" -#: ../../include/attach.php:672 -#, php-format -msgid "File exceeds size limit of %d" -msgstr "Bestand is groter dan de toegelaten %d" +#: ../../Zotlabs/Module/Directory.php:395 +msgid "Sort options" +msgstr "Sorteeropties" -#: ../../include/attach.php:686 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." -msgstr "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt." +#: ../../Zotlabs/Module/Directory.php:396 +msgid "Alphabetic" +msgstr "Alfabetisch" -#: ../../include/attach.php:842 -msgid "File upload failed. Possible system limit or action terminated." -msgstr "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken." +#: ../../Zotlabs/Module/Directory.php:397 +msgid "Reverse Alphabetic" +msgstr "Omgekeerd alfabetisch" -#: ../../include/attach.php:855 -msgid "Stored file could not be verified. Upload failed." -msgstr "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt." +#: ../../Zotlabs/Module/Directory.php:398 +msgid "Newest to Oldest" +msgstr "Nieuw naar oud" -#: ../../include/attach.php:909 ../../include/attach.php:925 -msgid "Path not available." -msgstr "Pad niet beschikbaar." +#: ../../Zotlabs/Module/Directory.php:399 +msgid "Oldest to Newest" +msgstr "Oud naar nieuw" -#: ../../include/attach.php:971 ../../include/attach.php:1123 -msgid "Empty pathname" -msgstr "Padnaam leeg" +#: ../../Zotlabs/Module/Directory.php:416 +msgid "No entries (some entries may be hidden)." +msgstr "Niets gevonden (sommige kanalen kunnen verborgen zijn)." -#: ../../include/attach.php:997 -msgid "duplicate filename or path" -msgstr "dubbele bestandsnaam of pad" +#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 +msgid "This site is not a directory server" +msgstr "Deze hub is geen kanalengidshub (directoryserver)" -#: ../../include/attach.php:1019 -msgid "Path not found." -msgstr "Pad niet gevonden" +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" +msgstr "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig" -#: ../../include/attach.php:1077 -msgid "mkdir failed." -msgstr "directory aanmaken (mkdir) mislukt." +#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:49 +#: ../../Zotlabs/Module/Group.php:72 ../../Zotlabs/Module/Import_items.php:112 +#: ../../Zotlabs/Module/Like.php:284 ../../Zotlabs/Module/Profperm.php:28 +#: ../../Zotlabs/Module/Subthread.php:62 ../../include/items.php:423 +#: ../../index.php:173 +msgid "Permission denied" +msgstr "Toegang geweigerd" -#: ../../include/attach.php:1081 -msgid "database storage failed." -msgstr "opslag in database mislukt." +#: ../../Zotlabs/Module/Dreport.php:27 +msgid "Invalid message" +msgstr "Ongeldig bericht" -#: ../../include/attach.php:1129 -msgid "Empty path" -msgstr "Ontbrekend bestandspad" +#: ../../Zotlabs/Module/Dreport.php:59 +msgid "no results" +msgstr "geen resultaten" -#: ../../include/datetime.php:48 ../../mod/profiles.php:699 -msgid "Miscellaneous" -msgstr "Diversen" +#: ../../Zotlabs/Module/Dreport.php:64 +#, php-format +msgid "Delivery report for %1$s" +msgstr "Afleveringsrapport voor %1$s" -#: ../../include/datetime.php:136 -msgid "Birthday" -msgstr "Verjaardag of geboortedatum" +#: ../../Zotlabs/Module/Dreport.php:78 +msgid "channel sync processed" +msgstr "kanaalsync verwerkt" -#: ../../include/datetime.php:138 -msgid "Age: " -msgstr "Leeftijd:" +#: ../../Zotlabs/Module/Dreport.php:82 +msgid "queued" +msgstr "in wachtrij" -#: ../../include/datetime.php:140 -msgid "YYYY-MM-DD or MM-DD" -msgstr "JJJJ-MM-DD of MM-DD" +#: ../../Zotlabs/Module/Dreport.php:86 +msgid "posted" +msgstr "verstuurd" -#: ../../include/datetime.php:246 ../../mod/appman.php:91 -#: ../../mod/appman.php:92 ../../mod/profiles.php:708 -#: ../../mod/profiles.php:712 ../../mod/events.php:444 -#: ../../mod/events.php:449 -msgid "Required" -msgstr "Vereist" +#: ../../Zotlabs/Module/Dreport.php:90 +msgid "accepted for delivery" +msgstr "geaccepteerd om afgeleverd te worden" -#: ../../include/datetime.php:273 ../../boot.php:2430 -msgid "never" -msgstr "nooit" +#: ../../Zotlabs/Module/Dreport.php:94 +msgid "updated" +msgstr "geüpdatet" -#: ../../include/datetime.php:279 -msgid "less than a second ago" -msgstr "minder dan een seconde geleden" +#: ../../Zotlabs/Module/Dreport.php:97 +msgid "update ignored" +msgstr "update genegeerd" -#: ../../include/datetime.php:297 -#, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" -msgstr "%1$d %2$s geleden" +#: ../../Zotlabs/Module/Dreport.php:100 +msgid "permission denied" +msgstr "toegang geweigerd" -#: ../../include/datetime.php:308 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "jaar" -msgstr[1] "jaren" +#: ../../Zotlabs/Module/Dreport.php:104 +msgid "recipient not found" +msgstr "ontvanger niet gevonden" -#: ../../include/datetime.php:311 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "maand" -msgstr[1] "maanden" +#: ../../Zotlabs/Module/Dreport.php:107 +msgid "mail recalled" +msgstr "Privébericht ingetrokken" -#: ../../include/datetime.php:314 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "week" -msgstr[1] "weken" +#: ../../Zotlabs/Module/Dreport.php:110 +msgid "duplicate mail received" +msgstr "dubbel privébericht ontvangen" -#: ../../include/datetime.php:317 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "dag" -msgstr[1] "dagen" +#: ../../Zotlabs/Module/Dreport.php:113 +msgid "mail delivered" +msgstr "privébericht afgeleverd" -#: ../../include/datetime.php:320 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "uur" -msgstr[1] "uren" +#: ../../Zotlabs/Module/Editblock.php:82 ../../Zotlabs/Module/Editblock.php:98 +#: ../../Zotlabs/Module/Editlayout.php:80 ../../Zotlabs/Module/Editpost.php:24 +#: ../../Zotlabs/Module/Editwebpage.php:81 +msgid "Item not found" +msgstr "Item niet gevonden" -#: ../../include/datetime.php:323 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "minuut" -msgstr[1] "minuten" +#: ../../Zotlabs/Module/Editblock.php:122 +msgid "Delete block?" +msgstr "Blok verwijderen" -#: ../../include/datetime.php:326 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "seconde" -msgstr[1] "seconden" +#: ../../Zotlabs/Module/Editblock.php:141 +#: ../../Zotlabs/Module/Editlayout.php:140 +#: ../../Zotlabs/Module/Editpost.php:119 +#: ../../Zotlabs/Module/Editwebpage.php:182 ../../include/ItemObject.php:704 +#: ../../include/conversation.php:1216 +msgid "Bold" +msgstr "Vet" -#: ../../include/datetime.php:563 -#, php-format -msgid "%1$s's birthday" -msgstr "Verjaardag van %1$s" +#: ../../Zotlabs/Module/Editblock.php:142 +#: ../../Zotlabs/Module/Editlayout.php:141 +#: ../../Zotlabs/Module/Editpost.php:120 +#: ../../Zotlabs/Module/Editwebpage.php:183 ../../include/ItemObject.php:705 +#: ../../include/conversation.php:1217 +msgid "Italic" +msgstr "Cursief" -#: ../../include/datetime.php:564 -#, php-format -msgid "Happy Birthday %1$s" -msgstr "Gefeliciteerd met je verjaardag %1$s" +#: ../../Zotlabs/Module/Editblock.php:143 +#: ../../Zotlabs/Module/Editlayout.php:142 +#: ../../Zotlabs/Module/Editpost.php:121 +#: ../../Zotlabs/Module/Editwebpage.php:184 ../../include/ItemObject.php:706 +#: ../../include/conversation.php:1218 +msgid "Underline" +msgstr "Onderstrepen" -#: ../../include/dir_fns.php:139 -msgid "Directory Options" -msgstr "Opties kanalengids" +#: ../../Zotlabs/Module/Editblock.php:144 +#: ../../Zotlabs/Module/Editlayout.php:143 +#: ../../Zotlabs/Module/Editpost.php:122 +#: ../../Zotlabs/Module/Editwebpage.php:185 ../../include/ItemObject.php:707 +#: ../../include/conversation.php:1219 +msgid "Quote" +msgstr "Citeren" -#: ../../include/dir_fns.php:141 -msgid "Safe Mode" -msgstr "Veilig zoeken" +#: ../../Zotlabs/Module/Editblock.php:145 +#: ../../Zotlabs/Module/Editlayout.php:144 +#: ../../Zotlabs/Module/Editpost.php:123 +#: ../../Zotlabs/Module/Editwebpage.php:186 ../../include/ItemObject.php:708 +#: ../../include/conversation.php:1220 +msgid "Code" +msgstr "Broncode" -#: ../../include/dir_fns.php:141 ../../include/dir_fns.php:142 -#: ../../include/dir_fns.php:143 ../../mod/admin.php:425 ../../mod/api.php:102 -#: ../../mod/photos.php:661 ../../mod/mitem.php:154 ../../mod/mitem.php:155 -#: ../../mod/mitem.php:228 ../../mod/mitem.php:229 ../../mod/connedit.php:375 -#: ../../mod/connedit.php:653 ../../mod/profiles.php:647 -#: ../../mod/events.php:454 ../../mod/events.php:455 ../../mod/events.php:464 -#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159 -#: ../../mod/removeme.php:60 ../../mod/settings.php:588 ../../mod/menu.php:96 -#: ../../mod/menu.php:153 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1604 -msgid "No" -msgstr "Nee" +#: ../../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" -#: ../../include/dir_fns.php:141 ../../include/dir_fns.php:142 -#: ../../include/dir_fns.php:143 ../../mod/admin.php:427 ../../mod/api.php:101 -#: ../../mod/photos.php:661 ../../mod/mitem.php:154 ../../mod/mitem.php:155 -#: ../../mod/mitem.php:228 ../../mod/mitem.php:229 ../../mod/connedit.php:375 -#: ../../mod/profiles.php:647 ../../mod/events.php:454 -#: ../../mod/events.php:455 ../../mod/events.php:464 -#: ../../mod/filestorage.php:151 ../../mod/filestorage.php:159 -#: ../../mod/removeme.php:60 ../../mod/settings.php:588 ../../mod/menu.php:96 -#: ../../mod/menu.php:153 ../../view/theme/redbasic/php/config.php:105 -#: ../../view/theme/redbasic/php/config.php:130 ../../boot.php:1604 -msgid "Yes" -msgstr "Ja" +#: ../../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/Mail.php:382 ../../include/conversation.php:1223 +msgid "Attach file" +msgstr "Bestand toevoegen" -#: ../../include/dir_fns.php:142 -msgid "Public Forums Only" -msgstr "Alleen openbare forums" +#: ../../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" -#: ../../include/dir_fns.php:143 -msgid "This Website Only" -msgstr "Alleen deze hub" +#: ../../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" -#: ../../include/enotify.php:96 -#, php-format -msgid "%s " -msgstr "%s " - -#: ../../include/enotify.php:100 -#, php-format -msgid "[Hubzilla:Notify] New mail received at %s" -msgstr "[Hubzilla:Notificatie] Nieuw privébericht ontvangen op %s" +#: ../../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" -#: ../../include/enotify.php:102 -#, php-format -msgid "%1$s, %2$s sent you a new private message at %3$s." -msgstr "%1$s, %2$s zond jou een nieuw privébericht om %3$s." +#: ../../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" -#: ../../include/enotify.php:103 -#, php-format -msgid "%1$s sent you %2$s." -msgstr "%1$s zond jou %2$s." +#: ../../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" -#: ../../include/enotify.php:103 -msgid "a private message" -msgstr "een privébericht" +#: ../../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" -#: ../../include/enotify.php:104 -#, php-format -msgid "Please visit %s to view and/or reply to your private messages." -msgstr "Bezoek %s om je privéberichten te bekijken en/of er op te reageren." +#: ../../Zotlabs/Module/Editblock.php:156 +#: ../../Zotlabs/Module/Editlayout.php:154 +#: ../../Zotlabs/Module/Editpost.php:136 +#: ../../Zotlabs/Module/Editwebpage.php:196 +#: ../../Zotlabs/Module/Events.php:470 ../../include/conversation.php:1245 +msgid "Permission settings" +msgstr "Permissies" -#: ../../include/enotify.php:160 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" -msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]een %4$s[/zrl]" +#: ../../Zotlabs/Module/Editblock.php:164 +#: ../../Zotlabs/Module/Editlayout.php:161 +#: ../../Zotlabs/Module/Editpost.php:144 +#: ../../Zotlabs/Module/Editwebpage.php:205 +#: ../../include/conversation.php:1254 +msgid "Public post" +msgstr "Openbaar bericht" -#: ../../include/enotify.php:168 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" -msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]een %5$s van %4$s[/zrl]" +#: ../../Zotlabs/Module/Editblock.php:167 +#: ../../Zotlabs/Module/Editpost.php:147 +#: ../../Zotlabs/Module/Editwebpage.php:210 +#: ../../include/conversation.php:1239 +msgid "Title (optional)" +msgstr "Titel (optioneel)" -#: ../../include/enotify.php:177 -#, php-format -msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" -msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]jouw %4$s[/zrl]" +#: ../../Zotlabs/Module/Editblock.php:170 +#: ../../Zotlabs/Module/Editlayout.php:168 +#: ../../Zotlabs/Module/Editpost.php:149 +#: ../../Zotlabs/Module/Editwebpage.php:212 +#: ../../include/conversation.php:1243 +msgid "Categories (optional, comma-separated list)" +msgstr "Categorieën (optioneel, door komma's gescheiden lijst)" -#: ../../include/enotify.php:188 -#, php-format -msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" -msgstr "[Hubzilla:Notificatie] Reactie op conversatie #%1$d door %2$s" +#: ../../Zotlabs/Module/Editblock.php:171 +#: ../../Zotlabs/Module/Editlayout.php:169 +#: ../../Zotlabs/Module/Editpost.php:150 +#: ../../Zotlabs/Module/Editwebpage.php:213 +#: ../../include/conversation.php:1256 +msgid "Example: bob@example.com, mary@example.com" +msgstr "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be" -#: ../../include/enotify.php:189 -#, php-format -msgid "%1$s, %2$s commented on an item/conversation you have been following." -msgstr "%1$s, %2$s gaf een reactie op een bericht/conversatie die jij volgt." +#: ../../Zotlabs/Module/Editblock.php:176 +#: ../../Zotlabs/Module/Editpost.php:155 +#: ../../Zotlabs/Module/Editwebpage.php:217 +#: ../../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" -#: ../../include/enotify.php:192 ../../include/enotify.php:207 -#: ../../include/enotify.php:233 ../../include/enotify.php:251 -#: ../../include/enotify.php:265 -#, php-format -msgid "Please visit %s to view and/or reply to the conversation." -msgstr "Bezoek %s om de conversatie te bekijken en/of er op te reageren." +#: ../../Zotlabs/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" -#: ../../include/enotify.php:198 -#, php-format -msgid "[Hubzilla:Notify] %s posted to your profile wall" -msgstr "[Hubzilla:Notificatie] %s heeft een bericht op jouw kanaal geplaatst" +#: ../../Zotlabs/Module/Editblock.php:186 +msgid "Edit Block" +msgstr "Blok bewerken" -#: ../../include/enotify.php:200 -#, php-format -msgid "%1$s, %2$s posted to your profile wall at %3$s" -msgstr "%1$s, %2$s heeft om %3$s een bericht op jouw kanaal geplaatst" +#: ../../Zotlabs/Module/Editlayout.php:116 +msgid "Delete layout?" +msgstr "Lay-out verwijderen?" -#: ../../include/enotify.php:202 -#, php-format -msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" -msgstr "%1$s, %2$s heeft een bericht op [zrl=%3$s]jouw kanaal[/zrl] geplaatst" +#: ../../Zotlabs/Module/Editlayout.php:164 +#: ../../Zotlabs/Module/Layouts.php:128 +msgid "Layout Description (Optional)" +msgstr "Lay-out-omschrijving (optioneel)" -#: ../../include/enotify.php:226 -#, php-format -msgid "[Hubzilla:Notify] %s tagged you" -msgstr "[Hubzilla:Notificatie] %s heeft je genoemd" +#: ../../Zotlabs/Module/Editlayout.php:166 +#: ../../Zotlabs/Module/Layouts.php:125 ../../Zotlabs/Module/Layouts.php:184 +msgid "Layout Name" +msgstr "Naam lay-out" -#: ../../include/enotify.php:227 -#, php-format -msgid "%1$s, %2$s tagged you at %3$s" -msgstr "%1$s, %2$s noemde jou op %3$s" +#: ../../Zotlabs/Module/Editlayout.php:183 +msgid "Edit Layout" +msgstr "Lay-out bewerken" -#: ../../include/enotify.php:228 -#, php-format -msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." -msgstr "%1$s, %2$s [zrl=%3$s]noemde jou[/zrl]." +#: ../../Zotlabs/Module/Editpost.php:35 +msgid "Item is not editable" +msgstr "Item is niet te bewerken" -#: ../../include/enotify.php:240 -#, php-format -msgid "[Hubzilla:Notify] %1$s poked you" -msgstr "[Hubzilla:Notificatie] %1$s heeft je aangestoten" +#: ../../Zotlabs/Module/Editpost.php:60 ../../Zotlabs/Module/Mail.php:207 +#: ../../Zotlabs/Module/Mail.php:321 ../../include/conversation.php:1176 +msgid "Expires YYYY-MM-DD HH:MM" +msgstr "Verloopt op DD-MM-YYYY om HH:MM" -#: ../../include/enotify.php:241 -#, php-format -msgid "%1$s, %2$s poked you at %3$s" -msgstr "%1$s, %2$s heeft je aangestoten op %3$s" +#: ../../Zotlabs/Module/Editpost.php:61 +msgid "Delete item?" +msgstr "Item verwijderen?" -#: ../../include/enotify.php:242 -#, php-format -msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." -msgstr "%1$s, %2$s [zrl=%2$s]heeft je aangestoten[/zrl]." +#: ../../Zotlabs/Module/Editpost.php:132 ../../include/conversation.php:1233 +msgid "Toggle voting" +msgstr "Peiling in- of uitschakelen" -#: ../../include/enotify.php:258 -#, php-format -msgid "[Hubzilla:Notify] %s tagged your post" -msgstr "[Hubzilla:Notificatie] %s heeft jouw bericht getagd" +#: ../../Zotlabs/Module/Editpost.php:165 ../../include/conversation.php:1276 +msgid "OK" +msgstr "OK" -#: ../../include/enotify.php:259 -#, php-format -msgid "%1$s, %2$s tagged your post at %3$s" -msgstr "%1$s, %2$s heeft jouw bericht om %3$s getagd" +#: ../../Zotlabs/Module/Editpost.php:166 ../../Zotlabs/Module/Fbrowser.php:66 +#: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Settings.php:589 +#: ../../Zotlabs/Module/Settings.php:615 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../include/conversation.php:1277 +msgid "Cancel" +msgstr "Annuleren" -#: ../../include/enotify.php:260 -#, php-format -msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" -msgstr "%1$s, %2$s heeft [zrl=%3$s]jouw bericht[/zrl] getagd" +#: ../../Zotlabs/Module/Editpost.php:171 ../../Zotlabs/Module/Rpost.php:134 +msgid "Edit post" +msgstr "Bericht bewerken" -#: ../../include/enotify.php:272 -msgid "[Hubzilla:Notify] Introduction received" -msgstr "[Hubzilla:Notificatie] Connectieverzoek ontvangen" +#: ../../Zotlabs/Module/Editwebpage.php:157 +msgid "Delete webpage?" +msgstr "Webpagina verwijderen?" -#: ../../include/enotify.php:273 -#, php-format -msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" -msgstr "%1$s, je hebt een nieuw connectieverzoek ontvangen van '%2$s' op %3$s" +#: ../../Zotlabs/Module/Editwebpage.php:177 +msgid "Page link title" +msgstr "Titel van paginalink" -#: ../../include/enotify.php:274 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." -msgstr "%1$s, je hebt een [zrl=%2$s]nieuw connectieverzoek[/zrl] ontvangen van %3$s." +#: ../../Zotlabs/Module/Editwebpage.php:227 +msgid "Edit Webpage" +msgstr "Webpagina bewerken" -#: ../../include/enotify.php:278 ../../include/enotify.php:297 -#, php-format -msgid "You may visit their profile at %s" -msgstr "Je kan het profiel bekijken op %s" +#: ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." +msgstr "Agenda-items geïmporteerd." -#: ../../include/enotify.php:280 -#, php-format -msgid "Please visit %s to approve or reject the connection request." -msgstr "Bezoek %s om het connectieverzoek te accepteren of af te wijzen." +#: ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." +msgstr "Geen agenda-items gevonden." -#: ../../include/enotify.php:287 -msgid "[Hubzilla:Notify] Friend suggestion received" -msgstr "[Hubzilla:Notificatie] Kanaalvoorstel ontvangen" +#: ../../Zotlabs/Module/Events.php:104 +msgid "Event can not end before it has started." +msgstr "Gebeurtenis kan niet eindigen voordat het is begonnen" -#: ../../include/enotify.php:288 -#, php-format -msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" -msgstr "%1$s, je hebt een kanaalvoorstel ontvangen van '%2$s' om %3$s" +#: ../../Zotlabs/Module/Events.php:106 ../../Zotlabs/Module/Events.php:115 +#: ../../Zotlabs/Module/Events.php:135 +msgid "Unable to generate preview." +msgstr "Niet in staat om voorvertoning te genereren" -#: ../../include/enotify.php:289 -#, php-format -msgid "" -"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " -"%4$s." -msgstr "%1$s, je hebt [zrl=%2$s]een kanaalvoorstel[/zrl] ontvangen voor %3$s van %4$s." +#: ../../Zotlabs/Module/Events.php:113 +msgid "Event title and start time are required." +msgstr "Titel en begintijd van gebeurtenis zijn vereist." -#: ../../include/enotify.php:295 -msgid "Name:" -msgstr "Naam:" +#: ../../Zotlabs/Module/Events.php:133 ../../Zotlabs/Module/Events.php:258 +msgid "Event not found." +msgstr "Gebeurtenis niet gevonden" -#: ../../include/enotify.php:296 -msgid "Photo:" -msgstr "Foto:" +#: ../../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 +msgid "event" +msgstr "gebeurtenis" -#: ../../include/enotify.php:299 -#, php-format -msgid "Please visit %s to approve or reject the suggestion." -msgstr "Bezoek %s om het voorstel te accepteren of af te wijzen." +#: ../../Zotlabs/Module/Events.php:448 +msgid "Edit event title" +msgstr "Titel bewerken" -#: ../../include/enotify.php:514 -msgid "[Hubzilla:Notify]" -msgstr "[Hubzilla:Notificatie]" +#: ../../Zotlabs/Module/Events.php:448 +msgid "Event title" +msgstr "Titel" -#: ../../include/event.php:779 -msgid "This event has been added to your calendar." -msgstr "Dit evenement is aan jouw agenda toegevoegd." +#: ../../Zotlabs/Module/Events.php:450 +msgid "Categories (comma-separated list)" +msgstr "Categorieën (door komma's gescheiden lijst)" -#: ../../include/event.php:978 -msgid "Not specified" -msgstr "Niet aangegeven" +#: ../../Zotlabs/Module/Events.php:451 +msgid "Edit Category" +msgstr "Categorie" -#: ../../include/event.php:979 -msgid "Needs Action" -msgstr "Actie vereist" +#: ../../Zotlabs/Module/Events.php:451 +msgid "Category" +msgstr "Categorie" -#: ../../include/event.php:980 -msgid "Completed" -msgstr "Voltooid" +#: ../../Zotlabs/Module/Events.php:454 +msgid "Edit start date and time" +msgstr "Begindatum en -tijd bewerken" -#: ../../include/event.php:981 -msgid "In Process" -msgstr "In behandeling" +#: ../../Zotlabs/Module/Events.php:454 +msgid "Start date and time" +msgstr "Begindatum en -tijd" -#: ../../include/event.php:982 -msgid "Cancelled" -msgstr "Geannuleerd" +#: ../../Zotlabs/Module/Events.php:455 ../../Zotlabs/Module/Events.php:458 +msgid "Finish date and time are not known or not relevant" +msgstr "Einddatum en -tijd zijn niet bekend of niet van toepassing" -#: ../../include/features.php:48 -msgid "General Features" -msgstr "Algemene functies" +#: ../../Zotlabs/Module/Events.php:457 +msgid "Edit finish date and time" +msgstr "Einddatum en -tijd bewerken" -#: ../../include/features.php:50 -msgid "Content Expiration" -msgstr "Inhoud laten verlopen" +#: ../../Zotlabs/Module/Events.php:457 +msgid "Finish date and time" +msgstr "Einddatum en -tijd" -#: ../../include/features.php:50 -msgid "Remove posts/comments and/or private messages at a future time" -msgstr "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen" +#: ../../Zotlabs/Module/Events.php:459 ../../Zotlabs/Module/Events.php:460 +msgid "Adjust for viewer timezone" +msgstr "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt" -#: ../../include/features.php:51 -msgid "Multiple Profiles" -msgstr "Meerdere profielen" +#: ../../Zotlabs/Module/Events.php:459 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." +msgstr "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen." -#: ../../include/features.php:51 -msgid "Ability to create multiple profiles" -msgstr "Mogelijkheid om meerdere profielen aan te maken" +#: ../../Zotlabs/Module/Events.php:461 +msgid "Edit Description" +msgstr "Omschrijving bewerken" -#: ../../include/features.php:52 -msgid "Advanced Profiles" -msgstr "Geavanceerde profielen" +#: ../../Zotlabs/Module/Events.php:463 +msgid "Edit Location" +msgstr "Locatie bewerken" -#: ../../include/features.php:52 -msgid "Additional profile sections and selections" -msgstr "Extra onderdelen en keuzes voor je profiel" +#: ../../Zotlabs/Module/Events.php:463 ../../Zotlabs/Module/Locs.php:117 +#: ../../Zotlabs/Module/Profiles.php:476 ../../Zotlabs/Module/Profiles.php:701 +#: ../../Zotlabs/Module/Pubsites.php:40 ../../include/js_strings.php:25 +msgid "Location" +msgstr "Locatie" -#: ../../include/features.php:53 -msgid "Profile Import/Export" -msgstr "Profiel importen/exporteren" +#: ../../Zotlabs/Module/Events.php:466 ../../Zotlabs/Module/Events.php:468 +msgid "Share this event" +msgstr "Deel deze gebeurtenis" -#: ../../include/features.php:53 -msgid "Save and load profile details across sites/channels" -msgstr "Profielgegevens opslaan en in andere hubs/kanalen gebruiken." +#: ../../Zotlabs/Module/Events.php:473 +msgid "Advanced Options" +msgstr "Geavanceerde opties" -#: ../../include/features.php:54 -msgid "Web Pages" -msgstr "Webpagina's" +#: ../../Zotlabs/Module/Events.php:607 +msgid "Edit event" +msgstr "Gebeurtenis bewerken" -#: ../../include/features.php:54 -msgid "Provide managed web pages on your channel" -msgstr "Sta beheerde webpagina's op jouw kanaal toe" +#: ../../Zotlabs/Module/Events.php:609 +msgid "Delete event" +msgstr "Gebeurtenis verwijderen" -#: ../../include/features.php:55 -msgid "Hide Rating" -msgstr "Beoordelingen verbergen" +#: ../../Zotlabs/Module/Events.php:643 +msgid "calendar" +msgstr "agenda" -#: ../../include/features.php:55 -msgid "" -"Hide the rating buttons on your channel and profile pages. Note: People can " -"still rate you somewhere else." -msgstr "Verbergt de beoordelingsknoppen op jouw kanaal- en profielpagina's. Let op: Mensen kunnen jou nog steeds ergens anders beoordelen. " +#: ../../Zotlabs/Module/Events.php:703 +msgid "Event removed" +msgstr "Gebeurtenis verwijderd" -#: ../../include/features.php:56 -msgid "Private Notes" -msgstr "Privé-aantekeningen" +#: ../../Zotlabs/Module/Events.php:706 +msgid "Failed to remove event" +msgstr "Verwijderen gebeurtenis mislukt" -#: ../../include/features.php:56 -msgid "Enables a tool to store notes and reminders (note: not encrypted)" -msgstr "Een eenvoudige toepassing om aantekeningen en herinneringen in te bewaren (let op: niet versleuteld)" +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../include/apps.php:139 +#: ../../include/conversation.php:1650 ../../include/nav.php:92 +msgid "Photos" +msgstr "Foto's" -#: ../../include/features.php:57 -msgid "Navigation Channel Select" -msgstr "Kanaal kiezen in navigatiemenu" +#: ../../Zotlabs/Module/Ffsapi.php:12 +msgid "Share content from Firefox to $Projectname" +msgstr "Deel webpagina's vanuit Firefox met " -#: ../../include/features.php:57 -msgid "Change channels directly from within the navigation dropdown menu" -msgstr "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk" +#: ../../Zotlabs/Module/Ffsapi.php:15 +msgid "Activate the Firefox $Projectname provider" +msgstr "Activeer de $Projectname-service in Firefox" -#: ../../include/features.php:58 -msgid "Photo Location" -msgstr "Fotolocatie" +#: ../../Zotlabs/Module/Filer.php:52 ../../include/conversation.php:1174 +msgid "Save to Folder:" +msgstr "Bewaar in map: " -#: ../../include/features.php:58 -msgid "If location data is available on uploaded photos, link this to a map." -msgstr "Wanneer in de geüploade foto's locatiegegevens aanwezig zijn, link dit dan aan een kaart." +#: ../../Zotlabs/Module/Filer.php:52 +msgid "- select -" +msgstr "- kies map -" -#: ../../include/features.php:59 -msgid "Access Controlled Chatrooms" -msgstr "Chatkanalen met toegangscontrole " +#: ../../Zotlabs/Module/Filestorage.php:86 +msgid "Permission Denied." +msgstr "Toegang geweigerd" -#: ../../include/features.php:59 -msgid "Provide chatrooms and chat services with access control." -msgstr "Chatkanalen en chatdiensten met toegangscontrole aanbieden." +#: ../../Zotlabs/Module/Filestorage.php:102 +msgid "File not found." +msgstr "Bestand niet gevonden." -#: ../../include/features.php:60 -msgid "Smart Birthdays" -msgstr "Slimme verjaardagen" +#: ../../Zotlabs/Module/Filestorage.php:145 +msgid "Edit file permissions" +msgstr "Bestandsrechten bewerken" -#: ../../include/features.php:60 -msgid "" -"Make birthday events timezone aware in case your friends are scattered " -"across the planet." -msgstr "Maak verjaardagen bewust van tijdzones. Voor het geval dat jouw vrienden over de hele wereld verspreid zijn." +#: ../../Zotlabs/Module/Filestorage.php:154 +msgid "Set/edit permissions" +msgstr "Rechten instellen/bewerken" -#: ../../include/features.php:61 -msgid "Expert Mode" -msgstr "Expertmodus" +#: ../../Zotlabs/Module/Filestorage.php:155 +msgid "Include all files and sub folders" +msgstr "Toepassen op alle bestanden en submappen" -#: ../../include/features.php:61 -msgid "Enable Expert Mode to provide advanced configuration options" -msgstr "Schakel de expertmodus in voor geavanceerde instellingen" +#: ../../Zotlabs/Module/Filestorage.php:156 +msgid "Return to file list" +msgstr "Terugkeren naar bestandlijst " -#: ../../include/features.php:62 -msgid "Premium Channel" -msgstr "Premiumkanaal" +#: ../../Zotlabs/Module/Filestorage.php:158 +msgid "Copy/paste this code to attach file to a post" +msgstr "Kopieer/plak deze code om het bestand aan een bericht te koppelen" -#: ../../include/features.php:62 -msgid "" -"Allows you to set restrictions and terms on those that connect with your " -"channel" -msgstr "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal" +#: ../../Zotlabs/Module/Filestorage.php:159 +msgid "Copy/paste this URL to link file from a web page" +msgstr "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen" -#: ../../include/features.php:67 -msgid "Post Composition Features" -msgstr "Functies voor het opstellen van berichten" +#: ../../Zotlabs/Module/Filestorage.php:161 +msgid "Share this file" +msgstr "Dit bestand delen" -#: ../../include/features.php:70 -msgid "Large Photos" -msgstr "Grote foto's" +#: ../../Zotlabs/Module/Filestorage.php:162 +msgid "Show URL to this file" +msgstr "Toon URL van dit bestand" -#: ../../include/features.php:70 -msgid "" -"Include large (1024px) photo thumbnails in posts. If not enabled, use small " -"(640px) photo thumbnails" -msgstr "Gebruik grotere foto's (1024px) in berichten. Wanneer dit is uitgeschakeld worden er kleinere foto's (640px) gebruikt." +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Notify your contacts about this file" +msgstr "Jouw connecties over dit bestand berichten" -#: ../../include/features.php:71 ../../include/widgets.php:581 -#: ../../mod/sources.php:88 -msgid "Channel Sources" -msgstr "Kanaalbronnen" +#: ../../Zotlabs/Module/Follow.php:31 +msgid "Channel added." +msgstr "Kanaal toegevoegd." -#: ../../include/features.php:71 -msgid "Automatically import channel content from other channels or feeds" -msgstr "Automatisch inhoud uit andere kanalen of feeds importeren." +#: ../../Zotlabs/Module/Fsuggest.php:24 ../../Zotlabs/Module/Fsuggest.php:96 +msgid "Contact not found." +msgstr "Contact niet gevonden" -#: ../../include/features.php:72 -msgid "Even More Encryption" -msgstr "Extra encryptie" +#: ../../Zotlabs/Module/Fsuggest.php:67 +msgid "Friend suggestion sent." +msgstr "Kanaalvoorstel verzonden." -#: ../../include/features.php:72 -msgid "" -"Allow optional encryption of content end-to-end with a shared secret key" -msgstr "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel." +#: ../../Zotlabs/Module/Fsuggest.php:101 +msgid "Suggest Friends" +msgstr "Kanalen voorstellen" -#: ../../include/features.php:73 -msgid "Enable Voting Tools" -msgstr "Peilingen inschakelen" +#: ../../Zotlabs/Module/Fsuggest.php:103 +#, php-format +msgid "Suggest a friend for %s" +msgstr "Stel een kanaal voor aan %s" -#: ../../include/features.php:73 -msgid "Provide a class of post which others can vote on" -msgstr "Maakt het mogelijk om een bericht op te stellen, waar mensen op kunnen stemmen." +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." +msgstr "Privacygroep aangemaakt" -#: ../../include/features.php:74 -msgid "Delayed Posting" -msgstr "Berichten uitstellen" +#: ../../Zotlabs/Module/Group.php:30 +msgid "Could not create privacy group." +msgstr "Kon privacygroep niet aanmaken" -#: ../../include/features.php:74 -msgid "Allow posts to be published at a later date" -msgstr "Maakt het mogelijk dat berichten op een toekomstig moment gepubliceerd kunnen worden." +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 +#: ../../include/items.php:5126 +msgid "Privacy group not found." +msgstr "Privacygroep niet gevonden" -#: ../../include/features.php:75 -msgid "Suppress Duplicate Posts/Comments" -msgstr "Dubbele berichten/reacties tegenhouden" +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." +msgstr "Privacygroep bijgewerkt" -#: ../../include/features.php:75 -msgid "" -"Prevent posts with identical content to be published with less than two " -"minutes in between submissions." -msgstr "Voorkomt dat berichten en reacties met identieke inhoud en die binnen twee minuten zijn verstuurd, worden gepubliceerd. " +#: ../../Zotlabs/Module/Group.php:90 +msgid "Create a group of channels." +msgstr "Privacygroep met kanalen aanmaken" -#: ../../include/features.php:81 -msgid "Network and Stream Filtering" -msgstr "Netwerk- en streamfilter" +#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 +msgid "Privacy group name: " +msgstr "Naam privacygroep: " -#: ../../include/features.php:82 -msgid "Search by Date" -msgstr "Zoek op datum" +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 +msgid "Members are visible to other channels" +msgstr "Kanalen in deze privacygroep zijn zichtbaar voor andere kanalen" -#: ../../include/features.php:82 -msgid "Ability to select posts by date ranges" -msgstr "Mogelijkheid om berichten op datum te filteren " +#: ../../Zotlabs/Module/Group.php:111 +msgid "Privacy group removed." +msgstr "Privacygroep verwijderd." -#: ../../include/features.php:83 ../../include/group.php:311 -msgid "Privacy Groups" -msgstr "Privacygroepen" +#: ../../Zotlabs/Module/Group.php:113 +msgid "Unable to remove privacy group." +msgstr "Verwijderen privacygroep mislukt" -#: ../../include/features.php:83 -msgid "Enable management and selection of privacy groups" -msgstr "Beheer en selectie van privacygroepen inschakelen" +#: ../../Zotlabs/Module/Group.php:183 +msgid "Privacy group editor" +msgstr "Privacygroep bewerken" -#: ../../include/features.php:84 ../../include/widgets.php:281 -msgid "Saved Searches" -msgstr "Opgeslagen zoekopdrachten" +#: ../../Zotlabs/Module/Group.php:197 +msgid "Members" +msgstr "Kanalen" -#: ../../include/features.php:84 -msgid "Save search terms for re-use" -msgstr "Sla zoekopdrachten op voor hergebruik" +#: ../../Zotlabs/Module/Group.php:199 +msgid "All Connected Channels" +msgstr "Alle kanaalconnecties" -#: ../../include/features.php:85 -msgid "Network Personal Tab" -msgstr "Persoonlijke netwerktab" +#: ../../Zotlabs/Module/Group.php:231 +msgid "Click on a channel to add or remove." +msgstr "Klik op een kanaal om deze toe te voegen of te verwijderen." -#: ../../include/features.php:85 -msgid "Enable tab to display only Network posts that you've interacted on" -msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had" +#: ../../Zotlabs/Module/Help.php:26 +msgid "Documentation Search" +msgstr "Zoek documentatie" -#: ../../include/features.php:86 -msgid "Network New Tab" -msgstr "Nieuwe netwerktab" +#: ../../Zotlabs/Module/Help.php:67 ../../Zotlabs/Module/Help.php:73 +#: ../../Zotlabs/Module/Help.php:79 +msgid "Help:" +msgstr "Hulp:" -#: ../../include/features.php:86 -msgid "Enable tab to display all new Network activity" -msgstr "Laat de tab alle nieuwe netwerkactiviteit tonen" +#: ../../Zotlabs/Module/Help.php:85 ../../Zotlabs/Module/Help.php:90 +#: ../../Zotlabs/Module/Layouts.php:181 ../../include/apps.php:142 +#: ../../include/nav.php:161 +msgid "Help" +msgstr "Hulp" -#: ../../include/features.php:87 -msgid "Affinity Tool" -msgstr "Verwantschapsfilter" - -#: ../../include/features.php:87 -msgid "Filter stream activity by depth of relationships" -msgstr "Filter wat je in jouw grid ziet op hoe goed je iemand kent of mag" +#: ../../Zotlabs/Module/Help.php:120 +msgid "$Projectname Documentation" +msgstr "$Projectname-documentatie" -#: ../../include/features.php:88 -msgid "Connection Filtering" -msgstr "Berichtenfilters" +#: ../../Zotlabs/Module/Home.php:61 ../../Zotlabs/Module/Home.php:69 +#: ../../Zotlabs/Module/Siteinfo.php:65 +msgid "$Projectname" +msgstr "$Projectname" -#: ../../include/features.php:88 -msgid "Filter incoming posts from connections based on keywords/content" -msgstr "Filter binnenkomende berichten van connecties aan de hand van trefwoorden en taal" +#: ../../Zotlabs/Module/Home.php:79 +#, php-format +msgid "Welcome to %s" +msgstr "Welkom op %s" -#: ../../include/features.php:89 -msgid "Suggest Channels" -msgstr "Kanalen voorstellen" +#: ../../Zotlabs/Module/Id.php:13 +msgid "First Name" +msgstr "Voornaam" -#: ../../include/features.php:89 -msgid "Show channel suggestions" -msgstr "Voor jou mogelijk interessante kanalen voorstellen" +#: ../../Zotlabs/Module/Id.php:14 +msgid "Last Name" +msgstr "Achternaam" -#: ../../include/features.php:94 -msgid "Post/Comment Tools" -msgstr "Bericht- en reactiehulpmiddelen" +#: ../../Zotlabs/Module/Id.php:15 +msgid "Nickname" +msgstr "Bijnaam" -#: ../../include/features.php:95 -msgid "Community Tagging" -msgstr "Taggen door anderen" +#: ../../Zotlabs/Module/Id.php:16 +msgid "Full Name" +msgstr "Volledige naam" -#: ../../include/features.php:95 -msgid "Ability to tag existing posts" -msgstr "Geeft andere mensen de mogelijkheid om jouw (bestaande) berichten te taggen" +#: ../../Zotlabs/Module/Id.php:19 ../../Zotlabs/Module/Id.php:20 +#: ../../Zotlabs/Module/Id.php:21 ../../include/apps.php:155 +msgid "Profile Photo" +msgstr "Profielfoto" -#: ../../include/features.php:96 -msgid "Post Categories" -msgstr "Categorieën berichten" +#: ../../Zotlabs/Module/Id.php:22 +msgid "Profile Photo 16px" +msgstr "Profielfoto 16px" -#: ../../include/features.php:96 -msgid "Add categories to your posts" -msgstr "Voeg categorieën toe aan je berichten" +#: ../../Zotlabs/Module/Id.php:23 +msgid "Profile Photo 32px" +msgstr "Profielfoto 32px" -#: ../../include/features.php:97 -msgid "Ability to file posts under folders" -msgstr "Mogelijkheid om berichten in mappen op te slaan" +#: ../../Zotlabs/Module/Id.php:24 +msgid "Profile Photo 48px" +msgstr "Profielfoto 48px" -#: ../../include/features.php:98 -msgid "Dislike Posts" -msgstr "Vind berichten niet leuk" +#: ../../Zotlabs/Module/Id.php:25 +msgid "Profile Photo 64px" +msgstr "Profielfoto 64px" -#: ../../include/features.php:98 -msgid "Ability to dislike posts/comments" -msgstr "Mogelijkheid om berichten en reacties niet leuk te vinden" +#: ../../Zotlabs/Module/Id.php:26 +msgid "Profile Photo 80px" +msgstr "Profielfoto 80px" -#: ../../include/features.php:99 -msgid "Star Posts" -msgstr "Geef berichten een ster" +#: ../../Zotlabs/Module/Id.php:27 +msgid "Profile Photo 128px" +msgstr "Profielfoto 128px" -#: ../../include/features.php:99 -msgid "Ability to mark special posts with a star indicator" -msgstr "Mogelijkheid om speciale berichten met een ster te markeren" +#: ../../Zotlabs/Module/Id.php:28 +msgid "Timezone" +msgstr "Tijdzone" -#: ../../include/features.php:100 -msgid "Tag Cloud" -msgstr "Tagwolk" +#: ../../Zotlabs/Module/Id.php:29 ../../Zotlabs/Module/Profiles.php:734 +msgid "Homepage URL" +msgstr "URL homepagina" -#: ../../include/features.php:100 -msgid "Provide a personal tag cloud on your channel page" -msgstr "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina" +#: ../../Zotlabs/Module/Id.php:30 ../../include/apps.php:153 +msgid "Language" +msgstr "Taal" -#: ../../include/follow.php:28 -msgid "Channel is blocked on this site." -msgstr "Kanaal is op deze hub geblokkeerd." +#: ../../Zotlabs/Module/Id.php:31 +msgid "Birth Year" +msgstr "Geboortejaar" -#: ../../include/follow.php:33 -msgid "Channel location missing." -msgstr "Ontbrekende kanaallocatie." +#: ../../Zotlabs/Module/Id.php:32 +msgid "Birth Month" +msgstr "Geboortemaand" -#: ../../include/follow.php:82 -msgid "Response from remote channel was incomplete." -msgstr "Antwoord van het kanaal op afstand was niet volledig." +#: ../../Zotlabs/Module/Id.php:33 +msgid "Birth Day" +msgstr "Geboortedag" -#: ../../include/follow.php:99 -msgid "Channel was deleted and no longer exists." -msgstr "Kanaal is verwijderd en bestaat niet meer." +#: ../../Zotlabs/Module/Id.php:34 +msgid "Birthdate" +msgstr "Geboortedatum" -#: ../../include/follow.php:155 ../../include/follow.php:191 -msgid "Protocol disabled." -msgstr "Protocol uitgeschakeld." +#: ../../Zotlabs/Module/Id.php:35 ../../Zotlabs/Module/Profiles.php:453 +msgid "Gender" +msgstr "Geslacht" -#: ../../include/follow.php:179 -msgid "Channel discovery failed." -msgstr "Kanaal ontdekken mislukt." +#: ../../Zotlabs/Module/Id.php:108 ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +msgid "Male" +msgstr "Man" -#: ../../include/follow.php:217 -msgid "Cannot connect to yourself." -msgstr "Kan niet met jezelf verbinden" +#: ../../Zotlabs/Module/Id.php:110 ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +msgid "Female" +msgstr "Vrouw" -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"may apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken." +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:193 +msgid "webpage" +msgstr "Webpagina" -#: ../../include/group.php:248 -msgid "Add new connections to this privacy group" -msgstr "Voeg nieuwe connecties aan deze privacygroep toe" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:199 +msgid "block" +msgstr "blok" -#: ../../include/group.php:267 ../../mod/admin.php:998 -msgid "All Channels" -msgstr "Alle kanalen" +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:196 +msgid "layout" +msgstr "lay-out" -#: ../../include/group.php:289 -msgid "edit" -msgstr "bewerken" +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:202 +msgid "menu" +msgstr "menu" -#: ../../include/group.php:312 -msgid "Edit group" -msgstr "Privacygroep bewerken" +#: ../../Zotlabs/Module/Impel.php:196 +#, php-format +msgid "%s element installed" +msgstr "%s onderdeel geïnstalleerd" -#: ../../include/group.php:313 -msgid "Add privacy group" -msgstr "Privacygroep toevoegen" +#: ../../Zotlabs/Module/Impel.php:199 +#, php-format +msgid "%s element installation failed" +msgstr "Installatie %s-element mislukt" -#: ../../include/group.php:314 -msgid "Channels not in any privacy group" -msgstr "Kanalen die zich in geen enkele privacygroep bevinden" +#: ../../Zotlabs/Module/Import.php:32 +#, php-format +msgid "Your service plan only allows %d channels." +msgstr "Jouw abonnement staat maar %d kanalen toe." -#: ../../include/group.php:316 ../../include/widgets.php:282 -msgid "add" -msgstr "toevoegen" +#: ../../Zotlabs/Module/Import.php:70 ../../Zotlabs/Module/Import_items.php:42 +msgid "Nothing to import." +msgstr "Niets gevonden om te importeren" -#: ../../include/zot.php:680 -msgid "Invalid data packet" -msgstr "Datapakket ongeldig" +#: ../../Zotlabs/Module/Import.php:94 ../../Zotlabs/Module/Import_items.php:66 +msgid "Unable to download data from old server" +msgstr "Niet in staat om gegevens van de oude hub te downloaden" -#: ../../include/zot.php:696 -msgid "Unable to verify channel signature" -msgstr "Kanaalkenmerk kon niet worden geverifieerd. " +#: ../../Zotlabs/Module/Import.php:100 +#: ../../Zotlabs/Module/Import_items.php:72 +msgid "Imported file is empty." +msgstr "Geïmporteerde bestand is leeg" -#: ../../include/zot.php:2332 +#: ../../Zotlabs/Module/Import.php:122 +#: ../../Zotlabs/Module/Import_items.php:86 #, php-format -msgid "Unable to verify site signature for %s" -msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" +msgid "Warning: Database versions differ by %1$d updates." +msgstr "Waarschuwing: database-versies lopen %1$d updates achter." -#: ../../include/zot.php:3670 -msgid "invalid target signature" -msgstr "ongeldig doelkenmerk" +#: ../../Zotlabs/Module/Import.php:150 ../../include/import.php:80 +msgid "Cloned channel not found. Import failed." +msgstr "Gekloond kanaal niet gevonden. Importeren mislukt." -#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1599 -msgid "Logout" -msgstr "Uitloggen" +#: ../../Zotlabs/Module/Import.php:160 +msgid "No channel. Import failed." +msgstr "Geen kanaal. Importeren mislukt." -#: ../../include/nav.php:82 ../../include/nav.php:113 -msgid "End this session" -msgstr "Beëindig deze sessie" +#: ../../Zotlabs/Module/Import.php:506 +#: ../../include/Import/import_diaspora.php:143 +msgid "Import completed." +msgstr "Import voltooid." -#: ../../include/nav.php:85 ../../include/nav.php:144 -msgid "Home" -msgstr "Home" +#: ../../Zotlabs/Module/Import.php:528 +msgid "You must be logged in to use this feature." +msgstr "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken." -#: ../../include/nav.php:85 -msgid "Your posts and conversations" -msgstr "Jouw kanaal" +#: ../../Zotlabs/Module/Import.php:533 +msgid "Import Channel" +msgstr "Kanaal importeren" -#: ../../include/nav.php:86 -msgid "Your profile page" -msgstr "Jouw profielpagina" +#: ../../Zotlabs/Module/Import.php:534 +msgid "" +"Use this form to import an existing channel from a different server/hub. You" +" may retrieve the channel identity from the old server/hub via the network " +"or provide an export file." +msgstr "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken." -#: ../../include/nav.php:88 -msgid "Manage/Edit profiles" -msgstr "Beheer/wijzig profielen" +#: ../../Zotlabs/Module/Import.php:535 +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "File to Upload" +msgstr "Bestand om te uploaden" -#: ../../include/nav.php:90 -msgid "Edit your profile" -msgstr "Jouw profiel bewerken" +#: ../../Zotlabs/Module/Import.php:536 +msgid "Or provide the old server/hub details" +msgstr "Of vul de gegevens van de oude hub in" -#: ../../include/nav.php:92 -msgid "Your photos" -msgstr "Jouw foto's" +#: ../../Zotlabs/Module/Import.php:537 +msgid "Your old identity address (xyz@example.com)" +msgstr "Jouw oude kanaaladres (xyz@example.com)" -#: ../../include/nav.php:93 -msgid "Your files" -msgstr "Jouw bestanden" +#: ../../Zotlabs/Module/Import.php:538 +msgid "Your old login email address" +msgstr "Het e-mailadres van je oude account" -#: ../../include/nav.php:96 -msgid "Your chatrooms" -msgstr "Jouw chatkanalen" +#: ../../Zotlabs/Module/Import.php:539 +msgid "Your old login password" +msgstr "Wachtwoord van jouw oude account" -#: ../../include/nav.php:102 -msgid "Your bookmarks" -msgstr "Jouw bladwijzers" +#: ../../Zotlabs/Module/Import.php:540 +msgid "" +"For either option, please choose whether to make this hub your new primary " +"address, or whether your old location should continue this role. You will be" +" able to post from either location, but only one can be marked as the " +"primary location for files, photos, and media." +msgstr "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen." -#: ../../include/nav.php:106 -msgid "Your webpages" -msgstr "Jouw webpagina's" +#: ../../Zotlabs/Module/Import.php:541 +msgid "Make this hub my primary location" +msgstr "Stel deze hub als mijn primaire locatie in" -#: ../../include/nav.php:110 -msgid "Sign in" -msgstr "Inloggen" +#: ../../Zotlabs/Module/Import.php:542 +msgid "" +"Import existing posts if possible (experimental - limited by available " +"memory" +msgstr "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van beschikbaar servergeheugen)" -#: ../../include/nav.php:127 -#, php-format -msgid "%s - click to logout" -msgstr "%s - klik om uit te loggen" +#: ../../Zotlabs/Module/Import.php:543 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." +msgstr "Dit proces kan enkele minuten in beslag nemen. Klik maar één keer op opslaan en verlaat deze pagina niet alvorens het proces is voltooid." -#: ../../include/nav.php:130 -msgid "Remote authentication" -msgstr "Authenticatie op afstand" +#: ../../Zotlabs/Module/Import_items.php:102 +msgid "Import completed" +msgstr "Importeren voltooid" -#: ../../include/nav.php:130 -msgid "Click to authenticate to your home hub" -msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw hub" +#: ../../Zotlabs/Module/Import_items.php:117 +msgid "Import Items" +msgstr "Importeer items" -#: ../../include/nav.php:144 -msgid "Home Page" -msgstr "Homepage" +#: ../../Zotlabs/Module/Import_items.php:118 +msgid "" +"Use this form to import existing posts and content from an export file." +msgstr "Gebruik dit formulier om bestaande berichten en andere inhoud vanuit een exportbestand te importeren." -#: ../../include/nav.php:148 ../../mod/register.php:258 ../../boot.php:1582 -msgid "Register" -msgstr "Registreren" +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." +msgstr "Limiet voor aantal uitnodigingen overschreden." -#: ../../include/nav.php:148 -msgid "Create an account" -msgstr "Maak een account aan" +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." +msgstr "%s : Geen geldig e-mailadres." -#: ../../include/nav.php:155 -msgid "Help and documentation" -msgstr "Hulp en documentatie" +#: ../../Zotlabs/Module/Invite.php:63 +msgid "Please join us on $Projectname" +msgstr "Uitnodiging voor $Projectname" -#: ../../include/nav.php:159 ../../include/widgets.php:102 -#: ../../mod/apps.php:36 -msgid "Apps" -msgstr "Apps" +#: ../../Zotlabs/Module/Invite.php:74 +msgid "Invitation limit exceeded. Please contact your site administrator." +msgstr "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder." -#: ../../include/nav.php:159 -msgid "Applications, utilities, links, games" -msgstr "Apps" +#: ../../Zotlabs/Module/Invite.php:79 +#, php-format +msgid "%s : Message delivery failed." +msgstr "%s: Aflevering bericht mislukt." -#: ../../include/nav.php:161 -msgid "Search site @name, #tag, ?docs, content" -msgstr "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie " +#: ../../Zotlabs/Module/Invite.php:83 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "%d bericht verzonden." +msgstr[1] "%d berichten verzonden." -#: ../../include/nav.php:164 -msgid "Channel Directory" -msgstr "Kanalengids" +#: ../../Zotlabs/Module/Invite.php:102 +msgid "You have no more invitations available" +msgstr "Je hebt geen uitnodigingen meer beschikbaar" -#: ../../include/nav.php:176 -msgid "Your grid" -msgstr "Jouw grid" +#: ../../Zotlabs/Module/Invite.php:133 +msgid "Send invitations" +msgstr "Uitnodigingen verzenden" -#: ../../include/nav.php:177 -msgid "Mark all grid notifications seen" -msgstr "Markeer alle gridnotificaties als bekeken" +#: ../../Zotlabs/Module/Invite.php:134 +msgid "Enter email addresses, one per line:" +msgstr "Voer e-mailadressen in, één per regel:" -#: ../../include/nav.php:179 -msgid "Channel home" -msgstr "Jouw kanaal" +#: ../../Zotlabs/Module/Invite.php:135 ../../Zotlabs/Module/Mail.php:250 +msgid "Your message:" +msgstr "Jouw bericht:" -#: ../../include/nav.php:180 -msgid "Mark all channel notifications seen" -msgstr "Alle kanaalnotificaties als gelezen markeren" +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Please join my community on $Projectname." +msgstr "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op $Projectname te vergezellen. Lees meer over $Projectname op http://hubzilla.org" -#: ../../include/nav.php:183 ../../include/text.php:834 -#: ../../mod/connections.php:298 -msgid "Connections" -msgstr "Connecties" +#: ../../Zotlabs/Module/Invite.php:138 +msgid "You will need to supply this invitation code:" +msgstr "Je moet deze uitnodigingscode opgeven:" -#: ../../include/nav.php:186 -msgid "Notices" -msgstr "Notificaties" +#: ../../Zotlabs/Module/Invite.php:139 +msgid "" +"1. Register at any $Projectname location (they are all inter-connected)" +msgstr "1. Registreer je op een willekeurige $Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):" -#: ../../include/nav.php:186 -msgid "Notifications" -msgstr "Notificaties" +#: ../../Zotlabs/Module/Invite.php:141 +msgid "2. Enter my $Projectname network address into the site searchbar." +msgstr "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn $Projectname-kanaaladres in het zoekveld invullen:" -#: ../../include/nav.php:187 -msgid "See all notifications" -msgstr "Alle notificaties weergeven" +#: ../../Zotlabs/Module/Invite.php:142 +msgid "or visit" +msgstr "of bezoek" -#: ../../include/nav.php:188 ../../mod/notifications.php:99 -msgid "Mark all system notifications seen" -msgstr "Markeer alle systeemnotificaties als bekeken" +#: ../../Zotlabs/Module/Invite.php:144 +msgid "3. Click [Connect]" +msgstr "3. Klik op [+ Verbinden]" -#: ../../include/nav.php:190 -msgid "Private mail" -msgstr "Privéberichten" +#: ../../Zotlabs/Module/Item.php:178 +msgid "Unable to locate original post." +msgstr "Niet in staat om de originele locatie van het bericht te vinden. " -#: ../../include/nav.php:191 -msgid "See all private messages" -msgstr "Alle privéberichten weergeven" +#: ../../Zotlabs/Module/Item.php:427 +msgid "Empty post discarded." +msgstr "Leeg bericht geannuleerd" -#: ../../include/nav.php:192 -msgid "Mark all private messages seen" -msgstr "Markeer alle privéberichten als bekeken" +#: ../../Zotlabs/Module/Item.php:467 +msgid "Executable content type not permitted to this channel." +msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." -#: ../../include/nav.php:193 ../../include/widgets.php:609 -msgid "Inbox" -msgstr "Postvak IN" +#: ../../Zotlabs/Module/Item.php:847 +msgid "Duplicate post suppressed." +msgstr "Dubbel bericht tegengehouden." -#: ../../include/nav.php:194 ../../include/widgets.php:614 -msgid "Outbox" -msgstr "Postvak UIT" +#: ../../Zotlabs/Module/Item.php:977 +msgid "System error. Post not saved." +msgstr "Systeemfout. Bericht niet opgeslagen." -#: ../../include/nav.php:195 ../../include/widgets.php:619 -msgid "New Message" -msgstr "Nieuw bericht" +#: ../../Zotlabs/Module/Item.php:1241 +msgid "Unable to obtain post information from database." +msgstr "Niet in staat om informatie over dit bericht uit de database te verkrijgen." -#: ../../include/nav.php:198 -msgid "Event Calendar" -msgstr "Agenda" +#: ../../Zotlabs/Module/Item.php:1248 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." -#: ../../include/nav.php:199 -msgid "See all events" -msgstr "Alle gebeurtenissen weergeven" +#: ../../Zotlabs/Module/Item.php:1255 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." +msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." -#: ../../include/nav.php:200 -msgid "Mark all events seen" -msgstr "Markeer alle gebeurtenissen als bekeken" +#: ../../Zotlabs/Module/Layouts.php:179 ../../include/text.php:2280 +msgid "Layouts" +msgstr "Lay-outs" -#: ../../include/nav.php:203 -msgid "Manage Your Channels" -msgstr "Beheer je kanalen" +#: ../../Zotlabs/Module/Layouts.php:181 +msgid "Comanche page description language help" +msgstr "Hulp met de paginabeschrijvingstaal Comanche" -#: ../../include/nav.php:205 -msgid "Account/Channel Settings" -msgstr "Account-/kanaal-instellingen" +#: ../../Zotlabs/Module/Layouts.php:185 +msgid "Layout Description" +msgstr "Lay-out-omschrijving" -#: ../../include/nav.php:213 ../../include/widgets.php:1368 -msgid "Admin" -msgstr "Beheer" +#: ../../Zotlabs/Module/Layouts.php:190 +msgid "Download PDL file" +msgstr "Download PDL-bestand" -#: ../../include/nav.php:213 -msgid "Site Setup and Configuration" -msgstr "Hub instellen en beheren" +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" +msgstr "Leuk/niet leuk" -#: ../../include/nav.php:249 -msgid "@name, #tag, ?doc, content" -msgstr "@kanaal, #tag, inhoud, ?hulp" +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." +msgstr "Deze actie kan alleen door $Projectname-leden worden uitgevoerd." -#: ../../include/nav.php:250 -msgid "Please wait..." -msgstr "Wachten aub..." +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please login with your $Projectname ID or register as a new $Projectname member to continue." +msgstr "Je dient in te loggen met je $Projectname-account of een nieuw $Projectname-account aan te maken om verder te kunnen gaan." -#: ../../include/widgets.php:103 -msgid "System" -msgstr "Systeem" +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." +msgstr "Ongeldig verzoek" -#: ../../include/widgets.php:106 -msgid "Create Personal App" -msgstr "Persoonlijke app maken" +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +msgid "channel" +msgstr "kanaal" -#: ../../include/widgets.php:107 -msgid "Edit Personal App" -msgstr "Persoonlijke app bewerken" +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" +msgstr "ding" -#: ../../include/widgets.php:149 ../../mod/suggest.php:54 -msgid "Ignore/Hide" -msgstr "Negeren/Verbergen" +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." +msgstr "Kanaal niet beschikbaar." -#: ../../include/widgets.php:154 -msgid "Suggestions" -msgstr "Voorgestelde kanalen" +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." +msgstr "Vorige actie omgedraaid" -#: ../../include/widgets.php:155 -msgid "See more..." -msgstr "Meer..." +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../Zotlabs/Module/Tagger.php:47 ../../include/conversation.php:120 +#: ../../include/text.php:1967 +msgid "photo" +msgstr "foto" -#: ../../include/widgets.php:175 +#: ../../Zotlabs/Module/Like.php:371 ../../Zotlabs/Module/Subthread.php:87 +#: ../../include/conversation.php:148 ../../include/text.php:1973 +msgid "status" +msgstr "bericht" + +#: ../../Zotlabs/Module/Like.php:420 ../../include/conversation.php:164 #, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." -msgstr "Je hebt %1$.0f van de %2$.0f toegestane connecties." +msgid "%1$s likes %2$s's %3$s" +msgstr "%1$s vindt %3$s van %2$s leuk" -#: ../../include/widgets.php:181 -msgid "Add New Connection" -msgstr "Nieuwe connectie toevoegen" +#: ../../Zotlabs/Module/Like.php:422 ../../include/conversation.php:167 +#, php-format +msgid "%1$s doesn't like %2$s's %3$s" +msgstr "%1$s vindt %3$s van %2$s niet leuk" -#: ../../include/widgets.php:182 -msgid "Enter channel address" -msgstr "Vul kanaaladres in" +#: ../../Zotlabs/Module/Like.php:424 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" +msgstr "%1$s is het eens met %2$s's %3$s" -#: ../../include/widgets.php:183 -msgid "Examples: bob@example.com, https://example.com/barbara" -msgstr "Voorbeelden: bob@example.com, http://example.com/barbara" +#: ../../Zotlabs/Module/Like.php:426 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" +msgstr "%1$s is het niet eens met %2$s's %3$s" -#: ../../include/widgets.php:199 -msgid "Notes" -msgstr "Aantekeningen" +#: ../../Zotlabs/Module/Like.php:428 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" +msgstr "%1$s onthoudt zich van een besluit over %2$s's %3$s" -#: ../../include/widgets.php:201 ../../include/text.php:905 -#: ../../include/text.php:917 ../../mod/admin.php:1687 -#: ../../mod/admin.php:1707 ../../mod/rbmark.php:28 ../../mod/rbmark.php:100 -#: ../../mod/filer.php:49 -msgid "Save" -msgstr "Opslaan" +#: ../../Zotlabs/Module/Like.php:430 +#, php-format +msgid "%1$s is attending %2$s's %3$s" +msgstr "%1$s is aanwezig op %2$s's %3$s" -#: ../../include/widgets.php:273 -msgid "Remove term" -msgstr "Verwijder zoekterm" +#: ../../Zotlabs/Module/Like.php:432 +#, php-format +msgid "%1$s is not attending %2$s's %3$s" +msgstr "%1$s is niet aanwezig op %2$s's %3$s" -#: ../../include/widgets.php:354 -msgid "Archives" -msgstr "Archieven" +#: ../../Zotlabs/Module/Like.php:434 +#, php-format +msgid "%1$s may attend %2$s's %3$s" +msgstr "%1$s is mogelijk aanwezig op %2$s's %3$s" -#: ../../include/widgets.php:444 ../../mod/connedit.php:589 -msgid "Me" -msgstr "Ik" +#: ../../Zotlabs/Module/Like.php:537 +msgid "Action completed." +msgstr "Actie voltooid" -#: ../../include/widgets.php:445 ../../mod/connedit.php:590 -msgid "Family" -msgstr "Familie" +#: ../../Zotlabs/Module/Like.php:538 +msgid "Thank you." +msgstr "Bedankt" -#: ../../include/widgets.php:447 ../../mod/connedit.php:592 -msgid "Acquaintances" -msgstr "Kennissen" +#: ../../Zotlabs/Module/Lockview.php:61 +msgid "Remote privacy information not available." +msgstr "Privacy-informatie op afstand niet beschikbaar." -#: ../../include/widgets.php:448 ../../mod/connections.php:88 -#: ../../mod/connections.php:103 ../../mod/connedit.php:593 -msgid "All" -msgstr "Alles" +#: ../../Zotlabs/Module/Lockview.php:82 +msgid "Visible to:" +msgstr "Zichtbaar voor:" -#: ../../include/widgets.php:467 -msgid "Refresh" -msgstr "Vernieuwen" +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." +msgstr "Locatie niet gevonden." -#: ../../include/widgets.php:507 -msgid "Account settings" -msgstr "Account" +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." +msgstr "Opzoeken locatie mislukt" -#: ../../include/widgets.php:513 -msgid "Channel settings" -msgstr "Kanaal" +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary" +" location." +msgstr "Kies eerst een andere primaire locatie alvorens de huidige primaire locatie te verwijderen." -#: ../../include/widgets.php:522 -msgid "Additional features" -msgstr "Extra functies" +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" +msgstr "Locaties synchronizeren" -#: ../../include/widgets.php:529 -msgid "Feature/Addon settings" -msgstr "Plugin-instellingen" +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." +msgstr "Geen locaties gevonden." -#: ../../include/widgets.php:535 -msgid "Display settings" -msgstr "Weergave" +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" +msgstr "Kanaallocaties beheren" -#: ../../include/widgets.php:542 -msgid "Manage locations" -msgstr "Locaties beheren" +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" +msgstr "Primair" -#: ../../include/widgets.php:551 -msgid "Export channel" -msgstr "Kanaal exporteren" +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" +msgstr "Verwijderen" -#: ../../include/widgets.php:558 -msgid "Connected apps" -msgstr "Verbonden applicaties" +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" +msgstr "Nu synchroniseren" -#: ../../include/widgets.php:565 ../../mod/connedit.php:701 -msgid "Connection Default Permissions" -msgstr "Standaard permissies voor connecties" +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." +msgstr "Wacht enkele minuten tussen opeenvolgende handelingen." -#: ../../include/widgets.php:573 -msgid "Premium Channel Settings" -msgstr "Instellingen premiumkanaal" +#: ../../Zotlabs/Module/Locs.php:124 +msgid "" +"When possible, drop a location by logging into that website/hub and removing" +" your channel." +msgstr "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen." -#: ../../include/widgets.php:602 -msgid "Private Mail Menu" -msgstr "Privéberichten" +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." +msgstr "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is." -#: ../../include/widgets.php:604 -msgid "Combined View" -msgstr "Gecombineerd postvak" +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." +msgstr "Geen geldige account gevonden." -#: ../../include/widgets.php:636 ../../include/widgets.php:648 -msgid "Conversations" -msgstr "Conversaties" +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." +msgstr "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail." -#: ../../include/widgets.php:640 -msgid "Received Messages" -msgstr "Ontvangen berichten" +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:107 +#, php-format +msgid "Site Member (%s)" +msgstr "Lid van hub (%s)" -#: ../../include/widgets.php:644 -msgid "Sent Messages" -msgstr "Verzonden berichten" +#: ../../Zotlabs/Module/Lostpass.php:44 +#, php-format +msgid "Password reset requested at %s" +msgstr "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend" -#: ../../include/widgets.php:658 -msgid "No messages." -msgstr "Geen berichten" +#: ../../Zotlabs/Module/Lostpass.php:67 +msgid "" +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." +msgstr "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt." -#: ../../include/widgets.php:676 -msgid "Delete conversation" -msgstr "Verwijder conversatie" +#: ../../Zotlabs/Module/Lostpass.php:90 ../../boot.php:1610 +msgid "Password Reset" +msgstr "Wachtwoord vergeten?" -#: ../../include/widgets.php:702 -msgid "Events Menu" -msgstr "Agenda-menu" +#: ../../Zotlabs/Module/Lostpass.php:91 +msgid "Your password has been reset as requested." +msgstr "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht." -#: ../../include/widgets.php:703 -msgid "Day View" -msgstr "Dag tonen" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your new password is" +msgstr "Jouw nieuwe wachtwoord is" -#: ../../include/widgets.php:704 -msgid "Week View" -msgstr "Week tonen" +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Save or copy your new password - and then" +msgstr "Kopieer of sla je nieuwe wachtwoord op - en" -#: ../../include/widgets.php:705 -msgid "Month View" -msgstr "Maand tonen" +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "click here to login" +msgstr "klik dan hier om in te loggen" -#: ../../include/widgets.php:706 ../../mod/cal.php:333 -#: ../../mod/events.php:661 -msgid "Export" -msgstr "Exporteren" +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "" +"Your password may be changed from the Settings page after " +"successful login." +msgstr "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd." -#: ../../include/widgets.php:707 ../../mod/cal.php:336 -#: ../../mod/events.php:664 -msgid "Import" -msgstr "Importeren" +#: ../../Zotlabs/Module/Lostpass.php:112 +#, php-format +msgid "Your password has changed at %s" +msgstr "Jouw wachtwoord op %s is veranderd" -#: ../../include/widgets.php:717 -msgid "Events Tools" -msgstr "Agenda-hulpmiddelen" +#: ../../Zotlabs/Module/Lostpass.php:127 +msgid "Forgot your Password?" +msgstr "Wachtwoord vergeten?" -#: ../../include/widgets.php:718 -msgid "Export Calendar" -msgstr "Exporteren" +#: ../../Zotlabs/Module/Lostpass.php:128 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." +msgstr "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies." -#: ../../include/widgets.php:719 -msgid "Import Calendar" -msgstr "Importeren" +#: ../../Zotlabs/Module/Lostpass.php:129 +msgid "Email Address" +msgstr "E-mailadres" -#: ../../include/widgets.php:798 -msgid "Overview" -msgstr "Overzicht" +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Reset" +msgstr "Opnieuw instellen" -#: ../../include/widgets.php:805 -msgid "Chat Members" -msgstr "Chatleden" +#: ../../Zotlabs/Module/Magic.php:73 +msgid "Hub not found." +msgstr "Hub niet gevonden." -#: ../../include/widgets.php:828 -msgid "Bookmarked Chatrooms" -msgstr "Bladwijzers van chatkanalen" +#: ../../Zotlabs/Module/Mail.php:38 +msgid "Unable to lookup recipient." +msgstr "Niet in staat om ontvanger op te zoeken." -#: ../../include/widgets.php:851 -msgid "Suggested Chatrooms" -msgstr "Voorgestelde chatkanalen" +#: ../../Zotlabs/Module/Mail.php:46 +msgid "Unable to communicate with requested channel." +msgstr "Niet in staat om met het aangevraagde kanaal te communiceren." -#: ../../include/widgets.php:996 ../../include/widgets.php:1108 -msgid "photo/image" -msgstr "foto/afbeelding" +#: ../../Zotlabs/Module/Mail.php:53 +msgid "Cannot verify requested channel." +msgstr "Kan opgevraagd kanaal niet verifieren" -#: ../../include/widgets.php:1051 -msgid "Click to show more" -msgstr "Klik voor meer" +#: ../../Zotlabs/Module/Mail.php:79 +msgid "Selected channel has private message restrictions. Send failed." +msgstr "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt." -#: ../../include/widgets.php:1202 -msgid "Rating Tools" -msgstr "Beoordelingen" +#: ../../Zotlabs/Module/Mail.php:144 +msgid "Messages" +msgstr "Berichten" -#: ../../include/widgets.php:1206 ../../include/widgets.php:1208 -msgid "Rate Me" -msgstr "Beoordeel mij" +#: ../../Zotlabs/Module/Mail.php:179 +msgid "Message recalled." +msgstr "Bericht ingetrokken." -#: ../../include/widgets.php:1211 -msgid "View Ratings" -msgstr "Bekijk beoordelingen" +#: ../../Zotlabs/Module/Mail.php:192 +msgid "Conversation removed." +msgstr "Conversatie verwijderd" -#: ../../include/widgets.php:1222 ../../mod/pubsites.php:18 -msgid "Public Hubs" -msgstr "Openbare hubs" +#: ../../Zotlabs/Module/Mail.php:235 +msgid "Requested channel is not in this network" +msgstr "Opgevraagd kanaal is niet in dit netwerk beschikbaar" -#: ../../include/widgets.php:1268 -msgid "Forums" -msgstr "Forums" +#: ../../Zotlabs/Module/Mail.php:243 +msgid "Send Private Message" +msgstr "Privébericht versturen" -#: ../../include/widgets.php:1297 -msgid "Tasks" -msgstr "Taken" +#: ../../Zotlabs/Module/Mail.php:244 ../../Zotlabs/Module/Mail.php:374 +msgid "To:" +msgstr "Aan:" -#: ../../include/widgets.php:1306 -msgid "Documentation" -msgstr "Documentatie" +#: ../../Zotlabs/Module/Mail.php:247 ../../Zotlabs/Module/Mail.php:376 +msgid "Subject:" +msgstr "Onderwerp:" -#: ../../include/widgets.php:1308 -msgid "Project/Site Information" -msgstr "Project- en hub-informatie" +#: ../../Zotlabs/Module/Mail.php:254 +msgid "Send" +msgstr "Verzenden" -#: ../../include/widgets.php:1309 -msgid "For Members" -msgstr "Voor leden" +#: ../../Zotlabs/Module/Mail.php:346 +msgid "Delete message" +msgstr "Bericht verwijderen" -#: ../../include/widgets.php:1310 -msgid "For Administrators" -msgstr "Voor beheerders" +#: ../../Zotlabs/Module/Mail.php:347 +msgid "Delivery report" +msgstr "Afleveringsrapport" -#: ../../include/widgets.php:1311 -msgid "For Developers" -msgstr "Voor ontwikkelaars" +#: ../../Zotlabs/Module/Mail.php:348 +msgid "Recall message" +msgstr "Bericht intrekken" -#: ../../include/widgets.php:1334 ../../mod/admin.php:456 -msgid "Site" -msgstr "Hub-instellingen" +#: ../../Zotlabs/Module/Mail.php:350 +msgid "Message has been recalled." +msgstr "Bericht is ingetrokken." -#: ../../include/widgets.php:1335 -msgid "Accounts" -msgstr "Accounts" +#: ../../Zotlabs/Module/Mail.php:367 +msgid "Delete Conversation" +msgstr "Verwijder conversatie" -#: ../../include/widgets.php:1335 ../../include/widgets.php:1373 -msgid "Member registrations waiting for confirmation" -msgstr "Accounts die op goedkeuring wachten" +#: ../../Zotlabs/Module/Mail.php:369 +msgid "" +"No secure communications available. You may be able to " +"respond from the sender's profile page." +msgstr "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender." -#: ../../include/widgets.php:1336 ../../mod/admin.php:1149 -msgid "Channels" -msgstr "Kanalen" +#: ../../Zotlabs/Module/Mail.php:373 +msgid "Send Reply" +msgstr "Antwoord versturen" -#: ../../include/widgets.php:1337 ../../mod/admin.php:710 -msgid "Security" -msgstr "Beveiliging" +#: ../../Zotlabs/Module/Mail.php:378 +#, php-format +msgid "Your message for %s (%s):" +msgstr "Jouw privébericht aan %s (%s):" -#: ../../include/widgets.php:1339 ../../mod/admin.php:1264 -#: ../../mod/admin.php:1325 -msgid "Plugins" -msgstr "Plugins" +#: ../../Zotlabs/Module/Manage.php:134 +#: ../../Zotlabs/Module/New_channel.php:121 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." +msgstr "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt." -#: ../../include/widgets.php:1340 ../../mod/admin.php:1486 -#: ../../mod/admin.php:1520 -msgid "Themes" -msgstr "Thema's" +#: ../../Zotlabs/Module/Manage.php:141 +msgid "Create a new channel" +msgstr "Nieuw kanaal aanmaken" -#: ../../include/widgets.php:1341 -msgid "Inspect queue" -msgstr "Inspecteer berichtenwachtrij" +#: ../../Zotlabs/Module/Manage.php:162 ../../include/apps.php:132 +#: ../../include/nav.php:209 +msgid "Channel Manager" +msgstr "Kanaalbeheer" -#: ../../include/widgets.php:1342 ../../mod/admin.php:1760 -msgid "Profile Fields" -msgstr "Profielvelden" +#: ../../Zotlabs/Module/Manage.php:163 +msgid "Current Channel" +msgstr "Huidig kanaal" -#: ../../include/widgets.php:1343 -msgid "DB updates" -msgstr "Database-updates" +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Switch to one of your channels by selecting it." +msgstr "Activeer een van jouw andere kanalen door er op te klikken." -#: ../../include/widgets.php:1361 ../../include/widgets.php:1371 -#: ../../mod/admin.php:1605 -msgid "Logs" -msgstr "Logboeken" +#: ../../Zotlabs/Module/Manage.php:166 +msgid "Default Channel" +msgstr "Standaardkanaal" -#: ../../include/widgets.php:1369 -msgid "Plugin Features" -msgstr "Plugin-opties" +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Make Default" +msgstr "Als standaard instellen" -#: ../../include/widgets.php:1451 ../../mod/photos.php:787 -#: ../../mod/photos.php:1328 -msgid "View Photo" -msgstr "Foto weergeven" +#: ../../Zotlabs/Module/Manage.php:170 +#, php-format +msgid "%d new messages" +msgstr "%d nieuwe berichten" -#: ../../include/widgets.php:1468 ../../mod/photos.php:818 -msgid "Edit Album" -msgstr "Album bewerken" +#: ../../Zotlabs/Module/Manage.php:171 +#, php-format +msgid "%d new introductions" +msgstr "%d nieuwe connectieverzoeken" -#: ../../include/taxonomy.php:240 ../../include/taxonomy.php:261 -msgid "Tags" -msgstr "Tags" +#: ../../Zotlabs/Module/Manage.php:173 +msgid "Delegated Channel" +msgstr "Uitbesteed kanaal" -#: ../../include/taxonomy.php:305 -msgid "Keywords" -msgstr "Trefwoorden" +#: ../../Zotlabs/Module/Match.php:26 +msgid "Profile Match" +msgstr "Profielovereenkomst" -#: ../../include/taxonomy.php:326 -msgid "have" -msgstr "heb" +#: ../../Zotlabs/Module/Match.php:35 +msgid "No keywords to match. Please add keywords to your default profile." +msgstr "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe." -#: ../../include/taxonomy.php:326 -msgid "has" -msgstr "heeft" +#: ../../Zotlabs/Module/Match.php:67 +msgid "is interested in:" +msgstr "is geïnteresseerd in:" -#: ../../include/taxonomy.php:327 -msgid "want" -msgstr "wil" +#: ../../Zotlabs/Module/Match.php:74 +msgid "No matches" +msgstr "Geen overeenkomsten" -#: ../../include/taxonomy.php:327 -msgid "wants" -msgstr "wil" +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." +msgstr "Niet in staat om menu aan te passen" -#: ../../include/taxonomy.php:328 -msgid "likes" -msgstr "vindt dit leuk" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." +msgstr "Niet in staat om menu aan te maken." -#: ../../include/taxonomy.php:329 -msgid "dislikes" -msgstr "vindt dit niet leuk" +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" +msgstr "Menunaam" -#: ../../include/js_strings.php:5 -msgid "Delete this item?" -msgstr "Dit item verwijderen?" +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" +msgstr "Unieke naam vereist (niet zichtbaar op webpagina)" -#: ../../include/js_strings.php:8 -msgid "[-] show less" -msgstr "[-] minder reacties weergeven" +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" +msgstr "Menutitel" -#: ../../include/js_strings.php:9 -msgid "[+] expand" -msgstr "[+] uitklappen" +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" +msgstr "Zichtbaar op webpagina (leeg laten voor geen titel)" -#: ../../include/js_strings.php:10 -msgid "[-] collapse" -msgstr "[-] inklappen" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" +msgstr "Bladwijzers toestaan" -#: ../../include/js_strings.php:11 -msgid "Password too short" -msgstr "Wachtwoord te kort" +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" +msgstr "Menu kan gebruikt worden om bladwijzers in op te slaan" -#: ../../include/js_strings.php:12 -msgid "Passwords do not match" -msgstr "Wachtwoorden komen niet overeen" +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" +msgstr "Opslaan en doorgaan" -#: ../../include/js_strings.php:13 ../../mod/photos.php:41 -#: ../../mod/cal.php:37 -msgid "everybody" -msgstr "iedereen" +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2279 +msgid "Menus" +msgstr "Menu's" -#: ../../include/js_strings.php:14 -msgid "Secret Passphrase" -msgstr "Geheim wachtwoord" +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" +msgstr "Bladwijzers toegestaan" -#: ../../include/js_strings.php:15 -msgid "Passphrase hint" -msgstr "Wachtwoordhint" +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" +msgstr "Menu verwijderen" -#: ../../include/js_strings.php:16 -msgid "Notice: Permissions have changed but have not yet been submitted." -msgstr "Mededeling: de permissies zijn veranderd, maar zijn nog niet opgeslagen." +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" +msgstr "Bewerk de inhoud van het menu" -#: ../../include/js_strings.php:17 -msgid "close all" -msgstr "Alles sluiten" +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" +msgstr "Dit menu bewerken" -#: ../../include/js_strings.php:18 -msgid "Nothing new here" -msgstr "Niets nieuw hier" +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." +msgstr "Menu kon niet verwijderd worden." -#: ../../include/js_strings.php:19 -msgid "Rate This Channel (this is public)" -msgstr "Beoordeel dit kanaal (dit is openbaar)" +#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 +msgid "Menu not found." +msgstr "Menu niet gevonden." -#: ../../include/js_strings.php:20 ../../mod/connedit.php:712 -#: ../../mod/rate.php:157 -msgid "Rating" -msgstr "Beoordeling" +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" +msgstr "Menu bewerken" -#: ../../include/js_strings.php:21 -msgid "Describe (optional)" -msgstr "Omschrijving (optioneel)" +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" +msgstr "Items aan dit menu toevoegen of verwijder" -#: ../../include/js_strings.php:23 -msgid "Please enter a link URL" -msgstr "Vul een URL in:" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" +msgstr "Naam van menu" -#: ../../include/js_strings.php:24 -msgid "Unsaved changes. Are you sure you wish to leave this page?" -msgstr "Niet opgeslagen wijzigingen. Ben je er zeker van dat je deze pagina wil verlaten?" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" +msgstr "Moet uniek zijn en is alleen zichtbaar voor jou." -#: ../../include/js_strings.php:25 ../../mod/profiles.php:472 -#: ../../mod/profiles.php:697 ../../mod/pubsites.php:36 -#: ../../mod/events.php:459 ../../mod/locs.php:113 -msgid "Location" -msgstr "Locatie" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" +msgstr "Titel van menu" -#: ../../include/js_strings.php:27 -msgid "timeago.prefixAgo" -msgstr "timeago.prefixAgo" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" +msgstr "Titel van menu zoals anderen dat zien." -#: ../../include/js_strings.php:28 -msgid "timeago.prefixFromNow" -msgstr "timeago.prefixFromNow" +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" +msgstr "Bladwijzers toestaan" -#: ../../include/js_strings.php:29 -msgid "ago" -msgstr "geleden" +#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." +msgstr "Niet gevonden." -#: ../../include/js_strings.php:30 -msgid "from now" -msgstr "vanaf nu" +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." +msgstr "Niet in staat om onderdeel aan te maken." -#: ../../include/js_strings.php:31 -msgid "less than a minute" -msgstr "minder dan een minuut" +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." +msgstr "Menu-onderdeel kan niet worden geüpdatet." -#: ../../include/js_strings.php:32 -msgid "about a minute" -msgstr "ongeveer een minuut" +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." +msgstr "Menu-onderdeel kan niet worden toegevoegd." -#: ../../include/js_strings.php:33 -#, php-format -msgid "%d minutes" -msgstr "%d minuten" +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:226 +msgid "Menu Item Permissions" +msgstr "Permissies menu-item" -#: ../../include/js_strings.php:34 -msgid "about an hour" -msgstr "ongeveer een uur" +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:227 +#: ../../Zotlabs/Module/Settings.php:1066 +msgid "(click to open/close)" +msgstr "(klik om te openen/sluiten)" -#: ../../include/js_strings.php:35 -#, php-format -msgid "about %d hours" -msgstr "ongeveer %d uren" +#: ../../Zotlabs/Module/Mitem.php:156 ../../Zotlabs/Module/Mitem.php:172 +msgid "Link Name" +msgstr "Linknaam" -#: ../../include/js_strings.php:36 -msgid "a day" -msgstr "een dag" +#: ../../Zotlabs/Module/Mitem.php:157 ../../Zotlabs/Module/Mitem.php:231 +msgid "Link or Submenu Target" +msgstr "Linkdoel of submenu-doel" -#: ../../include/js_strings.php:37 -#, php-format -msgid "%d days" -msgstr "%d dagen" +#: ../../Zotlabs/Module/Mitem.php:157 +msgid "Enter URL of the link or select a menu name to create a submenu" +msgstr "Geef de URL van de link of kies een menunaam om een submenu aan te maken" -#: ../../include/js_strings.php:38 -msgid "about a month" -msgstr "ongeveer een maand" +#: ../../Zotlabs/Module/Mitem.php:158 ../../Zotlabs/Module/Mitem.php:232 +msgid "Use magic-auth if available" +msgstr "Gebruik magic-auth wanneer beschikbaar" -#: ../../include/js_strings.php:39 -#, php-format -msgid "%d months" -msgstr "%d maanden" +#: ../../Zotlabs/Module/Mitem.php:159 ../../Zotlabs/Module/Mitem.php:233 +msgid "Open link in new window" +msgstr "Open link in nieuw venster" -#: ../../include/js_strings.php:40 -msgid "about a year" -msgstr "ongeveer een jaar" +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Order in list" +msgstr "Volgorde in lijst" -#: ../../include/js_strings.php:41 -#, php-format -msgid "%d years" -msgstr "%d jaren" - -#: ../../include/js_strings.php:42 -msgid " " -msgstr " " - -#: ../../include/js_strings.php:43 -msgid "timeago.numbers" -msgstr "timeago.numbers" +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:234 +msgid "Higher numbers will sink to bottom of listing" +msgstr "Hogere nummers komen onderaan de lijst terecht" -#: ../../include/js_strings.php:45 ../../include/text.php:1210 -msgid "January" -msgstr "januari" +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Submit and finish" +msgstr "Opslaan en afsluiten" -#: ../../include/js_strings.php:46 ../../include/text.php:1210 -msgid "February" -msgstr "februari" +#: ../../Zotlabs/Module/Mitem.php:162 +msgid "Submit and continue" +msgstr "Opslaan en doorgaan" -#: ../../include/js_strings.php:47 ../../include/text.php:1210 -msgid "March" -msgstr "maart" +#: ../../Zotlabs/Module/Mitem.php:170 +msgid "Menu:" +msgstr "Menu:" -#: ../../include/js_strings.php:48 ../../include/text.php:1210 -msgid "April" -msgstr "april" +#: ../../Zotlabs/Module/Mitem.php:173 +msgid "Link Target" +msgstr "Linkdoel" -#: ../../include/js_strings.php:49 -msgctxt "long" -msgid "May" -msgstr "mei" +#: ../../Zotlabs/Module/Mitem.php:176 +msgid "Edit menu" +msgstr "Menu bewerken" -#: ../../include/js_strings.php:50 ../../include/text.php:1210 -msgid "June" -msgstr "juni" +#: ../../Zotlabs/Module/Mitem.php:179 +msgid "Edit element" +msgstr "Onderdeel bewerken" -#: ../../include/js_strings.php:51 ../../include/text.php:1210 -msgid "July" -msgstr "juli" +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Drop element" +msgstr "Onderdeel verwijderen" -#: ../../include/js_strings.php:52 ../../include/text.php:1210 -msgid "August" -msgstr "augustus" +#: ../../Zotlabs/Module/Mitem.php:181 +msgid "New element" +msgstr "Nieuw element" -#: ../../include/js_strings.php:53 ../../include/text.php:1210 -msgid "September" -msgstr "september" +#: ../../Zotlabs/Module/Mitem.php:182 +msgid "Edit this menu container" +msgstr "Deze menu-container bewerken" -#: ../../include/js_strings.php:54 ../../include/text.php:1210 -msgid "October" -msgstr "oktober" +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Add menu element" +msgstr "Menu-element toevoegen" -#: ../../include/js_strings.php:55 ../../include/text.php:1210 -msgid "November" -msgstr "november" +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Delete this menu item" +msgstr "Dit menu-item verwijderen" -#: ../../include/js_strings.php:56 ../../include/text.php:1210 -msgid "December" -msgstr "december" +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "Edit this menu item" +msgstr "Dit menu-item bewerken" -#: ../../include/js_strings.php:57 -msgid "Jan" -msgstr "jan" +#: ../../Zotlabs/Module/Mitem.php:202 +msgid "Menu item not found." +msgstr "Menu-item niet gevonden." -#: ../../include/js_strings.php:58 -msgid "Feb" -msgstr "feb" +#: ../../Zotlabs/Module/Mitem.php:215 +msgid "Menu item deleted." +msgstr "Menu-item verwijderd." -#: ../../include/js_strings.php:59 -msgid "Mar" -msgstr "mrt" +#: ../../Zotlabs/Module/Mitem.php:217 +msgid "Menu item could not be deleted." +msgstr "Menu-item kon niet worden verwijderd." -#: ../../include/js_strings.php:60 -msgid "Apr" -msgstr "apr" +#: ../../Zotlabs/Module/Mitem.php:224 +msgid "Edit Menu Element" +msgstr "Menu-element bewerken" -#: ../../include/js_strings.php:61 -msgctxt "short" -msgid "May" -msgstr "mei" +#: ../../Zotlabs/Module/Mitem.php:230 +msgid "Link text" +msgstr "Linktekst" -#: ../../include/js_strings.php:62 -msgid "Jun" -msgstr "jun" +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" +msgstr "%1$s is %2$s" -#: ../../include/js_strings.php:63 -msgid "Jul" -msgstr "jul" +#: ../../Zotlabs/Module/Mood.php:135 ../../include/apps.php:144 +msgid "Mood" +msgstr "Stemming" -#: ../../include/js_strings.php:64 -msgid "Aug" -msgstr "aug" +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" +msgstr "Noteer je huidige stemming en toon het aan je connecties" -#: ../../include/js_strings.php:65 -msgid "Sep" -msgstr "sep" +#: ../../Zotlabs/Module/Network.php:95 +msgid "No such group" +msgstr "Collectie niet gevonden" -#: ../../include/js_strings.php:66 -msgid "Oct" -msgstr "okt" +#: ../../Zotlabs/Module/Network.php:135 +msgid "No such channel" +msgstr "Niet zo'n kanaal" -#: ../../include/js_strings.php:67 -msgid "Nov" -msgstr "nov" +#: ../../Zotlabs/Module/Network.php:140 +msgid "forum" +msgstr "forum" -#: ../../include/js_strings.php:68 -msgid "Dec" -msgstr "dec" +#: ../../Zotlabs/Module/Network.php:152 +msgid "Search Results For:" +msgstr "Zoekresultaten voor:" -#: ../../include/js_strings.php:69 ../../include/text.php:1206 -msgid "Sunday" -msgstr "zondag" +#: ../../Zotlabs/Module/Network.php:216 +msgid "Privacy group is empty" +msgstr "Privacygroep is leeg" -#: ../../include/js_strings.php:70 ../../include/text.php:1206 -msgid "Monday" -msgstr "maandag" +#: ../../Zotlabs/Module/Network.php:225 +msgid "Privacy group: " +msgstr "Privacygroep: " -#: ../../include/js_strings.php:71 ../../include/text.php:1206 -msgid "Tuesday" -msgstr "dinsdag" +#: ../../Zotlabs/Module/Network.php:251 +msgid "Invalid connection." +msgstr "Ongeldige connectie." -#: ../../include/js_strings.php:72 ../../include/text.php:1206 -msgid "Wednesday" -msgstr "woensdag" +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Name or caption" +msgstr "Naam" -#: ../../include/js_strings.php:73 ../../include/text.php:1206 -msgid "Thursday" -msgstr "donderdag" +#: ../../Zotlabs/Module/New_channel.php:128 +#: ../../Zotlabs/Module/Register.php:231 +msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" +msgstr "Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Computerforum\"" -#: ../../include/js_strings.php:74 ../../include/text.php:1206 -msgid "Friday" -msgstr "vrijdag" +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +msgid "Choose a short nickname" +msgstr "Korte bijnaam" -#: ../../include/js_strings.php:75 ../../include/text.php:1206 -msgid "Saturday" -msgstr "zaterdag" +#: ../../Zotlabs/Module/New_channel.php:130 +#: ../../Zotlabs/Module/Register.php:233 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address " +"e.g. nickname%s" +msgstr "Deze bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres van jouw kanaal aan te maken, die je dan met anderen kunt delen. Bijvoorbeeld: bijnaam%s" -#: ../../include/js_strings.php:76 -msgid "Sun" -msgstr "zo" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Channel role and privacy" +msgstr "Kanaaltype en privacy" -#: ../../include/js_strings.php:77 -msgid "Mon" -msgstr "ma" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Select a channel role with your privacy requirements." +msgstr "Kies een kanaaltype met het door jou gewenste privacyniveau." -#: ../../include/js_strings.php:78 -msgid "Tue" -msgstr "di" +#: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Register.php:235 +msgid "Read more about roles" +msgstr "Lees meer over kanaaltypes" -#: ../../include/js_strings.php:79 -msgid "Wed" -msgstr "wo" +#: ../../Zotlabs/Module/New_channel.php:135 +msgid "Create Channel" +msgstr "Kanaal aanmaken" -#: ../../include/js_strings.php:80 -msgid "Thu" -msgstr "do" +#: ../../Zotlabs/Module/New_channel.php:136 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "Een kanaal is jouw identiteit in dit netwerk. Het kan bijvoorbeeld een persoon, een blog of een forum vertegenwoordigen. Door met elkaar te verbinden kunnen kanalen, met behulp van uitgebreide permissies, informatie uitwisselen." -#: ../../include/js_strings.php:81 -msgid "Fri" -msgstr "vr" +#: ../../Zotlabs/Module/New_channel.php:137 +msgid "" +"or import an existing channel from another location." +msgstr "Of importeer een bestaand kanaal vanaf een andere locatie" -#: ../../include/js_strings.php:82 -msgid "Sat" -msgstr "za" +#: ../../Zotlabs/Module/Notifications.php:30 +msgid "Invalid request identifier." +msgstr "Ongeldige verzoek identificator (request identifier)" -#: ../../include/js_strings.php:83 -msgctxt "calendar" -msgid "today" -msgstr "vandaag" +#: ../../Zotlabs/Module/Notifications.php:39 +msgid "Discard" +msgstr "Annuleren" -#: ../../include/js_strings.php:84 -msgctxt "calendar" -msgid "month" -msgstr "maand" +#: ../../Zotlabs/Module/Notifications.php:98 +#: ../../Zotlabs/Module/Notify.php:57 +msgid "No more system notifications." +msgstr "Geen systeemnotificaties meer." -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" -msgstr "week" +#: ../../Zotlabs/Module/Notifications.php:102 +#: ../../Zotlabs/Module/Notify.php:61 +msgid "System Notifications" +msgstr "Systeemnotificaties" -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" -msgstr "dag" +#: ../../Zotlabs/Module/Notifications.php:103 ../../include/nav.php:194 +msgid "Mark all system notifications seen" +msgstr "Markeer alle systeemnotificaties als bekeken" -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" -msgstr "hele dag" +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." +msgstr "Niet in staat om je hub te vinden" -#: ../../include/message.php:20 -msgid "No recipient provided." -msgstr "Geen ontvanger opgegeven." +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." +msgstr "Verzenden bericht geslaagd." -#: ../../include/message.php:25 -msgid "[no subject]" -msgstr "[geen onderwerp]" +#: ../../Zotlabs/Module/Openid.php:30 +msgid "OpenID protocol error. No ID returned." +msgstr "OpenID-protocolfout. Geen ID terugontvangen." -#: ../../include/message.php:45 -msgid "Unable to determine sender." -msgstr "Afzender kan niet bepaald worden." +#: ../../Zotlabs/Module/Openid.php:193 ../../include/auth.php:226 +msgid "Login failed." +msgstr "Inloggen mislukt." -#: ../../include/message.php:222 -msgid "Stored post could not be verified." -msgstr "Opgeslagen bericht kon niet worden geverifieerd." - -#: ../../include/import.php:23 +#: ../../Zotlabs/Module/Page.php:133 msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "Kan geen dubbele kanaal-identificator op deze hub aanmaken. Importeren mislukt." - -#: ../../include/import.php:70 -msgid "Channel clone failed. Import failed." -msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt." +"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " +"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," +" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " +"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " +"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " +"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -#: ../../include/import.php:80 ../../mod/import.php:146 -msgid "Cloned channel not found. Import failed." -msgstr "Gekloond kanaal niet gevonden. Importeren mislukt." +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." +msgstr "Deze instelling vereist een speciaal proces en bewerken is geblokkeerd." -#: ../../include/oembed.php:267 -msgid "Embedded content" -msgstr "Ingesloten (embedded) inhoud" +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" +msgstr "Configuratiebewerker" -#: ../../include/oembed.php:276 -msgid "Embedding disabled" -msgstr "Insluiten (embedding) uitgeschakeld" +#: ../../Zotlabs/Module/Pconfig.php:49 +msgid "" +"Warning: Changing some settings could render your channel inoperable. Please" +" leave this page unless you are comfortable with and knowledgeable about how" +" to correctly use this feature." +msgstr "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. " -#: ../../include/page_widgets.php:6 -msgid "New Page" -msgstr "Nieuwe pagina" +#: ../../Zotlabs/Module/Pdledit.php:18 +msgid "Layout updated." +msgstr "Lay-out bijgewerkt." -#: ../../include/page_widgets.php:39 ../../mod/pubsites.php:42 -#: ../../mod/webpages.php:191 ../../mod/blocks.php:161 -#: ../../mod/layouts.php:189 -msgid "View" -msgstr "Weergeven" +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Pdledit.php:61 +msgid "Edit System Page Description" +msgstr "Systeempagina's bewerken" -#: ../../include/page_widgets.php:41 ../../mod/webpages.php:193 -msgid "Actions" -msgstr "Acties" +#: ../../Zotlabs/Module/Pdledit.php:56 +msgid "Layout not found." +msgstr "Lay-out niet gevonden." -#: ../../include/page_widgets.php:42 ../../mod/webpages.php:194 -msgid "Page Link" -msgstr "Paginalink" +#: ../../Zotlabs/Module/Pdledit.php:62 +msgid "Module Name:" +msgstr "Modulenaam:" -#: ../../include/page_widgets.php:43 -msgid "Title" -msgstr "Titel" +#: ../../Zotlabs/Module/Pdledit.php:63 +msgid "Layout Help" +msgstr "Lay-out-hulp" -#: ../../include/page_widgets.php:44 ../../mod/webpages.php:196 -#: ../../mod/blocks.php:152 ../../mod/layouts.php:182 ../../mod/menu.php:110 -msgid "Created" -msgstr "Aangemaakt" +#: ../../Zotlabs/Module/Photos.php:83 +msgid "Page owner information could not be retrieved." +msgstr "Informatie over de pagina-eigenaar werd niet ontvangen." -#: ../../include/page_widgets.php:45 ../../mod/webpages.php:197 -#: ../../mod/blocks.php:153 ../../mod/layouts.php:183 ../../mod/menu.php:111 -msgid "Edited" -msgstr "Bewerkt" +#: ../../Zotlabs/Module/Photos.php:98 ../../Zotlabs/Module/Photos.php:742 +#: ../../Zotlabs/Module/Profile_photo.php:114 +#: ../../Zotlabs/Module/Profile_photo.php:206 +#: ../../Zotlabs/Module/Profile_photo.php:294 +#: ../../include/photo/photo_driver.php:722 +msgid "Profile Photos" +msgstr "Profielfoto's" -#: ../../include/permissions.php:26 -msgid "Can view my normal stream and posts" -msgstr "Kan mijn normale kanaalstream en berichten bekijken" +#: ../../Zotlabs/Module/Photos.php:104 ../../Zotlabs/Module/Photos.php:148 +msgid "Album not found." +msgstr "Album niet gevonden." -#: ../../include/permissions.php:27 -msgid "Can view my default channel profile" -msgstr "Kan mijn standaard kanaalprofiel bekijken" +#: ../../Zotlabs/Module/Photos.php:131 +msgid "Delete Album" +msgstr "Verwijder album" -#: ../../include/permissions.php:28 -msgid "Can view my connections" -msgstr "Kan een lijst met mijn connecties bekijken" +#: ../../Zotlabs/Module/Photos.php:152 +msgid "" +"Multiple storage folders exist with this album name, but within different " +"directories. Please remove the desired folder or folders using the Files " +"manager" +msgstr "Er bestaan meerdere submappen met deze albumnaam, maar verspreidt over verschillende mappen. Verwijder de gewenste map(pen) met de bestandsbeheerder." -#: ../../include/permissions.php:29 -msgid "Can view my file storage and photos" -msgstr "Kan mijn foto's en andere bestanden bekijken" +#: ../../Zotlabs/Module/Photos.php:209 ../../Zotlabs/Module/Photos.php:1052 +msgid "Delete Photo" +msgstr "Verwijder foto" -#: ../../include/permissions.php:30 -msgid "Can view my webpages" -msgstr "Kan mijn pagina's bekijken" +#: ../../Zotlabs/Module/Photos.php:532 +msgid "No photos selected" +msgstr "Geen foto's geselecteerd" -#: ../../include/permissions.php:33 -msgid "Can send me their channel stream and posts" -msgstr "Kan mij de inhoud van hun kanaal en berichten sturen" +#: ../../Zotlabs/Module/Photos.php:581 +msgid "Access to this item is restricted." +msgstr "Toegang tot dit item is beperkt." -#: ../../include/permissions.php:34 -msgid "Can post on my channel page (\"wall\")" -msgstr "Kan een bericht in mijn kanaal plaatsen" +#: ../../Zotlabs/Module/Photos.php:620 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." +msgstr "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt." -#: ../../include/permissions.php:35 -msgid "Can comment on or like my posts" -msgstr "Kan op mijn berichten reageren of deze (niet) leuk vinden" +#: ../../Zotlabs/Module/Photos.php:623 +#, php-format +msgid "%1$.2f MB photo storage used." +msgstr "%1$.2f MB aan foto-opslag gebruikt." -#: ../../include/permissions.php:36 -msgid "Can send me private mail messages" -msgstr "Kan mij privéberichten sturen" +#: ../../Zotlabs/Module/Photos.php:659 +msgid "Upload Photos" +msgstr "Foto's uploaden" -#: ../../include/permissions.php:37 -msgid "Can like/dislike stuff" -msgstr "Kan dingen leuk of niet leuk vinden" +#: ../../Zotlabs/Module/Photos.php:663 +msgid "Enter an album name" +msgstr "Vul een albumnaam in" -#: ../../include/permissions.php:37 -msgid "Profiles and things other than posts/comments" -msgstr "Profielen en dingen, buiten berichten en reacties" +#: ../../Zotlabs/Module/Photos.php:664 +msgid "or select an existing album (doubleclick)" +msgstr "of kies een bestaand album (dubbelklikken)" -#: ../../include/permissions.php:39 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+" +#: ../../Zotlabs/Module/Photos.php:665 +msgid "Create a status post for this upload" +msgstr "Plaats een bericht voor deze upload." -#: ../../include/permissions.php:39 -msgid "Advanced - useful for creating group forum channels" -msgstr "Geavanceerd - nuttig voor groepforums" +#: ../../Zotlabs/Module/Photos.php:666 +msgid "Caption (optional):" +msgstr "Bijschrift (optioneel):" -#: ../../include/permissions.php:40 -msgid "Can chat with me (when available)" -msgstr "Kan met mij chatten (wanneer beschikbaar)" +#: ../../Zotlabs/Module/Photos.php:667 +msgid "Description (optional):" +msgstr "Omschrijving (optioneel):" -#: ../../include/permissions.php:41 -msgid "Can write to my file storage and photos" -msgstr "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen" +#: ../../Zotlabs/Module/Photos.php:694 +msgid "Album name could not be decoded" +msgstr "Albumnaam kon niet gedecodeerd worden" -#: ../../include/permissions.php:42 -msgid "Can edit my webpages" -msgstr "Kan mijn pagina's bewerken" +#: ../../Zotlabs/Module/Photos.php:742 ../../Zotlabs/Module/Photos.php:1282 +#: ../../Zotlabs/Module/Photos.php:1299 +msgid "Contact Photos" +msgstr "Connectiefoto's" -#: ../../include/permissions.php:44 -msgid "Can source my public posts in derived channels" -msgstr "Kan mijn openbare berichten als bron voor andere kanalen gebruiken" +#: ../../Zotlabs/Module/Photos.php:765 +msgid "Show Newest First" +msgstr "Nieuwste eerst weergeven" -#: ../../include/permissions.php:44 -msgid "Somewhat advanced - very useful in open communities" -msgstr "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)" +#: ../../Zotlabs/Module/Photos.php:767 +msgid "Show Oldest First" +msgstr "Oudste eerst weergeven" -#: ../../include/permissions.php:46 -msgid "Can administer my channel resources" -msgstr "Kan mijn kanaal beheren" +#: ../../Zotlabs/Module/Photos.php:791 ../../Zotlabs/Module/Photos.php:1332 +#: ../../include/widgets.php:1451 +msgid "View Photo" +msgstr "Foto weergeven" -#: ../../include/permissions.php:46 -msgid "" -"Extremely advanced. Leave this alone unless you know what you are doing" -msgstr "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet." +#: ../../Zotlabs/Module/Photos.php:822 ../../include/widgets.php:1468 +msgid "Edit Album" +msgstr "Album bewerken" -#: ../../include/permissions.php:877 -msgid "Social Networking" -msgstr "Sociaal netwerk" +#: ../../Zotlabs/Module/Photos.php:869 +msgid "Permission denied. Access to this item may be restricted." +msgstr "Toegang geweigerd. Toegang tot dit item kan zijn beperkt." -#: ../../include/permissions.php:877 -msgid "Social - Mostly Public" -msgstr "Sociaal - Vrijwel alles openbaar" +#: ../../Zotlabs/Module/Photos.php:871 +msgid "Photo not available" +msgstr "Foto niet aanwezig" -#: ../../include/permissions.php:877 -msgid "Social - Restricted" -msgstr "Sociaal - Beperkt zichtbaar" +#: ../../Zotlabs/Module/Photos.php:929 +msgid "Use as profile photo" +msgstr "Als profielfoto gebruiken" -#: ../../include/permissions.php:877 -msgid "Social - Private" -msgstr "Sociaal - Verborgen kanaal" +#: ../../Zotlabs/Module/Photos.php:930 +msgid "Use as cover photo" +msgstr "Als omslagfoto gebruiken" -#: ../../include/permissions.php:878 -msgid "Community Forum" -msgstr "Groepsforum" +#: ../../Zotlabs/Module/Photos.php:937 +msgid "Private Photo" +msgstr "Privéfoto" -#: ../../include/permissions.php:878 -msgid "Forum - Mostly Public" -msgstr "Forum - Vrijwel alles openbaar" +#: ../../Zotlabs/Module/Photos.php:952 +msgid "View Full Size" +msgstr "Volledige grootte weergeven" -#: ../../include/permissions.php:878 -msgid "Forum - Restricted" -msgstr "Forum - Beperkt zichtbaar" +#: ../../Zotlabs/Module/Photos.php:997 ../../Zotlabs/Module/Tagrm.php:137 +msgid "Remove" +msgstr "Verwijderen" -#: ../../include/permissions.php:878 -msgid "Forum - Private" -msgstr "Forum - Verborgen kanaal" +#: ../../Zotlabs/Module/Photos.php:1031 +msgid "Edit photo" +msgstr "Foto bewerken" -#: ../../include/permissions.php:879 -msgid "Feed Republish" -msgstr "Feed herpubliceren" +#: ../../Zotlabs/Module/Photos.php:1033 +msgid "Rotate CW (right)" +msgstr "Draai met de klok mee (naar rechts)" -#: ../../include/permissions.php:879 -msgid "Feed - Mostly Public" -msgstr "Feed - Vrijwel alles openbaar" +#: ../../Zotlabs/Module/Photos.php:1034 +msgid "Rotate CCW (left)" +msgstr "Draai tegen de klok in (naar links)" -#: ../../include/permissions.php:879 -msgid "Feed - Restricted" -msgstr "Feed - Beperkt zichtbaar" +#: ../../Zotlabs/Module/Photos.php:1037 +msgid "Enter a new album name" +msgstr "Vul een nieuwe albumnaam in" -#: ../../include/permissions.php:880 -msgid "Special Purpose" -msgstr "Speciaal doel" +#: ../../Zotlabs/Module/Photos.php:1038 +msgid "or select an existing one (doubleclick)" +msgstr "of kies een bestaand album (dubbelklikken)" -#: ../../include/permissions.php:880 -msgid "Special - Celebrity/Soapbox" -msgstr "Speciaal - Beroemdheid/alleen volgen" +#: ../../Zotlabs/Module/Photos.php:1041 +msgid "Caption" +msgstr "Bijschrift" -#: ../../include/permissions.php:880 -msgid "Special - Group Repository" -msgstr "Speciaal - Groepsopslag" +#: ../../Zotlabs/Module/Photos.php:1043 +msgid "Add a Tag" +msgstr "Tag toevoegen" -#: ../../include/permissions.php:881 -msgid "Custom/Expert Mode" -msgstr "Expertmodus/handmatig aanpassen" +#: ../../Zotlabs/Module/Photos.php:1047 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl" -#: ../../include/text.php:394 -msgid "prev" -msgstr "vorige" +#: ../../Zotlabs/Module/Photos.php:1050 +msgid "Flag as adult in album view" +msgstr "Markeer als voor volwassenen in albumweergave" -#: ../../include/text.php:396 -msgid "first" -msgstr "eerste" +#: ../../Zotlabs/Module/Photos.php:1069 ../../include/ItemObject.php:254 +msgid "I like this (toggle)" +msgstr "Vind ik leuk" -#: ../../include/text.php:425 -msgid "last" -msgstr "laatste" +#: ../../Zotlabs/Module/Photos.php:1070 ../../include/ItemObject.php:255 +msgid "I don't like this (toggle)" +msgstr "Vind ik niet leuk" -#: ../../include/text.php:428 -msgid "next" -msgstr "volgende" +#: ../../Zotlabs/Module/Photos.php:1088 ../../Zotlabs/Module/Photos.php:1206 +#: ../../include/ItemObject.php:700 +msgid "This is you" +msgstr "Dit ben jij" -#: ../../include/text.php:438 -msgid "older" -msgstr "ouder" +#: ../../Zotlabs/Module/Photos.php:1090 ../../Zotlabs/Module/Photos.php:1208 +#: ../../include/ItemObject.php:702 ../../include/js_strings.php:6 +msgid "Comment" +msgstr "Reactie" -#: ../../include/text.php:440 -msgid "newer" -msgstr "nieuwer" +#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:574 +msgctxt "title" +msgid "Likes" +msgstr "vinden dit leuk" -#: ../../include/text.php:822 -msgid "No connections" -msgstr "Geen connecties" +#: ../../Zotlabs/Module/Photos.php:1106 ../../include/conversation.php:574 +msgctxt "title" +msgid "Dislikes" +msgstr "vinden dit niet leuk" -#: ../../include/text.php:847 -#, php-format -msgid "View all %s connections" -msgstr "Toon alle %s connecties" +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:575 +msgctxt "title" +msgid "Agree" +msgstr "eens" -#: ../../include/text.php:992 ../../include/text.php:997 -msgid "poke" -msgstr "aanstoten" +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:575 +msgctxt "title" +msgid "Disagree" +msgstr "oneens" -#: ../../include/text.php:998 -msgid "ping" -msgstr "ping" +#: ../../Zotlabs/Module/Photos.php:1107 ../../include/conversation.php:575 +msgctxt "title" +msgid "Abstain" +msgstr "onthoudingen" -#: ../../include/text.php:998 -msgid "pinged" -msgstr "gepingd" +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:576 +msgctxt "title" +msgid "Attending" +msgstr "aanwezig" -#: ../../include/text.php:999 -msgid "prod" -msgstr "por" +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:576 +msgctxt "title" +msgid "Not attending" +msgstr "niet aanwezig" -#: ../../include/text.php:999 -msgid "prodded" -msgstr "gepord" +#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:576 +msgctxt "title" +msgid "Might attend" +msgstr "mogelijk aanwezig" -#: ../../include/text.php:1000 -msgid "slap" -msgstr "slaan" +#: ../../Zotlabs/Module/Photos.php:1125 ../../Zotlabs/Module/Photos.php:1137 +#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 +#: ../../include/conversation.php:1736 +msgid "View all" +msgstr "Toon alles" -#: ../../include/text.php:1000 -msgid "slapped" -msgstr "sloeg" +#: ../../Zotlabs/Module/Photos.php:1129 ../../include/identity.php:1297 +#: ../../include/ItemObject.php:179 ../../include/conversation.php:1760 +#: ../../include/taxonomy.php:415 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "vindt dit leuk" +msgstr[1] "vinden dit leuk" -#: ../../include/text.php:1001 -msgid "finger" -msgstr "finger" +#: ../../Zotlabs/Module/Photos.php:1134 ../../include/ItemObject.php:184 +#: ../../include/conversation.php:1763 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "vindt dit niet leuk" +msgstr[1] "vinden dit niet leuk" -#: ../../include/text.php:1001 -msgid "fingered" -msgstr "gefingerd" +#: ../../Zotlabs/Module/Photos.php:1242 +msgid "In This Photo:" +msgstr "Op deze foto:" -#: ../../include/text.php:1002 -msgid "rebuff" -msgstr "afpoeieren" +#: ../../Zotlabs/Module/Photos.php:1247 +msgid "Map" +msgstr "Kaart" -#: ../../include/text.php:1002 -msgid "rebuffed" -msgstr "afgepoeierd" +#: ../../Zotlabs/Module/Photos.php:1255 ../../include/ItemObject.php:378 +msgctxt "noun" +msgid "Likes" +msgstr "vinden dit leuk" -#: ../../include/text.php:1014 -msgid "happy" -msgstr "gelukkig" +#: ../../Zotlabs/Module/Photos.php:1256 ../../include/ItemObject.php:379 +msgctxt "noun" +msgid "Dislikes" +msgstr "vinden dit niet leuk" -#: ../../include/text.php:1015 -msgid "sad" -msgstr "bedroefd" +#: ../../Zotlabs/Module/Photos.php:1261 ../../include/ItemObject.php:384 +#: ../../include/acl_selectors.php:252 +msgid "Close" +msgstr "Sluiten" -#: ../../include/text.php:1016 -msgid "mellow" -msgstr "mellow" +#: ../../Zotlabs/Module/Photos.php:1338 +msgid "View Album" +msgstr "Album weergeven" -#: ../../include/text.php:1017 -msgid "tired" -msgstr "moe" +#: ../../Zotlabs/Module/Photos.php:1349 ../../Zotlabs/Module/Photos.php:1362 +#: ../../Zotlabs/Module/Photos.php:1363 +msgid "Recent Photos" +msgstr "Recente foto's" -#: ../../include/text.php:1018 -msgid "perky" -msgstr "parmantig" +#: ../../Zotlabs/Module/Ping.php:264 +msgid "sent you a private message" +msgstr "stuurde jou een privébericht" -#: ../../include/text.php:1019 -msgid "angry" -msgstr "boos" +#: ../../Zotlabs/Module/Ping.php:312 +msgid "added your channel" +msgstr "voegde jouw kanaal toe" -#: ../../include/text.php:1020 -msgid "stupefied" -msgstr "verbijsterd" +#: ../../Zotlabs/Module/Ping.php:322 ../../include/identity.php:1116 +#: ../../include/identity.php:1192 +msgid "g A l F d" +msgstr "G:i, l d F" -#: ../../include/text.php:1021 -msgid "puzzled" -msgstr "verward" +#: ../../Zotlabs/Module/Ping.php:345 ../../include/identity.php:1162 +#: ../../include/identity.php:1232 +msgid "[today]" +msgstr "[vandaag]" -#: ../../include/text.php:1022 -msgid "interested" -msgstr "geïnteresseerd" +#: ../../Zotlabs/Module/Ping.php:354 +msgid "posted an event" +msgstr "plaatste een gebeurtenis" -#: ../../include/text.php:1023 -msgid "bitter" -msgstr "verbitterd" +#: ../../Zotlabs/Module/Poke.php:168 ../../include/apps.php:145 +#: ../../include/conversation.php:965 +msgid "Poke" +msgstr "Aanstoten" -#: ../../include/text.php:1024 -msgid "cheerful" -msgstr "vrolijk" +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" +msgstr "Iemand aanstoten" -#: ../../include/text.php:1025 -msgid "alive" -msgstr "levendig" +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" +msgstr "Aanstoten/porren" -#: ../../include/text.php:1026 -msgid "annoyed" -msgstr "geërgerd" +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" +msgstr "Iemand bijvoorbeeld aanstoten of poren" -#: ../../include/text.php:1027 -msgid "anxious" -msgstr "bezorgd" +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" +msgstr "Ontvanger" -#: ../../include/text.php:1028 -msgid "cranky" -msgstr "humeurig" +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" +msgstr "Kies wat je met de ontvanger wil doen" -#: ../../include/text.php:1029 -msgid "disturbed" -msgstr "verontrust" +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" +msgstr "Maak dit bericht privé" -#: ../../include/text.php:1030 -msgid "frustrated" -msgstr "gefrustreerd " +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:34 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "Ophalen URL gaf een foutmelding terug: %1$s" -#: ../../include/text.php:1031 -msgid "depressed" -msgstr "gedeprimeerd" +#: ../../Zotlabs/Module/Profile_photo.php:179 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." +msgstr "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven." -#: ../../include/text.php:1032 -msgid "motivated" -msgstr "gemotiveerd" +#: ../../Zotlabs/Module/Profile_photo.php:367 +msgid "Upload Profile Photo" +msgstr "Profielfoto uploaden" -#: ../../include/text.php:1033 -msgid "relaxed" -msgstr "ontspannen" +#: ../../Zotlabs/Module/Profiles.php:23 ../../Zotlabs/Module/Profiles.php:188 +#: ../../Zotlabs/Module/Profiles.php:245 ../../Zotlabs/Module/Profiles.php:624 +msgid "Profile not found." +msgstr "Profiel niet gevonden." -#: ../../include/text.php:1034 -msgid "surprised" -msgstr "verrast" +#: ../../Zotlabs/Module/Profiles.php:43 +msgid "Profile deleted." +msgstr "Profiel verwijderd." -#: ../../include/text.php:1210 -msgid "May" -msgstr "mei" +#: ../../Zotlabs/Module/Profiles.php:67 ../../Zotlabs/Module/Profiles.php:103 +msgid "Profile-" +msgstr "Profiel-" -#: ../../include/text.php:1287 ../../include/text.php:1291 -msgid "Unknown Attachment" -msgstr "Onbekende bijlage" +#: ../../Zotlabs/Module/Profiles.php:88 ../../Zotlabs/Module/Profiles.php:131 +msgid "New profile created." +msgstr "Nieuw profiel aangemaakt." -#: ../../include/text.php:1293 -msgid "unknown" -msgstr "onbekend" +#: ../../Zotlabs/Module/Profiles.php:109 +msgid "Profile unavailable to clone." +msgstr "Profiel niet beschikbaar om te klonen" -#: ../../include/text.php:1329 -msgid "remove category" -msgstr "categorie verwijderen" +#: ../../Zotlabs/Module/Profiles.php:150 +msgid "Profile unavailable to export." +msgstr "Geen profiel beschikbaar om te exporteren" -#: ../../include/text.php:1406 -msgid "remove from file" -msgstr "uit map verwijderen" +#: ../../Zotlabs/Module/Profiles.php:255 +msgid "Profile Name is required." +msgstr "Profielnaam is vereist" -#: ../../include/text.php:1548 ../../include/text.php:1559 -msgid "Click to open/close" -msgstr "Klik om te openen of te sluiten" +#: ../../Zotlabs/Module/Profiles.php:426 +msgid "Marital Status" +msgstr "Huwelijke status" -#: ../../include/text.php:1743 ../../mod/cal.php:307 ../../mod/events.php:630 -msgid "Link to Source" -msgstr "Originele locatie" +#: ../../Zotlabs/Module/Profiles.php:430 +msgid "Romantic Partner" +msgstr "Romantische partner" -#: ../../include/text.php:1764 ../../include/text.php:1836 -msgid "default" -msgstr "standaard" +#: ../../Zotlabs/Module/Profiles.php:434 ../../Zotlabs/Module/Profiles.php:739 +msgid "Likes" +msgstr "Houdt van" -#: ../../include/text.php:1772 -msgid "Page layout" -msgstr "Pagina-lay-out" +#: ../../Zotlabs/Module/Profiles.php:438 ../../Zotlabs/Module/Profiles.php:740 +msgid "Dislikes" +msgstr "Houdt niet van" -#: ../../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" +#: ../../Zotlabs/Module/Profiles.php:442 ../../Zotlabs/Module/Profiles.php:747 +msgid "Work/Employment" +msgstr "Werk/arbeid" -#: ../../include/text.php:1814 -msgid "Page content type" -msgstr "Opmaaktype pagina" +#: ../../Zotlabs/Module/Profiles.php:445 +msgid "Religion" +msgstr "Religie" -#: ../../include/text.php:1848 -msgid "Select an alternate language" -msgstr "Kies een andere taal" +#: ../../Zotlabs/Module/Profiles.php:449 +msgid "Political Views" +msgstr "Politieke overtuigingen" -#: ../../include/text.php:1980 -msgid "activity" -msgstr "activiteit" +#: ../../Zotlabs/Module/Profiles.php:457 +msgid "Sexual Preference" +msgstr "Seksuele voorkeur" -#: ../../include/text.php:2275 -msgid "Design Tools" -msgstr "Ontwerp-hulpmiddelen" +#: ../../Zotlabs/Module/Profiles.php:461 +msgid "Homepage" +msgstr "Homepage" -#: ../../include/text.php:2278 ../../mod/blocks.php:149 -msgid "Blocks" -msgstr "Blokken" +#: ../../Zotlabs/Module/Profiles.php:465 +msgid "Interests" +msgstr "Interesses" -#: ../../include/text.php:2279 ../../mod/menu.php:103 -msgid "Menus" -msgstr "Menu's" +#: ../../Zotlabs/Module/Profiles.php:559 +msgid "Profile updated." +msgstr "Profiel bijgewerkt" -#: ../../include/text.php:2280 ../../mod/layouts.php:175 -msgid "Layouts" -msgstr "Lay-outs" +#: ../../Zotlabs/Module/Profiles.php:648 +msgid "Hide your connections list from viewers of this profile" +msgstr "Laat de lijst met connecties niet aan bezoekers van dit profiel zien." -#: ../../include/text.php:2281 -msgid "Pages" -msgstr "Pagina's" +#: ../../Zotlabs/Module/Profiles.php:690 +msgid "Edit Profile Details" +msgstr "Profiel bewerken" -#: ../../include/api.php:1336 -msgid "Public Timeline" -msgstr "Openbare tijdlijn" +#: ../../Zotlabs/Module/Profiles.php:692 +msgid "View this profile" +msgstr "Profiel weergeven" -#: ../../mod/lockview.php:57 -msgid "Remote privacy information not available." -msgstr "Privacy-informatie op afstand niet beschikbaar." +#: ../../Zotlabs/Module/Profiles.php:693 ../../Zotlabs/Module/Profiles.php:774 +#: ../../include/identity.php:952 +msgid "Edit visibility" +msgstr "Zichtbaarheid bewerken" -#: ../../mod/lockview.php:78 -msgid "Visible to:" -msgstr "Zichtbaar voor:" +#: ../../Zotlabs/Module/Profiles.php:694 +msgid "Change cover photo" +msgstr "Omslagfoto wijzigen" -#: ../../mod/achievements.php:34 -msgid "Some blurb about what to do when you're new here" -msgstr "Welkom op $Projectname. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook apps, waar je vrijwel alle functies van $Projectname kunt vinden. Voor hulp met $Projectname klik je op het vraagteken." +#: ../../Zotlabs/Module/Profiles.php:695 ../../include/identity.php:923 +msgid "Change profile photo" +msgstr "Profielfoto veranderen" -#: ../../mod/acl.php:221 -msgid "network" -msgstr "netwerk" +#: ../../Zotlabs/Module/Profiles.php:696 +msgid "Create a new profile using these settings" +msgstr "Een nieuw profiel aanmaken met dit profiel als basis" -#: ../../mod/acl.php:231 -msgid "RSS" -msgstr "RSS" +#: ../../Zotlabs/Module/Profiles.php:697 +msgid "Clone this profile" +msgstr "Dit profiel klonen" -#: ../../mod/oexchange.php:23 -msgid "Unable to find your hub." -msgstr "Niet in staat om je hub te vinden" +#: ../../Zotlabs/Module/Profiles.php:698 +msgid "Delete this profile" +msgstr "Dit profiel verwijderen" -#: ../../mod/oexchange.php:37 -msgid "Post successful." -msgstr "Verzenden bericht geslaagd." +#: ../../Zotlabs/Module/Profiles.php:699 +msgid "Add profile things" +msgstr "Dingen aan je profiel toevoegen" -#: ../../mod/admin.php:54 -msgid "Theme settings updated." -msgstr "Thema-instellingen bijgewerkt." +#: ../../Zotlabs/Module/Profiles.php:700 ../../include/conversation.php:1544 +#: ../../include/widgets.php:105 +msgid "Personal" +msgstr "Persoonlijk" -#: ../../mod/admin.php:174 -msgid "# Accounts" -msgstr "# accounts" +#: ../../Zotlabs/Module/Profiles.php:702 +msgid "Relation" +msgstr "Relatie" -#: ../../mod/admin.php:175 -msgid "# blocked accounts" -msgstr "# geblokkeerde accounts" +#: ../../Zotlabs/Module/Profiles.php:703 ../../include/datetime.php:48 +msgid "Miscellaneous" +msgstr "Diversen" -#: ../../mod/admin.php:176 -msgid "# expired accounts" -msgstr "# verlopen accounts" +#: ../../Zotlabs/Module/Profiles.php:705 +msgid "Import profile from file" +msgstr "Profiel vanuit bestand importeren" -#: ../../mod/admin.php:177 -msgid "# expiring accounts" -msgstr "# accounts die nog moeten verlopen" +#: ../../Zotlabs/Module/Profiles.php:706 +msgid "Export profile to file" +msgstr "Profiel naar bestand exporteren" -#: ../../mod/admin.php:188 -msgid "# Channels" -msgstr "# Kanalen" +#: ../../Zotlabs/Module/Profiles.php:707 +msgid "Your gender" +msgstr "Jouw geslacht" -#: ../../mod/admin.php:189 -msgid "# primary" -msgstr "# primair" +#: ../../Zotlabs/Module/Profiles.php:708 +msgid "Marital status" +msgstr "Burgerlijke staat" -#: ../../mod/admin.php:190 -msgid "# clones" -msgstr "# klonen" +#: ../../Zotlabs/Module/Profiles.php:709 +msgid "Sexual preference" +msgstr "Seksuele voorkeur" -#: ../../mod/admin.php:196 -msgid "Message queues" -msgstr "Berichtenwachtrij" +#: ../../Zotlabs/Module/Profiles.php:712 +msgid "Profile name" +msgstr "Profielnaam" -#: ../../mod/admin.php:212 ../../mod/admin.php:455 ../../mod/admin.php:669 -#: ../../mod/admin.php:709 ../../mod/admin.php:984 ../../mod/admin.php:1148 -#: ../../mod/admin.php:1263 ../../mod/admin.php:1324 ../../mod/admin.php:1485 -#: ../../mod/admin.php:1519 ../../mod/admin.php:1604 -msgid "Administration" -msgstr "Beheer" +#: ../../Zotlabs/Module/Profiles.php:714 +msgid "This is your default profile." +msgstr "Dit is jouw standaardprofiel" -#: ../../mod/admin.php:213 -msgid "Summary" -msgstr "Samenvatting" +#: ../../Zotlabs/Module/Profiles.php:716 +msgid "Your full name" +msgstr "Jouw volledige naam" -#: ../../mod/admin.php:216 -msgid "Registered accounts" -msgstr "Geregistreerde accounts" +#: ../../Zotlabs/Module/Profiles.php:717 +msgid "Title/Description" +msgstr "Titel/omschrijving" -#: ../../mod/admin.php:217 ../../mod/admin.php:673 -msgid "Pending registrations" -msgstr "Accounts die op goedkeuring wachten" +#: ../../Zotlabs/Module/Profiles.php:720 +msgid "Street address" +msgstr "Straat en huisnummer" -#: ../../mod/admin.php:218 -msgid "Registered channels" -msgstr "Geregistreerde kanalen" +#: ../../Zotlabs/Module/Profiles.php:721 +msgid "Locality/City" +msgstr "Woonplaats" -#: ../../mod/admin.php:219 ../../mod/admin.php:674 -msgid "Active plugins" -msgstr "Ingeschakelde plugins" +#: ../../Zotlabs/Module/Profiles.php:722 +msgid "Region/State" +msgstr "Provincie/gewest/deelstaat" -#: ../../mod/admin.php:220 -msgid "Version" -msgstr "Versie" +#: ../../Zotlabs/Module/Profiles.php:723 +msgid "Postal/Zip code" +msgstr "Postcode" -#: ../../mod/admin.php:339 -msgid "Site settings updated." -msgstr "Hub-instellingen bijgewerkt." +#: ../../Zotlabs/Module/Profiles.php:724 +msgid "Country" +msgstr "Land" -#: ../../mod/admin.php:376 ../../mod/settings.php:805 -msgid "mobile" -msgstr "mobiel" +#: ../../Zotlabs/Module/Profiles.php:729 +msgid "Who (if applicable)" +msgstr "Wie (wanneer van toepassing)" -#: ../../mod/admin.php:378 -msgid "experimental" -msgstr "experimenteel" +#: ../../Zotlabs/Module/Profiles.php:729 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +msgstr "Voorbeelden: petra123, Petra Jansen, petra@voorbeeld.nl" -#: ../../mod/admin.php:380 -msgid "unsupported" -msgstr "Niet ondersteund" +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Since (date)" +msgstr "Sinds (datum)" -#: ../../mod/admin.php:426 -msgid "Yes - with approval" -msgstr "Ja - met goedkeuring" +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Tell us about yourself" +msgstr "Vertel ons iets over jezelf" -#: ../../mod/admin.php:432 -msgid "My site is not a public server" -msgstr "Mijn $Projectname-hub is niet openbaar" +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Hometown" +msgstr "Oorspronkelijk uit" -#: ../../mod/admin.php:433 -msgid "My site has paid access only" -msgstr "Mijn $Projectname-hub kent alleen betaalde toegang" +#: ../../Zotlabs/Module/Profiles.php:736 +msgid "Political views" +msgstr "Politieke overtuigingen" -#: ../../mod/admin.php:434 -msgid "My site has free access only" -msgstr "Mijn $Projectname-hub kent alleen gratis toegang" +#: ../../Zotlabs/Module/Profiles.php:737 +msgid "Religious views" +msgstr "Religieuze overtuigingen" -#: ../../mod/admin.php:435 -msgid "My site offers free accounts with optional paid upgrades" -msgstr "Mijn $Projectname-hub biedt gratis accounts aan met betaalde uitbreidingen als optie" +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Keywords used in directory listings" +msgstr "Trefwoorden voor in de kanalengids" -#: ../../mod/admin.php:458 ../../mod/register.php:241 -msgid "Registration" -msgstr "Registratie" +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Example: fishing photography software" +msgstr "Voorbeeld: muziek, fotografie, software" -#: ../../mod/admin.php:459 -msgid "File upload" -msgstr "Bestand uploaden" +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Musical interests" +msgstr "Muzikale interesses" -#: ../../mod/admin.php:460 -msgid "Policies" -msgstr "Beleid" +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Books, literature" +msgstr "Boeken/literatuur" -#: ../../mod/admin.php:465 -msgid "Site name" -msgstr "Naam van deze $Projectname-hub" +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Television" +msgstr "Televisie" -#: ../../mod/admin.php:466 -msgid "Banner/Logo" -msgstr "Banner/logo" +#: ../../Zotlabs/Module/Profiles.php:744 +msgid "Film/Dance/Culture/Entertainment" +msgstr "Film/dans/cultuur/entertainment" -#: ../../mod/admin.php:467 -msgid "Administrator Information" -msgstr "Informatie over de beheerder van deze hub" +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "Hobbies/Interests" +msgstr "Hobby's/interesses" -#: ../../mod/admin.php:467 -msgid "" -"Contact information for site administrators. Displayed on siteinfo page. " -"BBCode can be used here" -msgstr "Contactinformatie voor hub-beheerders. Getoond op pagina met hub-informatie. Er kan hier bbcode gebruikt worden." +#: ../../Zotlabs/Module/Profiles.php:746 +msgid "Love/Romance" +msgstr "Liefde/romantiek" -#: ../../mod/admin.php:468 -msgid "System language" -msgstr "Standaardtaal" +#: ../../Zotlabs/Module/Profiles.php:748 +msgid "School/Education" +msgstr "School/opleiding" -#: ../../mod/admin.php:469 -msgid "System theme" -msgstr "Standaardthema" +#: ../../Zotlabs/Module/Profiles.php:749 +msgid "Contact information and social networks" +msgstr "Contactinformatie en sociale netwerken" -#: ../../mod/admin.php:469 -msgid "" -"Default system theme - may be over-ridden by user profiles - change theme settings" -msgstr "Standaardthema voor $Projectname-hub (kan door lid veranderd worden) - verander thema-instellingen" +#: ../../Zotlabs/Module/Profiles.php:750 +msgid "My other channels" +msgstr "Mijn andere kanalen" -#: ../../mod/admin.php:470 -msgid "Mobile system theme" -msgstr "Standaardthema voor mobiel" +#: ../../Zotlabs/Module/Profiles.php:770 ../../include/identity.php:948 +msgid "Profile Image" +msgstr "Profielfoto" -#: ../../mod/admin.php:470 -msgid "Theme for mobile devices" -msgstr "Thema voor mobiele apparaten" +#: ../../Zotlabs/Module/Profiles.php:780 ../../include/identity.php:930 +#: ../../include/nav.php:88 +msgid "Edit Profiles" +msgstr "Bewerk profielen" -#: ../../mod/admin.php:472 -msgid "Allow Feeds as Connections" -msgstr "Sta feeds toe als connecties" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." +msgstr "Ongeldige profiel-identificator" -#: ../../mod/admin.php:472 -msgid "(Heavy system resource usage)" -msgstr "(sterk negatieve invloed op systeembronnen hub)" +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Profile Visibility Editor" +msgstr "Zichtbaarheid profiel " -#: ../../mod/admin.php:473 -msgid "Maximum image size" -msgstr "Maximale grootte van afbeeldingen" +#: ../../Zotlabs/Module/Profperm.php:117 ../../include/identity.php:1388 +#: ../../include/apps.php:138 +msgid "Profile" +msgstr "Profiel" -#: ../../mod/admin.php:473 -msgid "" -"Maximum size in bytes of uploaded images. Default is 0, which means no " -"limits." -msgstr "Maximale grootte in bytes voor afbeeldingen die worden geüpload. Standaard is 0, wat geen limiet betekend." +#: ../../Zotlabs/Module/Profperm.php:119 +msgid "Click on a contact to add or remove." +msgstr "Klik op een connectie om deze toe te voegen of te verwijderen" -#: ../../mod/admin.php:474 -msgid "Does this site allow new member registration?" -msgstr "Staat deze hub nieuwe accounts toe?" +#: ../../Zotlabs/Module/Profperm.php:128 +msgid "Visible To" +msgstr "Zichtbaar voor" -#: ../../mod/admin.php:475 -msgid "Invitation only" -msgstr "Alleen op uitnodiging" +#: ../../Zotlabs/Module/Pubsites.php:22 ../../include/widgets.php:1222 +msgid "Public Hubs" +msgstr "Openbare hubs" -#: ../../mod/admin.php:475 +#: ../../Zotlabs/Module/Pubsites.php:25 msgid "" -"Only allow new member registrations with an invitation code. Above register " -"policy must be set to Yes." -msgstr "Sta alleen nieuwe registraties toe van mensen die een uitnodigingscode hebben. Bovenstaand accountbeleid moet op Ja staan." - -#: ../../mod/admin.php:476 -msgid "Which best describes the types of account offered by this hub?" -msgstr "Wat voor soort accounts biedt deze $Projectname-hub aan? Kies wat het meest in de buurt komt." - -#: ../../mod/admin.php:477 -msgid "Register text" -msgstr "Tekst tijdens registratie" +"The listed hubs allow public registration for the $Projectname network. All " +"hubs in the network are interlinked so membership on any of them conveys " +"membership in the network as a whole. Some hubs may require subscription or " +"provide tiered service plans. The hub itself may provide " +"additional details." +msgstr "Op de hier weergegeven hubs kan iedereen zich voor het $Projectname-netwerk aanmelden. Alle hubs in het netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen een financiële tegemoetkoming voor bepaalde uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven." -#: ../../mod/admin.php:477 -msgid "Will be displayed prominently on the registration page." -msgstr "Tekst dat op de pagina voor het registreren van nieuwe accounts wordt getoond." +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Hub URL" +msgstr "Hub-URL" -#: ../../mod/admin.php:478 -msgid "Site homepage to show visitors (default: login box)" -msgstr "Homepagina van deze hub die aan bezoekers wordt getoond (standaard: inlogformulier)" +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Access Type" +msgstr "Toegangs-
 type" -#: ../../mod/admin.php:478 -msgid "" -"example: 'public' to show public stream, 'page/sys/home' to show a system " -"webpage called 'home' or 'include:home.html' to include a file." -msgstr "voorbeeld: 'public' om de openbare stream te tonen, 'page/sys/home' om de webpagina 'home' van het systeemkanaal te tonen of 'include:home.html' om een gewoon bestand te gebruiken." +#: ../../Zotlabs/Module/Pubsites.php:31 +msgid "Registration Policy" +msgstr "Registratie-
 beleid" -#: ../../mod/admin.php:479 -msgid "Preserve site homepage URL" -msgstr "Behoudt de URL van de hub (/)" +#: ../../Zotlabs/Module/Pubsites.php:31 ../../Zotlabs/Module/Ratings.php:103 +#: ../../include/conversation.php:964 +msgid "Ratings" +msgstr "Beoordelingen" -#: ../../mod/admin.php:479 -msgid "" -"Present the site homepage in a frame at the original location instead of " -"redirecting" -msgstr "Toon de homepagina van de hub in een frame op de oorspronkelijke locatie (/), i.p.v. een doorverwijzing naar een andere locatie (bv. .../home.html)" +#: ../../Zotlabs/Module/Pubsites.php:37 +msgid "Rate" +msgstr "Beoordeel" -#: ../../mod/admin.php:480 -msgid "Accounts abandoned after x days" -msgstr "Accounts als verlaten beschouwen na zoveel aantal dagen:" +#: ../../Zotlabs/Module/Rate.php:162 +msgid "Website:" +msgstr "Website:" -#: ../../mod/admin.php:480 -msgid "" -"Will not waste system resources polling external sites for abandonded " -"accounts. Enter 0 for no time limit." -msgstr "Zal geen systeembronnen verspillen door polling van externe hubs voor verlaten accounts. Vul 0 in voor geen tijdslimiet." +#: ../../Zotlabs/Module/Rate.php:165 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" +msgstr "Kanaal op afstand [%s] (nog niet op deze hub bekend)" -#: ../../mod/admin.php:481 -msgid "Allowed friend domains" -msgstr "Toegestane domeinen" +#: ../../Zotlabs/Module/Rate.php:166 +msgid "Rating (this information is public)" +msgstr "Beoordeling (deze informatie is openbaar)" -#: ../../mod/admin.php:481 -msgid "" -"Comma separated list of domains which are allowed to establish friendships " -"with this site. Wildcards are accepted. Empty to allow any domains" -msgstr "Komma-gescheiden lijst van domeinen waarvan kanalen connecties kunnen aangaan met kanalen op deze $Projectname-hub. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten." +#: ../../Zotlabs/Module/Rate.php:167 +msgid "Optionally explain your rating (this information is public)" +msgstr "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)" -#: ../../mod/admin.php:482 -msgid "Allowed email domains" -msgstr "Toegestane e-maildomeinen" +#: ../../Zotlabs/Module/Ratings.php:73 +msgid "No ratings" +msgstr "Geen beoordelingen" -#: ../../mod/admin.php:482 -msgid "" -"Comma separated list of domains which are allowed in email addresses for " -"registrations to this site. Wildcards are accepted. Empty to allow any " -"domains" -msgstr "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te laten." +#: ../../Zotlabs/Module/Ratings.php:104 +msgid "Rating: " +msgstr "Beoordeling: " -#: ../../mod/admin.php:483 -msgid "Not allowed email domains" -msgstr "Niet toegestane e-maildomeinen" +#: ../../Zotlabs/Module/Ratings.php:105 +msgid "Website: " +msgstr "Website: " -#: ../../mod/admin.php:483 -msgid "" -"Comma separated list of domains which are not allowed in email addresses for" -" registrations to this site. Wildcards are accepted. Empty to allow any " -"domains, unless allowed domains have been defined." -msgstr "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen niet op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te staan, tenzij er toegestane domeinen zijn ingesteld. " +#: ../../Zotlabs/Module/Ratings.php:107 +msgid "Description: " +msgstr "Omschrijving: " -#: ../../mod/admin.php:484 -msgid "Verify Email Addresses" -msgstr "E-mailadres verifieren" +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" +msgstr "Kies een bladwijzermap" -#: ../../mod/admin.php:484 -msgid "" -"Check to verify email addresses used in account registration (recommended)." -msgstr "Inschakelen om e-mailadressen te verifiëren die tijdens de accountregistratie worden gebruikt (aanbevolen)." +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" +msgstr "Bladwijzer opslaan" -#: ../../mod/admin.php:485 -msgid "Force publish" -msgstr "Dwing kanaalvermelding af" +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" +msgstr "URL van bladwijzer" -#: ../../mod/admin.php:485 -msgid "" -"Check to force all profiles on this site to be listed in the site directory." -msgstr "Vink dit aan om af te dwingen dat alle kanalen op deze hub in de kanalengids worden vermeld." +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" +msgstr "Of geef de naam op van een nieuwe bladwijzermap" -#: ../../mod/admin.php:486 -msgid "Import Public Streams" -msgstr "Openbare streams importeren" +#: ../../Zotlabs/Module/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "Maximum toegestane dagelijkse registraties op deze $Projectname-hub bereikt. Probeer het morgen (UTC) nogmaals." -#: ../../mod/admin.php:486 +#: ../../Zotlabs/Module/Register.php:55 msgid "" -"Import and allow access to public content pulled from other sites. Warning: " -"this content is unmoderated." -msgstr "Toegang verlenen tot openbare berichten die vanuit andere hubs worden geïmporteerd. Waarschuwing: de inhoud van deze berichten wordt niet gemodereerd." +"Please indicate acceptance of the Terms of Service. Registration failed." +msgstr "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden." -#: ../../mod/admin.php:487 -msgid "login on Homepage" -msgstr "Inlogformulier op de homepagina" +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "Wachtwoorden komen niet met elkaar overeen." -#: ../../mod/admin.php:487 +#: ../../Zotlabs/Module/Register.php:131 msgid "" -"Present a login box to visitors on the home page if no other content has " -"been configured." -msgstr "Toon een inlogformulier voor bezoekers op de homepagina wanneer geen andere inhoud is geconfigureerd. " - -#: ../../mod/admin.php:489 -msgid "Directory Server URL" -msgstr "Server-URL voor de kanalengids" - -#: ../../mod/admin.php:489 -msgid "Default directory server" -msgstr "Standaardserver voor de kanalengids" +"Registration successful. Please check your email for validation " +"instructions." +msgstr "Registratie geslaagd. Controleer je e-mail voor instructies." -#: ../../mod/admin.php:491 -msgid "Proxy user" -msgstr "Gebruikersnaam proxy" +#: ../../Zotlabs/Module/Register.php:137 +msgid "Your registration is pending approval by the site owner." +msgstr "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze $Projectname-hub." -#: ../../mod/admin.php:492 -msgid "Proxy URL" -msgstr "Proxy-URL" +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." +msgstr "Jouw registratie kan niet verwerkt worden." -#: ../../mod/admin.php:493 -msgid "Network timeout" -msgstr "Netwerktimeout" +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." +msgstr "Registreren van nieuwe accounts is op deze hub uitgeschakeld." -#: ../../mod/admin.php:493 -msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." -msgstr "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)" +#: ../../Zotlabs/Module/Register.php:193 +msgid "Registration on this hub is by approval only." +msgstr "Registraties op deze hub moeten eerst worden goedgekeurd." -#: ../../mod/admin.php:494 -msgid "Delivery interval" -msgstr "Afleveringsinterval" +#: ../../Zotlabs/Module/Register.php:194 +msgid "Register at another affiliated hub." +msgstr "Registreer op een andere hub." -#: ../../mod/admin.php:494 +#: ../../Zotlabs/Module/Register.php:204 msgid "" -"Delay background delivery processes by this many seconds to reduce system " -"load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " -"for large dedicated servers." -msgstr "Vertraag de achtergrondprocessen voor het afleveren met een aantal seconden om de systeembelasting te verminderen. Aanbevolen: 4-5 voor shared hosts, 2-3 voor virtual private servers (VPS) en 0-1 voor grote dedicated servers." +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." +msgstr "Deze $Projectname-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals." -#: ../../mod/admin.php:495 -msgid "Deliveries per process" -msgstr "Leveringen per serverproces" +#: ../../Zotlabs/Module/Register.php:215 +msgid "Terms of Service" +msgstr "Gebruiksvoorwaarden" -#: ../../mod/admin.php:495 -msgid "" -"Number of deliveries to attempt in a single operating system process. Adjust" -" if necessary to tune system performance. Recommend: 1-5." -msgstr "Aantal leveringen die aan één serverproces worden meegegeven. Pas dit aan wanneer het nodig is om systeemprestaties te verbeteren. Aangeraden: 1-5" +#: ../../Zotlabs/Module/Register.php:221 +#, php-format +msgid "I accept the %s for this website" +msgstr "Ik accepteer de %s van deze $Projectname-hub" -#: ../../mod/admin.php:496 -msgid "Poll interval" -msgstr "Poll-interval" +#: ../../Zotlabs/Module/Register.php:223 +#, php-format +msgid "I am over 13 years of age and accept the %s for this website" +msgstr "Ik ben 13 jaar of ouder en accepteer de %s van deze $Projectname-hub" -#: ../../mod/admin.php:496 -msgid "" -"Delay background polling processes by this many seconds to reduce system " -"load. If 0, use delivery interval." -msgstr "De achtergrondprocessen voor het afleveren met zoveel seconden vertragen om de systeembelasting te verminderen. 0 om de afleveringsinterval te gebruiken." +#: ../../Zotlabs/Module/Register.php:227 +msgid "Your email address" +msgstr "Jouw e-mailadres" -#: ../../mod/admin.php:497 -msgid "Maximum Load Average" -msgstr "Maximaal gemiddelde systeembelasting" +#: ../../Zotlabs/Module/Register.php:228 +msgid "Choose a password" +msgstr "Geef een wachtwoord op" -#: ../../mod/admin.php:497 -msgid "" -"Maximum system load before delivery and poll processes are deferred - " -"default 50." -msgstr "Maximale systeembelasting voordat de afleverings- en polllingsprocessen worden uitgesteld. Standaard is 50." +#: ../../Zotlabs/Module/Register.php:229 +msgid "Please re-enter your password" +msgstr "Geef het wachtwoord opnieuw op" -#: ../../mod/admin.php:498 -msgid "Expiration period in days for imported (grid/network) content" -msgstr "Aantal dagen waarna geïmporteerde inhoud uit iemands grid/netwerk-pagina wordt verwijderd." +#: ../../Zotlabs/Module/Register.php:230 +msgid "Please enter your invitation code" +msgstr "Vul jouw uitnodigingscode in" -#: ../../mod/admin.php:498 -msgid "0 for no expiration of imported content" -msgstr "Dit geldt alleen voor inhoud van andere kanalen, dus niet voor iemands eigen kanaal. 0 voor het niet verwijderen van geïmporteerde inhoud." +#: ../../Zotlabs/Module/Register.php:236 +msgid "no" +msgstr "Nee" -#: ../../mod/admin.php:635 ../../mod/admin.php:636 ../../mod/settings.php:729 -msgid "Off" -msgstr "Uit" +#: ../../Zotlabs/Module/Register.php:236 +msgid "yes" +msgstr "Ja" -#: ../../mod/admin.php:635 ../../mod/admin.php:636 ../../mod/settings.php:729 -msgid "On" -msgstr "Aan" +#: ../../Zotlabs/Module/Register.php:250 +msgid "Membership on this site is by invitation only." +msgstr "Registreren op deze $Projectname-hub kan alleen op uitnodiging." -#: ../../mod/admin.php:636 -#, php-format -msgid "Lock feature %s" -msgstr " Vergrendel de functie '%s'" +#: ../../Zotlabs/Module/Register.php:262 ../../include/nav.php:148 +#: ../../boot.php:1584 +msgid "Register" +msgstr "Registreren" -#: ../../mod/admin.php:644 -msgid "Manage Additional Features" -msgstr "Beheer - Extra functies" +#: ../../Zotlabs/Module/Register.php:262 +msgid "Proceed to create your first channel" +msgstr "Volgende stap: aanmaken van jouw eerste kanaal" -#: ../../mod/admin.php:661 -msgid "No server found" -msgstr "Geen hub gevonden" +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." +msgstr "Inloggen." -#: ../../mod/admin.php:668 ../../mod/admin.php:998 -msgid "ID" -msgstr "ID" +#: ../../Zotlabs/Module/Removeaccount.php:34 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd." -#: ../../mod/admin.php:668 -msgid "for channel" -msgstr "voor kanaal" +#: ../../Zotlabs/Module/Removeaccount.php:61 +msgid "Remove This Account" +msgstr "Verwijder dit account" -#: ../../mod/admin.php:668 -msgid "on server" -msgstr "op hub" +#: ../../Zotlabs/Module/Removeaccount.php:62 +#: ../../Zotlabs/Module/Removeme.php:62 +msgid "WARNING: " +msgstr "WAARSCHUWING: " -#: ../../mod/admin.php:668 ../../mod/connections.php:266 -msgid "Status" -msgstr "Status" +#: ../../Zotlabs/Module/Removeaccount.php:62 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " +msgstr "Dit account en al zijn kanalen worden volledig uit het $Projectname-netwerk verwijderd." -#: ../../mod/admin.php:670 -msgid "Server" -msgstr "Hubbeheer" +#: ../../Zotlabs/Module/Removeaccount.php:62 +#: ../../Zotlabs/Module/Removeme.php:62 +msgid "This action is permanent and can not be undone!" +msgstr "Deze handeling is van permanente aard en kan niet meer worden teruggedraaid!" -#: ../../mod/admin.php:712 -msgid "Block public" -msgstr "Openbare toegang blokkeren" +#: ../../Zotlabs/Module/Removeaccount.php:63 +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "Please enter your password for verification:" +msgstr "Vul je wachtwoord in ter verificatie:" -#: ../../mod/admin.php:712 +#: ../../Zotlabs/Module/Removeaccount.php:64 msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." -msgstr "Vink dit aan om alle normaliter openbare persoonlijke pagina's op deze hub alleen toegankelijk te maken voor leden die zich hebben geauthenticeerd." - -#: ../../mod/admin.php:713 -msgid "Allow communications only from these sites" -msgstr "Alleen communicatie met deze hubs toestaan" +"Remove this account, all its channels and all its channel clones from the " +"network" +msgstr "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het $Projectname-netwerk verwijderen" -#: ../../mod/admin.php:713 +#: ../../Zotlabs/Module/Removeaccount.php:64 msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" -msgstr "Eén hub per regel. Laat leeg om communicatie standaard met alle hubs toe te staan" +"By default only the instances of the channels located on this hub will be " +"removed from the network" +msgstr "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het $Projectname-netwerk verwijderd" -#: ../../mod/admin.php:714 -msgid "Block communications from these sites" -msgstr "Communicatie met deze hubs blokkeren" +#: ../../Zotlabs/Module/Removeaccount.php:65 +#: ../../Zotlabs/Module/Settings.php:703 +msgid "Remove Account" +msgstr "Account verwijderen" -#: ../../mod/admin.php:715 -msgid "Allow communications only from these channels" -msgstr "Sta alleen communicatie toe met deze kanalen" - -#: ../../mod/admin.php:715 +#: ../../Zotlabs/Module/Removeme.php:33 msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by " -"default" -msgstr "Eén kanaal (hash) per regel. Laat leeg om communicatie standaard met alle kanalen toe te staan" +"Channel removals are not allowed within 48 hours of changing the account " +"password." +msgstr "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd." -#: ../../mod/admin.php:716 -msgid "Block communications from these channels" -msgstr "Communicatie met deze kanalen blokkeren" +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "Remove This Channel" +msgstr "Verwijder dit kanaal" -#: ../../mod/admin.php:717 -msgid "Allow embedded HTML content only from these domains" -msgstr "Alleen ingesloten (embedded) HTML vanaf deze domeinen toestaan" +#: ../../Zotlabs/Module/Removeme.php:62 +msgid "This channel will be completely removed from the network. " +msgstr "Dit kanaal wordt volledig uit het $Projectname-netwerk verwijderd." -#: ../../mod/admin.php:717 -msgid "One site per line. Leave empty to allow from any site by default" -msgstr "Eén per regel. Laat leeg om standaard vanaf elk domein toe te staan" +#: ../../Zotlabs/Module/Removeme.php:64 +msgid "Remove this channel and all its clones from the network" +msgstr "Dit kanaal en alle klonen hiervan uit het $Projectname-netwerk verwijderen" -#: ../../mod/admin.php:718 -msgid "Block embedded HTML from these domains" -msgstr "Ingesloten (embedded) HTML vanaf deze domeinen blokkeren" +#: ../../Zotlabs/Module/Removeme.php:64 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" +msgstr "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het $Projectname-netwerk verwijderd" -#: ../../mod/admin.php:720 -msgid "Cooperative embed security" -msgstr "Met elkaar ingesloten (embedded) HTML beveiligen" +#: ../../Zotlabs/Module/Removeme.php:65 ../../Zotlabs/Module/Settings.php:1122 +msgid "Remove Channel" +msgstr "Kanaal verwijderen" -#: ../../mod/admin.php:720 -msgid "Enable to share embed security with other compatible sites/hubs" -msgstr "Beveiliging omtrent ingesloten (embedded) HTML met andere compatibele hubs delen." +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." +msgstr "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten." -#: ../../mod/admin.php:735 -msgid "Update has been marked successful" -msgstr "Update is als succesvol gemarkeerd" +#: ../../Zotlabs/Module/Rmagic.php:44 +msgid "The error message was:" +msgstr "Het foutbericht was:" -#: ../../mod/admin.php:745 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "Uitvoeren van %s is mislukt. Controleer systeemlogboek." +#: ../../Zotlabs/Module/Rmagic.php:48 +msgid "Authentication failed." +msgstr "Authenticatie mislukt." -#: ../../mod/admin.php:748 -#, php-format -msgid "Update %s was successfully applied." -msgstr "Update %s was geslaagd." +#: ../../Zotlabs/Module/Rmagic.php:88 +msgid "Remote Authentication" +msgstr "Authenticatie op afstand" + +#: ../../Zotlabs/Module/Rmagic.php:89 +msgid "Enter your channel address (e.g. channel@example.com)" +msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" + +#: ../../Zotlabs/Module/Rmagic.php:90 +msgid "Authenticate" +msgstr "Authenticeren" -#: ../../mod/admin.php:752 +#: ../../Zotlabs/Module/Search.php:216 #, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." -msgstr "Update %s gaf geen melding. Het is daarom niet bekend of deze geslaagd is." +msgid "Items tagged with: %s" +msgstr "Items getagd met %s" -#: ../../mod/admin.php:755 +#: ../../Zotlabs/Module/Search.php:218 #, php-format -msgid "Update function %s could not be found." -msgstr "Update-functie %s kon niet gevonden worden." +msgid "Search results for: %s" +msgstr "Zoekresultaten voor %s" -#: ../../mod/admin.php:771 -msgid "No failed updates." -msgstr "Geen mislukte updates." +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." +msgstr "Geen abonnementsbeperkingen gevonden." -#: ../../mod/admin.php:775 -msgid "Failed Updates" -msgstr "Mislukte updates" +#: ../../Zotlabs/Module/Settings.php:67 +msgid "Name is required" +msgstr "Naam is vereist" -#: ../../mod/admin.php:777 -msgid "Mark success (if update was manually applied)" -msgstr "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)" +#: ../../Zotlabs/Module/Settings.php:71 +msgid "Key and Secret are required" +msgstr "Key en secret zijn vereist" -#: ../../mod/admin.php:778 -msgid "Attempt to execute this update step automatically" -msgstr "Poging om deze stap van de update automatisch uit te voeren." +#: ../../Zotlabs/Module/Settings.php:75 ../../Zotlabs/Module/Settings.php:614 +#: ../../include/apps.php:252 +msgid "Update" +msgstr "Bijwerken" -#: ../../mod/admin.php:809 -msgid "Queue Statistics" -msgstr "Wachtrij-statistieken" +#: ../../Zotlabs/Module/Settings.php:223 +msgid "Not valid email." +msgstr "Geen geldig e-mailadres." -#: ../../mod/admin.php:810 -msgid "Total Entries" -msgstr "Aantal vermeldingen" +#: ../../Zotlabs/Module/Settings.php:226 +msgid "Protected email address. Cannot change to that email." +msgstr "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken." -#: ../../mod/admin.php:811 -msgid "Priority" -msgstr "Prioriteit" +#: ../../Zotlabs/Module/Settings.php:235 +msgid "System failure storing new email. Please try again." +msgstr "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer." -#: ../../mod/admin.php:812 -msgid "Destination URL" -msgstr "Doel-URL" +#: ../../Zotlabs/Module/Settings.php:252 +msgid "Password verification failed." +msgstr "Wachtwoordverificatie mislukt" -#: ../../mod/admin.php:813 -msgid "Mark hub permanently offline" -msgstr "Hub als permanent offline markeren" +#: ../../Zotlabs/Module/Settings.php:259 +msgid "Passwords do not match. Password unchanged." +msgstr "Wachtwoorden komen niet overeen. Wachtwoord onveranderd." -#: ../../mod/admin.php:814 -msgid "Empty queue for this hub" -msgstr "Berichtenwachtrij voor deze hub legen" +#: ../../Zotlabs/Module/Settings.php:263 +msgid "Empty passwords are not allowed. Password unchanged." +msgstr "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd." -#: ../../mod/admin.php:815 -msgid "Last known contact" -msgstr "Voor het laatst contact" +#: ../../Zotlabs/Module/Settings.php:277 +msgid "Password changed." +msgstr "Wachtwoord veranderd." -#: ../../mod/admin.php:851 -#, php-format -msgid "%s account blocked/unblocked" -msgid_plural "%s account blocked/unblocked" -msgstr[0] "%s account geblokkeerd/gedeblokkeerd" -msgstr[1] "%s accounts geblokkeerd/gedeblokkeerd" +#: ../../Zotlabs/Module/Settings.php:279 +msgid "Password update failed. Please try again." +msgstr "Bijwerken wachtwoord mislukt. Probeer opnieuw." -#: ../../mod/admin.php:859 -#, php-format -msgid "%s account deleted" -msgid_plural "%s accounts deleted" -msgstr[0] "%s account verwijderd" -msgstr[1] "%s accounts verwijderd" +#: ../../Zotlabs/Module/Settings.php:523 +msgid "Settings updated." +msgstr "Instellingen bijgewerkt." -#: ../../mod/admin.php:895 -msgid "Account not found" -msgstr "Account niet gevonden" +#: ../../Zotlabs/Module/Settings.php:587 ../../Zotlabs/Module/Settings.php:613 +#: ../../Zotlabs/Module/Settings.php:649 +msgid "Add application" +msgstr "Applicatie toevoegen" -#: ../../mod/admin.php:907 -#, php-format -msgid "Account '%s' deleted" -msgstr "Account '%s' verwijderd" +#: ../../Zotlabs/Module/Settings.php:590 +msgid "Name of application" +msgstr "Naam van applicatie" -#: ../../mod/admin.php:915 -#, php-format -msgid "Account '%s' blocked" -msgstr "Account '%s' geblokkeerd" +#: ../../Zotlabs/Module/Settings.php:591 ../../Zotlabs/Module/Settings.php:617 +msgid "Consumer Key" +msgstr "Consumer key" -#: ../../mod/admin.php:923 -#, php-format -msgid "Account '%s' unblocked" -msgstr "Account '%s' gedeblokkeerd" +#: ../../Zotlabs/Module/Settings.php:591 ../../Zotlabs/Module/Settings.php:592 +msgid "Automatically generated - change if desired. Max length 20" +msgstr "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20" -#: ../../mod/admin.php:985 ../../mod/admin.php:997 -msgid "Users" -msgstr "Accounts" +#: ../../Zotlabs/Module/Settings.php:592 ../../Zotlabs/Module/Settings.php:618 +msgid "Consumer Secret" +msgstr "Consumer secret" -#: ../../mod/admin.php:987 ../../mod/admin.php:1151 -msgid "select all" -msgstr "alles selecteren" +#: ../../Zotlabs/Module/Settings.php:593 ../../Zotlabs/Module/Settings.php:619 +msgid "Redirect" +msgstr "Redirect/doorverwijzing" -#: ../../mod/admin.php:988 -msgid "User registrations waiting for confirm" -msgstr "Accounts die op goedkeuring wachten" +#: ../../Zotlabs/Module/Settings.php:593 +msgid "" +"Redirect URI - leave blank unless your application specifically requires " +"this" +msgstr "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist" -#: ../../mod/admin.php:989 -msgid "Request date" -msgstr "Tijd/datum verzoek" +#: ../../Zotlabs/Module/Settings.php:594 ../../Zotlabs/Module/Settings.php:620 +msgid "Icon url" +msgstr "Pictogram-URL" -#: ../../mod/admin.php:990 -msgid "No registrations." -msgstr "Geen verzoeken." +#: ../../Zotlabs/Module/Settings.php:594 +msgid "Optional" +msgstr "Optioneel" -#: ../../mod/admin.php:991 ../../mod/connections.php:271 -msgid "Approve" -msgstr "Goedkeuren" +#: ../../Zotlabs/Module/Settings.php:605 +msgid "Application not found." +msgstr "Applicatie niet gevonden." -#: ../../mod/admin.php:992 -msgid "Deny" -msgstr "Afkeuren" +#: ../../Zotlabs/Module/Settings.php:648 +msgid "Connected Apps" +msgstr "Verbonden applicaties" -#: ../../mod/admin.php:994 ../../mod/connedit.php:537 -msgid "Block" -msgstr "Blokkeren" +#: ../../Zotlabs/Module/Settings.php:652 +msgid "Client key starts with" +msgstr "Client key begint met" -#: ../../mod/admin.php:995 ../../mod/connedit.php:537 -msgid "Unblock" -msgstr "Deblokkeren" +#: ../../Zotlabs/Module/Settings.php:653 +msgid "No name" +msgstr "Geen naam" -#: ../../mod/admin.php:998 -msgid "Register date" -msgstr "Geregistreerd" +#: ../../Zotlabs/Module/Settings.php:654 +msgid "Remove authorization" +msgstr "Autorisatie verwijderen" -#: ../../mod/admin.php:998 -msgid "Last login" -msgstr "Laatste keer ingelogd" +#: ../../Zotlabs/Module/Settings.php:667 +msgid "No feature settings configured" +msgstr "Geen plugin-instellingen aanwezig" -#: ../../mod/admin.php:998 -msgid "Expires" -msgstr "Verloopt" +#: ../../Zotlabs/Module/Settings.php:674 +msgid "Feature/Addon Settings" +msgstr "Plugin-instellingen" -#: ../../mod/admin.php:998 -msgid "Service Class" -msgstr "Abonnementen" +#: ../../Zotlabs/Module/Settings.php:697 +msgid "Account Settings" +msgstr "Account-instellingen" -#: ../../mod/admin.php:1000 -msgid "" -"Selected accounts will be deleted!\\n\\nEverything these accounts had posted" -" on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Geselecteerde accounts (met bijbehorende kanalen) worden verwijderd!\\n\\nAlles wat deze accounts op deze hub hebben gepubliceerd wordt definitief verwijderd!\\n\\Weet je het zeker?" +#: ../../Zotlabs/Module/Settings.php:698 +msgid "Current Password" +msgstr "Huidig wachtwoord" -#: ../../mod/admin.php:1001 -msgid "" -"The account {0} will be deleted!\\n\\nEverything this account has posted on " -"this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Account {0} (met bijbehorende kanalen) wordt verwijderd !\\n\\nAlles wat dit account op deze hub heeft gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" +#: ../../Zotlabs/Module/Settings.php:699 +msgid "Enter New Password" +msgstr "Nieuw wachtwoord invoeren" -#: ../../mod/admin.php:1037 -#, php-format -msgid "%s channel censored/uncensored" -msgid_plural "%s channels censored/uncensored" -msgstr[0] "%s kanaal gecensureerd/ongecensureerd" -msgstr[1] "%s kanalen gecensureerd/ongecensureerd" +#: ../../Zotlabs/Module/Settings.php:700 +msgid "Confirm New Password" +msgstr "Nieuw wachtwoord bevestigen" -#: ../../mod/admin.php:1046 -#, php-format -msgid "%s channel code allowed/disallowed" -msgid_plural "%s channels code allowed/disallowed" -msgstr[0] "Scripts toegestaan/niet toegestaan voor %s kanaal" -msgstr[1] "Scripts toegestaan/niet toegestaan voor %s kanalen" +#: ../../Zotlabs/Module/Settings.php:700 +msgid "Leave password fields blank unless changing" +msgstr "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen" -#: ../../mod/admin.php:1053 -#, php-format -msgid "%s channel deleted" -msgid_plural "%s channels deleted" -msgstr[0] "%s kanaal verwijderd" -msgstr[1] "%s kanalen verwijderd" +#: ../../Zotlabs/Module/Settings.php:702 +#: ../../Zotlabs/Module/Settings.php:1039 +msgid "Email Address:" +msgstr "E-mailadres:" -#: ../../mod/admin.php:1073 -msgid "Channel not found" -msgstr "Kanaal niet gevonden" +#: ../../Zotlabs/Module/Settings.php:704 +msgid "Remove this account including all its channels" +msgstr "Dit account en al zijn kanalen verwijderen" -#: ../../mod/admin.php:1084 -#, php-format -msgid "Channel '%s' deleted" -msgstr "Kanaal '%s' verwijderd" +#: ../../Zotlabs/Module/Settings.php:727 +msgid "Additional Features" +msgstr "Extra functies" -#: ../../mod/admin.php:1096 -#, php-format -msgid "Channel '%s' censored" -msgstr "Kanaal '%s' gecensureerd" +#: ../../Zotlabs/Module/Settings.php:751 +msgid "Connector Settings" +msgstr "Instellingen externe koppelingen" -#: ../../mod/admin.php:1096 -#, php-format -msgid "Channel '%s' uncensored" -msgstr "Kanaal '%s' ongecensureerd" +#: ../../Zotlabs/Module/Settings.php:790 +msgid "No special theme for mobile devices" +msgstr "Geen speciaal thema voor mobiele apparaten" -#: ../../mod/admin.php:1107 +#: ../../Zotlabs/Module/Settings.php:793 #, php-format -msgid "Channel '%s' code allowed" -msgstr "Scripts toegestaan voor kanaal '%s'" +msgid "%s - (Experimental)" +msgstr "%s - (experimenteel)" -#: ../../mod/admin.php:1107 -#, php-format -msgid "Channel '%s' code disallowed" -msgstr "Scripts niet toegestaan voor kanaal '%s'" - -#: ../../mod/admin.php:1153 -msgid "Censor" -msgstr "Censureren" +#: ../../Zotlabs/Module/Settings.php:835 +msgid "Display Settings" +msgstr "Weergave-instellingen" -#: ../../mod/admin.php:1154 -msgid "Uncensor" -msgstr "Niet censureren" +#: ../../Zotlabs/Module/Settings.php:836 +msgid "Theme Settings" +msgstr "Thema-instellingen" -#: ../../mod/admin.php:1155 -msgid "Allow Code" -msgstr "Scripts toestaan" +#: ../../Zotlabs/Module/Settings.php:837 +msgid "Custom Theme Settings" +msgstr "Handmatige thema-instellingen" -#: ../../mod/admin.php:1156 -msgid "Disallow Code" -msgstr "Scripts niet toestaan" +#: ../../Zotlabs/Module/Settings.php:838 +msgid "Content Settings" +msgstr "Inhoudsinstellingen" -#: ../../mod/admin.php:1158 -msgid "UID" -msgstr "UID" +#: ../../Zotlabs/Module/Settings.php:844 +msgid "Display Theme:" +msgstr "Gebruik thema:" -#: ../../mod/admin.php:1158 ../../mod/profiles.php:465 ../../mod/locs.php:114 -msgid "Address" -msgstr "Kanaaladres" +#: ../../Zotlabs/Module/Settings.php:845 +msgid "Mobile Theme:" +msgstr "Mobiel thema:" -#: ../../mod/admin.php:1160 -msgid "" -"Selected channels will be deleted!\\n\\nEverything that was posted in these " -"channels on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Geselecteerde kanalen worden verwijderd!\\n\\nAlles wat in deze kanalen op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" +#: ../../Zotlabs/Module/Settings.php:846 +msgid "Preload images before rendering the page" +msgstr "Afbeeldingen laden voordat de pagina wordt weergegeven" -#: ../../mod/admin.php:1161 +#: ../../Zotlabs/Module/Settings.php:846 msgid "" -"The channel {0} will be deleted!\\n\\nEverything that was posted in this " -"channel on this site will be permanently deleted!\\n\\nAre you sure?" -msgstr "Kanaal {0} wordt verwijderd!\\n\\nAlles wat in dit kanaal op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?" - -#: ../../mod/admin.php:1218 -#, php-format -msgid "Plugin %s disabled." -msgstr "Plugin %s uitgeschakeld." +"The subjective page load time will be longer but the page will be ready when" +" displayed" +msgstr "De laadtijd van een pagina lijkt langer, maar de pagina is wel meteen helemaal geladen wanneer deze wordt weergeven" -#: ../../mod/admin.php:1222 -#, php-format -msgid "Plugin %s enabled." -msgstr "Plugin %s ingeschakeld" +#: ../../Zotlabs/Module/Settings.php:847 +msgid "Enable user zoom on mobile devices" +msgstr "Inzoomen op smartphones en tablets toestaan" -#: ../../mod/admin.php:1232 ../../mod/admin.php:1458 -msgid "Disable" -msgstr "Uitschakelen" +#: ../../Zotlabs/Module/Settings.php:848 +msgid "Update browser every xx seconds" +msgstr "Ververs de webbrowser om de zoveel seconde" -#: ../../mod/admin.php:1235 ../../mod/admin.php:1460 -msgid "Enable" -msgstr "Inschakelen" +#: ../../Zotlabs/Module/Settings.php:848 +msgid "Minimum of 10 seconds, no maximum" +msgstr "Minimaal 10 seconde, geen maximum" -#: ../../mod/admin.php:1265 ../../mod/admin.php:1487 -msgid "Toggle" -msgstr "Omschakelen" +#: ../../Zotlabs/Module/Settings.php:849 +msgid "Maximum number of conversations to load at any time:" +msgstr "Maximaal aantal conversaties die per keer geladen worden:" -#: ../../mod/admin.php:1273 ../../mod/admin.php:1497 -msgid "Author: " -msgstr "Auteur: " +#: ../../Zotlabs/Module/Settings.php:849 +msgid "Maximum of 100 items" +msgstr "Maximaal 100 conversaties" -#: ../../mod/admin.php:1274 ../../mod/admin.php:1498 -msgid "Maintainer: " -msgstr "Beheerder: " +#: ../../Zotlabs/Module/Settings.php:850 +msgid "Show emoticons (smilies) as images" +msgstr "Toon emoticons (smilies) als afbeeldingen" -#: ../../mod/admin.php:1275 -msgid "Minimum project version: " -msgstr "Minimum versie Hubzilla: " +#: ../../Zotlabs/Module/Settings.php:851 +msgid "Link post titles to source" +msgstr "Berichtkoppen naar originele locatie linken" -#: ../../mod/admin.php:1276 -msgid "Maximum project version: " -msgstr "Maximum versie Hubzilla:" +#: ../../Zotlabs/Module/Settings.php:852 +msgid "System Page Layout Editor - (advanced)" +msgstr "Lay-out bewerken van systeempagina's (geavanceerd)" -#: ../../mod/admin.php:1277 -msgid "Minimum PHP version: " -msgstr "Minimum versie PHP: " +#: ../../Zotlabs/Module/Settings.php:855 +msgid "Use blog/list mode on channel page" +msgstr "Gebruik blog/lijst-modus op kanaalpagina" -#: ../../mod/admin.php:1278 -msgid "Requires: " -msgstr "Vereist: " +#: ../../Zotlabs/Module/Settings.php:855 ../../Zotlabs/Module/Settings.php:856 +msgid "(comments displayed separately)" +msgstr "(reacties worden afzonderlijk weergeven)" -#: ../../mod/admin.php:1279 ../../mod/admin.php:1330 -msgid "Disabled - version incompatibility" -msgstr "Uitgeschakeld - versie is incompatibel" +#: ../../Zotlabs/Module/Settings.php:856 +msgid "Use blog/list mode on grid page" +msgstr "Gebruik blog/lijst-modus op gridpagina" -#: ../../mod/admin.php:1423 -msgid "No themes found." -msgstr "Geen thema's gevonden" +#: ../../Zotlabs/Module/Settings.php:857 +msgid "Channel page max height of content (in pixels)" +msgstr "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)" -#: ../../mod/admin.php:1479 -msgid "Screenshot" -msgstr "Schermafdruk" +#: ../../Zotlabs/Module/Settings.php:857 ../../Zotlabs/Module/Settings.php:858 +msgid "click to expand content exceeding this height" +msgstr "klik om inhoud uit te klappen die deze hoogte overschrijdt" -#: ../../mod/admin.php:1525 -msgid "[Experimental]" -msgstr "[Experimenteel]" +#: ../../Zotlabs/Module/Settings.php:858 +msgid "Grid page max height of content (in pixels)" +msgstr "Maximale hoogte berichtinhoud op gridpagina (in pixels)" -#: ../../mod/admin.php:1526 -msgid "[Unsupported]" -msgstr "[Niet ondersteund]" +#: ../../Zotlabs/Module/Settings.php:892 +msgid "Nobody except yourself" +msgstr "Niemand, behalve jezelf" -#: ../../mod/admin.php:1550 -msgid "Log settings updated." -msgstr "Logboek-instellingen bijgewerkt." +#: ../../Zotlabs/Module/Settings.php:893 +msgid "Only those you specifically allow" +msgstr "Alleen connecties met uitdrukkelijke toestemming" -#: ../../mod/admin.php:1607 -msgid "Clear" -msgstr "Leegmaken" +#: ../../Zotlabs/Module/Settings.php:894 +msgid "Approved connections" +msgstr "Geaccepteerde connecties" -#: ../../mod/admin.php:1613 -msgid "Debugging" -msgstr "Debuggen" +#: ../../Zotlabs/Module/Settings.php:895 +msgid "Any connections" +msgstr "Alle connecties" -#: ../../mod/admin.php:1614 -msgid "Log file" -msgstr "Logbestand" +#: ../../Zotlabs/Module/Settings.php:896 +msgid "Anybody on this website" +msgstr "Iedereen op deze hub" -#: ../../mod/admin.php:1614 -msgid "" -"Must be writable by web server. Relative to your Red top-level directory." -msgstr "Moet door de webserver beschrijfbaar zijn. Relatief ten opzichte van de bovenste map van je $Projectname-installatie." +#: ../../Zotlabs/Module/Settings.php:897 +msgid "Anybody in this network" +msgstr "Iedereen in dit netwerk" -#: ../../mod/admin.php:1615 -msgid "Log level" -msgstr "Logniveau" +#: ../../Zotlabs/Module/Settings.php:898 +msgid "Anybody authenticated" +msgstr "Geauthenticeerd" -#: ../../mod/admin.php:1682 -msgid "New Profile Field" -msgstr "Nieuw profielveld" +#: ../../Zotlabs/Module/Settings.php:899 +msgid "Anybody on the internet" +msgstr "Iedereen op het internet" -#: ../../mod/admin.php:1683 ../../mod/admin.php:1703 -msgid "Field nickname" -msgstr "Bijnaam voor veld" +#: ../../Zotlabs/Module/Settings.php:974 +msgid "Publish your default profile in the network directory" +msgstr "Publiceer je standaardprofiel in de kanalengids" -#: ../../mod/admin.php:1683 ../../mod/admin.php:1703 -msgid "System name of field" -msgstr "Systeemnaam voor veld" +#: ../../Zotlabs/Module/Settings.php:979 +msgid "Allow us to suggest you as a potential friend to new members?" +msgstr "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen" -#: ../../mod/admin.php:1684 ../../mod/admin.php:1704 -msgid "Input type" -msgstr "Invoertype" +#: ../../Zotlabs/Module/Settings.php:988 +msgid "Your channel address is" +msgstr "Jouw kanaaladres is" -#: ../../mod/admin.php:1685 ../../mod/admin.php:1705 -msgid "Field Name" -msgstr "Veldnaam" +#: ../../Zotlabs/Module/Settings.php:1030 +msgid "Channel Settings" +msgstr "Kanaal-instellingen" -#: ../../mod/admin.php:1685 ../../mod/admin.php:1705 -msgid "Label on profile pages" -msgstr "Tekstlabel voor op profielpagina's" +#: ../../Zotlabs/Module/Settings.php:1037 +msgid "Basic Settings" +msgstr "Basis-instellingen" -#: ../../mod/admin.php:1686 ../../mod/admin.php:1706 -msgid "Help text" -msgstr "Helptekst" +#: ../../Zotlabs/Module/Settings.php:1038 ../../include/identity.php:1279 +msgid "Full Name:" +msgstr "Volledige naam:" -#: ../../mod/admin.php:1686 ../../mod/admin.php:1706 -msgid "Additional info (optional)" -msgstr "Extra informatie (optioneel)" +#: ../../Zotlabs/Module/Settings.php:1040 +msgid "Your Timezone:" +msgstr "Jouw tijdzone:" -#: ../../mod/admin.php:1696 -msgid "Field definition not found" -msgstr "Velddefinitie niet gevonden" +#: ../../Zotlabs/Module/Settings.php:1041 +msgid "Default Post Location:" +msgstr "Standaardlocatie bericht:" -#: ../../mod/admin.php:1702 -msgid "Edit Profile Field" -msgstr "Profielveld bewerken" +#: ../../Zotlabs/Module/Settings.php:1041 +msgid "Geographical location to display on your posts" +msgstr "Geografische locatie die bij het bericht moet worden vermeld" -#: ../../mod/admin.php:1761 -msgid "Basic Profile Fields" -msgstr "Standaard profielvelden" +#: ../../Zotlabs/Module/Settings.php:1042 +msgid "Use Browser Location:" +msgstr "Locatie van webbrowser gebruiken:" -#: ../../mod/admin.php:1762 -msgid "Advanced Profile Fields" -msgstr "Geavanceerde profielvelden" +#: ../../Zotlabs/Module/Settings.php:1044 +msgid "Adult Content" +msgstr "Inhoud voor volwassenen" -#: ../../mod/admin.php:1762 -msgid "(In addition to basic fields)" -msgstr "(als toevoeging op de standaard velden)" +#: ../../Zotlabs/Module/Settings.php:1044 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" +msgstr "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)" -#: ../../mod/admin.php:1764 -msgid "All available fields" -msgstr "Alle beschikbare velden" +#: ../../Zotlabs/Module/Settings.php:1046 +msgid "Security and Privacy Settings" +msgstr "Veiligheids- en privacy-instellingen" -#: ../../mod/admin.php:1765 -msgid "Custom Fields" -msgstr "Extra (handmatig toegevoegde) velden" +#: ../../Zotlabs/Module/Settings.php:1049 +msgid "Your permissions are already configured. Click to view/adjust" +msgstr "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen." -#: ../../mod/admin.php:1769 -msgid "Create Custom Field" -msgstr "Extra velden aanmaken" +#: ../../Zotlabs/Module/Settings.php:1051 +msgid "Hide my online presence" +msgstr "Verberg mijn aanwezigheid" -#: ../../mod/api.php:74 ../../mod/api.php:98 -msgid "Authorize application connection" -msgstr "Geef toestemming voor applicatiekoppeling" +#: ../../Zotlabs/Module/Settings.php:1051 +msgid "Prevents displaying in your profile that you are online" +msgstr "Voorkomt dat op je kanaalpagina te zien valt dat je momenteel op $Projectname aanwezig bent" -#: ../../mod/api.php:75 -msgid "Return to your app and insert this Securty Code:" -msgstr "Ga terug naar je app en voeg deze beveiligingscode in:" +#: ../../Zotlabs/Module/Settings.php:1053 +msgid "Simple Privacy Settings:" +msgstr "Eenvoudige privacy-instellingen:" -#: ../../mod/api.php:85 -msgid "Please login to continue." -msgstr "Inloggen om verder te kunnen gaan." +#: ../../Zotlabs/Module/Settings.php:1054 +msgid "" +"Very Public - extremely permissive (should be used with caution)" +msgstr "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)" -#: ../../mod/api.php:100 +#: ../../Zotlabs/Module/Settings.php:1055 msgid "" -"Do you want to authorize this application to access your posts and contacts," -" and/or create new posts for you?" -msgstr "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?" +"Typical - default public, privacy when desired (similar to social " +"network permissions but with improved privacy)" +msgstr "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)" -#: ../../mod/openid.php:26 -msgid "OpenID protocol error. No ID returned." -msgstr "OpenID-protocolfout. Geen ID terugontvangen." +#: ../../Zotlabs/Module/Settings.php:1056 +msgid "Private - default private, never open or public" +msgstr "Privé (standaard privé en nooit openbaar)" -#: ../../mod/appman.php:28 ../../mod/appman.php:44 -msgid "App installed." -msgstr "App geïnstalleerd" +#: ../../Zotlabs/Module/Settings.php:1057 +msgid "Blocked - default blocked to/from everybody" +msgstr "Geblokkeerd (standaard geblokkeerd naar/van iedereen)" -#: ../../mod/appman.php:37 -msgid "Malformed app." -msgstr "Misvormde app." +#: ../../Zotlabs/Module/Settings.php:1059 +msgid "Allow others to tag your posts" +msgstr "Anderen toestaan om je berichten te taggen" -#: ../../mod/appman.php:80 -msgid "Embed code" -msgstr "Insluitcode" +#: ../../Zotlabs/Module/Settings.php:1059 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" +msgstr "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren" -#: ../../mod/appman.php:86 -msgid "Edit App" -msgstr "App bewerken" +#: ../../Zotlabs/Module/Settings.php:1061 +msgid "Advanced Privacy Settings" +msgstr "Geavanceerde privacy-instellingen" -#: ../../mod/appman.php:86 -msgid "Create App" -msgstr "App maken" +#: ../../Zotlabs/Module/Settings.php:1063 +msgid "Expire other channel content after this many days" +msgstr "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:" -#: ../../mod/appman.php:91 -msgid "Name of app" -msgstr "Naam van app" +#: ../../Zotlabs/Module/Settings.php:1063 +#, php-format +msgid "" +"0 or blank to use the website limit. The website expires after %d days." +msgstr "0 of leeg om het standaard aantal dagen van deze hub te gebruiken. Deze hub laat de inhoud van andere kanalen na %d dagen verlopen." -#: ../../mod/appman.php:92 -msgid "Location (URL) of app" -msgstr "Locatie (URL) van app" +#: ../../Zotlabs/Module/Settings.php:1064 +msgid "Maximum Friend Requests/Day:" +msgstr "Maximum aantal connectieverzoeken per dag:" -#: ../../mod/appman.php:93 ../../mod/events.php:457 ../../mod/rbmark.php:97 -msgid "Description" -msgstr "Omschrijving" +#: ../../Zotlabs/Module/Settings.php:1064 +msgid "May reduce spam activity" +msgstr "Kan eventuele spam verminderen" -#: ../../mod/appman.php:94 -msgid "Photo icon URL" -msgstr "URL van pictogram" +#: ../../Zotlabs/Module/Settings.php:1065 +msgid "Default Post Permissions" +msgstr "Standaard permissies voor nieuwe berichten" -#: ../../mod/appman.php:94 -msgid "80 x 80 pixels - optional" -msgstr "80 x 80 pixels (optioneel)" - -#: ../../mod/appman.php:95 -msgid "Version ID" -msgstr "Versie-ID" +#: ../../Zotlabs/Module/Settings.php:1070 +msgid "Channel permissions category:" +msgstr "Kanaaltype en -permissies:" -#: ../../mod/appman.php:96 -msgid "Price of app" -msgstr "Prijs van de app" +#: ../../Zotlabs/Module/Settings.php:1076 +msgid "Maximum private messages per day from unknown people:" +msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" -#: ../../mod/appman.php:97 -msgid "Location (URL) to purchase app" -msgstr "Locatie (URL) om de app aan te schaffen" +#: ../../Zotlabs/Module/Settings.php:1076 +msgid "Useful to reduce spamming" +msgstr "Kan eventuele spam verminderen" -#: ../../mod/page.php:36 ../../mod/block.php:27 -msgid "Invalid item." -msgstr "Ongeldig item." +#: ../../Zotlabs/Module/Settings.php:1079 +msgid "Notification Settings" +msgstr "Notificatie-instellingen" -#: ../../mod/page.php:52 ../../mod/block.php:39 ../../mod/cal.php:61 -#: ../../mod/wall_upload.php:29 -msgid "Channel not found." -msgstr "Kanaal niet gevonden." +#: ../../Zotlabs/Module/Settings.php:1080 +msgid "By default post a status message when:" +msgstr "Plaats automatisch een statusbericht wanneer:" -#: ../../mod/page.php:129 -msgid "" -"Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod " -"tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam," -" quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo " -"consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse " -"cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat " -"non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." -msgstr "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." +#: ../../Zotlabs/Module/Settings.php:1081 +msgid "accepting a friend request" +msgstr "Een connectieverzoek wordt geaccepteerd" -#: ../../mod/attach.php:9 -msgid "Item not available." -msgstr "Item is niet aanwezig." +#: ../../Zotlabs/Module/Settings.php:1082 +msgid "joining a forum/community" +msgstr "Je lid wordt van een forum/groep" -#: ../../mod/pconfig.php:27 ../../mod/pconfig.php:60 -msgid "This setting requires special processing and editing has been blocked." -msgstr "Deze instelling vereist een speciaal proces en bewerken is geblokkeerd." +#: ../../Zotlabs/Module/Settings.php:1083 +msgid "making an interesting profile change" +msgstr "Er sprake is van een interessante profielwijziging" -#: ../../mod/pconfig.php:49 -msgid "Configuration Editor" -msgstr "Configuratiebewerker" +#: ../../Zotlabs/Module/Settings.php:1084 +msgid "Send a notification email when:" +msgstr "Verzend een notificatie per e-mail wanneer:" -#: ../../mod/pconfig.php:50 -msgid "" -"Warning: Changing some settings could render your channel inoperable. Please" -" leave this page unless you are comfortable with and knowledgeable about how" -" to correctly use this feature." -msgstr "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. " +#: ../../Zotlabs/Module/Settings.php:1085 +msgid "You receive a connection request" +msgstr "Je een connectieverzoek ontvangt" -#: ../../mod/pdledit.php:14 -msgid "Layout updated." -msgstr "Lay-out bijgewerkt." +#: ../../Zotlabs/Module/Settings.php:1086 +msgid "Your connections are confirmed" +msgstr "Jouw connecties zijn bevestigd" -#: ../../mod/pdledit.php:30 ../../mod/pdledit.php:57 -msgid "Edit System Page Description" -msgstr "Systeempagina's bewerken" +#: ../../Zotlabs/Module/Settings.php:1087 +msgid "Someone writes on your profile wall" +msgstr "Iemand iets op jouw kanaal heeft geschreven" -#: ../../mod/pdledit.php:52 -msgid "Layout not found." -msgstr "Lay-out niet gevonden." +#: ../../Zotlabs/Module/Settings.php:1088 +msgid "Someone writes a followup comment" +msgstr "Iemand een reactie schrijft" -#: ../../mod/pdledit.php:58 -msgid "Module Name:" -msgstr "Modulenaam:" +#: ../../Zotlabs/Module/Settings.php:1089 +msgid "You receive a private message" +msgstr "Je een privé-bericht ontvangt" -#: ../../mod/pdledit.php:59 -msgid "Layout Help" -msgstr "Lay-out-hulp" +#: ../../Zotlabs/Module/Settings.php:1090 +msgid "You receive a friend suggestion" +msgstr "Je een kanaalvoorstel ontvangt" -#: ../../mod/editpost.php:20 ../../mod/editblock.php:78 -#: ../../mod/editblock.php:94 ../../mod/editlayout.php:76 -#: ../../mod/editwebpage.php:77 -msgid "Item not found" -msgstr "Item niet gevonden" +#: ../../Zotlabs/Module/Settings.php:1091 +msgid "You are tagged in a post" +msgstr "Je expliciet in een bericht bent genoemd" -#: ../../mod/editpost.php:31 -msgid "Item is not editable" -msgstr "Item is niet te bewerken" +#: ../../Zotlabs/Module/Settings.php:1092 +msgid "You are poked/prodded/etc. in a post" +msgstr "Je bent in een bericht aangestoten/gepord/etc." -#: ../../mod/editpost.php:57 -msgid "Delete item?" -msgstr "Item verwijderen?" +#: ../../Zotlabs/Module/Settings.php:1095 +msgid "Show visual notifications including:" +msgstr "Toon de volgende zichtbare notificaties:" -#: ../../mod/editpost.php:123 ../../mod/editblock.php:146 -#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:186 -msgid "Insert YouTube video" -msgstr "YouTube-video invoegen" +#: ../../Zotlabs/Module/Settings.php:1097 +msgid "Unseen grid activity" +msgstr "Niet bekeken grid-activiteit" -#: ../../mod/editpost.php:124 ../../mod/editblock.php:147 -#: ../../mod/editlayout.php:145 ../../mod/editwebpage.php:187 -msgid "Insert Vorbis [.ogg] video" -msgstr "Vorbis-video [.ogg] invoegen" +#: ../../Zotlabs/Module/Settings.php:1098 +msgid "Unseen channel activity" +msgstr "Niet bekeken kanaal-activiteit" -#: ../../mod/editpost.php:125 ../../mod/editblock.php:148 -#: ../../mod/editlayout.php:146 ../../mod/editwebpage.php:188 -msgid "Insert Vorbis [.ogg] audio" -msgstr "Vorbis-audio [.ogg] invoegen" +#: ../../Zotlabs/Module/Settings.php:1099 +msgid "Unseen private messages" +msgstr "Niet bekeken privéberichten" -#: ../../mod/editpost.php:166 ../../mod/rpost.php:128 -msgid "Edit post" -msgstr "Bericht bewerken" +#: ../../Zotlabs/Module/Settings.php:1099 +#: ../../Zotlabs/Module/Settings.php:1104 +#: ../../Zotlabs/Module/Settings.php:1105 +#: ../../Zotlabs/Module/Settings.php:1106 +msgid "Recommended" +msgstr "Aanbevolen" -#: ../../mod/photos.php:79 -msgid "Page owner information could not be retrieved." -msgstr "Informatie over de pagina-eigenaar werd niet ontvangen." +#: ../../Zotlabs/Module/Settings.php:1100 +msgid "Upcoming events" +msgstr "Aankomende gebeurtenissen" -#: ../../mod/photos.php:100 ../../mod/photos.php:144 -msgid "Album not found." -msgstr "Album niet gevonden." +#: ../../Zotlabs/Module/Settings.php:1101 +msgid "Events today" +msgstr "Gebeurtenissen van vandaag" -#: ../../mod/photos.php:127 -msgid "Delete Album" -msgstr "Verwijder album" +#: ../../Zotlabs/Module/Settings.php:1102 +msgid "Upcoming birthdays" +msgstr "Aankomende verjaardagen" -#: ../../mod/photos.php:148 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "Er bestaan meerdere submappen met deze albumnaam, maar verspreidt over verschillende mappen. Verwijder de gewenste map(pen) met de bestandsbeheerder." +#: ../../Zotlabs/Module/Settings.php:1102 +msgid "Not available in all themes" +msgstr "Niet in alle thema's beschikbaar" -#: ../../mod/photos.php:205 ../../mod/photos.php:1048 -msgid "Delete Photo" -msgstr "Verwijder foto" +#: ../../Zotlabs/Module/Settings.php:1103 +msgid "System (personal) notifications" +msgstr "(Persoonlijke) systeemnotificaties" -#: ../../mod/photos.php:517 ../../mod/directory.php:59 -#: ../../mod/display.php:17 ../../mod/ratings.php:82 ../../mod/search.php:13 -#: ../../mod/viewconnections.php:17 -msgid "Public access denied." -msgstr "Openbare toegang geweigerd." +#: ../../Zotlabs/Module/Settings.php:1104 +msgid "System info messages" +msgstr "Systeemmededelingen" -#: ../../mod/photos.php:528 -msgid "No photos selected" -msgstr "Geen foto's geselecteerd" +#: ../../Zotlabs/Module/Settings.php:1105 +msgid "System critical alerts" +msgstr "Kritische systeemwaarschuwingen" -#: ../../mod/photos.php:577 -msgid "Access to this item is restricted." -msgstr "Toegang tot dit item is beperkt." +#: ../../Zotlabs/Module/Settings.php:1106 +msgid "New connections" +msgstr "Nieuwe connecties" -#: ../../mod/photos.php:616 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt." +#: ../../Zotlabs/Module/Settings.php:1107 +msgid "System Registrations" +msgstr "Nieuwe accountregistraties op deze hub" -#: ../../mod/photos.php:619 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "%1$.2f MB aan foto-opslag gebruikt." +#: ../../Zotlabs/Module/Settings.php:1108 +msgid "" +"Also show new wall posts, private messages and connections under Notices" +msgstr "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties" -#: ../../mod/photos.php:655 -msgid "Upload Photos" -msgstr "Foto's uploaden" +#: ../../Zotlabs/Module/Settings.php:1110 +msgid "Notify me of events this many days in advance" +msgstr "Herinner mij zoveel dagen van te voren aan gebeurtenissen" -#: ../../mod/photos.php:659 -msgid "Enter an album name" -msgstr "Vul een albumnaam in" +#: ../../Zotlabs/Module/Settings.php:1110 +msgid "Must be greater than 0" +msgstr "Moet hoger dan 0 zijn" -#: ../../mod/photos.php:660 -msgid "or select an existing album (doubleclick)" -msgstr "of kies een bestaand album (dubbelklikken)" +#: ../../Zotlabs/Module/Settings.php:1112 +msgid "Advanced Account/Page Type Settings" +msgstr "Instellingen geavanceerd account/paginatype" -#: ../../mod/photos.php:661 -msgid "Create a status post for this upload" -msgstr "Plaats een bericht voor deze upload." +#: ../../Zotlabs/Module/Settings.php:1113 +msgid "Change the behaviour of this account for special situations" +msgstr "Verander het gedrag van dit account voor speciale situaties" -#: ../../mod/photos.php:662 -msgid "Caption (optional):" -msgstr "Bijschrift (optioneel):" +#: ../../Zotlabs/Module/Settings.php:1116 +msgid "" +"Please enable expert mode (in Settings > " +"Additional features) to adjust!" +msgstr "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!" -#: ../../mod/photos.php:663 -msgid "Description (optional):" -msgstr "Omschrijving (optioneel):" +#: ../../Zotlabs/Module/Settings.php:1117 +msgid "Miscellaneous Settings" +msgstr "Diverse instellingen" -#: ../../mod/photos.php:690 -msgid "Album name could not be decoded" -msgstr "Albumnaam kon niet gedecodeerd worden" +#: ../../Zotlabs/Module/Settings.php:1118 +msgid "Default photo upload folder" +msgstr "Standaard fotoalbum voor uploads" -#: ../../mod/photos.php:738 ../../mod/photos.php:1278 -#: ../../mod/photos.php:1295 -msgid "Contact Photos" -msgstr "Connectiefoto's" +#: ../../Zotlabs/Module/Settings.php:1118 +#: ../../Zotlabs/Module/Settings.php:1119 +msgid "%Y - current year, %m - current month" +msgstr "%Y - dit jaar, %m - deze maand" -#: ../../mod/photos.php:761 -msgid "Show Newest First" -msgstr "Nieuwste eerst weergeven" +#: ../../Zotlabs/Module/Settings.php:1119 +msgid "Default file upload folder" +msgstr "Standaard bestandsmap voor uploads" -#: ../../mod/photos.php:763 -msgid "Show Oldest First" -msgstr "Oudste eerst weergeven" +#: ../../Zotlabs/Module/Settings.php:1121 +msgid "Personal menu to display in your channel pages" +msgstr "Persoonlijk menu om op je kanaalpagina's weer te geven" -#: ../../mod/photos.php:865 -msgid "Permission denied. Access to this item may be restricted." -msgstr "Toegang geweigerd. Toegang tot dit item kan zijn beperkt." +#: ../../Zotlabs/Module/Settings.php:1123 +msgid "Remove this channel." +msgstr "Verwijder dit kanaal." -#: ../../mod/photos.php:867 -msgid "Photo not available" -msgstr "Foto niet aanwezig" +#: ../../Zotlabs/Module/Settings.php:1124 +msgid "Firefox Share $Projectname provider" +msgstr "$Projectname-service voor Firefox Share" -#: ../../mod/photos.php:925 -msgid "Use as profile photo" -msgstr "Als profielfoto gebruiken" +#: ../../Zotlabs/Module/Settings.php:1125 +msgid "Start calendar week on monday" +msgstr "Begin in de agenda de week op maandag" -#: ../../mod/photos.php:926 -msgid "Use as cover photo" -msgstr "Als omslagfoto gebruiken" +#: ../../Zotlabs/Module/Setup.php:202 +msgid "$Projectname Server - Setup" +msgstr "$Projectname Hub - Setup" -#: ../../mod/photos.php:933 -msgid "Private Photo" -msgstr "Privéfoto" +#: ../../Zotlabs/Module/Setup.php:206 +msgid "Could not connect to database." +msgstr "Could not connect to database." -#: ../../mod/photos.php:944 ../../mod/cal.php:331 ../../mod/cal.php:338 -#: ../../mod/events.php:659 ../../mod/events.php:666 -msgid "Previous" -msgstr "Vorige" +#: ../../Zotlabs/Module/Setup.php:210 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "Could not connect to specified hub URL. Possible SSL certificate or DNS issue." -#: ../../mod/photos.php:948 -msgid "View Full Size" -msgstr "Volledige grootte weergeven" +#: ../../Zotlabs/Module/Setup.php:217 +msgid "Could not create table." +msgstr "Could not create table." -#: ../../mod/photos.php:953 ../../mod/cal.php:332 ../../mod/cal.php:339 -#: ../../mod/events.php:660 ../../mod/events.php:667 ../../mod/setup.php:291 -msgid "Next" -msgstr "Volgende" +#: ../../Zotlabs/Module/Setup.php:222 +msgid "Your site database has been installed." +msgstr "Your hub database has been installed." -#: ../../mod/photos.php:993 ../../mod/tagrm.php:133 -msgid "Remove" -msgstr "Verwijderen" +#: ../../Zotlabs/Module/Setup.php:226 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "You may need to import the file \"install/schema_xxx.sql\" manually using a database client." -#: ../../mod/photos.php:1027 -msgid "Edit photo" -msgstr "Foto bewerken" +#: ../../Zotlabs/Module/Setup.php:227 ../../Zotlabs/Module/Setup.php:289 +#: ../../Zotlabs/Module/Setup.php:739 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "Please see the file \"install/INSTALL.txt\"." -#: ../../mod/photos.php:1029 -msgid "Rotate CW (right)" -msgstr "Draai met de klok mee (naar rechts)" +#: ../../Zotlabs/Module/Setup.php:286 +msgid "System check" +msgstr "System check" -#: ../../mod/photos.php:1030 -msgid "Rotate CCW (left)" -msgstr "Draai tegen de klok in (naar links)" +#: ../../Zotlabs/Module/Setup.php:291 +msgid "Check again" +msgstr "Check again" -#: ../../mod/photos.php:1033 -msgid "Enter a new album name" -msgstr "Vul een nieuwe albumnaam in" +#: ../../Zotlabs/Module/Setup.php:313 +msgid "Database connection" +msgstr "Database connection" -#: ../../mod/photos.php:1034 -msgid "or select an existing one (doubleclick)" -msgstr "of kies een bestaand album (dubbelklikken)" +#: ../../Zotlabs/Module/Setup.php:314 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "In order to install $Projectname we need to know how to connect to your database." -#: ../../mod/photos.php:1037 -msgid "Caption" -msgstr "Bijschrift" +#: ../../Zotlabs/Module/Setup.php:315 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "Please contact your hosting provider or server administrator if you have questions about these settings." -#: ../../mod/photos.php:1039 -msgid "Add a Tag" -msgstr "Tag toevoegen" - -#: ../../mod/photos.php:1043 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl" +#: ../../Zotlabs/Module/Setup.php:316 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "The database you specify below should already exist. If it does not, please create it before continuing." -#: ../../mod/photos.php:1046 -msgid "Flag as adult in album view" -msgstr "Markeer als voor volwassenen in albumweergave" +#: ../../Zotlabs/Module/Setup.php:320 +msgid "Database Server Name" +msgstr "Database Server Name" -#: ../../mod/photos.php:1238 -msgid "In This Photo:" -msgstr "Op deze foto:" +#: ../../Zotlabs/Module/Setup.php:320 +msgid "Default is 127.0.0.1" +msgstr "Default is 127.0.0.1" -#: ../../mod/photos.php:1243 -msgid "Map" -msgstr "Kaart" +#: ../../Zotlabs/Module/Setup.php:321 +msgid "Database Port" +msgstr "Database Port" -#: ../../mod/photos.php:1334 -msgid "View Album" -msgstr "Album weergeven" +#: ../../Zotlabs/Module/Setup.php:321 +msgid "Communication port number - use 0 for default" +msgstr "Communication port number - use 0 for default" -#: ../../mod/photos.php:1345 ../../mod/photos.php:1358 -#: ../../mod/photos.php:1359 -msgid "Recent Photos" -msgstr "Recente foto's" +#: ../../Zotlabs/Module/Setup.php:322 +msgid "Database Login Name" +msgstr "Database Login Name" -#: ../../mod/bookmarks.php:49 -msgid "Bookmark added" -msgstr "Bladwijzer toegevoegd" +#: ../../Zotlabs/Module/Setup.php:323 +msgid "Database Login Password" +msgstr "Database Login Password" -#: ../../mod/bookmarks.php:71 -msgid "My Bookmarks" -msgstr "Mijn bladwijzers" +#: ../../Zotlabs/Module/Setup.php:324 +msgid "Database Name" +msgstr "Database Name" -#: ../../mod/bookmarks.php:82 -msgid "My Connections Bookmarks" -msgstr "Bladwijzers van mijn connecties" +#: ../../Zotlabs/Module/Setup.php:325 +msgid "Database Type" +msgstr "Database Type" -#: ../../mod/mitem.php:24 ../../mod/menu.php:140 -msgid "Menu not found." -msgstr "Menu niet gevonden." +#: ../../Zotlabs/Module/Setup.php:327 ../../Zotlabs/Module/Setup.php:367 +msgid "Site administrator email address" +msgstr "Hub administrator email address" -#: ../../mod/mitem.php:48 -msgid "Unable to create element." -msgstr "Niet in staat om onderdeel aan te maken." +#: ../../Zotlabs/Module/Setup.php:327 ../../Zotlabs/Module/Setup.php:367 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "Your account email address must match this in order to use the web admin panel." -#: ../../mod/mitem.php:72 -msgid "Unable to update menu element." -msgstr "Menu-onderdeel kan niet worden geüpdatet." +#: ../../Zotlabs/Module/Setup.php:328 ../../Zotlabs/Module/Setup.php:369 +msgid "Website URL" +msgstr "Hub URL" -#: ../../mod/mitem.php:88 -msgid "Unable to add menu element." -msgstr "Menu-onderdeel kan niet worden toegevoegd." +#: ../../Zotlabs/Module/Setup.php:328 ../../Zotlabs/Module/Setup.php:369 +msgid "Please use SSL (https) URL if available." +msgstr "Please use SSL (https) URL if available." -#: ../../mod/mitem.php:116 ../../mod/menu.php:162 ../../mod/xchan.php:37 -msgid "Not found." -msgstr "Niet gevonden." +#: ../../Zotlabs/Module/Setup.php:329 ../../Zotlabs/Module/Setup.php:372 +msgid "Please select a default timezone for your website" +msgstr "Please select a default timezone for your hub" -#: ../../mod/mitem.php:149 ../../mod/mitem.php:222 -msgid "Menu Item Permissions" -msgstr "Permissies menu-item" +#: ../../Zotlabs/Module/Setup.php:356 +msgid "Site settings" +msgstr "Hub settings" -#: ../../mod/mitem.php:150 ../../mod/mitem.php:223 ../../mod/settings.php:1075 -msgid "(click to open/close)" -msgstr "(klik om te openen/sluiten)" +#: ../../Zotlabs/Module/Setup.php:370 +msgid "Enable $Projectname advanced features?" +msgstr "Enable $Projectname advanced features?" -#: ../../mod/mitem.php:152 ../../mod/mitem.php:168 -msgid "Link Name" -msgstr "Linknaam" +#: ../../Zotlabs/Module/Setup.php:370 +msgid "" +"Some advanced features, while useful - may be best suited for technically " +"proficient audiences" +msgstr "Some advanced features, while useful - may be best suited for technically proficient audiences" -#: ../../mod/mitem.php:153 ../../mod/mitem.php:227 -msgid "Link or Submenu Target" -msgstr "Linkdoel of submenu-doel" +#: ../../Zotlabs/Module/Setup.php:422 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "Could not find a command line version of PHP in the web server PATH." -#: ../../mod/mitem.php:153 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "Geef de URL van de link of kies een menunaam om een submenu aan te maken" +#: ../../Zotlabs/Module/Setup.php:423 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." +msgstr "If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron." -#: ../../mod/mitem.php:154 ../../mod/mitem.php:228 -msgid "Use magic-auth if available" -msgstr "Gebruik magic-auth wanneer beschikbaar" +#: ../../Zotlabs/Module/Setup.php:427 +msgid "PHP executable path" +msgstr "PHP executable path" -#: ../../mod/mitem.php:155 ../../mod/mitem.php:229 -msgid "Open link in new window" -msgstr "Open link in nieuw venster" +#: ../../Zotlabs/Module/Setup.php:427 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "Enter full path to php executable. You can leave this blank to continue the installation." -#: ../../mod/mitem.php:156 ../../mod/mitem.php:230 -msgid "Order in list" -msgstr "Volgorde in lijst" +#: ../../Zotlabs/Module/Setup.php:432 +msgid "Command line PHP" +msgstr "Command line PHP" -#: ../../mod/mitem.php:156 ../../mod/mitem.php:230 -msgid "Higher numbers will sink to bottom of listing" -msgstr "Hogere nummers komen onderaan de lijst terecht" +#: ../../Zotlabs/Module/Setup.php:441 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled." -#: ../../mod/mitem.php:157 -msgid "Submit and finish" -msgstr "Opslaan en afsluiten" +#: ../../Zotlabs/Module/Setup.php:442 +msgid "This is required for message delivery to work." +msgstr "This is required for message delivery to work." -#: ../../mod/mitem.php:158 -msgid "Submit and continue" -msgstr "Opslaan en doorgaan" +#: ../../Zotlabs/Module/Setup.php:445 +msgid "PHP register_argc_argv" +msgstr "PHP register_argc_argv" -#: ../../mod/mitem.php:166 -msgid "Menu:" -msgstr "Menu:" +#: ../../Zotlabs/Module/Setup.php:463 +#, php-format +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to" +" upload is set to %s. You are allowed to upload up to %d files at once." +msgstr "Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once." -#: ../../mod/mitem.php:169 -msgid "Link Target" -msgstr "Linkdoel" +#: ../../Zotlabs/Module/Setup.php:468 +msgid "You can adjust these settings in the servers php.ini." +msgstr "You can adjust these settings in the servers php.ini." -#: ../../mod/mitem.php:172 -msgid "Edit menu" -msgstr "Menu bewerken" +#: ../../Zotlabs/Module/Setup.php:470 +msgid "PHP upload limits" +msgstr "PHP upload limits" -#: ../../mod/mitem.php:175 -msgid "Edit element" -msgstr "Onderdeel bewerken" +#: ../../Zotlabs/Module/Setup.php:493 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys" -#: ../../mod/mitem.php:176 -msgid "Drop element" -msgstr "Onderdeel verwijderen" +#: ../../Zotlabs/Module/Setup.php:494 +msgid "" +"If running under Windows, please see " +"\"http://www.php.net/manual/en/openssl.installation.php\"." +msgstr "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"." -#: ../../mod/mitem.php:177 -msgid "New element" -msgstr "Nieuw element" +#: ../../Zotlabs/Module/Setup.php:497 +msgid "Generate encryption keys" +msgstr "Generate encryption keys" -#: ../../mod/mitem.php:178 -msgid "Edit this menu container" -msgstr "Deze menu-container bewerken" +#: ../../Zotlabs/Module/Setup.php:509 +msgid "libCurl PHP module" +msgstr "libCurl PHP module" -#: ../../mod/mitem.php:179 -msgid "Add menu element" -msgstr "Menu-element toevoegen" +#: ../../Zotlabs/Module/Setup.php:510 +msgid "GD graphics PHP module" +msgstr "GD graphics PHP module" -#: ../../mod/mitem.php:180 -msgid "Delete this menu item" -msgstr "Dit menu-item verwijderen" +#: ../../Zotlabs/Module/Setup.php:511 +msgid "OpenSSL PHP module" +msgstr "OpenSSL PHP module" -#: ../../mod/mitem.php:181 -msgid "Edit this menu item" -msgstr "Dit menu-item bewerken" +#: ../../Zotlabs/Module/Setup.php:512 +msgid "mysqli or postgres PHP module" +msgstr "mysqli or postgres PHP module" -#: ../../mod/mitem.php:198 -msgid "Menu item not found." -msgstr "Menu-item niet gevonden." +#: ../../Zotlabs/Module/Setup.php:513 +msgid "mb_string PHP module" +msgstr "mb_string PHP module" -#: ../../mod/mitem.php:211 -msgid "Menu item deleted." -msgstr "Menu-item verwijderd." +#: ../../Zotlabs/Module/Setup.php:514 +msgid "mcrypt PHP module" +msgstr "mcrypt PHP module" -#: ../../mod/mitem.php:213 -msgid "Menu item could not be deleted." -msgstr "Menu-item kon niet worden verwijderd." +#: ../../Zotlabs/Module/Setup.php:515 +msgid "xml PHP module" +msgstr "xml PHP module" -#: ../../mod/mitem.php:220 -msgid "Edit Menu Element" -msgstr "Menu-element bewerken" +#: ../../Zotlabs/Module/Setup.php:519 ../../Zotlabs/Module/Setup.php:521 +msgid "Apache mod_rewrite module" +msgstr "Apache mod_rewrite module" -#: ../../mod/mitem.php:226 -msgid "Link text" -msgstr "Linktekst" +#: ../../Zotlabs/Module/Setup.php:519 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "Error: Apache webserver mod-rewrite module is required but not installed." -#: ../../mod/ping.php:260 -msgid "sent you a private message" -msgstr "stuurde jou een privébericht" +#: ../../Zotlabs/Module/Setup.php:525 ../../Zotlabs/Module/Setup.php:528 +msgid "proc_open" +msgstr "proc_open" -#: ../../mod/ping.php:308 -msgid "added your channel" -msgstr "voegde jouw kanaal toe" +#: ../../Zotlabs/Module/Setup.php:525 +msgid "" +"Error: proc_open is required but is either not installed or has been " +"disabled in php.ini" +msgstr "Error: proc_open is required but is either not installed or has been disabled in php.ini" -#: ../../mod/ping.php:350 -msgid "posted an event" -msgstr "plaatste een gebeurtenis" +#: ../../Zotlabs/Module/Setup.php:533 +msgid "Error: libCURL PHP module required but not installed." +msgstr "Error: libCURL PHP module required but not installed." -#: ../../mod/cal.php:68 -msgid "Permissions denied." -msgstr "Permissies niet toegestaan" +#: ../../Zotlabs/Module/Setup.php:537 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "Error: GD graphics PHP module with JPEG support required but not installed." -#: ../../mod/cal.php:258 ../../mod/events.php:581 -msgid "l, F j" -msgstr "l j F" +#: ../../Zotlabs/Module/Setup.php:541 +msgid "Error: openssl PHP module required but not installed." +msgstr "Error: openssl PHP module required but not installed." -#: ../../mod/cal.php:330 ../../mod/events.php:658 -msgid "Edit Event" -msgstr "Gebeurtenis bewerken" +#: ../../Zotlabs/Module/Setup.php:545 +msgid "" +"Error: mysqli or postgres PHP module required but neither are installed." +msgstr "Error: mysqli or postgres PHP module required but neither are installed." -#: ../../mod/cal.php:330 ../../mod/events.php:658 -msgid "Create Event" -msgstr "Gebeurtenis aanmaken" +#: ../../Zotlabs/Module/Setup.php:549 +msgid "Error: mb_string PHP module required but not installed." +msgstr "Error: mb_string PHP module required but not installed." -#: ../../mod/cal.php:340 ../../mod/events.php:668 -msgid "Today" -msgstr "Vandaag" +#: ../../Zotlabs/Module/Setup.php:553 +msgid "Error: mcrypt PHP module required but not installed." +msgstr "Error: mcrypt PHP module required but not installed." -#: ../../mod/channel.php:25 ../../mod/chat.php:19 -msgid "You must be logged in to see this page." -msgstr "Je moet zijn ingelogd om deze pagina te kunnen bekijken." +#: ../../Zotlabs/Module/Setup.php:557 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "Error: xml PHP module required for DAV but not installed." -#: ../../mod/channel.php:37 -msgid "Posts and comments" -msgstr "Berichten en reacties" +#: ../../Zotlabs/Module/Setup.php:575 +msgid "" +"The web installer needs to be able to create a file called \".htconfig.php\"" +" in the top folder of your web server and it is unable to do so." +msgstr "The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so." -#: ../../mod/channel.php:38 -msgid "Only posts" -msgstr "Alleen berichten" +#: ../../Zotlabs/Module/Setup.php:576 +msgid "" +"This is most often a permission setting, as the web server may not be able " +"to write files in your folder - even if you can." +msgstr "This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can." -#: ../../mod/channel.php:98 -msgid "Insufficient permissions. Request redirected to profile page." -msgstr "Onvoldoende permissies. Doorgestuurd naar profielpagina." +#: ../../Zotlabs/Module/Setup.php:577 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." +msgstr "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder." -#: ../../mod/channel.php:132 ../../mod/network.php:169 ../../mod/rpost.php:114 -msgid "Public" -msgstr "Openbaar" +#: ../../Zotlabs/Module/Setup.php:578 +msgid "" +"You can alternatively skip this procedure and perform a manual installation." +" Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions." -#: ../../mod/poke.php:165 -msgid "Poke somebody" -msgstr "Iemand aanstoten" +#: ../../Zotlabs/Module/Setup.php:581 +msgid ".htconfig.php is writable" +msgstr ".htconfig.php is writable" -#: ../../mod/poke.php:168 -msgid "Poke/Prod" -msgstr "Aanstoten/porren" +#: ../../Zotlabs/Module/Setup.php:595 +msgid "" +"Red uses the Smarty3 template engine to render its web views. Smarty3 " +"compiles templates to PHP to speed up rendering." +msgstr "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering." -#: ../../mod/poke.php:169 -msgid "Poke, prod or do other things to somebody" -msgstr "Iemand bijvoorbeeld aanstoten of poren" +#: ../../Zotlabs/Module/Setup.php:596 +#, php-format +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the Red top level folder." +msgstr "In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder." -#: ../../mod/poke.php:176 -msgid "Recipient" -msgstr "Ontvanger" +#: ../../Zotlabs/Module/Setup.php:597 ../../Zotlabs/Module/Setup.php:618 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has" +" write access to this folder." +msgstr "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder." -#: ../../mod/poke.php:177 -msgid "Choose what you wish to do to recipient" -msgstr "Kies wat je met de ontvanger wil doen" +#: ../../Zotlabs/Module/Setup.php:598 +#, php-format +msgid "" +"Note: as a security measure, you should give the web server write access to " +"%s only--not the template files (.tpl) that it contains." +msgstr "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains." -#: ../../mod/poke.php:180 ../../mod/poke.php:181 -msgid "Make this post private" -msgstr "Maak dit bericht privé" +#: ../../Zotlabs/Module/Setup.php:601 +#, php-format +msgid "%s is writable" +msgstr "%s is writable" -#: ../../mod/chat.php:175 -msgid "Room not found" -msgstr "Chatkanaal niet gevonden" +#: ../../Zotlabs/Module/Setup.php:617 +msgid "" +"Red uses the store directory to save uploaded files. The web server needs to" +" have write access to the store directory under the Red top level folder" +msgstr "Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder" -#: ../../mod/chat.php:191 -msgid "Leave Room" -msgstr "Chatkanaal verlaten" +#: ../../Zotlabs/Module/Setup.php:621 +msgid "store is writable" +msgstr "store is writable" -#: ../../mod/chat.php:192 -msgid "Delete Room" -msgstr "Chatkanaal verwijderen" +#: ../../Zotlabs/Module/Setup.php:654 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access" +" to this site." +msgstr "SSL certificate cannot be validated. Fix certificate or disable https access to this hub." -#: ../../mod/chat.php:193 -msgid "I am away right now" -msgstr "Ik ben momenteel afwezig" +#: ../../Zotlabs/Module/Setup.php:655 +msgid "" +"If you have https access to your website or allow connections to TCP port " +"443 (the https: port), you MUST use a browser-valid certificate. You MUST " +"NOT use self-signed certificates!" +msgstr "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!" -#: ../../mod/chat.php:194 -msgid "I am online" -msgstr "Ik ben online" +#: ../../Zotlabs/Module/Setup.php:656 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." +msgstr "This restriction is incorporated because public posts from you may for example contain references to images on your own hub." -#: ../../mod/chat.php:196 -msgid "Bookmark this room" -msgstr "Chatkanaal aan bladwijzers toevoegen" +#: ../../Zotlabs/Module/Setup.php:657 +msgid "" +"If your certificate is not recognized, members of other sites (who may " +"themselves have valid certificates) will get a warning message on their own " +"site complaining about security issues." +msgstr "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues." -#: ../../mod/chat.php:212 -msgid "Feature disabled." -msgstr "Functie uitgeschakeld." +#: ../../Zotlabs/Module/Setup.php:658 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." +msgstr "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement." -#: ../../mod/chat.php:226 -msgid "New Chatroom" -msgstr "Nieuw chatkanaal" +#: ../../Zotlabs/Module/Setup.php:659 +msgid "" +"Providers are available that issue free certificates which are browser-" +"valid." +msgstr "Providers are available that issue free certificates which are browser-valid." -#: ../../mod/chat.php:227 -msgid "Chatroom name" -msgstr "Naam chatkanaal" +#: ../../Zotlabs/Module/Setup.php:661 +msgid "SSL certificate validation" +msgstr "SSL certificate validation" -#: ../../mod/chat.php:228 -msgid "Expiration of chats (minutes)" -msgstr "Aantal minuten voordat chatberichten worden verwijderd" +#: ../../Zotlabs/Module/Setup.php:667 +msgid "" +"Url rewrite in .htaccess is not working. Check your server " +"configuration.Test: " +msgstr "Url rewrite in .htaccess is not working. Check your server configuration.Test: " -#: ../../mod/chat.php:240 -#, php-format -msgid "%1$s's Chatrooms" -msgstr "Chatkanalen van %1$s" +#: ../../Zotlabs/Module/Setup.php:670 +msgid "Url rewrite is working" +msgstr "Url rewrite is working" -#: ../../mod/chat.php:245 -msgid "No chatrooms available" -msgstr "Geen chatkanalen beschikbaar" +#: ../../Zotlabs/Module/Setup.php:679 +msgid "" +"The database configuration file \".htconfig.php\" could not be written. " +"Please use the enclosed text to create a configuration file in your web " +"server root." +msgstr "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root." -#: ../../mod/chat.php:246 ../../mod/profiles.php:777 ../../mod/manage.php:137 -msgid "Create New" -msgstr "Nieuwe aanmaken" +#: ../../Zotlabs/Module/Setup.php:703 +msgid "Errors encountered creating database tables." +msgstr "Errors encountered creating database tables." -#: ../../mod/chat.php:249 -msgid "Expiration" -msgstr "Verloopt na" +#: ../../Zotlabs/Module/Setup.php:737 +msgid "

What next

" +msgstr "

What next

" -#: ../../mod/chat.php:250 -msgid "min" -msgstr "min" +#: ../../Zotlabs/Module/Setup.php:738 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the " +"poller." +msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." -#: ../../mod/chatsvc.php:111 -msgid "Away" -msgstr "Afwezig" +#: ../../Zotlabs/Module/Sharedwithme.php:98 +msgid "Files: shared with me" +msgstr "Bestanden: met mij gedeeld" -#: ../../mod/chatsvc.php:116 -msgid "Online" -msgstr "Online" +#: ../../Zotlabs/Module/Sharedwithme.php:100 +msgid "NEW" +msgstr "NIEUW" + +#: ../../Zotlabs/Module/Sharedwithme.php:103 +msgid "Remove all files" +msgstr "Verwijder alle bestanden" -#: ../../mod/probe.php:24 ../../mod/probe.php:30 +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Remove this file" +msgstr "Verwijder dit bestand" + +#: ../../Zotlabs/Module/Siteinfo.php:19 #, php-format -msgid "Fetching URL returns error: %1$s" -msgstr "Ophalen URL gaf een foutmelding terug: %1$s" +msgid "Version %s" +msgstr "Versie %s" -#: ../../mod/common.php:10 -msgid "No channel." -msgstr "Geen kanaal." +#: ../../Zotlabs/Module/Siteinfo.php:40 +msgid "Installed plugins/addons/apps:" +msgstr "Ingeschakelde plugins en apps:" -#: ../../mod/common.php:39 -msgid "Common connections" -msgstr "Veel voorkomende connecties" +#: ../../Zotlabs/Module/Siteinfo.php:53 +msgid "No installed plugins/addons/apps" +msgstr "Geen ingeschakelde plugins en apps" -#: ../../mod/common.php:44 -msgid "No connections in common." -msgstr "Geen gemeenschappelijke connecties." +#: ../../Zotlabs/Module/Siteinfo.php:66 +msgid "" +"This is a hub of $Projectname - a global cooperative network of " +"decentralized privacy enhanced websites." +msgstr "Dit is een $Projectname-hub - $Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy." -#: ../../mod/connect.php:56 ../../mod/connect.php:104 -msgid "Continue" -msgstr "Ga verder" +#: ../../Zotlabs/Module/Siteinfo.php:68 +msgid "Tag: " +msgstr "Tag: " -#: ../../mod/connect.php:85 -msgid "Premium Channel Setup" -msgstr "Instellen premiumkanaal " +#: ../../Zotlabs/Module/Siteinfo.php:70 +msgid "Last background fetch: " +msgstr "Meest recente achtergrond-fetch:" -#: ../../mod/connect.php:87 -msgid "Enable premium channel connection restrictions" -msgstr "Restricties voor connecties van premiumkanaal toestaan" +#: ../../Zotlabs/Module/Siteinfo.php:72 +msgid "Current load average: " +msgstr "Gemiddelde systeembelasting is nu:" -#: ../../mod/connect.php:88 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." -msgstr "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz." +#: ../../Zotlabs/Module/Siteinfo.php:75 +msgid "Running at web location" +msgstr "Draaiend op weblocatie" -#: ../../mod/connect.php:90 ../../mod/connect.php:110 +#: ../../Zotlabs/Module/Siteinfo.php:76 msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" -msgstr "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:" +"Please visit hubzilla.org to learn more " +"about $Projectname." +msgstr "Bezoek hubzilla.org " -#: ../../mod/connect.php:91 -msgid "" -"Potential connections will then see the following text before proceeding:" -msgstr "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:" +#: ../../Zotlabs/Module/Siteinfo.php:77 +msgid "Bug reports and issues: please visit" +msgstr "Bugrapporten en andere kwesties: bezoek" + +#: ../../Zotlabs/Module/Siteinfo.php:79 +msgid "$projectname issues" +msgstr "$projectname-issues" -#: ../../mod/connect.php:92 ../../mod/connect.php:113 +#: ../../Zotlabs/Module/Siteinfo.php:80 msgid "" -"By continuing, I certify that I have complied with any instructions provided" -" on this page." -msgstr "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina." +"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " +"com" +msgstr "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com" -#: ../../mod/connect.php:101 -msgid "(No specific instructions have been provided by the channel owner.)" -msgstr "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) " +#: ../../Zotlabs/Module/Siteinfo.php:82 +msgid "Site Administrators" +msgstr "Hubbeheerders: " -#: ../../mod/connect.php:109 -msgid "Restricted or Premium Channel" -msgstr "Beperkt of premiumkanaal" +#: ../../Zotlabs/Module/Sources.php:36 +msgid "Failed to create source. No channel selected." +msgstr "Aanmaken bron mislukt. Geen kanaal geselecteerd." -#: ../../mod/mood.php:132 -msgid "Set your current mood and tell your friends" -msgstr "Noteer je huidige stemming en toon het aan je connecties" +#: ../../Zotlabs/Module/Sources.php:49 +msgid "Source created." +msgstr "Bron aangemaakt." -#: ../../mod/connections.php:52 ../../mod/connections.php:157 -#: ../../mod/connections.php:238 -msgid "Blocked" -msgstr "Geblokkeerd" +#: ../../Zotlabs/Module/Sources.php:61 +msgid "Source updated." +msgstr "Bron aangemaakt." -#: ../../mod/connections.php:57 ../../mod/connections.php:164 -#: ../../mod/connections.php:237 -msgid "Ignored" -msgstr "Genegeerd" +#: ../../Zotlabs/Module/Sources.php:86 +msgid "*" +msgstr "*" -#: ../../mod/connections.php:62 ../../mod/connections.php:178 -#: ../../mod/connections.php:236 -msgid "Hidden" -msgstr "Verborgen" +#: ../../Zotlabs/Module/Sources.php:92 ../../include/features.php:71 +#: ../../include/widgets.php:581 +msgid "Channel Sources" +msgstr "Kanaalbronnen" -#: ../../mod/connections.php:67 ../../mod/connections.php:171 -#: ../../mod/connections.php:235 -msgid "Archived" -msgstr "Gearchiveerd" +#: ../../Zotlabs/Module/Sources.php:93 +msgid "Manage remote sources of content for your channel." +msgstr "Beheer externe bronnen met inhoud voor jouw kanaal" -#: ../../mod/connections.php:134 -msgid "New Connections" -msgstr "Nieuwe connecties" +#: ../../Zotlabs/Module/Sources.php:94 ../../Zotlabs/Module/Sources.php:104 +msgid "New Source" +msgstr "Nieuwe bron" -#: ../../mod/connections.php:137 -msgid "Show pending (new) connections" -msgstr "Nog te accepteren (nieuwe) connecties weergeven" +#: ../../Zotlabs/Module/Sources.php:105 ../../Zotlabs/Module/Sources.php:137 +msgid "" +"Import all or selected content from the following channel into this channel " +"and distribute it according to your channel settings." +msgstr "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen." -#: ../../mod/connections.php:141 ../../mod/profperm.php:139 -msgid "All Connections" -msgstr "Alle connecties" +#: ../../Zotlabs/Module/Sources.php:106 ../../Zotlabs/Module/Sources.php:138 +msgid "Only import content with these words (one per line)" +msgstr "Importeer alleen inhoud met deze woorden (één per regel)" -#: ../../mod/connections.php:144 -msgid "Show all connections" -msgstr "Toon alle connecties" +#: ../../Zotlabs/Module/Sources.php:106 ../../Zotlabs/Module/Sources.php:138 +msgid "Leave blank to import all public content" +msgstr "Laat leeg om alle openbare inhoud te importeren" -#: ../../mod/connections.php:160 -msgid "Only show blocked connections" -msgstr "Toon alleen geblokkeerde connecties" +#: ../../Zotlabs/Module/Sources.php:107 ../../Zotlabs/Module/Sources.php:141 +msgid "Channel Name" +msgstr "Kanaalnaam" -#: ../../mod/connections.php:167 -msgid "Only show ignored connections" -msgstr "Toon alleen genegeerde connecties" +#: ../../Zotlabs/Module/Sources.php:127 ../../Zotlabs/Module/Sources.php:154 +msgid "Source not found." +msgstr "Bron niet gevonden" -#: ../../mod/connections.php:174 -msgid "Only show archived connections" -msgstr "Toon alleen gearchiveerde connecties" +#: ../../Zotlabs/Module/Sources.php:134 +msgid "Edit Source" +msgstr "Bron bewerken" -#: ../../mod/connections.php:181 -msgid "Only show hidden connections" -msgstr "Toon alleen verborgen connecties" +#: ../../Zotlabs/Module/Sources.php:135 +msgid "Delete Source" +msgstr "Bron verwijderen" -#: ../../mod/connections.php:234 -msgid "Pending approval" -msgstr "Moet nog geaccepteerd worden" +#: ../../Zotlabs/Module/Sources.php:162 +msgid "Source removed" +msgstr "Bron verwijderd" -#: ../../mod/connections.php:250 -#, php-format -msgid "%1$s [%2$s]" -msgstr "%1$s [%2$s]" +#: ../../Zotlabs/Module/Sources.php:164 +msgid "Unable to remove source." +msgstr "Verwijderen bron mislukt." -#: ../../mod/connections.php:251 -msgid "Edit connection" -msgstr "Connectie bewerken" +#: ../../Zotlabs/Module/Subthread.php:118 +#, php-format +msgid "%1$s is following %2$s's %3$s" +msgstr "%1$s volgt het %3$s van %2$s" -#: ../../mod/connections.php:252 -msgid "Delete connection" -msgstr "Connectie verwijderen" - -#: ../../mod/connections.php:261 -msgid "Channel address" -msgstr "Kanaaladres" +#: ../../Zotlabs/Module/Subthread.php:120 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" +msgstr "%1$s volgt het %3$s van %2$s niet meer" -#: ../../mod/connections.php:263 -msgid "Network" -msgstr "Netwerk" +#: ../../Zotlabs/Module/Suggest.php:39 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." +msgstr "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer." -#: ../../mod/connections.php:268 -msgid "Connected" -msgstr "Verbonden" +#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:149 +msgid "Ignore/Hide" +msgstr "Negeren/Verbergen" -#: ../../mod/connections.php:270 -msgid "Approve connection" -msgstr "Connectie accepteren" +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:257 +msgid "post" +msgstr "bericht" -#: ../../mod/connections.php:272 -msgid "Ignore connection" -msgstr "Connectie negeren" +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 +#: ../../include/text.php:1975 +msgid "comment" +msgstr "reactie" -#: ../../mod/connections.php:273 ../../mod/connedit.php:545 -#: ../../mod/notifications.php:51 -msgid "Ignore" -msgstr "Negeren" +#: ../../Zotlabs/Module/Tagger.php:100 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" +msgstr "%1$s heeft het %3$s van %2$s getagd met %4$s" -#: ../../mod/connections.php:274 -msgid "Recent activity" -msgstr "Recente activiteit" +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" +msgstr "Tag verwijderd" -#: ../../mod/connections.php:303 -msgid "Search your connections" -msgstr "Doorzoek jouw connecties" +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" +msgstr "Verwijder item-tag" -#: ../../mod/connections.php:304 -msgid "Connections search" -msgstr "Connecties zoeken" +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " +msgstr "Kies een tag om te verwijderen" -#: ../../mod/profile_photo.php:112 ../../mod/cover_photo.php:54 -msgid "Image uploaded but image cropping failed." -msgstr "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. " +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" +msgstr "Ding bijgewerkt" -#: ../../mod/profile_photo.php:166 ../../mod/cover_photo.php:150 -msgid "Image resize failed." -msgstr "Afbeelding kon niet van grootte veranderd worden." +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" +msgstr "Opslaan van ding mislukt" -#: ../../mod/profile_photo.php:212 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." -msgstr "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven." +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" +msgstr "Ding toegevoegd" -#: ../../mod/profile_photo.php:250 ../../mod/cover_photo.php:188 -msgid "Image upload failed." -msgstr "Uploaden afbeelding mislukt" +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" +msgstr "OBJ: %1$s %2$s %3$s" -#: ../../mod/profile_photo.php:269 ../../mod/cover_photo.php:206 -msgid "Unable to process image." -msgstr "Niet in staat om afbeelding te verwerken." +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" +msgstr "Ding weergeven" -#: ../../mod/profile_photo.php:316 ../../mod/profile_photo.php:357 -#: ../../mod/cover_photo.php:299 ../../mod/cover_photo.php:314 -msgid "Photo not available." -msgstr "Foto niet beschikbaar." +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." +msgstr "Item niet gevonden" -#: ../../mod/profile_photo.php:398 ../../mod/cover_photo.php:350 -msgid "Upload File:" -msgstr "Bestand uploaden:" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" +msgstr "Ding bewerken" -#: ../../mod/profile_photo.php:399 ../../mod/cover_photo.php:351 -msgid "Select a profile:" -msgstr "Kies een profiel:" +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:351 +msgid "Select a profile" +msgstr "Kies een profiel" -#: ../../mod/profile_photo.php:400 -msgid "Upload Profile Photo" -msgstr "Profielfoto uploaden" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Post an activity" +msgstr "Plaats een bericht" -#: ../../mod/profile_photo.php:407 ../../mod/cover_photo.php:357 -#: ../../mod/settings.php:992 -msgid "or" -msgstr "of" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:354 +msgid "Only sends to viewers of the applicable profile" +msgstr "Toont dit alleen aan diegene die het gekozen profiel mogen zien." -#: ../../mod/profile_photo.php:407 ../../mod/cover_photo.php:357 -msgid "skip this step" -msgstr "sla deze stap over" +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:356 +msgid "Name of thing e.g. something" +msgstr "Naam van ding" -#: ../../mod/profile_photo.php:407 ../../mod/cover_photo.php:357 -msgid "select a photo from your photo albums" -msgstr "Kies een foto uit jouw fotoalbums" +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:357 +msgid "URL of thing (optional)" +msgstr "URL van ding (optioneel)" -#: ../../mod/profile_photo.php:423 ../../mod/cover_photo.php:373 -msgid "Crop Image" -msgstr "Afbeelding bijsnijden" +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:358 +msgid "URL for photo of thing (optional)" +msgstr "URL voor foto van ding (optioneel)" -#: ../../mod/profile_photo.php:424 ../../mod/cover_photo.php:374 -msgid "Please adjust the image cropping for optimum viewing." -msgstr "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven." +#: ../../Zotlabs/Module/Thing.php:349 +msgid "Add Thing to your Profile" +msgstr "Ding aan je profiel toevoegen" -#: ../../mod/profile_photo.php:426 ../../mod/cover_photo.php:376 -msgid "Done Editing" -msgstr "Klaar met bewerken" +#: ../../Zotlabs/Module/Uexport.php:55 ../../Zotlabs/Module/Uexport.php:56 +msgid "Export Channel" +msgstr "Kanaal exporteren" -#: ../../mod/connedit.php:75 -msgid "Could not access contact record." -msgstr "Kon geen toegang krijgen tot de connectie-gegevens." +#: ../../Zotlabs/Module/Uexport.php:57 +msgid "" +"Export your basic channel information to a file. This acts as a backup of " +"your connections, permissions, profile and basic data, which can be used to " +"import your data to a new server hub, but does not contain your content." +msgstr "Exporteer de basisinformatie van jouw kanaal naar een bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal." -#: ../../mod/connedit.php:99 -msgid "Could not locate selected profile." -msgstr "Kon het gekozen profiel niet vinden." +#: ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Content" +msgstr "Inhoud exporteren" -#: ../../mod/connedit.php:223 -msgid "Connection updated." -msgstr "Connectie bijgewerkt." +#: ../../Zotlabs/Module/Uexport.php:59 +msgid "" +"Export your channel information and recent content to a JSON backup that can" +" be restored or imported to another server hub. This backs up all of your " +"connections, permissions, profile data and several months of posts. This " +"file may be VERY large. Please be patient - it may take several minutes for" +" this download to begin." +msgstr "Exporteer informatie en recente inhoud van jouw kanaal naar een JSON-back-up, wat kan worden gebruikt om jouw kanaal te herstellen of te importeren op een andere hub. Dit slaat al jouw connecties, permissies, profielgegevens en enkele maanden aan inhoud van jouw kanaal op. Dit bestand kan ZEER groot worden. Wees geduldig - het kan enkele minuten duren voordat de download begint." -#: ../../mod/connedit.php:225 -msgid "Failed to update connection record." -msgstr "Bijwerken van connectie-gegevens mislukt." +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export your posts from a given year." +msgstr "Exporteer jouw berichten uit een bepaald jaar." -#: ../../mod/connedit.php:272 -msgid "is now connected to" -msgstr "is nu verbonden met" +#: ../../Zotlabs/Module/Uexport.php:62 +msgid "" +"You may also export your posts and conversations for a particular year or " +"month. Adjust the date in your browser location bar to select other dates. " +"If the export fails (possibly due to memory exhaustion on your server hub), " +"please try again selecting a more limited date range." +msgstr "Je kan ook berichten en conversaties uit een bepaald jaar of van een bepaalde maand exporteren. Verander de datum in de adresbalk van jouw webbrowser om andere jaren en maanden te selecteren. Wanneer het exporteren mislukt (waarschijnlijk door een gebrek aan beschikbaar servergeheugen), probeer het dan nogmaals met een beperkter tijdvak." -#: ../../mod/connedit.php:407 -msgid "Could not access address book record." -msgstr "Kon geen toegang krijgen tot de record van de connectie." +#: ../../Zotlabs/Module/Uexport.php:63 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit %2$s" +msgstr "Bezoek %2$s om alle berichten van bijvoorbeeld dit jaar te selecteren. " -#: ../../mod/connedit.php:421 -msgid "Refresh failed - channel is currently unavailable." -msgstr "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar" +#: ../../Zotlabs/Module/Uexport.php:64 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"%2$s" +msgstr "Bezoek %2$s om alle berichten van bijvoorbeeld januari dit jaar te selecteren." -#: ../../mod/connedit.php:436 ../../mod/connedit.php:445 -#: ../../mod/connedit.php:454 ../../mod/connedit.php:463 -#: ../../mod/connedit.php:476 -msgid "Unable to set address book parameters." -msgstr "Niet in staat om de parameters van connecties in te stellen." +#: ../../Zotlabs/Module/Uexport.php:65 +#, php-format +msgid "" +"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" +" please import or restore these in date order (oldest first)." +msgstr "Deze back-up-bestanden kunnen geïmporteerd of hersteld worden door op jouw hub en met jouw kanaal %2$s te bezoeken. Voor het beste resultaat kan je de bestanden in chronologische volgorde importeren of herstellen." -#: ../../mod/connedit.php:500 -msgid "Connection has been removed." -msgstr "Connectie is verwijderd" +#: ../../Zotlabs/Module/Viewconnections.php:63 +msgid "No connections." +msgstr "Geen connecties." -#: ../../mod/connedit.php:519 +#: ../../Zotlabs/Module/Viewconnections.php:76 #, php-format -msgid "View %s's profile" -msgstr "Profiel van %s weergeven" - -#: ../../mod/connedit.php:523 -msgid "Refresh Permissions" -msgstr "Permissies vernieuwen" +msgid "Visit %s's profile [%s]" +msgstr "Bezoek het profiel van %s [%s]" -#: ../../mod/connedit.php:526 -msgid "Fetch updated permissions" -msgstr "Aangepaste permissies ophalen" +#: ../../Zotlabs/Module/Viewconnections.php:105 +msgid "View Connections" +msgstr "Connecties weergeven" -#: ../../mod/connedit.php:530 -msgid "Recent Activity" -msgstr "Recente activiteit/berichten" +#: ../../Zotlabs/Module/Viewsrc.php:44 +msgid "Source of Item" +msgstr "Bron van item" -#: ../../mod/connedit.php:533 -msgid "View recent posts and comments" -msgstr "Recente berichten en reacties weergeven" +#: ../../Zotlabs/Module/Webpages.php:186 ../../include/apps.php:136 +#: ../../include/conversation.php:1704 ../../include/nav.php:106 +msgid "Webpages" +msgstr "Webpagina's" -#: ../../mod/connedit.php:540 -msgid "Block (or Unblock) all communications with this connection" -msgstr "Blokkeer (of deblokkeer) alle communicatie met deze connectie" +#: ../../Zotlabs/Module/Webpages.php:197 ../../include/page_widgets.php:41 +msgid "Actions" +msgstr "Acties" -#: ../../mod/connedit.php:541 -msgid "This connection is blocked!" -msgstr "Deze connectie is geblokkeerd!" +#: ../../Zotlabs/Module/Webpages.php:198 ../../include/page_widgets.php:42 +msgid "Page Link" +msgstr "Paginalink" -#: ../../mod/connedit.php:545 -msgid "Unignore" -msgstr "Niet meer negeren" +#: ../../Zotlabs/Module/Webpages.php:199 +msgid "Page Title" +msgstr "Paginatitel" -#: ../../mod/connedit.php:548 -msgid "Ignore (or Unignore) all inbound communications from this connection" -msgstr "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie" +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" +msgstr "Xchan opzoeken" -#: ../../mod/connedit.php:549 -msgid "This connection is ignored!" -msgstr "Deze connectie wordt genegeerd!" +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " +msgstr "Zoek een xchan (of webbie) die begint met:" -#: ../../mod/connedit.php:553 -msgid "Unarchive" -msgstr "Niet meer archiveren" +#: ../../include/Import/import_diaspora.php:17 +msgid "No username found in import file." +msgstr "Geen gebruikersnaam in het importbestand gevonden." -#: ../../mod/connedit.php:553 -msgid "Archive" -msgstr "Archiveren" +#: ../../include/Import/import_diaspora.php:42 ../../include/import.php:44 +msgid "Unable to create a unique channel address. Import failed." +msgstr "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt." -#: ../../mod/connedit.php:556 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" -msgstr "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud" +#: ../../include/dba/dba_driver.php:141 +#, php-format +msgid "Cannot locate DNS info for database server '%s'" +msgstr "Kan DNS-informatie voor databaseserver '%s' niet vinden" -#: ../../mod/connedit.php:557 -msgid "This connection is archived!" -msgstr "Deze connectie is gearchiveerd!" +#: ../../include/identity.php:32 +msgid "Unable to obtain identity information from database" +msgstr "Niet in staat om identiteitsinformatie uit de database te verkrijgen" -#: ../../mod/connedit.php:561 -msgid "Unhide" -msgstr "Niet meer verbergen" +#: ../../include/identity.php:66 +msgid "Empty name" +msgstr "Ontbrekende naam" -#: ../../mod/connedit.php:561 -msgid "Hide" -msgstr "Verbergen" +#: ../../include/identity.php:69 +msgid "Name too long" +msgstr "Naam te lang" -#: ../../mod/connedit.php:564 -msgid "Hide or Unhide this connection from your other connections" -msgstr "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties" +#: ../../include/identity.php:180 +msgid "No account identifier" +msgstr "Geen account-identificator" -#: ../../mod/connedit.php:565 -msgid "This connection is hidden!" -msgstr "Deze connectie is verborgen!" +#: ../../include/identity.php:192 +msgid "Nickname is required." +msgstr "Bijnaam is verplicht" -#: ../../mod/connedit.php:572 -msgid "Delete this connection" -msgstr "Deze connectie verwijderen" +#: ../../include/identity.php:206 +msgid "Reserved nickname. Please choose another." +msgstr "Deze naam is gereserveerd. Kies een andere." -#: ../../mod/connedit.php:653 -msgid "Approve this connection" -msgstr "Deze connectie accepteren" +#: ../../include/identity.php:211 +msgid "" +"Nickname has unsupported characters or is already being used on this site." +msgstr "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik." -#: ../../mod/connedit.php:653 -msgid "Accept connection to allow communication" -msgstr "Keur deze connectie goed om communicatie toe te staan" +#: ../../include/identity.php:287 +msgid "Unable to retrieve created identity" +msgstr "Niet in staat om aangemaakte identiteit te vinden" -#: ../../mod/connedit.php:658 -msgid "Set Affinity" -msgstr "Verwantschapsfilter instellen" +#: ../../include/identity.php:345 +msgid "Default Profile" +msgstr "Standaardprofiel" -#: ../../mod/connedit.php:661 -msgid "Set Profile" -msgstr "Profiel instellen" +#: ../../include/identity.php:784 +msgid "Requested channel is not available." +msgstr "Opgevraagd kanaal is niet beschikbaar." -#: ../../mod/connedit.php:664 -msgid "Set Affinity & Profile" -msgstr "Verwantschapsfilter en profiel instellen" +#: ../../include/identity.php:931 +msgid "Create New Profile" +msgstr "Nieuw profiel aanmaken" -#: ../../mod/connedit.php:697 -msgid "none" -msgstr "geen" +#: ../../include/identity.php:934 ../../include/nav.php:90 +msgid "Edit Profile" +msgstr "Profiel bewerken" -#: ../../mod/connedit.php:702 -msgid "Apply these permissions automatically" -msgstr "Deze permissies automatisch toepassen" +#: ../../include/identity.php:951 +msgid "Visible to everybody" +msgstr "Voor iedereen zichtbaar" -#: ../../mod/connedit.php:702 -msgid "Connection requests will be approved without your interaction" -msgstr "Connectieverzoeken zullen automatisch worden geaccepteerd" +#: ../../include/identity.php:1026 ../../include/identity.php:1281 +msgid "Gender:" +msgstr "Geslacht:" -#: ../../mod/connedit.php:704 -msgid "This connection's primary address is" -msgstr "Het primaire kanaaladres van deze connectie is" +#: ../../include/identity.php:1027 ../../include/identity.php:1325 +msgid "Status:" +msgstr "Status:" -#: ../../mod/connedit.php:705 -msgid "Available locations:" -msgstr "Beschikbare locaties:" +#: ../../include/identity.php:1028 ../../include/identity.php:1336 +msgid "Homepage:" +msgstr "Homepagina:" -#: ../../mod/connedit.php:709 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." -msgstr "Permissies die op deze pagina staan vermeld worden op alle nieuwe connecties toegepast." +#: ../../include/identity.php:1029 +msgid "Online Now" +msgstr "Nu online" -#: ../../mod/connedit.php:711 -msgid "Slide to adjust your degree of friendship" -msgstr "Schuif om te bepalen hoe goed je iemand kent en/of mag" +#: ../../include/identity.php:1117 ../../include/identity.php:1193 +msgid "F d" +msgstr "d F" -#: ../../mod/connedit.php:713 -msgid "Slide to adjust your rating" -msgstr "Gebruik de schuif om je beoordeling te geven" +#: ../../include/identity.php:1173 +msgid "Birthday Reminders" +msgstr "Verjaardagsherinneringen" -#: ../../mod/connedit.php:714 ../../mod/connedit.php:719 -msgid "Optionally explain your rating" -msgstr "Verklaar jouw beoordeling (niet verplicht)" +#: ../../include/identity.php:1174 +msgid "Birthdays this week:" +msgstr "Verjaardagen deze week:" -#: ../../mod/connedit.php:716 -msgid "Custom Filter" -msgstr "Berichtenfilter" +#: ../../include/identity.php:1225 +msgid "[No description]" +msgstr "[Geen omschrijving]" -#: ../../mod/connedit.php:717 -msgid "Only import posts with this text" -msgstr "Importeer alleen berichten met deze tekst" +#: ../../include/identity.php:1243 +msgid "Event Reminders" +msgstr "Herinneringen" -#: ../../mod/connedit.php:717 ../../mod/connedit.php:718 -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" +#: ../../include/identity.php:1244 +msgid "Events this week:" +msgstr "Gebeurtenissen deze week:" -#: ../../mod/connedit.php:718 -msgid "Do not import posts with this text" -msgstr "Importeer geen berichten met deze tekst" +#: ../../include/identity.php:1286 +msgid "Like this channel" +msgstr "Vind dit kanaal leuk" -#: ../../mod/connedit.php:720 -msgid "This information is public!" -msgstr "Deze informatie is openbaar!" +#: ../../include/identity.php:1310 +msgid "j F, Y" +msgstr "F j Y" -#: ../../mod/connedit.php:725 -msgid "Connection Pending Approval" -msgstr "Connectie moet nog geaccepteerd worden" +#: ../../include/identity.php:1311 +msgid "j F" +msgstr "F j" -#: ../../mod/connedit.php:728 -msgid "inherited" -msgstr "geërfd" +#: ../../include/identity.php:1318 +msgid "Birthday:" +msgstr "Geboortedatum:" -#: ../../mod/connedit.php:730 +#: ../../include/identity.php:1331 #, 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." +msgid "for %1$d %2$s" +msgstr "voor %1$d %2$s" -#: ../../mod/connedit.php:732 -msgid "Their Settings" -msgstr "Hun instellingen" +#: ../../include/identity.php:1334 +msgid "Sexual Preference:" +msgstr "Seksuele voorkeur:" -#: ../../mod/connedit.php:733 -msgid "My Settings" -msgstr "Mijn instellingen" +#: ../../include/identity.php:1340 +msgid "Tags:" +msgstr "Tags:" -#: ../../mod/connedit.php:735 -msgid "Individual Permissions" -msgstr "Individuele permissies" +#: ../../include/identity.php:1342 +msgid "Political Views:" +msgstr "Politieke overtuigingen:" -#: ../../mod/connedit.php:736 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can not change those" -" settings here." -msgstr "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele instellingen. Je kan je deze overgeërfde permissies hier niet veranderen." +#: ../../include/identity.php:1344 +msgid "Religion:" +msgstr "Religie:" -#: ../../mod/connedit.php:737 -msgid "" -"Some permissions may be inherited from your channel's privacy settings, which have higher " -"priority than individual settings. You can change those settings here but " -"they wont have any impact unless the inherited setting changes." -msgstr "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele permissies. Je kan de permissies hier veranderen, maar die hebben geen effect, tenzij de overgeërfde permissies worden veranderd. " +#: ../../include/identity.php:1348 +msgid "Hobbies/Interests:" +msgstr "Hobby's/interesses:" -#: ../../mod/connedit.php:738 -msgid "Last update:" -msgstr "Laatste wijziging:" +#: ../../include/identity.php:1350 +msgid "Likes:" +msgstr "Houdt van:" -#: ../../mod/network.php:91 -msgid "No such group" -msgstr "Collectie niet gevonden" +#: ../../include/identity.php:1352 +msgid "Dislikes:" +msgstr "Houdt niet van:" -#: ../../mod/network.php:131 -msgid "No such channel" -msgstr "Niet zo'n kanaal" +#: ../../include/identity.php:1354 +msgid "Contact information and Social Networks:" +msgstr "Contactinformatie en sociale netwerken:" -#: ../../mod/network.php:136 -msgid "forum" -msgstr "forum" +#: ../../include/identity.php:1356 +msgid "My other channels:" +msgstr "Mijn andere kanalen" -#: ../../mod/network.php:148 -msgid "Search Results For:" -msgstr "Zoekresultaten voor:" +#: ../../include/identity.php:1358 +msgid "Musical interests:" +msgstr "Muzikale interesses:" -#: ../../mod/network.php:212 -msgid "Privacy group is empty" -msgstr "Privacygroep is leeg" +#: ../../include/identity.php:1360 +msgid "Books, literature:" +msgstr "Boeken, literatuur:" -#: ../../mod/network.php:221 -msgid "Privacy group: " -msgstr "Privacygroep: " +#: ../../include/identity.php:1362 +msgid "Television:" +msgstr "Televisie:" -#: ../../mod/network.php:247 -msgid "Invalid connection." -msgstr "Ongeldige connectie." +#: ../../include/identity.php:1364 +msgid "Film/dance/culture/entertainment:" +msgstr "Films/dansen/cultuur/vermaak:" -#: ../../mod/cover_photo.php:130 ../../mod/cover_photo.php:177 -msgid "Cover Photos" -msgstr "Omslagfoto's" +#: ../../include/identity.php:1366 +msgid "Love/Romance:" +msgstr "Liefde/romantiek:" -#: ../../mod/cover_photo.php:352 -msgid "Upload Cover Photo" -msgstr "Omslagfoto uploaden" +#: ../../include/identity.php:1368 +msgid "Work/employment:" +msgstr "Werk/beroep:" -#: ../../mod/profiles.php:19 ../../mod/profiles.php:184 -#: ../../mod/profiles.php:241 ../../mod/profiles.php:620 -msgid "Profile not found." -msgstr "Profiel niet gevonden." +#: ../../include/identity.php:1370 +msgid "School/education:" +msgstr "School/opleiding:" -#: ../../mod/profiles.php:39 -msgid "Profile deleted." -msgstr "Profiel verwijderd." +#: ../../include/identity.php:1390 +msgid "Like this thing" +msgstr "Vind dit ding leuk" -#: ../../mod/profiles.php:63 ../../mod/profiles.php:99 -msgid "Profile-" -msgstr "Profiel-" +#: ../../include/notify.php:20 +msgid "created a new post" +msgstr "maakte een nieuw bericht aan" -#: ../../mod/profiles.php:84 ../../mod/profiles.php:127 -msgid "New profile created." -msgstr "Nieuw profiel aangemaakt." +#: ../../include/notify.php:21 +#, php-format +msgid "commented on %s's post" +msgstr "gaf een reactie op een bericht van %s" -#: ../../mod/profiles.php:105 -msgid "Profile unavailable to clone." -msgstr "Profiel niet beschikbaar om te klonen" +#: ../../include/ItemObject.php:89 ../../include/conversation.php:664 +msgid "Private Message" +msgstr "Niet voor iedereen zichtbaar" -#: ../../mod/profiles.php:146 -msgid "Profile unavailable to export." -msgstr "Geen profiel beschikbaar om te exporteren" +#: ../../include/ItemObject.php:126 ../../include/conversation.php:656 +msgid "Select" +msgstr "Kies" -#: ../../mod/profiles.php:251 -msgid "Profile Name is required." -msgstr "Profielnaam is vereist" +#: ../../include/ItemObject.php:130 +msgid "Save to Folder" +msgstr "In map opslaan" -#: ../../mod/profiles.php:422 -msgid "Marital Status" -msgstr "Huwelijke status" +#: ../../include/ItemObject.php:151 +msgid "I will attend" +msgstr "Aanwezig" -#: ../../mod/profiles.php:426 -msgid "Romantic Partner" -msgstr "Romantische partner" +#: ../../include/ItemObject.php:151 +msgid "I will not attend" +msgstr "Niet aanwezig" -#: ../../mod/profiles.php:430 ../../mod/profiles.php:735 -msgid "Likes" -msgstr "Houdt van" +#: ../../include/ItemObject.php:151 +msgid "I might attend" +msgstr "Mogelijk aanwezig" -#: ../../mod/profiles.php:434 ../../mod/profiles.php:736 -msgid "Dislikes" -msgstr "Houdt niet van" +#: ../../include/ItemObject.php:161 +msgid "I agree" +msgstr "Eens" -#: ../../mod/profiles.php:438 ../../mod/profiles.php:743 -msgid "Work/Employment" -msgstr "Werk/arbeid" +#: ../../include/ItemObject.php:161 +msgid "I disagree" +msgstr "Oneens" -#: ../../mod/profiles.php:441 -msgid "Religion" -msgstr "Religie" +#: ../../include/ItemObject.php:161 +msgid "I abstain" +msgstr "Onthouding" -#: ../../mod/profiles.php:445 -msgid "Political Views" -msgstr "Politieke overtuigingen" +#: ../../include/ItemObject.php:212 +msgid "Add Star" +msgstr "Ster toevoegen" -#: ../../mod/profiles.php:449 ../../mod/id.php:33 -msgid "Gender" -msgstr "Geslacht" +#: ../../include/ItemObject.php:213 +msgid "Remove Star" +msgstr "Ster verwijderen" -#: ../../mod/profiles.php:453 -msgid "Sexual Preference" -msgstr "Seksuele voorkeur" +#: ../../include/ItemObject.php:214 +msgid "Toggle Star Status" +msgstr "Ster toevoegen of verwijderen" -#: ../../mod/profiles.php:457 -msgid "Homepage" -msgstr "Homepage" +#: ../../include/ItemObject.php:218 +msgid "starred" +msgstr "met ster" -#: ../../mod/profiles.php:461 -msgid "Interests" -msgstr "Interesses" +#: ../../include/ItemObject.php:227 ../../include/conversation.php:671 +msgid "Message signature validated" +msgstr "Berichtkenmerk gevalideerd" -#: ../../mod/profiles.php:555 -msgid "Profile updated." -msgstr "Profiel bijgewerkt" +#: ../../include/ItemObject.php:228 ../../include/conversation.php:672 +msgid "Message signature incorrect" +msgstr "Berichtkenmerk onjuist" -#: ../../mod/profiles.php:644 -msgid "Hide your connections list from viewers of this profile" -msgstr "Laat de lijst met connecties niet aan bezoekers van dit profiel zien." +#: ../../include/ItemObject.php:236 +msgid "Add Tag" +msgstr "Tag toevoegen" -#: ../../mod/profiles.php:686 -msgid "Edit Profile Details" -msgstr "Profiel bewerken" +#: ../../include/ItemObject.php:254 ../../include/taxonomy.php:328 +msgid "like" +msgstr "vind dit leuk" -#: ../../mod/profiles.php:688 -msgid "View this profile" -msgstr "Profiel weergeven" +#: ../../include/ItemObject.php:255 ../../include/taxonomy.php:329 +msgid "dislike" +msgstr "vind dit niet leuk" -#: ../../mod/profiles.php:690 -msgid "Change cover photo" -msgstr "Omslagfoto wijzigen" +#: ../../include/ItemObject.php:259 +msgid "Share This" +msgstr "Delen" -#: ../../mod/profiles.php:692 -msgid "Create a new profile using these settings" -msgstr "Een nieuw profiel aanmaken met dit profiel als basis" +#: ../../include/ItemObject.php:259 +msgid "share" +msgstr "delen" -#: ../../mod/profiles.php:693 -msgid "Clone this profile" -msgstr "Dit profiel klonen" +#: ../../include/ItemObject.php:268 +msgid "Delivery Report" +msgstr "Afleveringsrapport" -#: ../../mod/profiles.php:694 -msgid "Delete this profile" -msgstr "Dit profiel verwijderen" +#: ../../include/ItemObject.php:286 +#, php-format +msgid "%d comment" +msgid_plural "%d comments" +msgstr[0] "%d reactie" +msgstr[1] "%d reacties weergeven" -#: ../../mod/profiles.php:695 -msgid "Add profile things" -msgstr "Dingen aan je profiel toevoegen" +#: ../../include/ItemObject.php:315 ../../include/ItemObject.php:316 +#, php-format +msgid "View %s's profile - %s" +msgstr "Profiel van %s bekijken - %s" -#: ../../mod/profiles.php:698 -msgid "Relation" -msgstr "Relatie" +#: ../../include/ItemObject.php:319 +msgid "to" +msgstr "aan" -#: ../../mod/profiles.php:701 -msgid "Import profile from file" -msgstr "Profiel vanuit bestand importeren" +#: ../../include/ItemObject.php:320 +msgid "via" +msgstr "via" -#: ../../mod/profiles.php:702 -msgid "Export profile to file" -msgstr "Profiel naar bestand exporteren" +#: ../../include/ItemObject.php:321 +msgid "Wall-to-Wall" +msgstr "Kanaal-naar-kanaal" -#: ../../mod/profiles.php:703 -msgid "Your gender" -msgstr "Jouw geslacht" +#: ../../include/ItemObject.php:322 +msgid "via Wall-To-Wall:" +msgstr "via kanaal-naar-kanaal" -#: ../../mod/profiles.php:704 -msgid "Marital status" -msgstr "Burgerlijke staat" +#: ../../include/ItemObject.php:334 ../../include/conversation.php:719 +#, php-format +msgid "from %s" +msgstr "van %s" -#: ../../mod/profiles.php:705 -msgid "Sexual preference" -msgstr "Seksuele voorkeur" +#: ../../include/ItemObject.php:337 ../../include/conversation.php:722 +#, php-format +msgid "last edited: %s" +msgstr "laatst bewerkt: %s" -#: ../../mod/profiles.php:708 -msgid "Profile name" -msgstr "Profielnaam" +#: ../../include/ItemObject.php:338 ../../include/conversation.php:723 +#, php-format +msgid "Expires: %s" +msgstr "Verloopt: %s" -#: ../../mod/profiles.php:710 -msgid "This is your default profile." -msgstr "Dit is jouw standaardprofiel" +#: ../../include/ItemObject.php:362 ../../bookmarker/bookmarker.php:45 +msgid "Save Bookmarks" +msgstr "Bladwijzers opslaan" -#: ../../mod/profiles.php:712 -msgid "Your full name" -msgstr "Jouw volledige naam" +#: ../../include/ItemObject.php:363 +msgid "Add to Calendar" +msgstr "Aan agenda toevoegen" -#: ../../mod/profiles.php:713 -msgid "Title/Description" -msgstr "Titel/omschrijving" +#: ../../include/ItemObject.php:372 +msgid "Mark all seen" +msgstr "Markeer alles als bekeken" -#: ../../mod/profiles.php:716 -msgid "Street address" -msgstr "Straat en huisnummer" +#: ../../include/ItemObject.php:413 ../../include/js_strings.php:7 +msgid "[+] show all" +msgstr "[+] alle" -#: ../../mod/profiles.php:717 -msgid "Locality/City" -msgstr "Woonplaats" +#: ../../include/ItemObject.php:709 +msgid "Image" +msgstr "Afbeelding" -#: ../../mod/profiles.php:718 -msgid "Region/State" -msgstr "Provincie/gewest/deelstaat" +#: ../../include/ItemObject.php:710 +msgid "Insert Link" +msgstr "Link invoegen" -#: ../../mod/profiles.php:719 -msgid "Postal/Zip code" -msgstr "Postcode" +#: ../../include/ItemObject.php:711 +msgid "Video" +msgstr "Video" -#: ../../mod/profiles.php:720 -msgid "Country" -msgstr "Land" +#: ../../include/account.php:28 +msgid "Not a valid email address" +msgstr "Geen geldig e-mailadres" -#: ../../mod/profiles.php:725 -msgid "Who (if applicable)" -msgstr "Wie (wanneer van toepassing)" +#: ../../include/account.php:30 +msgid "Your email domain is not among those allowed on this site" +msgstr "Jouw e-maildomein is op deze hub niet toegestaan" -#: ../../mod/profiles.php:725 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" -msgstr "Voorbeelden: petra123, Petra Jansen, petra@voorbeeld.nl" +#: ../../include/account.php:36 +msgid "Your email address is already registered at this site." +msgstr "Jouw e-mailadres is al op deze hub geregistreerd." -#: ../../mod/profiles.php:726 -msgid "Since (date)" -msgstr "Sinds (datum)" +#: ../../include/account.php:68 +msgid "An invitation is required." +msgstr "Een uitnodiging is vereist" -#: ../../mod/profiles.php:729 -msgid "Tell us about yourself" -msgstr "Vertel ons iets over jezelf" +#: ../../include/account.php:72 +msgid "Invitation could not be verified." +msgstr "Uitnodiging kon niet geverifieerd worden" -#: ../../mod/profiles.php:730 ../../mod/id.php:27 -msgid "Homepage URL" -msgstr "URL homepagina" +#: ../../include/account.php:122 +msgid "Please enter the required information." +msgstr "Vul de vereiste informatie in." -#: ../../mod/profiles.php:731 -msgid "Hometown" -msgstr "Oorspronkelijk uit" +#: ../../include/account.php:189 +msgid "Failed to store account information." +msgstr "Account-informatie kon niet opgeslagen worden." -#: ../../mod/profiles.php:732 -msgid "Political views" -msgstr "Politieke overtuigingen" +#: ../../include/account.php:249 +#, php-format +msgid "Registration confirmation for %s" +msgstr "Registratiebevestiging voor %s" -#: ../../mod/profiles.php:733 -msgid "Religious views" -msgstr "Religieuze overtuigingen" +#: ../../include/account.php:315 +#, php-format +msgid "Registration request at %s" +msgstr "Registratiebevestiging voor %s" -#: ../../mod/profiles.php:734 -msgid "Keywords used in directory listings" -msgstr "Trefwoorden voor in de kanalengids" +#: ../../include/account.php:317 ../../include/account.php:344 +#: ../../include/account.php:404 ../../include/network.php:1875 +msgid "Administrator" +msgstr "Beheerder" -#: ../../mod/profiles.php:734 -msgid "Example: fishing photography software" -msgstr "Voorbeeld: muziek, fotografie, software" +#: ../../include/account.php:339 +msgid "your registration password" +msgstr "jouw registratiewachtwoord" -#: ../../mod/profiles.php:737 -msgid "Musical interests" -msgstr "Muzikale interesses" +#: ../../include/account.php:342 ../../include/account.php:402 +#, php-format +msgid "Registration details for %s" +msgstr "Registratiegegevens voor %s" -#: ../../mod/profiles.php:738 -msgid "Books, literature" -msgstr "Boeken/literatuur" +#: ../../include/account.php:414 +msgid "Account approved." +msgstr "Account goedgekeurd" -#: ../../mod/profiles.php:739 -msgid "Television" -msgstr "Televisie" +#: ../../include/account.php:454 +#, php-format +msgid "Registration revoked for %s" +msgstr "Registratie ingetrokken voor %s" -#: ../../mod/profiles.php:740 -msgid "Film/Dance/Culture/Entertainment" -msgstr "Film/dans/cultuur/entertainment" +#: ../../include/account.php:506 +msgid "Account verified. Please login." +msgstr "Account is geverifieerd. Je kan inloggen." -#: ../../mod/profiles.php:741 -msgid "Hobbies/Interests" -msgstr "Hobby's/interesses" +#: ../../include/account.php:719 ../../include/account.php:721 +msgid "Click here to upgrade." +msgstr "Klik hier om te upgraden." -#: ../../mod/profiles.php:742 -msgid "Love/Romance" -msgstr "Liefde/romantiek" +#: ../../include/account.php:727 +msgid "This action exceeds the limits set by your subscription plan." +msgstr "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden." -#: ../../mod/profiles.php:744 -msgid "School/Education" -msgstr "School/opleiding" +#: ../../include/account.php:732 +msgid "This action is not available under your subscription plan." +msgstr "Deze handeling is niet mogelijk met jouw abonnement." -#: ../../mod/profiles.php:745 -msgid "Contact information and social networks" -msgstr "Contactinformatie en sociale netwerken" +#: ../../include/profile_selectors.php:6 +msgid "Currently Male" +msgstr "Momenteel man" -#: ../../mod/profiles.php:746 -msgid "My other channels" -msgstr "Mijn andere kanalen" +#: ../../include/profile_selectors.php:6 +msgid "Currently Female" +msgstr "Momenteel vrouw" -#: ../../mod/dav.php:121 -msgid "$Projectname channel" -msgstr "$Projectname-kanaal" - -#: ../../mod/profperm.php:29 ../../mod/profperm.php:58 -msgid "Invalid profile identifier." -msgstr "Ongeldige profiel-identificator" +#: ../../include/profile_selectors.php:6 +msgid "Mostly Male" +msgstr "Voornamelijk man" -#: ../../mod/profperm.php:110 -msgid "Profile Visibility Editor" -msgstr "Zichtbaarheid profiel " +#: ../../include/profile_selectors.php:6 +msgid "Mostly Female" +msgstr "Voornamelijk vrouw" -#: ../../mod/profperm.php:114 -msgid "Click on a contact to add or remove." -msgstr "Klik op een connectie om deze toe te voegen of te verwijderen" +#: ../../include/profile_selectors.php:6 +msgid "Transgender" +msgstr "Transgender" -#: ../../mod/profperm.php:123 -msgid "Visible To" -msgstr "Zichtbaar voor" +#: ../../include/profile_selectors.php:6 +msgid "Intersex" +msgstr "Interseksueel" -#: ../../mod/directory.php:239 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "%d beoordeling" -msgstr[1] "%d beoordelingen" +#: ../../include/profile_selectors.php:6 +msgid "Transsexual" +msgstr "Transseksueel" -#: ../../mod/directory.php:250 -msgid "Gender: " -msgstr "Geslacht:" +#: ../../include/profile_selectors.php:6 +msgid "Hermaphrodite" +msgstr "Hermafrodiet" -#: ../../mod/directory.php:252 -msgid "Status: " -msgstr "Status: " +#: ../../include/profile_selectors.php:6 +msgid "Neuter" +msgstr "Genderneutraal" -#: ../../mod/directory.php:254 -msgid "Homepage: " -msgstr "Homepage: " +#: ../../include/profile_selectors.php:6 +msgid "Non-specific" +msgstr "Niet gespecificeerd" -#: ../../mod/directory.php:313 -msgid "Description:" -msgstr "Omschrijving:" +#: ../../include/profile_selectors.php:6 +#: ../../include/profile_selectors.php:23 +#: ../../include/profile_selectors.php:61 +#: ../../include/profile_selectors.php:97 ../../include/permissions.php:881 +msgid "Other" +msgstr "Anders" -#: ../../mod/directory.php:322 -msgid "Public Forum:" -msgstr "Openbaar forum:" +#: ../../include/profile_selectors.php:6 +msgid "Undecided" +msgstr "Nog niet beslist" -#: ../../mod/directory.php:325 -msgid "Keywords: " -msgstr "Trefwoorden: " +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Males" +msgstr "Mannen" -#: ../../mod/directory.php:328 -msgid "Don't suggest" -msgstr "Niet voorstellen" +#: ../../include/profile_selectors.php:42 +#: ../../include/profile_selectors.php:61 +msgid "Females" +msgstr "Vrouwen" -#: ../../mod/directory.php:330 -msgid "Common connections:" -msgstr "Gemeenschappelijke connecties:" +#: ../../include/profile_selectors.php:42 +msgid "Gay" +msgstr "Homoseksueel" -#: ../../mod/directory.php:379 -msgid "Global Directory" -msgstr "Volledige kanalengids" +#: ../../include/profile_selectors.php:42 +msgid "Lesbian" +msgstr "Lesbisch" -#: ../../mod/directory.php:379 -msgid "Local Directory" -msgstr "Lokale kanalengids" +#: ../../include/profile_selectors.php:42 +msgid "No Preference" +msgstr "Geen voorkeur" -#: ../../mod/directory.php:385 -msgid "Finding:" -msgstr "Gezocht naar:" +#: ../../include/profile_selectors.php:42 +msgid "Bisexual" +msgstr "Biseksueel" -#: ../../mod/directory.php:390 -msgid "next page" -msgstr "volgende pagina" +#: ../../include/profile_selectors.php:42 +msgid "Autosexual" +msgstr "Autoseksueel" -#: ../../mod/directory.php:390 -msgid "previous page" -msgstr "vorige pagina" +#: ../../include/profile_selectors.php:42 +msgid "Abstinent" +msgstr "Seksuele onthouding" -#: ../../mod/directory.php:391 -msgid "Sort options" -msgstr "Sorteeropties" +#: ../../include/profile_selectors.php:42 +msgid "Virgin" +msgstr "Maagd" -#: ../../mod/directory.php:392 -msgid "Alphabetic" -msgstr "Alfabetisch" +#: ../../include/profile_selectors.php:42 +msgid "Deviant" +msgstr "Afwijkend" -#: ../../mod/directory.php:393 -msgid "Reverse Alphabetic" -msgstr "Omgekeerd alfabetisch" +#: ../../include/profile_selectors.php:42 +msgid "Fetish" +msgstr "Fetisj" -#: ../../mod/directory.php:394 -msgid "Newest to Oldest" -msgstr "Nieuw naar oud" +#: ../../include/profile_selectors.php:42 +msgid "Oodles" +msgstr "Veel" -#: ../../mod/directory.php:395 -msgid "Oldest to Newest" -msgstr "Oud naar nieuw" +#: ../../include/profile_selectors.php:42 +msgid "Nonsexual" +msgstr "Aseksueel" -#: ../../mod/directory.php:412 -msgid "No entries (some entries may be hidden)." -msgstr "Niets gevonden (sommige kanalen kunnen verborgen zijn)." +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Single" +msgstr "Alleen" -#: ../../mod/dirsearch.php:21 ../../mod/regdir.php:45 -msgid "This site is not a directory server" -msgstr "Deze hub is geen kanalengidshub (directoryserver)" +#: ../../include/profile_selectors.php:80 +msgid "Lonely" +msgstr "Eenzaam" -#: ../../mod/dirsearch.php:29 -msgid "This directory server requires an access token" -msgstr "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig" +#: ../../include/profile_selectors.php:80 +msgid "Available" +msgstr "Beschikbaar" -#: ../../mod/pubsites.php:21 -msgid "" -"The listed hubs allow public registration for the $Projectname network. All " -"hubs in the network are interlinked so membership on any of them conveys " -"membership in the network as a whole. Some hubs may require subscription or " -"provide tiered service plans. The hub itself may provide " -"additional details." -msgstr "Op de hier weergegeven hubs kan iedereen zich voor het $Projectname-netwerk aanmelden. Alle hubs in het netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen een financiële tegemoetkoming voor bepaalde uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven." +#: ../../include/profile_selectors.php:80 +msgid "Unavailable" +msgstr "Niet beschikbaar" -#: ../../mod/pubsites.php:27 -msgid "Hub URL" -msgstr "Hub-URL" +#: ../../include/profile_selectors.php:80 +msgid "Has crush" +msgstr "Heeft een oogje op iemand" -#: ../../mod/pubsites.php:27 -msgid "Access Type" -msgstr "Toegangs-
 type" +#: ../../include/profile_selectors.php:80 +msgid "Infatuated" +msgstr "Smoorverliefd" -#: ../../mod/pubsites.php:27 -msgid "Registration Policy" -msgstr "Registratie-
 beleid" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Dating" +msgstr "Aan het daten" -#: ../../mod/pubsites.php:33 -msgid "Rate" -msgstr "Beoordeel" +#: ../../include/profile_selectors.php:80 +msgid "Unfaithful" +msgstr "Ontrouw" -#: ../../mod/dreport.php:23 -msgid "Invalid message" -msgstr "Ongeldig bericht" +#: ../../include/profile_selectors.php:80 +msgid "Sex Addict" +msgstr "Seksverslaafd" -#: ../../mod/dreport.php:55 -msgid "no results" -msgstr "geen resultaten" +#: ../../include/profile_selectors.php:80 +msgid "Friends/Benefits" +msgstr "Vriendschap plus" -#: ../../mod/dreport.php:60 -#, php-format -msgid "Delivery report for %1$s" -msgstr "Afleveringsrapport voor %1$s" +#: ../../include/profile_selectors.php:80 +msgid "Casual" +msgstr "Ongebonden/vluchtig" -#: ../../mod/dreport.php:74 -msgid "channel sync processed" -msgstr "kanaalsync verwerkt" +#: ../../include/profile_selectors.php:80 +msgid "Engaged" +msgstr "Verloofd" -#: ../../mod/dreport.php:78 -msgid "queued" -msgstr "in wachtrij" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Married" +msgstr "Getrouwd" -#: ../../mod/dreport.php:82 -msgid "posted" -msgstr "verstuurd" +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily married" +msgstr "Denkbeeldig getrouwd" -#: ../../mod/dreport.php:86 -msgid "accepted for delivery" -msgstr "geaccepteerd om afgeleverd te worden" +#: ../../include/profile_selectors.php:80 +msgid "Partners" +msgstr "Partners" -#: ../../mod/dreport.php:90 -msgid "updated" -msgstr "geüpdatet" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Cohabiting" +msgstr "Samenwonend" -#: ../../mod/dreport.php:93 -msgid "update ignored" -msgstr "update genegeerd" +#: ../../include/profile_selectors.php:80 +msgid "Common law" +msgstr "Common-law-huwelijk" -#: ../../mod/dreport.php:96 -msgid "permission denied" -msgstr "toegang geweigerd" +#: ../../include/profile_selectors.php:80 +msgid "Happy" +msgstr "Gelukkig" -#: ../../mod/dreport.php:100 -msgid "recipient not found" -msgstr "ontvanger niet gevonden" +#: ../../include/profile_selectors.php:80 +msgid "Not looking" +msgstr "Niet op zoek" -#: ../../mod/dreport.php:103 -msgid "mail recalled" -msgstr "Privébericht ingetrokken" +#: ../../include/profile_selectors.php:80 +msgid "Swinger" +msgstr "Swinger" -#: ../../mod/dreport.php:106 -msgid "duplicate mail received" -msgstr "dubbel privébericht ontvangen" +#: ../../include/profile_selectors.php:80 +msgid "Betrayed" +msgstr "Verraden" -#: ../../mod/dreport.php:109 -msgid "mail delivered" -msgstr "privébericht afgeleverd" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Separated" +msgstr "Uit elkaar" -#: ../../mod/editblock.php:118 -msgid "Delete block?" -msgstr "Blok verwijderen" +#: ../../include/profile_selectors.php:80 +msgid "Unstable" +msgstr "Onstabiel" -#: ../../mod/editblock.php:182 -msgid "Edit Block" -msgstr "Blok bewerken" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Divorced" +msgstr "Gescheiden" -#: ../../mod/new_channel.php:117 ../../mod/manage.php:130 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." -msgstr "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt." - -#: ../../mod/new_channel.php:124 ../../mod/register.php:227 -msgid "Name or caption" -msgstr "Naam" - -#: ../../mod/new_channel.php:124 ../../mod/register.php:227 -msgid "Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\"" -msgstr "Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Computerforum\"" +#: ../../include/profile_selectors.php:80 +msgid "Imaginarily divorced" +msgstr "Denkbeeldig gescheiden" -#: ../../mod/new_channel.php:126 ../../mod/register.php:229 -msgid "Choose a short nickname" -msgstr "Korte bijnaam" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "Widowed" +msgstr "Weduwnaar/weduwe" -#: ../../mod/new_channel.php:126 ../../mod/register.php:229 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address " -"e.g. nickname%s" -msgstr "Deze bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres van jouw kanaal aan te maken, die je dan met anderen kunt delen. Bijvoorbeeld: bijnaam%s" +#: ../../include/profile_selectors.php:80 +msgid "Uncertain" +msgstr "Onzeker" -#: ../../mod/new_channel.php:128 ../../mod/register.php:231 -msgid "Channel role and privacy" -msgstr "Kanaaltype en privacy" +#: ../../include/profile_selectors.php:80 +#: ../../include/profile_selectors.php:97 +msgid "It's complicated" +msgstr "Het is ingewikkeld" -#: ../../mod/new_channel.php:128 ../../mod/register.php:231 -msgid "Select a channel role with your privacy requirements." -msgstr "Kies een kanaaltype met het door jou gewenste privacyniveau." +#: ../../include/profile_selectors.php:80 +msgid "Don't care" +msgstr "Maakt mij niks uit" -#: ../../mod/new_channel.php:128 ../../mod/register.php:231 -msgid "Read more about roles" -msgstr "Lees meer over kanaaltypes" +#: ../../include/profile_selectors.php:80 +msgid "Ask me" +msgstr "Vraag het me" -#: ../../mod/new_channel.php:131 -msgid "Create Channel" -msgstr "Kanaal aanmaken" +#: ../../include/acl_selectors.php:218 +msgid "Visible to your default audience" +msgstr "Voor iedereen zichtbaar, mits niet anders ingesteld" -#: ../../mod/new_channel.php:132 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "Een kanaal is jouw identiteit in dit netwerk. Het kan bijvoorbeeld een persoon, een blog of een forum vertegenwoordigen. Door met elkaar te verbinden kunnen kanalen, met behulp van uitgebreide permissies, informatie uitwisselen." +#: ../../include/acl_selectors.php:243 +msgid "Show" +msgstr "Tonen" -#: ../../mod/new_channel.php:133 -msgid "" -"or import an existing channel from another location." -msgstr "Of importeer een bestaand kanaal vanaf een andere locatie" +#: ../../include/acl_selectors.php:244 +msgid "Don't show" +msgstr "Niet tonen" -#: ../../mod/editlayout.php:112 -msgid "Delete layout?" -msgstr "Lay-out verwijderen?" +#: ../../include/acl_selectors.php:249 +msgid "Other networks and post services" +msgstr "Andere netwerken en diensten" -#: ../../mod/editlayout.php:160 ../../mod/layouts.php:124 -msgid "Layout Description (Optional)" -msgstr "Lay-out-omschrijving (optioneel)" +#: ../../include/activities.php:42 +msgid " and " +msgstr " en " -#: ../../mod/editlayout.php:162 ../../mod/layouts.php:121 -#: ../../mod/layouts.php:180 -msgid "Layout Name" -msgstr "Naam lay-out" +#: ../../include/activities.php:50 +msgid "public profile" +msgstr "openbaar profiel" -#: ../../mod/editlayout.php:179 -msgid "Edit Layout" -msgstr "Lay-out bewerken" +#: ../../include/activities.php:59 +#, php-format +msgid "%1$s changed %2$s to “%3$s”" +msgstr "%1$s veranderde %2$s naar “%3$s”" -#: ../../mod/rate.php:158 -msgid "Website:" -msgstr "Website:" +#: ../../include/activities.php:60 +#, php-format +msgid "Visit %1$s's %2$s" +msgstr "Bezoek het %2$s van %1$s" -#: ../../mod/rate.php:161 +#: ../../include/activities.php:63 #, php-format -msgid "Remote Channel [%s] (not yet known on this site)" -msgstr "Kanaal op afstand [%s] (nog niet op deze hub bekend)" +msgid "%1$s has an updated %2$s, changing %3$s." +msgstr "%1$s heeft een aangepaste %2$s, %3$s veranderd." -#: ../../mod/rate.php:162 -msgid "Rating (this information is public)" -msgstr "Beoordeling (deze informatie is openbaar)" +#: ../../include/api.php:1338 +msgid "Public Timeline" +msgstr "Openbare tijdlijn" -#: ../../mod/rate.php:163 -msgid "Optionally explain your rating (this information is public)" -msgstr "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)" +#: ../../include/apps.php:128 +msgid "Site Admin" +msgstr "Hubbeheerder" -#: ../../mod/webpages.php:195 -msgid "Page Title" -msgstr "Paginatitel" +#: ../../include/apps.php:129 ../../include/conversation.php:1694 +#: ../../include/nav.php:102 +msgid "Bookmarks" +msgstr "Bladwijzers" -#: ../../mod/editwebpage.php:153 -msgid "Delete webpage?" -msgstr "Webpagina verwijderen?" +#: ../../include/apps.php:130 +msgid "Address Book" +msgstr "Connecties" -#: ../../mod/editwebpage.php:173 -msgid "Page link title" -msgstr "Titel van paginalink" +#: ../../include/apps.php:131 ../../include/nav.php:110 ../../boot.php:1602 +msgid "Login" +msgstr "Inloggen" -#: ../../mod/editwebpage.php:223 -msgid "Edit Webpage" -msgstr "Webpagina bewerken" +#: ../../include/apps.php:133 ../../include/nav.php:182 +msgid "Grid" +msgstr "Grid" -#: ../../mod/blocks.php:95 ../../mod/blocks.php:150 -msgid "Block Name" -msgstr "Bloknaam" +#: ../../include/apps.php:137 ../../include/nav.php:185 +msgid "Channel Home" +msgstr "Jouw kanaal" -#: ../../mod/blocks.php:151 -msgid "Block Title" -msgstr "Bloktitel" +#: ../../include/apps.php:140 ../../include/conversation.php:1667 +#: ../../include/conversation.php:1670 ../../include/nav.php:204 +msgid "Events" +msgstr "Agenda" -#: ../../mod/ratings.php:69 -msgid "No ratings" -msgstr "Geen beoordelingen" +#: ../../include/apps.php:141 ../../include/nav.php:170 +msgid "Directory" +msgstr "Kanalengids" -#: ../../mod/ratings.php:100 -msgid "Rating: " -msgstr "Beoordeling: " +#: ../../include/apps.php:143 ../../include/nav.php:196 +msgid "Mail" +msgstr "Privéberichten" -#: ../../mod/ratings.php:101 -msgid "Website: " -msgstr "Website: " +#: ../../include/apps.php:146 ../../include/nav.php:96 +msgid "Chat" +msgstr "Chatten" -#: ../../mod/ratings.php:103 -msgid "Description: " -msgstr "Omschrijving: " +#: ../../include/apps.php:148 +msgid "Probe" +msgstr "Onderzoeken" -#: ../../mod/events.php:21 -msgid "Calendar entries imported." -msgstr "Agenda-items geïmporteerd." +#: ../../include/apps.php:149 +msgid "Suggest" +msgstr "Voorstellen" -#: ../../mod/events.php:23 -msgid "No calendar entries found." -msgstr "Geen agenda-items gevonden." +#: ../../include/apps.php:150 +msgid "Random Channel" +msgstr "Willekeurig kanaal" -#: ../../mod/events.php:100 -msgid "Event can not end before it has started." -msgstr "Gebeurtenis kan niet eindigen voordat het is begonnen" +#: ../../include/apps.php:151 +msgid "Invite" +msgstr "Uitnodigen " -#: ../../mod/events.php:102 ../../mod/events.php:111 ../../mod/events.php:131 -msgid "Unable to generate preview." -msgstr "Niet in staat om voorvertoning te genereren" +#: ../../include/apps.php:152 ../../include/widgets.php:1338 +msgid "Features" +msgstr "Extra functies" -#: ../../mod/events.php:109 -msgid "Event title and start time are required." -msgstr "Titel en begintijd van gebeurtenis zijn vereist." +#: ../../include/apps.php:154 +msgid "Post" +msgstr "Bericht" -#: ../../mod/events.php:129 ../../mod/events.php:254 -msgid "Event not found." -msgstr "Gebeurtenis niet gevonden" +#: ../../include/apps.php:252 +msgid "Install" +msgstr "Installeren" -#: ../../mod/events.php:444 -msgid "Edit event title" -msgstr "Titel bewerken" +#: ../../include/apps.php:257 +msgid "Purchase" +msgstr "Aanschaffen" -#: ../../mod/events.php:444 -msgid "Event title" -msgstr "Titel" +#: ../../include/network.php:659 +msgid "view full size" +msgstr "volledige grootte tonen" -#: ../../mod/events.php:446 -msgid "Categories (comma-separated list)" -msgstr "Categorieën (door komma's gescheiden lijst)" +#: ../../include/network.php:1827 ../../include/enotify.php:57 +msgid "$Projectname Notification" +msgstr "$Projectname-notificatie" -#: ../../mod/events.php:447 -msgid "Edit Category" -msgstr "Categorie" +#: ../../include/network.php:1828 ../../include/enotify.php:58 +msgid "$projectname" +msgstr "$projectname" -#: ../../mod/events.php:447 -msgid "Category" -msgstr "Categorie" +#: ../../include/network.php:1830 ../../include/enotify.php:60 +msgid "Thank You," +msgstr "Bedankt," -#: ../../mod/events.php:450 -msgid "Edit start date and time" -msgstr "Begindatum en -tijd bewerken" +#: ../../include/network.php:1832 ../../include/enotify.php:62 +#, php-format +msgid "%s Administrator" +msgstr "Beheerder %s" -#: ../../mod/events.php:450 -msgid "Start date and time" -msgstr "Begindatum en -tijd" +#: ../../include/network.php:1889 +msgid "No Subject" +msgstr "Geen onderwerp" -#: ../../mod/events.php:451 ../../mod/events.php:454 -msgid "Finish date and time are not known or not relevant" -msgstr "Einddatum en -tijd zijn niet bekend of niet van toepassing" +#: ../../include/bb2diaspora.php:398 +msgid "Attachments:" +msgstr "Bijlagen:" -#: ../../mod/events.php:453 -msgid "Edit finish date and time" -msgstr "Einddatum en -tijd bewerken" +#: ../../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" -#: ../../mod/events.php:453 -msgid "Finish date and time" -msgstr "Einddatum en -tijd" +#: ../../include/bb2diaspora.php:489 +msgid "$Projectname event notification:" +msgstr "Notificatie $Projectname-gebeurtenis:" -#: ../../mod/events.php:455 ../../mod/events.php:456 -msgid "Adjust for viewer timezone" -msgstr "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt" +#: ../../include/bb2diaspora.php:493 ../../include/event.php:30 +#: ../../include/text.php:1441 +msgid "Starts:" +msgstr "Start:" -#: ../../mod/events.php:455 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." -msgstr "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen." +#: ../../include/bb2diaspora.php:501 ../../include/event.php:40 +#: ../../include/text.php:1445 +msgid "Finishes:" +msgstr "Einde:" -#: ../../mod/events.php:457 -msgid "Edit Description" -msgstr "Omschrijving bewerken" +#: ../../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" -#: ../../mod/events.php:459 -msgid "Edit Location" -msgstr "Locatie bewerken" +#: ../../include/bbcode.php:162 ../../include/bbcode.php:851 +msgid "Encrypted content" +msgstr "Versleutelde inhoud" -#: ../../mod/events.php:462 ../../mod/events.php:464 -msgid "Share this event" -msgstr "Deel deze gebeurtenis" - -#: ../../mod/events.php:469 -msgid "Advanced Options" -msgstr "Geavanceerde opties" +#: ../../include/bbcode.php:179 +#, php-format +msgid "Install %s element: " +msgstr "Installeer %s-element: " -#: ../../mod/events.php:603 -msgid "Edit event" -msgstr "Gebeurtenis bewerken" +#: ../../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." -#: ../../mod/events.php:605 -msgid "Delete event" -msgstr "Gebeurtenis verwijderen" +#: ../../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" -#: ../../mod/events.php:639 -msgid "calendar" -msgstr "agenda" +#: ../../include/bbcode.php:545 +msgid "Different viewers will see this text differently" +msgstr "Deze tekst wordt per persoon anders weergeven." -#: ../../mod/events.php:699 -msgid "Event removed" -msgstr "Gebeurtenis verwijderd" +#: ../../include/bbcode.php:762 +msgid "$1 spoiler" +msgstr "$1 spoiler" -#: ../../mod/events.php:702 -msgid "Failed to remove event" -msgstr "Verwijderen gebeurtenis mislukt" +#: ../../include/bbcode.php:789 +msgid "$1 wrote:" +msgstr "$1 schreef:" -#: ../../mod/rbmark.php:90 -msgid "Select a bookmark folder" -msgstr "Kies een bladwijzermap" +#: ../../include/conversation.php:204 +#, php-format +msgid "%1$s is now connected with %2$s" +msgstr "%1$s is nu met %2$s verbonden" -#: ../../mod/rbmark.php:95 -msgid "Save Bookmark" -msgstr "Bladwijzer opslaan" +#: ../../include/conversation.php:239 +#, php-format +msgid "%1$s poked %2$s" +msgstr "%1$s heeft %2$s aangestoten" -#: ../../mod/rbmark.php:96 -msgid "URL of bookmark" -msgstr "URL van bladwijzer" +#: ../../include/conversation.php:243 ../../include/text.php:992 +#: ../../include/text.php:997 +msgid "poked" +msgstr "aangestoten" -#: ../../mod/rbmark.php:101 -msgid "Or enter new bookmark folder name" -msgstr "Of geef de naam op van een nieuwe bladwijzermap" +#: ../../include/conversation.php:691 +#, php-format +msgid "View %s's profile @ %s" +msgstr "Bekijk het profiel van %s @ %s" -#: ../../mod/ffsapi.php:8 -msgid "Share content from Firefox to $Projectname" -msgstr "Deel webpagina's vanuit Firefox met " +#: ../../include/conversation.php:710 +msgid "Categories:" +msgstr "Categorieën:" -#: ../../mod/ffsapi.php:11 -msgid "Activate the Firefox $Projectname provider" -msgstr "Activeer de $Projectname-service in Firefox" +#: ../../include/conversation.php:711 +msgid "Filed under:" +msgstr "Bewaard onder:" -#: ../../mod/register.php:45 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." -msgstr "Maximum toegestane dagelijkse registraties op deze $Projectname-hub bereikt. Probeer het morgen (UTC) nogmaals." +#: ../../include/conversation.php:738 +msgid "View in context" +msgstr "In context bekijken" -#: ../../mod/register.php:51 -msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." -msgstr "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden." +#: ../../include/conversation.php:850 +msgid "remove" +msgstr "verwijderen" -#: ../../mod/register.php:85 -msgid "Passwords do not match." -msgstr "Wachtwoorden komen niet met elkaar overeen." +#: ../../include/conversation.php:854 ../../include/nav.php:256 +msgid "Loading..." +msgstr "Aan het laden..." -#: ../../mod/register.php:127 -msgid "" -"Registration successful. Please check your email for validation " -"instructions." -msgstr "Registratie geslaagd. Controleer je e-mail voor instructies." +#: ../../include/conversation.php:855 +msgid "Delete Selected Items" +msgstr "Verwijder de geselecteerde items" -#: ../../mod/register.php:133 -msgid "Your registration is pending approval by the site owner." -msgstr "Jouw accountregistratie wacht op goedkeuring van de beheerder van deze $Projectname-hub." +#: ../../include/conversation.php:953 +msgid "View Source" +msgstr "Bron weergeven" -#: ../../mod/register.php:136 -msgid "Your registration can not be processed." -msgstr "Jouw registratie kan niet verwerkt worden." +#: ../../include/conversation.php:954 +msgid "Follow Thread" +msgstr "Conversatie volgen" -#: ../../mod/register.php:180 -msgid "Registration on this hub is disabled." -msgstr "Registreren van nieuwe accounts is op deze hub uitgeschakeld." +#: ../../include/conversation.php:955 +msgid "Unfollow Thread" +msgstr "Conversatie niet meer volgen" -#: ../../mod/register.php:189 -msgid "Registration on this hub is by approval only." -msgstr "Registraties op deze hub moeten eerst worden goedgekeurd." +#: ../../include/conversation.php:960 +msgid "Activity/Posts" +msgstr "Activiteit/berichten connectie" -#: ../../mod/register.php:190 -msgid "Register at another affiliated hub." -msgstr "Registreer op een andere hub." +#: ../../include/conversation.php:962 +msgid "Edit Connection" +msgstr "Connectie bewerken" -#: ../../mod/register.php:200 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." -msgstr "Deze $Projectname-hub heeft het maximum aantal dagelijks toegestane registraties bereikt. Probeer het morgen (UTC) nogmaals." +#: ../../include/conversation.php:963 +msgid "Message" +msgstr "Bericht" -#: ../../mod/register.php:211 -msgid "Terms of Service" -msgstr "Gebruiksvoorwaarden" +#: ../../include/conversation.php:1080 +#, php-format +msgid "%s likes this." +msgstr "%s vindt dit leuk." -#: ../../mod/register.php:217 +#: ../../include/conversation.php:1080 #, php-format -msgid "I accept the %s for this website" -msgstr "Ik accepteer de %s van deze $Projectname-hub" +msgid "%s doesn't like this." +msgstr "%s vindt dit niet leuk." -#: ../../mod/register.php:219 +#: ../../include/conversation.php:1084 #, php-format -msgid "I am over 13 years of age and accept the %s for this website" -msgstr "Ik ben 13 jaar of ouder en accepteer de %s van deze $Projectname-hub" +msgid "%2$d people like this." +msgid_plural "%2$d people like this." +msgstr[0] "%2$d persoon vindt dit leuk." +msgstr[1] "%2$d personen vinden dit leuk." -#: ../../mod/register.php:223 -msgid "Your email address" -msgstr "Jouw e-mailadres" +#: ../../include/conversation.php:1086 +#, php-format +msgid "%2$d people don't like this." +msgid_plural "%2$d people don't like this." +msgstr[0] "%2$d persoon vindt dit niet leuk." +msgstr[1] "%2$d personen vinden dit niet leuk." -#: ../../mod/register.php:224 -msgid "Choose a password" -msgstr "Geef een wachtwoord op" +#: ../../include/conversation.php:1092 +msgid "and" +msgstr "en" -#: ../../mod/register.php:225 -msgid "Please re-enter your password" -msgstr "Geef het wachtwoord opnieuw op" +#: ../../include/conversation.php:1095 +#, php-format +msgid ", and %d other people" +msgid_plural ", and %d other people" +msgstr[0] ", en %d ander persoon" +msgstr[1] ", en %d andere personen" -#: ../../mod/register.php:226 -msgid "Please enter your invitation code" -msgstr "Vul jouw uitnodigingscode in" +#: ../../include/conversation.php:1096 +#, php-format +msgid "%s like this." +msgstr "%s vinden dit leuk." -#: ../../mod/register.php:232 -msgid "no" -msgstr "Nee" +#: ../../include/conversation.php:1096 +#, php-format +msgid "%s don't like this." +msgstr "%s vinden dit niet leuk." -#: ../../mod/register.php:232 -msgid "yes" -msgstr "Ja" +#: ../../include/conversation.php:1169 +msgid "Visible to everybody" +msgstr "Voor iedereen zichtbaar" -#: ../../mod/register.php:246 -msgid "Membership on this site is by invitation only." -msgstr "Registreren op deze $Projectname-hub kan alleen op uitnodiging." +#: ../../include/conversation.php:1171 +msgid "Please enter a video link/URL:" +msgstr "Vul een videolink/URL in:" -#: ../../mod/register.php:258 -msgid "Proceed to create your first channel" -msgstr "Volgende stap: aanmaken van jouw eerste kanaal" +#: ../../include/conversation.php:1172 +msgid "Please enter an audio link/URL:" +msgstr "Vul een audiolink/URL in:" -#: ../../mod/regmod.php:11 -msgid "Please login." -msgstr "Inloggen." +#: ../../include/conversation.php:1173 +msgid "Tag term:" +msgstr "Tag:" -#: ../../mod/filer.php:48 -msgid "- select -" -msgstr "- kies map -" +#: ../../include/conversation.php:1175 +msgid "Where are you right now?" +msgstr "Waar bevind je je op dit moment?" -#: ../../mod/notifications.php:26 -msgid "Invalid request identifier." -msgstr "Ongeldige verzoek identificator (request identifier)" +#: ../../include/conversation.php:1211 +msgid "Page link name" +msgstr "Linknaam pagina" -#: ../../mod/notifications.php:35 -msgid "Discard" -msgstr "Annuleren" +#: ../../include/conversation.php:1214 +msgid "Post as" +msgstr "Bericht plaatsen als" -#: ../../mod/notifications.php:94 ../../mod/notify.php:53 -msgid "No more system notifications." -msgstr "Geen systeemnotificaties meer." +#: ../../include/conversation.php:1222 +msgid "upload photo" +msgstr "foto uploaden" -#: ../../mod/notifications.php:98 ../../mod/notify.php:57 -msgid "System Notifications" -msgstr "Systeemnotificaties" +#: ../../include/conversation.php:1224 +msgid "attach file" +msgstr "bestand toevoegen" -#: ../../mod/filestorage.php:82 -msgid "Permission Denied." -msgstr "Toegang geweigerd" +#: ../../include/conversation.php:1226 +msgid "web link" +msgstr "Weblink" -#: ../../mod/filestorage.php:98 -msgid "File not found." -msgstr "Bestand niet gevonden." +#: ../../include/conversation.php:1227 +msgid "Insert video link" +msgstr "Videolink invoegen" -#: ../../mod/filestorage.php:141 -msgid "Edit file permissions" -msgstr "Bestandsrechten bewerken" +#: ../../include/conversation.php:1228 +msgid "video link" +msgstr "videolink" -#: ../../mod/filestorage.php:150 -msgid "Set/edit permissions" -msgstr "Rechten instellen/bewerken" +#: ../../include/conversation.php:1229 +msgid "Insert audio link" +msgstr "Audiolink invoegen" -#: ../../mod/filestorage.php:151 -msgid "Include all files and sub folders" -msgstr "Toepassen op alle bestanden en submappen" +#: ../../include/conversation.php:1230 +msgid "audio link" +msgstr "audiolink" -#: ../../mod/filestorage.php:152 -msgid "Return to file list" -msgstr "Terugkeren naar bestandlijst " +#: ../../include/conversation.php:1232 +msgid "set location" +msgstr "locatie instellen" -#: ../../mod/filestorage.php:154 -msgid "Copy/paste this code to attach file to a post" -msgstr "Kopieer/plak deze code om het bestand aan een bericht te koppelen" +#: ../../include/conversation.php:1237 +msgid "clear location" +msgstr "locatie wissen" -#: ../../mod/filestorage.php:155 -msgid "Copy/paste this URL to link file from a web page" -msgstr "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen" - -#: ../../mod/filestorage.php:157 -msgid "Share this file" -msgstr "Dit bestand delen" +#: ../../include/conversation.php:1246 +msgid "permissions" +msgstr "permissies" -#: ../../mod/filestorage.php:158 -msgid "Show URL to this file" -msgstr "Toon URL van dit bestand" +#: ../../include/conversation.php:1272 +msgid "Set publish date" +msgstr "Publicatiedatum instellen" -#: ../../mod/filestorage.php:159 -msgid "Notify your contacts about this file" -msgstr "Jouw connecties over dit bestand berichten" +#: ../../include/conversation.php:1521 +msgid "Discover" +msgstr "Ontdekken" -#: ../../mod/removeaccount.php:30 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd." +#: ../../include/conversation.php:1524 +msgid "Imported public streams" +msgstr "Openbare streams importeren" -#: ../../mod/removeaccount.php:57 -msgid "Remove This Account" -msgstr "Verwijder dit account" +#: ../../include/conversation.php:1529 +msgid "Commented Order" +msgstr "Nieuwe reacties bovenaan" -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "WARNING: " -msgstr "WAARSCHUWING: " +#: ../../include/conversation.php:1532 +msgid "Sort by Comment Date" +msgstr "Berichten met nieuwe reacties bovenaan" -#: ../../mod/removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " -msgstr "Dit account en al zijn kanalen worden volledig uit het $Projectname-netwerk verwijderd." +#: ../../include/conversation.php:1536 +msgid "Posted Order" +msgstr "Nieuwe berichten bovenaan" -#: ../../mod/removeaccount.php:58 ../../mod/removeme.php:58 -msgid "This action is permanent and can not be undone!" -msgstr "Deze handeling is van permanente aard en kan niet meer worden teruggedraaid!" +#: ../../include/conversation.php:1539 +msgid "Sort by Post Date" +msgstr "Nieuwe berichten bovenaan" -#: ../../mod/removeaccount.php:59 ../../mod/removeme.php:59 -msgid "Please enter your password for verification:" -msgstr "Vul je wachtwoord in ter verificatie:" +#: ../../include/conversation.php:1547 +msgid "Posts that mention or involve you" +msgstr "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent" -#: ../../mod/removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" -msgstr "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het $Projectname-netwerk verwijderen" +#: ../../include/conversation.php:1556 +msgid "Activity Stream - by date" +msgstr "Activiteitenstroom - volgens datum" -#: ../../mod/removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" -msgstr "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het $Projectname-netwerk verwijderd" +#: ../../include/conversation.php:1562 +msgid "Starred" +msgstr "Met ster" -#: ../../mod/removeaccount.php:61 ../../mod/settings.php:712 -msgid "Remove Account" -msgstr "Account verwijderen" +#: ../../include/conversation.php:1565 +msgid "Favourite Posts" +msgstr "Favoriete berichten" -#: ../../mod/follow.php:27 -msgid "Channel added." -msgstr "Kanaal toegevoegd." +#: ../../include/conversation.php:1572 +msgid "Spam" +msgstr "Spam" -#: ../../mod/removeme.php:29 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." -msgstr "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd." +#: ../../include/conversation.php:1575 +msgid "Posts flagged as SPAM" +msgstr "Berichten gemarkeerd als SPAM" -#: ../../mod/removeme.php:57 -msgid "Remove This Channel" -msgstr "Verwijder dit kanaal" +#: ../../include/conversation.php:1632 +msgid "Status Messages and Posts" +msgstr "Berichten in dit kanaal" -#: ../../mod/removeme.php:58 -msgid "This channel will be completely removed from the network. " -msgstr "Dit kanaal wordt volledig uit het $Projectname-netwerk verwijderd." +#: ../../include/conversation.php:1641 +msgid "About" +msgstr "Over" -#: ../../mod/removeme.php:60 -msgid "Remove this channel and all its clones from the network" -msgstr "Dit kanaal en alle klonen hiervan uit het $Projectname-netwerk verwijderen" +#: ../../include/conversation.php:1644 +msgid "Profile Details" +msgstr "Profiel" -#: ../../mod/removeme.php:60 -msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het $Projectname-netwerk verwijderd" +#: ../../include/conversation.php:1653 ../../include/photos.php:506 +msgid "Photo Albums" +msgstr "Fotoalbums" -#: ../../mod/removeme.php:61 ../../mod/settings.php:1131 -msgid "Remove Channel" -msgstr "Kanaal verwijderen" +#: ../../include/conversation.php:1660 +msgid "Files and Storage" +msgstr "Bestanden en opslagruimte" -#: ../../mod/fsuggest.php:20 ../../mod/fsuggest.php:92 -msgid "Contact not found." -msgstr "Contact niet gevonden" +#: ../../include/conversation.php:1681 ../../include/conversation.php:1684 +#: ../../include/widgets.php:794 +msgid "Chatrooms" +msgstr "Chatkanalen" -#: ../../mod/fsuggest.php:63 -msgid "Friend suggestion sent." -msgstr "Kanaalvoorstel verzonden." +#: ../../include/conversation.php:1697 +msgid "Saved Bookmarks" +msgstr "Opgeslagen bladwijzers" -#: ../../mod/fsuggest.php:97 -msgid "Suggest Friends" -msgstr "Kanalen voorstellen" +#: ../../include/conversation.php:1707 +msgid "Manage Webpages" +msgstr "Webpagina's beheren" -#: ../../mod/fsuggest.php:99 -#, php-format -msgid "Suggest a friend for %s" -msgstr "Stel een kanaal voor aan %s" +#: ../../include/conversation.php:1766 +msgctxt "noun" +msgid "Attending" +msgid_plural "Attending" +msgstr[0] "aanwezig" +msgstr[1] "aanwezig" -#: ../../mod/rmagic.php:40 -msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." -msgstr "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten." +#: ../../include/conversation.php:1769 +msgctxt "noun" +msgid "Not Attending" +msgid_plural "Not Attending" +msgstr[0] "niet aanwezig" +msgstr[1] "niet aanwezig" -#: ../../mod/rmagic.php:40 -msgid "The error message was:" -msgstr "Het foutbericht was:" +#: ../../include/conversation.php:1772 +msgctxt "noun" +msgid "Undecided" +msgid_plural "Undecided" +msgstr[0] "nog niet beslist" +msgstr[1] "nog niet beslist" -#: ../../mod/rmagic.php:44 -msgid "Authentication failed." -msgstr "Authenticatie mislukt." +#: ../../include/conversation.php:1775 +msgctxt "noun" +msgid "Agree" +msgid_plural "Agrees" +msgstr[0] "eens" +msgstr[1] "eens" -#: ../../mod/rmagic.php:84 -msgid "Remote Authentication" -msgstr "Authenticatie op afstand" +#: ../../include/conversation.php:1778 +msgctxt "noun" +msgid "Disagree" +msgid_plural "Disagrees" +msgstr[0] "oneens" +msgstr[1] "oneens" -#: ../../mod/rmagic.php:85 -msgid "Enter your channel address (e.g. channel@example.com)" -msgstr "Vul jouw kanaaladres in (bijv. channel@example.com)" +#: ../../include/conversation.php:1781 +msgctxt "noun" +msgid "Abstain" +msgid_plural "Abstains" +msgstr[0] "onthouding" +msgstr[1] "onthoudingen" -#: ../../mod/rmagic.php:86 -msgid "Authenticate" -msgstr "Authenticeren" +#: ../../include/bookmarks.php:35 +#, php-format +msgid "%1$s's bookmarks" +msgstr "Bladwijzers van %1$s" -#: ../../mod/help.php:163 -msgid "Documentation Search" -msgstr "Zoek documentatie" +#: ../../include/chat.php:23 +msgid "Missing room name" +msgstr "Naam chatkanaal ontbreekt" -#: ../../mod/help.php:204 ../../mod/help.php:210 ../../mod/help.php:216 -msgid "Help:" -msgstr "Hulp:" +#: ../../include/chat.php:32 +msgid "Duplicate room name" +msgstr "Naam chatkanaal bestaat al" -#: ../../mod/help.php:257 -msgid "$Projectname Documentation" -msgstr "$Projectname-documentatie" +#: ../../include/chat.php:82 ../../include/chat.php:90 +msgid "Invalid room specifier." +msgstr "Ongeldige omschrijving chatkanaal" -#: ../../mod/group.php:20 -msgid "Privacy group created." -msgstr "Privacygroep aangemaakt" +#: ../../include/chat.php:122 +msgid "Room not found." +msgstr "Chatkanaal niet gevonden" -#: ../../mod/group.php:26 -msgid "Could not create privacy group." -msgstr "Kon privacygroep niet aanmaken" +#: ../../include/chat.php:143 +msgid "Room is full" +msgstr "Chatkanaal is vol" -#: ../../mod/group.php:54 -msgid "Privacy group updated." -msgstr "Privacygroep bijgewerkt" +#: ../../include/Contact.php:118 +msgid "New window" +msgstr "Nieuw venster" -#: ../../mod/group.php:86 -msgid "Create a group of channels." -msgstr "Privacygroep met kanalen aanmaken" +#: ../../include/Contact.php:119 +msgid "Open the selected location in a different window or browser tab" +msgstr "Open de geselecteerde locatie in een ander venster of tab" -#: ../../mod/group.php:87 ../../mod/group.php:180 -msgid "Privacy group name: " -msgstr "Naam privacygroep: " +#: ../../include/Contact.php:237 +#, php-format +msgid "User '%s' deleted" +msgstr "Account '%s' verwijderd" -#: ../../mod/group.php:89 ../../mod/group.php:183 -msgid "Members are visible to other channels" -msgstr "Kanalen in deze privacygroep zijn zichtbaar voor andere kanalen" +#: ../../include/auth.php:105 +msgid "Logged out." +msgstr "Uitgelogd." -#: ../../mod/group.php:107 -msgid "Privacy group removed." -msgstr "Privacygroep verwijderd." +#: ../../include/auth.php:212 +msgid "Failed authentication" +msgstr "Mislukte authenticatie" -#: ../../mod/group.php:109 -msgid "Unable to remove privacy group." -msgstr "Verwijderen privacygroep mislukt" +#: ../../include/security.php:383 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." +msgstr "De beveiligings-token van het tekstvak was ongeldig. Dit is mogelijk het gevolg van dat er te lang (meer dan 3 uur) gewacht is om de tekst op te slaan. " -#: ../../mod/group.php:179 -msgid "Privacy group editor" -msgstr "Privacygroep bewerken" +#: ../../include/contact_selectors.php:56 +msgid "Frequently" +msgstr "Regelmatig" -#: ../../mod/group.php:193 -msgid "Members" -msgstr "Kanalen" +#: ../../include/contact_selectors.php:57 +msgid "Hourly" +msgstr "Elk uur" -#: ../../mod/group.php:195 -msgid "All Connected Channels" -msgstr "Alle kanaalconnecties" +#: ../../include/contact_selectors.php:58 +msgid "Twice daily" +msgstr "Twee keer per dag" -#: ../../mod/group.php:227 -msgid "Click on a channel to add or remove." -msgstr "Klik op een kanaal om deze toe te voegen of te verwijderen." - -#: ../../mod/search.php:212 -#, php-format -msgid "Items tagged with: %s" -msgstr "Items getagd met %s" +#: ../../include/contact_selectors.php:59 +msgid "Daily" +msgstr "Dagelijks" -#: ../../mod/search.php:214 -#, php-format -msgid "Search results for: %s" -msgstr "Zoekresultaten voor %s" +#: ../../include/contact_selectors.php:60 +msgid "Weekly" +msgstr "Wekelijks" -#: ../../mod/home.php:57 ../../mod/home.php:65 ../../mod/siteinfo.php:61 -msgid "$Projectname" -msgstr "$Projectname" +#: ../../include/contact_selectors.php:61 +msgid "Monthly" +msgstr "Maandelijks" -#: ../../mod/home.php:75 -#, php-format -msgid "Welcome to %s" -msgstr "Welkom op %s" +#: ../../include/contact_selectors.php:76 +#: ../../include/contact_selectors.php:77 +msgid "Friendica" +msgstr "Friendica" -#: ../../mod/service_limits.php:19 -msgid "No service class restrictions found." -msgstr "Geen abonnementsbeperkingen gevonden." +#: ../../include/contact_selectors.php:78 +msgid "OStatus" +msgstr "OStatus" -#: ../../mod/settings.php:76 -msgid "Name is required" -msgstr "Naam is vereist" +#: ../../include/contact_selectors.php:79 +msgid "GNU-Social" +msgstr "GNU social" -#: ../../mod/settings.php:80 -msgid "Key and Secret are required" -msgstr "Key en secret zijn vereist" +#: ../../include/contact_selectors.php:80 +msgid "RSS/Atom" +msgstr "RSS/Atom" -#: ../../mod/settings.php:232 -msgid "Not valid email." -msgstr "Geen geldig e-mailadres." +#: ../../include/contact_selectors.php:82 +msgid "Diaspora" +msgstr "Diaspora" -#: ../../mod/settings.php:235 -msgid "Protected email address. Cannot change to that email." -msgstr "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken." +#: ../../include/contact_selectors.php:83 +msgid "Facebook" +msgstr "Facebook" -#: ../../mod/settings.php:244 -msgid "System failure storing new email. Please try again." -msgstr "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer." +#: ../../include/contact_selectors.php:84 +msgid "Zot" +msgstr "Zot" -#: ../../mod/settings.php:261 -msgid "Password verification failed." -msgstr "Wachtwoordverificatie mislukt" +#: ../../include/contact_selectors.php:85 +msgid "LinkedIn" +msgstr "LinkedIn" -#: ../../mod/settings.php:268 -msgid "Passwords do not match. Password unchanged." -msgstr "Wachtwoorden komen niet overeen. Wachtwoord onveranderd." +#: ../../include/contact_selectors.php:86 +msgid "XMPP/IM" +msgstr "XMPP/IM" -#: ../../mod/settings.php:272 -msgid "Empty passwords are not allowed. Password unchanged." -msgstr "Lege wachtwoorden zijn niet toegestaan. Wachtwoord onveranderd." +#: ../../include/contact_selectors.php:87 +msgid "MySpace" +msgstr "MySpace" -#: ../../mod/settings.php:286 -msgid "Password changed." -msgstr "Wachtwoord veranderd." +#: ../../include/contact_widgets.php:14 +#, php-format +msgid "%d invitation available" +msgid_plural "%d invitations available" +msgstr[0] "%d uitnodiging beschikbaar" +msgstr[1] "%d uitnodigingen beschikbaar" -#: ../../mod/settings.php:288 -msgid "Password update failed. Please try again." -msgstr "Bijwerken wachtwoord mislukt. Probeer opnieuw." +#: ../../include/contact_widgets.php:22 +msgid "Find Channels" +msgstr "Kanalen vinden" -#: ../../mod/settings.php:532 -msgid "Settings updated." -msgstr "Instellingen bijgewerkt." +#: ../../include/contact_widgets.php:23 +msgid "Enter name or interest" +msgstr "Vul naam of interesse in" -#: ../../mod/settings.php:596 ../../mod/settings.php:622 -#: ../../mod/settings.php:658 -msgid "Add application" -msgstr "Applicatie toevoegen" +#: ../../include/contact_widgets.php:24 +msgid "Connect/Follow" +msgstr "Verbinden/volgen" -#: ../../mod/settings.php:599 -msgid "Name of application" -msgstr "Naam van applicatie" +#: ../../include/contact_widgets.php:25 +msgid "Examples: Robert Morgenstein, Fishing" +msgstr "Voorbeeld: Robert Morgenstein, vissen" -#: ../../mod/settings.php:600 ../../mod/settings.php:626 -msgid "Consumer Key" -msgstr "Consumer key" +#: ../../include/contact_widgets.php:29 +msgid "Random Profile" +msgstr "Willekeurig profiel" -#: ../../mod/settings.php:600 ../../mod/settings.php:601 -msgid "Automatically generated - change if desired. Max length 20" -msgstr "Automatische gegenereerd - verander wanneer gewenst. Maximale lengte is 20" +#: ../../include/contact_widgets.php:30 +msgid "Invite Friends" +msgstr "Vrienden uitnodigen" -#: ../../mod/settings.php:601 ../../mod/settings.php:627 -msgid "Consumer Secret" -msgstr "Consumer secret" +#: ../../include/contact_widgets.php:32 +msgid "Advanced example: name=fred and country=iceland" +msgstr "Geavanceerd voorbeeld (Engels): name=jan en country=nederland" -#: ../../mod/settings.php:602 ../../mod/settings.php:628 -msgid "Redirect" -msgstr "Redirect/doorverwijzing" +#: ../../include/contact_widgets.php:57 ../../include/features.php:97 +#: ../../include/widgets.php:310 +msgid "Saved Folders" +msgstr "Bewaarde mappen" -#: ../../mod/settings.php:602 -msgid "" -"Redirect URI - leave blank unless your application specifically requires " -"this" -msgstr "URI voor redirect - laat leeg, behalve wanneer de applicatie dit vereist" +#: ../../include/contact_widgets.php:60 ../../include/contact_widgets.php:98 +#: ../../include/widgets.php:313 +msgid "Everything" +msgstr "Alles" -#: ../../mod/settings.php:603 ../../mod/settings.php:629 -msgid "Icon url" -msgstr "Pictogram-URL" +#: ../../include/contact_widgets.php:95 ../../include/widgets.php:46 +#: ../../include/taxonomy.php:282 +msgid "Categories" +msgstr "Categorieën" -#: ../../mod/settings.php:603 -msgid "Optional" -msgstr "Optioneel" +#: ../../include/contact_widgets.php:128 +#, php-format +msgid "%d connection in common" +msgid_plural "%d connections in common" +msgstr[0] "%d gemeenschappelijke connectie" +msgstr[1] "%d gemeenschappelijke connecties" -#: ../../mod/settings.php:614 -msgid "Application not found." -msgstr "Applicatie niet gevonden." +#: ../../include/contact_widgets.php:133 +msgid "show more" +msgstr "meer connecties weergeven" -#: ../../mod/settings.php:657 -msgid "Connected Apps" -msgstr "Verbonden applicaties" +#: ../../include/attach.php:247 ../../include/attach.php:333 +msgid "Item was not found." +msgstr "Item niet gevonden" -#: ../../mod/settings.php:661 -msgid "Client key starts with" -msgstr "Client key begint met" +#: ../../include/attach.php:497 +msgid "No source file." +msgstr "Geen bronbestand." -#: ../../mod/settings.php:662 -msgid "No name" -msgstr "Geen naam" +#: ../../include/attach.php:519 +msgid "Cannot locate file to replace" +msgstr "Kan het te vervangen bestand niet vinden" -#: ../../mod/settings.php:663 -msgid "Remove authorization" -msgstr "Autorisatie verwijderen" +#: ../../include/attach.php:537 +msgid "Cannot locate file to revise/update" +msgstr "Kan het bestand wat aangepast moet worden niet vinden" -#: ../../mod/settings.php:676 -msgid "No feature settings configured" -msgstr "Geen plugin-instellingen aanwezig" +#: ../../include/attach.php:672 +#, php-format +msgid "File exceeds size limit of %d" +msgstr "Bestand is groter dan de toegelaten %d" -#: ../../mod/settings.php:683 -msgid "Feature/Addon Settings" -msgstr "Plugin-instellingen" +#: ../../include/attach.php:686 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +msgstr "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt." -#: ../../mod/settings.php:706 -msgid "Account Settings" -msgstr "Account-instellingen" +#: ../../include/attach.php:842 +msgid "File upload failed. Possible system limit or action terminated." +msgstr "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken." -#: ../../mod/settings.php:707 -msgid "Current Password" -msgstr "Huidig wachtwoord" +#: ../../include/attach.php:855 +msgid "Stored file could not be verified. Upload failed." +msgstr "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt." -#: ../../mod/settings.php:708 -msgid "Enter New Password" -msgstr "Nieuw wachtwoord invoeren" +#: ../../include/attach.php:909 ../../include/attach.php:925 +msgid "Path not available." +msgstr "Pad niet beschikbaar." -#: ../../mod/settings.php:709 -msgid "Confirm New Password" -msgstr "Nieuw wachtwoord bevestigen" +#: ../../include/attach.php:971 ../../include/attach.php:1123 +msgid "Empty pathname" +msgstr "Padnaam leeg" -#: ../../mod/settings.php:709 -msgid "Leave password fields blank unless changing" -msgstr "Laat de wachtwoordvelden leeg, behalve wanneer je deze wil veranderen" +#: ../../include/attach.php:997 +msgid "duplicate filename or path" +msgstr "dubbele bestandsnaam of pad" -#: ../../mod/settings.php:711 ../../mod/settings.php:1048 -msgid "Email Address:" -msgstr "E-mailadres:" +#: ../../include/attach.php:1019 +msgid "Path not found." +msgstr "Pad niet gevonden" -#: ../../mod/settings.php:713 -msgid "Remove this account including all its channels" -msgstr "Dit account en al zijn kanalen verwijderen" +#: ../../include/attach.php:1077 +msgid "mkdir failed." +msgstr "directory aanmaken (mkdir) mislukt." -#: ../../mod/settings.php:736 -msgid "Additional Features" -msgstr "Extra functies" +#: ../../include/attach.php:1081 +msgid "database storage failed." +msgstr "opslag in database mislukt." -#: ../../mod/settings.php:760 -msgid "Connector Settings" -msgstr "Instellingen externe koppelingen" +#: ../../include/attach.php:1129 +msgid "Empty path" +msgstr "Ontbrekend bestandspad" -#: ../../mod/settings.php:799 -msgid "No special theme for mobile devices" -msgstr "Geen speciaal thema voor mobiele apparaten" +#: ../../include/datetime.php:136 +msgid "Birthday" +msgstr "Verjaardag of geboortedatum" -#: ../../mod/settings.php:802 -#, php-format -msgid "%s - (Experimental)" -msgstr "%s - (experimenteel)" +#: ../../include/datetime.php:138 +msgid "Age: " +msgstr "Leeftijd:" -#: ../../mod/settings.php:844 -msgid "Display Settings" -msgstr "Weergave-instellingen" +#: ../../include/datetime.php:140 +msgid "YYYY-MM-DD or MM-DD" +msgstr "JJJJ-MM-DD of MM-DD" -#: ../../mod/settings.php:845 -msgid "Theme Settings" -msgstr "Thema-instellingen" +#: ../../include/datetime.php:273 ../../boot.php:2432 +msgid "never" +msgstr "nooit" -#: ../../mod/settings.php:846 -msgid "Custom Theme Settings" -msgstr "Handmatige thema-instellingen" +#: ../../include/datetime.php:279 +msgid "less than a second ago" +msgstr "minder dan een seconde geleden" -#: ../../mod/settings.php:847 -msgid "Content Settings" -msgstr "Inhoudsinstellingen" +#: ../../include/datetime.php:297 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" +msgstr "%1$d %2$s geleden" -#: ../../mod/settings.php:853 -msgid "Display Theme:" -msgstr "Gebruik thema:" +#: ../../include/datetime.php:308 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "jaar" +msgstr[1] "jaren" -#: ../../mod/settings.php:854 -msgid "Mobile Theme:" -msgstr "Mobiel thema:" +#: ../../include/datetime.php:311 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "maand" +msgstr[1] "maanden" -#: ../../mod/settings.php:855 -msgid "Preload images before rendering the page" -msgstr "Afbeeldingen laden voordat de pagina wordt weergegeven" +#: ../../include/datetime.php:314 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "week" +msgstr[1] "weken" -#: ../../mod/settings.php:855 -msgid "" -"The subjective page load time will be longer but the page will be ready when" -" displayed" -msgstr "De laadtijd van een pagina lijkt langer, maar de pagina is wel meteen helemaal geladen wanneer deze wordt weergeven" +#: ../../include/datetime.php:317 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "dag" +msgstr[1] "dagen" -#: ../../mod/settings.php:856 -msgid "Enable user zoom on mobile devices" -msgstr "Inzoomen op smartphones en tablets toestaan" +#: ../../include/datetime.php:320 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "uur" +msgstr[1] "uren" -#: ../../mod/settings.php:857 -msgid "Update browser every xx seconds" -msgstr "Ververs de webbrowser om de zoveel seconde" +#: ../../include/datetime.php:323 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "minuut" +msgstr[1] "minuten" -#: ../../mod/settings.php:857 -msgid "Minimum of 10 seconds, no maximum" -msgstr "Minimaal 10 seconde, geen maximum" +#: ../../include/datetime.php:326 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "seconde" +msgstr[1] "seconden" -#: ../../mod/settings.php:858 -msgid "Maximum number of conversations to load at any time:" -msgstr "Maximaal aantal conversaties die per keer geladen worden:" +#: ../../include/datetime.php:563 +#, php-format +msgid "%1$s's birthday" +msgstr "Verjaardag van %1$s" -#: ../../mod/settings.php:858 -msgid "Maximum of 100 items" -msgstr "Maximaal 100 conversaties" +#: ../../include/datetime.php:564 +#, php-format +msgid "Happy Birthday %1$s" +msgstr "Gefeliciteerd met je verjaardag %1$s" -#: ../../mod/settings.php:859 -msgid "Show emoticons (smilies) as images" -msgstr "Toon emoticons (smilies) als afbeeldingen" +#: ../../include/dir_fns.php:139 +msgid "Directory Options" +msgstr "Opties kanalengids" -#: ../../mod/settings.php:860 -msgid "Link post titles to source" -msgstr "Berichtkoppen naar originele locatie linken" +#: ../../include/dir_fns.php:141 +msgid "Safe Mode" +msgstr "Veilig zoeken" -#: ../../mod/settings.php:861 -msgid "System Page Layout Editor - (advanced)" -msgstr "Lay-out bewerken van systeempagina's (geavanceerd)" +#: ../../include/dir_fns.php:142 +msgid "Public Forums Only" +msgstr "Alleen openbare forums" -#: ../../mod/settings.php:864 -msgid "Use blog/list mode on channel page" -msgstr "Gebruik blog/lijst-modus op kanaalpagina" +#: ../../include/dir_fns.php:143 +msgid "This Website Only" +msgstr "Alleen deze hub" -#: ../../mod/settings.php:864 ../../mod/settings.php:865 -msgid "(comments displayed separately)" -msgstr "(reacties worden afzonderlijk weergeven)" +#: ../../include/enotify.php:96 +#, php-format +msgid "%s " +msgstr "%s " -#: ../../mod/settings.php:865 -msgid "Use blog/list mode on grid page" -msgstr "Gebruik blog/lijst-modus op gridpagina" +#: ../../include/enotify.php:100 +#, php-format +msgid "[Hubzilla:Notify] New mail received at %s" +msgstr "[Hubzilla:Notificatie] Nieuw privébericht ontvangen op %s" -#: ../../mod/settings.php:866 -msgid "Channel page max height of content (in pixels)" -msgstr "Maximale hoogte berichtinhoud op kanaalpagina (in pixels)" +#: ../../include/enotify.php:102 +#, php-format +msgid "%1$s, %2$s sent you a new private message at %3$s." +msgstr "%1$s, %2$s zond jou een nieuw privébericht om %3$s." -#: ../../mod/settings.php:866 ../../mod/settings.php:867 -msgid "click to expand content exceeding this height" -msgstr "klik om inhoud uit te klappen die deze hoogte overschrijdt" +#: ../../include/enotify.php:103 +#, php-format +msgid "%1$s sent you %2$s." +msgstr "%1$s zond jou %2$s." -#: ../../mod/settings.php:867 -msgid "Grid page max height of content (in pixels)" -msgstr "Maximale hoogte berichtinhoud op gridpagina (in pixels)" +#: ../../include/enotify.php:103 +msgid "a private message" +msgstr "een privébericht" -#: ../../mod/settings.php:901 -msgid "Nobody except yourself" -msgstr "Niemand, behalve jezelf" +#: ../../include/enotify.php:104 +#, php-format +msgid "Please visit %s to view and/or reply to your private messages." +msgstr "Bezoek %s om je privéberichten te bekijken en/of er op te reageren." -#: ../../mod/settings.php:902 -msgid "Only those you specifically allow" -msgstr "Alleen connecties met uitdrukkelijke toestemming" +#: ../../include/enotify.php:160 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]a %4$s[/zrl]" +msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]een %4$s[/zrl]" -#: ../../mod/settings.php:903 -msgid "Approved connections" -msgstr "Geaccepteerde connecties" +#: ../../include/enotify.php:168 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]%4$s's %5$s[/zrl]" +msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]een %5$s van %4$s[/zrl]" -#: ../../mod/settings.php:904 -msgid "Any connections" -msgstr "Alle connecties" +#: ../../include/enotify.php:177 +#, php-format +msgid "%1$s, %2$s commented on [zrl=%3$s]your %4$s[/zrl]" +msgstr "%1$s, %2$s gaf een reactie op [zrl=%3$s]jouw %4$s[/zrl]" -#: ../../mod/settings.php:905 -msgid "Anybody on this website" -msgstr "Iedereen op deze hub" +#: ../../include/enotify.php:188 +#, php-format +msgid "[Hubzilla:Notify] Comment to conversation #%1$d by %2$s" +msgstr "[Hubzilla:Notificatie] Reactie op conversatie #%1$d door %2$s" -#: ../../mod/settings.php:906 -msgid "Anybody in this network" -msgstr "Iedereen in dit netwerk" +#: ../../include/enotify.php:189 +#, php-format +msgid "%1$s, %2$s commented on an item/conversation you have been following." +msgstr "%1$s, %2$s gaf een reactie op een bericht/conversatie die jij volgt." -#: ../../mod/settings.php:907 -msgid "Anybody authenticated" -msgstr "Geauthenticeerd" +#: ../../include/enotify.php:192 ../../include/enotify.php:207 +#: ../../include/enotify.php:233 ../../include/enotify.php:251 +#: ../../include/enotify.php:265 +#, php-format +msgid "Please visit %s to view and/or reply to the conversation." +msgstr "Bezoek %s om de conversatie te bekijken en/of er op te reageren." -#: ../../mod/settings.php:908 -msgid "Anybody on the internet" -msgstr "Iedereen op het internet" +#: ../../include/enotify.php:198 +#, php-format +msgid "[Hubzilla:Notify] %s posted to your profile wall" +msgstr "[Hubzilla:Notificatie] %s heeft een bericht op jouw kanaal geplaatst" -#: ../../mod/settings.php:983 -msgid "Publish your default profile in the network directory" -msgstr "Publiceer je standaardprofiel in de kanalengids" +#: ../../include/enotify.php:200 +#, php-format +msgid "%1$s, %2$s posted to your profile wall at %3$s" +msgstr "%1$s, %2$s heeft om %3$s een bericht op jouw kanaal geplaatst" -#: ../../mod/settings.php:988 -msgid "Allow us to suggest you as a potential friend to new members?" -msgstr "Sta ons toe om jouw kanaal als mogelijke connectie voor te stellen aan nieuwe kanalen" +#: ../../include/enotify.php:202 +#, php-format +msgid "%1$s, %2$s posted to [zrl=%3$s]your wall[/zrl]" +msgstr "%1$s, %2$s heeft een bericht op [zrl=%3$s]jouw kanaal[/zrl] geplaatst" -#: ../../mod/settings.php:997 -msgid "Your channel address is" -msgstr "Jouw kanaaladres is" +#: ../../include/enotify.php:226 +#, php-format +msgid "[Hubzilla:Notify] %s tagged you" +msgstr "[Hubzilla:Notificatie] %s heeft je genoemd" -#: ../../mod/settings.php:1039 -msgid "Channel Settings" -msgstr "Kanaal-instellingen" +#: ../../include/enotify.php:227 +#, php-format +msgid "%1$s, %2$s tagged you at %3$s" +msgstr "%1$s, %2$s noemde jou op %3$s" -#: ../../mod/settings.php:1046 -msgid "Basic Settings" -msgstr "Basis-instellingen" +#: ../../include/enotify.php:228 +#, php-format +msgid "%1$s, %2$s [zrl=%3$s]tagged you[/zrl]." +msgstr "%1$s, %2$s [zrl=%3$s]noemde jou[/zrl]." -#: ../../mod/settings.php:1049 -msgid "Your Timezone:" -msgstr "Jouw tijdzone:" +#: ../../include/enotify.php:240 +#, php-format +msgid "[Hubzilla:Notify] %1$s poked you" +msgstr "[Hubzilla:Notificatie] %1$s heeft je aangestoten" -#: ../../mod/settings.php:1050 -msgid "Default Post Location:" -msgstr "Standaardlocatie bericht:" +#: ../../include/enotify.php:241 +#, php-format +msgid "%1$s, %2$s poked you at %3$s" +msgstr "%1$s, %2$s heeft je aangestoten op %3$s" -#: ../../mod/settings.php:1050 -msgid "Geographical location to display on your posts" -msgstr "Geografische locatie die bij het bericht moet worden vermeld" +#: ../../include/enotify.php:242 +#, php-format +msgid "%1$s, %2$s [zrl=%2$s]poked you[/zrl]." +msgstr "%1$s, %2$s [zrl=%2$s]heeft je aangestoten[/zrl]." -#: ../../mod/settings.php:1051 -msgid "Use Browser Location:" -msgstr "Locatie van webbrowser gebruiken:" +#: ../../include/enotify.php:258 +#, php-format +msgid "[Hubzilla:Notify] %s tagged your post" +msgstr "[Hubzilla:Notificatie] %s heeft jouw bericht getagd" -#: ../../mod/settings.php:1053 -msgid "Adult Content" -msgstr "Inhoud voor volwassenen" +#: ../../include/enotify.php:259 +#, php-format +msgid "%1$s, %2$s tagged your post at %3$s" +msgstr "%1$s, %2$s heeft jouw bericht om %3$s getagd" + +#: ../../include/enotify.php:260 +#, php-format +msgid "%1$s, %2$s tagged [zrl=%3$s]your post[/zrl]" +msgstr "%1$s, %2$s heeft [zrl=%3$s]jouw bericht[/zrl] getagd" + +#: ../../include/enotify.php:272 +msgid "[Hubzilla:Notify] Introduction received" +msgstr "[Hubzilla:Notificatie] Connectieverzoek ontvangen" -#: ../../mod/settings.php:1053 +#: ../../include/enotify.php:273 +#, php-format +msgid "%1$s, you've received an new connection request from '%2$s' at %3$s" +msgstr "%1$s, je hebt een nieuw connectieverzoek ontvangen van '%2$s' op %3$s" + +#: ../../include/enotify.php:274 +#, php-format msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" -msgstr "Dit kanaal publiceert regelmatig of vaak materiaal dat alleen geschikt is voor volwassenen. (Gebruik de tag #NSFW in berichten met een seksueel getinte inhoud of ander voor minderjarigen ongeschikt materiaal)" +"%1$s, you've received [zrl=%2$s]a new connection request[/zrl] from %3$s." +msgstr "%1$s, je hebt een [zrl=%2$s]nieuw connectieverzoek[/zrl] ontvangen van %3$s." -#: ../../mod/settings.php:1055 -msgid "Security and Privacy Settings" -msgstr "Veiligheids- en privacy-instellingen" +#: ../../include/enotify.php:278 ../../include/enotify.php:297 +#, php-format +msgid "You may visit their profile at %s" +msgstr "Je kan het profiel bekijken op %s" -#: ../../mod/settings.php:1058 -msgid "Your permissions are already configured. Click to view/adjust" -msgstr "Jouw permissies zijn al ingesteld. Klik om ze te bekijken of aan te passen." +#: ../../include/enotify.php:280 +#, php-format +msgid "Please visit %s to approve or reject the connection request." +msgstr "Bezoek %s om het connectieverzoek te accepteren of af te wijzen." -#: ../../mod/settings.php:1060 -msgid "Hide my online presence" -msgstr "Verberg mijn aanwezigheid" +#: ../../include/enotify.php:287 +msgid "[Hubzilla:Notify] Friend suggestion received" +msgstr "[Hubzilla:Notificatie] Kanaalvoorstel ontvangen" -#: ../../mod/settings.php:1060 -msgid "Prevents displaying in your profile that you are online" -msgstr "Voorkomt dat op je kanaalpagina te zien valt dat je momenteel op $Projectname aanwezig bent" +#: ../../include/enotify.php:288 +#, php-format +msgid "%1$s, you've received a friend suggestion from '%2$s' at %3$s" +msgstr "%1$s, je hebt een kanaalvoorstel ontvangen van '%2$s' om %3$s" -#: ../../mod/settings.php:1062 -msgid "Simple Privacy Settings:" -msgstr "Eenvoudige privacy-instellingen:" +#: ../../include/enotify.php:289 +#, php-format +msgid "" +"%1$s, you've received [zrl=%2$s]a friend suggestion[/zrl] for %3$s from " +"%4$s." +msgstr "%1$s, je hebt [zrl=%2$s]een kanaalvoorstel[/zrl] ontvangen voor %3$s van %4$s." + +#: ../../include/enotify.php:295 +msgid "Name:" +msgstr "Naam:" -#: ../../mod/settings.php:1063 +#: ../../include/enotify.php:296 +msgid "Photo:" +msgstr "Foto:" + +#: ../../include/enotify.php:299 +#, php-format +msgid "Please visit %s to approve or reject the suggestion." +msgstr "Bezoek %s om het voorstel te accepteren of af te wijzen." + +#: ../../include/enotify.php:514 +msgid "[Hubzilla:Notify]" +msgstr "[Hubzilla:Notificatie]" + +#: ../../include/event.php:779 +msgid "This event has been added to your calendar." +msgstr "Dit evenement is aan jouw agenda toegevoegd." + +#: ../../include/event.php:978 +msgid "Not specified" +msgstr "Niet aangegeven" + +#: ../../include/event.php:979 +msgid "Needs Action" +msgstr "Actie vereist" + +#: ../../include/event.php:980 +msgid "Completed" +msgstr "Voltooid" + +#: ../../include/event.php:981 +msgid "In Process" +msgstr "In behandeling" + +#: ../../include/event.php:982 +msgid "Cancelled" +msgstr "Geannuleerd" + +#: ../../include/features.php:48 +msgid "General Features" +msgstr "Algemene functies" + +#: ../../include/features.php:50 +msgid "Content Expiration" +msgstr "Inhoud laten verlopen" + +#: ../../include/features.php:50 +msgid "Remove posts/comments and/or private messages at a future time" +msgstr "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen" + +#: ../../include/features.php:51 +msgid "Multiple Profiles" +msgstr "Meerdere profielen" + +#: ../../include/features.php:51 +msgid "Ability to create multiple profiles" +msgstr "Mogelijkheid om meerdere profielen aan te maken" + +#: ../../include/features.php:52 +msgid "Advanced Profiles" +msgstr "Geavanceerde profielen" + +#: ../../include/features.php:52 +msgid "Additional profile sections and selections" +msgstr "Extra onderdelen en keuzes voor je profiel" + +#: ../../include/features.php:53 +msgid "Profile Import/Export" +msgstr "Profiel importen/exporteren" + +#: ../../include/features.php:53 +msgid "Save and load profile details across sites/channels" +msgstr "Profielgegevens opslaan en in andere hubs/kanalen gebruiken." + +#: ../../include/features.php:54 +msgid "Web Pages" +msgstr "Webpagina's" + +#: ../../include/features.php:54 +msgid "Provide managed web pages on your channel" +msgstr "Sta beheerde webpagina's op jouw kanaal toe" + +#: ../../include/features.php:55 +msgid "Hide Rating" +msgstr "Beoordelingen verbergen" + +#: ../../include/features.php:55 msgid "" -"Very Public - extremely permissive (should be used with caution)" -msgstr "Zeer openbaar (kanaal staat volledig open - moet met grote zorgvuldigheid gebruikt worden)" +"Hide the rating buttons on your channel and profile pages. Note: People can " +"still rate you somewhere else." +msgstr "Verbergt de beoordelingsknoppen op jouw kanaal- en profielpagina's. Let op: Mensen kunnen jou nog steeds ergens anders beoordelen. " + +#: ../../include/features.php:56 +msgid "Private Notes" +msgstr "Privé-aantekeningen" -#: ../../mod/settings.php:1064 -msgid "" -"Typical - default public, privacy when desired (similar to social " -"network permissions but with improved privacy)" -msgstr "Normaal (standaard openbaar, maar privacy wanneer noodzakelijk - vergelijkbaar met die van sociale netwerken, maar met verbeterde privacy)" +#: ../../include/features.php:56 +msgid "Enables a tool to store notes and reminders (note: not encrypted)" +msgstr "Een eenvoudige toepassing om aantekeningen en herinneringen in te bewaren (let op: niet versleuteld)" -#: ../../mod/settings.php:1065 -msgid "Private - default private, never open or public" -msgstr "Privé (standaard privé en nooit openbaar)" +#: ../../include/features.php:57 +msgid "Navigation Channel Select" +msgstr "Kanaal kiezen in navigatiemenu" -#: ../../mod/settings.php:1066 -msgid "Blocked - default blocked to/from everybody" -msgstr "Geblokkeerd (standaard geblokkeerd naar/van iedereen)" +#: ../../include/features.php:57 +msgid "Change channels directly from within the navigation dropdown menu" +msgstr "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk" -#: ../../mod/settings.php:1068 -msgid "Allow others to tag your posts" -msgstr "Anderen toestaan om je berichten te taggen" +#: ../../include/features.php:58 +msgid "Photo Location" +msgstr "Fotolocatie" -#: ../../mod/settings.php:1068 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" -msgstr "Vaak in groepen/forums gebruikt om met terugwerkende kracht ongepast materiaal te markeren" +#: ../../include/features.php:58 +msgid "If location data is available on uploaded photos, link this to a map." +msgstr "Wanneer in de geüploade foto's locatiegegevens aanwezig zijn, link dit dan aan een kaart." -#: ../../mod/settings.php:1070 -msgid "Advanced Privacy Settings" -msgstr "Geavanceerde privacy-instellingen" +#: ../../include/features.php:59 +msgid "Access Controlled Chatrooms" +msgstr "Chatkanalen met toegangscontrole " -#: ../../mod/settings.php:1072 -msgid "Expire other channel content after this many days" -msgstr "Inhoud van andere kanalen na zoveel aantal dagen laten verlopen:" +#: ../../include/features.php:59 +msgid "Provide chatrooms and chat services with access control." +msgstr "Chatkanalen en chatdiensten met toegangscontrole aanbieden." -#: ../../mod/settings.php:1072 -#, php-format -msgid "" -"0 or blank to use the website limit. The website expires after %d days." -msgstr "0 of leeg om het standaard aantal dagen van deze hub te gebruiken. Deze hub laat de inhoud van andere kanalen na %d dagen verlopen." +#: ../../include/features.php:60 +msgid "Smart Birthdays" +msgstr "Slimme verjaardagen" -#: ../../mod/settings.php:1073 -msgid "Maximum Friend Requests/Day:" -msgstr "Maximum aantal connectieverzoeken per dag:" +#: ../../include/features.php:60 +msgid "" +"Make birthday events timezone aware in case your friends are scattered " +"across the planet." +msgstr "Maak verjaardagen bewust van tijdzones. Voor het geval dat jouw vrienden over de hele wereld verspreid zijn." -#: ../../mod/settings.php:1073 -msgid "May reduce spam activity" -msgstr "Kan eventuele spam verminderen" +#: ../../include/features.php:61 +msgid "Expert Mode" +msgstr "Expertmodus" -#: ../../mod/settings.php:1074 -msgid "Default Post Permissions" -msgstr "Standaard permissies voor nieuwe berichten" +#: ../../include/features.php:61 +msgid "Enable Expert Mode to provide advanced configuration options" +msgstr "Schakel de expertmodus in voor geavanceerde instellingen" -#: ../../mod/settings.php:1079 -msgid "Channel permissions category:" -msgstr "Kanaaltype en -permissies:" +#: ../../include/features.php:62 +msgid "Premium Channel" +msgstr "Premiumkanaal" -#: ../../mod/settings.php:1085 -msgid "Maximum private messages per day from unknown people:" -msgstr "Maximum aantal privé-berichten per dag van onbekende personen:" +#: ../../include/features.php:62 +msgid "" +"Allows you to set restrictions and terms on those that connect with your " +"channel" +msgstr "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal" -#: ../../mod/settings.php:1085 -msgid "Useful to reduce spamming" -msgstr "Kan eventuele spam verminderen" +#: ../../include/features.php:67 +msgid "Post Composition Features" +msgstr "Functies voor het opstellen van berichten" -#: ../../mod/settings.php:1088 -msgid "Notification Settings" -msgstr "Notificatie-instellingen" +#: ../../include/features.php:70 +msgid "Large Photos" +msgstr "Grote foto's" -#: ../../mod/settings.php:1089 -msgid "By default post a status message when:" -msgstr "Plaats automatisch een statusbericht wanneer:" +#: ../../include/features.php:70 +msgid "" +"Include large (1024px) photo thumbnails in posts. If not enabled, use small " +"(640px) photo thumbnails" +msgstr "Gebruik grotere foto's (1024px) in berichten. Wanneer dit is uitgeschakeld worden er kleinere foto's (640px) gebruikt." -#: ../../mod/settings.php:1090 -msgid "accepting a friend request" -msgstr "Een connectieverzoek wordt geaccepteerd" +#: ../../include/features.php:71 +msgid "Automatically import channel content from other channels or feeds" +msgstr "Automatisch inhoud uit andere kanalen of feeds importeren." -#: ../../mod/settings.php:1091 -msgid "joining a forum/community" -msgstr "Je lid wordt van een forum/groep" +#: ../../include/features.php:72 +msgid "Even More Encryption" +msgstr "Extra encryptie" -#: ../../mod/settings.php:1092 -msgid "making an interesting profile change" -msgstr "Er sprake is van een interessante profielwijziging" +#: ../../include/features.php:72 +msgid "" +"Allow optional encryption of content end-to-end with a shared secret key" +msgstr "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel." -#: ../../mod/settings.php:1093 -msgid "Send a notification email when:" -msgstr "Verzend een notificatie per e-mail wanneer:" +#: ../../include/features.php:73 +msgid "Enable Voting Tools" +msgstr "Peilingen inschakelen" -#: ../../mod/settings.php:1094 -msgid "You receive a connection request" -msgstr "Je een connectieverzoek ontvangt" +#: ../../include/features.php:73 +msgid "Provide a class of post which others can vote on" +msgstr "Maakt het mogelijk om een bericht op te stellen, waar mensen op kunnen stemmen." -#: ../../mod/settings.php:1095 -msgid "Your connections are confirmed" -msgstr "Jouw connecties zijn bevestigd" +#: ../../include/features.php:74 +msgid "Delayed Posting" +msgstr "Berichten uitstellen" -#: ../../mod/settings.php:1096 -msgid "Someone writes on your profile wall" -msgstr "Iemand iets op jouw kanaal heeft geschreven" +#: ../../include/features.php:74 +msgid "Allow posts to be published at a later date" +msgstr "Maakt het mogelijk dat berichten op een toekomstig moment gepubliceerd kunnen worden." -#: ../../mod/settings.php:1097 -msgid "Someone writes a followup comment" -msgstr "Iemand een reactie schrijft" +#: ../../include/features.php:75 +msgid "Suppress Duplicate Posts/Comments" +msgstr "Dubbele berichten/reacties tegenhouden" -#: ../../mod/settings.php:1098 -msgid "You receive a private message" -msgstr "Je een privé-bericht ontvangt" +#: ../../include/features.php:75 +msgid "" +"Prevent posts with identical content to be published with less than two " +"minutes in between submissions." +msgstr "Voorkomt dat berichten en reacties met identieke inhoud en die binnen twee minuten zijn verstuurd, worden gepubliceerd. " -#: ../../mod/settings.php:1099 -msgid "You receive a friend suggestion" -msgstr "Je een kanaalvoorstel ontvangt" +#: ../../include/features.php:81 +msgid "Network and Stream Filtering" +msgstr "Netwerk- en streamfilter" -#: ../../mod/settings.php:1100 -msgid "You are tagged in a post" -msgstr "Je expliciet in een bericht bent genoemd" +#: ../../include/features.php:82 +msgid "Search by Date" +msgstr "Zoek op datum" -#: ../../mod/settings.php:1101 -msgid "You are poked/prodded/etc. in a post" -msgstr "Je bent in een bericht aangestoten/gepord/etc." +#: ../../include/features.php:82 +msgid "Ability to select posts by date ranges" +msgstr "Mogelijkheid om berichten op datum te filteren " -#: ../../mod/settings.php:1104 -msgid "Show visual notifications including:" -msgstr "Toon de volgende zichtbare notificaties:" +#: ../../include/features.php:83 ../../include/group.php:311 +msgid "Privacy Groups" +msgstr "Privacygroepen" -#: ../../mod/settings.php:1106 -msgid "Unseen grid activity" -msgstr "Niet bekeken grid-activiteit" +#: ../../include/features.php:83 +msgid "Enable management and selection of privacy groups" +msgstr "Beheer en selectie van privacygroepen inschakelen" -#: ../../mod/settings.php:1107 -msgid "Unseen channel activity" -msgstr "Niet bekeken kanaal-activiteit" +#: ../../include/features.php:84 ../../include/widgets.php:281 +msgid "Saved Searches" +msgstr "Opgeslagen zoekopdrachten" -#: ../../mod/settings.php:1108 -msgid "Unseen private messages" -msgstr "Niet bekeken privéberichten" +#: ../../include/features.php:84 +msgid "Save search terms for re-use" +msgstr "Sla zoekopdrachten op voor hergebruik" -#: ../../mod/settings.php:1108 ../../mod/settings.php:1113 -#: ../../mod/settings.php:1114 ../../mod/settings.php:1115 -msgid "Recommended" -msgstr "Aanbevolen" +#: ../../include/features.php:85 +msgid "Network Personal Tab" +msgstr "Persoonlijke netwerktab" -#: ../../mod/settings.php:1109 -msgid "Upcoming events" -msgstr "Aankomende gebeurtenissen" +#: ../../include/features.php:85 +msgid "Enable tab to display only Network posts that you've interacted on" +msgstr "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had" -#: ../../mod/settings.php:1110 -msgid "Events today" -msgstr "Gebeurtenissen van vandaag" +#: ../../include/features.php:86 +msgid "Network New Tab" +msgstr "Nieuwe netwerktab" -#: ../../mod/settings.php:1111 -msgid "Upcoming birthdays" -msgstr "Aankomende verjaardagen" +#: ../../include/features.php:86 +msgid "Enable tab to display all new Network activity" +msgstr "Laat de tab alle nieuwe netwerkactiviteit tonen" -#: ../../mod/settings.php:1111 -msgid "Not available in all themes" -msgstr "Niet in alle thema's beschikbaar" +#: ../../include/features.php:87 +msgid "Affinity Tool" +msgstr "Verwantschapsfilter" -#: ../../mod/settings.php:1112 -msgid "System (personal) notifications" -msgstr "(Persoonlijke) systeemnotificaties" +#: ../../include/features.php:87 +msgid "Filter stream activity by depth of relationships" +msgstr "Filter wat je in jouw grid ziet op hoe goed je iemand kent of mag" -#: ../../mod/settings.php:1113 -msgid "System info messages" -msgstr "Systeemmededelingen" +#: ../../include/features.php:88 +msgid "Connection Filtering" +msgstr "Berichtenfilters" -#: ../../mod/settings.php:1114 -msgid "System critical alerts" -msgstr "Kritische systeemwaarschuwingen" +#: ../../include/features.php:88 +msgid "Filter incoming posts from connections based on keywords/content" +msgstr "Filter binnenkomende berichten van connecties aan de hand van trefwoorden en taal" -#: ../../mod/settings.php:1115 -msgid "New connections" -msgstr "Nieuwe connecties" +#: ../../include/features.php:89 +msgid "Suggest Channels" +msgstr "Kanalen voorstellen" -#: ../../mod/settings.php:1116 -msgid "System Registrations" -msgstr "Nieuwe accountregistraties op deze hub" +#: ../../include/features.php:89 +msgid "Show channel suggestions" +msgstr "Voor jou mogelijk interessante kanalen voorstellen" -#: ../../mod/settings.php:1117 -msgid "" -"Also show new wall posts, private messages and connections under Notices" -msgstr "Toon tevens nieuwe kanaalberichten, privéberichten en connecties onder Notificaties" +#: ../../include/features.php:94 +msgid "Post/Comment Tools" +msgstr "Bericht- en reactiehulpmiddelen" -#: ../../mod/settings.php:1119 -msgid "Notify me of events this many days in advance" -msgstr "Herinner mij zoveel dagen van te voren aan gebeurtenissen" +#: ../../include/features.php:95 +msgid "Community Tagging" +msgstr "Taggen door anderen" -#: ../../mod/settings.php:1119 -msgid "Must be greater than 0" -msgstr "Moet hoger dan 0 zijn" +#: ../../include/features.php:95 +msgid "Ability to tag existing posts" +msgstr "Geeft andere mensen de mogelijkheid om jouw (bestaande) berichten te taggen" -#: ../../mod/settings.php:1121 -msgid "Advanced Account/Page Type Settings" -msgstr "Instellingen geavanceerd account/paginatype" +#: ../../include/features.php:96 +msgid "Post Categories" +msgstr "Categorieën berichten" -#: ../../mod/settings.php:1122 -msgid "Change the behaviour of this account for special situations" -msgstr "Verander het gedrag van dit account voor speciale situaties" +#: ../../include/features.php:96 +msgid "Add categories to your posts" +msgstr "Voeg categorieën toe aan je berichten" -#: ../../mod/settings.php:1125 -msgid "" -"Please enable expert mode (in Settings > " -"Additional features) to adjust!" -msgstr "Schakel de expertmodus in (in Instellingen > Extra functies) om aan te kunnen passen!" +#: ../../include/features.php:97 +msgid "Ability to file posts under folders" +msgstr "Mogelijkheid om berichten in mappen op te slaan" -#: ../../mod/settings.php:1126 -msgid "Miscellaneous Settings" -msgstr "Diverse instellingen" +#: ../../include/features.php:98 +msgid "Dislike Posts" +msgstr "Vind berichten niet leuk" -#: ../../mod/settings.php:1127 -msgid "Default photo upload folder" -msgstr "Standaard fotoalbum voor uploads" +#: ../../include/features.php:98 +msgid "Ability to dislike posts/comments" +msgstr "Mogelijkheid om berichten en reacties niet leuk te vinden" -#: ../../mod/settings.php:1127 ../../mod/settings.php:1128 -msgid "%Y - current year, %m - current month" -msgstr "%Y - dit jaar, %m - deze maand" +#: ../../include/features.php:99 +msgid "Star Posts" +msgstr "Geef berichten een ster" -#: ../../mod/settings.php:1128 -msgid "Default file upload folder" -msgstr "Standaard bestandsmap voor uploads" +#: ../../include/features.php:99 +msgid "Ability to mark special posts with a star indicator" +msgstr "Mogelijkheid om speciale berichten met een ster te markeren" -#: ../../mod/settings.php:1130 -msgid "Personal menu to display in your channel pages" -msgstr "Persoonlijk menu om op je kanaalpagina's weer te geven" +#: ../../include/features.php:100 +msgid "Tag Cloud" +msgstr "Tagwolk" -#: ../../mod/settings.php:1132 -msgid "Remove this channel." -msgstr "Verwijder dit kanaal." +#: ../../include/features.php:100 +msgid "Provide a personal tag cloud on your channel page" +msgstr "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina" -#: ../../mod/settings.php:1133 -msgid "Firefox Share $Projectname provider" -msgstr "$Projectname-service voor Firefox Share" +#: ../../include/follow.php:28 +msgid "Channel is blocked on this site." +msgstr "Kanaal is op deze hub geblokkeerd." -#: ../../mod/settings.php:1134 -msgid "Start calendar week on monday" -msgstr "Begin in de agenda de week op maandag" +#: ../../include/follow.php:33 +msgid "Channel location missing." +msgstr "Ontbrekende kanaallocatie." -#: ../../mod/id.php:11 -msgid "First Name" -msgstr "Voornaam" +#: ../../include/follow.php:82 +msgid "Response from remote channel was incomplete." +msgstr "Antwoord van het kanaal op afstand was niet volledig." -#: ../../mod/id.php:12 -msgid "Last Name" -msgstr "Achternaam" +#: ../../include/follow.php:99 +msgid "Channel was deleted and no longer exists." +msgstr "Kanaal is verwijderd en bestaat niet meer." -#: ../../mod/id.php:13 -msgid "Nickname" -msgstr "Bijnaam" +#: ../../include/follow.php:155 ../../include/follow.php:191 +msgid "Protocol disabled." +msgstr "Protocol uitgeschakeld." -#: ../../mod/id.php:14 -msgid "Full Name" -msgstr "Volledige naam" +#: ../../include/follow.php:179 +msgid "Channel discovery failed." +msgstr "Kanaal ontdekken mislukt." -#: ../../mod/id.php:20 -msgid "Profile Photo 16px" -msgstr "Profielfoto 16px" +#: ../../include/follow.php:217 +msgid "Cannot connect to yourself." +msgstr "Kan niet met jezelf verbinden" -#: ../../mod/id.php:21 -msgid "Profile Photo 32px" -msgstr "Profielfoto 32px" +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"may apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken." -#: ../../mod/id.php:22 -msgid "Profile Photo 48px" -msgstr "Profielfoto 48px" +#: ../../include/group.php:248 +msgid "Add new connections to this privacy group" +msgstr "Voeg nieuwe connecties aan deze privacygroep toe" -#: ../../mod/id.php:23 -msgid "Profile Photo 64px" -msgstr "Profielfoto 64px" +#: ../../include/group.php:289 +msgid "edit" +msgstr "bewerken" -#: ../../mod/id.php:24 -msgid "Profile Photo 80px" -msgstr "Profielfoto 80px" +#: ../../include/group.php:312 +msgid "Edit group" +msgstr "Privacygroep bewerken" -#: ../../mod/id.php:25 -msgid "Profile Photo 128px" -msgstr "Profielfoto 128px" +#: ../../include/group.php:313 +msgid "Add privacy group" +msgstr "Privacygroep toevoegen" -#: ../../mod/id.php:26 -msgid "Timezone" -msgstr "Tijdzone" +#: ../../include/group.php:314 +msgid "Channels not in any privacy group" +msgstr "Kanalen die zich in geen enkele privacygroep bevinden" -#: ../../mod/id.php:29 -msgid "Birth Year" -msgstr "Geboortejaar" +#: ../../include/group.php:316 ../../include/widgets.php:282 +msgid "add" +msgstr "toevoegen" -#: ../../mod/id.php:30 -msgid "Birth Month" -msgstr "Geboortemaand" +#: ../../include/items.php:1138 ../../include/items.php:1183 +msgid "(Unknown)" +msgstr "(Onbekend)" -#: ../../mod/id.php:31 -msgid "Birth Day" -msgstr "Geboortedag" +#: ../../include/items.php:1382 +msgid "Visible to anybody on the internet." +msgstr "Voor iedereen op het internet zichtbaar." -#: ../../mod/id.php:32 -msgid "Birthdate" -msgstr "Geboortedatum" +#: ../../include/items.php:1384 +msgid "Visible to you only." +msgstr "Alleen voor jou zichtbaar." -#: ../../mod/setup.php:197 -msgid "$Projectname Server - Setup" -msgstr "$Projectname Hub - Setup" +#: ../../include/items.php:1386 +msgid "Visible to anybody in this network." +msgstr "Voor iedereen in dit netwerk zichtbaar." -#: ../../mod/setup.php:201 -msgid "Could not connect to database." -msgstr "Could not connect to database." +#: ../../include/items.php:1388 +msgid "Visible to anybody authenticated." +msgstr "Voor iedereen die geauthenticeerd is zichtbaar." -#: ../../mod/setup.php:205 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." -msgstr "Could not connect to specified hub URL. Possible SSL certificate or DNS issue." +#: ../../include/items.php:1390 +#, php-format +msgid "Visible to anybody on %s." +msgstr "Voor iedereen op %s zichtbaar." -#: ../../mod/setup.php:212 -msgid "Could not create table." -msgstr "Could not create table." +#: ../../include/items.php:1392 +msgid "Visible to all connections." +msgstr "Voor alle connecties zichtbaar." -#: ../../mod/setup.php:217 -msgid "Your site database has been installed." -msgstr "Your hub database has been installed." +#: ../../include/items.php:1394 +msgid "Visible to approved connections." +msgstr "Voor alle geaccepteerde connecties zichtbaar." -#: ../../mod/setup.php:221 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." -msgstr "You may need to import the file \"install/schema_xxx.sql\" manually using a database client." +#: ../../include/items.php:1396 +msgid "Visible to specific connections." +msgstr "Voor specifieke connecties zichtbaar." -#: ../../mod/setup.php:222 ../../mod/setup.php:290 ../../mod/setup.php:740 -msgid "Please see the file \"install/INSTALL.txt\"." -msgstr "Please see the file \"install/INSTALL.txt\"." +#: ../../include/items.php:5142 +msgid "Privacy group is empty." +msgstr "Privacygroep is leeg" -#: ../../mod/setup.php:287 -msgid "System check" -msgstr "System check" +#: ../../include/items.php:5149 +#, php-format +msgid "Privacy group: %s" +msgstr "Privacygroep: %s" -#: ../../mod/setup.php:292 -msgid "Check again" -msgstr "Check again" +#: ../../include/items.php:5161 +msgid "Connection not found." +msgstr "Connectie niet gevonden." -#: ../../mod/setup.php:314 -msgid "Database connection" -msgstr "Database connection" +#: ../../include/items.php:5594 +msgid "profile photo" +msgstr "profielfoto" -#: ../../mod/setup.php:315 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." -msgstr "In order to install $Projectname we need to know how to connect to your database." +#: ../../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" -#: ../../mod/setup.php:316 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." -msgstr "Please contact your hosting provider or server administrator if you have questions about these settings." +#: ../../include/photos.php:119 +msgid "Image file is empty." +msgstr "Afbeeldingsbestand is leeg" -#: ../../mod/setup.php:317 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." -msgstr "The database you specify below should already exist. If it does not, please create it before continuing." +#: ../../include/photos.php:257 +msgid "Photo storage failed." +msgstr "Foto kan niet worden opgeslagen" -#: ../../mod/setup.php:321 -msgid "Database Server Name" -msgstr "Database Server Name" +#: ../../include/photos.php:297 +msgid "a new photo" +msgstr "een nieuwe foto" -#: ../../mod/setup.php:321 -msgid "Default is 127.0.0.1" -msgstr "Default is 127.0.0.1" +#: ../../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" -#: ../../mod/setup.php:322 -msgid "Database Port" -msgstr "Database Port" +#: ../../include/photos.php:510 +msgid "Upload New Photos" +msgstr "Nieuwe foto's uploaden" -#: ../../mod/setup.php:322 -msgid "Communication port number - use 0 for default" -msgstr "Communication port number - use 0 for default" +#: ../../include/widgets.php:103 +msgid "System" +msgstr "Systeem" -#: ../../mod/setup.php:323 -msgid "Database Login Name" -msgstr "Database Login Name" +#: ../../include/widgets.php:106 +msgid "Create Personal App" +msgstr "Persoonlijke app maken" -#: ../../mod/setup.php:324 -msgid "Database Login Password" -msgstr "Database Login Password" +#: ../../include/widgets.php:107 +msgid "Edit Personal App" +msgstr "Persoonlijke app bewerken" -#: ../../mod/setup.php:325 -msgid "Database Name" -msgstr "Database Name" +#: ../../include/widgets.php:154 +msgid "Suggestions" +msgstr "Voorgestelde kanalen" -#: ../../mod/setup.php:326 -msgid "Database Type" -msgstr "Database Type" +#: ../../include/widgets.php:155 +msgid "See more..." +msgstr "Meer..." -#: ../../mod/setup.php:328 ../../mod/setup.php:368 -msgid "Site administrator email address" -msgstr "Hub administrator email address" +#: ../../include/widgets.php:175 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." +msgstr "Je hebt %1$.0f van de %2$.0f toegestane connecties." -#: ../../mod/setup.php:328 ../../mod/setup.php:368 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." -msgstr "Your account email address must match this in order to use the web admin panel." +#: ../../include/widgets.php:181 +msgid "Add New Connection" +msgstr "Nieuwe connectie toevoegen" -#: ../../mod/setup.php:329 ../../mod/setup.php:370 -msgid "Website URL" -msgstr "Hub URL" +#: ../../include/widgets.php:182 +msgid "Enter channel address" +msgstr "Vul kanaaladres in" -#: ../../mod/setup.php:329 ../../mod/setup.php:370 -msgid "Please use SSL (https) URL if available." -msgstr "Please use SSL (https) URL if available." +#: ../../include/widgets.php:183 +msgid "Examples: bob@example.com, https://example.com/barbara" +msgstr "Voorbeelden: bob@example.com, http://example.com/barbara" -#: ../../mod/setup.php:330 ../../mod/setup.php:373 -msgid "Please select a default timezone for your website" -msgstr "Please select a default timezone for your hub" +#: ../../include/widgets.php:199 +msgid "Notes" +msgstr "Aantekeningen" -#: ../../mod/setup.php:357 -msgid "Site settings" -msgstr "Hub settings" +#: ../../include/widgets.php:273 +msgid "Remove term" +msgstr "Verwijder zoekterm" -#: ../../mod/setup.php:371 -msgid "Enable $Projectname advanced features?" -msgstr "Enable $Projectname advanced features?" +#: ../../include/widgets.php:354 +msgid "Archives" +msgstr "Archieven" -#: ../../mod/setup.php:371 -msgid "" -"Some advanced features, while useful - may be best suited for technically " -"proficient audiences" -msgstr "Some advanced features, while useful - may be best suited for technically proficient audiences" +#: ../../include/widgets.php:467 +msgid "Refresh" +msgstr "Vernieuwen" -#: ../../mod/setup.php:423 -msgid "Could not find a command line version of PHP in the web server PATH." -msgstr "Could not find a command line version of PHP in the web server PATH." +#: ../../include/widgets.php:507 +msgid "Account settings" +msgstr "Account" -#: ../../mod/setup.php:424 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." -msgstr "If you don't have a command line version of PHP installed on server, you will not be able to run background polling via cron." +#: ../../include/widgets.php:513 +msgid "Channel settings" +msgstr "Kanaal" -#: ../../mod/setup.php:428 -msgid "PHP executable path" -msgstr "PHP executable path" +#: ../../include/widgets.php:522 +msgid "Additional features" +msgstr "Extra functies" -#: ../../mod/setup.php:428 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." -msgstr "Enter full path to php executable. You can leave this blank to continue the installation." +#: ../../include/widgets.php:529 +msgid "Feature/Addon settings" +msgstr "Plugin-instellingen" -#: ../../mod/setup.php:433 -msgid "Command line PHP" -msgstr "Command line PHP" +#: ../../include/widgets.php:535 +msgid "Display settings" +msgstr "Weergave" -#: ../../mod/setup.php:442 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." -msgstr "The command line version of PHP on your system does not have \"register_argc_argv\" enabled." +#: ../../include/widgets.php:542 +msgid "Manage locations" +msgstr "Locaties beheren" -#: ../../mod/setup.php:443 -msgid "This is required for message delivery to work." -msgstr "This is required for message delivery to work." +#: ../../include/widgets.php:551 +msgid "Export channel" +msgstr "Kanaal exporteren" -#: ../../mod/setup.php:446 -msgid "PHP register_argc_argv" -msgstr "PHP register_argc_argv" +#: ../../include/widgets.php:558 +msgid "Connected apps" +msgstr "Verbonden applicaties" -#: ../../mod/setup.php:464 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to" -" upload is set to %s. You are allowed to upload up to %d files at once." -msgstr "Your max allowed total upload size is set to %s. Maximum size of one file to upload is set to %s. You are allowed to upload up to %d files at once." +#: ../../include/widgets.php:573 +msgid "Premium Channel Settings" +msgstr "Instellingen premiumkanaal" -#: ../../mod/setup.php:469 -msgid "You can adjust these settings in the servers php.ini." -msgstr "You can adjust these settings in the servers php.ini." +#: ../../include/widgets.php:602 +msgid "Private Mail Menu" +msgstr "Privéberichten" -#: ../../mod/setup.php:471 -msgid "PHP upload limits" -msgstr "PHP upload limits" +#: ../../include/widgets.php:604 +msgid "Combined View" +msgstr "Gecombineerd postvak" -#: ../../mod/setup.php:494 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" -msgstr "Error: the \"openssl_pkey_new\" function on this system is not able to generate encryption keys" +#: ../../include/widgets.php:609 ../../include/nav.php:199 +msgid "Inbox" +msgstr "Postvak IN" -#: ../../mod/setup.php:495 -msgid "" -"If running under Windows, please see " -"\"http://www.php.net/manual/en/openssl.installation.php\"." -msgstr "If running under Windows, please see \"http://www.php.net/manual/en/openssl.installation.php\"." +#: ../../include/widgets.php:614 ../../include/nav.php:200 +msgid "Outbox" +msgstr "Postvak UIT" -#: ../../mod/setup.php:498 -msgid "Generate encryption keys" -msgstr "Generate encryption keys" +#: ../../include/widgets.php:619 ../../include/nav.php:201 +msgid "New Message" +msgstr "Nieuw bericht" -#: ../../mod/setup.php:510 -msgid "libCurl PHP module" -msgstr "libCurl PHP module" +#: ../../include/widgets.php:636 ../../include/widgets.php:648 +msgid "Conversations" +msgstr "Conversaties" -#: ../../mod/setup.php:511 -msgid "GD graphics PHP module" -msgstr "GD graphics PHP module" +#: ../../include/widgets.php:640 +msgid "Received Messages" +msgstr "Ontvangen berichten" -#: ../../mod/setup.php:512 -msgid "OpenSSL PHP module" -msgstr "OpenSSL PHP module" +#: ../../include/widgets.php:644 +msgid "Sent Messages" +msgstr "Verzonden berichten" -#: ../../mod/setup.php:513 -msgid "mysqli or postgres PHP module" -msgstr "mysqli or postgres PHP module" +#: ../../include/widgets.php:658 +msgid "No messages." +msgstr "Geen berichten" -#: ../../mod/setup.php:514 -msgid "mb_string PHP module" -msgstr "mb_string PHP module" +#: ../../include/widgets.php:676 +msgid "Delete conversation" +msgstr "Verwijder conversatie" -#: ../../mod/setup.php:515 -msgid "mcrypt PHP module" -msgstr "mcrypt PHP module" +#: ../../include/widgets.php:702 +msgid "Events Menu" +msgstr "Agenda-menu" -#: ../../mod/setup.php:516 -msgid "xml PHP module" -msgstr "xml PHP module" +#: ../../include/widgets.php:703 +msgid "Day View" +msgstr "Dag tonen" -#: ../../mod/setup.php:520 ../../mod/setup.php:522 -msgid "Apache mod_rewrite module" -msgstr "Apache mod_rewrite module" +#: ../../include/widgets.php:704 +msgid "Week View" +msgstr "Week tonen" -#: ../../mod/setup.php:520 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." -msgstr "Error: Apache webserver mod-rewrite module is required but not installed." +#: ../../include/widgets.php:705 +msgid "Month View" +msgstr "Maand tonen" -#: ../../mod/setup.php:526 ../../mod/setup.php:529 -msgid "proc_open" -msgstr "proc_open" +#: ../../include/widgets.php:717 +msgid "Events Tools" +msgstr "Agenda-hulpmiddelen" -#: ../../mod/setup.php:526 -msgid "" -"Error: proc_open is required but is either not installed or has been " -"disabled in php.ini" -msgstr "Error: proc_open is required but is either not installed or has been disabled in php.ini" +#: ../../include/widgets.php:718 +msgid "Export Calendar" +msgstr "Exporteren" -#: ../../mod/setup.php:534 -msgid "Error: libCURL PHP module required but not installed." -msgstr "Error: libCURL PHP module required but not installed." +#: ../../include/widgets.php:719 +msgid "Import Calendar" +msgstr "Importeren" -#: ../../mod/setup.php:538 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." -msgstr "Error: GD graphics PHP module with JPEG support required but not installed." +#: ../../include/widgets.php:798 +msgid "Overview" +msgstr "Overzicht" -#: ../../mod/setup.php:542 -msgid "Error: openssl PHP module required but not installed." -msgstr "Error: openssl PHP module required but not installed." +#: ../../include/widgets.php:805 +msgid "Chat Members" +msgstr "Chatleden" -#: ../../mod/setup.php:546 -msgid "" -"Error: mysqli or postgres PHP module required but neither are installed." -msgstr "Error: mysqli or postgres PHP module required but neither are installed." +#: ../../include/widgets.php:828 +msgid "Bookmarked Chatrooms" +msgstr "Bladwijzers van chatkanalen" -#: ../../mod/setup.php:550 -msgid "Error: mb_string PHP module required but not installed." -msgstr "Error: mb_string PHP module required but not installed." +#: ../../include/widgets.php:851 +msgid "Suggested Chatrooms" +msgstr "Voorgestelde chatkanalen" -#: ../../mod/setup.php:554 -msgid "Error: mcrypt PHP module required but not installed." -msgstr "Error: mcrypt PHP module required but not installed." +#: ../../include/widgets.php:996 ../../include/widgets.php:1108 +msgid "photo/image" +msgstr "foto/afbeelding" -#: ../../mod/setup.php:558 -msgid "Error: xml PHP module required for DAV but not installed." -msgstr "Error: xml PHP module required for DAV but not installed." +#: ../../include/widgets.php:1051 +msgid "Click to show more" +msgstr "Klik voor meer" -#: ../../mod/setup.php:576 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\"" -" in the top folder of your web server and it is unable to do so." -msgstr "The web installer needs to be able to create a file called \".htconfig.php\" in the top folder of your web server and it is unable to do so." +#: ../../include/widgets.php:1202 +msgid "Rating Tools" +msgstr "Beoordelingen" -#: ../../mod/setup.php:577 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." -msgstr "This is most often a permission setting, as the web server may not be able to write files in your folder - even if you can." +#: ../../include/widgets.php:1206 ../../include/widgets.php:1208 +msgid "Rate Me" +msgstr "Beoordeel mij" -#: ../../mod/setup.php:578 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." -msgstr "At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Red top folder." +#: ../../include/widgets.php:1211 +msgid "View Ratings" +msgstr "Bekijk beoordelingen" -#: ../../mod/setup.php:579 -msgid "" -"You can alternatively skip this procedure and perform a manual installation." -" Please see the file \"install/INSTALL.txt\" for instructions." -msgstr "You can alternatively skip this procedure and perform a manual installation. Please see the file \"install/INSTALL.txt\" for instructions." +#: ../../include/widgets.php:1268 +msgid "Forums" +msgstr "Forums" -#: ../../mod/setup.php:582 -msgid ".htconfig.php is writable" -msgstr ".htconfig.php is writable" +#: ../../include/widgets.php:1297 +msgid "Tasks" +msgstr "Taken" -#: ../../mod/setup.php:596 -msgid "" -"Red uses the Smarty3 template engine to render its web views. Smarty3 " -"compiles templates to PHP to speed up rendering." -msgstr "Red uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering." +#: ../../include/widgets.php:1306 +msgid "Documentation" +msgstr "Documentatie" -#: ../../mod/setup.php:597 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the Red top level folder." -msgstr "In order to store these compiled templates, the web server needs to have write access to the directory %s under the Red top level folder." +#: ../../include/widgets.php:1308 +msgid "Project/Site Information" +msgstr "Project- en hub-informatie" -#: ../../mod/setup.php:598 ../../mod/setup.php:619 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has" -" write access to this folder." -msgstr "Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder." +#: ../../include/widgets.php:1309 +msgid "For Members" +msgstr "Voor leden" -#: ../../mod/setup.php:599 -#, php-format -msgid "" -"Note: as a security measure, you should give the web server write access to " -"%s only--not the template files (.tpl) that it contains." -msgstr "Note: as a security measure, you should give the web server write access to %s only--not the template files (.tpl) that it contains." +#: ../../include/widgets.php:1310 +msgid "For Administrators" +msgstr "Voor beheerders" -#: ../../mod/setup.php:602 -#, php-format -msgid "%s is writable" -msgstr "%s is writable" +#: ../../include/widgets.php:1311 +msgid "For Developers" +msgstr "Voor ontwikkelaars" -#: ../../mod/setup.php:618 -msgid "" -"Red uses the store directory to save uploaded files. The web server needs to" -" have write access to the store directory under the Red top level folder" -msgstr "Red uses the store directory to save uploaded files. The web server needs to have write access to the store directory under the Red top level folder" +#: ../../include/widgets.php:1335 +msgid "Accounts" +msgstr "Accounts" -#: ../../mod/setup.php:622 -msgid "store is writable" -msgstr "store is writable" +#: ../../include/widgets.php:1335 ../../include/widgets.php:1373 +msgid "Member registrations waiting for confirmation" +msgstr "Accounts die op goedkeuring wachten" -#: ../../mod/setup.php:655 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access" -" to this site." -msgstr "SSL certificate cannot be validated. Fix certificate or disable https access to this hub." +#: ../../include/widgets.php:1341 +msgid "Inspect queue" +msgstr "Inspecteer berichtenwachtrij" -#: ../../mod/setup.php:656 -msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" -msgstr "If you have https access to your hub or allow connections to TCP port 443 (the https: port), you MUST use a browser-valid certificate. You MUST NOT use self-signed certificates!" +#: ../../include/widgets.php:1343 +msgid "DB updates" +msgstr "Database-updates" -#: ../../mod/setup.php:657 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." -msgstr "This restriction is incorporated because public posts from you may for example contain references to images on your own hub." +#: ../../include/widgets.php:1368 ../../include/nav.php:219 +msgid "Admin" +msgstr "Beheer" -#: ../../mod/setup.php:658 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." -msgstr "If your certificate is not recognized, members of other hubs (who may themselves have valid certificates) will get a warning message on their own hub complaining about security issues." +#: ../../include/widgets.php:1369 +msgid "Plugin Features" +msgstr "Plugin-opties" -#: ../../mod/setup.php:659 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." -msgstr "This can cause usability issues elsewhere (not just on your own hub) so we must insist on this requirement." +#: ../../include/taxonomy.php:240 ../../include/taxonomy.php:261 +msgid "Tags" +msgstr "Tags" -#: ../../mod/setup.php:660 -msgid "" -"Providers are available that issue free certificates which are browser-" -"valid." -msgstr "Providers are available that issue free certificates which are browser-valid." +#: ../../include/taxonomy.php:305 +msgid "Keywords" +msgstr "Trefwoorden" -#: ../../mod/setup.php:662 -msgid "SSL certificate validation" -msgstr "SSL certificate validation" +#: ../../include/taxonomy.php:326 +msgid "have" +msgstr "heb" -#: ../../mod/setup.php:668 -msgid "" -"Url rewrite in .htaccess is not working. Check your server " -"configuration.Test: " -msgstr "Url rewrite in .htaccess is not working. Check your server configuration.Test: " +#: ../../include/taxonomy.php:326 +msgid "has" +msgstr "heeft" -#: ../../mod/setup.php:671 -msgid "Url rewrite is working" -msgstr "Url rewrite is working" +#: ../../include/taxonomy.php:327 +msgid "want" +msgstr "wil" -#: ../../mod/setup.php:680 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." -msgstr "The database configuration file \".htconfig.php\" could not be written. Please use the enclosed text to create a configuration file in your web server root." +#: ../../include/taxonomy.php:327 +msgid "wants" +msgstr "wil" -#: ../../mod/setup.php:704 -msgid "Errors encountered creating database tables." -msgstr "Errors encountered creating database tables." +#: ../../include/taxonomy.php:328 +msgid "likes" +msgstr "vindt dit leuk" -#: ../../mod/setup.php:738 -msgid "

What next

" -msgstr "

What next

" +#: ../../include/taxonomy.php:329 +msgid "dislikes" +msgstr "vindt dit niet leuk" -#: ../../mod/setup.php:739 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the " -"poller." -msgstr "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +#: ../../include/js_strings.php:5 +msgid "Delete this item?" +msgstr "Dit item verwijderen?" -#: ../../mod/impel.php:192 -#, php-format -msgid "%s element installed" -msgstr "%s onderdeel geïnstalleerd" +#: ../../include/js_strings.php:8 +msgid "[-] show less" +msgstr "[-] minder reacties weergeven" -#: ../../mod/impel.php:195 -#, php-format -msgid "%s element installation failed" -msgstr "Installatie %s-element mislukt" +#: ../../include/js_strings.php:9 +msgid "[+] expand" +msgstr "[+] uitklappen" -#: ../../mod/import.php:28 -#, php-format -msgid "Your service plan only allows %d channels." -msgstr "Jouw abonnement staat maar %d kanalen toe." +#: ../../include/js_strings.php:10 +msgid "[-] collapse" +msgstr "[-] inklappen" -#: ../../mod/import.php:66 ../../mod/import_items.php:38 -msgid "Nothing to import." -msgstr "Niets gevonden om te importeren" +#: ../../include/js_strings.php:11 +msgid "Password too short" +msgstr "Wachtwoord te kort" -#: ../../mod/import.php:90 ../../mod/import_items.php:62 -msgid "Unable to download data from old server" -msgstr "Niet in staat om gegevens van de oude hub te downloaden" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" +msgstr "Wachtwoorden komen niet overeen" -#: ../../mod/import.php:96 ../../mod/import_items.php:68 -msgid "Imported file is empty." -msgstr "Geïmporteerde bestand is leeg" +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" +msgstr "Geheim wachtwoord" -#: ../../mod/import.php:118 ../../mod/import_items.php:82 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "Waarschuwing: database-versies lopen %1$d updates achter." +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" +msgstr "Wachtwoordhint" -#: ../../mod/import.php:156 -msgid "No channel. Import failed." -msgstr "Geen kanaal. Importeren mislukt." +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." +msgstr "Mededeling: de permissies zijn veranderd, maar zijn nog niet opgeslagen." -#: ../../mod/import.php:524 -msgid "You must be logged in to use this feature." -msgstr "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken." +#: ../../include/js_strings.php:17 +msgid "close all" +msgstr "Alles sluiten" -#: ../../mod/import.php:529 -msgid "Import Channel" -msgstr "Kanaal importeren" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" +msgstr "Niets nieuw hier" -#: ../../mod/import.php:530 -msgid "" -"Use this form to import an existing channel from a different server/hub. You" -" may retrieve the channel identity from the old server/hub via the network " -"or provide an export file." -msgstr "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken." +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" +msgstr "Beoordeel dit kanaal (dit is openbaar)" -#: ../../mod/import.php:531 ../../mod/import_items.php:115 -msgid "File to Upload" -msgstr "Bestand om te uploaden" +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" +msgstr "Omschrijving (optioneel)" -#: ../../mod/import.php:532 -msgid "Or provide the old server/hub details" -msgstr "Of vul de gegevens van de oude hub in" +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" +msgstr "Vul een URL in:" -#: ../../mod/import.php:533 -msgid "Your old identity address (xyz@example.com)" -msgstr "Jouw oude kanaaladres (xyz@example.com)" +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" +msgstr "Niet opgeslagen wijzigingen. Ben je er zeker van dat je deze pagina wil verlaten?" -#: ../../mod/import.php:534 -msgid "Your old login email address" -msgstr "Het e-mailadres van je oude account" +#: ../../include/js_strings.php:27 +msgid "timeago.prefixAgo" +msgstr "timeago.prefixAgo" -#: ../../mod/import.php:535 -msgid "Your old login password" -msgstr "Wachtwoord van jouw oude account" +#: ../../include/js_strings.php:28 +msgid "timeago.prefixFromNow" +msgstr "timeago.prefixFromNow" -#: ../../mod/import.php:536 -msgid "" -"For either option, please choose whether to make this hub your new primary " -"address, or whether your old location should continue this role. You will be" -" able to post from either location, but only one can be marked as the " -"primary location for files, photos, and media." -msgstr "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen." +#: ../../include/js_strings.php:29 +msgid "ago" +msgstr "geleden" -#: ../../mod/import.php:537 -msgid "Make this hub my primary location" -msgstr "Stel deze hub als mijn primaire locatie in" +#: ../../include/js_strings.php:30 +msgid "from now" +msgstr "vanaf nu" -#: ../../mod/import.php:538 -msgid "" -"Import existing posts if possible (experimental - limited by available " -"memory" -msgstr "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van beschikbaar servergeheugen)" +#: ../../include/js_strings.php:31 +msgid "less than a minute" +msgstr "minder dan een minuut" -#: ../../mod/import.php:539 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." -msgstr "Dit proces kan enkele minuten in beslag nemen. Klik maar één keer op opslaan en verlaat deze pagina niet alvorens het proces is voltooid." +#: ../../include/js_strings.php:32 +msgid "about a minute" +msgstr "ongeveer een minuut" -#: ../../mod/import_items.php:98 -msgid "Import completed" -msgstr "Importeren voltooid" +#: ../../include/js_strings.php:33 +#, php-format +msgid "%d minutes" +msgstr "%d minuten" -#: ../../mod/import_items.php:113 -msgid "Import Items" -msgstr "Importeer items" +#: ../../include/js_strings.php:34 +msgid "about an hour" +msgstr "ongeveer een uur" -#: ../../mod/import_items.php:114 -msgid "" -"Use this form to import existing posts and content from an export file." -msgstr "Gebruik dit formulier om bestaande berichten en andere inhoud vanuit een exportbestand te importeren." +#: ../../include/js_strings.php:35 +#, php-format +msgid "about %d hours" +msgstr "ongeveer %d uren" -#: ../../mod/sharedwithme.php:94 -msgid "Files: shared with me" -msgstr "Bestanden: met mij gedeeld" +#: ../../include/js_strings.php:36 +msgid "a day" +msgstr "een dag" -#: ../../mod/sharedwithme.php:96 -msgid "NEW" -msgstr "NIEUW" +#: ../../include/js_strings.php:37 +#, php-format +msgid "%d days" +msgstr "%d dagen" -#: ../../mod/sharedwithme.php:99 -msgid "Remove all files" -msgstr "Verwijder alle bestanden" +#: ../../include/js_strings.php:38 +msgid "about a month" +msgstr "ongeveer een maand" -#: ../../mod/sharedwithme.php:100 -msgid "Remove this file" -msgstr "Verwijder dit bestand" +#: ../../include/js_strings.php:39 +#, php-format +msgid "%d months" +msgstr "%d maanden" -#: ../../mod/invite.php:25 -msgid "Total invitation limit exceeded." -msgstr "Limiet voor aantal uitnodigingen overschreden." +#: ../../include/js_strings.php:40 +msgid "about a year" +msgstr "ongeveer een jaar" -#: ../../mod/invite.php:49 +#: ../../include/js_strings.php:41 #, php-format -msgid "%s : Not a valid email address." -msgstr "%s : Geen geldig e-mailadres." +msgid "%d years" +msgstr "%d jaren" -#: ../../mod/invite.php:59 -msgid "Please join us on $Projectname" -msgstr "Uitnodiging voor $Projectname" +#: ../../include/js_strings.php:42 +msgid " " +msgstr " " -#: ../../mod/invite.php:70 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder." +#: ../../include/js_strings.php:43 +msgid "timeago.numbers" +msgstr "timeago.numbers" -#: ../../mod/invite.php:75 -#, php-format -msgid "%s : Message delivery failed." -msgstr "%s: Aflevering bericht mislukt." +#: ../../include/js_strings.php:45 ../../include/text.php:1210 +msgid "January" +msgstr "januari" -#: ../../mod/invite.php:79 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "%d bericht verzonden." -msgstr[1] "%d berichten verzonden." +#: ../../include/js_strings.php:46 ../../include/text.php:1210 +msgid "February" +msgstr "februari" -#: ../../mod/invite.php:98 -msgid "You have no more invitations available" -msgstr "Je hebt geen uitnodigingen meer beschikbaar" +#: ../../include/js_strings.php:47 ../../include/text.php:1210 +msgid "March" +msgstr "maart" -#: ../../mod/invite.php:129 -msgid "Send invitations" -msgstr "Uitnodigingen verzenden" +#: ../../include/js_strings.php:48 ../../include/text.php:1210 +msgid "April" +msgstr "april" -#: ../../mod/invite.php:130 -msgid "Enter email addresses, one per line:" -msgstr "Voer e-mailadressen in, één per regel:" +#: ../../include/js_strings.php:49 +msgctxt "long" +msgid "May" +msgstr "mei" -#: ../../mod/invite.php:131 ../../mod/mail.php:246 -msgid "Your message:" -msgstr "Jouw bericht:" +#: ../../include/js_strings.php:50 ../../include/text.php:1210 +msgid "June" +msgstr "juni" -#: ../../mod/invite.php:132 -msgid "Please join my community on $Projectname." -msgstr "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op $Projectname te vergezellen. Lees meer over $Projectname op http://hubzilla.org" +#: ../../include/js_strings.php:51 ../../include/text.php:1210 +msgid "July" +msgstr "juli" -#: ../../mod/invite.php:134 -msgid "You will need to supply this invitation code:" -msgstr "Je moet deze uitnodigingscode opgeven:" +#: ../../include/js_strings.php:52 ../../include/text.php:1210 +msgid "August" +msgstr "augustus" -#: ../../mod/invite.php:135 -msgid "" -"1. Register at any $Projectname location (they are all inter-connected)" -msgstr "1. Registreer je op een willekeurige $Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):" +#: ../../include/js_strings.php:53 ../../include/text.php:1210 +msgid "September" +msgstr "september" -#: ../../mod/invite.php:137 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn $Projectname-kanaaladres in het zoekveld invullen:" +#: ../../include/js_strings.php:54 ../../include/text.php:1210 +msgid "October" +msgstr "oktober" -#: ../../mod/invite.php:138 -msgid "or visit" -msgstr "of bezoek" +#: ../../include/js_strings.php:55 ../../include/text.php:1210 +msgid "November" +msgstr "november" -#: ../../mod/invite.php:140 -msgid "3. Click [Connect]" -msgstr "3. Klik op [+ Verbinden]" +#: ../../include/js_strings.php:56 ../../include/text.php:1210 +msgid "December" +msgstr "december" -#: ../../mod/siteinfo.php:15 -#, php-format -msgid "Version %s" -msgstr "Versie %s" +#: ../../include/js_strings.php:57 +msgid "Jan" +msgstr "jan" -#: ../../mod/siteinfo.php:36 -msgid "Installed plugins/addons/apps:" -msgstr "Ingeschakelde plugins en apps:" +#: ../../include/js_strings.php:58 +msgid "Feb" +msgstr "feb" -#: ../../mod/siteinfo.php:49 -msgid "No installed plugins/addons/apps" -msgstr "Geen ingeschakelde plugins en apps" +#: ../../include/js_strings.php:59 +msgid "Mar" +msgstr "mrt" -#: ../../mod/siteinfo.php:62 -msgid "" -"This is a hub of $Projectname - a global cooperative network of " -"decentralized privacy enhanced websites." -msgstr "Dit is een $Projectname-hub - $Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy." +#: ../../include/js_strings.php:60 +msgid "Apr" +msgstr "apr" -#: ../../mod/siteinfo.php:64 -msgid "Tag: " -msgstr "Tag: " +#: ../../include/js_strings.php:61 +msgctxt "short" +msgid "May" +msgstr "mei" -#: ../../mod/siteinfo.php:66 -msgid "Last background fetch: " -msgstr "Meest recente achtergrond-fetch:" +#: ../../include/js_strings.php:62 +msgid "Jun" +msgstr "jun" -#: ../../mod/siteinfo.php:68 -msgid "Current load average: " -msgstr "Gemiddelde systeembelasting is nu:" +#: ../../include/js_strings.php:63 +msgid "Jul" +msgstr "jul" -#: ../../mod/siteinfo.php:71 -msgid "Running at web location" -msgstr "Draaiend op weblocatie" +#: ../../include/js_strings.php:64 +msgid "Aug" +msgstr "aug" -#: ../../mod/siteinfo.php:72 -msgid "" -"Please visit hubzilla.org to learn more " -"about $Projectname." -msgstr "Bezoek hubzilla.org " +#: ../../include/js_strings.php:65 +msgid "Sep" +msgstr "sep" -#: ../../mod/siteinfo.php:73 -msgid "Bug reports and issues: please visit" -msgstr "Bugrapporten en andere kwesties: bezoek" +#: ../../include/js_strings.php:66 +msgid "Oct" +msgstr "okt" -#: ../../mod/siteinfo.php:75 -msgid "$projectname issues" -msgstr "$projectname-issues" +#: ../../include/js_strings.php:67 +msgid "Nov" +msgstr "nov" -#: ../../mod/siteinfo.php:76 -msgid "" -"Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot " -"com" -msgstr "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com" +#: ../../include/js_strings.php:68 +msgid "Dec" +msgstr "dec" -#: ../../mod/siteinfo.php:78 -msgid "Site Administrators" -msgstr "Hubbeheerders: " +#: ../../include/js_strings.php:69 ../../include/text.php:1206 +msgid "Sunday" +msgstr "zondag" -#: ../../mod/item.php:174 -msgid "Unable to locate original post." -msgstr "Niet in staat om de originele locatie van het bericht te vinden. " +#: ../../include/js_strings.php:70 ../../include/text.php:1206 +msgid "Monday" +msgstr "maandag" -#: ../../mod/item.php:423 -msgid "Empty post discarded." -msgstr "Leeg bericht geannuleerd" +#: ../../include/js_strings.php:71 ../../include/text.php:1206 +msgid "Tuesday" +msgstr "dinsdag" -#: ../../mod/item.php:463 -msgid "Executable content type not permitted to this channel." -msgstr "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal." +#: ../../include/js_strings.php:72 ../../include/text.php:1206 +msgid "Wednesday" +msgstr "woensdag" -#: ../../mod/item.php:843 -msgid "Duplicate post suppressed." -msgstr "Dubbel bericht tegengehouden." +#: ../../include/js_strings.php:73 ../../include/text.php:1206 +msgid "Thursday" +msgstr "donderdag" -#: ../../mod/item.php:973 -msgid "System error. Post not saved." -msgstr "Systeemfout. Bericht niet opgeslagen." +#: ../../include/js_strings.php:74 ../../include/text.php:1206 +msgid "Friday" +msgstr "vrijdag" -#: ../../mod/item.php:1240 -msgid "Unable to obtain post information from database." -msgstr "Niet in staat om informatie over dit bericht uit de database te verkrijgen." +#: ../../include/js_strings.php:75 ../../include/text.php:1206 +msgid "Saturday" +msgstr "zaterdag" -#: ../../mod/item.php:1247 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." -msgstr "Je hebt jouw limiet van %1$.0f berichten bereikt." +#: ../../include/js_strings.php:76 +msgid "Sun" +msgstr "zo" -#: ../../mod/item.php:1254 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." -msgstr "Je hebt jouw limiet van %1$.0f webpagina's bereikt." +#: ../../include/js_strings.php:77 +msgid "Mon" +msgstr "ma" -#: ../../mod/layouts.php:177 -msgid "Comanche page description language help" -msgstr "Hulp met de paginabeschrijvingstaal Comanche" +#: ../../include/js_strings.php:78 +msgid "Tue" +msgstr "di" -#: ../../mod/layouts.php:181 -msgid "Layout Description" -msgstr "Lay-out-omschrijving" +#: ../../include/js_strings.php:79 +msgid "Wed" +msgstr "wo" -#: ../../mod/layouts.php:186 -msgid "Download PDL file" -msgstr "Download PDL-bestand" +#: ../../include/js_strings.php:80 +msgid "Thu" +msgstr "do" -#: ../../mod/like.php:15 -msgid "Like/Dislike" -msgstr "Leuk/niet leuk" +#: ../../include/js_strings.php:81 +msgid "Fri" +msgstr "vr" -#: ../../mod/like.php:20 -msgid "This action is restricted to members." -msgstr "Deze actie kan alleen door $Projectname-leden worden uitgevoerd." +#: ../../include/js_strings.php:82 +msgid "Sat" +msgstr "za" -#: ../../mod/like.php:21 -msgid "" -"Please login with your $Projectname ID or register as a new $Projectname member to continue." -msgstr "Je dient in te loggen met je $Projectname-account of een nieuw $Projectname-account aan te maken om verder te kunnen gaan." +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "today" +msgstr "vandaag" -#: ../../mod/like.php:101 ../../mod/like.php:127 ../../mod/like.php:165 -msgid "Invalid request." -msgstr "Ongeldig verzoek" +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "month" +msgstr "maand" -#: ../../mod/like.php:142 -msgid "thing" -msgstr "ding" +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "week" +msgstr "week" -#: ../../mod/like.php:188 -msgid "Channel unavailable." -msgstr "Kanaal niet beschikbaar." +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "day" +msgstr "dag" -#: ../../mod/like.php:236 -msgid "Previous action reversed." -msgstr "Vorige actie omgedraaid" +#: ../../include/js_strings.php:87 +msgctxt "calendar" +msgid "All day" +msgstr "hele dag" -#: ../../mod/like.php:420 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" -msgstr "%1$s is het eens met %2$s's %3$s" +#: ../../include/message.php:20 +msgid "No recipient provided." +msgstr "Geen ontvanger opgegeven." -#: ../../mod/like.php:422 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" -msgstr "%1$s is het niet eens met %2$s's %3$s" +#: ../../include/message.php:25 +msgid "[no subject]" +msgstr "[geen onderwerp]" -#: ../../mod/like.php:424 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" -msgstr "%1$s onthoudt zich van een besluit over %2$s's %3$s" +#: ../../include/message.php:45 +msgid "Unable to determine sender." +msgstr "Afzender kan niet bepaald worden." -#: ../../mod/like.php:426 -#, php-format -msgid "%1$s is attending %2$s's %3$s" -msgstr "%1$s is aanwezig op %2$s's %3$s" +#: ../../include/message.php:222 +msgid "Stored post could not be verified." +msgstr "Opgeslagen bericht kon niet worden geverifieerd." -#: ../../mod/like.php:428 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" -msgstr "%1$s is niet aanwezig op %2$s's %3$s" +#: ../../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." -#: ../../mod/like.php:430 -#, php-format -msgid "%1$s may attend %2$s's %3$s" -msgstr "%1$s is mogelijk aanwezig op %2$s's %3$s" +#: ../../include/import.php:70 +msgid "Channel clone failed. Import failed." +msgstr "Het klonen van het kanaal is mislukt. Importeren mislukt." -#: ../../mod/like.php:533 -msgid "Action completed." -msgstr "Actie voltooid" +#: ../../include/oembed.php:267 +msgid "Embedded content" +msgstr "Ingesloten (embedded) inhoud" -#: ../../mod/like.php:534 -msgid "Thank you." -msgstr "Bedankt" +#: ../../include/oembed.php:276 +msgid "Embedding disabled" +msgstr "Insluiten (embedding) uitgeschakeld" -#: ../../mod/locs.php:21 ../../mod/locs.php:50 -msgid "Location not found." -msgstr "Locatie niet gevonden." +#: ../../include/page_widgets.php:6 +msgid "New Page" +msgstr "Nieuwe pagina" -#: ../../mod/locs.php:58 -msgid "Location lookup failed." -msgstr "Opzoeken locatie mislukt" +#: ../../include/page_widgets.php:43 +msgid "Title" +msgstr "Titel" -#: ../../mod/locs.php:62 -msgid "" -"Please select another location to become primary before removing the primary" -" location." -msgstr "Kies eerst een andere primaire locatie alvorens de huidige primaire locatie te verwijderen." +#: ../../include/permissions.php:26 +msgid "Can view my normal stream and posts" +msgstr "Kan mijn normale kanaalstream en berichten bekijken" -#: ../../mod/locs.php:91 -msgid "Syncing locations" -msgstr "Locaties synchronizeren" +#: ../../include/permissions.php:27 +msgid "Can view my default channel profile" +msgstr "Kan mijn standaard kanaalprofiel bekijken" -#: ../../mod/locs.php:101 -msgid "No locations found." -msgstr "Geen locaties gevonden." +#: ../../include/permissions.php:28 +msgid "Can view my connections" +msgstr "Kan een lijst met mijn connecties bekijken" -#: ../../mod/locs.php:112 -msgid "Manage Channel Locations" -msgstr "Kanaallocaties beheren" +#: ../../include/permissions.php:29 +msgid "Can view my file storage and photos" +msgstr "Kan mijn foto's en andere bestanden bekijken" -#: ../../mod/locs.php:115 -msgid "Primary" -msgstr "Primair" +#: ../../include/permissions.php:30 +msgid "Can view my webpages" +msgstr "Kan mijn pagina's bekijken" -#: ../../mod/locs.php:116 ../../mod/menu.php:109 -msgid "Drop" -msgstr "Verwijderen" +#: ../../include/permissions.php:33 +msgid "Can send me their channel stream and posts" +msgstr "Kan mij de inhoud van hun kanaal en berichten sturen" -#: ../../mod/locs.php:118 -msgid "Sync Now" -msgstr "Nu synchroniseren" +#: ../../include/permissions.php:34 +msgid "Can post on my channel page (\"wall\")" +msgstr "Kan een bericht in mijn kanaal plaatsen" -#: ../../mod/locs.php:119 -msgid "Please wait several minutes between consecutive operations." -msgstr "Wacht enkele minuten tussen opeenvolgende handelingen." +#: ../../include/permissions.php:35 +msgid "Can comment on or like my posts" +msgstr "Kan op mijn berichten reageren of deze (niet) leuk vinden" -#: ../../mod/locs.php:120 -msgid "" -"When possible, drop a location by logging into that website/hub and removing" -" your channel." -msgstr "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen." +#: ../../include/permissions.php:36 +msgid "Can send me private mail messages" +msgstr "Kan mij privéberichten sturen" -#: ../../mod/locs.php:121 -msgid "Use this form to drop the location if the hub is no longer operating." -msgstr "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is." +#: ../../include/permissions.php:37 +msgid "Can like/dislike stuff" +msgstr "Kan dingen leuk of niet leuk vinden" -#: ../../mod/sources.php:32 -msgid "Failed to create source. No channel selected." -msgstr "Aanmaken bron mislukt. Geen kanaal geselecteerd." +#: ../../include/permissions.php:37 +msgid "Profiles and things other than posts/comments" +msgstr "Profielen en dingen, buiten berichten en reacties" -#: ../../mod/sources.php:45 -msgid "Source created." -msgstr "Bron aangemaakt." +#: ../../include/permissions.php:39 +msgid "Can forward to all my channel contacts via post @mentions" +msgstr "Kan naar al mijn kanaalconnecties berichten doorsturen met behulp van @vermeldingen+" -#: ../../mod/sources.php:57 -msgid "Source updated." -msgstr "Bron aangemaakt." +#: ../../include/permissions.php:39 +msgid "Advanced - useful for creating group forum channels" +msgstr "Geavanceerd - nuttig voor groepforums" -#: ../../mod/sources.php:82 -msgid "*" -msgstr "*" +#: ../../include/permissions.php:40 +msgid "Can chat with me (when available)" +msgstr "Kan met mij chatten (wanneer beschikbaar)" -#: ../../mod/sources.php:89 -msgid "Manage remote sources of content for your channel." -msgstr "Beheer externe bronnen met inhoud voor jouw kanaal" +#: ../../include/permissions.php:41 +msgid "Can write to my file storage and photos" +msgstr "Kan foto's en andere bestanden aan mijn bestandsopslag toevoegen" -#: ../../mod/sources.php:90 ../../mod/sources.php:100 -msgid "New Source" -msgstr "Nieuwe bron" +#: ../../include/permissions.php:42 +msgid "Can edit my webpages" +msgstr "Kan mijn pagina's bewerken" -#: ../../mod/sources.php:101 ../../mod/sources.php:133 -msgid "" -"Import all or selected content from the following channel into this channel " -"and distribute it according to your channel settings." -msgstr "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen." +#: ../../include/permissions.php:44 +msgid "Can source my public posts in derived channels" +msgstr "Kan mijn openbare berichten als bron voor andere kanalen gebruiken" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Only import content with these words (one per line)" -msgstr "Importeer alleen inhoud met deze woorden (één per regel)" +#: ../../include/permissions.php:44 +msgid "Somewhat advanced - very useful in open communities" +msgstr "Enigszins geavanceerd (erg nuttig voor kanalen van forums/groepen)" -#: ../../mod/sources.php:102 ../../mod/sources.php:134 -msgid "Leave blank to import all public content" -msgstr "Laat leeg om alle openbare inhoud te importeren" +#: ../../include/permissions.php:46 +msgid "Can administer my channel resources" +msgstr "Kan mijn kanaal beheren" -#: ../../mod/sources.php:103 ../../mod/sources.php:137 -msgid "Channel Name" -msgstr "Kanaalnaam" +#: ../../include/permissions.php:46 +msgid "" +"Extremely advanced. Leave this alone unless you know what you are doing" +msgstr "Zeer geavanceerd. Laat dit met rust, behalve als je weet wat je doet." -#: ../../mod/sources.php:123 ../../mod/sources.php:150 -msgid "Source not found." -msgstr "Bron niet gevonden" +#: ../../include/permissions.php:877 +msgid "Social Networking" +msgstr "Sociaal netwerk" -#: ../../mod/sources.php:130 -msgid "Edit Source" -msgstr "Bron bewerken" +#: ../../include/permissions.php:877 +msgid "Social - Mostly Public" +msgstr "Sociaal - Vrijwel alles openbaar" -#: ../../mod/sources.php:131 -msgid "Delete Source" -msgstr "Bron verwijderen" +#: ../../include/permissions.php:877 +msgid "Social - Restricted" +msgstr "Sociaal - Beperkt zichtbaar" -#: ../../mod/sources.php:158 -msgid "Source removed" -msgstr "Bron verwijderd" +#: ../../include/permissions.php:877 +msgid "Social - Private" +msgstr "Sociaal - Verborgen kanaal" -#: ../../mod/sources.php:160 -msgid "Unable to remove source." -msgstr "Verwijderen bron mislukt." +#: ../../include/permissions.php:878 +msgid "Community Forum" +msgstr "Groepsforum" -#: ../../mod/lostpass.php:15 -msgid "No valid account found." -msgstr "Geen geldige account gevonden." +#: ../../include/permissions.php:878 +msgid "Forum - Mostly Public" +msgstr "Forum - Vrijwel alles openbaar" -#: ../../mod/lostpass.php:29 -msgid "Password reset request issued. Check your email." -msgstr "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail." +#: ../../include/permissions.php:878 +msgid "Forum - Restricted" +msgstr "Forum - Beperkt zichtbaar" -#: ../../mod/lostpass.php:35 ../../mod/lostpass.php:103 -#, php-format -msgid "Site Member (%s)" -msgstr "Lid van hub (%s)" +#: ../../include/permissions.php:878 +msgid "Forum - Private" +msgstr "Forum - Verborgen kanaal" -#: ../../mod/lostpass.php:40 -#, php-format -msgid "Password reset requested at %s" -msgstr "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend" +#: ../../include/permissions.php:879 +msgid "Feed Republish" +msgstr "Feed herpubliceren" -#: ../../mod/lostpass.php:63 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." -msgstr "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt." +#: ../../include/permissions.php:879 +msgid "Feed - Mostly Public" +msgstr "Feed - Vrijwel alles openbaar" -#: ../../mod/lostpass.php:86 ../../boot.php:1608 -msgid "Password Reset" -msgstr "Wachtwoord vergeten?" +#: ../../include/permissions.php:879 +msgid "Feed - Restricted" +msgstr "Feed - Beperkt zichtbaar" -#: ../../mod/lostpass.php:87 -msgid "Your password has been reset as requested." -msgstr "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht." +#: ../../include/permissions.php:880 +msgid "Special Purpose" +msgstr "Speciaal doel" -#: ../../mod/lostpass.php:88 -msgid "Your new password is" -msgstr "Jouw nieuwe wachtwoord is" +#: ../../include/permissions.php:880 +msgid "Special - Celebrity/Soapbox" +msgstr "Speciaal - Beroemdheid/alleen volgen" -#: ../../mod/lostpass.php:89 -msgid "Save or copy your new password - and then" -msgstr "Kopieer of sla je nieuwe wachtwoord op - en" +#: ../../include/permissions.php:880 +msgid "Special - Group Repository" +msgstr "Speciaal - Groepsopslag" -#: ../../mod/lostpass.php:90 -msgid "click here to login" -msgstr "klik dan hier om in te loggen" +#: ../../include/permissions.php:881 +msgid "Custom/Expert Mode" +msgstr "Expertmodus/handmatig aanpassen" -#: ../../mod/lostpass.php:91 -msgid "" -"Your password may be changed from the Settings page after " -"successful login." -msgstr "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd." +#: ../../include/text.php:394 +msgid "prev" +msgstr "vorige" -#: ../../mod/lostpass.php:108 -#, php-format -msgid "Your password has changed at %s" -msgstr "Jouw wachtwoord op %s is veranderd" +#: ../../include/text.php:396 +msgid "first" +msgstr "eerste" -#: ../../mod/lostpass.php:123 -msgid "Forgot your Password?" -msgstr "Wachtwoord vergeten?" +#: ../../include/text.php:425 +msgid "last" +msgstr "laatste" -#: ../../mod/lostpass.php:124 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." -msgstr "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies." +#: ../../include/text.php:428 +msgid "next" +msgstr "volgende" -#: ../../mod/lostpass.php:125 -msgid "Email Address" -msgstr "E-mailadres" +#: ../../include/text.php:438 +msgid "older" +msgstr "ouder" -#: ../../mod/lostpass.php:126 -msgid "Reset" -msgstr "Opnieuw instellen" +#: ../../include/text.php:440 +msgid "newer" +msgstr "nieuwer" -#: ../../mod/magic.php:69 -msgid "Hub not found." -msgstr "Hub niet gevonden." +#: ../../include/text.php:822 +msgid "No connections" +msgstr "Geen connecties" -#: ../../mod/subthread.php:114 +#: ../../include/text.php:847 #, php-format -msgid "%1$s is following %2$s's %3$s" -msgstr "%1$s volgt het %3$s van %2$s" +msgid "View all %s connections" +msgstr "Toon alle %s connecties" -#: ../../mod/subthread.php:116 -#, php-format -msgid "%1$s stopped following %2$s's %3$s" -msgstr "%1$s volgt het %3$s van %2$s niet meer" +#: ../../include/text.php:992 ../../include/text.php:997 +msgid "poke" +msgstr "aanstoten" -#: ../../mod/mail.php:34 -msgid "Unable to lookup recipient." -msgstr "Niet in staat om ontvanger op te zoeken." +#: ../../include/text.php:998 +msgid "ping" +msgstr "ping" -#: ../../mod/mail.php:42 -msgid "Unable to communicate with requested channel." -msgstr "Niet in staat om met het aangevraagde kanaal te communiceren." +#: ../../include/text.php:998 +msgid "pinged" +msgstr "gepingd" -#: ../../mod/mail.php:49 -msgid "Cannot verify requested channel." -msgstr "Kan opgevraagd kanaal niet verifieren" +#: ../../include/text.php:999 +msgid "prod" +msgstr "por" -#: ../../mod/mail.php:75 -msgid "Selected channel has private message restrictions. Send failed." -msgstr "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt." +#: ../../include/text.php:999 +msgid "prodded" +msgstr "gepord" -#: ../../mod/mail.php:140 -msgid "Messages" -msgstr "Berichten" +#: ../../include/text.php:1000 +msgid "slap" +msgstr "slaan" -#: ../../mod/mail.php:175 -msgid "Message recalled." -msgstr "Bericht ingetrokken." +#: ../../include/text.php:1000 +msgid "slapped" +msgstr "sloeg" -#: ../../mod/mail.php:188 -msgid "Conversation removed." -msgstr "Conversatie verwijderd" +#: ../../include/text.php:1001 +msgid "finger" +msgstr "finger" -#: ../../mod/mail.php:231 -msgid "Requested channel is not in this network" -msgstr "Opgevraagd kanaal is niet in dit netwerk beschikbaar" +#: ../../include/text.php:1001 +msgid "fingered" +msgstr "gefingerd" -#: ../../mod/mail.php:239 -msgid "Send Private Message" -msgstr "Privébericht versturen" +#: ../../include/text.php:1002 +msgid "rebuff" +msgstr "afpoeieren" -#: ../../mod/mail.php:240 ../../mod/mail.php:370 -msgid "To:" -msgstr "Aan:" +#: ../../include/text.php:1002 +msgid "rebuffed" +msgstr "afgepoeierd" -#: ../../mod/mail.php:243 ../../mod/mail.php:372 -msgid "Subject:" -msgstr "Onderwerp:" +#: ../../include/text.php:1014 +msgid "happy" +msgstr "gelukkig" -#: ../../mod/mail.php:250 -msgid "Send" -msgstr "Verzenden" +#: ../../include/text.php:1015 +msgid "sad" +msgstr "bedroefd" -#: ../../mod/mail.php:342 -msgid "Delete message" -msgstr "Bericht verwijderen" +#: ../../include/text.php:1016 +msgid "mellow" +msgstr "mellow" -#: ../../mod/mail.php:343 -msgid "Delivery report" -msgstr "Afleveringsrapport" +#: ../../include/text.php:1017 +msgid "tired" +msgstr "moe" -#: ../../mod/mail.php:344 -msgid "Recall message" -msgstr "Bericht intrekken" +#: ../../include/text.php:1018 +msgid "perky" +msgstr "parmantig" -#: ../../mod/mail.php:346 -msgid "Message has been recalled." -msgstr "Bericht is ingetrokken." +#: ../../include/text.php:1019 +msgid "angry" +msgstr "boos" -#: ../../mod/mail.php:363 -msgid "Delete Conversation" -msgstr "Verwijder conversatie" +#: ../../include/text.php:1020 +msgid "stupefied" +msgstr "verbijsterd" -#: ../../mod/mail.php:365 -msgid "" -"No secure communications available. You may be able to " -"respond from the sender's profile page." -msgstr "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender." +#: ../../include/text.php:1021 +msgid "puzzled" +msgstr "verward" -#: ../../mod/mail.php:369 -msgid "Send Reply" -msgstr "Antwoord versturen" +#: ../../include/text.php:1022 +msgid "interested" +msgstr "geïnteresseerd" -#: ../../mod/mail.php:374 -#, php-format -msgid "Your message for %s (%s):" -msgstr "Jouw privébericht aan %s (%s):" +#: ../../include/text.php:1023 +msgid "bitter" +msgstr "verbitterd" -#: ../../mod/suggest.php:35 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." -msgstr "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer." +#: ../../include/text.php:1024 +msgid "cheerful" +msgstr "vrolijk" -#: ../../mod/manage.php:137 -msgid "Create a new channel" -msgstr "Nieuw kanaal aanmaken" +#: ../../include/text.php:1025 +msgid "alive" +msgstr "levendig" -#: ../../mod/manage.php:159 -msgid "Current Channel" -msgstr "Huidig kanaal" +#: ../../include/text.php:1026 +msgid "annoyed" +msgstr "geërgerd" -#: ../../mod/manage.php:161 -msgid "Switch to one of your channels by selecting it." -msgstr "Activeer een van jouw andere kanalen door er op te klikken." +#: ../../include/text.php:1027 +msgid "anxious" +msgstr "bezorgd" -#: ../../mod/manage.php:162 -msgid "Default Channel" -msgstr "Standaardkanaal" +#: ../../include/text.php:1028 +msgid "cranky" +msgstr "humeurig" -#: ../../mod/manage.php:163 -msgid "Make Default" -msgstr "Als standaard instellen" +#: ../../include/text.php:1029 +msgid "disturbed" +msgstr "verontrust" -#: ../../mod/manage.php:166 -#, php-format -msgid "%d new messages" -msgstr "%d nieuwe berichten" +#: ../../include/text.php:1030 +msgid "frustrated" +msgstr "gefrustreerd " -#: ../../mod/manage.php:167 -#, php-format -msgid "%d new introductions" -msgstr "%d nieuwe connectieverzoeken" +#: ../../include/text.php:1031 +msgid "depressed" +msgstr "gedeprimeerd" -#: ../../mod/manage.php:169 -msgid "Delegated Channel" -msgstr "Uitbesteed kanaal" +#: ../../include/text.php:1032 +msgid "motivated" +msgstr "gemotiveerd" -#: ../../mod/tagger.php:96 -#, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" -msgstr "%1$s heeft het %3$s van %2$s getagd met %4$s" +#: ../../include/text.php:1033 +msgid "relaxed" +msgstr "ontspannen" -#: ../../mod/match.php:22 -msgid "Profile Match" -msgstr "Profielovereenkomst" +#: ../../include/text.php:1034 +msgid "surprised" +msgstr "verrast" -#: ../../mod/match.php:31 -msgid "No keywords to match. Please add keywords to your default profile." -msgstr "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe." +#: ../../include/text.php:1210 +msgid "May" +msgstr "mei" -#: ../../mod/match.php:63 -msgid "is interested in:" -msgstr "is geïnteresseerd in:" +#: ../../include/text.php:1287 ../../include/text.php:1291 +msgid "Unknown Attachment" +msgstr "Onbekende bijlage" -#: ../../mod/match.php:70 -msgid "No matches" -msgstr "Geen overeenkomsten" +#: ../../include/text.php:1293 +msgid "unknown" +msgstr "onbekend" -#: ../../mod/tagrm.php:44 ../../mod/tagrm.php:94 -msgid "Tag removed" -msgstr "Tag verwijderd" +#: ../../include/text.php:1329 +msgid "remove category" +msgstr "categorie verwijderen" -#: ../../mod/tagrm.php:119 -msgid "Remove Item Tag" -msgstr "Verwijder item-tag" +#: ../../include/text.php:1406 +msgid "remove from file" +msgstr "uit map verwijderen" -#: ../../mod/tagrm.php:121 -msgid "Select a tag to remove: " -msgstr "Kies een tag om te verwijderen" +#: ../../include/text.php:1548 ../../include/text.php:1559 +msgid "Click to open/close" +msgstr "Klik om te openen of te sluiten" -#: ../../mod/menu.php:45 -msgid "Unable to update menu." -msgstr "Niet in staat om menu aan te passen" +#: ../../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" -#: ../../mod/menu.php:56 -msgid "Unable to create menu." -msgstr "Niet in staat om menu aan te maken." +#: ../../include/text.php:1814 +msgid "Page content type" +msgstr "Opmaaktype pagina" -#: ../../mod/menu.php:94 ../../mod/menu.php:106 -msgid "Menu Name" -msgstr "Menunaam" +#: ../../include/text.php:1848 +msgid "Select an alternate language" +msgstr "Kies een andere taal" -#: ../../mod/menu.php:94 -msgid "Unique name (not visible on webpage) - required" -msgstr "Unieke naam vereist (niet zichtbaar op webpagina)" +#: ../../include/text.php:1980 +msgid "activity" +msgstr "activiteit" -#: ../../mod/menu.php:95 ../../mod/menu.php:107 -msgid "Menu Title" -msgstr "Menutitel" +#: ../../include/text.php:2275 +msgid "Design Tools" +msgstr "Ontwerp-hulpmiddelen" -#: ../../mod/menu.php:95 -msgid "Visible on webpage - leave empty for no title" -msgstr "Zichtbaar op webpagina (leeg laten voor geen titel)" +#: ../../include/text.php:2281 +msgid "Pages" +msgstr "Pagina's" -#: ../../mod/menu.php:96 -msgid "Allow Bookmarks" -msgstr "Bladwijzers toestaan" +#: ../../include/nav.php:82 ../../include/nav.php:113 ../../boot.php:1601 +msgid "Logout" +msgstr "Uitloggen" -#: ../../mod/menu.php:96 ../../mod/menu.php:153 -msgid "Menu may be used to store saved bookmarks" -msgstr "Menu kan gebruikt worden om bladwijzers in op te slaan" +#: ../../include/nav.php:82 ../../include/nav.php:113 +msgid "End this session" +msgstr "Beëindig deze sessie" -#: ../../mod/menu.php:97 ../../mod/menu.php:155 -msgid "Submit and proceed" -msgstr "Opslaan en doorgaan" +#: ../../include/nav.php:85 ../../include/nav.php:144 +msgid "Home" +msgstr "Home" -#: ../../mod/menu.php:113 -msgid "Bookmarks allowed" -msgstr "Bladwijzers toegestaan" +#: ../../include/nav.php:85 +msgid "Your posts and conversations" +msgstr "Jouw kanaal" -#: ../../mod/menu.php:115 -msgid "Delete this menu" -msgstr "Menu verwijderen" +#: ../../include/nav.php:86 +msgid "Your profile page" +msgstr "Jouw profielpagina" -#: ../../mod/menu.php:116 ../../mod/menu.php:150 -msgid "Edit menu contents" -msgstr "Bewerk de inhoud van het menu" +#: ../../include/nav.php:88 +msgid "Manage/Edit profiles" +msgstr "Beheer/wijzig profielen" -#: ../../mod/menu.php:117 -msgid "Edit this menu" -msgstr "Dit menu bewerken" +#: ../../include/nav.php:90 +msgid "Edit your profile" +msgstr "Jouw profiel bewerken" -#: ../../mod/menu.php:132 -msgid "Menu could not be deleted." -msgstr "Menu kon niet verwijderd worden." +#: ../../include/nav.php:92 +msgid "Your photos" +msgstr "Jouw foto's" -#: ../../mod/menu.php:145 -msgid "Edit Menu" -msgstr "Menu bewerken" +#: ../../include/nav.php:93 +msgid "Your files" +msgstr "Jouw bestanden" -#: ../../mod/menu.php:149 -msgid "Add or remove entries to this menu" -msgstr "Items aan dit menu toevoegen of verwijder" +#: ../../include/nav.php:96 +msgid "Your chatrooms" +msgstr "Jouw chatkanalen" -#: ../../mod/menu.php:151 -msgid "Menu name" -msgstr "Naam van menu" +#: ../../include/nav.php:102 +msgid "Your bookmarks" +msgstr "Jouw bladwijzers" -#: ../../mod/menu.php:151 -msgid "Must be unique, only seen by you" -msgstr "Moet uniek zijn en is alleen zichtbaar voor jou." +#: ../../include/nav.php:106 +msgid "Your webpages" +msgstr "Jouw webpagina's" -#: ../../mod/menu.php:152 -msgid "Menu title" -msgstr "Titel van menu" +#: ../../include/nav.php:110 +msgid "Sign in" +msgstr "Inloggen" -#: ../../mod/menu.php:152 -msgid "Menu title as seen by others" -msgstr "Titel van menu zoals anderen dat zien." +#: ../../include/nav.php:127 +#, php-format +msgid "%s - click to logout" +msgstr "%s - klik om uit te loggen" -#: ../../mod/menu.php:153 -msgid "Allow bookmarks" -msgstr "Bladwijzers toestaan" +#: ../../include/nav.php:130 +msgid "Remote authentication" +msgstr "Authenticatie op afstand" -#: ../../mod/thing.php:110 -msgid "Thing updated" -msgstr "Ding bijgewerkt" +#: ../../include/nav.php:130 +msgid "Click to authenticate to your home hub" +msgstr "Authenticeer jezelf via (bijvoorbeeld) jouw hub" -#: ../../mod/thing.php:162 -msgid "Object store: failed" -msgstr "Opslaan van ding mislukt" +#: ../../include/nav.php:144 +msgid "Home Page" +msgstr "Homepage" -#: ../../mod/thing.php:166 -msgid "Thing added" -msgstr "Ding toegevoegd" +#: ../../include/nav.php:148 +msgid "Create an account" +msgstr "Maak een account aan" -#: ../../mod/thing.php:192 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" -msgstr "OBJ: %1$s %2$s %3$s" +#: ../../include/nav.php:161 +msgid "Help and documentation" +msgstr "Hulp en documentatie" -#: ../../mod/thing.php:255 -msgid "Show Thing" -msgstr "Ding weergeven" +#: ../../include/nav.php:165 +msgid "Applications, utilities, links, games" +msgstr "Apps" -#: ../../mod/thing.php:262 -msgid "item not found." -msgstr "Item niet gevonden" +#: ../../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 " -#: ../../mod/thing.php:295 -msgid "Edit Thing" -msgstr "Ding bewerken" +#: ../../include/nav.php:170 +msgid "Channel Directory" +msgstr "Kanalengids" -#: ../../mod/thing.php:297 ../../mod/thing.php:347 -msgid "Select a profile" -msgstr "Kies een profiel" +#: ../../include/nav.php:182 +msgid "Your grid" +msgstr "Jouw grid" -#: ../../mod/thing.php:301 ../../mod/thing.php:350 -msgid "Post an activity" -msgstr "Plaats een bericht" +#: ../../include/nav.php:183 +msgid "Mark all grid notifications seen" +msgstr "Markeer alle gridnotificaties als bekeken" -#: ../../mod/thing.php:301 ../../mod/thing.php:350 -msgid "Only sends to viewers of the applicable profile" -msgstr "Toont dit alleen aan diegene die het gekozen profiel mogen zien." +#: ../../include/nav.php:185 +msgid "Channel home" +msgstr "Jouw kanaal" -#: ../../mod/thing.php:303 ../../mod/thing.php:352 -msgid "Name of thing e.g. something" -msgstr "Naam van ding" +#: ../../include/nav.php:186 +msgid "Mark all channel notifications seen" +msgstr "Alle kanaalnotificaties als gelezen markeren" -#: ../../mod/thing.php:305 ../../mod/thing.php:353 -msgid "URL of thing (optional)" -msgstr "URL van ding (optioneel)" +#: ../../include/nav.php:192 +msgid "Notices" +msgstr "Notificaties" -#: ../../mod/thing.php:307 ../../mod/thing.php:354 -msgid "URL for photo of thing (optional)" -msgstr "URL voor foto van ding (optioneel)" +#: ../../include/nav.php:192 +msgid "Notifications" +msgstr "Notificaties" -#: ../../mod/thing.php:345 -msgid "Add Thing to your Profile" -msgstr "Ding aan je profiel toevoegen" +#: ../../include/nav.php:193 +msgid "See all notifications" +msgstr "Alle notificaties weergeven" -#: ../../mod/uexport.php:51 ../../mod/uexport.php:52 -msgid "Export Channel" -msgstr "Kanaal exporteren" +#: ../../include/nav.php:196 +msgid "Private mail" +msgstr "Privéberichten" -#: ../../mod/uexport.php:53 -msgid "" -"Export your basic channel information to a file. This acts as a backup of " -"your connections, permissions, profile and basic data, which can be used to " -"import your data to a new server hub, but does not contain your content." -msgstr "Exporteer de basisinformatie van jouw kanaal naar een bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal." +#: ../../include/nav.php:197 +msgid "See all private messages" +msgstr "Alle privéberichten weergeven" -#: ../../mod/uexport.php:54 -msgid "Export Content" -msgstr "Inhoud exporteren" +#: ../../include/nav.php:198 +msgid "Mark all private messages seen" +msgstr "Markeer alle privéberichten als bekeken" -#: ../../mod/uexport.php:55 -msgid "" -"Export your channel information and recent content to a JSON backup that can" -" be restored or imported to another server hub. This backs up all of your " -"connections, permissions, profile data and several months of posts. This " -"file may be VERY large. Please be patient - it may take several minutes for" -" this download to begin." -msgstr "Exporteer informatie en recente inhoud van jouw kanaal naar een JSON-back-up, wat kan worden gebruikt om jouw kanaal te herstellen of te importeren op een andere hub. Dit slaat al jouw connecties, permissies, profielgegevens en enkele maanden aan inhoud van jouw kanaal op. Dit bestand kan ZEER groot worden. Wees geduldig - het kan enkele minuten duren voordat de download begint." +#: ../../include/nav.php:204 +msgid "Event Calendar" +msgstr "Agenda" -#: ../../mod/uexport.php:56 -msgid "Export your posts from a given year." -msgstr "Exporteer jouw berichten uit een bepaald jaar." +#: ../../include/nav.php:205 +msgid "See all events" +msgstr "Alle gebeurtenissen weergeven" -#: ../../mod/uexport.php:58 -msgid "" -"You may also export your posts and conversations for a particular year or " -"month. Adjust the date in your browser location bar to select other dates. " -"If the export fails (possibly due to memory exhaustion on your server hub), " -"please try again selecting a more limited date range." -msgstr "Je kan ook berichten en conversaties uit een bepaald jaar of van een bepaalde maand exporteren. Verander de datum in de adresbalk van jouw webbrowser om andere jaren en maanden te selecteren. Wanneer het exporteren mislukt (waarschijnlijk door een gebrek aan beschikbaar servergeheugen), probeer het dan nogmaals met een beperkter tijdvak." +#: ../../include/nav.php:206 +msgid "Mark all events seen" +msgstr "Markeer alle gebeurtenissen als bekeken" -#: ../../mod/uexport.php:59 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit %2$s" -msgstr "Bezoek %2$s om alle berichten van bijvoorbeeld dit jaar te selecteren. " +#: ../../include/nav.php:209 +msgid "Manage Your Channels" +msgstr "Beheer je kanalen" -#: ../../mod/uexport.php:60 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"%2$s" -msgstr "Bezoek %2$s om alle berichten van bijvoorbeeld januari dit jaar te selecteren." +#: ../../include/nav.php:211 +msgid "Account/Channel Settings" +msgstr "Account-/kanaal-instellingen" -#: ../../mod/uexport.php:61 -#, php-format -msgid "" -"These content files may be imported or restored by visiting %2$s on any site containing your channel. For best results" -" please import or restore these in date order (oldest first)." -msgstr "Deze back-up-bestanden kunnen geïmporteerd of hersteld worden door op jouw hub en met jouw kanaal %2$s te bezoeken. Voor het beste resultaat kan je de bestanden in chronologische volgorde importeren of herstellen." +#: ../../include/nav.php:219 +msgid "Site Setup and Configuration" +msgstr "Hub instellen en beheren" -#: ../../mod/viewconnections.php:59 -msgid "No connections." -msgstr "Geen connecties." +#: ../../include/nav.php:261 +msgid "@name, #tag, ?doc, content" +msgstr "@kanaal, #tag, inhoud, ?hulp" -#: ../../mod/viewconnections.php:72 -#, php-format -msgid "Visit %s's profile [%s]" -msgstr "Bezoek het profiel van %s [%s]" +#: ../../include/nav.php:262 +msgid "Please wait..." +msgstr "Wachten aub..." -#: ../../mod/viewconnections.php:101 -msgid "View Connections" -msgstr "Connecties weergeven" +#: ../../include/zot.php:680 +msgid "Invalid data packet" +msgstr "Datapakket ongeldig" -#: ../../mod/viewsrc.php:40 -msgid "Source of Item" -msgstr "Bron van item" +#: ../../include/zot.php:696 +msgid "Unable to verify channel signature" +msgstr "Kanaalkenmerk kon niet worden geverifieerd. " -#: ../../mod/xchan.php:6 -msgid "Xchan Lookup" -msgstr "Xchan opzoeken" +#: ../../include/zot.php:2332 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "Hubkenmerk voor %s kon niet worden geverifieerd" -#: ../../mod/xchan.php:9 -msgid "Lookup xchan beginning with (or webbie): " -msgstr "Zoek een xchan (of webbie) die begint met:" +#: ../../include/zot.php:3670 +msgid "invalid target signature" +msgstr "ongeldig doelkenmerk" #: ../../view/theme/redbasic/php/config.php:82 msgid "Focus (Hubzilla default)" @@ -9597,62 +9768,62 @@ msgstr "Grootte profielfoto's van berichten instellen" msgid "Set size of followup author photos" msgstr "Grootte profielfoto's van reacties instellen" -#: ../../boot.php:1073 +#: ../../boot.php:1075 #, php-format msgctxt "opensearch" msgid "Search %1$s (%2$s)" msgstr "Zoek %1$s (%2$s)" -#: ../../boot.php:1073 +#: ../../boot.php:1075 msgctxt "opensearch" msgid "$Projectname" msgstr "$Projectname" -#: ../../boot.php:1390 +#: ../../boot.php:1392 #, php-format msgid "Update %s failed. See error logs." msgstr "Update %s mislukt. Zie foutenlogboek." -#: ../../boot.php:1393 +#: ../../boot.php:1395 #, php-format msgid "Update Error at %s" msgstr "Update-fout op %s" -#: ../../boot.php:1581 +#: ../../boot.php:1583 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:1603 +#: ../../boot.php:1605 msgid "Password" msgstr "Wachtwoord" -#: ../../boot.php:1604 +#: ../../boot.php:1606 msgid "Remember me" msgstr "Aangemeld blijven" -#: ../../boot.php:1607 +#: ../../boot.php:1609 msgid "Forgot your password?" msgstr "Wachtwoord vergeten?" -#: ../../boot.php:2236 +#: ../../boot.php:2238 msgid "toggle mobile" msgstr "mobiele weergave omschakelen" -#: ../../boot.php:2389 +#: ../../boot.php:2391 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:2392 +#: ../../boot.php:2394 #, php-format msgid "[hubzilla] Website SSL error for %s" msgstr "[hubzilla] Probleem met SSL-certificaat voor %s" -#: ../../boot.php:2429 +#: ../../boot.php:2431 msgid "Cron/Scheduled tasks not running." msgstr "Cron is niet actief" -#: ../../boot.php:2433 +#: ../../boot.php:2435 #, 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 3df6c9520..72fc4d2e1 100644 --- a/view/nl/hstrings.php +++ b/view/nl/hstrings.php @@ -34,1244 +34,843 @@ App::$strings["Not Found"] = "Niet gevonden"; App::$strings["Page not found."] = "Pagina niet gevonden."; App::$strings["Remote authentication blocked. You are logged into this site locally. Please logout and retry."] = "Authenticatie op afstand geblokkeerd. Je bent lokaal op deze hub ingelogd. Uitloggen en opnieuw proberen."; App::$strings["Welcome %s. Remote authentication successful."] = "Welkom %s. Authenticatie op afstand geslaagd."; -App::$strings["No username found in import file."] = "Geen gebruikersnaam in het importbestand gevonden."; -App::$strings["Unable to create a unique channel address. Import failed."] = "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt."; -App::$strings["Import completed."] = "Import voltooid."; -App::$strings["Cannot locate DNS info for database server '%s'"] = "Kan DNS-informatie voor databaseserver '%s' niet vinden"; -App::$strings["Profile Photos"] = "Profielfoto's"; -App::$strings["Unable to obtain identity information from database"] = "Niet in staat om identiteitsinformatie uit de database te verkrijgen"; -App::$strings["Empty name"] = "Ontbrekende naam"; -App::$strings["Name too long"] = "Naam te lang"; -App::$strings["No account identifier"] = "Geen account-identificator"; -App::$strings["Nickname is required."] = "Bijnaam is verplicht"; -App::$strings["Reserved nickname. Please choose another."] = "Deze naam is gereserveerd. Kies een andere."; -App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik."; -App::$strings["Unable to retrieve created identity"] = "Niet in staat om aangemaakte identiteit te vinden"; -App::$strings["Default Profile"] = "Standaardprofiel"; -App::$strings["Friends"] = "Vrienden"; -App::$strings["Requested channel is not available."] = "Opgevraagd kanaal is niet beschikbaar."; App::$strings["Requested profile is not available."] = "Opgevraagd profiel is niet beschikbaar"; -App::$strings["Change profile photo"] = "Profielfoto veranderen"; -App::$strings["Edit Profiles"] = "Bewerk profielen"; -App::$strings["Create New Profile"] = "Nieuw profiel aanmaken"; -App::$strings["Edit Profile"] = "Profiel bewerken"; -App::$strings["Profile Image"] = "Profielfoto"; -App::$strings["Visible to everybody"] = "Voor iedereen zichtbaar"; -App::$strings["Edit visibility"] = "Zichtbaarheid bewerken"; -App::$strings["Connect"] = "Verbinden"; -App::$strings["Location:"] = "Plaats:"; -App::$strings["Gender:"] = "Geslacht:"; -App::$strings["Status:"] = "Status:"; -App::$strings["Homepage:"] = "Homepagina:"; -App::$strings["Online Now"] = "Nu online"; -App::$strings["g A l F d"] = "G:i, l d F"; -App::$strings["F d"] = "d F"; -App::$strings["[today]"] = "[vandaag]"; -App::$strings["Birthday Reminders"] = "Verjaardagsherinneringen"; -App::$strings["Birthdays this week:"] = "Verjaardagen deze week:"; -App::$strings["[No description]"] = "[Geen omschrijving]"; -App::$strings["Event Reminders"] = "Herinneringen"; -App::$strings["Events this week:"] = "Gebeurtenissen deze week:"; -App::$strings["Full Name:"] = "Volledige naam:"; -App::$strings["Like this channel"] = "Vind dit kanaal leuk"; -App::$strings["__ctx:noun__ Like"] = array( - 0 => "vindt dit leuk", - 1 => "vinden dit leuk", -); -App::$strings["j F, Y"] = "F j Y"; -App::$strings["j F"] = "F j"; -App::$strings["Birthday:"] = "Geboortedatum:"; -App::$strings["Age:"] = "Leeftijd:"; -App::$strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; -App::$strings["Sexual Preference:"] = "Seksuele voorkeur:"; -App::$strings["Hometown:"] = "Oorspronkelijk uit:"; -App::$strings["Tags:"] = "Tags:"; -App::$strings["Political Views:"] = "Politieke overtuigingen:"; -App::$strings["Religion:"] = "Religie:"; -App::$strings["About:"] = "Over:"; -App::$strings["Hobbies/Interests:"] = "Hobby's/interesses:"; -App::$strings["Likes:"] = "Houdt van:"; -App::$strings["Dislikes:"] = "Houdt niet van:"; -App::$strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; -App::$strings["My other channels:"] = "Mijn andere kanalen"; -App::$strings["Musical interests:"] = "Muzikale interesses:"; -App::$strings["Books, literature:"] = "Boeken, literatuur:"; -App::$strings["Television:"] = "Televisie:"; -App::$strings["Film/dance/culture/entertainment:"] = "Films/dansen/cultuur/vermaak:"; -App::$strings["Love/Romance:"] = "Liefde/romantiek:"; -App::$strings["Work/employment:"] = "Werk/beroep:"; -App::$strings["School/education:"] = "School/opleiding:"; -App::$strings["Profile"] = "Profiel"; -App::$strings["Like this thing"] = "Vind dit ding leuk"; -App::$strings["cover photo"] = "omslagfoto"; -App::$strings["created a new post"] = "maakte een nieuw bericht aan"; -App::$strings["commented on %s's post"] = "gaf een reactie op een bericht van %s"; -App::$strings["Private Message"] = "Niet voor iedereen zichtbaar"; -App::$strings["Select"] = "Kies"; -App::$strings["Save to Folder"] = "In map opslaan"; -App::$strings["I will attend"] = "Aanwezig"; -App::$strings["I will not attend"] = "Niet aanwezig"; -App::$strings["I might attend"] = "Mogelijk aanwezig"; -App::$strings["I agree"] = "Eens"; -App::$strings["I disagree"] = "Oneens"; -App::$strings["I abstain"] = "Onthouding"; -App::$strings["View all"] = "Toon alles"; -App::$strings["__ctx:noun__ Dislike"] = array( - 0 => "vindt dit niet leuk", - 1 => "vinden dit niet leuk", +App::$strings["Some blurb about what to do when you're new here"] = "Welkom op \$Projectname. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook apps, waar je vrijwel alle functies van \$Projectname kunt vinden. Voor hulp met \$Projectname klik je op het vraagteken."; +App::$strings["network"] = "netwerk"; +App::$strings["RSS"] = "RSS"; +App::$strings["Theme settings updated."] = "Thema-instellingen bijgewerkt."; +App::$strings["Item not found."] = "Item niet gevonden."; +App::$strings["# Accounts"] = "# accounts"; +App::$strings["# blocked accounts"] = "# geblokkeerde accounts"; +App::$strings["# expired accounts"] = "# verlopen accounts"; +App::$strings["# expiring accounts"] = "# accounts die nog moeten verlopen"; +App::$strings["# Channels"] = "# Kanalen"; +App::$strings["# primary"] = "# primair"; +App::$strings["# clones"] = "# klonen"; +App::$strings["Message queues"] = "Berichtenwachtrij"; +App::$strings["Administration"] = "Beheer"; +App::$strings["Summary"] = "Samenvatting"; +App::$strings["Registered accounts"] = "Geregistreerde accounts"; +App::$strings["Pending registrations"] = "Accounts die op goedkeuring wachten"; +App::$strings["Registered channels"] = "Geregistreerde kanalen"; +App::$strings["Active plugins"] = "Ingeschakelde plugins"; +App::$strings["Version"] = "Versie"; +App::$strings["Site settings updated."] = "Hub-instellingen bijgewerkt."; +App::$strings["Default"] = "Standaard"; +App::$strings["mobile"] = "mobiel"; +App::$strings["experimental"] = "experimenteel"; +App::$strings["unsupported"] = "Niet ondersteund"; +App::$strings["No"] = "Nee"; +App::$strings["Yes - with approval"] = "Ja - met goedkeuring"; +App::$strings["Yes"] = "Ja"; +App::$strings["My site is not a public server"] = "Mijn \$Projectname-hub is niet openbaar"; +App::$strings["My site has paid access only"] = "Mijn \$Projectname-hub kent alleen betaalde toegang"; +App::$strings["My site has free access only"] = "Mijn \$Projectname-hub kent alleen gratis toegang"; +App::$strings["My site offers free accounts with optional paid upgrades"] = "Mijn \$Projectname-hub biedt gratis accounts aan met betaalde uitbreidingen als optie"; +App::$strings["Site"] = "Hub-instellingen"; +App::$strings["Submit"] = "Opslaan"; +App::$strings["Registration"] = "Registratie"; +App::$strings["File upload"] = "Bestand uploaden"; +App::$strings["Policies"] = "Beleid"; +App::$strings["Advanced"] = "Geavanceerd"; +App::$strings["Site name"] = "Naam van deze \$Projectname-hub"; +App::$strings["Banner/Logo"] = "Banner/logo"; +App::$strings["Administrator Information"] = "Informatie over de beheerder van deze hub"; +App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Contactinformatie voor hub-beheerders. Getoond op pagina met hub-informatie. Er kan hier bbcode gebruikt worden."; +App::$strings["System language"] = "Standaardtaal"; +App::$strings["System theme"] = "Standaardthema"; +App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standaardthema voor \$Projectname-hub (kan door lid veranderd worden) - verander thema-instellingen"; +App::$strings["Mobile system theme"] = "Standaardthema voor mobiel"; +App::$strings["Theme for mobile devices"] = "Thema voor mobiele apparaten"; +App::$strings["Allow Feeds as Connections"] = "Sta feeds toe als connecties"; +App::$strings["(Heavy system resource usage)"] = "(sterk negatieve invloed op systeembronnen hub)"; +App::$strings["Maximum image size"] = "Maximale grootte van afbeeldingen"; +App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale grootte in bytes voor afbeeldingen die worden geüpload. Standaard is 0, wat geen limiet betekend."; +App::$strings["Does this site allow new member registration?"] = "Staat deze hub nieuwe accounts toe?"; +App::$strings["Invitation only"] = "Alleen op uitnodiging"; +App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Sta alleen nieuwe registraties toe van mensen die een uitnodigingscode hebben. Bovenstaand accountbeleid moet op Ja staan."; +App::$strings["Which best describes the types of account offered by this hub?"] = "Wat voor soort accounts biedt deze \$Projectname-hub aan? Kies wat het meest in de buurt komt."; +App::$strings["Register text"] = "Tekst tijdens registratie"; +App::$strings["Will be displayed prominently on the registration page."] = "Tekst dat op de pagina voor het registreren van nieuwe accounts wordt getoond."; +App::$strings["Site homepage to show visitors (default: login box)"] = "Homepagina van deze hub die aan bezoekers wordt getoond (standaard: inlogformulier)"; +App::$strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "voorbeeld: 'public' om de openbare stream te tonen, 'page/sys/home' om de webpagina 'home' van het systeemkanaal te tonen of 'include:home.html' om een gewoon bestand te gebruiken."; +App::$strings["Preserve site homepage URL"] = "Behoudt de URL van de hub (/)"; +App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Toon de homepagina van de hub in een frame op de oorspronkelijke locatie (/), i.p.v. een doorverwijzing naar een andere locatie (bv. .../home.html)"; +App::$strings["Accounts abandoned after x days"] = "Accounts als verlaten beschouwen na zoveel aantal dagen:"; +App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Zal geen systeembronnen verspillen door polling van externe hubs voor verlaten accounts. Vul 0 in voor geen tijdslimiet."; +App::$strings["Allowed friend domains"] = "Toegestane domeinen"; +App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Komma-gescheiden lijst van domeinen waarvan kanalen connecties kunnen aangaan met kanalen op deze \$Projectname-hub. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten."; +App::$strings["Allowed email domains"] = "Toegestane e-maildomeinen"; +App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te laten."; +App::$strings["Not allowed email domains"] = "Niet toegestane e-maildomeinen"; +App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen niet op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te staan, tenzij er toegestane domeinen zijn ingesteld. "; +App::$strings["Verify Email Addresses"] = "E-mailadres verifieren"; +App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Inschakelen om e-mailadressen te verifiëren die tijdens de accountregistratie worden gebruikt (aanbevolen)."; +App::$strings["Force publish"] = "Dwing kanaalvermelding af"; +App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Vink dit aan om af te dwingen dat alle kanalen op deze hub in de kanalengids worden vermeld."; +App::$strings["Import Public Streams"] = "Openbare streams importeren"; +App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Toegang verlenen tot openbare berichten die vanuit andere hubs worden geïmporteerd. Waarschuwing: de inhoud van deze berichten wordt niet gemodereerd."; +App::$strings["Login on Homepage"] = "Inlogformulier op de homepagina"; +App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Toon een inlogformulier voor bezoekers op de homepagina wanneer geen andere inhoud is geconfigureerd. "; +App::$strings["Enable context help"] = "Schakel contextuele hulp in"; +App::$strings["Display contextual help for the current page when the help button is pressed."] = "Toon hulp en documentatie voor de op dat moment getoonde pagina, wanneer op de hulp-knop wordt geklikt."; +App::$strings["Directory Server URL"] = "Server-URL voor de kanalengids"; +App::$strings["Default directory server"] = "Standaardserver voor de kanalengids"; +App::$strings["Proxy user"] = "Gebruikersnaam proxy"; +App::$strings["Proxy URL"] = "Proxy-URL"; +App::$strings["Network timeout"] = "Netwerktimeout"; +App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)"; +App::$strings["Delivery interval"] = "Afleveringsinterval"; +App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Vertraag de achtergrondprocessen voor het afleveren met een aantal seconden om de systeembelasting te verminderen. Aanbevolen: 4-5 voor shared hosts, 2-3 voor virtual private servers (VPS) en 0-1 voor grote dedicated servers."; +App::$strings["Deliveries per process"] = "Leveringen per serverproces"; +App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Aantal leveringen die aan één serverproces worden meegegeven. Pas dit aan wanneer het nodig is om systeemprestaties te verbeteren. Aangeraden: 1-5"; +App::$strings["Poll interval"] = "Poll-interval"; +App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "De achtergrondprocessen voor het afleveren met zoveel seconden vertragen om de systeembelasting te verminderen. 0 om de afleveringsinterval te gebruiken."; +App::$strings["Maximum Load Average"] = "Maximaal gemiddelde systeembelasting"; +App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale systeembelasting voordat de afleverings- en polllingsprocessen worden uitgesteld. Standaard is 50."; +App::$strings["Expiration period in days for imported (grid/network) content"] = "Aantal dagen waarna geïmporteerde inhoud uit iemands grid/netwerk-pagina wordt verwijderd."; +App::$strings["0 for no expiration of imported content"] = "Dit geldt alleen voor inhoud van andere kanalen, dus niet voor iemands eigen kanaal. 0 voor het niet verwijderen van geïmporteerde inhoud."; +App::$strings["Off"] = "Uit"; +App::$strings["On"] = "Aan"; +App::$strings["Lock feature %s"] = " Vergrendel de functie '%s'"; +App::$strings["Manage Additional Features"] = "Beheer - Extra functies"; +App::$strings["No server found"] = "Geen hub gevonden"; +App::$strings["ID"] = "ID"; +App::$strings["for channel"] = "voor kanaal"; +App::$strings["on server"] = "op hub"; +App::$strings["Status"] = "Status"; +App::$strings["Server"] = "Hubbeheer"; +App::$strings["Security"] = "Beveiliging"; +App::$strings["Block public"] = "Openbare toegang blokkeren"; +App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Vink dit aan om alle normaliter openbare persoonlijke pagina's op deze hub alleen toegankelijk te maken voor leden die zich hebben geauthenticeerd."; +App::$strings["Allow communications only from these sites"] = "Alleen communicatie met deze hubs toestaan"; +App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Eén hub per regel. Laat leeg om communicatie standaard met alle hubs toe te staan"; +App::$strings["Block communications from these sites"] = "Communicatie met deze hubs blokkeren"; +App::$strings["Allow communications only from these channels"] = "Sta alleen communicatie toe met deze kanalen"; +App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Eén kanaal (hash) per regel. Laat leeg om communicatie standaard met alle kanalen toe te staan"; +App::$strings["Block communications from these channels"] = "Communicatie met deze kanalen blokkeren"; +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."; +App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s gaf geen melding. Het is daarom niet bekend of deze geslaagd is."; +App::$strings["Update function %s could not be found."] = "Update-functie %s kon niet gevonden worden."; +App::$strings["No failed updates."] = "Geen mislukte updates."; +App::$strings["Failed Updates"] = "Mislukte updates"; +App::$strings["Mark success (if update was manually applied)"] = "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)"; +App::$strings["Attempt to execute this update step automatically"] = "Poging om deze stap van de update automatisch uit te voeren."; +App::$strings["Queue Statistics"] = "Wachtrij-statistieken"; +App::$strings["Total Entries"] = "Aantal vermeldingen"; +App::$strings["Priority"] = "Prioriteit"; +App::$strings["Destination URL"] = "Doel-URL"; +App::$strings["Mark hub permanently offline"] = "Hub als permanent offline markeren"; +App::$strings["Empty queue for this hub"] = "Berichtenwachtrij voor deze hub legen"; +App::$strings["Last known contact"] = "Voor het laatst contact"; +App::$strings["%s account blocked/unblocked"] = array( + 0 => "%s account geblokkeerd/gedeblokkeerd", + 1 => "%s accounts geblokkeerd/gedeblokkeerd", ); -App::$strings["Add Star"] = "Ster toevoegen"; -App::$strings["Remove Star"] = "Ster verwijderen"; -App::$strings["Toggle Star Status"] = "Ster toevoegen of verwijderen"; -App::$strings["starred"] = "met ster"; -App::$strings["Message signature validated"] = "Berichtkenmerk gevalideerd"; -App::$strings["Message signature incorrect"] = "Berichtkenmerk onjuist"; -App::$strings["Add Tag"] = "Tag toevoegen"; -App::$strings["I like this (toggle)"] = "Vind ik leuk"; -App::$strings["like"] = "vind dit leuk"; -App::$strings["I don't like this (toggle)"] = "Vind ik niet leuk"; -App::$strings["dislike"] = "vind dit niet leuk"; -App::$strings["Share This"] = "Delen"; -App::$strings["share"] = "delen"; -App::$strings["Delivery Report"] = "Afleveringsrapport"; -App::$strings["%d comment"] = array( - 0 => "%d reactie", - 1 => "%d reacties weergeven", +App::$strings["%s account deleted"] = array( + 0 => "%s account verwijderd", + 1 => "%s accounts verwijderd", ); -App::$strings["View %s's profile - %s"] = "Profiel van %s bekijken - %s"; -App::$strings["to"] = "aan"; -App::$strings["via"] = "via"; -App::$strings["Wall-to-Wall"] = "Kanaal-naar-kanaal"; -App::$strings["via Wall-To-Wall:"] = "via kanaal-naar-kanaal"; -App::$strings["from %s"] = "van %s"; -App::$strings["last edited: %s"] = "laatst bewerkt: %s"; -App::$strings["Expires: %s"] = "Verloopt: %s"; -App::$strings["Save Bookmarks"] = "Bladwijzers opslaan"; -App::$strings["Add to Calendar"] = "Aan agenda toevoegen"; -App::$strings["Mark all seen"] = "Markeer alles als bekeken"; -App::$strings["__ctx:noun__ Likes"] = "vinden dit leuk"; -App::$strings["__ctx:noun__ Dislikes"] = "vinden dit niet leuk"; -App::$strings["Close"] = "Sluiten"; -App::$strings["Please wait"] = "Even wachten"; -App::$strings["[+] show all"] = "[+] alle"; -App::$strings["This is you"] = "Dit ben jij"; -App::$strings["Comment"] = "Reactie"; -App::$strings["Submit"] = "Opslaan"; -App::$strings["Bold"] = "Vet"; -App::$strings["Italic"] = "Cursief"; -App::$strings["Underline"] = "Onderstrepen"; -App::$strings["Quote"] = "Citeren"; -App::$strings["Code"] = "Broncode"; -App::$strings["Image"] = "Afbeelding"; -App::$strings["Insert Link"] = "Link invoegen"; -App::$strings["Video"] = "Video"; -App::$strings["Preview"] = "Voorvertoning"; -App::$strings["Encrypt text"] = "Tekst versleutelen"; -App::$strings["Not a valid email address"] = "Geen geldig e-mailadres"; -App::$strings["Your email domain is not among those allowed on this site"] = "Jouw e-maildomein is op deze hub niet toegestaan"; -App::$strings["Your email address is already registered at this site."] = "Jouw e-mailadres is al op deze hub geregistreerd."; -App::$strings["An invitation is required."] = "Een uitnodiging is vereist"; -App::$strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden"; -App::$strings["Please enter the required information."] = "Vul de vereiste informatie in."; -App::$strings["Failed to store account information."] = "Account-informatie kon niet opgeslagen worden."; -App::$strings["Registration confirmation for %s"] = "Registratiebevestiging voor %s"; -App::$strings["Registration request at %s"] = "Registratiebevestiging voor %s"; -App::$strings["Administrator"] = "Beheerder"; -App::$strings["your registration password"] = "jouw registratiewachtwoord"; -App::$strings["Registration details for %s"] = "Registratiegegevens voor %s"; -App::$strings["Account approved."] = "Account goedgekeurd"; -App::$strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; -App::$strings["Account verified. Please login."] = "Account is geverifieerd. Je kan inloggen."; -App::$strings["Click here to upgrade."] = "Klik hier om te upgraden."; -App::$strings["This action exceeds the limits set by your subscription plan."] = "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden."; -App::$strings["This action is not available under your subscription plan."] = "Deze handeling is niet mogelijk met jouw abonnement."; -App::$strings["Male"] = "Man"; -App::$strings["Female"] = "Vrouw"; -App::$strings["Currently Male"] = "Momenteel man"; -App::$strings["Currently Female"] = "Momenteel vrouw"; -App::$strings["Mostly Male"] = "Voornamelijk man"; -App::$strings["Mostly Female"] = "Voornamelijk vrouw"; -App::$strings["Transgender"] = "Transgender"; -App::$strings["Intersex"] = "Interseksueel"; -App::$strings["Transsexual"] = "Transseksueel"; -App::$strings["Hermaphrodite"] = "Hermafrodiet"; -App::$strings["Neuter"] = "Genderneutraal"; -App::$strings["Non-specific"] = "Niet gespecificeerd"; -App::$strings["Other"] = "Anders"; -App::$strings["Undecided"] = "Nog niet beslist"; -App::$strings["Males"] = "Mannen"; -App::$strings["Females"] = "Vrouwen"; -App::$strings["Gay"] = "Homoseksueel"; -App::$strings["Lesbian"] = "Lesbisch"; -App::$strings["No Preference"] = "Geen voorkeur"; -App::$strings["Bisexual"] = "Biseksueel"; -App::$strings["Autosexual"] = "Autoseksueel"; -App::$strings["Abstinent"] = "Seksuele onthouding"; -App::$strings["Virgin"] = "Maagd"; -App::$strings["Deviant"] = "Afwijkend"; -App::$strings["Fetish"] = "Fetisj"; -App::$strings["Oodles"] = "Veel"; -App::$strings["Nonsexual"] = "Aseksueel"; -App::$strings["Single"] = "Alleen"; -App::$strings["Lonely"] = "Eenzaam"; -App::$strings["Available"] = "Beschikbaar"; -App::$strings["Unavailable"] = "Niet beschikbaar"; -App::$strings["Has crush"] = "Heeft een oogje op iemand"; -App::$strings["Infatuated"] = "Smoorverliefd"; -App::$strings["Dating"] = "Aan het daten"; -App::$strings["Unfaithful"] = "Ontrouw"; -App::$strings["Sex Addict"] = "Seksverslaafd"; -App::$strings["Friends/Benefits"] = "Vriendschap plus"; -App::$strings["Casual"] = "Ongebonden/vluchtig"; -App::$strings["Engaged"] = "Verloofd"; -App::$strings["Married"] = "Getrouwd"; -App::$strings["Imaginarily married"] = "Denkbeeldig getrouwd"; -App::$strings["Partners"] = "Partners"; -App::$strings["Cohabiting"] = "Samenwonend"; -App::$strings["Common law"] = "Common-law-huwelijk"; -App::$strings["Happy"] = "Gelukkig"; -App::$strings["Not looking"] = "Niet op zoek"; -App::$strings["Swinger"] = "Swinger"; -App::$strings["Betrayed"] = "Verraden"; -App::$strings["Separated"] = "Uit elkaar"; -App::$strings["Unstable"] = "Onstabiel"; -App::$strings["Divorced"] = "Gescheiden"; -App::$strings["Imaginarily divorced"] = "Denkbeeldig gescheiden"; -App::$strings["Widowed"] = "Weduwnaar/weduwe"; -App::$strings["Uncertain"] = "Onzeker"; -App::$strings["It's complicated"] = "Het is ingewikkeld"; -App::$strings["Don't care"] = "Maakt mij niks uit"; -App::$strings["Ask me"] = "Vraag het me"; -App::$strings["Visible to your default audience"] = "Voor iedereen zichtbaar, mits niet anders ingesteld"; -App::$strings["Show"] = "Tonen"; -App::$strings["Don't show"] = "Niet tonen"; -App::$strings["Other networks and post services"] = "Andere netwerken en diensten"; -App::$strings["Permissions"] = "Permissies"; -App::$strings[" and "] = " en "; -App::$strings["public profile"] = "openbaar profiel"; -App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s veranderde %2\$s naar “%3\$s”"; -App::$strings["Visit %1\$s's %2\$s"] = "Bezoek het %2\$s van %1\$s"; -App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepaste %2\$s, %3\$s veranderd."; -App::$strings["Site Admin"] = "Hubbeheerder"; -App::$strings["Bookmarks"] = "Bladwijzers"; -App::$strings["Address Book"] = "Connecties"; -App::$strings["Login"] = "Inloggen"; -App::$strings["Channel Manager"] = "Kanaalbeheer"; -App::$strings["Grid"] = "Grid"; -App::$strings["Settings"] = "Instellingen"; -App::$strings["Webpages"] = "Webpagina's"; -App::$strings["Channel Home"] = "Jouw kanaal"; -App::$strings["Photos"] = "Foto's"; -App::$strings["Events"] = "Agenda"; -App::$strings["Directory"] = "Kanalengids"; -App::$strings["Help"] = "Hulp"; -App::$strings["Mail"] = "Privéberichten"; -App::$strings["Mood"] = "Stemming"; -App::$strings["Poke"] = "Aanstoten"; -App::$strings["Chat"] = "Chatten"; -App::$strings["Search"] = "Zoeken"; -App::$strings["Probe"] = "Onderzoeken"; -App::$strings["Suggest"] = "Voorstellen"; -App::$strings["Random Channel"] = "Willekeurig kanaal"; -App::$strings["Invite"] = "Uitnodigen "; -App::$strings["Features"] = "Extra functies"; -App::$strings["Language"] = "Taal"; -App::$strings["Post"] = "Bericht"; -App::$strings["Profile Photo"] = "Profielfoto"; -App::$strings["Update"] = "Bijwerken"; -App::$strings["Install"] = "Installeren"; -App::$strings["Purchase"] = "Aanschaffen"; -App::$strings["Permission denied"] = "Toegang geweigerd"; -App::$strings["(Unknown)"] = "(Onbekend)"; -App::$strings["Visible to anybody on the internet."] = "Voor iedereen op het internet zichtbaar."; -App::$strings["Visible to you only."] = "Alleen voor jou zichtbaar."; -App::$strings["Visible to anybody in this network."] = "Voor iedereen in dit netwerk zichtbaar."; -App::$strings["Visible to anybody authenticated."] = "Voor iedereen die geauthenticeerd is zichtbaar."; -App::$strings["Visible to anybody on %s."] = "Voor iedereen op %s zichtbaar."; -App::$strings["Visible to all connections."] = "Voor alle connecties zichtbaar."; -App::$strings["Visible to approved connections."] = "Voor alle geaccepteerde connecties zichtbaar."; -App::$strings["Visible to specific connections."] = "Voor specifieke connecties zichtbaar."; -App::$strings["Item not found."] = "Item niet gevonden."; -App::$strings["Privacy group not found."] = "Privacygroep niet gevonden"; -App::$strings["Privacy group is empty."] = "Privacygroep is leeg"; -App::$strings["Privacy group: %s"] = "Privacygroep: %s"; -App::$strings["Connection: %s"] = "Connectie: %s"; -App::$strings["Connection not found."] = "Connectie niet gevonden."; -App::$strings["female"] = "vrouw"; -App::$strings["%1\$s updated her %2\$s"] = "%1\$s heeft haar %2\$s bijgewerkt"; -App::$strings["male"] = "man"; -App::$strings["%1\$s updated his %2\$s"] = "%1\$s heeft zijn %2\$s bijgewerkt"; -App::$strings["%1\$s updated their %2\$s"] = "De %2\$s van %1\$s is bijgewerkt"; -App::$strings["profile photo"] = "profielfoto"; -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["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["Unable to process image"] = "Afbeelding kan niet verwerkt worden"; -App::$strings["Photo storage failed."] = "Foto kan niet worden opgeslagen"; -App::$strings["a new photo"] = "een nieuwe foto"; -App::$strings["__ctx:photo_upload__ %1\$s posted %2\$s to %3\$s"] = "%1\$s plaatste %2\$s op %3\$s"; -App::$strings["Photo Albums"] = "Fotoalbums"; -App::$strings["Upload New Photos"] = "Nieuwe foto's uploaden"; -App::$strings["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["webpage"] = "Webpagina"; -App::$strings["layout"] = "lay-out"; -App::$strings["block"] = "blok"; -App::$strings["menu"] = "menu"; -App::$strings["%1\$s wrote the following %2\$s %3\$s"] = "%1\$s schreef het volgende %2\$s %3\$s"; -App::$strings["post"] = "bericht"; -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["photo"] = "foto"; -App::$strings["event"] = "gebeurtenis"; -App::$strings["channel"] = "kanaal"; -App::$strings["status"] = "bericht"; -App::$strings["comment"] = "reactie"; -App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s leuk"; -App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s niet leuk"; -App::$strings["%1\$s 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["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s is %2\$s"; -App::$strings["__ctx:title__ Likes"] = "vinden dit leuk"; -App::$strings["__ctx:title__ Dislikes"] = "vinden dit niet leuk"; -App::$strings["__ctx:title__ Agree"] = "eens"; -App::$strings["__ctx:title__ Disagree"] = "oneens"; -App::$strings["__ctx:title__ Abstain"] = "onthoudingen"; -App::$strings["__ctx:title__ Attending"] = "aanwezig"; -App::$strings["__ctx:title__ Not attending"] = "niet aanwezig"; -App::$strings["__ctx:title__ Might attend"] = "mogelijk aanwezig"; -App::$strings["View %s's profile @ %s"] = "Bekijk het profiel van %s @ %s"; -App::$strings["Categories:"] = "Categorieën:"; -App::$strings["Filed under:"] = "Bewaard onder:"; -App::$strings["View in context"] = "In context bekijken"; -App::$strings["remove"] = "verwijderen"; -App::$strings["Loading..."] = "Aan het laden..."; -App::$strings["Delete Selected Items"] = "Verwijder de geselecteerde items"; -App::$strings["View Source"] = "Bron weergeven"; -App::$strings["Follow Thread"] = "Conversatie volgen"; -App::$strings["Unfollow Thread"] = "Conversatie niet meer volgen"; -App::$strings["View Profile"] = "Profiel weergeven"; -App::$strings["Activity/Posts"] = "Activiteit/berichten connectie"; -App::$strings["Edit Connection"] = "Connectie bewerken"; -App::$strings["Message"] = "Bericht"; -App::$strings["Ratings"] = "Beoordelingen"; -App::$strings["%s likes this."] = "%s vindt dit leuk."; -App::$strings["%s doesn't like this."] = "%s vindt dit niet leuk."; -App::$strings["%2\$d people like this."] = array( - 0 => "%2\$d persoon vindt dit leuk.", - 1 => "%2\$d personen vinden dit leuk.", +App::$strings["Account not found"] = "Account niet gevonden"; +App::$strings["Account '%s' deleted"] = "Account '%s' verwijderd"; +App::$strings["Account '%s' blocked"] = "Account '%s' geblokkeerd"; +App::$strings["Account '%s' unblocked"] = "Account '%s' gedeblokkeerd"; +App::$strings["Users"] = "Accounts"; +App::$strings["select all"] = "alles selecteren"; +App::$strings["User registrations waiting for confirm"] = "Accounts die op goedkeuring wachten"; +App::$strings["Request date"] = "Tijd/datum verzoek"; +App::$strings["Email"] = "E-mail"; +App::$strings["No registrations."] = "Geen verzoeken."; +App::$strings["Approve"] = "Goedkeuren"; +App::$strings["Deny"] = "Afkeuren"; +App::$strings["Block"] = "Blokkeren"; +App::$strings["Unblock"] = "Deblokkeren"; +App::$strings["All Channels"] = "Alle kanalen"; +App::$strings["Register date"] = "Geregistreerd"; +App::$strings["Last login"] = "Laatste keer ingelogd"; +App::$strings["Expires"] = "Verloopt"; +App::$strings["Service Class"] = "Abonnementen"; +App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Geselecteerde accounts (met bijbehorende kanalen) worden verwijderd!\\n\\nAlles wat deze accounts op deze hub hebben gepubliceerd wordt definitief verwijderd!\\n\\Weet je het zeker?"; +App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Account {0} (met bijbehorende kanalen) wordt verwijderd !\\n\\nAlles wat dit account op deze hub heeft gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; +App::$strings["%s channel censored/uncensored"] = array( + 0 => "%s kanaal gecensureerd/ongecensureerd", + 1 => "%s kanalen gecensureerd/ongecensureerd", ); -App::$strings["%2\$d people don't like this."] = array( - 0 => "%2\$d persoon vindt dit niet leuk.", - 1 => "%2\$d personen vinden dit niet leuk.", +App::$strings["%s channel code allowed/disallowed"] = array( + 0 => "Scripts toegestaan/niet toegestaan voor %s kanaal", + 1 => "Scripts toegestaan/niet toegestaan voor %s kanalen", ); -App::$strings["and"] = "en"; -App::$strings[", and %d other people"] = array( - 0 => ", en %d ander persoon", - 1 => ", en %d andere personen", +App::$strings["%s channel deleted"] = array( + 0 => "%s kanaal verwijderd", + 1 => "%s kanalen verwijderd", ); -App::$strings["%s like this."] = "%s vinden dit leuk."; -App::$strings["%s don't like this."] = "%s vinden dit niet leuk."; -App::$strings["Visible to everybody"] = "Voor iedereen zichtbaar"; -App::$strings["Please enter a link URL:"] = "Vul een URL in:"; -App::$strings["Please enter a video link/URL:"] = "Vul een videolink/URL in:"; -App::$strings["Please enter an audio link/URL:"] = "Vul een audiolink/URL in:"; -App::$strings["Tag term:"] = "Tag:"; -App::$strings["Save to Folder:"] = "Bewaar in map: "; -App::$strings["Where are you right now?"] = "Waar bevind je je op dit moment?"; -App::$strings["Expires YYYY-MM-DD HH:MM"] = "Verloopt op DD-MM-YYYY om HH:MM"; +App::$strings["Channel not found"] = "Kanaal niet gevonden"; +App::$strings["Channel '%s' deleted"] = "Kanaal '%s' verwijderd"; +App::$strings["Channel '%s' censored"] = "Kanaal '%s' gecensureerd"; +App::$strings["Channel '%s' uncensored"] = "Kanaal '%s' ongecensureerd"; +App::$strings["Channel '%s' code allowed"] = "Scripts toegestaan voor kanaal '%s'"; +App::$strings["Channel '%s' code disallowed"] = "Scripts niet toegestaan voor kanaal '%s'"; +App::$strings["Channels"] = "Kanalen"; +App::$strings["Censor"] = "Censureren"; +App::$strings["Uncensor"] = "Niet censureren"; +App::$strings["Allow Code"] = "Scripts toestaan"; +App::$strings["Disallow Code"] = "Scripts niet toestaan"; +App::$strings["Channel"] = "Kanaal"; +App::$strings["UID"] = "UID"; +App::$strings["Address"] = "Kanaaladres"; +App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Geselecteerde kanalen worden verwijderd!\\n\\nAlles wat in deze kanalen op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; +App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Kanaal {0} wordt verwijderd!\\n\\nAlles wat in dit kanaal op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; +App::$strings["Plugin %s disabled."] = "Plugin %s uitgeschakeld."; +App::$strings["Plugin %s enabled."] = "Plugin %s ingeschakeld"; +App::$strings["Disable"] = "Uitschakelen"; +App::$strings["Enable"] = "Inschakelen"; +App::$strings["Plugins"] = "Plugins"; +App::$strings["Toggle"] = "Omschakelen"; +App::$strings["Settings"] = "Instellingen"; +App::$strings["Author: "] = "Auteur: "; +App::$strings["Maintainer: "] = "Beheerder: "; +App::$strings["Minimum project version: "] = "Minimum versie Hubzilla: "; +App::$strings["Maximum project version: "] = "Maximum versie Hubzilla:"; +App::$strings["Minimum PHP version: "] = "Minimum versie PHP: "; +App::$strings["Requires: "] = "Vereist: "; +App::$strings["Disabled - version incompatibility"] = "Uitgeschakeld - versie is incompatibel"; +App::$strings["No themes found."] = "Geen thema's gevonden"; +App::$strings["Screenshot"] = "Schermafdruk"; +App::$strings["Themes"] = "Thema's"; +App::$strings["[Experimental]"] = "[Experimenteel]"; +App::$strings["[Unsupported]"] = "[Niet ondersteund]"; +App::$strings["Log settings updated."] = "Logboek-instellingen bijgewerkt."; +App::$strings["Logs"] = "Logboeken"; +App::$strings["Clear"] = "Leegmaken"; +App::$strings["Debugging"] = "Debuggen"; +App::$strings["Log file"] = "Logbestand"; +App::$strings["Must be writable by web server. Relative to your Red top-level directory."] = "Moet door de webserver beschrijfbaar zijn. Relatief ten opzichte van de bovenste map van je \$Projectname-installatie."; +App::$strings["Log level"] = "Logniveau"; +App::$strings["New Profile Field"] = "Nieuw profielveld"; +App::$strings["Field nickname"] = "Bijnaam voor veld"; +App::$strings["System name of field"] = "Systeemnaam voor veld"; +App::$strings["Input type"] = "Invoertype"; +App::$strings["Field Name"] = "Veldnaam"; +App::$strings["Label on profile pages"] = "Tekstlabel voor op profielpagina's"; +App::$strings["Help text"] = "Helptekst"; +App::$strings["Additional info (optional)"] = "Extra informatie (optioneel)"; +App::$strings["Save"] = "Opslaan"; +App::$strings["Field definition not found"] = "Velddefinitie niet gevonden"; +App::$strings["Edit Profile Field"] = "Profielveld bewerken"; +App::$strings["Profile Fields"] = "Profielvelden"; +App::$strings["Basic Profile Fields"] = "Standaard profielvelden"; +App::$strings["Advanced Profile Fields"] = "Geavanceerde profielvelden"; +App::$strings["(In addition to basic fields)"] = "(als toevoeging op de standaard velden)"; +App::$strings["All available fields"] = "Alle beschikbare velden"; +App::$strings["Custom Fields"] = "Extra (handmatig toegevoegde) velden"; +App::$strings["Create Custom Field"] = "Extra velden aanmaken"; +App::$strings["Authorize application connection"] = "Geef toestemming voor applicatiekoppeling"; +App::$strings["Return to your app and insert this Securty Code:"] = "Ga terug naar je app en voeg deze beveiligingscode in:"; +App::$strings["Please login to continue."] = "Inloggen om verder te kunnen gaan."; +App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?"; +App::$strings["App installed."] = "App geïnstalleerd"; +App::$strings["Malformed app."] = "Misvormde app."; +App::$strings["Embed code"] = "Insluitcode"; +App::$strings["Edit App"] = "App bewerken"; +App::$strings["Create App"] = "App maken"; +App::$strings["Name of app"] = "Naam van app"; +App::$strings["Required"] = "Vereist"; +App::$strings["Location (URL) of app"] = "Locatie (URL) van app"; +App::$strings["Description"] = "Omschrijving"; +App::$strings["Photo icon URL"] = "URL van pictogram"; +App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels (optioneel)"; +App::$strings["Version ID"] = "Versie-ID"; +App::$strings["Price of app"] = "Prijs van de app"; +App::$strings["Location (URL) to purchase app"] = "Locatie (URL) om de app aan te schaffen"; +App::$strings["Apps"] = "Apps"; +App::$strings["Item not available."] = "Item is niet aanwezig."; +App::$strings["Invalid item."] = "Ongeldig item."; +App::$strings["Channel not found."] = "Kanaal niet gevonden."; +App::$strings["Block Name"] = "Bloknaam"; +App::$strings["Blocks"] = "Blokken"; +App::$strings["Block Title"] = "Bloktitel"; +App::$strings["Created"] = "Aangemaakt"; +App::$strings["Edited"] = "Bewerkt"; App::$strings["Share"] = "Delen"; -App::$strings["Page link name"] = "Linknaam pagina"; -App::$strings["Post as"] = "Bericht plaatsen als"; -App::$strings["Upload photo"] = "Foto uploaden"; -App::$strings["upload photo"] = "foto uploaden"; -App::$strings["Attach file"] = "Bestand toevoegen"; -App::$strings["attach file"] = "bestand toevoegen"; +App::$strings["View"] = "Weergeven"; +App::$strings["Bookmark added"] = "Bladwijzer toegevoegd"; +App::$strings["My Bookmarks"] = "Mijn bladwijzers"; +App::$strings["My Connections Bookmarks"] = "Bladwijzers van mijn connecties"; +App::$strings["everybody"] = "iedereen"; +App::$strings["Permissions denied."] = "Permissies niet toegestaan"; +App::$strings["l, F j"] = "l j F"; +App::$strings["Link to Source"] = "Originele locatie"; +App::$strings["Edit Event"] = "Gebeurtenis bewerken"; +App::$strings["Create Event"] = "Gebeurtenis aanmaken"; +App::$strings["Previous"] = "Vorige"; +App::$strings["Next"] = "Volgende"; +App::$strings["Export"] = "Exporteren"; +App::$strings["Import"] = "Importeren"; +App::$strings["Today"] = "Vandaag"; +App::$strings["You must be logged in to see this page."] = "Je moet zijn ingelogd om deze pagina te kunnen bekijken."; +App::$strings["Posts and comments"] = "Berichten en reacties"; +App::$strings["Only posts"] = "Alleen berichten"; +App::$strings["Insufficient permissions. Request redirected to profile page."] = "Onvoldoende permissies. Doorgestuurd naar profielpagina."; +App::$strings["Public"] = "Openbaar"; +App::$strings["Room not found"] = "Chatkanaal niet gevonden"; +App::$strings["Leave Room"] = "Chatkanaal verlaten"; +App::$strings["Delete Room"] = "Chatkanaal verwijderen"; +App::$strings["I am away right now"] = "Ik ben momenteel afwezig"; +App::$strings["I am online"] = "Ik ben online"; +App::$strings["Bookmark this room"] = "Chatkanaal aan bladwijzers toevoegen"; +App::$strings["Please enter a link URL:"] = "Vul een URL in:"; +App::$strings["Encrypt text"] = "Tekst versleutelen"; App::$strings["Insert web link"] = "Weblink invoegen"; -App::$strings["web link"] = "Weblink"; -App::$strings["Insert video link"] = "Videolink invoegen"; -App::$strings["video link"] = "videolink"; -App::$strings["Insert audio link"] = "Audiolink invoegen"; -App::$strings["audio link"] = "audiolink"; -App::$strings["Set your location"] = "Locatie instellen"; -App::$strings["set location"] = "locatie instellen"; -App::$strings["Toggle voting"] = "Peiling in- of uitschakelen"; -App::$strings["Clear browser location"] = "Locatie van webbrowser wissen"; -App::$strings["clear location"] = "locatie wissen"; -App::$strings["Title (optional)"] = "Titel (optioneel)"; -App::$strings["Categories (optional, comma-separated list)"] = "Categorieën (optioneel, door komma's gescheiden lijst)"; -App::$strings["Permission settings"] = "Permissies"; -App::$strings["permissions"] = "permissies"; -App::$strings["Public post"] = "Openbaar bericht"; -App::$strings["Example: bob@example.com, mary@example.com"] = "Voorbeeld: bob@voorbeeld.nl, mary@voorbeeld.be"; -App::$strings["Set expiration date"] = "Verloopdatum instellen"; -App::$strings["Set publish date"] = "Publicatiedatum instellen"; -App::$strings["OK"] = "OK"; -App::$strings["Cancel"] = "Annuleren"; -App::$strings["Discover"] = "Ontdekken"; -App::$strings["Imported public streams"] = "Openbare streams importeren"; -App::$strings["Commented Order"] = "Nieuwe reacties bovenaan"; -App::$strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan"; -App::$strings["Posted Order"] = "Nieuwe berichten bovenaan"; -App::$strings["Sort by Post Date"] = "Nieuwe berichten bovenaan"; -App::$strings["Personal"] = "Persoonlijk"; -App::$strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent"; +App::$strings["Feature disabled."] = "Functie uitgeschakeld."; +App::$strings["New Chatroom"] = "Nieuw chatkanaal"; +App::$strings["Chatroom name"] = "Naam chatkanaal"; +App::$strings["Expiration of chats (minutes)"] = "Aantal minuten voordat chatberichten worden verwijderd"; +App::$strings["Permissions"] = "Permissies"; +App::$strings["%1\$s's Chatrooms"] = "Chatkanalen van %1\$s"; +App::$strings["No chatrooms available"] = "Geen chatkanalen beschikbaar"; +App::$strings["Create New"] = "Nieuwe aanmaken"; +App::$strings["Expiration"] = "Verloopt na"; +App::$strings["min"] = "min"; +App::$strings["Away"] = "Afwezig"; +App::$strings["Online"] = "Online"; +App::$strings["No channel."] = "Geen kanaal."; +App::$strings["Common connections"] = "Veel voorkomende connecties"; +App::$strings["No connections in common."] = "Geen gemeenschappelijke connecties."; +App::$strings["Continue"] = "Ga verder"; +App::$strings["Premium Channel Setup"] = "Instellen premiumkanaal "; +App::$strings["Enable premium channel connection restrictions"] = "Restricties voor connecties van premiumkanaal toestaan"; +App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz."; +App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:"; +App::$strings["Potential connections will then see the following text before proceeding:"] = "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:"; +App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina."; +App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) "; +App::$strings["Restricted or Premium Channel"] = "Beperkt of premiumkanaal"; +App::$strings["Blocked"] = "Geblokkeerd"; +App::$strings["Ignored"] = "Genegeerd"; +App::$strings["Hidden"] = "Verborgen"; +App::$strings["Archived"] = "Gearchiveerd"; App::$strings["New"] = "Nieuw"; -App::$strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum"; -App::$strings["Starred"] = "Met ster"; -App::$strings["Favourite Posts"] = "Favoriete berichten"; -App::$strings["Spam"] = "Spam"; -App::$strings["Posts flagged as SPAM"] = "Berichten gemarkeerd als SPAM"; -App::$strings["Channel"] = "Kanaal"; -App::$strings["Status Messages and Posts"] = "Berichten in dit kanaal"; -App::$strings["About"] = "Over"; -App::$strings["Profile Details"] = "Profiel"; -App::$strings["Files and Storage"] = "Bestanden en opslagruimte"; -App::$strings["Chatrooms"] = "Chatkanalen"; -App::$strings["Saved Bookmarks"] = "Opgeslagen bladwijzers"; -App::$strings["Manage Webpages"] = "Webpagina's beheren"; -App::$strings["__ctx:noun__ Attending"] = array( - 0 => "aanwezig", - 1 => "aanwezig", -); -App::$strings["__ctx:noun__ Not Attending"] = array( - 0 => "niet aanwezig", - 1 => "niet aanwezig", -); -App::$strings["__ctx:noun__ Undecided"] = array( - 0 => "nog niet beslist", - 1 => "nog niet beslist", -); -App::$strings["__ctx:noun__ Agree"] = array( - 0 => "eens", - 1 => "eens", -); -App::$strings["__ctx:noun__ Disagree"] = array( - 0 => "oneens", - 1 => "oneens", -); -App::$strings["__ctx:noun__ Abstain"] = array( - 0 => "onthouding", - 1 => "onthoudingen", -); -App::$strings["%1\$s's bookmarks"] = "Bladwijzers van %1\$s"; -App::$strings["Missing room name"] = "Naam chatkanaal ontbreekt"; -App::$strings["Duplicate room name"] = "Naam chatkanaal bestaat al"; -App::$strings["Invalid room specifier."] = "Ongeldige omschrijving chatkanaal"; -App::$strings["Room not found."] = "Chatkanaal niet gevonden"; -App::$strings["Room is full"] = "Chatkanaal is vol"; -App::$strings["New window"] = "Nieuw venster"; -App::$strings["Open the selected location in a different window or browser tab"] = "Open de geselecteerde locatie in een ander venster of tab"; -App::$strings["User '%s' deleted"] = "Account '%s' verwijderd"; -App::$strings["Logged out."] = "Uitgelogd."; -App::$strings["Failed authentication"] = "Mislukte authenticatie"; -App::$strings["Login failed."] = "Inloggen mislukt."; -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["Default"] = "Standaard"; -App::$strings["Frequently"] = "Regelmatig"; -App::$strings["Hourly"] = "Elk uur"; -App::$strings["Twice daily"] = "Twee keer per dag"; -App::$strings["Daily"] = "Dagelijks"; -App::$strings["Weekly"] = "Wekelijks"; -App::$strings["Monthly"] = "Maandelijks"; -App::$strings["Friendica"] = "Friendica"; -App::$strings["OStatus"] = "OStatus"; -App::$strings["GNU-Social"] = "GNU social"; -App::$strings["RSS/Atom"] = "RSS/Atom"; -App::$strings["Email"] = "E-mail"; -App::$strings["Diaspora"] = "Diaspora"; -App::$strings["Facebook"] = "Facebook"; -App::$strings["Zot"] = "Zot"; -App::$strings["LinkedIn"] = "LinkedIn"; -App::$strings["XMPP/IM"] = "XMPP/IM"; -App::$strings["MySpace"] = "MySpace"; -App::$strings["%d invitation available"] = array( - 0 => "%d uitnodiging beschikbaar", - 1 => "%d uitnodigingen beschikbaar", -); -App::$strings["Advanced"] = "Geavanceerd"; -App::$strings["Find Channels"] = "Kanalen vinden"; -App::$strings["Enter name or interest"] = "Vul naam of interesse in"; -App::$strings["Connect/Follow"] = "Verbinden/volgen"; -App::$strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeeld: Robert Morgenstein, vissen"; +App::$strings["All"] = "Alles"; +App::$strings["New Connections"] = "Nieuwe connecties"; +App::$strings["Show pending (new) connections"] = "Nog te accepteren (nieuwe) connecties weergeven"; +App::$strings["All Connections"] = "Alle connecties"; +App::$strings["Show all connections"] = "Toon alle connecties"; +App::$strings["Only show blocked connections"] = "Toon alleen geblokkeerde connecties"; +App::$strings["Only show ignored connections"] = "Toon alleen genegeerde connecties"; +App::$strings["Only show archived connections"] = "Toon alleen gearchiveerde connecties"; +App::$strings["Only show hidden connections"] = "Toon alleen verborgen connecties"; +App::$strings["Pending approval"] = "Moet nog geaccepteerd worden"; +App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; +App::$strings["Edit connection"] = "Connectie bewerken"; +App::$strings["Delete connection"] = "Connectie verwijderen"; +App::$strings["Channel address"] = "Kanaaladres"; +App::$strings["Network"] = "Netwerk"; +App::$strings["Connected"] = "Verbonden"; +App::$strings["Approve connection"] = "Connectie accepteren"; +App::$strings["Ignore connection"] = "Connectie negeren"; +App::$strings["Ignore"] = "Negeren"; +App::$strings["Recent activity"] = "Recente activiteit"; +App::$strings["Connections"] = "Connecties"; +App::$strings["Search"] = "Zoeken"; +App::$strings["Search your connections"] = "Doorzoek jouw connecties"; +App::$strings["Connections search"] = "Connecties zoeken"; App::$strings["Find"] = "Vinden"; -App::$strings["Channel Suggestions"] = "Voorgestelde kanalen"; -App::$strings["Random Profile"] = "Willekeurig profiel"; -App::$strings["Invite Friends"] = "Vrienden uitnodigen"; -App::$strings["Advanced example: name=fred and country=iceland"] = "Geavanceerd voorbeeld (Engels): name=jan en country=nederland"; -App::$strings["Saved Folders"] = "Bewaarde mappen"; -App::$strings["Everything"] = "Alles"; -App::$strings["Categories"] = "Categorieën"; -App::$strings["%d connection in common"] = array( - 0 => "%d gemeenschappelijke connectie", - 1 => "%d gemeenschappelijke connecties", -); -App::$strings["show more"] = "meer connecties weergeven"; -App::$strings["Item was not found."] = "Item niet gevonden"; -App::$strings["No source file."] = "Geen bronbestand."; -App::$strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden"; -App::$strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden"; -App::$strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; -App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt."; -App::$strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken."; -App::$strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt."; -App::$strings["Path not available."] = "Pad niet beschikbaar."; -App::$strings["Empty pathname"] = "Padnaam leeg"; -App::$strings["duplicate filename or path"] = "dubbele bestandsnaam of pad"; -App::$strings["Path not found."] = "Pad niet gevonden"; -App::$strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt."; -App::$strings["database storage failed."] = "opslag in database mislukt."; -App::$strings["Empty path"] = "Ontbrekend bestandspad"; -App::$strings["Miscellaneous"] = "Diversen"; -App::$strings["Birthday"] = "Verjaardag of geboortedatum"; -App::$strings["Age: "] = "Leeftijd:"; -App::$strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-DD of MM-DD"; -App::$strings["Required"] = "Vereist"; -App::$strings["never"] = "nooit"; -App::$strings["less than a second ago"] = "minder dan een seconde geleden"; -App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; -App::$strings["__ctx:relative_date__ year"] = array( - 0 => "jaar", - 1 => "jaren", -); -App::$strings["__ctx:relative_date__ month"] = array( - 0 => "maand", - 1 => "maanden", -); -App::$strings["__ctx:relative_date__ week"] = array( - 0 => "week", - 1 => "weken", -); -App::$strings["__ctx:relative_date__ day"] = array( - 0 => "dag", - 1 => "dagen", -); -App::$strings["__ctx:relative_date__ hour"] = array( - 0 => "uur", - 1 => "uren", -); -App::$strings["__ctx:relative_date__ minute"] = array( - 0 => "minuut", - 1 => "minuten", -); -App::$strings["__ctx:relative_date__ second"] = array( - 0 => "seconde", - 1 => "seconden", +App::$strings["Could not access contact record."] = "Kon geen toegang krijgen tot de connectie-gegevens."; +App::$strings["Could not locate selected profile."] = "Kon het gekozen profiel niet vinden."; +App::$strings["Connection updated."] = "Connectie bijgewerkt."; +App::$strings["Failed to update connection record."] = "Bijwerken van connectie-gegevens mislukt."; +App::$strings["is now connected to"] = "is nu verbonden met"; +App::$strings["Could not access address book record."] = "Kon geen toegang krijgen tot de record van de connectie."; +App::$strings["Refresh failed - channel is currently unavailable."] = "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar"; +App::$strings["Unable to set address book parameters."] = "Niet in staat om de parameters van connecties in te stellen."; +App::$strings["Connection has been removed."] = "Connectie is verwijderd"; +App::$strings["View Profile"] = "Profiel weergeven"; +App::$strings["View %s's profile"] = "Profiel van %s weergeven"; +App::$strings["Refresh Permissions"] = "Permissies vernieuwen"; +App::$strings["Fetch updated permissions"] = "Aangepaste permissies ophalen"; +App::$strings["Recent Activity"] = "Recente activiteit/berichten"; +App::$strings["View recent posts and comments"] = "Recente berichten en reacties weergeven"; +App::$strings["Block (or Unblock) all communications with this connection"] = "Blokkeer (of deblokkeer) alle communicatie met deze connectie"; +App::$strings["This connection is blocked!"] = "Deze connectie is geblokkeerd!"; +App::$strings["Unignore"] = "Niet meer negeren"; +App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie"; +App::$strings["This connection is ignored!"] = "Deze connectie wordt genegeerd!"; +App::$strings["Unarchive"] = "Niet meer archiveren"; +App::$strings["Archive"] = "Archiveren"; +App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud"; +App::$strings["This connection is archived!"] = "Deze connectie is gearchiveerd!"; +App::$strings["Unhide"] = "Niet meer verbergen"; +App::$strings["Hide"] = "Verbergen"; +App::$strings["Hide or Unhide this connection from your other connections"] = "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties"; +App::$strings["This connection is hidden!"] = "Deze connectie is verborgen!"; +App::$strings["Delete this connection"] = "Deze connectie verwijderen"; +App::$strings["Me"] = "Ik"; +App::$strings["Family"] = "Familie"; +App::$strings["Friends"] = "Vrienden"; +App::$strings["Acquaintances"] = "Kennissen"; +App::$strings["Approve this connection"] = "Deze connectie accepteren"; +App::$strings["Accept connection to allow communication"] = "Keur deze connectie goed om communicatie toe te staan"; +App::$strings["Set Affinity"] = "Verwantschapsfilter instellen"; +App::$strings["Set Profile"] = "Profiel instellen"; +App::$strings["Set Affinity & Profile"] = "Verwantschapsfilter en profiel instellen"; +App::$strings["none"] = "geen"; +App::$strings["Connection Default Permissions"] = "Standaard permissies voor connecties"; +App::$strings["Connection: %s"] = "Connectie: %s"; +App::$strings["Apply these permissions automatically"] = "Deze permissies automatisch toepassen"; +App::$strings["Connection requests will be approved without your interaction"] = "Connectieverzoeken zullen automatisch worden geaccepteerd"; +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["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"; +App::$strings["Optionally explain your rating"] = "Verklaar jouw beoordeling (niet verplicht)"; +App::$strings["Custom Filter"] = "Berichtenfilter"; +App::$strings["Only import posts with this text"] = "Importeer alleen berichten met deze tekst"; +App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "woorden (één per regel), #tags, /regex/ of talen (lang=iso639-1) - laat leeg om alle berichten te importeren"; +App::$strings["Do not import posts with this text"] = "Importeer geen berichten met deze tekst"; +App::$strings["This information is public!"] = "Deze informatie is openbaar!"; +App::$strings["Connection Pending Approval"] = "Connectie moet nog geaccepteerd worden"; +App::$strings["inherited"] = "geërfd"; +App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken."; +App::$strings["Their Settings"] = "Hun instellingen"; +App::$strings["My Settings"] = "Mijn instellingen"; +App::$strings["Individual Permissions"] = "Individuele permissies"; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele instellingen. Je kan je deze overgeërfde permissies hier niet veranderen."; +App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele permissies. Je kan de permissies hier veranderen, maar die hebben geen effect, tenzij de overgeërfde permissies worden veranderd. "; +App::$strings["Last update:"] = "Laatste wijziging:"; +App::$strings["Image uploaded but image cropping failed."] = "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. "; +App::$strings["Cover Photos"] = "Omslagfoto's"; +App::$strings["Image resize failed."] = "Afbeelding kon niet van grootte veranderd worden."; +App::$strings["Unable to process image"] = "Afbeelding kan niet verwerkt worden"; +App::$strings["Image upload failed."] = "Uploaden afbeelding mislukt"; +App::$strings["Unable to process image."] = "Niet in staat om afbeelding te verwerken."; +App::$strings["female"] = "vrouw"; +App::$strings["%1\$s updated her %2\$s"] = "%1\$s heeft haar %2\$s bijgewerkt"; +App::$strings["male"] = "man"; +App::$strings["%1\$s updated his %2\$s"] = "%1\$s heeft zijn %2\$s bijgewerkt"; +App::$strings["%1\$s updated their %2\$s"] = "De %2\$s van %1\$s is bijgewerkt"; +App::$strings["cover photo"] = "omslagfoto"; +App::$strings["Photo not available."] = "Foto niet beschikbaar."; +App::$strings["Upload File:"] = "Bestand uploaden:"; +App::$strings["Select a profile:"] = "Kies een profiel:"; +App::$strings["Upload Cover Photo"] = "Omslagfoto uploaden"; +App::$strings["or"] = "of"; +App::$strings["skip this step"] = "sla deze stap over"; +App::$strings["select a photo from your photo albums"] = "Kies een foto uit jouw fotoalbums"; +App::$strings["Crop Image"] = "Afbeelding bijsnijden"; +App::$strings["Please adjust the image cropping for optimum viewing."] = "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven."; +App::$strings["Done Editing"] = "Klaar met bewerken"; +App::$strings["\$Projectname channel"] = "\$Projectname-kanaal"; +App::$strings["Public access denied."] = "Openbare toegang geweigerd."; +App::$strings["%d rating"] = array( + 0 => "%d beoordeling", + 1 => "%d beoordelingen", ); -App::$strings["%1\$s's birthday"] = "Verjaardag van %1\$s"; -App::$strings["Happy Birthday %1\$s"] = "Gefeliciteerd met je verjaardag %1\$s"; -App::$strings["Directory Options"] = "Opties kanalengids"; -App::$strings["Safe Mode"] = "Veilig zoeken"; -App::$strings["No"] = "Nee"; -App::$strings["Yes"] = "Ja"; -App::$strings["Public Forums Only"] = "Alleen openbare forums"; -App::$strings["This Website Only"] = "Alleen deze hub"; -App::$strings["%s "] = "%s "; -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."; -App::$strings["%1\$s sent you %2\$s."] = "%1\$s zond jou %2\$s."; -App::$strings["a private message"] = "een privébericht"; -App::$strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privéberichten te bekijken en/of er op te reageren."; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %4\$s[/zrl]"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %5\$s van %4\$s[/zrl]"; -App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]jouw %4\$s[/zrl]"; -App::$strings["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla:Notificatie] Reactie op conversatie #%1\$d door %2\$s"; -App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s gaf een reactie op een bericht/conversatie die jij volgt."; -App::$strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of er op te reageren."; -App::$strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla:Notificatie] %s heeft een bericht op jouw kanaal geplaatst"; -App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s heeft om %3\$s een bericht op jouw kanaal geplaatst"; -App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s heeft een bericht op [zrl=%3\$s]jouw kanaal[/zrl] geplaatst"; -App::$strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla:Notificatie] %s heeft je genoemd"; -App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s noemde jou op %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]noemde jou[/zrl]."; -App::$strings["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla:Notificatie] %1\$s heeft je aangestoten"; -App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s heeft je aangestoten op %3\$s"; -App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]heeft je aangestoten[/zrl]."; -App::$strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla:Notificatie] %s heeft jouw bericht getagd"; -App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s heeft jouw bericht om %3\$s getagd"; -App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s heeft [zrl=%3\$s]jouw bericht[/zrl] getagd"; -App::$strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla:Notificatie] Connectieverzoek ontvangen"; -App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, je hebt een nieuw connectieverzoek ontvangen van '%2\$s' op %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, je hebt een [zrl=%2\$s]nieuw connectieverzoek[/zrl] ontvangen van %3\$s."; -App::$strings["You may visit their profile at %s"] = "Je kan het profiel bekijken op %s"; -App::$strings["Please visit %s to approve or reject the connection request."] = "Bezoek %s om het connectieverzoek te accepteren of af te wijzen."; -App::$strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla:Notificatie] Kanaalvoorstel ontvangen"; -App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, je hebt een kanaalvoorstel ontvangen van '%2\$s' om %3\$s"; -App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, je hebt [zrl=%2\$s]een kanaalvoorstel[/zrl] ontvangen voor %3\$s van %4\$s."; -App::$strings["Name:"] = "Naam:"; -App::$strings["Photo:"] = "Foto:"; -App::$strings["Please visit %s to approve or reject the suggestion."] = "Bezoek %s om het voorstel te accepteren of af te wijzen."; -App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Notificatie]"; -App::$strings["This event has been added to your calendar."] = "Dit evenement is aan jouw agenda toegevoegd."; -App::$strings["Not specified"] = "Niet aangegeven"; -App::$strings["Needs Action"] = "Actie vereist"; -App::$strings["Completed"] = "Voltooid"; -App::$strings["In Process"] = "In behandeling"; -App::$strings["Cancelled"] = "Geannuleerd"; -App::$strings["General Features"] = "Algemene functies"; -App::$strings["Content Expiration"] = "Inhoud laten verlopen"; -App::$strings["Remove posts/comments and/or private messages at a future time"] = "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen"; -App::$strings["Multiple Profiles"] = "Meerdere profielen"; -App::$strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken"; -App::$strings["Advanced Profiles"] = "Geavanceerde profielen"; -App::$strings["Additional profile sections and selections"] = "Extra onderdelen en keuzes voor je profiel"; -App::$strings["Profile Import/Export"] = "Profiel importen/exporteren"; -App::$strings["Save and load profile details across sites/channels"] = "Profielgegevens opslaan en in andere hubs/kanalen gebruiken."; -App::$strings["Web Pages"] = "Webpagina's"; -App::$strings["Provide managed web pages on your channel"] = "Sta beheerde webpagina's op jouw kanaal toe"; -App::$strings["Hide Rating"] = "Beoordelingen verbergen"; -App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Verbergt de beoordelingsknoppen op jouw kanaal- en profielpagina's. Let op: Mensen kunnen jou nog steeds ergens anders beoordelen. "; -App::$strings["Private Notes"] = "Privé-aantekeningen"; -App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Een eenvoudige toepassing om aantekeningen en herinneringen in te bewaren (let op: niet versleuteld)"; -App::$strings["Navigation Channel Select"] = "Kanaal kiezen in navigatiemenu"; -App::$strings["Change channels directly from within the navigation dropdown menu"] = "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk"; -App::$strings["Photo Location"] = "Fotolocatie"; -App::$strings["If location data is available on uploaded photos, link this to a map."] = "Wanneer in de geüploade foto's locatiegegevens aanwezig zijn, link dit dan aan een kaart."; -App::$strings["Access Controlled Chatrooms"] = "Chatkanalen met toegangscontrole "; -App::$strings["Provide chatrooms and chat services with access control."] = "Chatkanalen en chatdiensten met toegangscontrole aanbieden."; -App::$strings["Smart Birthdays"] = "Slimme verjaardagen"; -App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Maak verjaardagen bewust van tijdzones. Voor het geval dat jouw vrienden over de hele wereld verspreid zijn."; -App::$strings["Expert Mode"] = "Expertmodus"; -App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Schakel de expertmodus in voor geavanceerde instellingen"; -App::$strings["Premium Channel"] = "Premiumkanaal"; -App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal"; -App::$strings["Post Composition Features"] = "Functies voor het opstellen van berichten"; -App::$strings["Large Photos"] = "Grote foto's"; -App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Gebruik grotere foto's (1024px) in berichten. Wanneer dit is uitgeschakeld worden er kleinere foto's (640px) gebruikt."; -App::$strings["Channel Sources"] = "Kanaalbronnen"; -App::$strings["Automatically import channel content from other channels or feeds"] = "Automatisch inhoud uit andere kanalen of feeds importeren."; -App::$strings["Even More Encryption"] = "Extra encryptie"; -App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel."; -App::$strings["Enable Voting Tools"] = "Peilingen inschakelen"; -App::$strings["Provide a class of post which others can vote on"] = "Maakt het mogelijk om een bericht op te stellen, waar mensen op kunnen stemmen."; -App::$strings["Delayed Posting"] = "Berichten uitstellen"; -App::$strings["Allow posts to be published at a later date"] = "Maakt het mogelijk dat berichten op een toekomstig moment gepubliceerd kunnen worden."; -App::$strings["Suppress Duplicate Posts/Comments"] = "Dubbele berichten/reacties tegenhouden"; -App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Voorkomt dat berichten en reacties met identieke inhoud en die binnen twee minuten zijn verstuurd, worden gepubliceerd. "; -App::$strings["Network and Stream Filtering"] = "Netwerk- en streamfilter"; -App::$strings["Search by Date"] = "Zoek op datum"; -App::$strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten op datum te filteren "; -App::$strings["Privacy Groups"] = "Privacygroepen"; -App::$strings["Enable management and selection of privacy groups"] = "Beheer en selectie van privacygroepen inschakelen"; -App::$strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; -App::$strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik"; -App::$strings["Network Personal Tab"] = "Persoonlijke netwerktab"; -App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"; -App::$strings["Network New Tab"] = "Nieuwe netwerktab"; -App::$strings["Enable tab to display all new Network activity"] = "Laat de tab alle nieuwe netwerkactiviteit tonen"; -App::$strings["Affinity Tool"] = "Verwantschapsfilter"; -App::$strings["Filter stream activity by depth of relationships"] = "Filter wat je in jouw grid ziet op hoe goed je iemand kent of mag"; -App::$strings["Connection Filtering"] = "Berichtenfilters"; -App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filter binnenkomende berichten van connecties aan de hand van trefwoorden en taal"; -App::$strings["Suggest Channels"] = "Kanalen voorstellen"; -App::$strings["Show channel suggestions"] = "Voor jou mogelijk interessante kanalen voorstellen"; -App::$strings["Post/Comment Tools"] = "Bericht- en reactiehulpmiddelen"; -App::$strings["Community Tagging"] = "Taggen door anderen"; -App::$strings["Ability to tag existing posts"] = "Geeft andere mensen de mogelijkheid om jouw (bestaande) berichten te taggen"; -App::$strings["Post Categories"] = "Categorieën berichten"; -App::$strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; -App::$strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen op te slaan"; -App::$strings["Dislike Posts"] = "Vind berichten niet leuk"; -App::$strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten en reacties niet leuk te vinden"; -App::$strings["Star Posts"] = "Geef berichten een ster"; -App::$strings["Ability to mark special posts with a star indicator"] = "Mogelijkheid om speciale berichten met een ster te markeren"; -App::$strings["Tag Cloud"] = "Tagwolk"; -App::$strings["Provide a personal tag cloud on your channel page"] = "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina"; -App::$strings["Channel is blocked on this site."] = "Kanaal is op deze hub geblokkeerd."; -App::$strings["Channel location missing."] = "Ontbrekende kanaallocatie."; -App::$strings["Response from remote channel was incomplete."] = "Antwoord van het kanaal op afstand was niet volledig."; -App::$strings["Channel was deleted and no longer exists."] = "Kanaal is verwijderd en bestaat niet meer."; -App::$strings["Protocol disabled."] = "Protocol uitgeschakeld."; -App::$strings["Channel discovery failed."] = "Kanaal ontdekken mislukt."; -App::$strings["Cannot connect to yourself."] = "Kan niet met jezelf verbinden"; -App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken."; -App::$strings["Add new connections to this privacy group"] = "Voeg nieuwe connecties aan deze privacygroep toe"; -App::$strings["All Channels"] = "Alle kanalen"; -App::$strings["edit"] = "bewerken"; -App::$strings["Edit group"] = "Privacygroep bewerken"; -App::$strings["Add privacy group"] = "Privacygroep toevoegen"; -App::$strings["Channels not in any privacy group"] = "Kanalen die zich in geen enkele privacygroep bevinden"; -App::$strings["add"] = "toevoegen"; -App::$strings["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["Logout"] = "Uitloggen"; -App::$strings["End this session"] = "Beëindig deze sessie"; -App::$strings["Home"] = "Home"; -App::$strings["Your posts and conversations"] = "Jouw kanaal"; -App::$strings["Your profile page"] = "Jouw profielpagina"; -App::$strings["Manage/Edit profiles"] = "Beheer/wijzig profielen"; -App::$strings["Edit your profile"] = "Jouw profiel bewerken"; -App::$strings["Your photos"] = "Jouw foto's"; -App::$strings["Your files"] = "Jouw bestanden"; -App::$strings["Your chatrooms"] = "Jouw chatkanalen"; -App::$strings["Your bookmarks"] = "Jouw bladwijzers"; -App::$strings["Your webpages"] = "Jouw webpagina's"; -App::$strings["Sign in"] = "Inloggen"; -App::$strings["%s - click to logout"] = "%s - klik om uit te loggen"; -App::$strings["Remote authentication"] = "Authenticatie op afstand"; -App::$strings["Click to authenticate to your home hub"] = "Authenticeer jezelf via (bijvoorbeeld) jouw hub"; -App::$strings["Home Page"] = "Homepage"; -App::$strings["Register"] = "Registreren"; -App::$strings["Create an account"] = "Maak een account aan"; -App::$strings["Help and documentation"] = "Hulp en documentatie"; -App::$strings["Apps"] = "Apps"; -App::$strings["Applications, utilities, links, games"] = "Apps"; -App::$strings["Search site @name, #tag, ?docs, content"] = "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie "; -App::$strings["Channel Directory"] = "Kanalengids"; -App::$strings["Your grid"] = "Jouw grid"; -App::$strings["Mark all grid notifications seen"] = "Markeer alle gridnotificaties als bekeken"; -App::$strings["Channel home"] = "Jouw kanaal"; -App::$strings["Mark all channel notifications seen"] = "Alle kanaalnotificaties als gelezen markeren"; -App::$strings["Connections"] = "Connecties"; -App::$strings["Notices"] = "Notificaties"; -App::$strings["Notifications"] = "Notificaties"; -App::$strings["See all notifications"] = "Alle notificaties weergeven"; -App::$strings["Mark all system notifications seen"] = "Markeer alle systeemnotificaties als bekeken"; -App::$strings["Private mail"] = "Privéberichten"; -App::$strings["See all private messages"] = "Alle privéberichten weergeven"; -App::$strings["Mark all private messages seen"] = "Markeer alle privéberichten als bekeken"; -App::$strings["Inbox"] = "Postvak IN"; -App::$strings["Outbox"] = "Postvak UIT"; -App::$strings["New Message"] = "Nieuw bericht"; -App::$strings["Event Calendar"] = "Agenda"; -App::$strings["See all events"] = "Alle gebeurtenissen weergeven"; -App::$strings["Mark all events seen"] = "Markeer alle gebeurtenissen als bekeken"; -App::$strings["Manage Your Channels"] = "Beheer je kanalen"; -App::$strings["Account/Channel Settings"] = "Account-/kanaal-instellingen"; -App::$strings["Admin"] = "Beheer"; -App::$strings["Site Setup and Configuration"] = "Hub instellen en beheren"; -App::$strings["@name, #tag, ?doc, content"] = "@kanaal, #tag, inhoud, ?hulp"; -App::$strings["Please wait..."] = "Wachten aub..."; -App::$strings["System"] = "Systeem"; -App::$strings["Create Personal App"] = "Persoonlijke app maken"; -App::$strings["Edit Personal App"] = "Persoonlijke app bewerken"; -App::$strings["Ignore/Hide"] = "Negeren/Verbergen"; -App::$strings["Suggestions"] = "Voorgestelde kanalen"; -App::$strings["See more..."] = "Meer..."; -App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Je hebt %1$.0f van de %2$.0f toegestane connecties."; -App::$strings["Add New Connection"] = "Nieuwe connectie toevoegen"; -App::$strings["Enter channel address"] = "Vul kanaaladres in"; -App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Voorbeelden: bob@example.com, http://example.com/barbara"; -App::$strings["Notes"] = "Aantekeningen"; -App::$strings["Save"] = "Opslaan"; -App::$strings["Remove term"] = "Verwijder zoekterm"; -App::$strings["Archives"] = "Archieven"; -App::$strings["Me"] = "Ik"; -App::$strings["Family"] = "Familie"; -App::$strings["Acquaintances"] = "Kennissen"; -App::$strings["All"] = "Alles"; -App::$strings["Refresh"] = "Vernieuwen"; -App::$strings["Account settings"] = "Account"; -App::$strings["Channel settings"] = "Kanaal"; -App::$strings["Additional features"] = "Extra functies"; -App::$strings["Feature/Addon settings"] = "Plugin-instellingen"; -App::$strings["Display settings"] = "Weergave"; -App::$strings["Manage locations"] = "Locaties beheren"; -App::$strings["Export channel"] = "Kanaal exporteren"; -App::$strings["Connected apps"] = "Verbonden applicaties"; -App::$strings["Connection Default Permissions"] = "Standaard permissies voor connecties"; -App::$strings["Premium Channel Settings"] = "Instellingen premiumkanaal"; -App::$strings["Private Mail Menu"] = "Privéberichten"; -App::$strings["Combined View"] = "Gecombineerd postvak"; -App::$strings["Conversations"] = "Conversaties"; -App::$strings["Received Messages"] = "Ontvangen berichten"; -App::$strings["Sent Messages"] = "Verzonden berichten"; -App::$strings["No messages."] = "Geen berichten"; -App::$strings["Delete conversation"] = "Verwijder conversatie"; -App::$strings["Events Menu"] = "Agenda-menu"; -App::$strings["Day View"] = "Dag tonen"; -App::$strings["Week View"] = "Week tonen"; -App::$strings["Month View"] = "Maand tonen"; -App::$strings["Export"] = "Exporteren"; -App::$strings["Import"] = "Importeren"; -App::$strings["Events Tools"] = "Agenda-hulpmiddelen"; -App::$strings["Export Calendar"] = "Exporteren"; -App::$strings["Import Calendar"] = "Importeren"; -App::$strings["Overview"] = "Overzicht"; -App::$strings["Chat Members"] = "Chatleden"; -App::$strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen"; -App::$strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen"; -App::$strings["photo/image"] = "foto/afbeelding"; -App::$strings["Click to show more"] = "Klik voor meer"; -App::$strings["Rating Tools"] = "Beoordelingen"; -App::$strings["Rate Me"] = "Beoordeel mij"; -App::$strings["View Ratings"] = "Bekijk beoordelingen"; -App::$strings["Public Hubs"] = "Openbare hubs"; -App::$strings["Forums"] = "Forums"; -App::$strings["Tasks"] = "Taken"; -App::$strings["Documentation"] = "Documentatie"; -App::$strings["Project/Site Information"] = "Project- en hub-informatie"; -App::$strings["For Members"] = "Voor leden"; -App::$strings["For Administrators"] = "Voor beheerders"; -App::$strings["For Developers"] = "Voor ontwikkelaars"; -App::$strings["Site"] = "Hub-instellingen"; -App::$strings["Accounts"] = "Accounts"; -App::$strings["Member registrations waiting for confirmation"] = "Accounts die op goedkeuring wachten"; -App::$strings["Channels"] = "Kanalen"; -App::$strings["Security"] = "Beveiliging"; -App::$strings["Plugins"] = "Plugins"; -App::$strings["Themes"] = "Thema's"; -App::$strings["Inspect queue"] = "Inspecteer berichtenwachtrij"; -App::$strings["Profile Fields"] = "Profielvelden"; -App::$strings["DB updates"] = "Database-updates"; -App::$strings["Logs"] = "Logboeken"; -App::$strings["Plugin Features"] = "Plugin-opties"; -App::$strings["View Photo"] = "Foto weergeven"; -App::$strings["Edit Album"] = "Album bewerken"; -App::$strings["Tags"] = "Tags"; -App::$strings["Keywords"] = "Trefwoorden"; -App::$strings["have"] = "heb"; -App::$strings["has"] = "heeft"; -App::$strings["want"] = "wil"; -App::$strings["wants"] = "wil"; -App::$strings["likes"] = "vindt dit leuk"; -App::$strings["dislikes"] = "vindt dit niet leuk"; -App::$strings["Delete this item?"] = "Dit item verwijderen?"; -App::$strings["[-] show less"] = "[-] minder reacties weergeven"; -App::$strings["[+] expand"] = "[+] uitklappen"; -App::$strings["[-] collapse"] = "[-] inklappen"; -App::$strings["Password too short"] = "Wachtwoord te kort"; -App::$strings["Passwords do not match"] = "Wachtwoorden komen niet overeen"; -App::$strings["everybody"] = "iedereen"; -App::$strings["Secret Passphrase"] = "Geheim wachtwoord"; -App::$strings["Passphrase hint"] = "Wachtwoordhint"; -App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Mededeling: de permissies zijn veranderd, maar zijn nog niet opgeslagen."; -App::$strings["close all"] = "Alles sluiten"; -App::$strings["Nothing new here"] = "Niets nieuw hier"; -App::$strings["Rate This Channel (this is public)"] = "Beoordeel dit kanaal (dit is openbaar)"; -App::$strings["Rating"] = "Beoordeling"; -App::$strings["Describe (optional)"] = "Omschrijving (optioneel)"; -App::$strings["Please enter a link URL"] = "Vul een URL in:"; -App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Niet opgeslagen wijzigingen. Ben je er zeker van dat je deze pagina wil verlaten?"; -App::$strings["Location"] = "Locatie"; -App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; -App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; -App::$strings["ago"] = "geleden"; -App::$strings["from now"] = "vanaf nu"; -App::$strings["less than a minute"] = "minder dan een minuut"; -App::$strings["about a minute"] = "ongeveer een minuut"; -App::$strings["%d minutes"] = "%d minuten"; -App::$strings["about an hour"] = "ongeveer een uur"; -App::$strings["about %d hours"] = "ongeveer %d uren"; -App::$strings["a day"] = "een dag"; -App::$strings["%d days"] = "%d dagen"; -App::$strings["about a month"] = "ongeveer een maand"; -App::$strings["%d months"] = "%d maanden"; -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"; -App::$strings["Apr"] = "apr"; -App::$strings["__ctx:short__ May"] = "mei"; -App::$strings["Jun"] = "jun"; -App::$strings["Jul"] = "jul"; -App::$strings["Aug"] = "aug"; -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"; -App::$strings["Wed"] = "wo"; -App::$strings["Thu"] = "do"; -App::$strings["Fri"] = "vr"; -App::$strings["Sat"] = "za"; -App::$strings["__ctx:calendar__ today"] = "vandaag"; -App::$strings["__ctx:calendar__ month"] = "maand"; -App::$strings["__ctx:calendar__ week"] = "week"; -App::$strings["__ctx:calendar__ day"] = "dag"; -App::$strings["__ctx:calendar__ All day"] = "hele dag"; -App::$strings["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["Cloned channel not found. Import failed."] = "Gekloond kanaal niet gevonden. Importeren mislukt."; -App::$strings["Embedded content"] = "Ingesloten (embedded) inhoud"; -App::$strings["Embedding disabled"] = "Insluiten (embedding) uitgeschakeld"; -App::$strings["New Page"] = "Nieuwe pagina"; -App::$strings["View"] = "Weergeven"; -App::$strings["Actions"] = "Acties"; -App::$strings["Page Link"] = "Paginalink"; -App::$strings["Title"] = "Titel"; -App::$strings["Created"] = "Aangemaakt"; -App::$strings["Edited"] = "Bewerkt"; -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["Link to Source"] = "Originele locatie"; -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["Blocks"] = "Blokken"; -App::$strings["Menus"] = "Menu's"; -App::$strings["Layouts"] = "Lay-outs"; -App::$strings["Pages"] = "Pagina's"; -App::$strings["Public Timeline"] = "Openbare tijdlijn"; -App::$strings["Remote privacy information not available."] = "Privacy-informatie op afstand niet beschikbaar."; -App::$strings["Visible to:"] = "Zichtbaar voor:"; -App::$strings["Some blurb about what to do when you're new here"] = "Welkom op \$Projectname. Klik op de tab ontdekken of klik rechtsboven op de kanalengids, om kanalen te vinden. Rechtsboven vind je ook apps, waar je vrijwel alle functies van \$Projectname kunt vinden. Voor hulp met \$Projectname klik je op het vraagteken."; -App::$strings["network"] = "netwerk"; -App::$strings["RSS"] = "RSS"; -App::$strings["Unable to find your hub."] = "Niet in staat om je hub te vinden"; -App::$strings["Post successful."] = "Verzenden bericht geslaagd."; -App::$strings["Theme settings updated."] = "Thema-instellingen bijgewerkt."; -App::$strings["# Accounts"] = "# accounts"; -App::$strings["# blocked accounts"] = "# geblokkeerde accounts"; -App::$strings["# expired accounts"] = "# verlopen accounts"; -App::$strings["# expiring accounts"] = "# accounts die nog moeten verlopen"; -App::$strings["# Channels"] = "# Kanalen"; -App::$strings["# primary"] = "# primair"; -App::$strings["# clones"] = "# klonen"; -App::$strings["Message queues"] = "Berichtenwachtrij"; -App::$strings["Administration"] = "Beheer"; -App::$strings["Summary"] = "Samenvatting"; -App::$strings["Registered accounts"] = "Geregistreerde accounts"; -App::$strings["Pending registrations"] = "Accounts die op goedkeuring wachten"; -App::$strings["Registered channels"] = "Geregistreerde kanalen"; -App::$strings["Active plugins"] = "Ingeschakelde plugins"; -App::$strings["Version"] = "Versie"; -App::$strings["Site settings updated."] = "Hub-instellingen bijgewerkt."; -App::$strings["mobile"] = "mobiel"; -App::$strings["experimental"] = "experimenteel"; -App::$strings["unsupported"] = "Niet ondersteund"; -App::$strings["Yes - with approval"] = "Ja - met goedkeuring"; -App::$strings["My site is not a public server"] = "Mijn \$Projectname-hub is niet openbaar"; -App::$strings["My site has paid access only"] = "Mijn \$Projectname-hub kent alleen betaalde toegang"; -App::$strings["My site has free access only"] = "Mijn \$Projectname-hub kent alleen gratis toegang"; -App::$strings["My site offers free accounts with optional paid upgrades"] = "Mijn \$Projectname-hub biedt gratis accounts aan met betaalde uitbreidingen als optie"; -App::$strings["Registration"] = "Registratie"; -App::$strings["File upload"] = "Bestand uploaden"; -App::$strings["Policies"] = "Beleid"; -App::$strings["Site name"] = "Naam van deze \$Projectname-hub"; -App::$strings["Banner/Logo"] = "Banner/logo"; -App::$strings["Administrator Information"] = "Informatie over de beheerder van deze hub"; -App::$strings["Contact information for site administrators. Displayed on siteinfo page. BBCode can be used here"] = "Contactinformatie voor hub-beheerders. Getoond op pagina met hub-informatie. Er kan hier bbcode gebruikt worden."; -App::$strings["System language"] = "Standaardtaal"; -App::$strings["System theme"] = "Standaardthema"; -App::$strings["Default system theme - may be over-ridden by user profiles - change theme settings"] = "Standaardthema voor \$Projectname-hub (kan door lid veranderd worden) - verander thema-instellingen"; -App::$strings["Mobile system theme"] = "Standaardthema voor mobiel"; -App::$strings["Theme for mobile devices"] = "Thema voor mobiele apparaten"; -App::$strings["Allow Feeds as Connections"] = "Sta feeds toe als connecties"; -App::$strings["(Heavy system resource usage)"] = "(sterk negatieve invloed op systeembronnen hub)"; -App::$strings["Maximum image size"] = "Maximale grootte van afbeeldingen"; -App::$strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "Maximale grootte in bytes voor afbeeldingen die worden geüpload. Standaard is 0, wat geen limiet betekend."; -App::$strings["Does this site allow new member registration?"] = "Staat deze hub nieuwe accounts toe?"; -App::$strings["Invitation only"] = "Alleen op uitnodiging"; -App::$strings["Only allow new member registrations with an invitation code. Above register policy must be set to Yes."] = "Sta alleen nieuwe registraties toe van mensen die een uitnodigingscode hebben. Bovenstaand accountbeleid moet op Ja staan."; -App::$strings["Which best describes the types of account offered by this hub?"] = "Wat voor soort accounts biedt deze \$Projectname-hub aan? Kies wat het meest in de buurt komt."; -App::$strings["Register text"] = "Tekst tijdens registratie"; -App::$strings["Will be displayed prominently on the registration page."] = "Tekst dat op de pagina voor het registreren van nieuwe accounts wordt getoond."; -App::$strings["Site homepage to show visitors (default: login box)"] = "Homepagina van deze hub die aan bezoekers wordt getoond (standaard: inlogformulier)"; -App::$strings["example: 'public' to show public stream, 'page/sys/home' to show a system webpage called 'home' or 'include:home.html' to include a file."] = "voorbeeld: 'public' om de openbare stream te tonen, 'page/sys/home' om de webpagina 'home' van het systeemkanaal te tonen of 'include:home.html' om een gewoon bestand te gebruiken."; -App::$strings["Preserve site homepage URL"] = "Behoudt de URL van de hub (/)"; -App::$strings["Present the site homepage in a frame at the original location instead of redirecting"] = "Toon de homepagina van de hub in een frame op de oorspronkelijke locatie (/), i.p.v. een doorverwijzing naar een andere locatie (bv. .../home.html)"; -App::$strings["Accounts abandoned after x days"] = "Accounts als verlaten beschouwen na zoveel aantal dagen:"; -App::$strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "Zal geen systeembronnen verspillen door polling van externe hubs voor verlaten accounts. Vul 0 in voor geen tijdslimiet."; -App::$strings["Allowed friend domains"] = "Toegestane domeinen"; -App::$strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "Komma-gescheiden lijst van domeinen waarvan kanalen connecties kunnen aangaan met kanalen op deze \$Projectname-hub. Wildcards zijn toegestaan.\nLaat leeg om alle domeinen toe te laten."; -App::$strings["Allowed email domains"] = "Toegestane e-maildomeinen"; -App::$strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te laten."; -App::$strings["Not allowed email domains"] = "Niet toegestane e-maildomeinen"; -App::$strings["Comma separated list of domains which are not allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains, unless allowed domains have been defined."] = "Door komma's gescheiden lijst met e-maildomeinen waarvan e-mailadressen niet op deze hub mogen registeren. Wildcards zijn toegestaan. Laat leeg om alle domeinen toe te staan, tenzij er toegestane domeinen zijn ingesteld. "; -App::$strings["Verify Email Addresses"] = "E-mailadres verifieren"; -App::$strings["Check to verify email addresses used in account registration (recommended)."] = "Inschakelen om e-mailadressen te verifiëren die tijdens de accountregistratie worden gebruikt (aanbevolen)."; -App::$strings["Force publish"] = "Dwing kanaalvermelding af"; -App::$strings["Check to force all profiles on this site to be listed in the site directory."] = "Vink dit aan om af te dwingen dat alle kanalen op deze hub in de kanalengids worden vermeld."; -App::$strings["Import Public Streams"] = "Openbare streams importeren"; -App::$strings["Import and allow access to public content pulled from other sites. Warning: this content is unmoderated."] = "Toegang verlenen tot openbare berichten die vanuit andere hubs worden geïmporteerd. Waarschuwing: de inhoud van deze berichten wordt niet gemodereerd."; -App::$strings["login on Homepage"] = "Inlogformulier op de homepagina"; -App::$strings["Present a login box to visitors on the home page if no other content has been configured."] = "Toon een inlogformulier voor bezoekers op de homepagina wanneer geen andere inhoud is geconfigureerd. "; -App::$strings["Directory Server URL"] = "Server-URL voor de kanalengids"; -App::$strings["Default directory server"] = "Standaardserver voor de kanalengids"; -App::$strings["Proxy user"] = "Gebruikersnaam proxy"; -App::$strings["Proxy URL"] = "Proxy-URL"; -App::$strings["Network timeout"] = "Netwerktimeout"; -App::$strings["Value is in seconds. Set to 0 for unlimited (not recommended)."] = "Waarde is in seconden. Zet op 0 voor onbeperkt (niet aanbevolen)"; -App::$strings["Delivery interval"] = "Afleveringsinterval"; -App::$strings["Delay background delivery processes by this many seconds to reduce system load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 for large dedicated servers."] = "Vertraag de achtergrondprocessen voor het afleveren met een aantal seconden om de systeembelasting te verminderen. Aanbevolen: 4-5 voor shared hosts, 2-3 voor virtual private servers (VPS) en 0-1 voor grote dedicated servers."; -App::$strings["Deliveries per process"] = "Leveringen per serverproces"; -App::$strings["Number of deliveries to attempt in a single operating system process. Adjust if necessary to tune system performance. Recommend: 1-5."] = "Aantal leveringen die aan één serverproces worden meegegeven. Pas dit aan wanneer het nodig is om systeemprestaties te verbeteren. Aangeraden: 1-5"; -App::$strings["Poll interval"] = "Poll-interval"; -App::$strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "De achtergrondprocessen voor het afleveren met zoveel seconden vertragen om de systeembelasting te verminderen. 0 om de afleveringsinterval te gebruiken."; -App::$strings["Maximum Load Average"] = "Maximaal gemiddelde systeembelasting"; -App::$strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "Maximale systeembelasting voordat de afleverings- en polllingsprocessen worden uitgesteld. Standaard is 50."; -App::$strings["Expiration period in days for imported (grid/network) content"] = "Aantal dagen waarna geïmporteerde inhoud uit iemands grid/netwerk-pagina wordt verwijderd."; -App::$strings["0 for no expiration of imported content"] = "Dit geldt alleen voor inhoud van andere kanalen, dus niet voor iemands eigen kanaal. 0 voor het niet verwijderen van geïmporteerde inhoud."; -App::$strings["Off"] = "Uit"; -App::$strings["On"] = "Aan"; -App::$strings["Lock feature %s"] = " Vergrendel de functie '%s'"; -App::$strings["Manage Additional Features"] = "Beheer - Extra functies"; -App::$strings["No server found"] = "Geen hub gevonden"; -App::$strings["ID"] = "ID"; -App::$strings["for channel"] = "voor kanaal"; -App::$strings["on server"] = "op hub"; -App::$strings["Status"] = "Status"; -App::$strings["Server"] = "Hubbeheer"; -App::$strings["Block public"] = "Openbare toegang blokkeren"; -App::$strings["Check to block public access to all otherwise public personal pages on this site unless you are currently authenticated."] = "Vink dit aan om alle normaliter openbare persoonlijke pagina's op deze hub alleen toegankelijk te maken voor leden die zich hebben geauthenticeerd."; -App::$strings["Allow communications only from these sites"] = "Alleen communicatie met deze hubs toestaan"; -App::$strings["One site per line. Leave empty to allow communication from anywhere by default"] = "Eén hub per regel. Laat leeg om communicatie standaard met alle hubs toe te staan"; -App::$strings["Block communications from these sites"] = "Communicatie met deze hubs blokkeren"; -App::$strings["Allow communications only from these channels"] = "Sta alleen communicatie toe met deze kanalen"; -App::$strings["One channel (hash) per line. Leave empty to allow from any channel by default"] = "Eén kanaal (hash) per regel. Laat leeg om communicatie standaard met alle kanalen toe te staan"; -App::$strings["Block communications from these channels"] = "Communicatie met deze kanalen blokkeren"; -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."; -App::$strings["Update %s did not return a status. Unknown if it succeeded."] = "Update %s gaf geen melding. Het is daarom niet bekend of deze geslaagd is."; -App::$strings["Update function %s could not be found."] = "Update-functie %s kon niet gevonden worden."; -App::$strings["No failed updates."] = "Geen mislukte updates."; -App::$strings["Failed Updates"] = "Mislukte updates"; -App::$strings["Mark success (if update was manually applied)"] = "Markeer als geslaagd (wanneer de update handmatig was uitgevoerd)"; -App::$strings["Attempt to execute this update step automatically"] = "Poging om deze stap van de update automatisch uit te voeren."; -App::$strings["Queue Statistics"] = "Wachtrij-statistieken"; -App::$strings["Total Entries"] = "Aantal vermeldingen"; -App::$strings["Priority"] = "Prioriteit"; -App::$strings["Destination URL"] = "Doel-URL"; -App::$strings["Mark hub permanently offline"] = "Hub als permanent offline markeren"; -App::$strings["Empty queue for this hub"] = "Berichtenwachtrij voor deze hub legen"; -App::$strings["Last known contact"] = "Voor het laatst contact"; -App::$strings["%s account blocked/unblocked"] = array( - 0 => "%s account geblokkeerd/gedeblokkeerd", - 1 => "%s accounts geblokkeerd/gedeblokkeerd", -); -App::$strings["%s account deleted"] = array( - 0 => "%s account verwijderd", - 1 => "%s accounts verwijderd", -); -App::$strings["Account not found"] = "Account niet gevonden"; -App::$strings["Account '%s' deleted"] = "Account '%s' verwijderd"; -App::$strings["Account '%s' blocked"] = "Account '%s' geblokkeerd"; -App::$strings["Account '%s' unblocked"] = "Account '%s' gedeblokkeerd"; -App::$strings["Users"] = "Accounts"; -App::$strings["select all"] = "alles selecteren"; -App::$strings["User registrations waiting for confirm"] = "Accounts die op goedkeuring wachten"; -App::$strings["Request date"] = "Tijd/datum verzoek"; -App::$strings["No registrations."] = "Geen verzoeken."; -App::$strings["Approve"] = "Goedkeuren"; -App::$strings["Deny"] = "Afkeuren"; -App::$strings["Block"] = "Blokkeren"; -App::$strings["Unblock"] = "Deblokkeren"; -App::$strings["Register date"] = "Geregistreerd"; -App::$strings["Last login"] = "Laatste keer ingelogd"; -App::$strings["Expires"] = "Verloopt"; -App::$strings["Service Class"] = "Abonnementen"; -App::$strings["Selected accounts will be deleted!\\n\\nEverything these accounts had posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Geselecteerde accounts (met bijbehorende kanalen) worden verwijderd!\\n\\nAlles wat deze accounts op deze hub hebben gepubliceerd wordt definitief verwijderd!\\n\\Weet je het zeker?"; -App::$strings["The account {0} will be deleted!\\n\\nEverything this account has posted on this site will be permanently deleted!\\n\\nAre you sure?"] = "Account {0} (met bijbehorende kanalen) wordt verwijderd !\\n\\nAlles wat dit account op deze hub heeft gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; -App::$strings["%s channel censored/uncensored"] = array( - 0 => "%s kanaal gecensureerd/ongecensureerd", - 1 => "%s kanalen gecensureerd/ongecensureerd", -); -App::$strings["%s channel code allowed/disallowed"] = array( - 0 => "Scripts toegestaan/niet toegestaan voor %s kanaal", - 1 => "Scripts toegestaan/niet toegestaan voor %s kanalen", -); -App::$strings["%s channel deleted"] = array( - 0 => "%s kanaal verwijderd", - 1 => "%s kanalen verwijderd", +App::$strings["Gender: "] = "Geslacht:"; +App::$strings["Status: "] = "Status: "; +App::$strings["Homepage: "] = "Homepage: "; +App::$strings["Age:"] = "Leeftijd:"; +App::$strings["Location:"] = "Plaats:"; +App::$strings["Description:"] = "Omschrijving:"; +App::$strings["Hometown:"] = "Oorspronkelijk uit:"; +App::$strings["About:"] = "Over:"; +App::$strings["Connect"] = "Verbinden"; +App::$strings["Public Forum:"] = "Openbaar forum:"; +App::$strings["Keywords: "] = "Trefwoorden: "; +App::$strings["Don't suggest"] = "Niet voorstellen"; +App::$strings["Common connections:"] = "Gemeenschappelijke connecties:"; +App::$strings["Global Directory"] = "Volledige kanalengids"; +App::$strings["Local Directory"] = "Lokale kanalengids"; +App::$strings["Finding:"] = "Gezocht naar:"; +App::$strings["Channel Suggestions"] = "Voorgestelde kanalen"; +App::$strings["next page"] = "volgende pagina"; +App::$strings["previous page"] = "vorige pagina"; +App::$strings["Sort options"] = "Sorteeropties"; +App::$strings["Alphabetic"] = "Alfabetisch"; +App::$strings["Reverse Alphabetic"] = "Omgekeerd alfabetisch"; +App::$strings["Newest to Oldest"] = "Nieuw naar oud"; +App::$strings["Oldest to Newest"] = "Oud naar nieuw"; +App::$strings["No entries (some entries may be hidden)."] = "Niets gevonden (sommige kanalen kunnen verborgen zijn)."; +App::$strings["This site is not a directory server"] = "Deze hub is geen kanalengidshub (directoryserver)"; +App::$strings["This directory server requires an access token"] = "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig"; +App::$strings["Permission denied"] = "Toegang geweigerd"; +App::$strings["Invalid message"] = "Ongeldig bericht"; +App::$strings["no results"] = "geen resultaten"; +App::$strings["Delivery report for %1\$s"] = "Afleveringsrapport voor %1\$s"; +App::$strings["channel sync processed"] = "kanaalsync verwerkt"; +App::$strings["queued"] = "in wachtrij"; +App::$strings["posted"] = "verstuurd"; +App::$strings["accepted for delivery"] = "geaccepteerd om afgeleverd te worden"; +App::$strings["updated"] = "geüpdatet"; +App::$strings["update ignored"] = "update genegeerd"; +App::$strings["permission denied"] = "toegang geweigerd"; +App::$strings["recipient not found"] = "ontvanger niet gevonden"; +App::$strings["mail recalled"] = "Privébericht ingetrokken"; +App::$strings["duplicate mail received"] = "dubbel privébericht ontvangen"; +App::$strings["mail delivered"] = "privébericht afgeleverd"; +App::$strings["Item not found"] = "Item niet gevonden"; +App::$strings["Delete block?"] = "Blok verwijderen"; +App::$strings["Bold"] = "Vet"; +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["Layout Description (Optional)"] = "Lay-out-omschrijving (optioneel)"; +App::$strings["Layout Name"] = "Naam lay-out"; +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"; +App::$strings["Delete item?"] = "Item verwijderen?"; +App::$strings["Toggle voting"] = "Peiling in- of uitschakelen"; +App::$strings["OK"] = "OK"; +App::$strings["Cancel"] = "Annuleren"; +App::$strings["Edit post"] = "Bericht bewerken"; +App::$strings["Delete webpage?"] = "Webpagina verwijderen?"; +App::$strings["Page link title"] = "Titel van paginalink"; +App::$strings["Edit Webpage"] = "Webpagina bewerken"; +App::$strings["Calendar entries imported."] = "Agenda-items geïmporteerd."; +App::$strings["No calendar entries found."] = "Geen agenda-items gevonden."; +App::$strings["Event can not end before it has started."] = "Gebeurtenis kan niet eindigen voordat het is begonnen"; +App::$strings["Unable to generate preview."] = "Niet in staat om voorvertoning te genereren"; +App::$strings["Event title and start time are required."] = "Titel en begintijd van gebeurtenis zijn vereist."; +App::$strings["Event not found."] = "Gebeurtenis niet gevonden"; +App::$strings["event"] = "gebeurtenis"; +App::$strings["Edit event title"] = "Titel bewerken"; +App::$strings["Event title"] = "Titel"; +App::$strings["Categories (comma-separated list)"] = "Categorieën (door komma's gescheiden lijst)"; +App::$strings["Edit Category"] = "Categorie"; +App::$strings["Category"] = "Categorie"; +App::$strings["Edit start date and time"] = "Begindatum en -tijd bewerken"; +App::$strings["Start date and time"] = "Begindatum en -tijd"; +App::$strings["Finish date and time are not known or not relevant"] = "Einddatum en -tijd zijn niet bekend of niet van toepassing"; +App::$strings["Edit finish date and time"] = "Einddatum en -tijd bewerken"; +App::$strings["Finish date and time"] = "Einddatum en -tijd"; +App::$strings["Adjust for viewer timezone"] = "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt"; +App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen."; +App::$strings["Edit Description"] = "Omschrijving bewerken"; +App::$strings["Edit Location"] = "Locatie bewerken"; +App::$strings["Location"] = "Locatie"; +App::$strings["Share this event"] = "Deel deze gebeurtenis"; +App::$strings["Advanced Options"] = "Geavanceerde opties"; +App::$strings["Edit event"] = "Gebeurtenis bewerken"; +App::$strings["Delete event"] = "Gebeurtenis verwijderen"; +App::$strings["calendar"] = "agenda"; +App::$strings["Event removed"] = "Gebeurtenis verwijderd"; +App::$strings["Failed to remove event"] = "Verwijderen gebeurtenis mislukt"; +App::$strings["Photos"] = "Foto's"; +App::$strings["Share content from Firefox to \$Projectname"] = "Deel webpagina's vanuit Firefox met "; +App::$strings["Activate the Firefox \$Projectname provider"] = "Activeer de \$Projectname-service in Firefox"; +App::$strings["Save to Folder:"] = "Bewaar in map: "; +App::$strings["- select -"] = "- kies map -"; +App::$strings["Permission Denied."] = "Toegang geweigerd"; +App::$strings["File not found."] = "Bestand niet gevonden."; +App::$strings["Edit file permissions"] = "Bestandsrechten bewerken"; +App::$strings["Set/edit permissions"] = "Rechten instellen/bewerken"; +App::$strings["Include all files and sub folders"] = "Toepassen op alle bestanden en submappen"; +App::$strings["Return to file list"] = "Terugkeren naar bestandlijst "; +App::$strings["Copy/paste this code to attach file to a post"] = "Kopieer/plak deze code om het bestand aan een bericht te koppelen"; +App::$strings["Copy/paste this URL to link file from a web page"] = "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen"; +App::$strings["Share this file"] = "Dit bestand delen"; +App::$strings["Show URL to this file"] = "Toon URL van dit bestand"; +App::$strings["Notify your contacts about this file"] = "Jouw connecties over dit bestand berichten"; +App::$strings["Channel added."] = "Kanaal toegevoegd."; +App::$strings["Contact not found."] = "Contact niet gevonden"; +App::$strings["Friend suggestion sent."] = "Kanaalvoorstel verzonden."; +App::$strings["Suggest Friends"] = "Kanalen voorstellen"; +App::$strings["Suggest a friend for %s"] = "Stel een kanaal voor aan %s"; +App::$strings["Privacy group created."] = "Privacygroep aangemaakt"; +App::$strings["Could not create privacy group."] = "Kon privacygroep niet aanmaken"; +App::$strings["Privacy group not found."] = "Privacygroep niet gevonden"; +App::$strings["Privacy group updated."] = "Privacygroep bijgewerkt"; +App::$strings["Create a group of channels."] = "Privacygroep met kanalen aanmaken"; +App::$strings["Privacy group name: "] = "Naam privacygroep: "; +App::$strings["Members are visible to other channels"] = "Kanalen in deze privacygroep zijn zichtbaar voor andere kanalen"; +App::$strings["Privacy group removed."] = "Privacygroep verwijderd."; +App::$strings["Unable to remove privacy group."] = "Verwijderen privacygroep mislukt"; +App::$strings["Privacy group editor"] = "Privacygroep bewerken"; +App::$strings["Members"] = "Kanalen"; +App::$strings["All Connected Channels"] = "Alle kanaalconnecties"; +App::$strings["Click on a channel to add or remove."] = "Klik op een kanaal om deze toe te voegen of te verwijderen."; +App::$strings["Documentation Search"] = "Zoek documentatie"; +App::$strings["Help:"] = "Hulp:"; +App::$strings["Help"] = "Hulp"; +App::$strings["\$Projectname Documentation"] = "\$Projectname-documentatie"; +App::$strings["\$Projectname"] = "\$Projectname"; +App::$strings["Welcome to %s"] = "Welkom op %s"; +App::$strings["First Name"] = "Voornaam"; +App::$strings["Last Name"] = "Achternaam"; +App::$strings["Nickname"] = "Bijnaam"; +App::$strings["Full Name"] = "Volledige naam"; +App::$strings["Profile Photo"] = "Profielfoto"; +App::$strings["Profile Photo 16px"] = "Profielfoto 16px"; +App::$strings["Profile Photo 32px"] = "Profielfoto 32px"; +App::$strings["Profile Photo 48px"] = "Profielfoto 48px"; +App::$strings["Profile Photo 64px"] = "Profielfoto 64px"; +App::$strings["Profile Photo 80px"] = "Profielfoto 80px"; +App::$strings["Profile Photo 128px"] = "Profielfoto 128px"; +App::$strings["Timezone"] = "Tijdzone"; +App::$strings["Homepage URL"] = "URL homepagina"; +App::$strings["Language"] = "Taal"; +App::$strings["Birth Year"] = "Geboortejaar"; +App::$strings["Birth Month"] = "Geboortemaand"; +App::$strings["Birth Day"] = "Geboortedag"; +App::$strings["Birthdate"] = "Geboortedatum"; +App::$strings["Gender"] = "Geslacht"; +App::$strings["Male"] = "Man"; +App::$strings["Female"] = "Vrouw"; +App::$strings["webpage"] = "Webpagina"; +App::$strings["block"] = "blok"; +App::$strings["layout"] = "lay-out"; +App::$strings["menu"] = "menu"; +App::$strings["%s element installed"] = "%s onderdeel geïnstalleerd"; +App::$strings["%s element installation failed"] = "Installatie %s-element mislukt"; +App::$strings["Your service plan only allows %d channels."] = "Jouw abonnement staat maar %d kanalen toe."; +App::$strings["Nothing to import."] = "Niets gevonden om te importeren"; +App::$strings["Unable to download data from old server"] = "Niet in staat om gegevens van de oude hub te downloaden"; +App::$strings["Imported file is empty."] = "Geïmporteerde bestand is leeg"; +App::$strings["Warning: Database versions differ by %1\$d updates."] = "Waarschuwing: database-versies lopen %1\$d updates achter."; +App::$strings["Cloned channel not found. Import failed."] = "Gekloond kanaal niet gevonden. Importeren mislukt."; +App::$strings["No channel. Import failed."] = "Geen kanaal. Importeren mislukt."; +App::$strings["Import completed."] = "Import voltooid."; +App::$strings["You must be logged in to use this feature."] = "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken."; +App::$strings["Import Channel"] = "Kanaal importeren"; +App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken."; +App::$strings["File to Upload"] = "Bestand om te uploaden"; +App::$strings["Or provide the old server/hub details"] = "Of vul de gegevens van de oude hub in"; +App::$strings["Your old identity address (xyz@example.com)"] = "Jouw oude kanaaladres (xyz@example.com)"; +App::$strings["Your old login email address"] = "Het e-mailadres van je oude account"; +App::$strings["Your old login password"] = "Wachtwoord van jouw oude account"; +App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen."; +App::$strings["Make this hub my primary location"] = "Stel deze hub als mijn primaire locatie in"; +App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van beschikbaar servergeheugen)"; +App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Dit proces kan enkele minuten in beslag nemen. Klik maar één keer op opslaan en verlaat deze pagina niet alvorens het proces is voltooid."; +App::$strings["Import completed"] = "Importeren voltooid"; +App::$strings["Import Items"] = "Importeer items"; +App::$strings["Use this form to import existing posts and content from an export file."] = "Gebruik dit formulier om bestaande berichten en andere inhoud vanuit een exportbestand te importeren."; +App::$strings["Total invitation limit exceeded."] = "Limiet voor aantal uitnodigingen overschreden."; +App::$strings["%s : Not a valid email address."] = "%s : Geen geldig e-mailadres."; +App::$strings["Please join us on \$Projectname"] = "Uitnodiging voor \$Projectname"; +App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder."; +App::$strings["%s : Message delivery failed."] = "%s: Aflevering bericht mislukt."; +App::$strings["%d message sent."] = array( + 0 => "%d bericht verzonden.", + 1 => "%d berichten verzonden.", ); -App::$strings["Channel not found"] = "Kanaal niet gevonden"; -App::$strings["Channel '%s' deleted"] = "Kanaal '%s' verwijderd"; -App::$strings["Channel '%s' censored"] = "Kanaal '%s' gecensureerd"; -App::$strings["Channel '%s' uncensored"] = "Kanaal '%s' ongecensureerd"; -App::$strings["Channel '%s' code allowed"] = "Scripts toegestaan voor kanaal '%s'"; -App::$strings["Channel '%s' code disallowed"] = "Scripts niet toegestaan voor kanaal '%s'"; -App::$strings["Censor"] = "Censureren"; -App::$strings["Uncensor"] = "Niet censureren"; -App::$strings["Allow Code"] = "Scripts toestaan"; -App::$strings["Disallow Code"] = "Scripts niet toestaan"; -App::$strings["UID"] = "UID"; -App::$strings["Address"] = "Kanaaladres"; -App::$strings["Selected channels will be deleted!\\n\\nEverything that was posted in these channels on this site will be permanently deleted!\\n\\nAre you sure?"] = "Geselecteerde kanalen worden verwijderd!\\n\\nAlles wat in deze kanalen op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; -App::$strings["The channel {0} will be deleted!\\n\\nEverything that was posted in this channel on this site will be permanently deleted!\\n\\nAre you sure?"] = "Kanaal {0} wordt verwijderd!\\n\\nAlles wat in dit kanaal op deze hub werd gepubliceerd wordt definitief verwijderd!\\n\\nWeet je het zeker?"; -App::$strings["Plugin %s disabled."] = "Plugin %s uitgeschakeld."; -App::$strings["Plugin %s enabled."] = "Plugin %s ingeschakeld"; -App::$strings["Disable"] = "Uitschakelen"; -App::$strings["Enable"] = "Inschakelen"; -App::$strings["Toggle"] = "Omschakelen"; -App::$strings["Author: "] = "Auteur: "; -App::$strings["Maintainer: "] = "Beheerder: "; -App::$strings["Minimum project version: "] = "Minimum versie Hubzilla: "; -App::$strings["Maximum project version: "] = "Maximum versie Hubzilla:"; -App::$strings["Minimum PHP version: "] = "Minimum versie PHP: "; -App::$strings["Requires: "] = "Vereist: "; -App::$strings["Disabled - version incompatibility"] = "Uitgeschakeld - versie is incompatibel"; -App::$strings["No themes found."] = "Geen thema's gevonden"; -App::$strings["Screenshot"] = "Schermafdruk"; -App::$strings["[Experimental]"] = "[Experimenteel]"; -App::$strings["[Unsupported]"] = "[Niet ondersteund]"; -App::$strings["Log settings updated."] = "Logboek-instellingen bijgewerkt."; -App::$strings["Clear"] = "Leegmaken"; -App::$strings["Debugging"] = "Debuggen"; -App::$strings["Log file"] = "Logbestand"; -App::$strings["Must be writable by web server. Relative to your Red top-level directory."] = "Moet door de webserver beschrijfbaar zijn. Relatief ten opzichte van de bovenste map van je \$Projectname-installatie."; -App::$strings["Log level"] = "Logniveau"; -App::$strings["New Profile Field"] = "Nieuw profielveld"; -App::$strings["Field nickname"] = "Bijnaam voor veld"; -App::$strings["System name of field"] = "Systeemnaam voor veld"; -App::$strings["Input type"] = "Invoertype"; -App::$strings["Field Name"] = "Veldnaam"; -App::$strings["Label on profile pages"] = "Tekstlabel voor op profielpagina's"; -App::$strings["Help text"] = "Helptekst"; -App::$strings["Additional info (optional)"] = "Extra informatie (optioneel)"; -App::$strings["Field definition not found"] = "Velddefinitie niet gevonden"; -App::$strings["Edit Profile Field"] = "Profielveld bewerken"; -App::$strings["Basic Profile Fields"] = "Standaard profielvelden"; -App::$strings["Advanced Profile Fields"] = "Geavanceerde profielvelden"; -App::$strings["(In addition to basic fields)"] = "(als toevoeging op de standaard velden)"; -App::$strings["All available fields"] = "Alle beschikbare velden"; -App::$strings["Custom Fields"] = "Extra (handmatig toegevoegde) velden"; -App::$strings["Create Custom Field"] = "Extra velden aanmaken"; -App::$strings["Authorize application connection"] = "Geef toestemming voor applicatiekoppeling"; -App::$strings["Return to your app and insert this Securty Code:"] = "Ga terug naar je app en voeg deze beveiligingscode in:"; -App::$strings["Please login to continue."] = "Inloggen om verder te kunnen gaan."; -App::$strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "Wil je deze applicatie toestemming geven om jouw berichten en connecties te zien, en/of nieuwe berichten voor jou te plaatsen?"; +App::$strings["You have no more invitations available"] = "Je hebt geen uitnodigingen meer beschikbaar"; +App::$strings["Send invitations"] = "Uitnodigingen verzenden"; +App::$strings["Enter email addresses, one per line:"] = "Voer e-mailadressen in, één per regel:"; +App::$strings["Your message:"] = "Jouw bericht:"; +App::$strings["Please join my community on \$Projectname."] = "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op \$Projectname te vergezellen. Lees meer over \$Projectname op http://hubzilla.org"; +App::$strings["You will need to supply this invitation code:"] = "Je moet deze uitnodigingscode opgeven:"; +App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registreer je op een willekeurige \$Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):"; +App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn \$Projectname-kanaaladres in het zoekveld invullen:"; +App::$strings["or visit"] = "of bezoek"; +App::$strings["3. Click [Connect]"] = "3. Klik op [+ Verbinden]"; +App::$strings["Unable to locate original post."] = "Niet in staat om de originele locatie van het bericht te vinden. "; +App::$strings["Empty post discarded."] = "Leeg bericht geannuleerd"; +App::$strings["Executable content type not permitted to this channel."] = "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal."; +App::$strings["Duplicate post suppressed."] = "Dubbel bericht tegengehouden."; +App::$strings["System error. Post not saved."] = "Systeemfout. Bericht niet opgeslagen."; +App::$strings["Unable to obtain post information from database."] = "Niet in staat om informatie over dit bericht uit de database te verkrijgen."; +App::$strings["You have reached your limit of %1$.0f top level posts."] = "Je hebt jouw limiet van %1$.0f berichten bereikt."; +App::$strings["You have reached your limit of %1$.0f webpages."] = "Je hebt jouw limiet van %1$.0f webpagina's bereikt."; +App::$strings["Layouts"] = "Lay-outs"; +App::$strings["Comanche page description language help"] = "Hulp met de paginabeschrijvingstaal Comanche"; +App::$strings["Layout Description"] = "Lay-out-omschrijving"; +App::$strings["Download PDL file"] = "Download PDL-bestand"; +App::$strings["Like/Dislike"] = "Leuk/niet leuk"; +App::$strings["This action is restricted to members."] = "Deze actie kan alleen door \$Projectname-leden worden uitgevoerd."; +App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Je dient in te loggen met je \$Projectname-account of een nieuw \$Projectname-account aan te maken om verder te kunnen gaan."; +App::$strings["Invalid request."] = "Ongeldig verzoek"; +App::$strings["channel"] = "kanaal"; +App::$strings["thing"] = "ding"; +App::$strings["Channel unavailable."] = "Kanaal niet beschikbaar."; +App::$strings["Previous action reversed."] = "Vorige actie omgedraaid"; +App::$strings["photo"] = "foto"; +App::$strings["status"] = "bericht"; +App::$strings["%1\$s likes %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s leuk"; +App::$strings["%1\$s doesn't like %2\$s's %3\$s"] = "%1\$s vindt %3\$s van %2\$s niet leuk"; +App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s is het eens met %2\$s's %3\$s"; +App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s is het niet eens met %2\$s's %3\$s"; +App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s onthoudt zich van een besluit over %2\$s's %3\$s"; +App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s is aanwezig op %2\$s's %3\$s"; +App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s is niet aanwezig op %2\$s's %3\$s"; +App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s is mogelijk aanwezig op %2\$s's %3\$s"; +App::$strings["Action completed."] = "Actie voltooid"; +App::$strings["Thank you."] = "Bedankt"; +App::$strings["Remote privacy information not available."] = "Privacy-informatie op afstand niet beschikbaar."; +App::$strings["Visible to:"] = "Zichtbaar voor:"; +App::$strings["Location not found."] = "Locatie niet gevonden."; +App::$strings["Location lookup failed."] = "Opzoeken locatie mislukt"; +App::$strings["Please select another location to become primary before removing the primary location."] = "Kies eerst een andere primaire locatie alvorens de huidige primaire locatie te verwijderen."; +App::$strings["Syncing locations"] = "Locaties synchronizeren"; +App::$strings["No locations found."] = "Geen locaties gevonden."; +App::$strings["Manage Channel Locations"] = "Kanaallocaties beheren"; +App::$strings["Primary"] = "Primair"; +App::$strings["Drop"] = "Verwijderen"; +App::$strings["Sync Now"] = "Nu synchroniseren"; +App::$strings["Please wait several minutes between consecutive operations."] = "Wacht enkele minuten tussen opeenvolgende handelingen."; +App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen."; +App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is."; +App::$strings["No valid account found."] = "Geen geldige account gevonden."; +App::$strings["Password reset request issued. Check your email."] = "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail."; +App::$strings["Site Member (%s)"] = "Lid van hub (%s)"; +App::$strings["Password reset requested at %s"] = "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend"; +App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt."; +App::$strings["Password Reset"] = "Wachtwoord vergeten?"; +App::$strings["Your password has been reset as requested."] = "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht."; +App::$strings["Your new password is"] = "Jouw nieuwe wachtwoord is"; +App::$strings["Save or copy your new password - and then"] = "Kopieer of sla je nieuwe wachtwoord op - en"; +App::$strings["click here to login"] = "klik dan hier om in te loggen"; +App::$strings["Your password may be changed from the Settings page after successful login."] = "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd."; +App::$strings["Your password has changed at %s"] = "Jouw wachtwoord op %s is veranderd"; +App::$strings["Forgot your Password?"] = "Wachtwoord vergeten?"; +App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies."; +App::$strings["Email Address"] = "E-mailadres"; +App::$strings["Reset"] = "Opnieuw instellen"; +App::$strings["Hub not found."] = "Hub niet gevonden."; +App::$strings["Unable to lookup recipient."] = "Niet in staat om ontvanger op te zoeken."; +App::$strings["Unable to communicate with requested channel."] = "Niet in staat om met het aangevraagde kanaal te communiceren."; +App::$strings["Cannot verify requested channel."] = "Kan opgevraagd kanaal niet verifieren"; +App::$strings["Selected channel has private message restrictions. Send failed."] = "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt."; +App::$strings["Messages"] = "Berichten"; +App::$strings["Message recalled."] = "Bericht ingetrokken."; +App::$strings["Conversation removed."] = "Conversatie verwijderd"; +App::$strings["Requested channel is not in this network"] = "Opgevraagd kanaal is niet in dit netwerk beschikbaar"; +App::$strings["Send Private Message"] = "Privébericht versturen"; +App::$strings["To:"] = "Aan:"; +App::$strings["Subject:"] = "Onderwerp:"; +App::$strings["Send"] = "Verzenden"; +App::$strings["Delete message"] = "Bericht verwijderen"; +App::$strings["Delivery report"] = "Afleveringsrapport"; +App::$strings["Recall message"] = "Bericht intrekken"; +App::$strings["Message has been recalled."] = "Bericht is ingetrokken."; +App::$strings["Delete Conversation"] = "Verwijder conversatie"; +App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender."; +App::$strings["Send Reply"] = "Antwoord versturen"; +App::$strings["Your message for %s (%s):"] = "Jouw privébericht aan %s (%s):"; +App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt."; +App::$strings["Create a new channel"] = "Nieuw kanaal aanmaken"; +App::$strings["Channel Manager"] = "Kanaalbeheer"; +App::$strings["Current Channel"] = "Huidig kanaal"; +App::$strings["Switch to one of your channels by selecting it."] = "Activeer een van jouw andere kanalen door er op te klikken."; +App::$strings["Default Channel"] = "Standaardkanaal"; +App::$strings["Make Default"] = "Als standaard instellen"; +App::$strings["%d new messages"] = "%d nieuwe berichten"; +App::$strings["%d new introductions"] = "%d nieuwe connectieverzoeken"; +App::$strings["Delegated Channel"] = "Uitbesteed kanaal"; +App::$strings["Profile Match"] = "Profielovereenkomst"; +App::$strings["No keywords to match. Please add keywords to your default profile."] = "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe."; +App::$strings["is interested in:"] = "is geïnteresseerd in:"; +App::$strings["No matches"] = "Geen overeenkomsten"; +App::$strings["Unable to update menu."] = "Niet in staat om menu aan te passen"; +App::$strings["Unable to create menu."] = "Niet in staat om menu aan te maken."; +App::$strings["Menu Name"] = "Menunaam"; +App::$strings["Unique name (not visible on webpage) - required"] = "Unieke naam vereist (niet zichtbaar op webpagina)"; +App::$strings["Menu Title"] = "Menutitel"; +App::$strings["Visible on webpage - leave empty for no title"] = "Zichtbaar op webpagina (leeg laten voor geen titel)"; +App::$strings["Allow Bookmarks"] = "Bladwijzers toestaan"; +App::$strings["Menu may be used to store saved bookmarks"] = "Menu kan gebruikt worden om bladwijzers in op te slaan"; +App::$strings["Submit and proceed"] = "Opslaan en doorgaan"; +App::$strings["Menus"] = "Menu's"; +App::$strings["Bookmarks allowed"] = "Bladwijzers toegestaan"; +App::$strings["Delete this menu"] = "Menu verwijderen"; +App::$strings["Edit menu contents"] = "Bewerk de inhoud van het menu"; +App::$strings["Edit this menu"] = "Dit menu bewerken"; +App::$strings["Menu could not be deleted."] = "Menu kon niet verwijderd worden."; +App::$strings["Menu not found."] = "Menu niet gevonden."; +App::$strings["Edit Menu"] = "Menu bewerken"; +App::$strings["Add or remove entries to this menu"] = "Items aan dit menu toevoegen of verwijder"; +App::$strings["Menu name"] = "Naam van menu"; +App::$strings["Must be unique, only seen by you"] = "Moet uniek zijn en is alleen zichtbaar voor jou."; +App::$strings["Menu title"] = "Titel van menu"; +App::$strings["Menu title as seen by others"] = "Titel van menu zoals anderen dat zien."; +App::$strings["Allow bookmarks"] = "Bladwijzers toestaan"; +App::$strings["Not found."] = "Niet gevonden."; +App::$strings["Unable to create element."] = "Niet in staat om onderdeel aan te maken."; +App::$strings["Unable to update menu element."] = "Menu-onderdeel kan niet worden geüpdatet."; +App::$strings["Unable to add menu element."] = "Menu-onderdeel kan niet worden toegevoegd."; +App::$strings["Menu Item Permissions"] = "Permissies menu-item"; +App::$strings["(click to open/close)"] = "(klik om te openen/sluiten)"; +App::$strings["Link Name"] = "Linknaam"; +App::$strings["Link or Submenu Target"] = "Linkdoel of submenu-doel"; +App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Geef de URL van de link of kies een menunaam om een submenu aan te maken"; +App::$strings["Use magic-auth if available"] = "Gebruik magic-auth wanneer beschikbaar"; +App::$strings["Open link in new window"] = "Open link in nieuw venster"; +App::$strings["Order in list"] = "Volgorde in lijst"; +App::$strings["Higher numbers will sink to bottom of listing"] = "Hogere nummers komen onderaan de lijst terecht"; +App::$strings["Submit and finish"] = "Opslaan en afsluiten"; +App::$strings["Submit and continue"] = "Opslaan en doorgaan"; +App::$strings["Menu:"] = "Menu:"; +App::$strings["Link Target"] = "Linkdoel"; +App::$strings["Edit menu"] = "Menu bewerken"; +App::$strings["Edit element"] = "Onderdeel bewerken"; +App::$strings["Drop element"] = "Onderdeel verwijderen"; +App::$strings["New element"] = "Nieuw element"; +App::$strings["Edit this menu container"] = "Deze menu-container bewerken"; +App::$strings["Add menu element"] = "Menu-element toevoegen"; +App::$strings["Delete this menu item"] = "Dit menu-item verwijderen"; +App::$strings["Edit this menu item"] = "Dit menu-item bewerken"; +App::$strings["Menu item not found."] = "Menu-item niet gevonden."; +App::$strings["Menu item deleted."] = "Menu-item verwijderd."; +App::$strings["Menu item could not be deleted."] = "Menu-item kon niet worden verwijderd."; +App::$strings["Edit Menu Element"] = "Menu-element bewerken"; +App::$strings["Link text"] = "Linktekst"; +App::$strings["__ctx:mood__ %1\$s is %2\$s"] = "%1\$s is %2\$s"; +App::$strings["Mood"] = "Stemming"; +App::$strings["Set your current mood and tell your friends"] = "Noteer je huidige stemming en toon het aan je connecties"; +App::$strings["No such group"] = "Collectie niet gevonden"; +App::$strings["No such channel"] = "Niet zo'n kanaal"; +App::$strings["forum"] = "forum"; +App::$strings["Search Results For:"] = "Zoekresultaten voor:"; +App::$strings["Privacy group is empty"] = "Privacygroep is leeg"; +App::$strings["Privacy group: "] = "Privacygroep: "; +App::$strings["Invalid connection."] = "Ongeldige connectie."; +App::$strings["Name or caption"] = "Naam"; +App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Computerforum\""; +App::$strings["Choose a short nickname"] = "Korte bijnaam"; +App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Deze bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres van jouw kanaal aan te maken, die je dan met anderen kunt delen. Bijvoorbeeld: bijnaam%s"; +App::$strings["Channel role and privacy"] = "Kanaaltype en privacy"; +App::$strings["Select a channel role with your privacy requirements."] = "Kies een kanaaltype met het door jou gewenste privacyniveau."; +App::$strings["Read more about roles"] = "Lees meer over kanaaltypes"; +App::$strings["Create Channel"] = "Kanaal aanmaken"; +App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Een kanaal is jouw identiteit in dit netwerk. Het kan bijvoorbeeld een persoon, een blog of een forum vertegenwoordigen. Door met elkaar te verbinden kunnen kanalen, met behulp van uitgebreide permissies, informatie uitwisselen."; +App::$strings["or import an existing channel from another location."] = "Of importeer een bestaand kanaal vanaf een andere locatie"; +App::$strings["Invalid request identifier."] = "Ongeldige verzoek identificator (request identifier)"; +App::$strings["Discard"] = "Annuleren"; +App::$strings["No more system notifications."] = "Geen systeemnotificaties meer."; +App::$strings["System Notifications"] = "Systeemnotificaties"; +App::$strings["Mark all system notifications seen"] = "Markeer alle systeemnotificaties als bekeken"; +App::$strings["Unable to find your hub."] = "Niet in staat om je hub te vinden"; +App::$strings["Post successful."] = "Verzenden bericht geslaagd."; App::$strings["OpenID protocol error. No ID returned."] = "OpenID-protocolfout. Geen ID terugontvangen."; -App::$strings["App installed."] = "App geïnstalleerd"; -App::$strings["Malformed app."] = "Misvormde app."; -App::$strings["Embed code"] = "Insluitcode"; -App::$strings["Edit App"] = "App bewerken"; -App::$strings["Create App"] = "App maken"; -App::$strings["Name of app"] = "Naam van app"; -App::$strings["Location (URL) of app"] = "Locatie (URL) van app"; -App::$strings["Description"] = "Omschrijving"; -App::$strings["Photo icon URL"] = "URL van pictogram"; -App::$strings["80 x 80 pixels - optional"] = "80 x 80 pixels (optioneel)"; -App::$strings["Version ID"] = "Versie-ID"; -App::$strings["Price of app"] = "Prijs van de app"; -App::$strings["Location (URL) to purchase app"] = "Locatie (URL) om de app aan te schaffen"; -App::$strings["Invalid item."] = "Ongeldig item."; -App::$strings["Channel not found."] = "Kanaal niet gevonden."; +App::$strings["Login failed."] = "Inloggen mislukt."; App::$strings["Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."] = "Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat. Duis aute irure dolor in reprehenderit in voluptate velit esse cillum dolore eu fugiat nulla pariatur. Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum."; -App::$strings["Item not available."] = "Item is niet aanwezig."; App::$strings["This setting requires special processing and editing has been blocked."] = "Deze instelling vereist een speciaal proces en bewerken is geblokkeerd."; App::$strings["Configuration Editor"] = "Configuratiebewerker"; App::$strings["Warning: Changing some settings could render your channel inoperable. Please leave this page unless you are comfortable with and knowledgeable about how to correctly use this feature."] = "Waarschuwing: het veranderen van sommige instellingen kunnen jouw kanaal onklaar maken. Verlaat deze pagina, tenzij je weet waar je mee bezig bent en voldoende kennis bezit over hoe je deze functies moet gebruiken. "; @@ -1280,19 +879,12 @@ App::$strings["Edit System Page Description"] = "Systeempagina's bewerken"; App::$strings["Layout not found."] = "Lay-out niet gevonden."; App::$strings["Module Name:"] = "Modulenaam:"; App::$strings["Layout Help"] = "Lay-out-hulp"; -App::$strings["Item not found"] = "Item niet gevonden"; -App::$strings["Item is not editable"] = "Item is niet te bewerken"; -App::$strings["Delete item?"] = "Item verwijderen?"; -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["Edit post"] = "Bericht bewerken"; App::$strings["Page owner information could not be retrieved."] = "Informatie over de pagina-eigenaar werd niet ontvangen."; +App::$strings["Profile Photos"] = "Profielfoto's"; App::$strings["Album not found."] = "Album niet gevonden."; App::$strings["Delete Album"] = "Verwijder album"; App::$strings["Multiple storage folders exist with this album name, but within different directories. Please remove the desired folder or folders using the Files manager"] = "Er bestaan meerdere submappen met deze albumnaam, maar verspreidt over verschillende mappen. Verwijder de gewenste map(pen) met de bestandsbeheerder."; App::$strings["Delete Photo"] = "Verwijder foto"; -App::$strings["Public access denied."] = "Openbare toegang geweigerd."; App::$strings["No photos selected"] = "Geen foto's geselecteerd"; App::$strings["Access to this item is restricted."] = "Toegang tot dit item is beperkt."; App::$strings["%1$.2f MB of %2$.2f MB photo storage used."] = "%1$.2f MB van %2$.2f MB aan foto-opslag gebruikt."; @@ -1307,14 +899,14 @@ App::$strings["Album name could not be decoded"] = "Albumnaam kon niet gedecodee App::$strings["Contact Photos"] = "Connectiefoto's"; App::$strings["Show Newest First"] = "Nieuwste eerst weergeven"; App::$strings["Show Oldest First"] = "Oudste eerst weergeven"; +App::$strings["View Photo"] = "Foto weergeven"; +App::$strings["Edit Album"] = "Album bewerken"; App::$strings["Permission denied. Access to this item may be restricted."] = "Toegang geweigerd. Toegang tot dit item kan zijn beperkt."; App::$strings["Photo not available"] = "Foto niet aanwezig"; App::$strings["Use as profile photo"] = "Als profielfoto gebruiken"; App::$strings["Use as cover photo"] = "Als omslagfoto gebruiken"; App::$strings["Private Photo"] = "Privéfoto"; -App::$strings["Previous"] = "Vorige"; App::$strings["View Full Size"] = "Volledige grootte weergeven"; -App::$strings["Next"] = "Volgende"; App::$strings["Remove"] = "Verwijderen"; App::$strings["Edit photo"] = "Foto bewerken"; App::$strings["Rotate CW (right)"] = "Draai met de klok mee (naar rechts)"; @@ -1325,199 +917,49 @@ App::$strings["Caption"] = "Bijschrift"; App::$strings["Add a Tag"] = "Tag toevoegen"; App::$strings["Example: @bob, @Barbara_Jensen, @jim@example.com"] = "Voorbeeld: @bob, @Barbara_Jansen, @jan@voorbeeld.nl"; App::$strings["Flag as adult in album view"] = "Markeer als voor volwassenen in albumweergave"; +App::$strings["I like this (toggle)"] = "Vind ik leuk"; +App::$strings["I don't like this (toggle)"] = "Vind ik niet leuk"; +App::$strings["This is you"] = "Dit ben jij"; +App::$strings["Comment"] = "Reactie"; +App::$strings["__ctx:title__ Likes"] = "vinden dit leuk"; +App::$strings["__ctx:title__ Dislikes"] = "vinden dit niet leuk"; +App::$strings["__ctx:title__ Agree"] = "eens"; +App::$strings["__ctx:title__ Disagree"] = "oneens"; +App::$strings["__ctx:title__ Abstain"] = "onthoudingen"; +App::$strings["__ctx:title__ Attending"] = "aanwezig"; +App::$strings["__ctx:title__ Not attending"] = "niet aanwezig"; +App::$strings["__ctx:title__ Might attend"] = "mogelijk aanwezig"; +App::$strings["View all"] = "Toon alles"; +App::$strings["__ctx:noun__ Like"] = array( + 0 => "vindt dit leuk", + 1 => "vinden dit leuk", +); +App::$strings["__ctx:noun__ Dislike"] = array( + 0 => "vindt dit niet leuk", + 1 => "vinden dit niet leuk", +); App::$strings["In This Photo:"] = "Op deze foto:"; App::$strings["Map"] = "Kaart"; +App::$strings["__ctx:noun__ Likes"] = "vinden dit leuk"; +App::$strings["__ctx:noun__ Dislikes"] = "vinden dit niet leuk"; +App::$strings["Close"] = "Sluiten"; App::$strings["View Album"] = "Album weergeven"; App::$strings["Recent Photos"] = "Recente foto's"; -App::$strings["Bookmark added"] = "Bladwijzer toegevoegd"; -App::$strings["My Bookmarks"] = "Mijn bladwijzers"; -App::$strings["My Connections Bookmarks"] = "Bladwijzers van mijn connecties"; -App::$strings["Menu not found."] = "Menu niet gevonden."; -App::$strings["Unable to create element."] = "Niet in staat om onderdeel aan te maken."; -App::$strings["Unable to update menu element."] = "Menu-onderdeel kan niet worden geüpdatet."; -App::$strings["Unable to add menu element."] = "Menu-onderdeel kan niet worden toegevoegd."; -App::$strings["Not found."] = "Niet gevonden."; -App::$strings["Menu Item Permissions"] = "Permissies menu-item"; -App::$strings["(click to open/close)"] = "(klik om te openen/sluiten)"; -App::$strings["Link Name"] = "Linknaam"; -App::$strings["Link or Submenu Target"] = "Linkdoel of submenu-doel"; -App::$strings["Enter URL of the link or select a menu name to create a submenu"] = "Geef de URL van de link of kies een menunaam om een submenu aan te maken"; -App::$strings["Use magic-auth if available"] = "Gebruik magic-auth wanneer beschikbaar"; -App::$strings["Open link in new window"] = "Open link in nieuw venster"; -App::$strings["Order in list"] = "Volgorde in lijst"; -App::$strings["Higher numbers will sink to bottom of listing"] = "Hogere nummers komen onderaan de lijst terecht"; -App::$strings["Submit and finish"] = "Opslaan en afsluiten"; -App::$strings["Submit and continue"] = "Opslaan en doorgaan"; -App::$strings["Menu:"] = "Menu:"; -App::$strings["Link Target"] = "Linkdoel"; -App::$strings["Edit menu"] = "Menu bewerken"; -App::$strings["Edit element"] = "Onderdeel bewerken"; -App::$strings["Drop element"] = "Onderdeel verwijderen"; -App::$strings["New element"] = "Nieuw element"; -App::$strings["Edit this menu container"] = "Deze menu-container bewerken"; -App::$strings["Add menu element"] = "Menu-element toevoegen"; -App::$strings["Delete this menu item"] = "Dit menu-item verwijderen"; -App::$strings["Edit this menu item"] = "Dit menu-item bewerken"; -App::$strings["Menu item not found."] = "Menu-item niet gevonden."; -App::$strings["Menu item deleted."] = "Menu-item verwijderd."; -App::$strings["Menu item could not be deleted."] = "Menu-item kon niet worden verwijderd."; -App::$strings["Edit Menu Element"] = "Menu-element bewerken"; -App::$strings["Link text"] = "Linktekst"; App::$strings["sent you a private message"] = "stuurde jou een privébericht"; App::$strings["added your channel"] = "voegde jouw kanaal toe"; +App::$strings["g A l F d"] = "G:i, l d F"; +App::$strings["[today]"] = "[vandaag]"; App::$strings["posted an event"] = "plaatste een gebeurtenis"; -App::$strings["Permissions denied."] = "Permissies niet toegestaan"; -App::$strings["l, F j"] = "l j F"; -App::$strings["Edit Event"] = "Gebeurtenis bewerken"; -App::$strings["Create Event"] = "Gebeurtenis aanmaken"; -App::$strings["Today"] = "Vandaag"; -App::$strings["You must be logged in to see this page."] = "Je moet zijn ingelogd om deze pagina te kunnen bekijken."; -App::$strings["Posts and comments"] = "Berichten en reacties"; -App::$strings["Only posts"] = "Alleen berichten"; -App::$strings["Insufficient permissions. Request redirected to profile page."] = "Onvoldoende permissies. Doorgestuurd naar profielpagina."; -App::$strings["Public"] = "Openbaar"; +App::$strings["Poke"] = "Aanstoten"; App::$strings["Poke somebody"] = "Iemand aanstoten"; App::$strings["Poke/Prod"] = "Aanstoten/porren"; App::$strings["Poke, prod or do other things to somebody"] = "Iemand bijvoorbeeld aanstoten of poren"; App::$strings["Recipient"] = "Ontvanger"; App::$strings["Choose what you wish to do to recipient"] = "Kies wat je met de ontvanger wil doen"; App::$strings["Make this post private"] = "Maak dit bericht privé"; -App::$strings["Room not found"] = "Chatkanaal niet gevonden"; -App::$strings["Leave Room"] = "Chatkanaal verlaten"; -App::$strings["Delete Room"] = "Chatkanaal verwijderen"; -App::$strings["I am away right now"] = "Ik ben momenteel afwezig"; -App::$strings["I am online"] = "Ik ben online"; -App::$strings["Bookmark this room"] = "Chatkanaal aan bladwijzers toevoegen"; -App::$strings["Feature disabled."] = "Functie uitgeschakeld."; -App::$strings["New Chatroom"] = "Nieuw chatkanaal"; -App::$strings["Chatroom name"] = "Naam chatkanaal"; -App::$strings["Expiration of chats (minutes)"] = "Aantal minuten voordat chatberichten worden verwijderd"; -App::$strings["%1\$s's Chatrooms"] = "Chatkanalen van %1\$s"; -App::$strings["No chatrooms available"] = "Geen chatkanalen beschikbaar"; -App::$strings["Create New"] = "Nieuwe aanmaken"; -App::$strings["Expiration"] = "Verloopt na"; -App::$strings["min"] = "min"; -App::$strings["Away"] = "Afwezig"; -App::$strings["Online"] = "Online"; App::$strings["Fetching URL returns error: %1\$s"] = "Ophalen URL gaf een foutmelding terug: %1\$s"; -App::$strings["No channel."] = "Geen kanaal."; -App::$strings["Common connections"] = "Veel voorkomende connecties"; -App::$strings["No connections in common."] = "Geen gemeenschappelijke connecties."; -App::$strings["Continue"] = "Ga verder"; -App::$strings["Premium Channel Setup"] = "Instellen premiumkanaal "; -App::$strings["Enable premium channel connection restrictions"] = "Restricties voor connecties van premiumkanaal toestaan"; -App::$strings["Please enter your restrictions or conditions, such as paypal receipt, usage guidelines, etc."] = "Vul je restricties of voorwaarden in, zoals een paypal-afschrift, voorschriften voor leden, enz."; -App::$strings["This channel may require additional steps or acknowledgement of the following conditions prior to connecting:"] = "Dit kanaal kan extra stappen of het accepteren van de volgende voorwaarden vereisen, voordat de connectie wordt geaccepteerd:"; -App::$strings["Potential connections will then see the following text before proceeding:"] = "Mogelijke connecties zullen dan de volgende tekst zien voordat ze verder kunnen:"; -App::$strings["By continuing, I certify that I have complied with any instructions provided on this page."] = "Door verder te gaan ga ik automatisch akkoord met alle voorwaarden en aanwijzingen op deze pagina."; -App::$strings["(No specific instructions have been provided by the channel owner.)"] = "(Er zijn geen speciale voorwaarden en aanwijzingen door de kanaal-eigenaar verstrekt) "; -App::$strings["Restricted or Premium Channel"] = "Beperkt of premiumkanaal"; -App::$strings["Set your current mood and tell your friends"] = "Noteer je huidige stemming en toon het aan je connecties"; -App::$strings["Blocked"] = "Geblokkeerd"; -App::$strings["Ignored"] = "Genegeerd"; -App::$strings["Hidden"] = "Verborgen"; -App::$strings["Archived"] = "Gearchiveerd"; -App::$strings["New Connections"] = "Nieuwe connecties"; -App::$strings["Show pending (new) connections"] = "Nog te accepteren (nieuwe) connecties weergeven"; -App::$strings["All Connections"] = "Alle connecties"; -App::$strings["Show all connections"] = "Toon alle connecties"; -App::$strings["Only show blocked connections"] = "Toon alleen geblokkeerde connecties"; -App::$strings["Only show ignored connections"] = "Toon alleen genegeerde connecties"; -App::$strings["Only show archived connections"] = "Toon alleen gearchiveerde connecties"; -App::$strings["Only show hidden connections"] = "Toon alleen verborgen connecties"; -App::$strings["Pending approval"] = "Moet nog geaccepteerd worden"; -App::$strings["%1\$s [%2\$s]"] = "%1\$s [%2\$s]"; -App::$strings["Edit connection"] = "Connectie bewerken"; -App::$strings["Delete connection"] = "Connectie verwijderen"; -App::$strings["Channel address"] = "Kanaaladres"; -App::$strings["Network"] = "Netwerk"; -App::$strings["Connected"] = "Verbonden"; -App::$strings["Approve connection"] = "Connectie accepteren"; -App::$strings["Ignore connection"] = "Connectie negeren"; -App::$strings["Ignore"] = "Negeren"; -App::$strings["Recent activity"] = "Recente activiteit"; -App::$strings["Search your connections"] = "Doorzoek jouw connecties"; -App::$strings["Connections search"] = "Connecties zoeken"; -App::$strings["Image uploaded but image cropping failed."] = "Afbeelding geüpload, maar afbeelding kon niet worden bijgesneden. "; -App::$strings["Image resize failed."] = "Afbeelding kon niet van grootte veranderd worden."; App::$strings["Shift-reload the page or clear browser cache if the new photo does not display immediately."] = "Vernieuw de pagina met shift+R of shift+F5, of leeg je browserbuffer, wanneer de nieuwe foto niet meteen wordt weergegeven."; -App::$strings["Image upload failed."] = "Uploaden afbeelding mislukt"; -App::$strings["Unable to process image."] = "Niet in staat om afbeelding te verwerken."; -App::$strings["Photo not available."] = "Foto niet beschikbaar."; -App::$strings["Upload File:"] = "Bestand uploaden:"; -App::$strings["Select a profile:"] = "Kies een profiel:"; App::$strings["Upload Profile Photo"] = "Profielfoto uploaden"; -App::$strings["or"] = "of"; -App::$strings["skip this step"] = "sla deze stap over"; -App::$strings["select a photo from your photo albums"] = "Kies een foto uit jouw fotoalbums"; -App::$strings["Crop Image"] = "Afbeelding bijsnijden"; -App::$strings["Please adjust the image cropping for optimum viewing."] = "Snij de afbeelding zo uit dat deze optimaal wordt weergegeven."; -App::$strings["Done Editing"] = "Klaar met bewerken"; -App::$strings["Could not access contact record."] = "Kon geen toegang krijgen tot de connectie-gegevens."; -App::$strings["Could not locate selected profile."] = "Kon het gekozen profiel niet vinden."; -App::$strings["Connection updated."] = "Connectie bijgewerkt."; -App::$strings["Failed to update connection record."] = "Bijwerken van connectie-gegevens mislukt."; -App::$strings["is now connected to"] = "is nu verbonden met"; -App::$strings["Could not access address book record."] = "Kon geen toegang krijgen tot de record van de connectie."; -App::$strings["Refresh failed - channel is currently unavailable."] = "Vernieuwen mislukt - kanaal is momenteel niet beschikbaar"; -App::$strings["Unable to set address book parameters."] = "Niet in staat om de parameters van connecties in te stellen."; -App::$strings["Connection has been removed."] = "Connectie is verwijderd"; -App::$strings["View %s's profile"] = "Profiel van %s weergeven"; -App::$strings["Refresh Permissions"] = "Permissies vernieuwen"; -App::$strings["Fetch updated permissions"] = "Aangepaste permissies ophalen"; -App::$strings["Recent Activity"] = "Recente activiteit/berichten"; -App::$strings["View recent posts and comments"] = "Recente berichten en reacties weergeven"; -App::$strings["Block (or Unblock) all communications with this connection"] = "Blokkeer (of deblokkeer) alle communicatie met deze connectie"; -App::$strings["This connection is blocked!"] = "Deze connectie is geblokkeerd!"; -App::$strings["Unignore"] = "Niet meer negeren"; -App::$strings["Ignore (or Unignore) all inbound communications from this connection"] = "Negeer (of negeer niet meer) alle inkomende communicatie van deze connectie"; -App::$strings["This connection is ignored!"] = "Deze connectie wordt genegeerd!"; -App::$strings["Unarchive"] = "Niet meer archiveren"; -App::$strings["Archive"] = "Archiveren"; -App::$strings["Archive (or Unarchive) this connection - mark channel dead but keep content"] = "Archiveer (of dearchiveer) deze connectie - markeer het kanaal als dood, maar bewaar de inhoud"; -App::$strings["This connection is archived!"] = "Deze connectie is gearchiveerd!"; -App::$strings["Unhide"] = "Niet meer verbergen"; -App::$strings["Hide"] = "Verbergen"; -App::$strings["Hide or Unhide this connection from your other connections"] = "Deze connectie verbergen (of niet meer verbergen) voor jouw andere connecties"; -App::$strings["This connection is hidden!"] = "Deze connectie is verborgen!"; -App::$strings["Delete this connection"] = "Deze connectie verwijderen"; -App::$strings["Approve this connection"] = "Deze connectie accepteren"; -App::$strings["Accept connection to allow communication"] = "Keur deze connectie goed om communicatie toe te staan"; -App::$strings["Set Affinity"] = "Verwantschapsfilter instellen"; -App::$strings["Set Profile"] = "Profiel instellen"; -App::$strings["Set Affinity & Profile"] = "Verwantschapsfilter en profiel instellen"; -App::$strings["none"] = "geen"; -App::$strings["Apply these permissions automatically"] = "Deze permissies automatisch toepassen"; -App::$strings["Connection requests will be approved without your interaction"] = "Connectieverzoeken zullen automatisch worden geaccepteerd"; -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["Slide to adjust your degree of friendship"] = "Schuif om te bepalen hoe goed je iemand kent en/of mag"; -App::$strings["Slide to adjust your rating"] = "Gebruik de schuif om je beoordeling te geven"; -App::$strings["Optionally explain your rating"] = "Verklaar jouw beoordeling (niet verplicht)"; -App::$strings["Custom Filter"] = "Berichtenfilter"; -App::$strings["Only import posts with this text"] = "Importeer alleen berichten met deze tekst"; -App::$strings["words one per line or #tags or /patterns/ or lang=xx, leave blank to import all posts"] = "woorden (één per regel), #tags, /regex/ of talen (lang=iso639-1) - laat leeg om alle berichten te importeren"; -App::$strings["Do not import posts with this text"] = "Importeer geen berichten met deze tekst"; -App::$strings["This information is public!"] = "Deze informatie is openbaar!"; -App::$strings["Connection Pending Approval"] = "Connectie moet nog geaccepteerd worden"; -App::$strings["inherited"] = "geërfd"; -App::$strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Kies het profiel dat je aan %s wil tonen wanneer hij/zij ingelogd jouw profiel wil bekijken."; -App::$strings["Their Settings"] = "Hun instellingen"; -App::$strings["My Settings"] = "Mijn instellingen"; -App::$strings["Individual Permissions"] = "Individuele permissies"; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can not change those settings here."] = "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele instellingen. Je kan je deze overgeërfde permissies hier niet veranderen."; -App::$strings["Some permissions may be inherited from your channel's privacy settings, which have higher priority than individual settings. You can change those settings here but they wont have any impact unless the inherited setting changes."] = "Sommige permissies worden mogelijk overgeërfd van de privacy-instellingen van jouw kanaal, die een hogere prioriteit hebben dan deze individuele permissies. Je kan de permissies hier veranderen, maar die hebben geen effect, tenzij de overgeërfde permissies worden veranderd. "; -App::$strings["Last update:"] = "Laatste wijziging:"; -App::$strings["No such group"] = "Collectie niet gevonden"; -App::$strings["No such channel"] = "Niet zo'n kanaal"; -App::$strings["forum"] = "forum"; -App::$strings["Search Results For:"] = "Zoekresultaten voor:"; -App::$strings["Privacy group is empty"] = "Privacygroep is leeg"; -App::$strings["Privacy group: "] = "Privacygroep: "; -App::$strings["Invalid connection."] = "Ongeldige connectie."; -App::$strings["Cover Photos"] = "Omslagfoto's"; -App::$strings["Upload Cover Photo"] = "Omslagfoto uploaden"; App::$strings["Profile not found."] = "Profiel niet gevonden."; App::$strings["Profile deleted."] = "Profiel verwijderd."; App::$strings["Profile-"] = "Profiel-"; @@ -1532,7 +974,6 @@ App::$strings["Dislikes"] = "Houdt niet van"; App::$strings["Work/Employment"] = "Werk/arbeid"; App::$strings["Religion"] = "Religie"; App::$strings["Political Views"] = "Politieke overtuigingen"; -App::$strings["Gender"] = "Geslacht"; App::$strings["Sexual Preference"] = "Seksuele voorkeur"; App::$strings["Homepage"] = "Homepage"; App::$strings["Interests"] = "Interesses"; @@ -1540,12 +981,16 @@ App::$strings["Profile updated."] = "Profiel bijgewerkt"; App::$strings["Hide your connections list from viewers of this profile"] = "Laat de lijst met connecties niet aan bezoekers van dit profiel zien."; App::$strings["Edit Profile Details"] = "Profiel bewerken"; App::$strings["View this profile"] = "Profiel weergeven"; +App::$strings["Edit visibility"] = "Zichtbaarheid bewerken"; App::$strings["Change cover photo"] = "Omslagfoto wijzigen"; +App::$strings["Change profile photo"] = "Profielfoto veranderen"; App::$strings["Create a new profile using these settings"] = "Een nieuw profiel aanmaken met dit profiel als basis"; App::$strings["Clone this profile"] = "Dit profiel klonen"; App::$strings["Delete this profile"] = "Dit profiel verwijderen"; App::$strings["Add profile things"] = "Dingen aan je profiel toevoegen"; +App::$strings["Personal"] = "Persoonlijk"; App::$strings["Relation"] = "Relatie"; +App::$strings["Miscellaneous"] = "Diversen"; App::$strings["Import profile from file"] = "Profiel vanuit bestand importeren"; App::$strings["Export profile to file"] = "Profiel naar bestand exporteren"; App::$strings["Your gender"] = "Jouw geslacht"; @@ -1564,7 +1009,6 @@ App::$strings["Who (if applicable)"] = "Wie (wanneer van toepassing)"; App::$strings["Examples: cathy123, Cathy Williams, cathy@example.com"] = "Voorbeelden: petra123, Petra Jansen, petra@voorbeeld.nl"; App::$strings["Since (date)"] = "Sinds (datum)"; App::$strings["Tell us about yourself"] = "Vertel ons iets over jezelf"; -App::$strings["Homepage URL"] = "URL homepagina"; App::$strings["Hometown"] = "Oorspronkelijk uit"; App::$strings["Political views"] = "Politieke overtuigingen"; App::$strings["Religious views"] = "Religieuze overtuigingen"; @@ -1579,119 +1023,32 @@ App::$strings["Love/Romance"] = "Liefde/romantiek"; App::$strings["School/Education"] = "School/opleiding"; App::$strings["Contact information and social networks"] = "Contactinformatie en sociale netwerken"; App::$strings["My other channels"] = "Mijn andere kanalen"; -App::$strings["\$Projectname channel"] = "\$Projectname-kanaal"; +App::$strings["Profile Image"] = "Profielfoto"; +App::$strings["Edit Profiles"] = "Bewerk profielen"; App::$strings["Invalid profile identifier."] = "Ongeldige profiel-identificator"; App::$strings["Profile Visibility Editor"] = "Zichtbaarheid profiel "; +App::$strings["Profile"] = "Profiel"; App::$strings["Click on a contact to add or remove."] = "Klik op een connectie om deze toe te voegen of te verwijderen"; App::$strings["Visible To"] = "Zichtbaar voor"; -App::$strings["%d rating"] = array( - 0 => "%d beoordeling", - 1 => "%d beoordelingen", -); -App::$strings["Gender: "] = "Geslacht:"; -App::$strings["Status: "] = "Status: "; -App::$strings["Homepage: "] = "Homepage: "; -App::$strings["Description:"] = "Omschrijving:"; -App::$strings["Public Forum:"] = "Openbaar forum:"; -App::$strings["Keywords: "] = "Trefwoorden: "; -App::$strings["Don't suggest"] = "Niet voorstellen"; -App::$strings["Common connections:"] = "Gemeenschappelijke connecties:"; -App::$strings["Global Directory"] = "Volledige kanalengids"; -App::$strings["Local Directory"] = "Lokale kanalengids"; -App::$strings["Finding:"] = "Gezocht naar:"; -App::$strings["next page"] = "volgende pagina"; -App::$strings["previous page"] = "vorige pagina"; -App::$strings["Sort options"] = "Sorteeropties"; -App::$strings["Alphabetic"] = "Alfabetisch"; -App::$strings["Reverse Alphabetic"] = "Omgekeerd alfabetisch"; -App::$strings["Newest to Oldest"] = "Nieuw naar oud"; -App::$strings["Oldest to Newest"] = "Oud naar nieuw"; -App::$strings["No entries (some entries may be hidden)."] = "Niets gevonden (sommige kanalen kunnen verborgen zijn)."; -App::$strings["This site is not a directory server"] = "Deze hub is geen kanalengidshub (directoryserver)"; -App::$strings["This directory server requires an access token"] = "Deze kanalengidshub (directoryserver) heeft een toegangs-token nodig"; +App::$strings["Public Hubs"] = "Openbare hubs"; App::$strings["The listed hubs allow public registration for the \$Projectname network. All hubs in the network are interlinked so membership on any of them conveys membership in the network as a whole. Some hubs may require subscription or provide tiered service plans. The hub itself may provide additional details."] = "Op de hier weergegeven hubs kan iedereen zich voor het \$Projectname-netwerk aanmelden. Alle hubs in het netwerk zijn met elkaar verbonden, dus maakt het qua lidmaatschap niet uit waar je je aanmeldt. Op sommige hubs heb je eerst goedkeuring nodig en sommige hubs vereisen een financiële tegemoetkoming voor bepaalde uitbreidingen. Mogelijk wordt hierover op de hub zelf meer informatie gegeven."; App::$strings["Hub URL"] = "Hub-URL"; App::$strings["Access Type"] = "Toegangs-
 type"; App::$strings["Registration Policy"] = "Registratie-
 beleid"; +App::$strings["Ratings"] = "Beoordelingen"; App::$strings["Rate"] = "Beoordeel"; -App::$strings["Invalid message"] = "Ongeldig bericht"; -App::$strings["no results"] = "geen resultaten"; -App::$strings["Delivery report for %1\$s"] = "Afleveringsrapport voor %1\$s"; -App::$strings["channel sync processed"] = "kanaalsync verwerkt"; -App::$strings["queued"] = "in wachtrij"; -App::$strings["posted"] = "verstuurd"; -App::$strings["accepted for delivery"] = "geaccepteerd om afgeleverd te worden"; -App::$strings["updated"] = "geüpdatet"; -App::$strings["update ignored"] = "update genegeerd"; -App::$strings["permission denied"] = "toegang geweigerd"; -App::$strings["recipient not found"] = "ontvanger niet gevonden"; -App::$strings["mail recalled"] = "Privébericht ingetrokken"; -App::$strings["duplicate mail received"] = "dubbel privébericht ontvangen"; -App::$strings["mail delivered"] = "privébericht afgeleverd"; -App::$strings["Delete block?"] = "Blok verwijderen"; -App::$strings["Edit Block"] = "Blok bewerken"; -App::$strings["You have created %1$.0f of %2$.0f allowed channels."] = "Je hebt %1$.0f van totaal %2$.0f toegestane kanalen aangemaakt."; -App::$strings["Name or caption"] = "Naam"; -App::$strings["Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation Group\""] = "Voorbeelden: \"Jan Pietersen\", \"Willems weblog\", \"Computerforum\""; -App::$strings["Choose a short nickname"] = "Korte bijnaam"; -App::$strings["Your nickname will be used to create an easy to remember channel address e.g. nickname%s"] = "Deze bijnaam wordt gebruikt om een makkelijk te onthouden kanaaladres van jouw kanaal aan te maken, die je dan met anderen kunt delen. Bijvoorbeeld: bijnaam%s"; -App::$strings["Channel role and privacy"] = "Kanaaltype en privacy"; -App::$strings["Select a channel role with your privacy requirements."] = "Kies een kanaaltype met het door jou gewenste privacyniveau."; -App::$strings["Read more about roles"] = "Lees meer over kanaaltypes"; -App::$strings["Create Channel"] = "Kanaal aanmaken"; -App::$strings["A channel is your identity on this network. It can represent a person, a blog, or a forum to name a few. Channels can make connections with other channels to share information with highly detailed permissions."] = "Een kanaal is jouw identiteit in dit netwerk. Het kan bijvoorbeeld een persoon, een blog of een forum vertegenwoordigen. Door met elkaar te verbinden kunnen kanalen, met behulp van uitgebreide permissies, informatie uitwisselen."; -App::$strings["or import an existing channel from another location."] = "Of importeer een bestaand kanaal vanaf een andere locatie"; -App::$strings["Delete layout?"] = "Lay-out verwijderen?"; -App::$strings["Layout Description (Optional)"] = "Lay-out-omschrijving (optioneel)"; -App::$strings["Layout Name"] = "Naam lay-out"; -App::$strings["Edit Layout"] = "Lay-out bewerken"; App::$strings["Website:"] = "Website:"; App::$strings["Remote Channel [%s] (not yet known on this site)"] = "Kanaal op afstand [%s] (nog niet op deze hub bekend)"; App::$strings["Rating (this information is public)"] = "Beoordeling (deze informatie is openbaar)"; App::$strings["Optionally explain your rating (this information is public)"] = "Verklaar jouw beoordeling (niet verplicht, deze informatie is openbaar)"; -App::$strings["Page Title"] = "Paginatitel"; -App::$strings["Delete webpage?"] = "Webpagina verwijderen?"; -App::$strings["Page link title"] = "Titel van paginalink"; -App::$strings["Edit Webpage"] = "Webpagina bewerken"; -App::$strings["Block Name"] = "Bloknaam"; -App::$strings["Block Title"] = "Bloktitel"; App::$strings["No ratings"] = "Geen beoordelingen"; App::$strings["Rating: "] = "Beoordeling: "; App::$strings["Website: "] = "Website: "; App::$strings["Description: "] = "Omschrijving: "; -App::$strings["Calendar entries imported."] = "Agenda-items geïmporteerd."; -App::$strings["No calendar entries found."] = "Geen agenda-items gevonden."; -App::$strings["Event can not end before it has started."] = "Gebeurtenis kan niet eindigen voordat het is begonnen"; -App::$strings["Unable to generate preview."] = "Niet in staat om voorvertoning te genereren"; -App::$strings["Event title and start time are required."] = "Titel en begintijd van gebeurtenis zijn vereist."; -App::$strings["Event not found."] = "Gebeurtenis niet gevonden"; -App::$strings["Edit event title"] = "Titel bewerken"; -App::$strings["Event title"] = "Titel"; -App::$strings["Categories (comma-separated list)"] = "Categorieën (door komma's gescheiden lijst)"; -App::$strings["Edit Category"] = "Categorie"; -App::$strings["Category"] = "Categorie"; -App::$strings["Edit start date and time"] = "Begindatum en -tijd bewerken"; -App::$strings["Start date and time"] = "Begindatum en -tijd"; -App::$strings["Finish date and time are not known or not relevant"] = "Einddatum en -tijd zijn niet bekend of niet van toepassing"; -App::$strings["Edit finish date and time"] = "Einddatum en -tijd bewerken"; -App::$strings["Finish date and time"] = "Einddatum en -tijd"; -App::$strings["Adjust for viewer timezone"] = "Aanpassen aan de tijdzone van wie deze gebeurtenis bekijkt"; -App::$strings["Important for events that happen in a particular place. Not practical for global holidays."] = "Belangrijk voor gebeurtenissen die op een bepaalde locatie plaatsvinden. Niet praktisch voor wereldwijde feestdagen."; -App::$strings["Edit Description"] = "Omschrijving bewerken"; -App::$strings["Edit Location"] = "Locatie bewerken"; -App::$strings["Share this event"] = "Deel deze gebeurtenis"; -App::$strings["Advanced Options"] = "Geavanceerde opties"; -App::$strings["Edit event"] = "Gebeurtenis bewerken"; -App::$strings["Delete event"] = "Gebeurtenis verwijderen"; -App::$strings["calendar"] = "agenda"; -App::$strings["Event removed"] = "Gebeurtenis verwijderd"; -App::$strings["Failed to remove event"] = "Verwijderen gebeurtenis mislukt"; App::$strings["Select a bookmark folder"] = "Kies een bladwijzermap"; App::$strings["Save Bookmark"] = "Bladwijzer opslaan"; App::$strings["URL of bookmark"] = "URL van bladwijzer"; App::$strings["Or enter new bookmark folder name"] = "Of geef de naam op van een nieuwe bladwijzermap"; -App::$strings["Share content from Firefox to \$Projectname"] = "Deel webpagina's vanuit Firefox met "; -App::$strings["Activate the Firefox \$Projectname provider"] = "Activeer de \$Projectname-service in Firefox"; App::$strings["Maximum daily site registrations exceeded. Please try again tomorrow."] = "Maximum toegestane dagelijkse registraties op deze \$Projectname-hub bereikt. Probeer het morgen (UTC) nogmaals."; App::$strings["Please indicate acceptance of the Terms of Service. Registration failed."] = "Registratie mislukt. De gebruiksvoorwaarden dienen wel geaccepteerd te worden."; App::$strings["Passwords do not match."] = "Wachtwoorden komen niet met elkaar overeen."; @@ -1712,24 +1069,9 @@ App::$strings["Please enter your invitation code"] = "Vul jouw uitnodigingscode App::$strings["no"] = "Nee"; App::$strings["yes"] = "Ja"; App::$strings["Membership on this site is by invitation only."] = "Registreren op deze \$Projectname-hub kan alleen op uitnodiging."; +App::$strings["Register"] = "Registreren"; App::$strings["Proceed to create your first channel"] = "Volgende stap: aanmaken van jouw eerste kanaal"; App::$strings["Please login."] = "Inloggen."; -App::$strings["- select -"] = "- kies map -"; -App::$strings["Invalid request identifier."] = "Ongeldige verzoek identificator (request identifier)"; -App::$strings["Discard"] = "Annuleren"; -App::$strings["No more system notifications."] = "Geen systeemnotificaties meer."; -App::$strings["System Notifications"] = "Systeemnotificaties"; -App::$strings["Permission Denied."] = "Toegang geweigerd"; -App::$strings["File not found."] = "Bestand niet gevonden."; -App::$strings["Edit file permissions"] = "Bestandsrechten bewerken"; -App::$strings["Set/edit permissions"] = "Rechten instellen/bewerken"; -App::$strings["Include all files and sub folders"] = "Toepassen op alle bestanden en submappen"; -App::$strings["Return to file list"] = "Terugkeren naar bestandlijst "; -App::$strings["Copy/paste this code to attach file to a post"] = "Kopieer/plak deze code om het bestand aan een bericht te koppelen"; -App::$strings["Copy/paste this URL to link file from a web page"] = "Kopieer/plak deze URL om het bestand aan een externe webpagina te koppelen"; -App::$strings["Share this file"] = "Dit bestand delen"; -App::$strings["Show URL to this file"] = "Toon URL van dit bestand"; -App::$strings["Notify your contacts about this file"] = "Jouw connecties over dit bestand berichten"; App::$strings["Account removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een account is niet toegestaan binnen 48 uur nadat het wachtwoord is veranderd."; App::$strings["Remove This Account"] = "Verwijder dit account"; App::$strings["WARNING: "] = "WAARSCHUWING: "; @@ -1739,45 +1081,24 @@ App::$strings["Please enter your password for verification:"] = "Vul je wachtwoo App::$strings["Remove this account, all its channels and all its channel clones from the network"] = "Dit account, al zijn kanalen en alle klonen van zijn kanalen uit het \$Projectname-netwerk verwijderen"; App::$strings["By default only the instances of the channels located on this hub will be removed from the network"] = "Standaard worden alleen de kanalen die zich op deze hub bevinden uit het \$Projectname-netwerk verwijderd"; App::$strings["Remove Account"] = "Account verwijderen"; -App::$strings["Channel added."] = "Kanaal toegevoegd."; App::$strings["Channel removals are not allowed within 48 hours of changing the account password."] = "Het verwijderen van een kanaal is niet toegestaan binnen 48 uur nadat het wachtwoord van het account is veranderd."; App::$strings["Remove This Channel"] = "Verwijder dit kanaal"; App::$strings["This channel will be completely removed from the network. "] = "Dit kanaal wordt volledig uit het \$Projectname-netwerk verwijderd."; App::$strings["Remove this channel and all its clones from the network"] = "Dit kanaal en alle klonen hiervan uit het \$Projectname-netwerk verwijderen"; App::$strings["By default only the instance of the channel located on this hub will be removed from the network"] = "Standaard wordt alleen het kanaal dat zich op deze hub bevindt uit het \$Projectname-netwerk verwijderd"; App::$strings["Remove Channel"] = "Kanaal verwijderen"; -App::$strings["Contact not found."] = "Contact niet gevonden"; -App::$strings["Friend suggestion sent."] = "Kanaalvoorstel verzonden."; -App::$strings["Suggest Friends"] = "Kanalen voorstellen"; -App::$strings["Suggest a friend for %s"] = "Stel een kanaal voor aan %s"; App::$strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "We hebben een probleem ontdekt tijdens het inloggen met de OpenID die je hebt verstrekt. Controleer de ID op typefouten."; App::$strings["The error message was:"] = "Het foutbericht was:"; App::$strings["Authentication failed."] = "Authenticatie mislukt."; App::$strings["Remote Authentication"] = "Authenticatie op afstand"; App::$strings["Enter your channel address (e.g. channel@example.com)"] = "Vul jouw kanaaladres in (bijv. channel@example.com)"; App::$strings["Authenticate"] = "Authenticeren"; -App::$strings["Documentation Search"] = "Zoek documentatie"; -App::$strings["Help:"] = "Hulp:"; -App::$strings["\$Projectname Documentation"] = "\$Projectname-documentatie"; -App::$strings["Privacy group created."] = "Privacygroep aangemaakt"; -App::$strings["Could not create privacy group."] = "Kon privacygroep niet aanmaken"; -App::$strings["Privacy group updated."] = "Privacygroep bijgewerkt"; -App::$strings["Create a group of channels."] = "Privacygroep met kanalen aanmaken"; -App::$strings["Privacy group name: "] = "Naam privacygroep: "; -App::$strings["Members are visible to other channels"] = "Kanalen in deze privacygroep zijn zichtbaar voor andere kanalen"; -App::$strings["Privacy group removed."] = "Privacygroep verwijderd."; -App::$strings["Unable to remove privacy group."] = "Verwijderen privacygroep mislukt"; -App::$strings["Privacy group editor"] = "Privacygroep bewerken"; -App::$strings["Members"] = "Kanalen"; -App::$strings["All Connected Channels"] = "Alle kanaalconnecties"; -App::$strings["Click on a channel to add or remove."] = "Klik op een kanaal om deze toe te voegen of te verwijderen."; App::$strings["Items tagged with: %s"] = "Items getagd met %s"; App::$strings["Search results for: %s"] = "Zoekresultaten voor %s"; -App::$strings["\$Projectname"] = "\$Projectname"; -App::$strings["Welcome to %s"] = "Welkom op %s"; App::$strings["No service class restrictions found."] = "Geen abonnementsbeperkingen gevonden."; App::$strings["Name is required"] = "Naam is vereist"; App::$strings["Key and Secret are required"] = "Key en secret zijn vereist"; +App::$strings["Update"] = "Bijwerken"; App::$strings["Not valid email."] = "Geen geldig e-mailadres."; App::$strings["Protected email address. Cannot change to that email."] = "Beschermd e-mailadres. Kan dat e-mailadres niet gebruiken."; App::$strings["System failure storing new email. Please try again."] = "Systeemfout opslaan van nieuwe e-mail. Probeer het nog een keer."; @@ -1849,6 +1170,7 @@ App::$strings["Allow us to suggest you as a potential friend to new members?"] = App::$strings["Your channel address is"] = "Jouw kanaaladres is"; App::$strings["Channel Settings"] = "Kanaal-instellingen"; App::$strings["Basic Settings"] = "Basis-instellingen"; +App::$strings["Full Name:"] = "Volledige naam:"; App::$strings["Your Timezone:"] = "Jouw tijdzone:"; App::$strings["Default Post Location:"] = "Standaardlocatie bericht:"; App::$strings["Geographical location to display on your posts"] = "Geografische locatie die bij het bericht moet worden vermeld"; @@ -1917,21 +1239,6 @@ App::$strings["Personal menu to display in your channel pages"] = "Persoonlijk m App::$strings["Remove this channel."] = "Verwijder dit kanaal."; App::$strings["Firefox Share \$Projectname provider"] = "\$Projectname-service voor Firefox Share"; App::$strings["Start calendar week on monday"] = "Begin in de agenda de week op maandag"; -App::$strings["First Name"] = "Voornaam"; -App::$strings["Last Name"] = "Achternaam"; -App::$strings["Nickname"] = "Bijnaam"; -App::$strings["Full Name"] = "Volledige naam"; -App::$strings["Profile Photo 16px"] = "Profielfoto 16px"; -App::$strings["Profile Photo 32px"] = "Profielfoto 32px"; -App::$strings["Profile Photo 48px"] = "Profielfoto 48px"; -App::$strings["Profile Photo 64px"] = "Profielfoto 64px"; -App::$strings["Profile Photo 80px"] = "Profielfoto 80px"; -App::$strings["Profile Photo 128px"] = "Profielfoto 128px"; -App::$strings["Timezone"] = "Tijdzone"; -App::$strings["Birth Year"] = "Geboortejaar"; -App::$strings["Birth Month"] = "Geboortemaand"; -App::$strings["Birth Day"] = "Geboortedag"; -App::$strings["Birthdate"] = "Geboortedatum"; App::$strings["\$Projectname Server - Setup"] = "\$Projectname Hub - Setup"; App::$strings["Could not connect to database."] = "Could not connect to database."; App::$strings["Could not connect to specified site URL. Possible SSL certificate or DNS issue."] = "Could not connect to specified hub URL. Possible SSL certificate or DNS issue."; @@ -2018,224 +1325,919 @@ App::$strings["The database configuration file \".htconfig.php\" could not be wr App::$strings["Errors encountered creating database tables."] = "Errors encountered creating database tables."; App::$strings["

What next

"] = "

What next

"; App::$strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "IMPORTANT: You will need to [manually] setup a scheduled task for the poller."; -App::$strings["%s element installed"] = "%s onderdeel geïnstalleerd"; -App::$strings["%s element installation failed"] = "Installatie %s-element mislukt"; -App::$strings["Your service plan only allows %d channels."] = "Jouw abonnement staat maar %d kanalen toe."; -App::$strings["Nothing to import."] = "Niets gevonden om te importeren"; -App::$strings["Unable to download data from old server"] = "Niet in staat om gegevens van de oude hub te downloaden"; -App::$strings["Imported file is empty."] = "Geïmporteerde bestand is leeg"; -App::$strings["Warning: Database versions differ by %1\$d updates."] = "Waarschuwing: database-versies lopen %1\$d updates achter."; -App::$strings["No channel. Import failed."] = "Geen kanaal. Importeren mislukt."; -App::$strings["You must be logged in to use this feature."] = "Je moet ingelogd zijn om dit onderdeel te kunnen gebruiken."; -App::$strings["Import Channel"] = "Kanaal importeren"; -App::$strings["Use this form to import an existing channel from a different server/hub. You may retrieve the channel identity from the old server/hub via the network or provide an export file."] = "Gebruik dit formulier om een bestaand kanaal te importeren van een andere hub. Je kan de kanaal-identiteit van de oude hub via het netwerk ontvangen of een exportbestand verstrekken."; -App::$strings["File to Upload"] = "Bestand om te uploaden"; -App::$strings["Or provide the old server/hub details"] = "Of vul de gegevens van de oude hub in"; -App::$strings["Your old identity address (xyz@example.com)"] = "Jouw oude kanaaladres (xyz@example.com)"; -App::$strings["Your old login email address"] = "Het e-mailadres van je oude account"; -App::$strings["Your old login password"] = "Wachtwoord van jouw oude account"; -App::$strings["For either option, please choose whether to make this hub your new primary address, or whether your old location should continue this role. You will be able to post from either location, but only one can be marked as the primary location for files, photos, and media."] = "Voor elke optie geldt dat je moet kiezen of je jouw primaire kanaaladres op deze hub wil instellen of dat jouw oude hub deze rol blijft vervullen."; -App::$strings["Make this hub my primary location"] = "Stel deze hub als mijn primaire locatie in"; -App::$strings["Import existing posts if possible (experimental - limited by available memory"] = "Importeer bestaande berichten wanneer mogelijk (experimenteel - afhankelijk van beschikbaar servergeheugen)"; -App::$strings["This process may take several minutes to complete. Please submit the form only once and leave this page open until finished."] = "Dit proces kan enkele minuten in beslag nemen. Klik maar één keer op opslaan en verlaat deze pagina niet alvorens het proces is voltooid."; -App::$strings["Import completed"] = "Importeren voltooid"; -App::$strings["Import Items"] = "Importeer items"; -App::$strings["Use this form to import existing posts and content from an export file."] = "Gebruik dit formulier om bestaande berichten en andere inhoud vanuit een exportbestand te importeren."; App::$strings["Files: shared with me"] = "Bestanden: met mij gedeeld"; App::$strings["NEW"] = "NIEUW"; App::$strings["Remove all files"] = "Verwijder alle bestanden"; App::$strings["Remove this file"] = "Verwijder dit bestand"; -App::$strings["Total invitation limit exceeded."] = "Limiet voor aantal uitnodigingen overschreden."; -App::$strings["%s : Not a valid email address."] = "%s : Geen geldig e-mailadres."; -App::$strings["Please join us on \$Projectname"] = "Uitnodiging voor \$Projectname"; -App::$strings["Invitation limit exceeded. Please contact your site administrator."] = "Limiet voor aantal uitnodigingen overschreden. Neem contact op met je hub-beheerder."; -App::$strings["%s : Message delivery failed."] = "%s: Aflevering bericht mislukt."; -App::$strings["%d message sent."] = array( - 0 => "%d bericht verzonden.", - 1 => "%d berichten verzonden.", +App::$strings["Version %s"] = "Versie %s"; +App::$strings["Installed plugins/addons/apps:"] = "Ingeschakelde plugins en apps:"; +App::$strings["No installed plugins/addons/apps"] = "Geen ingeschakelde plugins en apps"; +App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dit is een \$Projectname-hub - \$Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy."; +App::$strings["Tag: "] = "Tag: "; +App::$strings["Last background fetch: "] = "Meest recente achtergrond-fetch:"; +App::$strings["Current load average: "] = "Gemiddelde systeembelasting is nu:"; +App::$strings["Running at web location"] = "Draaiend op weblocatie"; +App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Bezoek hubzilla.org "; +App::$strings["Bug reports and issues: please visit"] = "Bugrapporten en andere kwesties: bezoek"; +App::$strings["\$projectname issues"] = "\$projectname-issues"; +App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com"; +App::$strings["Site Administrators"] = "Hubbeheerders: "; +App::$strings["Failed to create source. No channel selected."] = "Aanmaken bron mislukt. Geen kanaal geselecteerd."; +App::$strings["Source created."] = "Bron aangemaakt."; +App::$strings["Source updated."] = "Bron aangemaakt."; +App::$strings["*"] = "*"; +App::$strings["Channel Sources"] = "Kanaalbronnen"; +App::$strings["Manage remote sources of content for your channel."] = "Beheer externe bronnen met inhoud voor jouw kanaal"; +App::$strings["New Source"] = "Nieuwe bron"; +App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen."; +App::$strings["Only import content with these words (one per line)"] = "Importeer alleen inhoud met deze woorden (één per regel)"; +App::$strings["Leave blank to import all public content"] = "Laat leeg om alle openbare inhoud te importeren"; +App::$strings["Channel Name"] = "Kanaalnaam"; +App::$strings["Source not found."] = "Bron niet gevonden"; +App::$strings["Edit Source"] = "Bron bewerken"; +App::$strings["Delete Source"] = "Bron verwijderen"; +App::$strings["Source removed"] = "Bron verwijderd"; +App::$strings["Unable to remove source."] = "Verwijderen bron mislukt."; +App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s"; +App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s niet meer"; +App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer."; +App::$strings["Ignore/Hide"] = "Negeren/Verbergen"; +App::$strings["post"] = "bericht"; +App::$strings["comment"] = "reactie"; +App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s heeft het %3\$s van %2\$s getagd met %4\$s"; +App::$strings["Tag removed"] = "Tag verwijderd"; +App::$strings["Remove Item Tag"] = "Verwijder item-tag"; +App::$strings["Select a tag to remove: "] = "Kies een tag om te verwijderen"; +App::$strings["Thing updated"] = "Ding bijgewerkt"; +App::$strings["Object store: failed"] = "Opslaan van ding mislukt"; +App::$strings["Thing added"] = "Ding toegevoegd"; +App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; +App::$strings["Show Thing"] = "Ding weergeven"; +App::$strings["item not found."] = "Item niet gevonden"; +App::$strings["Edit Thing"] = "Ding bewerken"; +App::$strings["Select a profile"] = "Kies een profiel"; +App::$strings["Post an activity"] = "Plaats een bericht"; +App::$strings["Only sends to viewers of the applicable profile"] = "Toont dit alleen aan diegene die het gekozen profiel mogen zien."; +App::$strings["Name of thing e.g. something"] = "Naam van ding"; +App::$strings["URL of thing (optional)"] = "URL van ding (optioneel)"; +App::$strings["URL for photo of thing (optional)"] = "URL voor foto van ding (optioneel)"; +App::$strings["Add Thing to your Profile"] = "Ding aan je profiel toevoegen"; +App::$strings["Export Channel"] = "Kanaal exporteren"; +App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Exporteer de basisinformatie van jouw kanaal naar een bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal."; +App::$strings["Export Content"] = "Inhoud exporteren"; +App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Exporteer informatie en recente inhoud van jouw kanaal naar een JSON-back-up, wat kan worden gebruikt om jouw kanaal te herstellen of te importeren op een andere hub. Dit slaat al jouw connecties, permissies, profielgegevens en enkele maanden aan inhoud van jouw kanaal op. Dit bestand kan ZEER groot worden. Wees geduldig - het kan enkele minuten duren voordat de download begint."; +App::$strings["Export your posts from a given year."] = "Exporteer jouw berichten uit een bepaald jaar."; +App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Je kan ook berichten en conversaties uit een bepaald jaar of van een bepaalde maand exporteren. Verander de datum in de adresbalk van jouw webbrowser om andere jaren en maanden te selecteren. Wanneer het exporteren mislukt (waarschijnlijk door een gebrek aan beschikbaar servergeheugen), probeer het dan nogmaals met een beperkter tijdvak."; +App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Bezoek %2\$s om alle berichten van bijvoorbeeld dit jaar te selecteren. "; +App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Bezoek %2\$s om alle berichten van bijvoorbeeld januari dit jaar te selecteren."; +App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Deze back-up-bestanden kunnen geïmporteerd of hersteld worden door op jouw hub en met jouw kanaal %2\$s te bezoeken. Voor het beste resultaat kan je de bestanden in chronologische volgorde importeren of herstellen."; +App::$strings["No connections."] = "Geen connecties."; +App::$strings["Visit %s's profile [%s]"] = "Bezoek het profiel van %s [%s]"; +App::$strings["View Connections"] = "Connecties weergeven"; +App::$strings["Source of Item"] = "Bron van item"; +App::$strings["Webpages"] = "Webpagina's"; +App::$strings["Actions"] = "Acties"; +App::$strings["Page Link"] = "Paginalink"; +App::$strings["Page Title"] = "Paginatitel"; +App::$strings["Xchan Lookup"] = "Xchan opzoeken"; +App::$strings["Lookup xchan beginning with (or webbie): "] = "Zoek een xchan (of webbie) die begint met:"; +App::$strings["No username found in import file."] = "Geen gebruikersnaam in het importbestand gevonden."; +App::$strings["Unable to create a unique channel address. Import failed."] = "Niet in staat om een uniek kanaaladres aan te maken. Importeren is mislukt."; +App::$strings["Cannot locate DNS info for database server '%s'"] = "Kan DNS-informatie voor databaseserver '%s' niet vinden"; +App::$strings["Unable to obtain identity information from database"] = "Niet in staat om identiteitsinformatie uit de database te verkrijgen"; +App::$strings["Empty name"] = "Ontbrekende naam"; +App::$strings["Name too long"] = "Naam te lang"; +App::$strings["No account identifier"] = "Geen account-identificator"; +App::$strings["Nickname is required."] = "Bijnaam is verplicht"; +App::$strings["Reserved nickname. Please choose another."] = "Deze naam is gereserveerd. Kies een andere."; +App::$strings["Nickname has unsupported characters or is already being used on this site."] = "Deze naam heeft niet ondersteunde karakters of is al op deze hub in gebruik."; +App::$strings["Unable to retrieve created identity"] = "Niet in staat om aangemaakte identiteit te vinden"; +App::$strings["Default Profile"] = "Standaardprofiel"; +App::$strings["Requested channel is not available."] = "Opgevraagd kanaal is niet beschikbaar."; +App::$strings["Create New Profile"] = "Nieuw profiel aanmaken"; +App::$strings["Edit Profile"] = "Profiel bewerken"; +App::$strings["Visible to everybody"] = "Voor iedereen zichtbaar"; +App::$strings["Gender:"] = "Geslacht:"; +App::$strings["Status:"] = "Status:"; +App::$strings["Homepage:"] = "Homepagina:"; +App::$strings["Online Now"] = "Nu online"; +App::$strings["F d"] = "d F"; +App::$strings["Birthday Reminders"] = "Verjaardagsherinneringen"; +App::$strings["Birthdays this week:"] = "Verjaardagen deze week:"; +App::$strings["[No description]"] = "[Geen omschrijving]"; +App::$strings["Event Reminders"] = "Herinneringen"; +App::$strings["Events this week:"] = "Gebeurtenissen deze week:"; +App::$strings["Like this channel"] = "Vind dit kanaal leuk"; +App::$strings["j F, Y"] = "F j Y"; +App::$strings["j F"] = "F j"; +App::$strings["Birthday:"] = "Geboortedatum:"; +App::$strings["for %1\$d %2\$s"] = "voor %1\$d %2\$s"; +App::$strings["Sexual Preference:"] = "Seksuele voorkeur:"; +App::$strings["Tags:"] = "Tags:"; +App::$strings["Political Views:"] = "Politieke overtuigingen:"; +App::$strings["Religion:"] = "Religie:"; +App::$strings["Hobbies/Interests:"] = "Hobby's/interesses:"; +App::$strings["Likes:"] = "Houdt van:"; +App::$strings["Dislikes:"] = "Houdt niet van:"; +App::$strings["Contact information and Social Networks:"] = "Contactinformatie en sociale netwerken:"; +App::$strings["My other channels:"] = "Mijn andere kanalen"; +App::$strings["Musical interests:"] = "Muzikale interesses:"; +App::$strings["Books, literature:"] = "Boeken, literatuur:"; +App::$strings["Television:"] = "Televisie:"; +App::$strings["Film/dance/culture/entertainment:"] = "Films/dansen/cultuur/vermaak:"; +App::$strings["Love/Romance:"] = "Liefde/romantiek:"; +App::$strings["Work/employment:"] = "Werk/beroep:"; +App::$strings["School/education:"] = "School/opleiding:"; +App::$strings["Like this thing"] = "Vind dit ding leuk"; +App::$strings["created a new post"] = "maakte een nieuw bericht aan"; +App::$strings["commented on %s's post"] = "gaf een reactie op een bericht van %s"; +App::$strings["Private Message"] = "Niet voor iedereen zichtbaar"; +App::$strings["Select"] = "Kies"; +App::$strings["Save to Folder"] = "In map opslaan"; +App::$strings["I will attend"] = "Aanwezig"; +App::$strings["I will not attend"] = "Niet aanwezig"; +App::$strings["I might attend"] = "Mogelijk aanwezig"; +App::$strings["I agree"] = "Eens"; +App::$strings["I disagree"] = "Oneens"; +App::$strings["I abstain"] = "Onthouding"; +App::$strings["Add Star"] = "Ster toevoegen"; +App::$strings["Remove Star"] = "Ster verwijderen"; +App::$strings["Toggle Star Status"] = "Ster toevoegen of verwijderen"; +App::$strings["starred"] = "met ster"; +App::$strings["Message signature validated"] = "Berichtkenmerk gevalideerd"; +App::$strings["Message signature incorrect"] = "Berichtkenmerk onjuist"; +App::$strings["Add Tag"] = "Tag toevoegen"; +App::$strings["like"] = "vind dit leuk"; +App::$strings["dislike"] = "vind dit niet leuk"; +App::$strings["Share This"] = "Delen"; +App::$strings["share"] = "delen"; +App::$strings["Delivery Report"] = "Afleveringsrapport"; +App::$strings["%d comment"] = array( + 0 => "%d reactie", + 1 => "%d reacties weergeven", +); +App::$strings["View %s's profile - %s"] = "Profiel van %s bekijken - %s"; +App::$strings["to"] = "aan"; +App::$strings["via"] = "via"; +App::$strings["Wall-to-Wall"] = "Kanaal-naar-kanaal"; +App::$strings["via Wall-To-Wall:"] = "via kanaal-naar-kanaal"; +App::$strings["from %s"] = "van %s"; +App::$strings["last edited: %s"] = "laatst bewerkt: %s"; +App::$strings["Expires: %s"] = "Verloopt: %s"; +App::$strings["Save Bookmarks"] = "Bladwijzers opslaan"; +App::$strings["Add to Calendar"] = "Aan agenda toevoegen"; +App::$strings["Mark all seen"] = "Markeer alles als bekeken"; +App::$strings["[+] show all"] = "[+] alle"; +App::$strings["Image"] = "Afbeelding"; +App::$strings["Insert Link"] = "Link invoegen"; +App::$strings["Video"] = "Video"; +App::$strings["Not a valid email address"] = "Geen geldig e-mailadres"; +App::$strings["Your email domain is not among those allowed on this site"] = "Jouw e-maildomein is op deze hub niet toegestaan"; +App::$strings["Your email address is already registered at this site."] = "Jouw e-mailadres is al op deze hub geregistreerd."; +App::$strings["An invitation is required."] = "Een uitnodiging is vereist"; +App::$strings["Invitation could not be verified."] = "Uitnodiging kon niet geverifieerd worden"; +App::$strings["Please enter the required information."] = "Vul de vereiste informatie in."; +App::$strings["Failed to store account information."] = "Account-informatie kon niet opgeslagen worden."; +App::$strings["Registration confirmation for %s"] = "Registratiebevestiging voor %s"; +App::$strings["Registration request at %s"] = "Registratiebevestiging voor %s"; +App::$strings["Administrator"] = "Beheerder"; +App::$strings["your registration password"] = "jouw registratiewachtwoord"; +App::$strings["Registration details for %s"] = "Registratiegegevens voor %s"; +App::$strings["Account approved."] = "Account goedgekeurd"; +App::$strings["Registration revoked for %s"] = "Registratie ingetrokken voor %s"; +App::$strings["Account verified. Please login."] = "Account is geverifieerd. Je kan inloggen."; +App::$strings["Click here to upgrade."] = "Klik hier om te upgraden."; +App::$strings["This action exceeds the limits set by your subscription plan."] = "Deze handeling overschrijdt de beperkingen die voor jouw abonnement gelden."; +App::$strings["This action is not available under your subscription plan."] = "Deze handeling is niet mogelijk met jouw abonnement."; +App::$strings["Currently Male"] = "Momenteel man"; +App::$strings["Currently Female"] = "Momenteel vrouw"; +App::$strings["Mostly Male"] = "Voornamelijk man"; +App::$strings["Mostly Female"] = "Voornamelijk vrouw"; +App::$strings["Transgender"] = "Transgender"; +App::$strings["Intersex"] = "Interseksueel"; +App::$strings["Transsexual"] = "Transseksueel"; +App::$strings["Hermaphrodite"] = "Hermafrodiet"; +App::$strings["Neuter"] = "Genderneutraal"; +App::$strings["Non-specific"] = "Niet gespecificeerd"; +App::$strings["Other"] = "Anders"; +App::$strings["Undecided"] = "Nog niet beslist"; +App::$strings["Males"] = "Mannen"; +App::$strings["Females"] = "Vrouwen"; +App::$strings["Gay"] = "Homoseksueel"; +App::$strings["Lesbian"] = "Lesbisch"; +App::$strings["No Preference"] = "Geen voorkeur"; +App::$strings["Bisexual"] = "Biseksueel"; +App::$strings["Autosexual"] = "Autoseksueel"; +App::$strings["Abstinent"] = "Seksuele onthouding"; +App::$strings["Virgin"] = "Maagd"; +App::$strings["Deviant"] = "Afwijkend"; +App::$strings["Fetish"] = "Fetisj"; +App::$strings["Oodles"] = "Veel"; +App::$strings["Nonsexual"] = "Aseksueel"; +App::$strings["Single"] = "Alleen"; +App::$strings["Lonely"] = "Eenzaam"; +App::$strings["Available"] = "Beschikbaar"; +App::$strings["Unavailable"] = "Niet beschikbaar"; +App::$strings["Has crush"] = "Heeft een oogje op iemand"; +App::$strings["Infatuated"] = "Smoorverliefd"; +App::$strings["Dating"] = "Aan het daten"; +App::$strings["Unfaithful"] = "Ontrouw"; +App::$strings["Sex Addict"] = "Seksverslaafd"; +App::$strings["Friends/Benefits"] = "Vriendschap plus"; +App::$strings["Casual"] = "Ongebonden/vluchtig"; +App::$strings["Engaged"] = "Verloofd"; +App::$strings["Married"] = "Getrouwd"; +App::$strings["Imaginarily married"] = "Denkbeeldig getrouwd"; +App::$strings["Partners"] = "Partners"; +App::$strings["Cohabiting"] = "Samenwonend"; +App::$strings["Common law"] = "Common-law-huwelijk"; +App::$strings["Happy"] = "Gelukkig"; +App::$strings["Not looking"] = "Niet op zoek"; +App::$strings["Swinger"] = "Swinger"; +App::$strings["Betrayed"] = "Verraden"; +App::$strings["Separated"] = "Uit elkaar"; +App::$strings["Unstable"] = "Onstabiel"; +App::$strings["Divorced"] = "Gescheiden"; +App::$strings["Imaginarily divorced"] = "Denkbeeldig gescheiden"; +App::$strings["Widowed"] = "Weduwnaar/weduwe"; +App::$strings["Uncertain"] = "Onzeker"; +App::$strings["It's complicated"] = "Het is ingewikkeld"; +App::$strings["Don't care"] = "Maakt mij niks uit"; +App::$strings["Ask me"] = "Vraag het me"; +App::$strings["Visible to your default audience"] = "Voor iedereen zichtbaar, mits niet anders ingesteld"; +App::$strings["Show"] = "Tonen"; +App::$strings["Don't show"] = "Niet tonen"; +App::$strings["Other networks and post services"] = "Andere netwerken en diensten"; +App::$strings[" and "] = " en "; +App::$strings["public profile"] = "openbaar profiel"; +App::$strings["%1\$s changed %2\$s to “%3\$s”"] = "%1\$s veranderde %2\$s naar “%3\$s”"; +App::$strings["Visit %1\$s's %2\$s"] = "Bezoek het %2\$s van %1\$s"; +App::$strings["%1\$s has an updated %2\$s, changing %3\$s."] = "%1\$s heeft een aangepaste %2\$s, %3\$s veranderd."; +App::$strings["Public Timeline"] = "Openbare tijdlijn"; +App::$strings["Site Admin"] = "Hubbeheerder"; +App::$strings["Bookmarks"] = "Bladwijzers"; +App::$strings["Address Book"] = "Connecties"; +App::$strings["Login"] = "Inloggen"; +App::$strings["Grid"] = "Grid"; +App::$strings["Channel Home"] = "Jouw kanaal"; +App::$strings["Events"] = "Agenda"; +App::$strings["Directory"] = "Kanalengids"; +App::$strings["Mail"] = "Privéberichten"; +App::$strings["Chat"] = "Chatten"; +App::$strings["Probe"] = "Onderzoeken"; +App::$strings["Suggest"] = "Voorstellen"; +App::$strings["Random Channel"] = "Willekeurig kanaal"; +App::$strings["Invite"] = "Uitnodigen "; +App::$strings["Features"] = "Extra functies"; +App::$strings["Post"] = "Bericht"; +App::$strings["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["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:"; +App::$strings["View in context"] = "In context bekijken"; +App::$strings["remove"] = "verwijderen"; +App::$strings["Loading..."] = "Aan het laden..."; +App::$strings["Delete Selected Items"] = "Verwijder de geselecteerde items"; +App::$strings["View Source"] = "Bron weergeven"; +App::$strings["Follow Thread"] = "Conversatie volgen"; +App::$strings["Unfollow Thread"] = "Conversatie niet meer volgen"; +App::$strings["Activity/Posts"] = "Activiteit/berichten connectie"; +App::$strings["Edit Connection"] = "Connectie bewerken"; +App::$strings["Message"] = "Bericht"; +App::$strings["%s likes this."] = "%s vindt dit leuk."; +App::$strings["%s doesn't like this."] = "%s vindt dit niet leuk."; +App::$strings["%2\$d people like this."] = array( + 0 => "%2\$d persoon vindt dit leuk.", + 1 => "%2\$d personen vinden dit leuk.", +); +App::$strings["%2\$d people don't like this."] = array( + 0 => "%2\$d persoon vindt dit niet leuk.", + 1 => "%2\$d personen vinden dit niet leuk.", +); +App::$strings["and"] = "en"; +App::$strings[", and %d other people"] = array( + 0 => ", en %d ander persoon", + 1 => ", en %d andere personen", +); +App::$strings["%s like this."] = "%s vinden dit leuk."; +App::$strings["%s don't like this."] = "%s vinden dit niet leuk."; +App::$strings["Visible to everybody"] = "Voor iedereen zichtbaar"; +App::$strings["Please enter a video link/URL:"] = "Vul een videolink/URL in:"; +App::$strings["Please enter an audio link/URL:"] = "Vul een audiolink/URL in:"; +App::$strings["Tag term:"] = "Tag:"; +App::$strings["Where are you right now?"] = "Waar bevind je je op dit moment?"; +App::$strings["Page link name"] = "Linknaam pagina"; +App::$strings["Post as"] = "Bericht plaatsen als"; +App::$strings["upload photo"] = "foto uploaden"; +App::$strings["attach file"] = "bestand toevoegen"; +App::$strings["web link"] = "Weblink"; +App::$strings["Insert video link"] = "Videolink invoegen"; +App::$strings["video link"] = "videolink"; +App::$strings["Insert audio link"] = "Audiolink invoegen"; +App::$strings["audio link"] = "audiolink"; +App::$strings["set location"] = "locatie instellen"; +App::$strings["clear location"] = "locatie wissen"; +App::$strings["permissions"] = "permissies"; +App::$strings["Set publish date"] = "Publicatiedatum instellen"; +App::$strings["Discover"] = "Ontdekken"; +App::$strings["Imported public streams"] = "Openbare streams importeren"; +App::$strings["Commented Order"] = "Nieuwe reacties bovenaan"; +App::$strings["Sort by Comment Date"] = "Berichten met nieuwe reacties bovenaan"; +App::$strings["Posted Order"] = "Nieuwe berichten bovenaan"; +App::$strings["Sort by Post Date"] = "Nieuwe berichten bovenaan"; +App::$strings["Posts that mention or involve you"] = "Alleen berichten die jou vermelden of waar je op een andere manier bij betrokken bent"; +App::$strings["Activity Stream - by date"] = "Activiteitenstroom - volgens datum"; +App::$strings["Starred"] = "Met ster"; +App::$strings["Favourite Posts"] = "Favoriete berichten"; +App::$strings["Spam"] = "Spam"; +App::$strings["Posts flagged as SPAM"] = "Berichten gemarkeerd als SPAM"; +App::$strings["Status Messages and Posts"] = "Berichten in dit kanaal"; +App::$strings["About"] = "Over"; +App::$strings["Profile Details"] = "Profiel"; +App::$strings["Photo Albums"] = "Fotoalbums"; +App::$strings["Files and Storage"] = "Bestanden en opslagruimte"; +App::$strings["Chatrooms"] = "Chatkanalen"; +App::$strings["Saved Bookmarks"] = "Opgeslagen bladwijzers"; +App::$strings["Manage Webpages"] = "Webpagina's beheren"; +App::$strings["__ctx:noun__ Attending"] = array( + 0 => "aanwezig", + 1 => "aanwezig", ); -App::$strings["You have no more invitations available"] = "Je hebt geen uitnodigingen meer beschikbaar"; -App::$strings["Send invitations"] = "Uitnodigingen verzenden"; -App::$strings["Enter email addresses, one per line:"] = "Voer e-mailadressen in, één per regel:"; -App::$strings["Your message:"] = "Jouw bericht:"; -App::$strings["Please join my community on \$Projectname."] = "Hierbij nodig ik je uit om mij, en andere vrienden en kennissen, op \$Projectname te vergezellen. Lees meer over \$Projectname op http://hubzilla.org"; -App::$strings["You will need to supply this invitation code:"] = "Je moet deze uitnodigingscode opgeven:"; -App::$strings["1. Register at any \$Projectname location (they are all inter-connected)"] = "1. Registreer je op een willekeurige \$Projectname-hub (ze zijn allemaal onderling met elkaar verbonden):"; -App::$strings["2. Enter my \$Projectname network address into the site searchbar."] = "2. Nadat je bent ingelogd en een kanaal hebt aangemaakt kan je mijn \$Projectname-kanaaladres in het zoekveld invullen:"; -App::$strings["or visit"] = "of bezoek"; -App::$strings["3. Click [Connect]"] = "3. Klik op [+ Verbinden]"; -App::$strings["Version %s"] = "Versie %s"; -App::$strings["Installed plugins/addons/apps:"] = "Ingeschakelde plugins en apps:"; -App::$strings["No installed plugins/addons/apps"] = "Geen ingeschakelde plugins en apps"; -App::$strings["This is a hub of \$Projectname - a global cooperative network of decentralized privacy enhanced websites."] = "Dit is een \$Projectname-hub - \$Projectname is een wereldwijd coöperatief netwerk van gedecentraliseerde websites (hubs) met verbeterde privacy."; -App::$strings["Tag: "] = "Tag: "; -App::$strings["Last background fetch: "] = "Meest recente achtergrond-fetch:"; -App::$strings["Current load average: "] = "Gemiddelde systeembelasting is nu:"; -App::$strings["Running at web location"] = "Draaiend op weblocatie"; -App::$strings["Please visit hubzilla.org to learn more about \$Projectname."] = "Bezoek hubzilla.org "; -App::$strings["Bug reports and issues: please visit"] = "Bugrapporten en andere kwesties: bezoek"; -App::$strings["\$projectname issues"] = "\$projectname-issues"; -App::$strings["Suggestions, praise, etc. - please email \"redmatrix\" at librelist - dot com"] = "Voorstellen, lofbetuigingen, enz. - e-mail \"redmatrix\" at librelist - dot com"; -App::$strings["Site Administrators"] = "Hubbeheerders: "; -App::$strings["Unable to locate original post."] = "Niet in staat om de originele locatie van het bericht te vinden. "; -App::$strings["Empty post discarded."] = "Leeg bericht geannuleerd"; -App::$strings["Executable content type not permitted to this channel."] = "Uitvoerbare bestanden zijn niet toegestaan op dit kanaal."; -App::$strings["Duplicate post suppressed."] = "Dubbel bericht tegengehouden."; -App::$strings["System error. Post not saved."] = "Systeemfout. Bericht niet opgeslagen."; -App::$strings["Unable to obtain post information from database."] = "Niet in staat om informatie over dit bericht uit de database te verkrijgen."; -App::$strings["You have reached your limit of %1$.0f top level posts."] = "Je hebt jouw limiet van %1$.0f berichten bereikt."; -App::$strings["You have reached your limit of %1$.0f webpages."] = "Je hebt jouw limiet van %1$.0f webpagina's bereikt."; -App::$strings["Comanche page description language help"] = "Hulp met de paginabeschrijvingstaal Comanche"; -App::$strings["Layout Description"] = "Lay-out-omschrijving"; -App::$strings["Download PDL file"] = "Download PDL-bestand"; -App::$strings["Like/Dislike"] = "Leuk/niet leuk"; -App::$strings["This action is restricted to members."] = "Deze actie kan alleen door \$Projectname-leden worden uitgevoerd."; -App::$strings["Please login with your \$Projectname ID or register as a new \$Projectname member to continue."] = "Je dient in te loggen met je \$Projectname-account of een nieuw \$Projectname-account aan te maken om verder te kunnen gaan."; -App::$strings["Invalid request."] = "Ongeldig verzoek"; -App::$strings["thing"] = "ding"; -App::$strings["Channel unavailable."] = "Kanaal niet beschikbaar."; -App::$strings["Previous action reversed."] = "Vorige actie omgedraaid"; -App::$strings["%1\$s agrees with %2\$s's %3\$s"] = "%1\$s is het eens met %2\$s's %3\$s"; -App::$strings["%1\$s doesn't agree with %2\$s's %3\$s"] = "%1\$s is het niet eens met %2\$s's %3\$s"; -App::$strings["%1\$s abstains from a decision on %2\$s's %3\$s"] = "%1\$s onthoudt zich van een besluit over %2\$s's %3\$s"; -App::$strings["%1\$s is attending %2\$s's %3\$s"] = "%1\$s is aanwezig op %2\$s's %3\$s"; -App::$strings["%1\$s is not attending %2\$s's %3\$s"] = "%1\$s is niet aanwezig op %2\$s's %3\$s"; -App::$strings["%1\$s may attend %2\$s's %3\$s"] = "%1\$s is mogelijk aanwezig op %2\$s's %3\$s"; -App::$strings["Action completed."] = "Actie voltooid"; -App::$strings["Thank you."] = "Bedankt"; -App::$strings["Location not found."] = "Locatie niet gevonden."; -App::$strings["Location lookup failed."] = "Opzoeken locatie mislukt"; -App::$strings["Please select another location to become primary before removing the primary location."] = "Kies eerst een andere primaire locatie alvorens de huidige primaire locatie te verwijderen."; -App::$strings["Syncing locations"] = "Locaties synchronizeren"; -App::$strings["No locations found."] = "Geen locaties gevonden."; -App::$strings["Manage Channel Locations"] = "Kanaallocaties beheren"; -App::$strings["Primary"] = "Primair"; -App::$strings["Drop"] = "Verwijderen"; -App::$strings["Sync Now"] = "Nu synchroniseren"; -App::$strings["Please wait several minutes between consecutive operations."] = "Wacht enkele minuten tussen opeenvolgende handelingen."; -App::$strings["When possible, drop a location by logging into that website/hub and removing your channel."] = "Wij adviseren, wanneer dit (nog) mogelijk is, de locatie te verwijderen door op de hub van de kloon in te loggen en het kanaal daar te verwijderen."; -App::$strings["Use this form to drop the location if the hub is no longer operating."] = "Gebruik dit formulier om de locatie te verwijderen wanneer de hub van de kloon niet meer operationeel is."; -App::$strings["Failed to create source. No channel selected."] = "Aanmaken bron mislukt. Geen kanaal geselecteerd."; -App::$strings["Source created."] = "Bron aangemaakt."; -App::$strings["Source updated."] = "Bron aangemaakt."; -App::$strings["*"] = "*"; -App::$strings["Manage remote sources of content for your channel."] = "Beheer externe bronnen met inhoud voor jouw kanaal"; -App::$strings["New Source"] = "Nieuwe bron"; -App::$strings["Import all or selected content from the following channel into this channel and distribute it according to your channel settings."] = "Importeer complete of gedeelde inhoud vanuit het volgende kanaal naar dit kanaal, en verdeel het vervolgens volgens jouw kanaalinstellingen."; -App::$strings["Only import content with these words (one per line)"] = "Importeer alleen inhoud met deze woorden (één per regel)"; -App::$strings["Leave blank to import all public content"] = "Laat leeg om alle openbare inhoud te importeren"; -App::$strings["Channel Name"] = "Kanaalnaam"; -App::$strings["Source not found."] = "Bron niet gevonden"; -App::$strings["Edit Source"] = "Bron bewerken"; -App::$strings["Delete Source"] = "Bron verwijderen"; -App::$strings["Source removed"] = "Bron verwijderd"; -App::$strings["Unable to remove source."] = "Verwijderen bron mislukt."; -App::$strings["No valid account found."] = "Geen geldige account gevonden."; -App::$strings["Password reset request issued. Check your email."] = "Het verzoek om je wachtwoord opnieuw in te stellen is behandeld. Controleer je e-mail."; -App::$strings["Site Member (%s)"] = "Lid van hub (%s)"; -App::$strings["Password reset requested at %s"] = "Verzoek tot het opnieuw instellen van een wachtwoord op %s is ingediend"; -App::$strings["Request could not be verified. (You may have previously submitted it.) Password reset failed."] = "Het verzoek kon niet worden geverifieerd. (Mogelijk heb je al eerder een verzoek ingediend.) Opnieuw instellen van wachtwoord is mislukt."; -App::$strings["Password Reset"] = "Wachtwoord vergeten?"; -App::$strings["Your password has been reset as requested."] = "Jouw wachtwoord is opnieuw ingesteld zoals je had verzocht."; -App::$strings["Your new password is"] = "Jouw nieuwe wachtwoord is"; -App::$strings["Save or copy your new password - and then"] = "Kopieer of sla je nieuwe wachtwoord op - en"; -App::$strings["click here to login"] = "klik dan hier om in te loggen"; -App::$strings["Your password may be changed from the Settings page after successful login."] = "Jouw wachtwoord kan worden veranderd onder instellingen, nadat je succesvol bent ingelogd."; -App::$strings["Your password has changed at %s"] = "Jouw wachtwoord op %s is veranderd"; -App::$strings["Forgot your Password?"] = "Wachtwoord vergeten?"; -App::$strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Voer je e-mailadres in en verstuur deze om je wachtwoord opnieuw in te stellen. Controleer hierna hier je e-mail voor verdere instructies."; -App::$strings["Email Address"] = "E-mailadres"; -App::$strings["Reset"] = "Opnieuw instellen"; -App::$strings["Hub not found."] = "Hub niet gevonden."; -App::$strings["%1\$s is following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s"; -App::$strings["%1\$s stopped following %2\$s's %3\$s"] = "%1\$s volgt het %3\$s van %2\$s niet meer"; -App::$strings["Unable to lookup recipient."] = "Niet in staat om ontvanger op te zoeken."; -App::$strings["Unable to communicate with requested channel."] = "Niet in staat om met het aangevraagde kanaal te communiceren."; -App::$strings["Cannot verify requested channel."] = "Kan opgevraagd kanaal niet verifieren"; -App::$strings["Selected channel has private message restrictions. Send failed."] = "Gekozen kanaal heeft restricties voor privéberichten. Verzenden mislukt."; -App::$strings["Messages"] = "Berichten"; -App::$strings["Message recalled."] = "Bericht ingetrokken."; -App::$strings["Conversation removed."] = "Conversatie verwijderd"; -App::$strings["Requested channel is not in this network"] = "Opgevraagd kanaal is niet in dit netwerk beschikbaar"; -App::$strings["Send Private Message"] = "Privébericht versturen"; -App::$strings["To:"] = "Aan:"; -App::$strings["Subject:"] = "Onderwerp:"; -App::$strings["Send"] = "Verzenden"; -App::$strings["Delete message"] = "Bericht verwijderen"; -App::$strings["Delivery report"] = "Afleveringsrapport"; -App::$strings["Recall message"] = "Bericht intrekken"; -App::$strings["Message has been recalled."] = "Bericht is ingetrokken."; -App::$strings["Delete Conversation"] = "Verwijder conversatie"; -App::$strings["No secure communications available. You may be able to respond from the sender's profile page."] = "Geen veilige communicatie beschikbaar. Mogelijk kan je reageren op de kanaalpagina van de afzender."; -App::$strings["Send Reply"] = "Antwoord versturen"; -App::$strings["Your message for %s (%s):"] = "Jouw privébericht aan %s (%s):"; -App::$strings["No suggestions available. If this is a new site, please try again in 24 hours."] = "Geen voorgestelde kanalen gevonden. Wanneer dit een nieuwe hub is, probeer het dan over 24 uur weer."; -App::$strings["Create a new channel"] = "Nieuw kanaal aanmaken"; -App::$strings["Current Channel"] = "Huidig kanaal"; -App::$strings["Switch to one of your channels by selecting it."] = "Activeer een van jouw andere kanalen door er op te klikken."; -App::$strings["Default Channel"] = "Standaardkanaal"; -App::$strings["Make Default"] = "Als standaard instellen"; -App::$strings["%d new messages"] = "%d nieuwe berichten"; -App::$strings["%d new introductions"] = "%d nieuwe connectieverzoeken"; -App::$strings["Delegated Channel"] = "Uitbesteed kanaal"; -App::$strings["%1\$s tagged %2\$s's %3\$s with %4\$s"] = "%1\$s heeft het %3\$s van %2\$s getagd met %4\$s"; -App::$strings["Profile Match"] = "Profielovereenkomst"; -App::$strings["No keywords to match. Please add keywords to your default profile."] = "Je hebt geen trefwoorden waarmee overeenkomsten gevonden kunnen worden. Voeg enkele trefwoorden aan je standaardprofiel toe."; -App::$strings["is interested in:"] = "is geïnteresseerd in:"; -App::$strings["No matches"] = "Geen overeenkomsten"; -App::$strings["Tag removed"] = "Tag verwijderd"; -App::$strings["Remove Item Tag"] = "Verwijder item-tag"; -App::$strings["Select a tag to remove: "] = "Kies een tag om te verwijderen"; -App::$strings["Unable to update menu."] = "Niet in staat om menu aan te passen"; -App::$strings["Unable to create menu."] = "Niet in staat om menu aan te maken."; -App::$strings["Menu Name"] = "Menunaam"; -App::$strings["Unique name (not visible on webpage) - required"] = "Unieke naam vereist (niet zichtbaar op webpagina)"; -App::$strings["Menu Title"] = "Menutitel"; -App::$strings["Visible on webpage - leave empty for no title"] = "Zichtbaar op webpagina (leeg laten voor geen titel)"; -App::$strings["Allow Bookmarks"] = "Bladwijzers toestaan"; -App::$strings["Menu may be used to store saved bookmarks"] = "Menu kan gebruikt worden om bladwijzers in op te slaan"; -App::$strings["Submit and proceed"] = "Opslaan en doorgaan"; -App::$strings["Bookmarks allowed"] = "Bladwijzers toegestaan"; -App::$strings["Delete this menu"] = "Menu verwijderen"; -App::$strings["Edit menu contents"] = "Bewerk de inhoud van het menu"; -App::$strings["Edit this menu"] = "Dit menu bewerken"; -App::$strings["Menu could not be deleted."] = "Menu kon niet verwijderd worden."; -App::$strings["Edit Menu"] = "Menu bewerken"; -App::$strings["Add or remove entries to this menu"] = "Items aan dit menu toevoegen of verwijder"; -App::$strings["Menu name"] = "Naam van menu"; -App::$strings["Must be unique, only seen by you"] = "Moet uniek zijn en is alleen zichtbaar voor jou."; -App::$strings["Menu title"] = "Titel van menu"; -App::$strings["Menu title as seen by others"] = "Titel van menu zoals anderen dat zien."; -App::$strings["Allow bookmarks"] = "Bladwijzers toestaan"; -App::$strings["Thing updated"] = "Ding bijgewerkt"; -App::$strings["Object store: failed"] = "Opslaan van ding mislukt"; -App::$strings["Thing added"] = "Ding toegevoegd"; -App::$strings["OBJ: %1\$s %2\$s %3\$s"] = "OBJ: %1\$s %2\$s %3\$s"; -App::$strings["Show Thing"] = "Ding weergeven"; -App::$strings["item not found."] = "Item niet gevonden"; -App::$strings["Edit Thing"] = "Ding bewerken"; -App::$strings["Select a profile"] = "Kies een profiel"; -App::$strings["Post an activity"] = "Plaats een bericht"; -App::$strings["Only sends to viewers of the applicable profile"] = "Toont dit alleen aan diegene die het gekozen profiel mogen zien."; -App::$strings["Name of thing e.g. something"] = "Naam van ding"; -App::$strings["URL of thing (optional)"] = "URL van ding (optioneel)"; -App::$strings["URL for photo of thing (optional)"] = "URL voor foto van ding (optioneel)"; -App::$strings["Add Thing to your Profile"] = "Ding aan je profiel toevoegen"; -App::$strings["Export Channel"] = "Kanaal exporteren"; -App::$strings["Export your basic channel information to a file. This acts as a backup of your connections, permissions, profile and basic data, which can be used to import your data to a new server hub, but does not contain your content."] = "Exporteer de basisinformatie van jouw kanaal naar een bestand. Dit fungeert als een back-up van jouw connecties, permissies, profiel en basisgegevens, die gebruikt kan worden om op een nieuwe hub jouw gegevens te importeren. Deze back-up bevat echter niet de inhoud van jouw kanaal."; -App::$strings["Export Content"] = "Inhoud exporteren"; -App::$strings["Export your channel information and recent content to a JSON backup that can be restored or imported to another server hub. This backs up all of your connections, permissions, profile data and several months of posts. This file may be VERY large. Please be patient - it may take several minutes for this download to begin."] = "Exporteer informatie en recente inhoud van jouw kanaal naar een JSON-back-up, wat kan worden gebruikt om jouw kanaal te herstellen of te importeren op een andere hub. Dit slaat al jouw connecties, permissies, profielgegevens en enkele maanden aan inhoud van jouw kanaal op. Dit bestand kan ZEER groot worden. Wees geduldig - het kan enkele minuten duren voordat de download begint."; -App::$strings["Export your posts from a given year."] = "Exporteer jouw berichten uit een bepaald jaar."; -App::$strings["You may also export your posts and conversations for a particular year or month. Adjust the date in your browser location bar to select other dates. If the export fails (possibly due to memory exhaustion on your server hub), please try again selecting a more limited date range."] = "Je kan ook berichten en conversaties uit een bepaald jaar of van een bepaalde maand exporteren. Verander de datum in de adresbalk van jouw webbrowser om andere jaren en maanden te selecteren. Wanneer het exporteren mislukt (waarschijnlijk door een gebrek aan beschikbaar servergeheugen), probeer het dan nogmaals met een beperkter tijdvak."; -App::$strings["To select all posts for a given year, such as this year, visit %2\$s"] = "Bezoek %2\$s om alle berichten van bijvoorbeeld dit jaar te selecteren. "; -App::$strings["To select all posts for a given month, such as January of this year, visit %2\$s"] = "Bezoek %2\$s om alle berichten van bijvoorbeeld januari dit jaar te selecteren."; -App::$strings["These content files may be imported or restored by visiting %2\$s on any site containing your channel. For best results please import or restore these in date order (oldest first)."] = "Deze back-up-bestanden kunnen geïmporteerd of hersteld worden door op jouw hub en met jouw kanaal %2\$s te bezoeken. Voor het beste resultaat kan je de bestanden in chronologische volgorde importeren of herstellen."; -App::$strings["No connections."] = "Geen connecties."; -App::$strings["Visit %s's profile [%s]"] = "Bezoek het profiel van %s [%s]"; -App::$strings["View Connections"] = "Connecties weergeven"; -App::$strings["Source of Item"] = "Bron van item"; -App::$strings["Xchan Lookup"] = "Xchan opzoeken"; -App::$strings["Lookup xchan beginning with (or webbie): "] = "Zoek een xchan (of webbie) die begint met:"; +App::$strings["__ctx:noun__ Not Attending"] = array( + 0 => "niet aanwezig", + 1 => "niet aanwezig", +); +App::$strings["__ctx:noun__ Undecided"] = array( + 0 => "nog niet beslist", + 1 => "nog niet beslist", +); +App::$strings["__ctx:noun__ Agree"] = array( + 0 => "eens", + 1 => "eens", +); +App::$strings["__ctx:noun__ Disagree"] = array( + 0 => "oneens", + 1 => "oneens", +); +App::$strings["__ctx:noun__ Abstain"] = array( + 0 => "onthouding", + 1 => "onthoudingen", +); +App::$strings["%1\$s's bookmarks"] = "Bladwijzers van %1\$s"; +App::$strings["Missing room name"] = "Naam chatkanaal ontbreekt"; +App::$strings["Duplicate room name"] = "Naam chatkanaal bestaat al"; +App::$strings["Invalid room specifier."] = "Ongeldige omschrijving chatkanaal"; +App::$strings["Room not found."] = "Chatkanaal niet gevonden"; +App::$strings["Room is full"] = "Chatkanaal is vol"; +App::$strings["New window"] = "Nieuw venster"; +App::$strings["Open the selected location in a different window or browser tab"] = "Open de geselecteerde locatie in een ander venster of tab"; +App::$strings["User '%s' deleted"] = "Account '%s' verwijderd"; +App::$strings["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["Frequently"] = "Regelmatig"; +App::$strings["Hourly"] = "Elk uur"; +App::$strings["Twice daily"] = "Twee keer per dag"; +App::$strings["Daily"] = "Dagelijks"; +App::$strings["Weekly"] = "Wekelijks"; +App::$strings["Monthly"] = "Maandelijks"; +App::$strings["Friendica"] = "Friendica"; +App::$strings["OStatus"] = "OStatus"; +App::$strings["GNU-Social"] = "GNU social"; +App::$strings["RSS/Atom"] = "RSS/Atom"; +App::$strings["Diaspora"] = "Diaspora"; +App::$strings["Facebook"] = "Facebook"; +App::$strings["Zot"] = "Zot"; +App::$strings["LinkedIn"] = "LinkedIn"; +App::$strings["XMPP/IM"] = "XMPP/IM"; +App::$strings["MySpace"] = "MySpace"; +App::$strings["%d invitation available"] = array( + 0 => "%d uitnodiging beschikbaar", + 1 => "%d uitnodigingen beschikbaar", +); +App::$strings["Find Channels"] = "Kanalen vinden"; +App::$strings["Enter name or interest"] = "Vul naam of interesse in"; +App::$strings["Connect/Follow"] = "Verbinden/volgen"; +App::$strings["Examples: Robert Morgenstein, Fishing"] = "Voorbeeld: Robert Morgenstein, vissen"; +App::$strings["Random Profile"] = "Willekeurig profiel"; +App::$strings["Invite Friends"] = "Vrienden uitnodigen"; +App::$strings["Advanced example: name=fred and country=iceland"] = "Geavanceerd voorbeeld (Engels): name=jan en country=nederland"; +App::$strings["Saved Folders"] = "Bewaarde mappen"; +App::$strings["Everything"] = "Alles"; +App::$strings["Categories"] = "Categorieën"; +App::$strings["%d connection in common"] = array( + 0 => "%d gemeenschappelijke connectie", + 1 => "%d gemeenschappelijke connecties", +); +App::$strings["show more"] = "meer connecties weergeven"; +App::$strings["Item was not found."] = "Item niet gevonden"; +App::$strings["No source file."] = "Geen bronbestand."; +App::$strings["Cannot locate file to replace"] = "Kan het te vervangen bestand niet vinden"; +App::$strings["Cannot locate file to revise/update"] = "Kan het bestand wat aangepast moet worden niet vinden"; +App::$strings["File exceeds size limit of %d"] = "Bestand is groter dan de toegelaten %d"; +App::$strings["You have reached your limit of %1$.0f Mbytes attachment storage."] = "Je hebt jouw limiet van %1$.0f MB opslagruimte voor bijlagen bereikt."; +App::$strings["File upload failed. Possible system limit or action terminated."] = "Uploaden van bestand mislukt. Mogelijk systeemlimiet bereikt of actie afgebroken."; +App::$strings["Stored file could not be verified. Upload failed."] = "Opgeslagen bestand kon niet worden geverifieerd. Uploaden mislukt."; +App::$strings["Path not available."] = "Pad niet beschikbaar."; +App::$strings["Empty pathname"] = "Padnaam leeg"; +App::$strings["duplicate filename or path"] = "dubbele bestandsnaam of pad"; +App::$strings["Path not found."] = "Pad niet gevonden"; +App::$strings["mkdir failed."] = "directory aanmaken (mkdir) mislukt."; +App::$strings["database storage failed."] = "opslag in database mislukt."; +App::$strings["Empty path"] = "Ontbrekend bestandspad"; +App::$strings["Birthday"] = "Verjaardag of geboortedatum"; +App::$strings["Age: "] = "Leeftijd:"; +App::$strings["YYYY-MM-DD or MM-DD"] = "JJJJ-MM-DD of MM-DD"; +App::$strings["never"] = "nooit"; +App::$strings["less than a second ago"] = "minder dan een seconde geleden"; +App::$strings["__ctx:e.g. 22 hours ago, 1 minute ago__ %1\$d %2\$s ago"] = "%1\$d %2\$s geleden"; +App::$strings["__ctx:relative_date__ year"] = array( + 0 => "jaar", + 1 => "jaren", +); +App::$strings["__ctx:relative_date__ month"] = array( + 0 => "maand", + 1 => "maanden", +); +App::$strings["__ctx:relative_date__ week"] = array( + 0 => "week", + 1 => "weken", +); +App::$strings["__ctx:relative_date__ day"] = array( + 0 => "dag", + 1 => "dagen", +); +App::$strings["__ctx:relative_date__ hour"] = array( + 0 => "uur", + 1 => "uren", +); +App::$strings["__ctx:relative_date__ minute"] = array( + 0 => "minuut", + 1 => "minuten", +); +App::$strings["__ctx:relative_date__ second"] = array( + 0 => "seconde", + 1 => "seconden", +); +App::$strings["%1\$s's birthday"] = "Verjaardag van %1\$s"; +App::$strings["Happy Birthday %1\$s"] = "Gefeliciteerd met je verjaardag %1\$s"; +App::$strings["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["%s "] = "%s "; +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."; +App::$strings["%1\$s sent you %2\$s."] = "%1\$s zond jou %2\$s."; +App::$strings["a private message"] = "een privébericht"; +App::$strings["Please visit %s to view and/or reply to your private messages."] = "Bezoek %s om je privéberichten te bekijken en/of er op te reageren."; +App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]a %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %4\$s[/zrl]"; +App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]%4\$s's %5\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]een %5\$s van %4\$s[/zrl]"; +App::$strings["%1\$s, %2\$s commented on [zrl=%3\$s]your %4\$s[/zrl]"] = "%1\$s, %2\$s gaf een reactie op [zrl=%3\$s]jouw %4\$s[/zrl]"; +App::$strings["[Hubzilla:Notify] Comment to conversation #%1\$d by %2\$s"] = "[Hubzilla:Notificatie] Reactie op conversatie #%1\$d door %2\$s"; +App::$strings["%1\$s, %2\$s commented on an item/conversation you have been following."] = "%1\$s, %2\$s gaf een reactie op een bericht/conversatie die jij volgt."; +App::$strings["Please visit %s to view and/or reply to the conversation."] = "Bezoek %s om de conversatie te bekijken en/of er op te reageren."; +App::$strings["[Hubzilla:Notify] %s posted to your profile wall"] = "[Hubzilla:Notificatie] %s heeft een bericht op jouw kanaal geplaatst"; +App::$strings["%1\$s, %2\$s posted to your profile wall at %3\$s"] = "%1\$s, %2\$s heeft om %3\$s een bericht op jouw kanaal geplaatst"; +App::$strings["%1\$s, %2\$s posted to [zrl=%3\$s]your wall[/zrl]"] = "%1\$s, %2\$s heeft een bericht op [zrl=%3\$s]jouw kanaal[/zrl] geplaatst"; +App::$strings["[Hubzilla:Notify] %s tagged you"] = "[Hubzilla:Notificatie] %s heeft je genoemd"; +App::$strings["%1\$s, %2\$s tagged you at %3\$s"] = "%1\$s, %2\$s noemde jou op %3\$s"; +App::$strings["%1\$s, %2\$s [zrl=%3\$s]tagged you[/zrl]."] = "%1\$s, %2\$s [zrl=%3\$s]noemde jou[/zrl]."; +App::$strings["[Hubzilla:Notify] %1\$s poked you"] = "[Hubzilla:Notificatie] %1\$s heeft je aangestoten"; +App::$strings["%1\$s, %2\$s poked you at %3\$s"] = "%1\$s, %2\$s heeft je aangestoten op %3\$s"; +App::$strings["%1\$s, %2\$s [zrl=%2\$s]poked you[/zrl]."] = "%1\$s, %2\$s [zrl=%2\$s]heeft je aangestoten[/zrl]."; +App::$strings["[Hubzilla:Notify] %s tagged your post"] = "[Hubzilla:Notificatie] %s heeft jouw bericht getagd"; +App::$strings["%1\$s, %2\$s tagged your post at %3\$s"] = "%1\$s, %2\$s heeft jouw bericht om %3\$s getagd"; +App::$strings["%1\$s, %2\$s tagged [zrl=%3\$s]your post[/zrl]"] = "%1\$s, %2\$s heeft [zrl=%3\$s]jouw bericht[/zrl] getagd"; +App::$strings["[Hubzilla:Notify] Introduction received"] = "[Hubzilla:Notificatie] Connectieverzoek ontvangen"; +App::$strings["%1\$s, you've received an new connection request from '%2\$s' at %3\$s"] = "%1\$s, je hebt een nieuw connectieverzoek ontvangen van '%2\$s' op %3\$s"; +App::$strings["%1\$s, you've received [zrl=%2\$s]a new connection request[/zrl] from %3\$s."] = "%1\$s, je hebt een [zrl=%2\$s]nieuw connectieverzoek[/zrl] ontvangen van %3\$s."; +App::$strings["You may visit their profile at %s"] = "Je kan het profiel bekijken op %s"; +App::$strings["Please visit %s to approve or reject the connection request."] = "Bezoek %s om het connectieverzoek te accepteren of af te wijzen."; +App::$strings["[Hubzilla:Notify] Friend suggestion received"] = "[Hubzilla:Notificatie] Kanaalvoorstel ontvangen"; +App::$strings["%1\$s, you've received a friend suggestion from '%2\$s' at %3\$s"] = "%1\$s, je hebt een kanaalvoorstel ontvangen van '%2\$s' om %3\$s"; +App::$strings["%1\$s, you've received [zrl=%2\$s]a friend suggestion[/zrl] for %3\$s from %4\$s."] = "%1\$s, je hebt [zrl=%2\$s]een kanaalvoorstel[/zrl] ontvangen voor %3\$s van %4\$s."; +App::$strings["Name:"] = "Naam:"; +App::$strings["Photo:"] = "Foto:"; +App::$strings["Please visit %s to approve or reject the suggestion."] = "Bezoek %s om het voorstel te accepteren of af te wijzen."; +App::$strings["[Hubzilla:Notify]"] = "[Hubzilla:Notificatie]"; +App::$strings["This event has been added to your calendar."] = "Dit evenement is aan jouw agenda toegevoegd."; +App::$strings["Not specified"] = "Niet aangegeven"; +App::$strings["Needs Action"] = "Actie vereist"; +App::$strings["Completed"] = "Voltooid"; +App::$strings["In Process"] = "In behandeling"; +App::$strings["Cancelled"] = "Geannuleerd"; +App::$strings["General Features"] = "Algemene functies"; +App::$strings["Content Expiration"] = "Inhoud laten verlopen"; +App::$strings["Remove posts/comments and/or private messages at a future time"] = "Berichten, reacties en/of privéberichten na een bepaalde tijd verwijderen"; +App::$strings["Multiple Profiles"] = "Meerdere profielen"; +App::$strings["Ability to create multiple profiles"] = "Mogelijkheid om meerdere profielen aan te maken"; +App::$strings["Advanced Profiles"] = "Geavanceerde profielen"; +App::$strings["Additional profile sections and selections"] = "Extra onderdelen en keuzes voor je profiel"; +App::$strings["Profile Import/Export"] = "Profiel importen/exporteren"; +App::$strings["Save and load profile details across sites/channels"] = "Profielgegevens opslaan en in andere hubs/kanalen gebruiken."; +App::$strings["Web Pages"] = "Webpagina's"; +App::$strings["Provide managed web pages on your channel"] = "Sta beheerde webpagina's op jouw kanaal toe"; +App::$strings["Hide Rating"] = "Beoordelingen verbergen"; +App::$strings["Hide the rating buttons on your channel and profile pages. Note: People can still rate you somewhere else."] = "Verbergt de beoordelingsknoppen op jouw kanaal- en profielpagina's. Let op: Mensen kunnen jou nog steeds ergens anders beoordelen. "; +App::$strings["Private Notes"] = "Privé-aantekeningen"; +App::$strings["Enables a tool to store notes and reminders (note: not encrypted)"] = "Een eenvoudige toepassing om aantekeningen en herinneringen in te bewaren (let op: niet versleuteld)"; +App::$strings["Navigation Channel Select"] = "Kanaal kiezen in navigatiemenu"; +App::$strings["Change channels directly from within the navigation dropdown menu"] = "Kies een ander kanaal direct vanuit het dropdown-menu op de navigatiebalk"; +App::$strings["Photo Location"] = "Fotolocatie"; +App::$strings["If location data is available on uploaded photos, link this to a map."] = "Wanneer in de geüploade foto's locatiegegevens aanwezig zijn, link dit dan aan een kaart."; +App::$strings["Access Controlled Chatrooms"] = "Chatkanalen met toegangscontrole "; +App::$strings["Provide chatrooms and chat services with access control."] = "Chatkanalen en chatdiensten met toegangscontrole aanbieden."; +App::$strings["Smart Birthdays"] = "Slimme verjaardagen"; +App::$strings["Make birthday events timezone aware in case your friends are scattered across the planet."] = "Maak verjaardagen bewust van tijdzones. Voor het geval dat jouw vrienden over de hele wereld verspreid zijn."; +App::$strings["Expert Mode"] = "Expertmodus"; +App::$strings["Enable Expert Mode to provide advanced configuration options"] = "Schakel de expertmodus in voor geavanceerde instellingen"; +App::$strings["Premium Channel"] = "Premiumkanaal"; +App::$strings["Allows you to set restrictions and terms on those that connect with your channel"] = "Stelt je in staat om beperkingen en voorwaarden in te stellen voor jouw kanaal"; +App::$strings["Post Composition Features"] = "Functies voor het opstellen van berichten"; +App::$strings["Large Photos"] = "Grote foto's"; +App::$strings["Include large (1024px) photo thumbnails in posts. If not enabled, use small (640px) photo thumbnails"] = "Gebruik grotere foto's (1024px) in berichten. Wanneer dit is uitgeschakeld worden er kleinere foto's (640px) gebruikt."; +App::$strings["Automatically import channel content from other channels or feeds"] = "Automatisch inhoud uit andere kanalen of feeds importeren."; +App::$strings["Even More Encryption"] = "Extra encryptie"; +App::$strings["Allow optional encryption of content end-to-end with a shared secret key"] = "Sta toe dat inhoud extra end-to-end wordt versleuteld met een gedeelde geheime sleutel."; +App::$strings["Enable Voting Tools"] = "Peilingen inschakelen"; +App::$strings["Provide a class of post which others can vote on"] = "Maakt het mogelijk om een bericht op te stellen, waar mensen op kunnen stemmen."; +App::$strings["Delayed Posting"] = "Berichten uitstellen"; +App::$strings["Allow posts to be published at a later date"] = "Maakt het mogelijk dat berichten op een toekomstig moment gepubliceerd kunnen worden."; +App::$strings["Suppress Duplicate Posts/Comments"] = "Dubbele berichten/reacties tegenhouden"; +App::$strings["Prevent posts with identical content to be published with less than two minutes in between submissions."] = "Voorkomt dat berichten en reacties met identieke inhoud en die binnen twee minuten zijn verstuurd, worden gepubliceerd. "; +App::$strings["Network and Stream Filtering"] = "Netwerk- en streamfilter"; +App::$strings["Search by Date"] = "Zoek op datum"; +App::$strings["Ability to select posts by date ranges"] = "Mogelijkheid om berichten op datum te filteren "; +App::$strings["Privacy Groups"] = "Privacygroepen"; +App::$strings["Enable management and selection of privacy groups"] = "Beheer en selectie van privacygroepen inschakelen"; +App::$strings["Saved Searches"] = "Opgeslagen zoekopdrachten"; +App::$strings["Save search terms for re-use"] = "Sla zoekopdrachten op voor hergebruik"; +App::$strings["Network Personal Tab"] = "Persoonlijke netwerktab"; +App::$strings["Enable tab to display only Network posts that you've interacted on"] = "Sta het toe dat de tab netwerkberichten toont waarmee je interactie had"; +App::$strings["Network New Tab"] = "Nieuwe netwerktab"; +App::$strings["Enable tab to display all new Network activity"] = "Laat de tab alle nieuwe netwerkactiviteit tonen"; +App::$strings["Affinity Tool"] = "Verwantschapsfilter"; +App::$strings["Filter stream activity by depth of relationships"] = "Filter wat je in jouw grid ziet op hoe goed je iemand kent of mag"; +App::$strings["Connection Filtering"] = "Berichtenfilters"; +App::$strings["Filter incoming posts from connections based on keywords/content"] = "Filter binnenkomende berichten van connecties aan de hand van trefwoorden en taal"; +App::$strings["Suggest Channels"] = "Kanalen voorstellen"; +App::$strings["Show channel suggestions"] = "Voor jou mogelijk interessante kanalen voorstellen"; +App::$strings["Post/Comment Tools"] = "Bericht- en reactiehulpmiddelen"; +App::$strings["Community Tagging"] = "Taggen door anderen"; +App::$strings["Ability to tag existing posts"] = "Geeft andere mensen de mogelijkheid om jouw (bestaande) berichten te taggen"; +App::$strings["Post Categories"] = "Categorieën berichten"; +App::$strings["Add categories to your posts"] = "Voeg categorieën toe aan je berichten"; +App::$strings["Ability to file posts under folders"] = "Mogelijkheid om berichten in mappen op te slaan"; +App::$strings["Dislike Posts"] = "Vind berichten niet leuk"; +App::$strings["Ability to dislike posts/comments"] = "Mogelijkheid om berichten en reacties niet leuk te vinden"; +App::$strings["Star Posts"] = "Geef berichten een ster"; +App::$strings["Ability to mark special posts with a star indicator"] = "Mogelijkheid om speciale berichten met een ster te markeren"; +App::$strings["Tag Cloud"] = "Tagwolk"; +App::$strings["Provide a personal tag cloud on your channel page"] = "Zorgt voor een persoonlijke wolk met tags op jouw kanaalpagina"; +App::$strings["Channel is blocked on this site."] = "Kanaal is op deze hub geblokkeerd."; +App::$strings["Channel location missing."] = "Ontbrekende kanaallocatie."; +App::$strings["Response from remote channel was incomplete."] = "Antwoord van het kanaal op afstand was niet volledig."; +App::$strings["Channel was deleted and no longer exists."] = "Kanaal is verwijderd en bestaat niet meer."; +App::$strings["Protocol disabled."] = "Protocol uitgeschakeld."; +App::$strings["Channel discovery failed."] = "Kanaal ontdekken mislukt."; +App::$strings["Cannot connect to yourself."] = "Kan niet met jezelf verbinden"; +App::$strings["A deleted group with this name was revived. Existing item permissions may apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Een verwijderde collectie met deze naam is gereactiveerd. Bestaande itemrechten kunnen van toepassing zijn op deze collectie en toekomstige leden. Wanneer je dit niet zo bedoeld hebt, moet je een nieuwe collectie met een andere naam aanmaken."; +App::$strings["Add new connections to this privacy group"] = "Voeg nieuwe connecties aan deze privacygroep toe"; +App::$strings["edit"] = "bewerken"; +App::$strings["Edit group"] = "Privacygroep bewerken"; +App::$strings["Add privacy group"] = "Privacygroep toevoegen"; +App::$strings["Channels not in any privacy group"] = "Kanalen die zich in geen enkele privacygroep bevinden"; +App::$strings["add"] = "toevoegen"; +App::$strings["(Unknown)"] = "(Onbekend)"; +App::$strings["Visible to anybody on the internet."] = "Voor iedereen op het internet zichtbaar."; +App::$strings["Visible to you only."] = "Alleen voor jou zichtbaar."; +App::$strings["Visible to anybody in this network."] = "Voor iedereen in dit netwerk zichtbaar."; +App::$strings["Visible to anybody authenticated."] = "Voor iedereen die geauthenticeerd is zichtbaar."; +App::$strings["Visible to anybody on %s."] = "Voor iedereen op %s zichtbaar."; +App::$strings["Visible to all connections."] = "Voor alle connecties zichtbaar."; +App::$strings["Visible to approved connections."] = "Voor alle geaccepteerde connecties zichtbaar."; +App::$strings["Visible to specific connections."] = "Voor specifieke connecties zichtbaar."; +App::$strings["Privacy group is empty."] = "Privacygroep is leeg"; +App::$strings["Privacy group: %s"] = "Privacygroep: %s"; +App::$strings["Connection not found."] = "Connectie niet gevonden."; +App::$strings["profile photo"] = "profielfoto"; +App::$strings["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["System"] = "Systeem"; +App::$strings["Create Personal App"] = "Persoonlijke app maken"; +App::$strings["Edit Personal App"] = "Persoonlijke app bewerken"; +App::$strings["Suggestions"] = "Voorgestelde kanalen"; +App::$strings["See more..."] = "Meer..."; +App::$strings["You have %1$.0f of %2$.0f allowed connections."] = "Je hebt %1$.0f van de %2$.0f toegestane connecties."; +App::$strings["Add New Connection"] = "Nieuwe connectie toevoegen"; +App::$strings["Enter channel address"] = "Vul kanaaladres in"; +App::$strings["Examples: bob@example.com, https://example.com/barbara"] = "Voorbeelden: bob@example.com, http://example.com/barbara"; +App::$strings["Notes"] = "Aantekeningen"; +App::$strings["Remove term"] = "Verwijder zoekterm"; +App::$strings["Archives"] = "Archieven"; +App::$strings["Refresh"] = "Vernieuwen"; +App::$strings["Account settings"] = "Account"; +App::$strings["Channel settings"] = "Kanaal"; +App::$strings["Additional features"] = "Extra functies"; +App::$strings["Feature/Addon settings"] = "Plugin-instellingen"; +App::$strings["Display settings"] = "Weergave"; +App::$strings["Manage locations"] = "Locaties beheren"; +App::$strings["Export channel"] = "Kanaal exporteren"; +App::$strings["Connected apps"] = "Verbonden applicaties"; +App::$strings["Premium Channel Settings"] = "Instellingen premiumkanaal"; +App::$strings["Private Mail Menu"] = "Privéberichten"; +App::$strings["Combined View"] = "Gecombineerd postvak"; +App::$strings["Inbox"] = "Postvak IN"; +App::$strings["Outbox"] = "Postvak UIT"; +App::$strings["New Message"] = "Nieuw bericht"; +App::$strings["Conversations"] = "Conversaties"; +App::$strings["Received Messages"] = "Ontvangen berichten"; +App::$strings["Sent Messages"] = "Verzonden berichten"; +App::$strings["No messages."] = "Geen berichten"; +App::$strings["Delete conversation"] = "Verwijder conversatie"; +App::$strings["Events Menu"] = "Agenda-menu"; +App::$strings["Day View"] = "Dag tonen"; +App::$strings["Week View"] = "Week tonen"; +App::$strings["Month View"] = "Maand tonen"; +App::$strings["Events Tools"] = "Agenda-hulpmiddelen"; +App::$strings["Export Calendar"] = "Exporteren"; +App::$strings["Import Calendar"] = "Importeren"; +App::$strings["Overview"] = "Overzicht"; +App::$strings["Chat Members"] = "Chatleden"; +App::$strings["Bookmarked Chatrooms"] = "Bladwijzers van chatkanalen"; +App::$strings["Suggested Chatrooms"] = "Voorgestelde chatkanalen"; +App::$strings["photo/image"] = "foto/afbeelding"; +App::$strings["Click to show more"] = "Klik voor meer"; +App::$strings["Rating Tools"] = "Beoordelingen"; +App::$strings["Rate Me"] = "Beoordeel mij"; +App::$strings["View Ratings"] = "Bekijk beoordelingen"; +App::$strings["Forums"] = "Forums"; +App::$strings["Tasks"] = "Taken"; +App::$strings["Documentation"] = "Documentatie"; +App::$strings["Project/Site Information"] = "Project- en hub-informatie"; +App::$strings["For Members"] = "Voor leden"; +App::$strings["For Administrators"] = "Voor beheerders"; +App::$strings["For Developers"] = "Voor ontwikkelaars"; +App::$strings["Accounts"] = "Accounts"; +App::$strings["Member registrations waiting for confirmation"] = "Accounts die op goedkeuring wachten"; +App::$strings["Inspect queue"] = "Inspecteer berichtenwachtrij"; +App::$strings["DB updates"] = "Database-updates"; +App::$strings["Admin"] = "Beheer"; +App::$strings["Plugin Features"] = "Plugin-opties"; +App::$strings["Tags"] = "Tags"; +App::$strings["Keywords"] = "Trefwoorden"; +App::$strings["have"] = "heb"; +App::$strings["has"] = "heeft"; +App::$strings["want"] = "wil"; +App::$strings["wants"] = "wil"; +App::$strings["likes"] = "vindt dit leuk"; +App::$strings["dislikes"] = "vindt dit niet leuk"; +App::$strings["Delete this item?"] = "Dit item verwijderen?"; +App::$strings["[-] show less"] = "[-] minder reacties weergeven"; +App::$strings["[+] expand"] = "[+] uitklappen"; +App::$strings["[-] collapse"] = "[-] inklappen"; +App::$strings["Password too short"] = "Wachtwoord te kort"; +App::$strings["Passwords do not match"] = "Wachtwoorden komen niet overeen"; +App::$strings["Secret Passphrase"] = "Geheim wachtwoord"; +App::$strings["Passphrase hint"] = "Wachtwoordhint"; +App::$strings["Notice: Permissions have changed but have not yet been submitted."] = "Mededeling: de permissies zijn veranderd, maar zijn nog niet opgeslagen."; +App::$strings["close all"] = "Alles sluiten"; +App::$strings["Nothing new here"] = "Niets nieuw hier"; +App::$strings["Rate This Channel (this is public)"] = "Beoordeel dit kanaal (dit is openbaar)"; +App::$strings["Describe (optional)"] = "Omschrijving (optioneel)"; +App::$strings["Please enter a link URL"] = "Vul een URL in:"; +App::$strings["Unsaved changes. Are you sure you wish to leave this page?"] = "Niet opgeslagen wijzigingen. Ben je er zeker van dat je deze pagina wil verlaten?"; +App::$strings["timeago.prefixAgo"] = "timeago.prefixAgo"; +App::$strings["timeago.prefixFromNow"] = "timeago.prefixFromNow"; +App::$strings["ago"] = "geleden"; +App::$strings["from now"] = "vanaf nu"; +App::$strings["less than a minute"] = "minder dan een minuut"; +App::$strings["about a minute"] = "ongeveer een minuut"; +App::$strings["%d minutes"] = "%d minuten"; +App::$strings["about an hour"] = "ongeveer een uur"; +App::$strings["about %d hours"] = "ongeveer %d uren"; +App::$strings["a day"] = "een dag"; +App::$strings["%d days"] = "%d dagen"; +App::$strings["about a month"] = "ongeveer een maand"; +App::$strings["%d months"] = "%d maanden"; +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"; +App::$strings["Apr"] = "apr"; +App::$strings["__ctx:short__ May"] = "mei"; +App::$strings["Jun"] = "jun"; +App::$strings["Jul"] = "jul"; +App::$strings["Aug"] = "aug"; +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"; +App::$strings["Wed"] = "wo"; +App::$strings["Thu"] = "do"; +App::$strings["Fri"] = "vr"; +App::$strings["Sat"] = "za"; +App::$strings["__ctx:calendar__ today"] = "vandaag"; +App::$strings["__ctx:calendar__ month"] = "maand"; +App::$strings["__ctx:calendar__ week"] = "week"; +App::$strings["__ctx:calendar__ day"] = "dag"; +App::$strings["__ctx:calendar__ All day"] = "hele dag"; +App::$strings["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"; +App::$strings["Your posts and conversations"] = "Jouw kanaal"; +App::$strings["Your profile page"] = "Jouw profielpagina"; +App::$strings["Manage/Edit profiles"] = "Beheer/wijzig profielen"; +App::$strings["Edit your profile"] = "Jouw profiel bewerken"; +App::$strings["Your photos"] = "Jouw foto's"; +App::$strings["Your files"] = "Jouw bestanden"; +App::$strings["Your chatrooms"] = "Jouw chatkanalen"; +App::$strings["Your bookmarks"] = "Jouw bladwijzers"; +App::$strings["Your webpages"] = "Jouw webpagina's"; +App::$strings["Sign in"] = "Inloggen"; +App::$strings["%s - click to logout"] = "%s - klik om uit te loggen"; +App::$strings["Remote authentication"] = "Authenticatie op afstand"; +App::$strings["Click to authenticate to your home hub"] = "Authenticeer jezelf via (bijvoorbeeld) jouw hub"; +App::$strings["Home Page"] = "Homepage"; +App::$strings["Create an account"] = "Maak een account aan"; +App::$strings["Help and documentation"] = "Hulp en documentatie"; +App::$strings["Applications, utilities, links, games"] = "Apps"; +App::$strings["Search site @name, #tag, ?docs, content"] = "Zoek een @kanaal, doorzoek inhoud hub met tekst en #tags, of doorzoek ?documentatie "; +App::$strings["Channel Directory"] = "Kanalengids"; +App::$strings["Your grid"] = "Jouw grid"; +App::$strings["Mark all grid notifications seen"] = "Markeer alle gridnotificaties als bekeken"; +App::$strings["Channel home"] = "Jouw kanaal"; +App::$strings["Mark all channel notifications seen"] = "Alle kanaalnotificaties als gelezen markeren"; +App::$strings["Notices"] = "Notificaties"; +App::$strings["Notifications"] = "Notificaties"; +App::$strings["See all notifications"] = "Alle notificaties weergeven"; +App::$strings["Private mail"] = "Privéberichten"; +App::$strings["See all private messages"] = "Alle privéberichten weergeven"; +App::$strings["Mark all private messages seen"] = "Markeer alle privéberichten als bekeken"; +App::$strings["Event Calendar"] = "Agenda"; +App::$strings["See all events"] = "Alle gebeurtenissen weergeven"; +App::$strings["Mark all events seen"] = "Markeer alle gebeurtenissen als bekeken"; +App::$strings["Manage Your Channels"] = "Beheer je kanalen"; +App::$strings["Account/Channel Settings"] = "Account-/kanaal-instellingen"; +App::$strings["Site Setup and Configuration"] = "Hub instellen en beheren"; +App::$strings["@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["Focus (Hubzilla default)"] = "Focus (Hubzilla-standaard)"; App::$strings["Theme settings"] = "Thema-instellingen"; App::$strings["Select scheme"] = "Kies schema van thema"; -- cgit v1.2.3 From c3b0c0f32a17649503db67f208cce6f9e0cdc322 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Mon, 25 Apr 2016 16:55:33 -0700 Subject: remove global db variable --- Zotlabs/Module/Setup.php | 38 +++----------- include/cli_startup.php | 6 +-- include/dba/dba_driver.php | 121 +++++++++++++++++++++++++-------------------- include/network.php | 2 +- include/text.php | 16 +++--- index.php | 2 +- 6 files changed, 87 insertions(+), 98 deletions(-) diff --git a/Zotlabs/Module/Setup.php b/Zotlabs/Module/Setup.php index 3ac67e1c0..5a4a87866 100644 --- a/Zotlabs/Module/Setup.php +++ b/Zotlabs/Module/Setup.php @@ -57,7 +57,7 @@ class Setup extends \Zotlabs\Web\Controller { * @param[in,out] App &$a */ function post() { - global $db; + switch($this->install_wizard_pass) { case 1: @@ -82,37 +82,14 @@ class Setup extends \Zotlabs\Web\Controller { $siteurl = rtrim($siteurl,'/'); require_once('include/dba/dba_driver.php'); - unset($db); - $db = dba_factory($dbhost, $dbport, $dbuser, $dbpass, $dbdata, $dbtype, true); + $db = null; + $db = \DBA::dba_factory($dbhost, $dbport, $dbuser, $dbpass, $dbdata, $dbtype, true); if(! $db->connected) { echo 'Database Connect failed: ' . $db->error; killme(); \App::$data['db_conn_failed']=true; } - /*if(get_db_errno()) { - unset($db); - $db = dba_factory($dbhost, $dbport, $dbuser, $dbpass, '', true); - - if(! get_db_errno()) { - $r = q("CREATE DATABASE '%s'", - dbesc($dbdata) - ); - if($r) { - unset($db); - $db = new dba($dbhost, $dbport, $dbuser, $dbpass, $dbdata, true); - } else { - \App::$data['db_create_failed']=true; - } - } else { - \App::$data['db_conn_failed']=true; - return; - } - }*/ - //if(get_db_errno()) { - - //} - return; break; case 4: @@ -139,7 +116,7 @@ class Setup extends \Zotlabs\Web\Controller { } // connect to db - $db = dba_factory($dbhost, $dbport, $dbuser, $dbpass, $dbdata, $dbtype, true); + $db = \DBA::dba_factory($dbhost, $dbport, $dbuser, $dbpass, $dbdata, $dbtype, true); if(! $db->connected) { echo 'CRITICAL: DB not connected.'; @@ -195,7 +172,6 @@ class Setup extends \Zotlabs\Web\Controller { * @return string parsed HTML output */ function get() { - global $db; $o = ''; $wizard_status = ''; @@ -228,7 +204,7 @@ class Setup extends \Zotlabs\Web\Controller { $txt .= "
".\App::$data['db_failed'] . "
". EOL ; $db_return_text .= $txt; } - if($db && $db->connected) { + if(\DBA::$dba && \DBA::$dba->connected) { $r = q("SELECT COUNT(*) as `total` FROM `account`"); if($r && count($r) && $r[0]['total']) { $tpl = get_markup_template('install.tpl'); @@ -693,12 +669,12 @@ class Setup extends \Zotlabs\Web\Controller { function load_database($db) { - $str = file_get_contents($db->get_install_script()); + $str = file_get_contents(\DBA::$dba->get_install_script()); $arr = explode(';',$str); $errors = false; foreach($arr as $a) { if(strlen(trim($a))) { - $r = @$db->q(trim($a)); + $r = @\DBA::$dba->q(trim($a)); if(! $r) { $errors .= t('Errors encountered creating database tables.') . $a . EOL; } diff --git a/include/cli_startup.php b/include/cli_startup.php index a99164d4c..a226f1345 100644 --- a/include/cli_startup.php +++ b/include/cli_startup.php @@ -1,6 +1,7 @@ convert(); @@ -25,8 +26,7 @@ function cli_startup() { App::$timezone = ((x($default_timezone)) ? $default_timezone : 'UTC'); date_default_timezone_set(App::$timezone); - require_once('include/dba/dba_driver.php'); - $db = dba_factory($db_host, $db_port, $db_user, $db_pass, $db_data, $db_type); + $db = DBA::dba_factory($db_host, $db_port, $db_user, $db_pass, $db_data, $db_type); unset($db_host, $db_port, $db_user, $db_pass, $db_data, $db_type); }; diff --git a/include/dba/dba_driver.php b/include/dba/dba_driver.php index 3c5b0b67e..4bad70323 100755 --- a/include/dba/dba_driver.php +++ b/include/dba/dba_driver.php @@ -7,44 +7,57 @@ * functions for working with databases. */ -/** - * @brief Returns the database driver object. - * - * If available it will use PHP's mysqli otherwise mysql driver. - * - * @param string $server DB server name - * @param string $port DB port - * @param string $user DB username - * @param string $pass DB password - * @param string $db database name - * @param string $dbtype 0 for mysql, 1 for postgres - * @param bool $install Defaults to false - * @return null|dba_driver A database driver object (dba_mysql|dba_mysqli) or null if no driver found. - */ -function dba_factory($server, $port,$user,$pass,$db,$dbtype,$install = false) { - $dba = null; - - $dbtype = intval($dbtype); - - if($dbtype == DBTYPE_POSTGRES) { - require_once('include/dba/dba_postgres.php'); - if(is_null($port)) $port = 5432; - $dba = new dba_postgres($server, $port, $user, $pass, $db, $install); - } else { - if(class_exists('mysqli')) { - if (is_null($port)) $port = ini_get("mysqli.default_port"); - require_once('include/dba/dba_mysqli.php'); - $dba = new dba_mysqli($server, $port,$user,$pass,$db,$install); - } else { - if (is_null($port)) $port = "3306"; - require_once('include/dba/dba_mysql.php'); - $dba = new dba_mysql($server, $port,$user,$pass,$db,$install); + +class DBA { + + static public $dba = null; + static public $dbtype = null; + + + /** + * @brief Returns the database driver object. + * + * If available it will use PHP's mysqli otherwise mysql driver. + * + * @param string $server DB server name + * @param string $port DB port + * @param string $user DB username + * @param string $pass DB password + * @param string $db database name + * @param string $dbtype 0 for mysql, 1 for postgres + * @param bool $install Defaults to false + * @return null|dba_driver A database driver object (dba_mysql|dba_mysqli) or null if no driver found. + */ + + function dba_factory($server, $port,$user,$pass,$db,$dbtype,$install = false) { + + self::$dba = null; + + self::$dbtype = intval($dbtype); + + if(self::$dbtype == DBTYPE_POSTGRES) { + require_once('include/dba/dba_postgres.php'); + if(is_null($port)) $port = 5432; + self::$dba = new dba_postgres($server, $port, $user, $pass, $db, $install); + } + else { + if(class_exists('mysqli')) { + if (is_null($port)) $port = ini_get("mysqli.default_port"); + require_once('include/dba/dba_mysqli.php'); + self::$dba = new dba_mysqli($server, $port,$user,$pass,$db,$install); + } + else { + // UNSUPPORTED, OBSOLETE + if (is_null($port)) $port = "3306"; + require_once('include/dba/dba_mysql.php'); + self::$dba = new dba_mysql($server, $port,$user,$pass,$db,$install); + } } - } - define('NULL_DATE', $dba->get_null_date()); - define('ACTIVE_DBTYPE', $dbtype); - return $dba; + define('NULL_DATE', self::$dba->get_null_date()); + define('ACTIVE_DBTYPE', self::$dbtype); + return self::$dba; + } } /** @@ -53,6 +66,7 @@ function dba_factory($server, $port,$user,$pass,$db,$dbtype,$install = false) { * This class gets extended by the real database driver classes, e.g. dba_mysql, * dba_mysqli. */ + abstract class dba_driver { // legacy behavior const INSTALL_SCRIPT='install/schema_mysql.sql'; @@ -203,10 +217,10 @@ function printable($s) { * @param int $state 0 to disable debugging */ function dbg($state) { - global $db; +// global $db; - if($db) - $db->dbg($state); + if(DBA::$dba) + DBA::$dba->dbg($state); } /** @@ -220,21 +234,20 @@ function dbg($state) { * @return Return an escaped string of the value to pass to a DB query. */ function dbesc($str) { - global $db; - - if($db && $db->connected) - return($db->escape($str)); + if(DBA::$dba && DBA::$dba->connected) + return(DBA::$dba->escape($str)); else return(str_replace("'", "\\'", $str)); } + function dbescbin($str) { global $db; - return $db->escapebin($str); + return DBA::$dba->escapebin($str); } function dbunescbin($str) { global $db; - return $db->unescapebin($str); + return DBA::$dba->unescapebin($str); } function dbescdate($date) { @@ -248,27 +261,27 @@ function dbescdate($date) { function db_quoteinterval($txt) { global $db; - return $db->quote_interval($txt); + return DBA::$dba->quote_interval($txt); } function dbesc_identifier($str) { global $db; - return $db->escape_identifier($str); + return DBA::$dba->escape_identifier($str); } function db_utcnow() { global $db; - return $db->utcnow(); + return DBA::$dba->utcnow(); } function db_optimizetable($table) { global $db; - $db->optimize_table($table); + DBA::$dba->optimize_table($table); } function db_concat($fld, $sep) { global $db; - return $db->concat($fld, $sep); + return DBA::$dba->concat($fld, $sep); } // Function: q($sql,$args); @@ -298,7 +311,7 @@ function q($sql) { $args = func_get_args(); unset($args[0]); - if($db && $db->connected) { + if(DBA::$dba && DBA::$dba->connected) { $stmt = vsprintf($sql, $args); if($stmt === false) { if(version_compare(PHP_VERSION, '5.4.0') >= 0) @@ -307,7 +320,7 @@ function q($sql) { else logger('dba: vsprintf error: ' . print_r(debug_backtrace(), true),LOGGER_NORMAL,LOG_CRIT); } - return $db->q($stmt); + return DBA::$dba->q($stmt); } /* @@ -329,8 +342,8 @@ function q($sql) { function dbq($sql) { global $db; - if($db && $db->connected) - $ret = $db->q($sql); + if(DBA::$dba && DBA::$dba->connected) + $ret = DBA::$dba->q($sql); else $ret = false; diff --git a/include/network.php b/include/network.php index ec255581d..f822b644d 100644 --- a/include/network.php +++ b/include/network.php @@ -2035,7 +2035,7 @@ function get_site_info() { 'admin' => $admin, 'site_name' => (($site_name) ? $site_name : ''), 'platform' => Zotlabs\Project\System::get_platform_name(), - 'dbdriver' => $db->getdriver(), + 'dbdriver' => \DBA::$dba->getdriver(), 'lastpoll' => get_config('system','lastpoll'), 'info' => (($site_info) ? $site_info : ''), 'channels_total' => $channels_total_stat, diff --git a/include/text.php b/include/text.php index 0a7f84b01..f27abf80b 100644 --- a/include/text.php +++ b/include/text.php @@ -540,11 +540,11 @@ function attribute_contains($attr, $s) { */ function logger($msg, $level = LOGGER_NORMAL, $priority = LOG_INFO) { - // turn off logger in install mode - global $a; - global $db; - if((App::$module == 'install') || (! ($db && $db->connected))) + require_once('include/dba/dba_driver.php'); + + // turn off logger in install mode + if((App::$module == 'install') || (! (DBA::$dba && DBA::$dba->connected))) return; $debugging = get_config('system', 'debugging'); @@ -621,11 +621,11 @@ function log_priority_str($priority) { * @param int $level A log level. */ function dlogger($msg, $level = 0) { - // turn off logger in install mode - global $a; - global $db; - if((App::$module == 'install') || (! ($db && $db->connected))) + require_once('include/dba/dba_driver.php'); + + // turn off logger in install mode + if((App::$module == 'install') || (! (DBA::$dba && DBA::$dba->connected))) return; $debugging = get_config('system','debugging'); diff --git a/index.php b/index.php index 278be154c..33ad424bc 100755 --- a/index.php +++ b/index.php @@ -47,7 +47,7 @@ date_default_timezone_set(App::$timezone); require_once('include/dba/dba_driver.php'); if(! App::$install) { - $db = dba_factory($db_host, $db_port, $db_user, $db_pass, $db_data, $db_type, App::$install); + $db = DBA::dba_factory($db_host, $db_port, $db_user, $db_pass, $db_data, $db_type, App::$install); if(! $db->connected) { system_unavailable(); } -- cgit v1.2.3 From ae026247934f422622031c426af01101c05f4c18 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Mon, 25 Apr 2016 20:10:16 -0700 Subject: Revert "revert inline-block for blockquote" This reverts commit 15cfd6fda79fdaff8302f2eae91e8fc40940609a. --- view/theme/redbasic/css/style.css | 1 + 1 file changed, 1 insertion(+) diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index bd5df5e63..31455cbdd 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1605,6 +1605,7 @@ nav ul li .notify-unseen } blockquote { + display: inline-block; font-size: $font_size; font-style: italic; border-left: 3px solid #ccc; -- cgit v1.2.3 From 6bf771651846ba2906c4f03600277ebbe2f3b98a Mon Sep 17 00:00:00 2001 From: redmatrix Date: Mon, 25 Apr 2016 20:11:36 -0700 Subject: Revert "Revert "revert inline-block for blockquote"" This reverts commit ae026247934f422622031c426af01101c05f4c18. --- view/theme/redbasic/css/style.css | 1 - 1 file changed, 1 deletion(-) diff --git a/view/theme/redbasic/css/style.css b/view/theme/redbasic/css/style.css index 31455cbdd..bd5df5e63 100644 --- a/view/theme/redbasic/css/style.css +++ b/view/theme/redbasic/css/style.css @@ -1605,7 +1605,6 @@ nav ul li .notify-unseen } blockquote { - display: inline-block; font-size: $font_size; font-style: italic; border-left: 3px solid #ccc; -- cgit v1.2.3 From d62f4908146f2bdfb396bff06f74afb62995e4a3 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Mon, 25 Apr 2016 20:12:36 -0700 Subject: Setup was horked after this commit and I couldn't easily make it right so reverting - will try again at a future date Revert "remove global db variable" This reverts commit c3b0c0f32a17649503db67f208cce6f9e0cdc322. --- Zotlabs/Module/Setup.php | 38 +++++++++++--- include/cli_startup.php | 6 +-- include/dba/dba_driver.php | 121 ++++++++++++++++++++------------------------- include/network.php | 2 +- include/text.php | 16 +++--- index.php | 2 +- 6 files changed, 98 insertions(+), 87 deletions(-) diff --git a/Zotlabs/Module/Setup.php b/Zotlabs/Module/Setup.php index 5a4a87866..3ac67e1c0 100644 --- a/Zotlabs/Module/Setup.php +++ b/Zotlabs/Module/Setup.php @@ -57,7 +57,7 @@ class Setup extends \Zotlabs\Web\Controller { * @param[in,out] App &$a */ function post() { - + global $db; switch($this->install_wizard_pass) { case 1: @@ -82,14 +82,37 @@ class Setup extends \Zotlabs\Web\Controller { $siteurl = rtrim($siteurl,'/'); require_once('include/dba/dba_driver.php'); - $db = null; - $db = \DBA::dba_factory($dbhost, $dbport, $dbuser, $dbpass, $dbdata, $dbtype, true); + unset($db); + $db = dba_factory($dbhost, $dbport, $dbuser, $dbpass, $dbdata, $dbtype, true); if(! $db->connected) { echo 'Database Connect failed: ' . $db->error; killme(); \App::$data['db_conn_failed']=true; } + /*if(get_db_errno()) { + unset($db); + $db = dba_factory($dbhost, $dbport, $dbuser, $dbpass, '', true); + + if(! get_db_errno()) { + $r = q("CREATE DATABASE '%s'", + dbesc($dbdata) + ); + if($r) { + unset($db); + $db = new dba($dbhost, $dbport, $dbuser, $dbpass, $dbdata, true); + } else { + \App::$data['db_create_failed']=true; + } + } else { + \App::$data['db_conn_failed']=true; + return; + } + }*/ + //if(get_db_errno()) { + + //} + return; break; case 4: @@ -116,7 +139,7 @@ class Setup extends \Zotlabs\Web\Controller { } // connect to db - $db = \DBA::dba_factory($dbhost, $dbport, $dbuser, $dbpass, $dbdata, $dbtype, true); + $db = dba_factory($dbhost, $dbport, $dbuser, $dbpass, $dbdata, $dbtype, true); if(! $db->connected) { echo 'CRITICAL: DB not connected.'; @@ -172,6 +195,7 @@ class Setup extends \Zotlabs\Web\Controller { * @return string parsed HTML output */ function get() { + global $db; $o = ''; $wizard_status = ''; @@ -204,7 +228,7 @@ class Setup extends \Zotlabs\Web\Controller { $txt .= "
".\App::$data['db_failed'] . "
". EOL ; $db_return_text .= $txt; } - if(\DBA::$dba && \DBA::$dba->connected) { + if($db && $db->connected) { $r = q("SELECT COUNT(*) as `total` FROM `account`"); if($r && count($r) && $r[0]['total']) { $tpl = get_markup_template('install.tpl'); @@ -669,12 +693,12 @@ class Setup extends \Zotlabs\Web\Controller { function load_database($db) { - $str = file_get_contents(\DBA::$dba->get_install_script()); + $str = file_get_contents($db->get_install_script()); $arr = explode(';',$str); $errors = false; foreach($arr as $a) { if(strlen(trim($a))) { - $r = @\DBA::$dba->q(trim($a)); + $r = @$db->q(trim($a)); if(! $r) { $errors .= t('Errors encountered creating database tables.') . $a . EOL; } diff --git a/include/cli_startup.php b/include/cli_startup.php index a226f1345..a99164d4c 100644 --- a/include/cli_startup.php +++ b/include/cli_startup.php @@ -1,7 +1,6 @@ convert(); @@ -26,7 +25,8 @@ function cli_startup() { App::$timezone = ((x($default_timezone)) ? $default_timezone : 'UTC'); date_default_timezone_set(App::$timezone); - $db = DBA::dba_factory($db_host, $db_port, $db_user, $db_pass, $db_data, $db_type); + require_once('include/dba/dba_driver.php'); + $db = dba_factory($db_host, $db_port, $db_user, $db_pass, $db_data, $db_type); unset($db_host, $db_port, $db_user, $db_pass, $db_data, $db_type); }; diff --git a/include/dba/dba_driver.php b/include/dba/dba_driver.php index 4bad70323..3c5b0b67e 100755 --- a/include/dba/dba_driver.php +++ b/include/dba/dba_driver.php @@ -7,57 +7,44 @@ * functions for working with databases. */ - -class DBA { - - static public $dba = null; - static public $dbtype = null; - - - /** - * @brief Returns the database driver object. - * - * If available it will use PHP's mysqli otherwise mysql driver. - * - * @param string $server DB server name - * @param string $port DB port - * @param string $user DB username - * @param string $pass DB password - * @param string $db database name - * @param string $dbtype 0 for mysql, 1 for postgres - * @param bool $install Defaults to false - * @return null|dba_driver A database driver object (dba_mysql|dba_mysqli) or null if no driver found. - */ - - function dba_factory($server, $port,$user,$pass,$db,$dbtype,$install = false) { - - self::$dba = null; - - self::$dbtype = intval($dbtype); - - if(self::$dbtype == DBTYPE_POSTGRES) { - require_once('include/dba/dba_postgres.php'); - if(is_null($port)) $port = 5432; - self::$dba = new dba_postgres($server, $port, $user, $pass, $db, $install); - } - else { - if(class_exists('mysqli')) { - if (is_null($port)) $port = ini_get("mysqli.default_port"); - require_once('include/dba/dba_mysqli.php'); - self::$dba = new dba_mysqli($server, $port,$user,$pass,$db,$install); - } - else { - // UNSUPPORTED, OBSOLETE - if (is_null($port)) $port = "3306"; - require_once('include/dba/dba_mysql.php'); - self::$dba = new dba_mysql($server, $port,$user,$pass,$db,$install); - } +/** + * @brief Returns the database driver object. + * + * If available it will use PHP's mysqli otherwise mysql driver. + * + * @param string $server DB server name + * @param string $port DB port + * @param string $user DB username + * @param string $pass DB password + * @param string $db database name + * @param string $dbtype 0 for mysql, 1 for postgres + * @param bool $install Defaults to false + * @return null|dba_driver A database driver object (dba_mysql|dba_mysqli) or null if no driver found. + */ +function dba_factory($server, $port,$user,$pass,$db,$dbtype,$install = false) { + $dba = null; + + $dbtype = intval($dbtype); + + if($dbtype == DBTYPE_POSTGRES) { + require_once('include/dba/dba_postgres.php'); + if(is_null($port)) $port = 5432; + $dba = new dba_postgres($server, $port, $user, $pass, $db, $install); + } else { + if(class_exists('mysqli')) { + if (is_null($port)) $port = ini_get("mysqli.default_port"); + require_once('include/dba/dba_mysqli.php'); + $dba = new dba_mysqli($server, $port,$user,$pass,$db,$install); + } else { + if (is_null($port)) $port = "3306"; + require_once('include/dba/dba_mysql.php'); + $dba = new dba_mysql($server, $port,$user,$pass,$db,$install); } - - define('NULL_DATE', self::$dba->get_null_date()); - define('ACTIVE_DBTYPE', self::$dbtype); - return self::$dba; } + + define('NULL_DATE', $dba->get_null_date()); + define('ACTIVE_DBTYPE', $dbtype); + return $dba; } /** @@ -66,7 +53,6 @@ class DBA { * This class gets extended by the real database driver classes, e.g. dba_mysql, * dba_mysqli. */ - abstract class dba_driver { // legacy behavior const INSTALL_SCRIPT='install/schema_mysql.sql'; @@ -217,10 +203,10 @@ function printable($s) { * @param int $state 0 to disable debugging */ function dbg($state) { -// global $db; + global $db; - if(DBA::$dba) - DBA::$dba->dbg($state); + if($db) + $db->dbg($state); } /** @@ -234,20 +220,21 @@ function dbg($state) { * @return Return an escaped string of the value to pass to a DB query. */ function dbesc($str) { - if(DBA::$dba && DBA::$dba->connected) - return(DBA::$dba->escape($str)); + global $db; + + if($db && $db->connected) + return($db->escape($str)); else return(str_replace("'", "\\'", $str)); } - function dbescbin($str) { global $db; - return DBA::$dba->escapebin($str); + return $db->escapebin($str); } function dbunescbin($str) { global $db; - return DBA::$dba->unescapebin($str); + return $db->unescapebin($str); } function dbescdate($date) { @@ -261,27 +248,27 @@ function dbescdate($date) { function db_quoteinterval($txt) { global $db; - return DBA::$dba->quote_interval($txt); + return $db->quote_interval($txt); } function dbesc_identifier($str) { global $db; - return DBA::$dba->escape_identifier($str); + return $db->escape_identifier($str); } function db_utcnow() { global $db; - return DBA::$dba->utcnow(); + return $db->utcnow(); } function db_optimizetable($table) { global $db; - DBA::$dba->optimize_table($table); + $db->optimize_table($table); } function db_concat($fld, $sep) { global $db; - return DBA::$dba->concat($fld, $sep); + return $db->concat($fld, $sep); } // Function: q($sql,$args); @@ -311,7 +298,7 @@ function q($sql) { $args = func_get_args(); unset($args[0]); - if(DBA::$dba && DBA::$dba->connected) { + if($db && $db->connected) { $stmt = vsprintf($sql, $args); if($stmt === false) { if(version_compare(PHP_VERSION, '5.4.0') >= 0) @@ -320,7 +307,7 @@ function q($sql) { else logger('dba: vsprintf error: ' . print_r(debug_backtrace(), true),LOGGER_NORMAL,LOG_CRIT); } - return DBA::$dba->q($stmt); + return $db->q($stmt); } /* @@ -342,8 +329,8 @@ function q($sql) { function dbq($sql) { global $db; - if(DBA::$dba && DBA::$dba->connected) - $ret = DBA::$dba->q($sql); + if($db && $db->connected) + $ret = $db->q($sql); else $ret = false; diff --git a/include/network.php b/include/network.php index f822b644d..ec255581d 100644 --- a/include/network.php +++ b/include/network.php @@ -2035,7 +2035,7 @@ function get_site_info() { 'admin' => $admin, 'site_name' => (($site_name) ? $site_name : ''), 'platform' => Zotlabs\Project\System::get_platform_name(), - 'dbdriver' => \DBA::$dba->getdriver(), + 'dbdriver' => $db->getdriver(), 'lastpoll' => get_config('system','lastpoll'), 'info' => (($site_info) ? $site_info : ''), 'channels_total' => $channels_total_stat, diff --git a/include/text.php b/include/text.php index f27abf80b..0a7f84b01 100644 --- a/include/text.php +++ b/include/text.php @@ -540,11 +540,11 @@ function attribute_contains($attr, $s) { */ function logger($msg, $level = LOGGER_NORMAL, $priority = LOG_INFO) { - - require_once('include/dba/dba_driver.php'); - // turn off logger in install mode - if((App::$module == 'install') || (! (DBA::$dba && DBA::$dba->connected))) + global $a; + global $db; + + if((App::$module == 'install') || (! ($db && $db->connected))) return; $debugging = get_config('system', 'debugging'); @@ -621,11 +621,11 @@ function log_priority_str($priority) { * @param int $level A log level. */ function dlogger($msg, $level = 0) { - - require_once('include/dba/dba_driver.php'); - // turn off logger in install mode - if((App::$module == 'install') || (! (DBA::$dba && DBA::$dba->connected))) + global $a; + global $db; + + if((App::$module == 'install') || (! ($db && $db->connected))) return; $debugging = get_config('system','debugging'); diff --git a/index.php b/index.php index 33ad424bc..278be154c 100755 --- a/index.php +++ b/index.php @@ -47,7 +47,7 @@ date_default_timezone_set(App::$timezone); require_once('include/dba/dba_driver.php'); if(! App::$install) { - $db = DBA::dba_factory($db_host, $db_port, $db_user, $db_pass, $db_data, $db_type, App::$install); + $db = dba_factory($db_host, $db_port, $db_user, $db_pass, $db_data, $db_type, App::$install); if(! $db->connected) { system_unavailable(); } -- cgit v1.2.3 From 2e7028c976023ebf5c03bfaaad9f91be8a01e932 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Mon, 25 Apr 2016 22:03:02 -0700 Subject: some cleanup on the mysqli driver --- include/dba/dba_mysqli.php | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/include/dba/dba_mysqli.php b/include/dba/dba_mysqli.php index 6986d4586..57a7559a1 100755 --- a/include/dba/dba_mysqli.php +++ b/include/dba/dba_mysqli.php @@ -4,20 +4,26 @@ require_once('include/dba/dba_driver.php'); class dba_mysqli extends dba_driver { - function connect($server, $port, $user,$pass,$db) { + function connect($server,$port,$user,$pass,$db) { if($port) $this->db = new mysqli($server,$user,$pass,$db, $port); else $this->db = new mysqli($server,$user,$pass,$db); - if(! mysqli_connect_errno()) { - $this->connected = true; + if($this->db->connect_error) { + $this->connected = false; + $this->error = $this->db->connect_error; + + if(file_exists('dbfail.out')) { + file_put_contents('dbfail.out', datetime_convert() . "\nConnect: " . $this->error . "\n", FILE_APPEND); + } + + return false; } - if($this->connected) { + else { + $this->connected = true; return true; } - $this->error = $this->db->connect_error; - return false; } function q($sql) { -- cgit v1.2.3 From 5553df862af3b7161fa84914999538a1e9d070bd Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Tue, 26 Apr 2016 09:49:54 +0200 Subject: fix top padding for narrow navbar --- view/theme/redbasic/css/narrow_navbar.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/view/theme/redbasic/css/narrow_navbar.css b/view/theme/redbasic/css/narrow_navbar.css index 2c0c7e133..e7c1e9f40 100644 --- a/view/theme/redbasic/css/narrow_navbar.css +++ b/view/theme/redbasic/css/narrow_navbar.css @@ -1,4 +1,13 @@ @media screen and (min-width: 760px) { + + aside { + padding: 52px 7px 0px 7px; + } + + section { + padding: 52px 7px 200px 7px; + } + .navbar-nav > li > a { padding-top:7px !important; padding-bottom:3px !important; -- cgit v1.2.3 From 563e82feff1af3abe31b27ee16f93ec46c2dbf73 Mon Sep 17 00:00:00 2001 From: redmatrix Date: Tue, 26 Apr 2016 01:06:25 -0700 Subject: revup --- version.inc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/version.inc b/version.inc index fcbe13e41..6ea8427f5 100644 --- a/version.inc +++ b/version.inc @@ -1 +1 @@ -2016-04-25.1377H +2016-04-26.1378H -- cgit v1.2.3 From 3446e68ac2aa3f970307b748fee5ee2da1af4ca4 Mon Sep 17 00:00:00 2001 From: Mario Vavti Date: Tue, 26 Apr 2016 11:41:08 +0200 Subject: move spoiler= and quote= bbcode handling from prepare_body() to bbcode() and add open tag to bbco_autocomplete --- include/bbcode.php | 44 ++++++++++++++++++++++++++++---------------- include/text.php | 29 ----------------------------- view/js/autocomplete.js | 2 +- 3 files changed, 29 insertions(+), 46 deletions(-) diff --git a/include/bbcode.php b/include/bbcode.php index 78a2759c1..b8cd23f59 100644 --- a/include/bbcode.php +++ b/include/bbcode.php @@ -330,8 +330,19 @@ function bb_map_location($match) { } function bb_opentag($match) { + $openclose = (($match[2]) ? '' . $match[1] . '' : t('Click to open/close')); + $text = (($match[2]) ? $match[2] : $match[1]); $rnd = mt_rand(); - return "
" . $match[1] . "
" . $match[2] . "
"; + + return ''; +} + +function bb_spoilertag($match) { + $openclose = (($match[2]) ? '' . $match[1] . ' ' . t('spoiler') . '' : t('Click to open/close')); + $text = (($match[2]) ? $match[2] : $match[1]); + $rnd = mt_rand(); + + return ''; } /** @@ -748,33 +759,34 @@ function bbcode($Text, $preserve_nl = false, $tryoembed = true, $cache = false) $Text = preg_replace("/\[code\](.*?)\[\/code\]/ism", "$CodeLayout", $Text); } - // Declare the format for [spoiler] layout - $SpoilerLayout = '
$1
'; - // Check for [spoiler] text - // handle nested quotes $endlessloop = 0; - while ((strpos($Text, "[/spoiler]") !== false) and (strpos($Text, "[spoiler]") !== false) and (++$endlessloop < 20)) - $Text = preg_replace("/\[spoiler\](.*?)\[\/spoiler\]/ism", "$SpoilerLayout", $Text); + while ((strpos($Text, "[/spoiler]")!== false) and (strpos($Text, "[spoiler]") !== false) and (++$endlessloop < 20)) { + $Text = preg_replace_callback("/\[spoiler\](.*?)\[\/spoiler\]/ism", 'bb_spoilertag', $Text); + } // Check for [spoiler=Author] text - - $t_wrote = t('$1 spoiler'); - - // handle nested quotes $endlessloop = 0; - while ((strpos($Text, "[/spoiler]")!== false) and (strpos($Text, "[spoiler=") !== false) and (++$endlessloop < 20)) - $Text = preg_replace("/\[spoiler=[\"\']*(.*?)[\"\']*\](.*?)\[\/spoiler\]/ism", - "
" . $t_wrote . "
$2
", - $Text); + while ((strpos($Text, "[/spoiler]")!== false) and (strpos($Text, "[spoiler=") !== false) and (++$endlessloop < 20)) { + $Text = preg_replace_callback("/\[spoiler=(.*?)\](.*?)\[\/spoiler\]/ism", 'bb_spoilertag', $Text); + } + // Check for [open] text + $endlessloop = 0; + while ((strpos($Text, "[/open]")!== false) and (strpos($Text, "[open]") !== false) and (++$endlessloop < 20)) { + $Text = preg_replace_callback("/\[open\](.*?)\[\/open\]/ism", 'bb_opentag', $Text); + } + // Check for [open=Title] text $endlessloop = 0; while ((strpos($Text, "[/open]")!== false) and (strpos($Text, "[open=") !== false) and (++$endlessloop < 20)) { $Text = preg_replace_callback("/\[open=(.*?)\](.*?)\[\/open\]/ism", 'bb_opentag', $Text); } + + + // Declare the format for [quote] layout $QuoteLayout = '
$1
'; @@ -792,7 +804,7 @@ function bbcode($Text, $preserve_nl = false, $tryoembed = true, $cache = false) $endlessloop = 0; while ((strpos($Text, "[/quote]")!== false) and (strpos($Text, "[quote=") !== false) and (++$endlessloop < 20)) $Text = preg_replace("/\[quote=[\"\']*(.*?)[\"\']*\](.*?)\[\/quote\]/ism", - "
" . $t_wrote . "
$2
", + "" . $t_wrote . "
$2
", $Text); // Images diff --git a/include/text.php b/include/text.php index 0a7f84b01..926e2eed6 100644 --- a/include/text.php +++ b/include/text.php @@ -1532,35 +1532,6 @@ function prepare_body(&$item,$attach = false) { $s = sslify($s); - // Look for spoiler - $spoilersearch = '
'; - - // Remove line breaks before the spoiler - while ((strpos($s, "\n".$spoilersearch) !== false)) - $s = str_replace("\n".$spoilersearch, $spoilersearch, $s); - while ((strpos($s, "
".$spoilersearch) !== false)) - $s = str_replace("
".$spoilersearch, $spoilersearch, $s); - - while ((strpos($s, $spoilersearch) !== false)) { - - $pos = strpos($s, $spoilersearch); - $rnd = random_string(8); - $spoilerreplace = '
'.sprintf(t('Click to open/close')).''. - '