diff options
Diffstat (limited to 'util')
-rw-r--r-- | util/Doxyfile | 12 | ||||
-rw-r--r-- | util/Doxygen_phpvarfilter.php | 18 | ||||
-rw-r--r-- | util/db_update.php | 3 | ||||
-rwxr-xr-x | util/fresh | 2 | ||||
-rw-r--r-- | util/hmessages.po | 13503 | ||||
-rw-r--r-- | util/typo.php | 25 |
6 files changed, 6622 insertions, 6941 deletions
diff --git a/util/Doxyfile b/util/Doxyfile index f6c0692ee..7be774a81 100644 --- a/util/Doxyfile +++ b/util/Doxyfile @@ -23,3 +23,15 @@ ALIASES += "TODO=\todo" ALIASES += "BUG=\bug" ALIASES += "hooks=\xrefitem hooks \"Hooks\" \"Hooks List\"" ALIASES += "HOOKS=\hooks" +# Output +QUIET = YES +WARNINGS = YES +# Dot tool config +HAVE_DOT = YES +DOT_IMAGE_FORMAT = svg +INTERACTIVE_SVG = YES +CLASS_GRAPH = YES +COLLABORATION_GRAPH = NO +# fix @var (https://bugzilla.gnome.org/show_bug.cgi?id=626105) +#INPUT_FILTER = "sed -e 's/@var\s/@see /'" +INPUT_FILTER = "php util/Doxygen_phpvarfilter.php" diff --git a/util/Doxygen_phpvarfilter.php b/util/Doxygen_phpvarfilter.php new file mode 100644 index 000000000..da6cf1666 --- /dev/null +++ b/util/Doxygen_phpvarfilter.php @@ -0,0 +1,18 @@ +<?php +/** + * @file Doxygen_phpvarfilter.php + * @brief A Doxygen INPUT_FILTER to parse \@var member variable documentation. + * + * An input filter for Doxygen to parse \@var class member variable documentation, + * so it is a bit more compatible how anybody else interpretes it. + * + * @see http://stackoverflow.com/questions/4325224/doxygen-how-to-describe-class-member-variables-in-php/8472180#8472180 + */ + +$source = file_get_contents($argv[1]); + +$regexp = '#\@var\s+([^\s]+)([^/]+)/\s+(var|public|protected|private)\s+(\$[^\s;=]+)#'; +$replac = '${2} */ ${3} ${1} ${4}'; +$source = preg_replace($regexp, $replac, $source); + +echo $source; diff --git a/util/db_update.php b/util/db_update.php index ceef061c1..8fc7c7616 100644 --- a/util/db_update.php +++ b/util/db_update.php @@ -9,6 +9,7 @@ require_once('boot.php'); require_once('include/cli_startup.php'); cli_startup(); +$build = get_config('system','db_version'); echo "Old DB VERSION: " . $build . "\n"; echo "New DB VERSION: " . DB_UPDATE_VERSION . "\n"; @@ -16,7 +17,7 @@ echo "New DB VERSION: " . DB_UPDATE_VERSION . "\n"; if($build != DB_UPDATE_VERSION) { echo "Updating database..."; - check_config($a); + check_config(); echo "Done\n"; } diff --git a/util/fresh b/util/fresh index 7f57931aa..0482d1215 100755 --- a/util/fresh +++ b/util/fresh @@ -44,8 +44,6 @@ fresh_main($argc,$argv); function process_command($line) { - $a = get_app(); - // split args App::$cmd = $line; diff --git a/util/hmessages.po b/util/hmessages.po index 867d1f1ce..1a9559509 100644 --- a/util/hmessages.po +++ b/util/hmessages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 2.1\n" +"Project-Id-Version: 2.3.5\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-02-17 00:05-0800\n" +"POT-Creation-Date: 2017-05-01 15:36+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <LL@li.org>\n" @@ -17,2022 +17,2104 @@ msgstr "" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" +#: ../../Zotlabs/Access/Permissions.php:46 +msgid "Can view my channel stream and posts" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:47 ../../include/permissions.php:42 +msgid "Can send me their channel stream and posts" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:48 ../../include/permissions.php:36 +msgid "Can view my default channel profile" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:49 ../../include/permissions.php:37 +msgid "Can view my connections" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:50 ../../include/permissions.php:38 +msgid "Can view my file storage and photos" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:51 +msgid "Can upload/modify my file storage and photos" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:52 +msgid "Can view my channel webpages" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:53 +msgid "Can view my wiki pages" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:54 +msgid "Can create/edit my channel webpages" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:55 +msgid "Can write to my wiki pages" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:56 +msgid "Can post on my channel (wall) page" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:57 ../../include/permissions.php:44 +msgid "Can comment on or like my posts" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:58 ../../include/permissions.php:45 +msgid "Can send me private mail messages" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:59 +msgid "Can like/dislike profiles and profile things" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:60 +msgid "Can forward to all my channel connections via @+ mentions in posts" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:61 +msgid "Can chat with me" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:62 ../../include/permissions.php:53 +msgid "Can source my public posts in derived channels" +msgstr "" + +#: ../../Zotlabs/Access/Permissions.php:63 +msgid "Can administer my channel" +msgstr "" + #: ../../Zotlabs/Access/PermissionRoles.php:248 -#: ../../include/permissions.php:945 +#: ../../include/permissions.php:946 msgid "Social Networking" msgstr "" #: ../../Zotlabs/Access/PermissionRoles.php:249 -#: ../../include/permissions.php:945 +#: ../../include/permissions.php:946 msgid "Social - Mostly Public" msgstr "" #: ../../Zotlabs/Access/PermissionRoles.php:250 -#: ../../include/permissions.php:945 +#: ../../include/permissions.php:946 msgid "Social - Restricted" msgstr "" #: ../../Zotlabs/Access/PermissionRoles.php:251 -#: ../../include/permissions.php:945 +#: ../../include/permissions.php:946 msgid "Social - Private" msgstr "" #: ../../Zotlabs/Access/PermissionRoles.php:254 -#: ../../include/permissions.php:946 +#: ../../include/permissions.php:947 msgid "Community Forum" msgstr "" #: ../../Zotlabs/Access/PermissionRoles.php:255 -#: ../../include/permissions.php:946 +#: ../../include/permissions.php:947 msgid "Forum - Mostly Public" msgstr "" #: ../../Zotlabs/Access/PermissionRoles.php:256 -#: ../../include/permissions.php:946 +#: ../../include/permissions.php:947 msgid "Forum - Restricted" msgstr "" #: ../../Zotlabs/Access/PermissionRoles.php:257 -#: ../../include/permissions.php:946 +#: ../../include/permissions.php:947 msgid "Forum - Private" msgstr "" #: ../../Zotlabs/Access/PermissionRoles.php:260 -#: ../../include/permissions.php:947 +#: ../../include/permissions.php:948 msgid "Feed Republish" msgstr "" #: ../../Zotlabs/Access/PermissionRoles.php:261 -#: ../../include/permissions.php:947 +#: ../../include/permissions.php:948 msgid "Feed - Mostly Public" msgstr "" #: ../../Zotlabs/Access/PermissionRoles.php:262 -#: ../../include/permissions.php:947 +#: ../../include/permissions.php:948 msgid "Feed - Restricted" msgstr "" #: ../../Zotlabs/Access/PermissionRoles.php:265 -#: ../../include/permissions.php:948 +#: ../../include/permissions.php:949 msgid "Special Purpose" msgstr "" #: ../../Zotlabs/Access/PermissionRoles.php:266 -#: ../../include/permissions.php:948 +#: ../../include/permissions.php:949 msgid "Special - Celebrity/Soapbox" msgstr "" #: ../../Zotlabs/Access/PermissionRoles.php:267 -#: ../../include/permissions.php:948 +#: ../../include/permissions.php:949 msgid "Special - Group Repository" msgstr "" #: ../../Zotlabs/Access/PermissionRoles.php:270 -#: ../../Zotlabs/Module/Register.php:213 ../../Zotlabs/Module/Connedit.php:879 #: ../../Zotlabs/Module/New_channel.php:132 #: ../../Zotlabs/Module/Settings/Channel.php:463 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1148 -#: ../../extend/addon/addon/cdav/cdav.php:277 -#: ../../extend/addon/addon/cdav/cdav.php:284 ../../include/selectors.php:49 -#: ../../include/selectors.php:66 ../../include/selectors.php:104 -#: ../../include/selectors.php:140 ../../include/connections.php:901 -#: ../../include/connections.php:908 ../../include/permissions.php:949 +#: ../../Zotlabs/Module/Connedit.php:914 ../../Zotlabs/Module/Profiles.php:798 +#: ../../Zotlabs/Module/Register.php:213 ../../addon/cdav/Mod_Cdav.php:1148 +#: ../../addon/cdav/cdav.php:277 ../../addon/cdav/cdav.php:284 +#: ../../include/selectors.php:49 ../../include/selectors.php:66 +#: ../../include/selectors.php:104 ../../include/selectors.php:140 +#: ../../include/permissions.php:950 ../../include/connections.php:675 +#: ../../include/connections.php:682 msgid "Other" msgstr "" #: ../../Zotlabs/Access/PermissionRoles.php:271 -#: ../../include/permissions.php:949 +#: ../../include/permissions.php:950 msgid "Custom/Expert Mode" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:46 -msgid "Can view my channel stream and posts" +#: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Editlayout.php:31 +#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Achievements.php:15 +#: ../../Zotlabs/Module/Hcard.php:12 ../../Zotlabs/Module/Editblock.php:31 +#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Layouts.php:31 +#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Webpages.php:33 +#: ../../Zotlabs/Module/Filestorage.php:59 ../../include/channel.php:945 +msgid "Requested profile is not available." msgstr "" -#: ../../Zotlabs/Access/Permissions.php:47 ../../include/permissions.php:42 -msgid "Can send me their channel stream and posts" +#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 +#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:94 +#: ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Channel.php:115 +#: ../../Zotlabs/Module/Channel.php:245 ../../Zotlabs/Module/Channel.php:285 +#: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Locs.php:87 +#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Events.php:271 +#: ../../Zotlabs/Module/Appman.php:82 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/New_channel.php:77 +#: ../../Zotlabs/Module/New_channel.php:104 +#: ../../Zotlabs/Module/Sharedwithme.php:11 ../../Zotlabs/Module/Setup.php:212 +#: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Thing.php:274 +#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:335 +#: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Editblock.php:67 +#: ../../Zotlabs/Module/Profile.php:83 ../../Zotlabs/Module/Profile.php:100 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Connections.php:29 +#: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/Bookmarks.php:61 +#: ../../Zotlabs/Module/Photos.php:69 ../../Zotlabs/Module/Wiki.php:50 +#: ../../Zotlabs/Module/Wiki.php:216 ../../Zotlabs/Module/Wiki.php:315 +#: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Poke.php:137 +#: ../../Zotlabs/Module/Profile_photo.php:280 +#: ../../Zotlabs/Module/Profile_photo.php:293 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Item.php:221 +#: ../../Zotlabs/Module/Item.php:231 ../../Zotlabs/Module/Item.php:1038 +#: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 +#: ../../Zotlabs/Module/Connedit.php:385 ../../Zotlabs/Module/Chat.php:98 +#: ../../Zotlabs/Module/Chat.php:103 ../../Zotlabs/Module/Menu.php:78 +#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 +#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Group.php:13 +#: ../../Zotlabs/Module/Profiles.php:198 ../../Zotlabs/Module/Profiles.php:635 +#: ../../Zotlabs/Module/Editwebpage.php:68 +#: ../../Zotlabs/Module/Editwebpage.php:89 +#: ../../Zotlabs/Module/Editwebpage.php:107 +#: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Webpages.php:116 ../../Zotlabs/Module/Block.php:26 +#: ../../Zotlabs/Module/Block.php:76 ../../Zotlabs/Module/Editpost.php:17 +#: ../../Zotlabs/Module/Sources.php:74 ../../Zotlabs/Module/Like.php:181 +#: ../../Zotlabs/Module/Suggest.php:28 ../../Zotlabs/Module/Message.php:18 +#: ../../Zotlabs/Module/Mail.php:164 ../../Zotlabs/Module/Register.php:77 +#: ../../Zotlabs/Module/Cover_photo.php:281 +#: ../../Zotlabs/Module/Cover_photo.php:294 ../../Zotlabs/Module/Network.php:15 +#: ../../Zotlabs/Module/Filestorage.php:23 +#: ../../Zotlabs/Module/Filestorage.php:78 +#: ../../Zotlabs/Module/Filestorage.php:93 +#: ../../Zotlabs/Module/Filestorage.php:120 ../../Zotlabs/Module/Common.php:39 +#: ../../Zotlabs/Module/Viewconnections.php:28 +#: ../../Zotlabs/Module/Viewconnections.php:33 +#: ../../Zotlabs/Module/Service_limits.php:11 ../../Zotlabs/Module/Rate.php:113 +#: ../../Zotlabs/Module/Notifications.php:11 ../../Zotlabs/Lib/Chatroom.php:137 +#: ../../Zotlabs/Web/WebServer.php:131 ../../addon/keepout/keepout.php:36 +#: ../../addon/openid/Mod_Id.php:53 ../../addon/gitwiki/Mod_Gitwiki.php:196 +#: ../../addon/gitwiki/Mod_Gitwiki.php:292 +#: ../../addon/diaspora_reconnect/diaspora_reconnect.php:58 +#: ../../addon/pumpio/pumpio.php:40 ../../include/attach.php:144 +#: ../../include/attach.php:191 ../../include/attach.php:255 +#: ../../include/attach.php:269 ../../include/attach.php:276 +#: ../../include/attach.php:344 ../../include/attach.php:358 +#: ../../include/attach.php:365 ../../include/attach.php:442 +#: ../../include/attach.php:909 ../../include/attach.php:983 +#: ../../include/attach.php:1148 ../../include/items.php:3470 +#: ../../include/photos.php:27 +msgid "Permission denied." msgstr "" -#: ../../Zotlabs/Access/Permissions.php:48 ../../include/permissions.php:36 -msgid "Can view my default channel profile" +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 +#: ../../Zotlabs/Module/Editblock.php:113 +msgid "Block Name" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:49 ../../include/permissions.php:37 -msgid "Can view my connections" +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2267 +msgid "Blocks" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:50 ../../include/permissions.php:38 -msgid "Can view my file storage and photos" +#: ../../Zotlabs/Module/Blocks.php:156 +msgid "Block Title" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:51 -msgid "Can upload/modify my file storage and photos" +#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Menu.php:114 +#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Webpages.php:256 +#: ../../include/page_widgets.php:47 +msgid "Created" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:52 -msgid "Can view my channel webpages" +#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Menu.php:115 +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Webpages.php:257 +#: ../../include/page_widgets.php:48 +msgid "Edited" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:53 -msgid "Can view my wiki pages" +#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/New_channel.php:147 +#: ../../Zotlabs/Module/Connedit.php:917 ../../Zotlabs/Module/Menu.php:118 +#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Profiles.php:801 +#: ../../Zotlabs/Module/Webpages.php:244 ../../Zotlabs/Storage/Browser.php:228 +#: ../../Zotlabs/Storage/Browser.php:332 ../../addon/cdav/Mod_Cdav.php:1151 +#: ../../addon/cdav/include/widgets.php:127 +#: ../../addon/cdav/include/widgets.php:164 +msgid "Create" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:54 -msgid "Can create/edit my channel webpages" +#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Editlayout.php:114 +#: ../../Zotlabs/Module/Admin/Profs.php:154 +#: ../../Zotlabs/Module/Settings/Oauth.php:149 +#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Module/Editblock.php:114 +#: ../../Zotlabs/Module/Connections.php:296 +#: ../../Zotlabs/Module/Connections.php:316 ../../Zotlabs/Module/Wiki.php:165 +#: ../../Zotlabs/Module/Wiki.php:275 ../../Zotlabs/Module/Menu.php:112 +#: ../../Zotlabs/Module/Layouts.php:193 +#: ../../Zotlabs/Module/Editwebpage.php:142 +#: ../../Zotlabs/Module/Webpages.php:245 ../../Zotlabs/Module/Editpost.php:80 +#: ../../Zotlabs/Lib/Apps.php:367 ../../Zotlabs/Lib/ThreadItem.php:107 +#: ../../Zotlabs/Storage/Browser.php:238 +#: ../../addon/cdav/include/widgets.php:125 +#: ../../addon/cdav/include/widgets.php:161 +#: ../../addon/gitwiki/Mod_Gitwiki.php:151 +#: ../../addon/gitwiki/Mod_Gitwiki.php:252 ../../include/channel.php:1044 +#: ../../include/channel.php:1048 ../../include/menu.php:113 +#: ../../include/page_widgets.php:9 ../../include/page_widgets.php:39 +msgid "Edit" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:55 -msgid "Can write to my wiki pages" +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Photos.php:1042 +#: ../../Zotlabs/Module/Layouts.php:194 ../../Zotlabs/Module/Webpages.php:246 +#: ../../addon/cdav/include/widgets.php:123 ../../include/conversation.php:1311 +msgid "Share" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:56 -msgid "Can post on my channel (wall) page" +#: ../../Zotlabs/Module/Blocks.php:162 ../../Zotlabs/Module/Editlayout.php:138 +#: ../../Zotlabs/Module/Admin/Accounts.php:173 +#: ../../Zotlabs/Module/Admin/Channels.php:149 +#: ../../Zotlabs/Module/Admin/Profs.php:155 +#: ../../Zotlabs/Module/Settings/Oauth.php:150 +#: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Module/Editblock.php:139 +#: ../../Zotlabs/Module/Connections.php:267 +#: ../../Zotlabs/Module/Photos.php:1143 ../../Zotlabs/Module/Connedit.php:650 +#: ../../Zotlabs/Module/Connedit.php:919 ../../Zotlabs/Module/Group.php:177 +#: ../../Zotlabs/Module/Profiles.php:803 +#: ../../Zotlabs/Module/Editwebpage.php:167 +#: ../../Zotlabs/Module/Webpages.php:247 ../../Zotlabs/Lib/Apps.php:368 +#: ../../Zotlabs/Lib/ThreadItem.php:127 ../../Zotlabs/Storage/Browser.php:239 +#: ../../addon/cdav/Mod_Cdav.php:864 ../../addon/cdav/Mod_Cdav.php:1153 +#: ../../include/conversation.php:654 +msgid "Delete" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:57 ../../include/permissions.php:44 -msgid "Can comment on or like my posts" +#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Events.php:694 +#: ../../Zotlabs/Module/Wiki.php:167 ../../Zotlabs/Module/Layouts.php:198 +#: ../../Zotlabs/Module/Webpages.php:251 ../../Zotlabs/Module/Pubsites.php:59 +#: ../../addon/gitwiki/Mod_Gitwiki.php:153 ../../include/page_widgets.php:42 +msgid "View" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:58 ../../include/permissions.php:45 -msgid "Can send me private mail messages" +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." msgstr "" -#: ../../Zotlabs/Access/Permissions.php:59 -msgid "Can like/dislike profiles and profile things" +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." msgstr "" -#: ../../Zotlabs/Access/Permissions.php:60 -msgid "Can forward to all my channel connections via @+ mentions in posts" +#: ../../Zotlabs/Module/Invite.php:67 +msgid "Please join us on $Projectname" msgstr "" -#: ../../Zotlabs/Access/Permissions.php:61 -msgid "Can chat with me" +#: ../../Zotlabs/Module/Invite.php:77 +msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "" -#: ../../Zotlabs/Access/Permissions.php:62 ../../include/permissions.php:53 -msgid "Can source my public posts in derived channels" +#: ../../Zotlabs/Module/Invite.php:82 +#, php-format +msgid "%s : Message delivery failed." msgstr "" -#: ../../Zotlabs/Access/Permissions.php:63 -msgid "Can administer my channel" -msgstr "" +#: ../../Zotlabs/Module/Invite.php:86 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Storage/Browser.php:106 ../../Zotlabs/Storage/Browser.php:237 -msgid "parent" +#: ../../Zotlabs/Module/Invite.php:105 +msgid "You have no more invitations available" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:130 ../../include/text.php:2695 -msgid "Collection" +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Send invitations" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:133 -msgid "Principal" +#: ../../Zotlabs/Module/Invite.php:137 +msgid "Enter email addresses, one per line:" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:136 -msgid "Addressbook" +#: ../../Zotlabs/Module/Invite.php:138 ../../Zotlabs/Module/Mail.php:303 +msgid "Your message:" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:139 -msgid "Calendar" +#: ../../Zotlabs/Module/Invite.php:139 +msgid "Please join my community on $Projectname." msgstr "" -#: ../../Zotlabs/Storage/Browser.php:142 -msgid "Schedule Inbox" +#: ../../Zotlabs/Module/Invite.php:141 +msgid "You will need to supply this invitation code:" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:145 -msgid "Schedule Outbox" +#: ../../Zotlabs/Module/Invite.php:142 +msgid "1. Register at any $Projectname location (they are all inter-connected)" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:163 ../../Zotlabs/Module/Photos.php:784 -#: ../../Zotlabs/Module/Photos.php:1244 -#: ../../Zotlabs/Module/Embedphotos.php:145 ../../Zotlabs/Lib/Apps.php:559 -#: ../../Zotlabs/Lib/Apps.php:637 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:745 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:746 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:753 -#: ../../include/conversation.php:1177 ../../include/widgets.php:1714 -msgid "Unknown" +#: ../../Zotlabs/Module/Invite.php:144 +msgid "2. Enter my $Projectname network address into the site searchbar." msgstr "" -#: ../../Zotlabs/Storage/Browser.php:224 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/conversation.php:1843 -msgid "Files" +#: ../../Zotlabs/Module/Invite.php:145 +msgid "or visit" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:225 -msgid "Total" +#: ../../Zotlabs/Module/Invite.php:147 +msgid "3. Click [Connect]" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:227 -msgid "Shared" +#: ../../Zotlabs/Module/Invite.php:149 ../../Zotlabs/Module/Locs.php:121 +#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Events.php:493 +#: ../../Zotlabs/Module/Appman.php:134 +#: ../../Zotlabs/Module/Import_items.php:129 ../../Zotlabs/Module/Setup.php:309 +#: ../../Zotlabs/Module/Setup.php:357 ../../Zotlabs/Module/Connect.php:98 +#: ../../Zotlabs/Module/Admin/Features.php:66 +#: ../../Zotlabs/Module/Admin/Plugins.php:438 +#: ../../Zotlabs/Module/Admin/Accounts.php:166 +#: ../../Zotlabs/Module/Admin/Logs.php:84 +#: ../../Zotlabs/Module/Admin/Channels.php:147 +#: ../../Zotlabs/Module/Admin/Themes.php:158 +#: ../../Zotlabs/Module/Admin/Site.php:279 +#: ../../Zotlabs/Module/Admin/Profs.php:157 +#: ../../Zotlabs/Module/Admin/Account_edit.php:74 +#: ../../Zotlabs/Module/Admin/Security.php:104 +#: ../../Zotlabs/Module/Settings/Permcats.php:110 +#: ../../Zotlabs/Module/Settings/Channel.php:476 +#: ../../Zotlabs/Module/Settings/Features.php:47 +#: ../../Zotlabs/Module/Settings/Tokens.php:168 +#: ../../Zotlabs/Module/Settings/Account.php:118 +#: ../../Zotlabs/Module/Settings/Featured.php:50 +#: ../../Zotlabs/Module/Settings/Display.php:203 +#: ../../Zotlabs/Module/Settings/Oauth.php:87 +#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 +#: ../../Zotlabs/Module/Import.php:514 ../../Zotlabs/Module/Cal.php:343 +#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Photos.php:657 +#: ../../Zotlabs/Module/Photos.php:1022 ../../Zotlabs/Module/Photos.php:1062 +#: ../../Zotlabs/Module/Photos.php:1180 ../../Zotlabs/Module/Wiki.php:169 +#: ../../Zotlabs/Module/Pdledit.php:74 ../../Zotlabs/Module/Poke.php:186 +#: ../../Zotlabs/Module/Connedit.php:882 ../../Zotlabs/Module/Chat.php:194 +#: ../../Zotlabs/Module/Chat.php:240 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Group.php:85 ../../Zotlabs/Module/Profiles.php:726 +#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 +#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Module/Mail.php:449 +#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Rate.php:166 +#: ../../Zotlabs/Lib/ThreadItem.php:732 ../../Zotlabs/Widget/Eventstools.php:16 +#: ../../view/theme/redbasic/php/config.php:84 +#: ../../addon/skeleton/skeleton.php:65 ../../addon/gnusoc/gnusoc.php:134 +#: ../../addon/cdav/cdav.php:246 ../../addon/planets/planets.php:157 +#: ../../addon/openclipatar/openclipatar.php:53 +#: ../../addon/wppost/wppost.php:113 ../../addon/nsfw/nsfw.php:92 +#: ../../addon/ijpost/ijpost.php:89 ../../addon/dwpost/dwpost.php:89 +#: ../../addon/mailhost/mailhost.php:40 +#: ../../addon/likebanner/likebanner.php:57 +#: ../../addon/redphotos/redphotos.php:136 ../../addon/irc/irc.php:53 +#: ../../addon/ljpost/ljpost.php:86 ../../addon/startpage/startpage.php:113 +#: ../../addon/diaspora/diaspora.php:712 +#: ../../addon/gitwiki/Mod_Gitwiki.php:155 +#: ../../addon/rainbowtag/rainbowtag.php:85 ../../addon/visage/visage.php:170 +#: ../../addon/nsabait/nsabait.php:161 ../../addon/mailtest/mailtest.php:100 +#: ../../addon/openstreetmap/openstreetmap.php:168 +#: ../../addon/rtof/rtof.php:101 ../../addon/jappixmini/jappixmini.php:371 +#: ../../addon/superblock/superblock.php:120 ../../addon/nofed/nofed.php:80 +#: ../../addon/redred/redred.php:119 ../../addon/logrot/logrot.php:35 +#: ../../addon/frphotos/frphotos.php:96 ../../addon/chords/Mod_Chords.php:60 +#: ../../addon/libertree/libertree.php:85 +#: ../../addon/flattrwidget/flattrwidget.php:124 +#: ../../addon/statusnet/statusnet.php:322 +#: ../../addon/statusnet/statusnet.php:380 +#: ../../addon/statusnet/statusnet.php:432 +#: ../../addon/statusnet/statusnet.php:899 ../../addon/twitter/twitter.php:217 +#: ../../addon/twitter/twitter.php:259 +#: ../../addon/smileybutton/smileybutton.php:281 ../../addon/piwik/piwik.php:95 +#: ../../addon/pageheader/pageheader.php:48 ../../addon/xmpp/xmpp.php:69 +#: ../../addon/pumpio/pumpio.php:237 ../../addon/redfiles/redfiles.php:124 +#: ../../addon/hubwall/hubwall.php:95 ../../include/js_strings.php:22 +msgid "Submit" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:228 ../../Zotlabs/Storage/Browser.php:321 -#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/Connedit.php:882 -#: ../../Zotlabs/Module/New_channel.php:147 -#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Layouts.php:184 -#: ../../Zotlabs/Module/Webpages.php:243 -#: ../../extend/addon/addon/cdav/include/widgets.php:127 -#: ../../extend/addon/addon/cdav/include/widgets.php:164 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1151 -msgid "Create" +#: ../../Zotlabs/Module/Editlayout.php:79 ../../Zotlabs/Module/Editblock.php:79 +#: ../../Zotlabs/Module/Editblock.php:95 +#: ../../Zotlabs/Module/Editwebpage.php:80 ../../Zotlabs/Module/Editpost.php:24 +msgid "Item not found" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:229 ../../Zotlabs/Storage/Browser.php:323 -#: ../../Zotlabs/Module/Photos.php:811 ../../Zotlabs/Module/Photos.php:1368 -#: ../../Zotlabs/Module/Cover_photo.php:357 -#: ../../Zotlabs/Module/Profile_photo.php:412 -#: ../../Zotlabs/Module/Embedphotos.php:157 -#: ../../extend/addon/addon/cdav/include/widgets.php:132 -#: ../../extend/addon/addon/cdav/include/widgets.php:168 -#: ../../include/widgets.php:1727 -msgid "Upload" +#: ../../Zotlabs/Module/Editlayout.php:128 ../../Zotlabs/Module/Layouts.php:129 +#: ../../Zotlabs/Module/Layouts.php:189 +msgid "Layout Name" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:233 -#: ../../Zotlabs/Module/Admin/Channels.php:159 -#: ../../Zotlabs/Module/Connedit.php:867 -#: ../../Zotlabs/Module/Sharedwithme.php:99 ../../Zotlabs/Module/Wiki.php:170 -#: ../../Zotlabs/Module/Settings/Oauth.php:89 -#: ../../Zotlabs/Module/Settings/Oauth.php:115 -#: ../../Zotlabs/Module/Chat.php:250 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1136 -#: ../../extend/addon/addon/rendezvous/rendezvous.php:172 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:156 -#: ../../include/widgets.php:990 -msgid "Name" +#: ../../Zotlabs/Module/Editlayout.php:129 ../../Zotlabs/Module/Layouts.php:132 +msgid "Layout Description (Optional)" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:234 ../../Zotlabs/Module/Wiki.php:171 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:157 -msgid "Type" +#: ../../Zotlabs/Module/Editlayout.php:137 +msgid "Edit Layout" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:235 -#: ../../Zotlabs/Module/Sharedwithme.php:101 ../../include/text.php:1408 -msgid "Size" +#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 +#: ../../Zotlabs/Module/Import_items.php:120 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:68 +#: ../../Zotlabs/Module/Like.php:283 ../../Zotlabs/Web/WebServer.php:130 +#: ../../addon/redphotos/redphotos.php:119 ../../addon/frphotos/frphotos.php:81 +#: ../../addon/redfiles/redfiles.php:109 ../../include/items.php:327 +msgid "Permission denied" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:236 -#: ../../Zotlabs/Module/Sharedwithme.php:102 -msgid "Last Modified" +#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 +msgid "Invalid profile identifier." msgstr "" -#: ../../Zotlabs/Storage/Browser.php:238 ../../Zotlabs/Module/Editpost.php:85 -#: ../../Zotlabs/Module/Editblock.php:109 -#: ../../Zotlabs/Module/Connections.php:300 -#: ../../Zotlabs/Module/Connections.php:320 -#: ../../Zotlabs/Module/Admin/Profs.php:154 -#: ../../Zotlabs/Module/Editlayout.php:114 -#: ../../Zotlabs/Module/Editwebpage.php:145 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Layouts.php:192 -#: ../../Zotlabs/Module/Webpages.php:244 ../../Zotlabs/Module/Wiki.php:163 -#: ../../Zotlabs/Module/Wiki.php:273 -#: ../../Zotlabs/Module/Settings/Oauth.php:149 -#: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Lib/ThreadItem.php:106 -#: ../../Zotlabs/Lib/Apps.php:357 -#: ../../extend/addon/addon/cdav/include/widgets.php:125 -#: ../../extend/addon/addon/cdav/include/widgets.php:161 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:149 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:251 -#: ../../include/menu.php:113 ../../include/channel.php:1044 -#: ../../include/channel.php:1048 ../../include/page_widgets.php:9 -#: ../../include/page_widgets.php:39 -msgid "Edit" +#: ../../Zotlabs/Module/Profperm.php:111 +msgid "Profile Visibility Editor" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:239 ../../Zotlabs/Module/Photos.php:1174 -#: ../../Zotlabs/Module/Editblock.php:134 -#: ../../Zotlabs/Module/Connections.php:271 -#: ../../Zotlabs/Module/Admin/Profs.php:155 -#: ../../Zotlabs/Module/Admin/Accounts.php:173 -#: ../../Zotlabs/Module/Admin/Channels.php:149 -#: ../../Zotlabs/Module/Editlayout.php:137 -#: ../../Zotlabs/Module/Editwebpage.php:170 -#: ../../Zotlabs/Module/Connedit.php:626 ../../Zotlabs/Module/Connedit.php:884 -#: ../../Zotlabs/Module/Group.php:177 ../../Zotlabs/Module/Blocks.php:162 -#: ../../Zotlabs/Module/Webpages.php:246 -#: ../../Zotlabs/Module/Settings/Oauth.php:150 -#: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Lib/ThreadItem.php:126 -#: ../../Zotlabs/Lib/Apps.php:358 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:864 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1153 -#: ../../include/conversation.php:656 -msgid "Delete" +#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1362 +msgid "Profile" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:299 -#, php-format -msgid "You are using %1$s of your available file storage." +#: ../../Zotlabs/Module/Profperm.php:115 +msgid "Click on a contact to add or remove." msgstr "" -#: ../../Zotlabs/Storage/Browser.php:304 -#, php-format -msgid "You are using %1$s of %2$s available file storage. (%3$s%)" +#: ../../Zotlabs/Module/Profperm.php:124 +msgid "Visible To" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:315 -msgid "WARNING:" +#: ../../Zotlabs/Module/Profperm.php:140 +#: ../../Zotlabs/Module/Connections.php:141 +msgid "All Connections" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:320 -msgid "Create new folder" +#: ../../Zotlabs/Module/Regdir.php:49 ../../Zotlabs/Module/Dirsearch.php:25 +msgid "This site is not a directory server" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:322 -msgid "Upload file" +#: ../../Zotlabs/Module/Channel.php:32 ../../Zotlabs/Module/Chat.php:25 +#: ../../addon/gitwiki/Mod_Gitwiki.php:28 ../../addon/chess/chess.php:403 +msgid "You must be logged in to see this page." msgstr "" -#: ../../Zotlabs/Storage/Browser.php:335 -msgid "Drop files here to immediately upload" +#: ../../Zotlabs/Module/Channel.php:47 ../../Zotlabs/Module/Hcard.php:35 +#: ../../Zotlabs/Module/Profile.php:43 +msgid "Posts and comments" msgstr "" -#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Like.php:283 -#: ../../Zotlabs/Module/Group.php:72 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:68 -#: ../../Zotlabs/Module/Import_items.php:114 -#: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:62 -#: ../../extend/addon/addon/frphotos/frphotos.php:81 -#: ../../extend/addon/addon/redfiles/redfiles.php:109 -#: ../../extend/addon/addon/redphotos/redphotos.php:119 -#: ../../include/items.php:327 -msgid "Permission denied" +#: ../../Zotlabs/Module/Channel.php:54 ../../Zotlabs/Module/Hcard.php:42 +#: ../../Zotlabs/Module/Profile.php:50 +msgid "Only posts" msgstr "" -#: ../../Zotlabs/Web/WebServer.php:128 ../../Zotlabs/Web/Router.php:67 -#: ../../Zotlabs/Module/Achievements.php:34 -#: ../../Zotlabs/Module/Register.php:77 ../../Zotlabs/Module/Photos.php:73 -#: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Authtest.php:16 -#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Editblock.php:67 -#: ../../Zotlabs/Module/Page.php:35 ../../Zotlabs/Module/Page.php:91 -#: ../../Zotlabs/Module/Connections.php:33 -#: ../../Zotlabs/Module/Cover_photo.php:277 -#: ../../Zotlabs/Module/Cover_photo.php:290 -#: ../../Zotlabs/Module/Editlayout.php:67 -#: ../../Zotlabs/Module/Editlayout.php:90 -#: ../../Zotlabs/Module/Editwebpage.php:68 -#: ../../Zotlabs/Module/Editwebpage.php:89 -#: ../../Zotlabs/Module/Editwebpage.php:104 -#: ../../Zotlabs/Module/Editwebpage.php:126 ../../Zotlabs/Module/Like.php:181 -#: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Menu.php:78 -#: ../../Zotlabs/Module/Locs.php:87 ../../Zotlabs/Module/Connedit.php:388 -#: ../../Zotlabs/Module/Filestorage.php:23 -#: ../../Zotlabs/Module/Filestorage.php:78 -#: ../../Zotlabs/Module/Filestorage.php:93 -#: ../../Zotlabs/Module/Filestorage.php:120 -#: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Group.php:13 -#: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76 -#: ../../Zotlabs/Module/Manage.php:10 ../../Zotlabs/Module/Mitem.php:115 -#: ../../Zotlabs/Module/Appman.php:81 ../../Zotlabs/Module/Mood.php:116 -#: ../../Zotlabs/Module/Profiles.php:198 ../../Zotlabs/Module/Profiles.php:636 -#: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Invite.php:17 -#: ../../Zotlabs/Module/Invite.php:94 ../../Zotlabs/Module/New_channel.php:77 -#: ../../Zotlabs/Module/New_channel.php:104 ../../Zotlabs/Module/Setup.php:212 -#: ../../Zotlabs/Module/Notifications.php:11 ../../Zotlabs/Module/Poke.php:137 -#: ../../Zotlabs/Module/Item.php:220 ../../Zotlabs/Module/Item.php:230 -#: ../../Zotlabs/Module/Item.php:1067 ../../Zotlabs/Module/Profile.php:70 -#: ../../Zotlabs/Module/Profile.php:87 ../../Zotlabs/Module/Blocks.php:73 -#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Layouts.php:71 -#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 -#: ../../Zotlabs/Module/Rate.php:113 -#: ../../Zotlabs/Module/Profile_photo.php:274 -#: ../../Zotlabs/Module/Profile_photo.php:287 -#: ../../Zotlabs/Module/Events.php:271 ../../Zotlabs/Module/Common.php:39 -#: ../../Zotlabs/Module/Channel.php:107 ../../Zotlabs/Module/Channel.php:237 -#: ../../Zotlabs/Module/Channel.php:277 ../../Zotlabs/Module/Regmod.php:21 -#: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Message.php:18 -#: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Webpages.php:116 -#: ../../Zotlabs/Module/Sharedwithme.php:11 ../../Zotlabs/Module/Wiki.php:49 -#: ../../Zotlabs/Module/Wiki.php:214 ../../Zotlabs/Module/Wiki.php:313 -#: ../../Zotlabs/Module/Wiki.php:318 ../../Zotlabs/Module/Sources.php:74 -#: ../../Zotlabs/Module/Suggest.php:30 ../../Zotlabs/Module/Thing.php:274 -#: ../../Zotlabs/Module/Thing.php:294 ../../Zotlabs/Module/Thing.php:335 -#: ../../Zotlabs/Module/Mail.php:164 -#: ../../Zotlabs/Module/Viewconnections.php:28 -#: ../../Zotlabs/Module/Viewconnections.php:33 -#: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Chat.php:100 -#: ../../Zotlabs/Module/Chat.php:105 ../../Zotlabs/Lib/Chatroom.php:137 -#: ../../extend/addon/addon/friendica/dfrn_confirm.php:55 -#: ../../extend/addon/addon/keepout/keepout.php:36 -#: ../../extend/addon/addon/pumpio/pumpio.php:40 -#: ../../extend/addon/addon/openid/Mod_Id.php:53 -#: ../../extend/addon/addon/diaspora_reconnect/diaspora_reconnect.php:58 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:194 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:291 -#: ../../include/attach.php:144 ../../include/attach.php:191 -#: ../../include/attach.php:255 ../../include/attach.php:269 -#: ../../include/attach.php:276 ../../include/attach.php:343 -#: ../../include/attach.php:357 ../../include/attach.php:364 -#: ../../include/attach.php:441 ../../include/attach.php:908 -#: ../../include/attach.php:979 ../../include/attach.php:1137 -#: ../../include/photos.php:27 ../../include/items.php:3445 -msgid "Permission denied." +#: ../../Zotlabs/Module/Channel.php:112 +msgid "Insufficient permissions. Request redirected to profile page." msgstr "" -#: ../../Zotlabs/Web/Router.php:152 ../../Zotlabs/Module/Display.php:124 -#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Block.php:79 -#: ../../Zotlabs/Lib/NativeWikiPage.php:502 ../../include/help.php:66 -msgid "Page not found." +#: ../../Zotlabs/Module/Uexport.php:57 ../../Zotlabs/Module/Uexport.php:58 +msgid "Export Channel" msgstr "" -#: ../../Zotlabs/Zot/Auth.php:138 +#: ../../Zotlabs/Module/Uexport.php:59 msgid "" -"Remote authentication blocked. You are logged into this site locally. Please " -"logout and retry." +"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 "" -#: ../../Zotlabs/Zot/Auth.php:250 -#: ../../extend/addon/addon/openid/Mod_Openid.php:76 -#: ../../extend/addon/addon/openid/Mod_Openid.php:178 -#, php-format -msgid "Welcome %s. Remote authentication successful." +#: ../../Zotlabs/Module/Uexport.php:60 +msgid "Export Content" msgstr "" -#: ../../Zotlabs/Module/Achievements.php:15 -#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editblock.php:31 -#: ../../Zotlabs/Module/Editlayout.php:31 -#: ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Profile.php:20 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Webpages.php:33 -#: ../../include/channel.php:945 -msgid "Requested profile is not available." +#: ../../Zotlabs/Module/Uexport.php:61 +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 "" -#: ../../Zotlabs/Module/Achievements.php:38 -msgid "Some blurb about what to do when you're new here" +#: ../../Zotlabs/Module/Uexport.php:63 +msgid "Export your posts from a given year." msgstr "" -#: ../../Zotlabs/Module/Display.php:17 ../../Zotlabs/Module/Photos.php:508 -#: ../../Zotlabs/Module/Search.php:17 ../../Zotlabs/Module/Ratings.php:83 -#: ../../Zotlabs/Module/Directory.php:64 -#: ../../Zotlabs/Module/Viewconnections.php:23 -#: ../../extend/addon/addon/friendica/dfrn_request.php:794 -msgid "Public access denied." +#: ../../Zotlabs/Module/Uexport.php:65 +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 "" -#: ../../Zotlabs/Module/Display.php:38 ../../Zotlabs/Module/Admin.php:60 -#: ../../Zotlabs/Module/Admin/Themes.php:69 -#: ../../Zotlabs/Module/Admin/Plugins.php:254 -#: ../../Zotlabs/Module/Filestorage.php:32 ../../Zotlabs/Module/Thing.php:89 -#: ../../Zotlabs/Module/Viewsrc.php:24 ../../include/items.php:3366 -msgid "Item not found." +#: ../../Zotlabs/Module/Uexport.php:66 +#, php-format +msgid "" +"To select all posts for a given year, such as this year, visit <a href=\"%1$s" +"\">%2$s</a>" msgstr "" -#: ../../Zotlabs/Module/Register.php:49 -msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +#: ../../Zotlabs/Module/Uexport.php:67 +#, php-format +msgid "" +"To select all posts for a given month, such as January of this year, visit " +"<a href=\"%1$s\">%2$s</a>" msgstr "" -#: ../../Zotlabs/Module/Register.php:55 +#: ../../Zotlabs/Module/Uexport.php:68 +#, php-format msgid "" -"Please indicate acceptance of the Terms of Service. Registration failed." +"These content files may be imported or restored by visiting <a href=\"%1$s\">" +"%2$s</a> on any site containing your channel. For best results please import " +"or restore these in date order (oldest first)." msgstr "" -#: ../../Zotlabs/Module/Register.php:89 -msgid "Passwords do not match." +#: ../../Zotlabs/Module/Search.php:17 ../../Zotlabs/Module/Photos.php:490 +#: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Directory.php:63 +#: ../../Zotlabs/Module/Display.php:22 +#: ../../Zotlabs/Module/Viewconnections.php:23 +msgid "Public access denied." msgstr "" -#: ../../Zotlabs/Module/Register.php:131 -msgid "" -"Registration successful. Please check your email for validation instructions." +#: ../../Zotlabs/Module/Search.php:44 ../../Zotlabs/Module/Connections.php:312 +#: ../../Zotlabs/Lib/Apps.php:237 ../../Zotlabs/Widget/Sitesearch.php:31 +#: ../../include/text.php:1027 ../../include/text.php:1039 +#: ../../include/acl_selectors.php:213 ../../include/nav.php:164 +msgid "Search" msgstr "" -#: ../../Zotlabs/Module/Register.php:137 -msgid "Your registration is pending approval by the site owner." +#: ../../Zotlabs/Module/Search.php:224 +#, php-format +msgid "Items tagged with: %s" msgstr "" -#: ../../Zotlabs/Module/Register.php:140 -msgid "Your registration can not be processed." +#: ../../Zotlabs/Module/Search.php:226 +#, php-format +msgid "Search results for: %s" msgstr "" -#: ../../Zotlabs/Module/Register.php:184 -msgid "Registration on this hub is disabled." +#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 +msgid "Location not found." msgstr "" -#: ../../Zotlabs/Module/Register.php:193 -msgid "Registration on this hub is by approval only." +#: ../../Zotlabs/Module/Locs.php:62 +msgid "Location lookup failed." msgstr "" -#: ../../Zotlabs/Module/Register.php:194 -msgid "<a href=\"pubsites\">Register at another affiliated hub.</a>" +#: ../../Zotlabs/Module/Locs.php:66 +msgid "" +"Please select another location to become primary before removing the primary " +"location." msgstr "" -#: ../../Zotlabs/Module/Register.php:204 -msgid "" -"This site has exceeded the number of allowed daily account registrations. " -"Please try again tomorrow." +#: ../../Zotlabs/Module/Locs.php:95 +msgid "Syncing locations" msgstr "" -#: ../../Zotlabs/Module/Register.php:221 ../../Zotlabs/Module/Siteinfo.php:27 -msgid "Terms of Service" +#: ../../Zotlabs/Module/Locs.php:105 +msgid "No locations found." msgstr "" -#: ../../Zotlabs/Module/Register.php:227 -#, php-format -msgid "I accept the %s for this website" +#: ../../Zotlabs/Module/Locs.php:116 +msgid "Manage Channel Locations" msgstr "" -#: ../../Zotlabs/Module/Register.php:229 -#, php-format -msgid "I am over 13 years of age and accept the %s for this website" +#: ../../Zotlabs/Module/Locs.php:117 ../../Zotlabs/Module/Events.php:475 +#: ../../Zotlabs/Module/Profiles.php:509 ../../Zotlabs/Module/Profiles.php:737 +#: ../../Zotlabs/Module/Pubsites.php:51 ../../addon/cdav/Mod_Cdav.php:839 +#: ../../include/js_strings.php:25 +msgid "Location" msgstr "" -#: ../../Zotlabs/Module/Register.php:233 -msgid "Your email address" +#: ../../Zotlabs/Module/Locs.php:118 +#: ../../Zotlabs/Module/Admin/Channels.php:160 +#: ../../Zotlabs/Module/Connedit.php:909 ../../Zotlabs/Module/Profiles.php:502 +#: ../../Zotlabs/Module/Profiles.php:793 ../../addon/cdav/Mod_Cdav.php:1143 +msgid "Address" msgstr "" -#: ../../Zotlabs/Module/Register.php:234 -msgid "Choose a password" +#: ../../Zotlabs/Module/Locs.php:119 +msgid "Primary" msgstr "" -#: ../../Zotlabs/Module/Register.php:235 -msgid "Please re-enter your password" +#: ../../Zotlabs/Module/Locs.php:120 ../../Zotlabs/Module/Menu.php:113 +msgid "Drop" msgstr "" -#: ../../Zotlabs/Module/Register.php:236 -msgid "Please enter your invitation code" +#: ../../Zotlabs/Module/Locs.php:122 +msgid "Sync Now" msgstr "" -#: ../../Zotlabs/Module/Register.php:237 -#: ../../Zotlabs/Module/New_channel.php:134 -msgid "Name or caption" +#: ../../Zotlabs/Module/Locs.php:123 +msgid "Please wait several minutes between consecutive operations." msgstr "" -#: ../../Zotlabs/Module/Register.php:237 -#: ../../Zotlabs/Module/New_channel.php:134 +#: ../../Zotlabs/Module/Locs.php:124 msgid "" -"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " -"Group\"" +"When possible, drop a location by logging into that website/hub and removing " +"your channel." msgstr "" -#: ../../Zotlabs/Module/Register.php:239 -#: ../../Zotlabs/Module/New_channel.php:136 -msgid "Choose a short nickname" +#: ../../Zotlabs/Module/Locs.php:125 +msgid "Use this form to drop the location if the hub is no longer operating." msgstr "" -#: ../../Zotlabs/Module/Register.php:239 -#: ../../Zotlabs/Module/New_channel.php:136 -#, php-format -msgid "" -"Your nickname will be used to create an easy to remember channel address e." -"g. nickname%s" +#: ../../Zotlabs/Module/Mitem.php:28 ../../Zotlabs/Module/Menu.php:144 +msgid "Menu not found." msgstr "" -#: ../../Zotlabs/Module/Register.php:240 -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "Channel role and privacy" +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." msgstr "" -#: ../../Zotlabs/Module/Register.php:240 -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "Select a channel role with your privacy requirements." +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." msgstr "" -#: ../../Zotlabs/Module/Register.php:240 -#: ../../Zotlabs/Module/New_channel.php:137 -msgid "Read more about roles" +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." msgstr "" -#: ../../Zotlabs/Module/Register.php:241 -msgid "no" +#: ../../Zotlabs/Module/Mitem.php:120 ../../Zotlabs/Module/Menu.php:166 +#: ../../Zotlabs/Module/Xchan.php:41 +msgid "Not found." msgstr "" -#: ../../Zotlabs/Module/Register.php:241 -msgid "yes" +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 +msgid "Menu Item Permissions" msgstr "" -#: ../../Zotlabs/Module/Register.php:253 -#: ../../Zotlabs/Module/Admin/Site.php:261 -msgid "Registration" +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 +#: ../../Zotlabs/Module/Settings/Channel.php:510 +msgid "(click to open/close)" msgstr "" -#: ../../Zotlabs/Module/Register.php:258 -msgid "Membership on this site is by invitation only." +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 +msgid "Link Name" msgstr "" -#: ../../Zotlabs/Module/Register.php:270 ../../include/nav.php:162 -#: ../../boot.php:1713 -msgid "Register" +#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 +msgid "Link or Submenu Target" msgstr "" -#: ../../Zotlabs/Module/Register.php:271 -msgid "" -"This site may require email verification after submitting this form. If you " -"are returned to a login page, please check your email for instructions." +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Enter URL of the link or select a menu name to create a submenu" msgstr "" -#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 -#, php-format -msgid "Fetching URL returns error: %1$s" +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 +msgid "Use magic-auth if available" msgstr "" -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 +#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 +#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Admin/Site.php:237 +#: ../../Zotlabs/Module/Settings/Channel.php:294 +#: ../../Zotlabs/Module/Settings/Display.php:103 +#: ../../Zotlabs/Module/Api.php:97 ../../Zotlabs/Module/Photos.php:642 +#: ../../Zotlabs/Module/Wiki.php:180 ../../Zotlabs/Module/Connedit.php:392 +#: ../../Zotlabs/Module/Connedit.php:775 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Profiles.php:681 +#: ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 ../../boot.php:1633 +#: ../../view/theme/redbasic/php/config.php:89 +#: ../../view/theme/redbasic/php/config.php:104 ../../addon/cdav/cdav.php:234 +#: ../../addon/planets/planets.php:153 ../../addon/wppost/wppost.php:82 +#: ../../addon/wppost/wppost.php:105 ../../addon/wppost/wppost.php:109 +#: ../../addon/nsfw/nsfw.php:84 ../../addon/ijpost/ijpost.php:73 +#: ../../addon/ijpost/ijpost.php:85 ../../addon/dwpost/dwpost.php:73 +#: ../../addon/dwpost/dwpost.php:85 ../../addon/ljpost/ljpost.php:70 +#: ../../addon/ljpost/ljpost.php:82 ../../addon/gitwiki/Mod_Gitwiki.php:166 +#: ../../addon/rainbowtag/rainbowtag.php:81 ../../addon/visage/visage.php:166 +#: ../../addon/nsabait/nsabait.php:157 ../../addon/rtof/rtof.php:81 +#: ../../addon/rtof/rtof.php:85 ../../addon/jappixmini/jappixmini.php:309 +#: ../../addon/jappixmini/jappixmini.php:313 +#: ../../addon/jappixmini/jappixmini.php:343 +#: ../../addon/jappixmini/jappixmini.php:351 +#: ../../addon/jappixmini/jappixmini.php:355 +#: ../../addon/jappixmini/jappixmini.php:359 ../../addon/nofed/nofed.php:72 +#: ../../addon/nofed/nofed.php:76 ../../addon/redred/redred.php:95 +#: ../../addon/redred/redred.php:99 ../../addon/libertree/libertree.php:69 +#: ../../addon/libertree/libertree.php:81 +#: ../../addon/flattrwidget/flattrwidget.php:120 +#: ../../addon/statusnet/statusnet.php:389 +#: ../../addon/statusnet/statusnet.php:411 +#: ../../addon/statusnet/statusnet.php:415 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:242 +#: ../../addon/twitter/twitter.php:246 ../../addon/twitter/twitter.php:255 +#: ../../addon/smileybutton/smileybutton.php:273 +#: ../../addon/smileybutton/smileybutton.php:277 ../../addon/xmpp/xmpp.php:53 +#: ../../addon/pumpio/pumpio.php:219 ../../addon/pumpio/pumpio.php:223 +#: ../../addon/pumpio/pumpio.php:227 ../../addon/pumpio/pumpio.php:231 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 +msgid "No" msgstr "" -#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:729 -#: ../../Zotlabs/Module/Profile_photo.php:115 -#: ../../Zotlabs/Module/Profile_photo.php:220 -#: ../../include/photo/photo_driver.php:730 -msgid "Profile Photos" +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 +#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 +#: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 +#: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Admin/Site.php:239 +#: ../../Zotlabs/Module/Settings/Channel.php:294 +#: ../../Zotlabs/Module/Settings/Display.php:103 +#: ../../Zotlabs/Module/Api.php:96 ../../Zotlabs/Module/Photos.php:642 +#: ../../Zotlabs/Module/Wiki.php:180 ../../Zotlabs/Module/Connedit.php:392 +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +#: ../../Zotlabs/Module/Profiles.php:681 +#: ../../Zotlabs/Module/Filestorage.php:160 +#: ../../Zotlabs/Module/Filestorage.php:168 ../../boot.php:1633 +#: ../../view/theme/redbasic/php/config.php:89 +#: ../../view/theme/redbasic/php/config.php:104 ../../addon/cdav/cdav.php:234 +#: ../../addon/planets/planets.php:153 ../../addon/wppost/wppost.php:82 +#: ../../addon/wppost/wppost.php:105 ../../addon/wppost/wppost.php:109 +#: ../../addon/nsfw/nsfw.php:84 ../../addon/ijpost/ijpost.php:73 +#: ../../addon/ijpost/ijpost.php:85 ../../addon/dwpost/dwpost.php:73 +#: ../../addon/dwpost/dwpost.php:85 ../../addon/ljpost/ljpost.php:70 +#: ../../addon/ljpost/ljpost.php:82 ../../addon/gitwiki/Mod_Gitwiki.php:166 +#: ../../addon/rainbowtag/rainbowtag.php:81 ../../addon/visage/visage.php:166 +#: ../../addon/nsabait/nsabait.php:157 ../../addon/rtof/rtof.php:81 +#: ../../addon/rtof/rtof.php:85 ../../addon/jappixmini/jappixmini.php:309 +#: ../../addon/jappixmini/jappixmini.php:313 +#: ../../addon/jappixmini/jappixmini.php:343 +#: ../../addon/jappixmini/jappixmini.php:351 +#: ../../addon/jappixmini/jappixmini.php:355 +#: ../../addon/jappixmini/jappixmini.php:359 ../../addon/nofed/nofed.php:72 +#: ../../addon/nofed/nofed.php:76 ../../addon/redred/redred.php:95 +#: ../../addon/redred/redred.php:99 ../../addon/libertree/libertree.php:69 +#: ../../addon/libertree/libertree.php:81 +#: ../../addon/flattrwidget/flattrwidget.php:120 +#: ../../addon/statusnet/statusnet.php:389 +#: ../../addon/statusnet/statusnet.php:411 +#: ../../addon/statusnet/statusnet.php:415 +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:242 +#: ../../addon/twitter/twitter.php:246 ../../addon/twitter/twitter.php:255 +#: ../../addon/smileybutton/smileybutton.php:273 +#: ../../addon/smileybutton/smileybutton.php:277 ../../addon/xmpp/xmpp.php:53 +#: ../../addon/pumpio/pumpio.php:219 ../../addon/pumpio/pumpio.php:223 +#: ../../addon/pumpio/pumpio.php:227 ../../addon/pumpio/pumpio.php:231 +#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 +#: ../../include/dir_fns.php:145 +msgid "Yes" msgstr "" -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:129 -msgid "Album not found." +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 +msgid "Open link in new window" msgstr "" -#: ../../Zotlabs/Module/Photos.php:112 -msgid "Delete Album" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Order in list" msgstr "" -#: ../../Zotlabs/Module/Photos.php:133 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Higher numbers will sink to bottom of listing" msgstr "" -#: ../../Zotlabs/Module/Photos.php:190 ../../Zotlabs/Module/Photos.php:1054 -msgid "Delete Photo" +#: ../../Zotlabs/Module/Mitem.php:165 +msgid "Submit and finish" msgstr "" -#: ../../Zotlabs/Module/Photos.php:519 -msgid "No photos selected" +#: ../../Zotlabs/Module/Mitem.php:166 +msgid "Submit and continue" msgstr "" -#: ../../Zotlabs/Module/Photos.php:568 -msgid "Access to this item is restricted." +#: ../../Zotlabs/Module/Mitem.php:174 +msgid "Menu:" msgstr "" -#: ../../Zotlabs/Module/Photos.php:607 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." +#: ../../Zotlabs/Module/Mitem.php:177 +msgid "Link Target" msgstr "" -#: ../../Zotlabs/Module/Photos.php:610 -#, php-format -msgid "%1$.2f MB photo storage used." +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Edit menu" msgstr "" -#: ../../Zotlabs/Module/Photos.php:646 -msgid "Upload Photos" +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Edit element" msgstr "" -#: ../../Zotlabs/Module/Photos.php:650 -msgid "Enter an album name" +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Drop element" msgstr "" -#: ../../Zotlabs/Module/Photos.php:651 -msgid "or select an existing album (doubleclick)" +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "New element" msgstr "" -#: ../../Zotlabs/Module/Photos.php:652 -msgid "Create a status post for this upload" +#: ../../Zotlabs/Module/Mitem.php:186 +msgid "Edit this menu container" msgstr "" -#: ../../Zotlabs/Module/Photos.php:652 ../../Zotlabs/Module/Admin/Site.php:218 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Connedit.php:402 ../../Zotlabs/Module/Connedit.php:740 -#: ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 ../../Zotlabs/Module/Mitem.php:162 -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 -#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:682 -#: ../../Zotlabs/Module/Api.php:97 ../../Zotlabs/Module/Events.php:470 -#: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Wiki.php:178 -#: ../../Zotlabs/Module/Settings/Channel.php:294 -#: ../../Zotlabs/Module/Settings/Display.php:103 -#: ../../extend/addon/addon/dwpost/dwpost.php:73 -#: ../../extend/addon/addon/dwpost/dwpost.php:85 -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:120 -#: ../../extend/addon/addon/friendica/dfrn_request.php:865 -#: ../../extend/addon/addon/ijpost/ijpost.php:73 -#: ../../extend/addon/addon/ijpost/ijpost.php:85 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:309 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:313 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:343 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:351 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:355 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:359 -#: ../../extend/addon/addon/libertree/libertree.php:69 -#: ../../extend/addon/addon/libertree/libertree.php:81 -#: ../../extend/addon/addon/ljpost/ljpost.php:70 -#: ../../extend/addon/addon/ljpost/ljpost.php:82 -#: ../../extend/addon/addon/nofed/nofed.php:72 -#: ../../extend/addon/addon/nofed/nofed.php:76 -#: ../../extend/addon/addon/nsabait/nsabait.php:157 -#: ../../extend/addon/addon/nsfw/nsfw.php:84 -#: ../../extend/addon/addon/planets/planets.php:153 -#: ../../extend/addon/addon/pumpio/pumpio.php:219 -#: ../../extend/addon/addon/pumpio/pumpio.php:223 -#: ../../extend/addon/addon/pumpio/pumpio.php:227 -#: ../../extend/addon/addon/pumpio/pumpio.php:231 -#: ../../extend/addon/addon/rainbowtag/rainbowtag.php:81 -#: ../../extend/addon/addon/redred/redred.php:95 -#: ../../extend/addon/addon/redred/redred.php:99 -#: ../../extend/addon/addon/rtof/rtof.php:81 -#: ../../extend/addon/addon/rtof/rtof.php:85 -#: ../../extend/addon/addon/smileybutton/smileybutton.php:273 -#: ../../extend/addon/addon/smileybutton/smileybutton.php:277 -#: ../../extend/addon/addon/statusnet/statusnet.php:389 -#: ../../extend/addon/addon/statusnet/statusnet.php:411 -#: ../../extend/addon/addon/statusnet/statusnet.php:415 -#: ../../extend/addon/addon/statusnet/statusnet.php:424 -#: ../../extend/addon/addon/twitter/twitter.php:242 -#: ../../extend/addon/addon/twitter/twitter.php:246 -#: ../../extend/addon/addon/twitter/twitter.php:255 -#: ../../extend/addon/addon/visage/visage.php:166 -#: ../../extend/addon/addon/wppost/wppost.php:82 -#: ../../extend/addon/addon/wppost/wppost.php:105 -#: ../../extend/addon/addon/wppost/wppost.php:109 -#: ../../extend/addon/addon/xmpp/xmpp.php:53 -#: ../../extend/addon/addon/cdav/cdav.php:234 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:164 -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1736 -msgid "No" +#: ../../Zotlabs/Module/Mitem.php:187 +msgid "Add menu element" msgstr "" -#: ../../Zotlabs/Module/Photos.php:652 ../../Zotlabs/Module/Admin/Site.php:220 -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -#: ../../Zotlabs/Module/Connedit.php:402 -#: ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 ../../Zotlabs/Module/Mitem.php:162 -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 -#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Profiles.php:682 -#: ../../Zotlabs/Module/Api.php:96 ../../Zotlabs/Module/Events.php:470 -#: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Removeme.php:63 -#: ../../Zotlabs/Module/Wiki.php:178 -#: ../../Zotlabs/Module/Settings/Channel.php:294 -#: ../../Zotlabs/Module/Settings/Display.php:103 -#: ../../extend/addon/addon/dwpost/dwpost.php:73 -#: ../../extend/addon/addon/dwpost/dwpost.php:85 -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:120 -#: ../../extend/addon/addon/friendica/dfrn_request.php:865 -#: ../../extend/addon/addon/ijpost/ijpost.php:73 -#: ../../extend/addon/addon/ijpost/ijpost.php:85 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:309 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:313 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:343 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:351 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:355 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:359 -#: ../../extend/addon/addon/libertree/libertree.php:69 -#: ../../extend/addon/addon/libertree/libertree.php:81 -#: ../../extend/addon/addon/ljpost/ljpost.php:70 -#: ../../extend/addon/addon/ljpost/ljpost.php:82 -#: ../../extend/addon/addon/nofed/nofed.php:72 -#: ../../extend/addon/addon/nofed/nofed.php:76 -#: ../../extend/addon/addon/nsabait/nsabait.php:157 -#: ../../extend/addon/addon/nsfw/nsfw.php:84 -#: ../../extend/addon/addon/planets/planets.php:153 -#: ../../extend/addon/addon/pumpio/pumpio.php:219 -#: ../../extend/addon/addon/pumpio/pumpio.php:223 -#: ../../extend/addon/addon/pumpio/pumpio.php:227 -#: ../../extend/addon/addon/pumpio/pumpio.php:231 -#: ../../extend/addon/addon/rainbowtag/rainbowtag.php:81 -#: ../../extend/addon/addon/redred/redred.php:95 -#: ../../extend/addon/addon/redred/redred.php:99 -#: ../../extend/addon/addon/rtof/rtof.php:81 -#: ../../extend/addon/addon/rtof/rtof.php:85 -#: ../../extend/addon/addon/smileybutton/smileybutton.php:273 -#: ../../extend/addon/addon/smileybutton/smileybutton.php:277 -#: ../../extend/addon/addon/statusnet/statusnet.php:389 -#: ../../extend/addon/addon/statusnet/statusnet.php:411 -#: ../../extend/addon/addon/statusnet/statusnet.php:415 -#: ../../extend/addon/addon/statusnet/statusnet.php:424 -#: ../../extend/addon/addon/twitter/twitter.php:242 -#: ../../extend/addon/addon/twitter/twitter.php:246 -#: ../../extend/addon/addon/twitter/twitter.php:255 -#: ../../extend/addon/addon/visage/visage.php:166 -#: ../../extend/addon/addon/wppost/wppost.php:82 -#: ../../extend/addon/addon/wppost/wppost.php:105 -#: ../../extend/addon/addon/wppost/wppost.php:109 -#: ../../extend/addon/addon/xmpp/xmpp.php:53 -#: ../../extend/addon/addon/cdav/cdav.php:234 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:164 -#: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 -#: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1736 -msgid "Yes" +#: ../../Zotlabs/Module/Mitem.php:188 +msgid "Delete this menu item" msgstr "" -#: ../../Zotlabs/Module/Photos.php:653 -msgid "Caption (optional):" +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Edit this menu item" msgstr "" -#: ../../Zotlabs/Module/Photos.php:654 -msgid "Description (optional):" +#: ../../Zotlabs/Module/Mitem.php:206 +msgid "Menu item not found." msgstr "" -#: ../../Zotlabs/Module/Photos.php:657 ../../Zotlabs/Module/Photos.php:1042 -#: ../../Zotlabs/Module/Connedit.php:637 -#: ../../Zotlabs/Module/Filestorage.php:152 ../../Zotlabs/Module/Thing.php:313 -#: ../../Zotlabs/Module/Thing.php:363 ../../Zotlabs/Module/Chat.php:234 -#: ../../include/acl_selectors.php:218 -msgid "Permissions" +#: ../../Zotlabs/Module/Mitem.php:219 +msgid "Menu item deleted." msgstr "" -#: ../../Zotlabs/Module/Photos.php:667 ../../Zotlabs/Module/Photos.php:1053 -#: ../../Zotlabs/Module/Photos.php:1093 ../../Zotlabs/Module/Photos.php:1211 -#: ../../Zotlabs/Module/Connect.php:98 -#: ../../Zotlabs/Module/Admin/Features.php:66 -#: ../../Zotlabs/Module/Admin/Logs.php:84 -#: ../../Zotlabs/Module/Admin/Profs.php:157 -#: ../../Zotlabs/Module/Admin/Security.php:104 -#: ../../Zotlabs/Module/Admin/Themes.php:156 -#: ../../Zotlabs/Module/Admin/Account_edit.php:74 -#: ../../Zotlabs/Module/Admin/Accounts.php:166 -#: ../../Zotlabs/Module/Admin/Channels.php:147 -#: ../../Zotlabs/Module/Admin/Site.php:260 -#: ../../Zotlabs/Module/Admin/Plugins.php:433 -#: ../../Zotlabs/Module/Locs.php:121 ../../Zotlabs/Module/Connedit.php:847 -#: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Cal.php:342 -#: ../../Zotlabs/Module/Group.php:85 ../../Zotlabs/Module/Import_items.php:122 -#: ../../Zotlabs/Module/Import.php:507 ../../Zotlabs/Module/Mitem.php:243 -#: ../../Zotlabs/Module/Appman.php:133 ../../Zotlabs/Module/Mood.php:139 -#: ../../Zotlabs/Module/Profiles.php:722 ../../Zotlabs/Module/Invite.php:149 -#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:357 -#: ../../Zotlabs/Module/Poke.php:186 ../../Zotlabs/Module/Pconfig.php:107 -#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Module/Events.php:493 -#: ../../Zotlabs/Module/Pdledit.php:74 ../../Zotlabs/Module/Wiki.php:167 -#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 -#: ../../Zotlabs/Module/Settings/Features.php:47 -#: ../../Zotlabs/Module/Settings/Oauth.php:87 -#: ../../Zotlabs/Module/Settings/Account.php:118 -#: ../../Zotlabs/Module/Settings/Tokens.php:168 -#: ../../Zotlabs/Module/Settings/Featured.php:50 -#: ../../Zotlabs/Module/Settings/Channel.php:476 -#: ../../Zotlabs/Module/Settings/Display.php:196 -#: ../../Zotlabs/Module/Settings/Permcats.php:112 -#: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 -#: ../../Zotlabs/Module/Mail.php:413 ../../Zotlabs/Module/Chat.php:196 -#: ../../Zotlabs/Module/Chat.php:241 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Lib/ThreadItem.php:731 -#: ../../extend/addon/addon/chords/Mod_Chords.php:60 -#: ../../extend/addon/addon/diaspora/diaspora.php:714 -#: ../../extend/addon/addon/dwpost/dwpost.php:89 -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:124 -#: ../../extend/addon/addon/friendica/friendica.php:128 -#: ../../extend/addon/addon/frphotos/frphotos.php:96 -#: ../../extend/addon/addon/hubwall/hubwall.php:95 -#: ../../extend/addon/addon/ijpost/ijpost.php:89 -#: ../../extend/addon/addon/irc/irc.php:53 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:371 -#: ../../extend/addon/addon/libertree/libertree.php:85 -#: ../../extend/addon/addon/ljpost/ljpost.php:86 -#: ../../extend/addon/addon/logrot/logrot.php:35 -#: ../../extend/addon/addon/mailhost/mailhost.php:40 -#: ../../extend/addon/addon/nofed/nofed.php:80 -#: ../../extend/addon/addon/nsabait/nsabait.php:161 -#: ../../extend/addon/addon/nsfw/nsfw.php:92 -#: ../../extend/addon/addon/openclipatar/openclipatar.php:53 -#: ../../extend/addon/addon/openstreetmap/openstreetmap.php:168 -#: ../../extend/addon/addon/pageheader/pageheader.php:48 -#: ../../extend/addon/addon/piwik/piwik.php:95 -#: ../../extend/addon/addon/planets/planets.php:157 -#: ../../extend/addon/addon/pumpio/pumpio.php:237 -#: ../../extend/addon/addon/rainbowtag/rainbowtag.php:85 -#: ../../extend/addon/addon/redfiles/redfiles.php:124 -#: ../../extend/addon/addon/redphotos/redphotos.php:136 -#: ../../extend/addon/addon/redred/redred.php:119 -#: ../../extend/addon/addon/rtof/rtof.php:101 -#: ../../extend/addon/addon/skeleton/skeleton.php:65 -#: ../../extend/addon/addon/smileybutton/smileybutton.php:281 -#: ../../extend/addon/addon/startpage/startpage.php:113 -#: ../../extend/addon/addon/statusnet/statusnet.php:322 -#: ../../extend/addon/addon/statusnet/statusnet.php:380 -#: ../../extend/addon/addon/statusnet/statusnet.php:432 -#: ../../extend/addon/addon/statusnet/statusnet.php:899 -#: ../../extend/addon/addon/superblock/superblock.php:118 -#: ../../extend/addon/addon/twitter/twitter.php:217 -#: ../../extend/addon/addon/twitter/twitter.php:259 -#: ../../extend/addon/addon/visage/visage.php:170 -#: ../../extend/addon/addon/wppost/wppost.php:113 -#: ../../extend/addon/addon/xmpp/xmpp.php:69 -#: ../../extend/addon/addon/cdav/cdav.php:246 -#: ../../extend/addon/addon/likebanner/likebanner.php:57 -#: ../../extend/addon/addon/mailtest/mailtest.php:100 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:153 -#: ../../extend/addon/addon/gnusoc/gnusoc.php:133 -#: ../../include/widgets.php:815 ../../include/js_strings.php:22 -#: ../../view/theme/redbasic/php/config.php:106 -msgid "Submit" +#: ../../Zotlabs/Module/Mitem.php:221 +msgid "Menu item could not be deleted." msgstr "" -#: ../../Zotlabs/Module/Photos.php:685 -msgid "Album name could not be decoded" +#: ../../Zotlabs/Module/Mitem.php:228 +msgid "Edit Menu Element" msgstr "" -#: ../../Zotlabs/Module/Photos.php:729 -msgid "Contact Photos" +#: ../../Zotlabs/Module/Mitem.php:238 +msgid "Link text" msgstr "" -#: ../../Zotlabs/Module/Photos.php:752 -msgid "Show Newest First" +#: ../../Zotlabs/Module/Events.php:25 +msgid "Calendar entries imported." msgstr "" -#: ../../Zotlabs/Module/Photos.php:754 -msgid "Show Oldest First" +#: ../../Zotlabs/Module/Events.php:27 +msgid "No calendar entries found." msgstr "" -#: ../../Zotlabs/Module/Photos.php:778 ../../Zotlabs/Module/Photos.php:1335 -#: ../../Zotlabs/Module/Embedphotos.php:139 ../../include/widgets.php:1708 -msgid "View Photo" +#: ../../Zotlabs/Module/Events.php:110 +msgid "Event can not end before it has started." msgstr "" -#: ../../Zotlabs/Module/Photos.php:809 -#: ../../Zotlabs/Module/Embedphotos.php:155 ../../include/widgets.php:1725 -msgid "Edit Album" +#: ../../Zotlabs/Module/Events.php:112 ../../Zotlabs/Module/Events.php:121 +#: ../../Zotlabs/Module/Events.php:143 +msgid "Unable to generate preview." msgstr "" -#: ../../Zotlabs/Module/Photos.php:856 -msgid "Permission denied. Access to this item may be restricted." +#: ../../Zotlabs/Module/Events.php:119 +msgid "Event title and start time are required." msgstr "" -#: ../../Zotlabs/Module/Photos.php:858 -msgid "Photo not available" +#: ../../Zotlabs/Module/Events.php:141 ../../Zotlabs/Module/Events.php:265 +msgid "Event not found." msgstr "" -#: ../../Zotlabs/Module/Photos.php:916 -msgid "Use as profile photo" +#: ../../Zotlabs/Module/Events.php:260 ../../Zotlabs/Module/Tagger.php:51 +#: ../../Zotlabs/Module/Like.php:372 ../../include/conversation.php:119 +#: ../../include/text.php:1940 ../../include/event.php:1141 +msgid "event" msgstr "" -#: ../../Zotlabs/Module/Photos.php:917 -msgid "Use as cover photo" +#: ../../Zotlabs/Module/Events.php:460 +msgid "Edit event title" msgstr "" -#: ../../Zotlabs/Module/Photos.php:924 -msgid "Private Photo" +#: ../../Zotlabs/Module/Events.php:460 ../../addon/cdav/Mod_Cdav.php:835 +msgid "Event title" msgstr "" -#: ../../Zotlabs/Module/Photos.php:935 ../../Zotlabs/Module/Cal.php:336 -#: ../../Zotlabs/Module/Cal.php:343 ../../Zotlabs/Module/Events.php:689 -#: ../../Zotlabs/Module/Events.php:698 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:846 -msgid "Previous" +#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:465 +#: ../../Zotlabs/Module/Appman.php:122 ../../Zotlabs/Module/Appman.php:123 +#: ../../Zotlabs/Module/Profiles.php:748 ../../Zotlabs/Module/Profiles.php:752 +#: ../../include/datetime.php:259 +msgid "Required" msgstr "" -#: ../../Zotlabs/Module/Photos.php:939 -msgid "View Full Size" +#: ../../Zotlabs/Module/Events.php:462 +msgid "Categories (comma-separated list)" msgstr "" -#: ../../Zotlabs/Module/Photos.php:944 ../../Zotlabs/Module/Cal.php:337 -#: ../../Zotlabs/Module/Cal.php:344 ../../Zotlabs/Module/Setup.php:264 -#: ../../Zotlabs/Module/Events.php:690 ../../Zotlabs/Module/Events.php:699 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:847 -msgid "Next" +#: ../../Zotlabs/Module/Events.php:463 +msgid "Edit Category" msgstr "" -#: ../../Zotlabs/Module/Photos.php:984 -#: ../../Zotlabs/Module/Admin/Plugins.php:450 -#: ../../Zotlabs/Module/Tagrm.php:137 -#: ../../extend/addon/addon/superblock/superblock.php:114 -msgid "Remove" +#: ../../Zotlabs/Module/Events.php:463 +msgid "Category" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1028 -msgid "Edit photo" +#: ../../Zotlabs/Module/Events.php:466 +msgid "Edit start date and time" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1030 -msgid "Rotate CW (right)" +#: ../../Zotlabs/Module/Events.php:466 ../../addon/cdav/Mod_Cdav.php:836 +msgid "Start date and time" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1031 -msgid "Rotate CCW (left)" +#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:470 +msgid "Finish date and time are not known or not relevant" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1034 -msgid "Move photo to album" +#: ../../Zotlabs/Module/Events.php:469 +msgid "Edit finish date and time" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1035 -msgid "Enter a new album name" +#: ../../Zotlabs/Module/Events.php:469 +msgid "Finish date and time" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "or select an existing one (doubleclick)" +#: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Events.php:472 +msgid "Adjust for viewer timezone" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1039 -msgid "Caption" +#: ../../Zotlabs/Module/Events.php:471 +msgid "" +"Important for events that happen in a particular place. Not practical for " +"global holidays." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1041 -msgid "Add a Tag" +#: ../../Zotlabs/Module/Events.php:473 +msgid "Edit Description" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1049 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" +#: ../../Zotlabs/Module/Events.php:473 ../../Zotlabs/Module/Appman.php:124 +#: ../../Zotlabs/Module/Rbmark.php:101 +#: ../../addon/rendezvous/rendezvous.php:173 ../../addon/cdav/Mod_Cdav.php:838 +msgid "Description" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1052 -msgid "Flag as adult in album view" +#: ../../Zotlabs/Module/Events.php:475 +msgid "Edit Location" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:268 -msgid "I like this (toggle)" +#: ../../Zotlabs/Module/Events.php:478 ../../Zotlabs/Module/Photos.php:1063 +#: ../../Zotlabs/Module/Webpages.php:252 ../../Zotlabs/Lib/ThreadItem.php:741 +#: ../../include/conversation.php:1280 ../../include/page_widgets.php:43 +msgid "Preview" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Lib/ThreadItem.php:269 -msgid "I don't like this (toggle)" +#: ../../Zotlabs/Module/Events.php:479 ../../include/conversation.php:1343 +msgid "Permission settings" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1073 ../../Zotlabs/Module/Blocks.php:161 -#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Webpages.php:245 -#: ../../extend/addon/addon/cdav/include/widgets.php:123 -#: ../../include/conversation.php:1378 -msgid "Share" +#: ../../Zotlabs/Module/Events.php:489 +msgid "Timezone:" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1074 ../../Zotlabs/Lib/ThreadItem.php:411 -#: ../../include/conversation.php:738 -msgid "Please wait" +#: ../../Zotlabs/Module/Events.php:494 +msgid "Advanced Options" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1090 ../../Zotlabs/Module/Photos.php:1208 -#: ../../Zotlabs/Lib/ThreadItem.php:728 -msgid "This is you" +#: ../../Zotlabs/Module/Events.php:605 ../../Zotlabs/Module/Cal.php:264 +msgid "l, F j" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1092 ../../Zotlabs/Module/Photos.php:1210 -#: ../../Zotlabs/Lib/ThreadItem.php:730 ../../include/js_strings.php:6 -msgid "Comment" +#: ../../Zotlabs/Module/Events.php:633 +msgid "Edit event" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1094 ../../Zotlabs/Module/Events.php:478 -#: ../../Zotlabs/Module/Webpages.php:251 ../../Zotlabs/Lib/ThreadItem.php:740 -#: ../../include/conversation.php:1347 ../../include/page_widgets.php:43 -msgid "Preview" +#: ../../Zotlabs/Module/Events.php:635 +msgid "Delete event" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" +#: ../../Zotlabs/Module/Events.php:660 ../../Zotlabs/Module/Cal.php:313 +#: ../../include/text.php:1759 +msgid "Link to Source" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" +#: ../../Zotlabs/Module/Events.php:669 +msgid "calendar" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" +#: ../../Zotlabs/Module/Events.php:688 ../../Zotlabs/Module/Cal.php:336 +msgid "Edit Event" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" +#: ../../Zotlabs/Module/Events.php:688 ../../Zotlabs/Module/Cal.php:336 +msgid "Create Event" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" +#: ../../Zotlabs/Module/Events.php:689 ../../Zotlabs/Module/Events.php:698 +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Cal.php:344 +#: ../../Zotlabs/Module/Photos.php:911 ../../addon/cdav/Mod_Cdav.php:846 +msgid "Previous" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1110 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" +#: ../../Zotlabs/Module/Events.php:690 ../../Zotlabs/Module/Events.php:699 +#: ../../Zotlabs/Module/Setup.php:264 ../../Zotlabs/Module/Cal.php:338 +#: ../../Zotlabs/Module/Cal.php:345 ../../Zotlabs/Module/Photos.php:920 +#: ../../addon/cdav/Mod_Cdav.php:847 +msgid "Next" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1110 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" +#: ../../Zotlabs/Module/Events.php:691 ../../Zotlabs/Module/Cal.php:339 +#: ../../include/channel.php:1365 +msgid "Export" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1110 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" +#: ../../Zotlabs/Module/Events.php:695 ../../addon/cdav/Mod_Cdav.php:849 +msgid "Month" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1127 ../../Zotlabs/Module/Photos.php:1139 -#: ../../Zotlabs/Lib/ThreadItem.php:186 ../../Zotlabs/Lib/ThreadItem.php:198 -#: ../../include/conversation.php:1928 -msgid "View all" +#: ../../Zotlabs/Module/Events.php:696 ../../addon/cdav/Mod_Cdav.php:850 +msgid "Week" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1131 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/taxonomy.php:403 ../../include/conversation.php:1952 -#: ../../include/channel.php:1273 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/Events.php:697 ../../addon/cdav/Mod_Cdav.php:851 +msgid "Day" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:195 -#: ../../include/conversation.php:1955 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" +#: ../../Zotlabs/Module/Events.php:700 ../../Zotlabs/Module/Cal.php:346 +#: ../../addon/cdav/Mod_Cdav.php:848 +msgid "Today" +msgstr "" -#: ../../Zotlabs/Module/Photos.php:1236 -msgid "Photo Tools" +#: ../../Zotlabs/Module/Events.php:731 +msgid "Event removed" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1245 -msgid "In This Photo:" +#: ../../Zotlabs/Module/Events.php:734 +msgid "Failed to remove event" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1250 -msgid "Map" +#: ../../Zotlabs/Module/Appman.php:38 ../../Zotlabs/Module/Appman.php:55 +msgid "App installed." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:400 -msgctxt "noun" -msgid "Likes" +#: ../../Zotlabs/Module/Appman.php:48 +msgid "Malformed app." msgstr "" -#: ../../Zotlabs/Module/Photos.php:1259 ../../Zotlabs/Lib/ThreadItem.php:401 -msgctxt "noun" -msgid "Dislikes" +#: ../../Zotlabs/Module/Appman.php:111 +msgid "Embed code" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:406 -#: ../../include/acl_selectors.php:220 -msgid "Close" +#: ../../Zotlabs/Module/Appman.php:117 +msgid "Edit App" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1341 -msgid "View Album" +#: ../../Zotlabs/Module/Appman.php:117 +msgid "Create App" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1352 ../../Zotlabs/Module/Photos.php:1365 -#: ../../Zotlabs/Module/Photos.php:1366 -msgid "Recent Photos" +#: ../../Zotlabs/Module/Appman.php:122 +msgid "Name of app" msgstr "" -#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editblock.php:79 -#: ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 -msgid "Item not found" +#: ../../Zotlabs/Module/Appman.php:123 +msgid "Location (URL) of app" msgstr "" -#: ../../Zotlabs/Module/Editpost.php:35 -msgid "Item is not editable" +#: ../../Zotlabs/Module/Appman.php:125 +msgid "Photo icon URL" msgstr "" -#: ../../Zotlabs/Module/Editpost.php:108 ../../Zotlabs/Module/Rpost.php:138 -msgid "Edit post" +#: ../../Zotlabs/Module/Appman.php:125 +msgid "80 x 80 pixels - optional" msgstr "" -#: ../../Zotlabs/Module/Acl.php:117 ../../Zotlabs/Module/Lockview.php:117 -#: ../../Zotlabs/Module/Lockview.php:153 ../../include/acl_selectors.php:183 -msgctxt "acl" -msgid "Profile" +#: ../../Zotlabs/Module/Appman.php:126 +msgid "Categories (optional, comma separated list)" msgstr "" -#: ../../Zotlabs/Module/Acl.php:344 -msgid "network" +#: ../../Zotlabs/Module/Appman.php:127 +msgid "Version ID" msgstr "" -#: ../../Zotlabs/Module/Acl.php:354 -msgid "RSS" +#: ../../Zotlabs/Module/Appman.php:128 +msgid "Price of app" msgstr "" -#: ../../Zotlabs/Module/Help.php:23 -msgid "Documentation Search" +#: ../../Zotlabs/Module/Appman.php:129 +msgid "Location (URL) to purchase app" msgstr "" -#: ../../Zotlabs/Module/Help.php:80 ../../include/conversation.php:1827 -msgid "About" +#: ../../Zotlabs/Module/Regmod.php:15 +msgid "Please login." msgstr "" -#: ../../Zotlabs/Module/Help.php:81 ../../Zotlabs/Module/Group.php:197 -msgid "Members" +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." msgstr "" -#: ../../Zotlabs/Module/Help.php:82 -msgid "Administrators" +#: ../../Zotlabs/Module/Subthread.php:87 ../../Zotlabs/Module/Tagger.php:47 +#: ../../Zotlabs/Module/Like.php:370 +#: ../../addon/redphotos/redphotohelper.php:71 +#: ../../addon/diaspora/inbound.php:1783 ../../include/conversation.php:116 +#: ../../include/text.php:1937 +msgid "photo" msgstr "" -#: ../../Zotlabs/Module/Help.php:83 -msgid "Developers" +#: ../../Zotlabs/Module/Subthread.php:87 ../../Zotlabs/Module/Like.php:370 +#: ../../addon/diaspora/inbound.php:1783 ../../include/conversation.php:144 +#: ../../include/text.php:1943 +msgid "status" msgstr "" -#: ../../Zotlabs/Module/Help.php:84 -msgid "Tutorials" +#: ../../Zotlabs/Module/Subthread.php:118 +#, php-format +msgid "%1$s is following %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Help.php:93 -msgid "$Projectname Documentation" +#: ../../Zotlabs/Module/Subthread.php:120 +#, php-format +msgid "%1$s stopped following %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Help.php:94 -msgid "Contents" +#: ../../Zotlabs/Module/Import_items.php:48 ../../Zotlabs/Module/Import.php:64 +msgid "Nothing to import." msgstr "" -#: ../../Zotlabs/Module/Bookmarks.php:53 -msgid "Bookmark added" +#: ../../Zotlabs/Module/Import_items.php:72 ../../Zotlabs/Module/Import.php:79 +#: ../../Zotlabs/Module/Import.php:95 +msgid "Unable to download data from old server" msgstr "" -#: ../../Zotlabs/Module/Bookmarks.php:75 -msgid "My Bookmarks" +#: ../../Zotlabs/Module/Import_items.php:77 ../../Zotlabs/Module/Import.php:102 +msgid "Imported file is empty." msgstr "" -#: ../../Zotlabs/Module/Bookmarks.php:86 -msgid "My Connections Bookmarks" +#: ../../Zotlabs/Module/Import_items.php:93 ../../Zotlabs/Module/Import.php:121 +#, php-format +msgid "Warning: Database versions differ by %1$d updates." msgstr "" -#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 -msgid "Continue" +#: ../../Zotlabs/Module/Import_items.php:108 +msgid "Import completed" msgstr "" -#: ../../Zotlabs/Module/Connect.php:90 -msgid "Premium Channel Setup" +#: ../../Zotlabs/Module/Import_items.php:125 +msgid "Import Items" msgstr "" -#: ../../Zotlabs/Module/Connect.php:92 -msgid "Enable premium channel connection restrictions" +#: ../../Zotlabs/Module/Import_items.php:126 +msgid "Use this form to import existing posts and content from an export file." msgstr "" -#: ../../Zotlabs/Module/Connect.php:93 -msgid "" -"Please enter your restrictions or conditions, such as paypal receipt, usage " -"guidelines, etc." +#: ../../Zotlabs/Module/Import_items.php:127 +#: ../../Zotlabs/Module/Import.php:501 +msgid "File to Upload" msgstr "" -#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 -msgid "" -"This channel may require additional steps or acknowledgement of the " -"following conditions prior to connecting:" +#: ../../Zotlabs/Module/New_channel.php:121 ../../Zotlabs/Module/Manage.php:136 +#, php-format +msgid "You have created %1$.0f of %2$.0f allowed channels." msgstr "" -#: ../../Zotlabs/Module/Connect.php:96 -msgid "" -"Potential connections will then see the following text before proceeding:" +#: ../../Zotlabs/Module/New_channel.php:134 +#: ../../Zotlabs/Module/Register.php:237 +msgid "Name or caption" msgstr "" -#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 +#: ../../Zotlabs/Module/New_channel.php:134 +#: ../../Zotlabs/Module/Register.php:237 msgid "" -"By continuing, I certify that I have complied with any instructions provided " -"on this page." +"Examples: \"Bob Jameson\", \"Lisa and her Horses\", \"Soccer\", \"Aviation " +"Group\"" msgstr "" -#: ../../Zotlabs/Module/Connect.php:106 -msgid "(No specific instructions have been provided by the channel owner.)" +#: ../../Zotlabs/Module/New_channel.php:136 +#: ../../Zotlabs/Module/Register.php:239 +msgid "Choose a short nickname" msgstr "" -#: ../../Zotlabs/Module/Connect.php:114 -msgid "Restricted or Premium Channel" +#: ../../Zotlabs/Module/New_channel.php:136 +#: ../../Zotlabs/Module/Register.php:239 +#, php-format +msgid "" +"Your nickname will be used to create an easy to remember channel address e." +"g. nickname%s" msgstr "" -#: ../../Zotlabs/Module/Admin.php:94 -msgid "# Accounts" +#: ../../Zotlabs/Module/New_channel.php:137 +#: ../../Zotlabs/Module/Register.php:240 +msgid "Channel role and privacy" msgstr "" -#: ../../Zotlabs/Module/Admin.php:95 -msgid "# blocked accounts" +#: ../../Zotlabs/Module/New_channel.php:137 +#: ../../Zotlabs/Module/Register.php:240 +msgid "Select a channel role with your privacy requirements." msgstr "" -#: ../../Zotlabs/Module/Admin.php:96 -msgid "# expired accounts" +#: ../../Zotlabs/Module/New_channel.php:137 +#: ../../Zotlabs/Module/Register.php:240 +msgid "Read more about roles" msgstr "" -#: ../../Zotlabs/Module/Admin.php:97 -msgid "# expiring accounts" +#: ../../Zotlabs/Module/New_channel.php:140 +msgid "Create Channel" msgstr "" -#: ../../Zotlabs/Module/Admin.php:108 -msgid "# Channels" +#: ../../Zotlabs/Module/New_channel.php:141 +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 "" -#: ../../Zotlabs/Module/Admin.php:109 -msgid "# primary" +#: ../../Zotlabs/Module/New_channel.php:142 +msgid "" +"or <a href=\"import\">import an existing channel</a> from another location." msgstr "" -#: ../../Zotlabs/Module/Admin.php:110 -msgid "# clones" +#: ../../Zotlabs/Module/Removeme.php:35 +msgid "" +"Channel removals are not allowed within 48 hours of changing the account " +"password." msgstr "" -#: ../../Zotlabs/Module/Admin.php:116 -msgid "Message queues" +#: ../../Zotlabs/Module/Removeme.php:60 +msgid "Remove This Channel" msgstr "" -#: ../../Zotlabs/Module/Admin.php:133 -msgid "Your software should be updated" +#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "WARNING: " msgstr "" -#: ../../Zotlabs/Module/Admin.php:137 ../../Zotlabs/Module/Admin/Logs.php:82 -#: ../../Zotlabs/Module/Admin/Security.php:86 -#: ../../Zotlabs/Module/Admin/Themes.php:120 -#: ../../Zotlabs/Module/Admin/Themes.php:154 -#: ../../Zotlabs/Module/Admin/Accounts.php:164 -#: ../../Zotlabs/Module/Admin/Channels.php:145 -#: ../../Zotlabs/Module/Admin/Site.php:258 -#: ../../Zotlabs/Module/Admin/Plugins.php:336 -#: ../../Zotlabs/Module/Admin/Plugins.php:431 -msgid "Administration" +#: ../../Zotlabs/Module/Removeme.php:61 +msgid "This channel will be completely removed from the network. " msgstr "" -#: ../../Zotlabs/Module/Admin.php:138 -msgid "Summary" +#: ../../Zotlabs/Module/Removeme.php:61 +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "This action is permanent and can not be undone!" msgstr "" -#: ../../Zotlabs/Module/Admin.php:141 -msgid "Registered accounts" +#: ../../Zotlabs/Module/Removeme.php:62 +#: ../../Zotlabs/Module/Removeaccount.php:59 +msgid "Please enter your password for verification:" msgstr "" -#: ../../Zotlabs/Module/Admin.php:142 -msgid "Pending registrations" +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "Remove this channel and all its clones from the network" msgstr "" -#: ../../Zotlabs/Module/Admin.php:143 -msgid "Registered channels" +#: ../../Zotlabs/Module/Removeme.php:63 +msgid "" +"By default only the instance of the channel located on this hub will be " +"removed from the network" msgstr "" -#: ../../Zotlabs/Module/Admin.php:144 -msgid "Active plugins" +#: ../../Zotlabs/Module/Removeme.php:64 +#: ../../Zotlabs/Module/Settings/Channel.php:575 +msgid "Remove Channel" msgstr "" -#: ../../Zotlabs/Module/Admin.php:145 -msgid "Version" +#: ../../Zotlabs/Module/Sharedwithme.php:99 +msgid "Files: shared with me" msgstr "" -#: ../../Zotlabs/Module/Admin.php:146 -msgid "Repository version (master)" +#: ../../Zotlabs/Module/Sharedwithme.php:100 +#: ../../Zotlabs/Module/Admin/Channels.php:159 +#: ../../Zotlabs/Module/Settings/Oauth.php:89 +#: ../../Zotlabs/Module/Settings/Oauth.php:115 +#: ../../Zotlabs/Module/Wiki.php:172 ../../Zotlabs/Module/Connedit.php:902 +#: ../../Zotlabs/Module/Chat.php:249 ../../Zotlabs/Lib/NativeWikiPage.php:539 +#: ../../Zotlabs/Storage/Browser.php:233 +#: ../../Zotlabs/Widget/Wiki_page_history.php:22 +#: ../../addon/rendezvous/rendezvous.php:172 ../../addon/cdav/Mod_Cdav.php:1136 +#: ../../addon/gitwiki/Mod_Gitwiki.php:158 +msgid "Name" msgstr "" -#: ../../Zotlabs/Module/Admin.php:147 -msgid "Repository version (dev)" +#: ../../Zotlabs/Module/Sharedwithme.php:101 +msgid "NEW" msgstr "" -#: ../../Zotlabs/Module/Editblock.php:108 ../../Zotlabs/Module/Blocks.php:97 -#: ../../Zotlabs/Module/Blocks.php:155 -msgid "Block Name" +#: ../../Zotlabs/Module/Sharedwithme.php:102 +#: ../../Zotlabs/Storage/Browser.php:235 ../../include/text.php:1409 +msgid "Size" msgstr "" -#: ../../Zotlabs/Module/Editblock.php:111 -#: ../../Zotlabs/Module/Editwebpage.php:146 ../../Zotlabs/Module/Mail.php:287 -#: ../../Zotlabs/Module/Mail.php:412 ../../Zotlabs/Module/Chat.php:207 -#: ../../include/conversation.php:1295 -msgid "Insert web link" +#: ../../Zotlabs/Module/Sharedwithme.php:103 +#: ../../Zotlabs/Storage/Browser.php:236 +msgid "Last Modified" msgstr "" -#: ../../Zotlabs/Module/Editblock.php:124 ../../include/conversation.php:1406 -msgid "Title (optional)" +#: ../../Zotlabs/Module/Sharedwithme.php:104 +msgid "Remove all files" msgstr "" -#: ../../Zotlabs/Module/Editblock.php:133 -msgid "Edit Block" +#: ../../Zotlabs/Module/Sharedwithme.php:105 +msgid "Remove this file" msgstr "" -#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 -msgid "Invalid item." +#: ../../Zotlabs/Module/Setup.php:176 +msgid "$Projectname Server - Setup" msgstr "" -#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Cal.php:62 -#: ../../Zotlabs/Module/Block.php:43 ../../Zotlabs/Module/Chanview.php:96 -#: ../../Zotlabs/Module/Wall_upload.php:31 -msgid "Channel not found." +#: ../../Zotlabs/Module/Setup.php:180 +msgid "Could not connect to database." msgstr "" -#: ../../Zotlabs/Module/Page.php:131 +#: ../../Zotlabs/Module/Setup.php:184 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." +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." msgstr "" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "Save to Folder:" +#: ../../Zotlabs/Module/Setup.php:191 +msgid "Could not create table." msgstr "" -#: ../../Zotlabs/Module/Filer.php:52 -msgid "- select -" +#: ../../Zotlabs/Module/Setup.php:196 +msgid "Your site database has been installed." msgstr "" -#: ../../Zotlabs/Module/Filer.php:53 ../../Zotlabs/Module/Admin/Profs.php:74 -#: ../../Zotlabs/Module/Admin/Profs.php:94 ../../Zotlabs/Module/Rbmark.php:32 -#: ../../Zotlabs/Module/Rbmark.php:104 ../../include/widgets.php:202 -#: ../../include/text.php:1005 ../../include/text.php:1017 -msgid "Save" +#: ../../Zotlabs/Module/Setup.php:200 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." msgstr "" -#: ../../Zotlabs/Module/Ping.php:254 -msgid "sent you a private message" +#: ../../Zotlabs/Module/Setup.php:201 ../../Zotlabs/Module/Setup.php:263 +#: ../../Zotlabs/Module/Setup.php:748 +msgid "Please see the file \"install/INSTALL.txt\"." msgstr "" -#: ../../Zotlabs/Module/Ping.php:302 -msgid "added your channel" +#: ../../Zotlabs/Module/Setup.php:260 +msgid "System check" msgstr "" -#: ../../Zotlabs/Module/Ping.php:312 -msgid "g A l F d" +#: ../../Zotlabs/Module/Setup.php:265 +msgid "Check again" msgstr "" -#: ../../Zotlabs/Module/Ping.php:330 -msgid "[today]" +#: ../../Zotlabs/Module/Setup.php:287 +msgid "Database connection" msgstr "" -#: ../../Zotlabs/Module/Ping.php:339 -msgid "posted an event" +#: ../../Zotlabs/Module/Setup.php:288 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." msgstr "" -#: ../../Zotlabs/Module/Connections.php:56 -#: ../../Zotlabs/Module/Connections.php:161 -#: ../../Zotlabs/Module/Connections.php:250 -msgid "Blocked" +#: ../../Zotlabs/Module/Setup.php:289 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." msgstr "" -#: ../../Zotlabs/Module/Connections.php:61 -#: ../../Zotlabs/Module/Connections.php:168 -#: ../../Zotlabs/Module/Connections.php:249 -msgid "Ignored" +#: ../../Zotlabs/Module/Setup.php:290 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." msgstr "" -#: ../../Zotlabs/Module/Connections.php:66 -#: ../../Zotlabs/Module/Connections.php:182 -#: ../../Zotlabs/Module/Connections.php:248 -msgid "Hidden" +#: ../../Zotlabs/Module/Setup.php:294 +msgid "Database Server Name" msgstr "" -#: ../../Zotlabs/Module/Connections.php:71 -#: ../../Zotlabs/Module/Connections.php:175 -#: ../../Zotlabs/Module/Connections.php:247 -msgid "Archived" +#: ../../Zotlabs/Module/Setup.php:294 +msgid "Default is 127.0.0.1" msgstr "" -#: ../../Zotlabs/Module/Connections.php:76 -#: ../../Zotlabs/Module/Connections.php:86 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1724 -msgid "New" +#: ../../Zotlabs/Module/Setup.php:295 +msgid "Database Port" msgstr "" -#: ../../Zotlabs/Module/Connections.php:92 -#: ../../Zotlabs/Module/Connections.php:107 -#: ../../Zotlabs/Module/Connedit.php:674 ../../include/widgets.php:544 -msgid "All" +#: ../../Zotlabs/Module/Setup.php:295 +msgid "Communication port number - use 0 for default" msgstr "" -#: ../../Zotlabs/Module/Connections.php:138 -msgid "New Connections" +#: ../../Zotlabs/Module/Setup.php:296 +msgid "Database Login Name" msgstr "" -#: ../../Zotlabs/Module/Connections.php:141 -msgid "Show pending (new) connections" +#: ../../Zotlabs/Module/Setup.php:297 +msgid "Database Login Password" msgstr "" -#: ../../Zotlabs/Module/Connections.php:145 -#: ../../Zotlabs/Module/Profperm.php:140 -msgid "All Connections" +#: ../../Zotlabs/Module/Setup.php:298 +msgid "Database Name" msgstr "" -#: ../../Zotlabs/Module/Connections.php:148 -msgid "Show all connections" +#: ../../Zotlabs/Module/Setup.php:299 +msgid "Database Type" msgstr "" -#: ../../Zotlabs/Module/Connections.php:164 -msgid "Only show blocked connections" +#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:347 +msgid "Site administrator email address" msgstr "" -#: ../../Zotlabs/Module/Connections.php:171 -msgid "Only show ignored connections" +#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:347 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." msgstr "" -#: ../../Zotlabs/Module/Connections.php:178 -msgid "Only show archived connections" +#: ../../Zotlabs/Module/Setup.php:302 ../../Zotlabs/Module/Setup.php:349 +msgid "Website URL" msgstr "" -#: ../../Zotlabs/Module/Connections.php:185 -msgid "Only show hidden connections" +#: ../../Zotlabs/Module/Setup.php:302 ../../Zotlabs/Module/Setup.php:349 +msgid "Please use SSL (https) URL if available." msgstr "" -#: ../../Zotlabs/Module/Connections.php:246 -msgid "Pending approval" +#: ../../Zotlabs/Module/Setup.php:303 ../../Zotlabs/Module/Setup.php:353 +msgid "Please select a default timezone for your website" msgstr "" -#: ../../Zotlabs/Module/Connections.php:262 -#, php-format -msgid "%1$s [%2$s]" +#: ../../Zotlabs/Module/Setup.php:328 ../../Zotlabs/Module/Admin/Site.php:258 +msgid "Basic/Minimal Social Networking" msgstr "" -#: ../../Zotlabs/Module/Connections.php:263 -msgid "Edit connection" +#: ../../Zotlabs/Module/Setup.php:329 ../../Zotlabs/Module/Admin/Site.php:259 +msgid "Standard Configuration (default)" msgstr "" -#: ../../Zotlabs/Module/Connections.php:264 -msgid "Delete connection" +#: ../../Zotlabs/Module/Setup.php:330 ../../Zotlabs/Module/Admin/Site.php:260 +msgid "Professional" msgstr "" -#: ../../Zotlabs/Module/Connections.php:273 -msgid "Channel address" +#: ../../Zotlabs/Module/Setup.php:336 +msgid "Site settings" msgstr "" -#: ../../Zotlabs/Module/Connections.php:275 -msgid "Network" +#: ../../Zotlabs/Module/Setup.php:351 ../../Zotlabs/Module/Admin/Site.php:289 +msgid "Server Configuration/Role" msgstr "" -#: ../../Zotlabs/Module/Connections.php:278 -msgid "Call" +#: ../../Zotlabs/Module/Setup.php:392 +msgid "PHP version 5.5 or greater is required." msgstr "" -#: ../../Zotlabs/Module/Connections.php:280 -msgid "Status" +#: ../../Zotlabs/Module/Setup.php:393 +msgid "PHP version" msgstr "" -#: ../../Zotlabs/Module/Connections.php:282 -msgid "Connected" +#: ../../Zotlabs/Module/Setup.php:409 +msgid "Could not find a command line version of PHP in the web server PATH." msgstr "" -#: ../../Zotlabs/Module/Connections.php:284 -msgid "Approve connection" +#: ../../Zotlabs/Module/Setup.php:410 +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 "" -#: ../../Zotlabs/Module/Connections.php:285 -#: ../../Zotlabs/Module/Admin/Accounts.php:171 -msgid "Approve" +#: ../../Zotlabs/Module/Setup.php:414 +msgid "PHP executable path" msgstr "" -#: ../../Zotlabs/Module/Connections.php:286 -msgid "Ignore connection" +#: ../../Zotlabs/Module/Setup.php:414 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." msgstr "" -#: ../../Zotlabs/Module/Connections.php:287 -#: ../../Zotlabs/Module/Connedit.php:602 -msgid "Ignore" +#: ../../Zotlabs/Module/Setup.php:419 +msgid "Command line PHP" msgstr "" -#: ../../Zotlabs/Module/Connections.php:288 -msgid "Recent activity" +#: ../../Zotlabs/Module/Setup.php:429 +msgid "" +"Unable to check command line PHP, as shell_exec() is disabled. This is " +"required." msgstr "" -#: ../../Zotlabs/Module/Connections.php:312 ../../Zotlabs/Lib/Apps.php:216 -#: ../../include/text.php:934 ../../include/nav.php:203 -msgid "Connections" +#: ../../Zotlabs/Module/Setup.php:432 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." msgstr "" -#: ../../Zotlabs/Module/Connections.php:316 ../../Zotlabs/Module/Search.php:44 -#: ../../Zotlabs/Lib/Apps.php:237 ../../include/acl_selectors.php:213 -#: ../../include/widgets.php:316 ../../include/text.php:1004 -#: ../../include/text.php:1016 ../../include/nav.php:180 -msgid "Search" +#: ../../Zotlabs/Module/Setup.php:433 +msgid "This is required for message delivery to work." msgstr "" -#: ../../Zotlabs/Module/Connections.php:317 -msgid "Search your connections" +#: ../../Zotlabs/Module/Setup.php:436 +msgid "PHP register_argc_argv" msgstr "" -#: ../../Zotlabs/Module/Connections.php:318 -msgid "Connections search" +#: ../../Zotlabs/Module/Setup.php:454 +#, php-format +msgid "" +"Your max allowed total upload size is set to %s. Maximum size of one file to " +"upload is set to %s. You are allowed to upload up to %d files at once." msgstr "" -#: ../../Zotlabs/Module/Connections.php:319 -#: ../../Zotlabs/Module/Directory.php:392 -#: ../../Zotlabs/Module/Directory.php:397 ../../include/contact_widgets.php:23 -msgid "Find" +#: ../../Zotlabs/Module/Setup.php:459 +msgid "You can adjust these settings in the server php.ini file." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:58 -#: ../../Zotlabs/Module/Profile_photo.php:61 -msgid "Image uploaded but image cropping failed." +#: ../../Zotlabs/Module/Setup.php:461 +msgid "PHP upload limits" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:134 -#: ../../Zotlabs/Module/Cover_photo.php:181 -msgid "Cover Photos" +#: ../../Zotlabs/Module/Setup.php:484 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:154 -#: ../../Zotlabs/Module/Profile_photo.php:135 -msgid "Image resize failed." +#: ../../Zotlabs/Module/Setup.php:485 +msgid "" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:168 -#: ../../Zotlabs/Module/Profile_photo.php:197 ../../include/photos.php:149 -msgid "Unable to process image" +#: ../../Zotlabs/Module/Setup.php:488 +msgid "Generate encryption keys" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:192 -#: ../../Zotlabs/Module/Profile_photo.php:232 -msgid "Image upload failed." +#: ../../Zotlabs/Module/Setup.php:505 +msgid "libCurl PHP module" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:210 -#: ../../Zotlabs/Module/Profile_photo.php:251 -msgid "Unable to process image." +#: ../../Zotlabs/Module/Setup.php:506 +msgid "GD graphics PHP module" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:233 ../../include/items.php:4276 -msgid "female" +#: ../../Zotlabs/Module/Setup.php:507 +msgid "OpenSSL PHP module" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:234 ../../include/items.php:4277 -#, php-format -msgid "%1$s updated her %2$s" +#: ../../Zotlabs/Module/Setup.php:508 +msgid "PDO database PHP module" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:235 ../../include/items.php:4278 -msgid "male" +#: ../../Zotlabs/Module/Setup.php:509 +msgid "mb_string PHP module" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:236 ../../include/items.php:4279 -#, php-format -msgid "%1$s updated his %2$s" +#: ../../Zotlabs/Module/Setup.php:510 +msgid "xml PHP module" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4281 -#, php-format -msgid "%1$s updated their %2$s" +#: ../../Zotlabs/Module/Setup.php:514 ../../Zotlabs/Module/Setup.php:516 +msgid "Apache mod_rewrite module" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/channel.php:1764 -msgid "cover photo" +#: ../../Zotlabs/Module/Setup.php:514 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:303 -#: ../../Zotlabs/Module/Cover_photo.php:318 -#: ../../Zotlabs/Module/Profile_photo.php:312 -#: ../../Zotlabs/Module/Profile_photo.php:354 -msgid "Photo not available." +#: ../../Zotlabs/Module/Setup.php:520 ../../Zotlabs/Module/Setup.php:523 +msgid "exec" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:354 -#: ../../Zotlabs/Module/Profile_photo.php:409 -msgid "Upload File:" +#: ../../Zotlabs/Module/Setup.php:520 +msgid "" +"Error: exec is required but is either not installed or has been disabled in " +"php.ini" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:355 -#: ../../Zotlabs/Module/Profile_photo.php:410 -msgid "Select a profile:" +#: ../../Zotlabs/Module/Setup.php:526 ../../Zotlabs/Module/Setup.php:529 +msgid "shell_exec" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:356 -msgid "Upload Cover Photo" +#: ../../Zotlabs/Module/Setup.php:526 +msgid "" +"Error: shell_exec is required but is either not installed or has been " +"disabled in php.ini" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:418 -#: ../../Zotlabs/Module/Settings/Channel.php:404 -msgid "or" +#: ../../Zotlabs/Module/Setup.php:534 +msgid "Error: libCURL PHP module required but not installed." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:418 -msgid "skip this step" +#: ../../Zotlabs/Module/Setup.php:538 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:361 -#: ../../Zotlabs/Module/Profile_photo.php:418 -msgid "select a photo from your photo albums" +#: ../../Zotlabs/Module/Setup.php:542 +msgid "Error: openssl PHP module required but not installed." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:377 -#: ../../Zotlabs/Module/Profile_photo.php:437 -msgid "Crop Image" +#: ../../Zotlabs/Module/Setup.php:546 +msgid "Error: PDO database PHP module required but not installed." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:378 -#: ../../Zotlabs/Module/Profile_photo.php:438 -msgid "Please adjust the image cropping for optimum viewing." +#: ../../Zotlabs/Module/Setup.php:550 +msgid "Error: mb_string PHP module required but not installed." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:380 -#: ../../Zotlabs/Module/Profile_photo.php:440 -msgid "Done Editing" +#: ../../Zotlabs/Module/Setup.php:554 +msgid "Error: xml PHP module required for DAV but not installed." msgstr "" -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:38 -msgid "Off" +#: ../../Zotlabs/Module/Setup.php:572 +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 "" -#: ../../Zotlabs/Module/Admin/Features.php:55 -#: ../../Zotlabs/Module/Admin/Features.php:56 -#: ../../Zotlabs/Module/Settings/Features.php:38 -msgid "On" +#: ../../Zotlabs/Module/Setup.php:573 +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 "" -#: ../../Zotlabs/Module/Admin/Features.php:56 -#, php-format -msgid "Lock feature %s" +#: ../../Zotlabs/Module/Setup.php:574 +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 "" -#: ../../Zotlabs/Module/Admin/Features.php:64 -msgid "Manage Additional Features" +#: ../../Zotlabs/Module/Setup.php:575 +msgid "" +"You can alternatively skip this procedure and perform a manual installation. " +"Please see the file \"install/INSTALL.txt\" for instructions." msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:28 -msgid "Log settings updated." +#: ../../Zotlabs/Module/Setup.php:578 +msgid ".htconfig.php is writable" msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../include/widgets.php:1618 -#: ../../include/widgets.php:1628 -msgid "Logs" +#: ../../Zotlabs/Module/Setup.php:592 +msgid "" +"This software uses the Smarty3 template engine to render its web views. " +"Smarty3 compiles templates to PHP to speed up rendering." msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:85 -msgid "Clear" +#: ../../Zotlabs/Module/Setup.php:593 +#, php-format +msgid "" +"In order to store these compiled templates, the web server needs to have " +"write access to the directory %s under the top level web folder." msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:91 -msgid "Debugging" +#: ../../Zotlabs/Module/Setup.php:594 ../../Zotlabs/Module/Setup.php:615 +msgid "" +"Please ensure that the user that your web server runs as (e.g. www-data) has " +"write access to this folder." msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:92 -msgid "Log file" +#: ../../Zotlabs/Module/Setup.php:595 +#, 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 "" -#: ../../Zotlabs/Module/Admin/Logs.php:92 +#: ../../Zotlabs/Module/Setup.php:598 +#, php-format +msgid "%s is writable" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:614 msgid "" -"Must be writable by web server. Relative to your top-level webserver " -"directory." +"This software uses the store directory to save uploaded files. The web " +"server needs to have write access to the store directory under the top level " +"web folder" msgstr "" -#: ../../Zotlabs/Module/Admin/Logs.php:93 -msgid "Log level" +#: ../../Zotlabs/Module/Setup.php:618 +msgid "store is writable" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:69 -msgid "New Profile Field" +#: ../../Zotlabs/Module/Setup.php:650 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access " +"to this site." msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:70 -#: ../../Zotlabs/Module/Admin/Profs.php:90 -msgid "Field nickname" +#: ../../Zotlabs/Module/Setup.php:651 +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 "" -#: ../../Zotlabs/Module/Admin/Profs.php:70 -#: ../../Zotlabs/Module/Admin/Profs.php:90 -msgid "System name of field" +#: ../../Zotlabs/Module/Setup.php:652 +msgid "" +"This restriction is incorporated because public posts from you may for " +"example contain references to images on your own hub." msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:71 -#: ../../Zotlabs/Module/Admin/Profs.php:91 -msgid "Input type" +#: ../../Zotlabs/Module/Setup.php:653 +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 "" -#: ../../Zotlabs/Module/Admin/Profs.php:72 -#: ../../Zotlabs/Module/Admin/Profs.php:92 -msgid "Field Name" +#: ../../Zotlabs/Module/Setup.php:654 +msgid "" +"This can cause usability issues elsewhere (not just on your own site) so we " +"must insist on this requirement." msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:72 -#: ../../Zotlabs/Module/Admin/Profs.php:92 -msgid "Label on profile pages" +#: ../../Zotlabs/Module/Setup.php:655 +msgid "" +"Providers are available that issue free certificates which are browser-valid." msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:73 -#: ../../Zotlabs/Module/Admin/Profs.php:93 -msgid "Help text" +#: ../../Zotlabs/Module/Setup.php:657 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:73 -#: ../../Zotlabs/Module/Admin/Profs.php:93 -msgid "Additional info (optional)" +#: ../../Zotlabs/Module/Setup.php:659 +msgid "SSL certificate validation" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:83 -msgid "Field definition not found" +#: ../../Zotlabs/Module/Setup.php:665 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +"Test: " msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:89 -msgid "Edit Profile Field" +#: ../../Zotlabs/Module/Setup.php:668 +msgid "Url rewrite is working" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:147 ../../include/widgets.php:1599 -msgid "Profile Fields" +#: ../../Zotlabs/Module/Setup.php:682 +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 "" -#: ../../Zotlabs/Module/Admin/Profs.php:148 -msgid "Basic Profile Fields" +#: ../../Zotlabs/Module/Setup.php:706 ../../addon/rendezvous/rendezvous.php:401 +#: ../../addon/cdav/cdav.php:41 +msgid "Errors encountered creating database tables." msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:149 -msgid "Advanced Profile Fields" +#: ../../Zotlabs/Module/Setup.php:746 +msgid "<h1>What next</h1>" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:149 -msgid "(In addition to basic fields)" +#: ../../Zotlabs/Module/Setup.php:747 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:151 -msgid "All available fields" +#: ../../Zotlabs/Module/Connect.php:61 ../../Zotlabs/Module/Connect.php:109 +msgid "Continue" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:152 -msgid "Custom Fields" +#: ../../Zotlabs/Module/Connect.php:90 +msgid "Premium Channel Setup" msgstr "" -#: ../../Zotlabs/Module/Admin/Profs.php:156 -msgid "Create Custom Field" +#: ../../Zotlabs/Module/Connect.php:92 +msgid "Enable premium channel connection restrictions" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:77 +#: ../../Zotlabs/Module/Connect.php:93 msgid "" -"By default, unfiltered HTML is allowed in embedded media. This is inherently " -"insecure." +"Please enter your restrictions or conditions, such as paypal receipt, usage " +"guidelines, etc." msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:80 +#: ../../Zotlabs/Module/Connect.php:95 ../../Zotlabs/Module/Connect.php:115 msgid "" -"The recommended setting is to only allow unfiltered HTML from the following " -"sites:" +"This channel may require additional steps or acknowledgement of the " +"following conditions prior to connecting:" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:81 +#: ../../Zotlabs/Module/Connect.php:96 msgid "" -"https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/" -"<br />https://vimeo.com/<br />https://soundcloud.com/<br />" +"Potential connections will then see the following text before proceeding:" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:82 +#: ../../Zotlabs/Module/Connect.php:97 ../../Zotlabs/Module/Connect.php:118 msgid "" -"All other embedded content will be filtered, <strong>unless</strong> " -"embedded content from that site is explicitly blocked." +"By continuing, I certify that I have complied with any instructions provided " +"on this page." msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:87 ../../include/widgets.php:1594 -msgid "Security" +#: ../../Zotlabs/Module/Connect.php:106 +msgid "(No specific instructions have been provided by the channel owner.)" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:89 -msgid "Block public" +#: ../../Zotlabs/Module/Connect.php:114 +msgid "Restricted or Premium Channel" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:89 -msgid "" -"Check to block public access to all otherwise public personal pages on this " -"site unless you are currently authenticated." +#: ../../Zotlabs/Module/Admin/Queue.php:35 +msgid "Queue Statistics" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:90 -msgid "Set \"Transport Security\" HTTP header" +#: ../../Zotlabs/Module/Admin/Queue.php:36 +msgid "Total Entries" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:91 -msgid "Set \"Content Security Policy\" HTTP header" +#: ../../Zotlabs/Module/Admin/Queue.php:37 +msgid "Priority" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:92 -msgid "Allowed email domains" +#: ../../Zotlabs/Module/Admin/Queue.php:38 +msgid "Destination URL" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:92 -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" +#: ../../Zotlabs/Module/Admin/Queue.php:39 +msgid "Mark hub permanently offline" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:93 -msgid "Not allowed email domains" +#: ../../Zotlabs/Module/Admin/Queue.php:40 +msgid "Empty queue for this hub" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:93 -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." +#: ../../Zotlabs/Module/Admin/Queue.php:41 +msgid "Last known contact" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:94 -msgid "Allow communications only from these sites" +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:38 +msgid "Off" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:94 -msgid "" -"One site per line. Leave empty to allow communication from anywhere by " -"default" +#: ../../Zotlabs/Module/Admin/Features.php:55 +#: ../../Zotlabs/Module/Admin/Features.php:56 +#: ../../Zotlabs/Module/Settings/Features.php:38 +msgid "On" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:95 -msgid "Block communications from these sites" +#: ../../Zotlabs/Module/Admin/Features.php:56 +#, php-format +msgid "Lock feature %s" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:96 -msgid "Allow communications only from these channels" +#: ../../Zotlabs/Module/Admin/Features.php:64 +msgid "Manage Additional Features" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:96 -msgid "" -"One channel (hash) per line. Leave empty to allow from any channel by default" +#: ../../Zotlabs/Module/Admin/Dbsync.php:19 +msgid "Update has been marked successful" msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:97 -msgid "Block communications from these channels" +#: ../../Zotlabs/Module/Admin/Dbsync.php:29 +#, php-format +msgid "Executing %s failed. Check system logs." msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:98 -msgid "Only allow embeds from secure (SSL) websites and links." +#: ../../Zotlabs/Module/Admin/Dbsync.php:32 +#, php-format +msgid "Update %s was successfully applied." msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:99 -msgid "Allow unfiltered embedded HTML content only from these domains" +#: ../../Zotlabs/Module/Admin/Dbsync.php:36 +#, php-format +msgid "Update %s did not return a status. Unknown if it succeeded." msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:99 -msgid "One site per line. By default embedded content is filtered." +#: ../../Zotlabs/Module/Admin/Dbsync.php:39 +#, php-format +msgid "Update function %s could not be found." msgstr "" -#: ../../Zotlabs/Module/Admin/Security.php:100 -msgid "Block embedded HTML from these domains" +#: ../../Zotlabs/Module/Admin/Dbsync.php:55 +msgid "No failed updates." msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:18 -msgid "Theme settings updated." +#: ../../Zotlabs/Module/Admin/Dbsync.php:59 +msgid "Failed Updates" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:58 -msgid "No themes found." +#: ../../Zotlabs/Module/Admin/Dbsync.php:61 +msgid "Mark success (if update was manually applied)" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:93 -#: ../../Zotlabs/Module/Admin/Plugins.php:305 -msgid "Disable" +#: ../../Zotlabs/Module/Admin/Dbsync.php:62 +msgid "Attempt to execute this update step automatically" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:259 +#: ../../Zotlabs/Module/Admin/Themes.php:72 ../../Zotlabs/Module/Thing.php:89 +#: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:35 +#: ../../Zotlabs/Module/Filestorage.php:32 ../../Zotlabs/Module/Admin.php:60 +#: ../../include/items.php:3391 +msgid "Item not found." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:289 +#, php-format +msgid "Plugin %s disabled." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:294 +#, php-format +msgid "Plugin %s enabled." msgstr "" +#: ../../Zotlabs/Module/Admin/Plugins.php:310 #: ../../Zotlabs/Module/Admin/Themes.php:95 -#: ../../Zotlabs/Module/Admin/Plugins.php:308 +msgid "Disable" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:313 +#: ../../Zotlabs/Module/Admin/Themes.php:97 msgid "Enable" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:114 -msgid "Screenshot" +#: ../../Zotlabs/Module/Admin/Plugins.php:341 +#: ../../Zotlabs/Module/Admin/Plugins.php:436 +#: ../../Zotlabs/Module/Admin/Accounts.php:164 +#: ../../Zotlabs/Module/Admin/Logs.php:82 +#: ../../Zotlabs/Module/Admin/Channels.php:145 +#: ../../Zotlabs/Module/Admin/Themes.php:122 +#: ../../Zotlabs/Module/Admin/Themes.php:156 +#: ../../Zotlabs/Module/Admin/Site.php:277 +#: ../../Zotlabs/Module/Admin/Security.php:86 +#: ../../Zotlabs/Module/Admin.php:137 +msgid "Administration" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:121 -#: ../../Zotlabs/Module/Admin/Themes.php:155 ../../include/widgets.php:1597 -msgid "Themes" +#: ../../Zotlabs/Module/Admin/Plugins.php:342 +#: ../../Zotlabs/Module/Admin/Plugins.php:437 ../../Zotlabs/Widget/Admin.php:27 +msgid "Plugins" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:122 -#: ../../Zotlabs/Module/Admin/Plugins.php:338 +#: ../../Zotlabs/Module/Admin/Plugins.php:343 +#: ../../Zotlabs/Module/Admin/Themes.php:124 msgid "Toggle" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:123 -#: ../../Zotlabs/Module/Admin/Plugins.php:339 ../../Zotlabs/Lib/Apps.php:223 -#: ../../include/widgets.php:699 ../../include/nav.php:225 +#: ../../Zotlabs/Module/Admin/Plugins.php:344 +#: ../../Zotlabs/Module/Admin/Themes.php:125 ../../Zotlabs/Lib/Apps.php:223 +#: ../../Zotlabs/Widget/Settings_menu.php:131 ../../include/nav.php:207 msgid "Settings" msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:132 -#: ../../Zotlabs/Module/Admin/Plugins.php:346 +#: ../../Zotlabs/Module/Admin/Plugins.php:351 +#: ../../Zotlabs/Module/Admin/Themes.php:134 msgid "Author: " msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:133 -#: ../../Zotlabs/Module/Admin/Plugins.php:347 +#: ../../Zotlabs/Module/Admin/Plugins.php:352 +#: ../../Zotlabs/Module/Admin/Themes.php:135 msgid "Maintainer: " msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:160 -msgid "[Experimental]" +#: ../../Zotlabs/Module/Admin/Plugins.php:353 +msgid "Minimum project version: " msgstr "" -#: ../../Zotlabs/Module/Admin/Themes.php:161 -msgid "[Unsupported]" +#: ../../Zotlabs/Module/Admin/Plugins.php:354 +msgid "Maximum project version: " msgstr "" -#: ../../Zotlabs/Module/Admin/Account_edit.php:29 -#, php-format -msgid "Password changed for account %d." +#: ../../Zotlabs/Module/Admin/Plugins.php:355 +msgid "Minimum PHP version: " msgstr "" -#: ../../Zotlabs/Module/Admin/Account_edit.php:46 -msgid "Account settings updated." +#: ../../Zotlabs/Module/Admin/Plugins.php:356 +msgid "Compatible Server Roles: " msgstr "" -#: ../../Zotlabs/Module/Admin/Account_edit.php:61 -msgid "Account not found." +#: ../../Zotlabs/Module/Admin/Plugins.php:357 +msgid "Requires: " msgstr "" -#: ../../Zotlabs/Module/Admin/Account_edit.php:68 -msgid "Account Edit" +#: ../../Zotlabs/Module/Admin/Plugins.php:358 +#: ../../Zotlabs/Module/Admin/Plugins.php:442 +msgid "Disabled - version incompatibility" msgstr "" -#: ../../Zotlabs/Module/Admin/Account_edit.php:69 -msgid "New Password" +#: ../../Zotlabs/Module/Admin/Plugins.php:411 +msgid "Enter the public git repository URL of the plugin repo." msgstr "" -#: ../../Zotlabs/Module/Admin/Account_edit.php:70 -msgid "New Password again" +#: ../../Zotlabs/Module/Admin/Plugins.php:412 +msgid "Plugin repo git URL" msgstr "" -#: ../../Zotlabs/Module/Admin/Account_edit.php:71 -msgid "Technical skill level" +#: ../../Zotlabs/Module/Admin/Plugins.php:413 +msgid "Custom repo name" msgstr "" -#: ../../Zotlabs/Module/Admin/Account_edit.php:72 -msgid "Account language (for emails)" +#: ../../Zotlabs/Module/Admin/Plugins.php:413 +msgid "(optional)" msgstr "" -#: ../../Zotlabs/Module/Admin/Account_edit.php:73 -msgid "Service class" +#: ../../Zotlabs/Module/Admin/Plugins.php:414 +msgid "Download Plugin Repo" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:421 +msgid "Install new repo" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:422 ../../Zotlabs/Lib/Apps.php:358 +msgid "Install" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:423 +#: ../../Zotlabs/Module/Settings/Oauth.php:88 +#: ../../Zotlabs/Module/Settings/Oauth.php:114 +#: ../../Zotlabs/Module/Wiki.php:265 ../../Zotlabs/Module/Wiki.php:290 +#: ../../Zotlabs/Module/Connedit.php:920 ../../Zotlabs/Module/Fbrowser.php:66 +#: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Profiles.php:804 +#: ../../Zotlabs/Module/Filer.php:55 ../../Zotlabs/Module/Tagrm.php:15 +#: ../../Zotlabs/Module/Tagrm.php:138 ../../addon/cdav/Mod_Cdav.php:866 +#: ../../addon/cdav/Mod_Cdav.php:1154 ../../addon/js_upload/js_upload.php:46 +#: ../../addon/gitwiki/Mod_Gitwiki.php:244 +#: ../../addon/gitwiki/Mod_Gitwiki.php:267 ../../include/conversation.php:1327 +#: ../../include/conversation.php:1376 +msgid "Cancel" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:445 +msgid "Manage Repos" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:446 +msgid "Installed Plugin Repositories" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:447 +msgid "Install a New Plugin Repository" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:453 +#: ../../Zotlabs/Module/Settings/Oauth.php:42 +#: ../../Zotlabs/Module/Settings/Oauth.php:113 +#: ../../Zotlabs/Module/Connedit.php:918 ../../Zotlabs/Module/Profiles.php:802 +#: ../../Zotlabs/Lib/Apps.php:358 ../../addon/cdav/Mod_Cdav.php:1152 +msgid "Update" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:454 +msgid "Switch branch" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Plugins.php:455 +#: ../../Zotlabs/Module/Photos.php:960 ../../Zotlabs/Module/Tagrm.php:137 +#: ../../addon/superblock/superblock.php:116 +msgid "Remove" msgstr "" #: ../../Zotlabs/Module/Admin/Accounts.php:36 @@ -2069,7 +2151,8 @@ msgid "Account '%s' unblocked" msgstr "" #: ../../Zotlabs/Module/Admin/Accounts.php:165 -#: ../../Zotlabs/Module/Admin/Accounts.php:178 ../../include/widgets.php:1592 +#: ../../Zotlabs/Module/Admin/Accounts.php:178 +#: ../../Zotlabs/Widget/Admin.php:23 msgid "Accounts" msgstr "" @@ -2088,13 +2171,10 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Accounts.php:169 #: ../../Zotlabs/Module/Admin/Accounts.php:181 -#: ../../Zotlabs/Module/Connedit.php:871 -#: ../../extend/addon/addon/redred/redred.php:107 -#: ../../extend/addon/addon/rtof/rtof.php:93 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1140 -#: ../../extend/addon/addon/openid/MysqlProvider.php:56 -#: ../../extend/addon/addon/openid/MysqlProvider.php:57 -#: ../../include/network.php:2247 +#: ../../Zotlabs/Module/Connedit.php:906 ../../Zotlabs/Module/Profiles.php:790 +#: ../../addon/cdav/Mod_Cdav.php:1140 ../../addon/openid/MysqlProvider.php:56 +#: ../../addon/openid/MysqlProvider.php:57 ../../addon/rtof/rtof.php:93 +#: ../../addon/redred/redred.php:107 ../../include/network.php:2315 msgid "Email" msgstr "" @@ -2102,17 +2182,22 @@ msgstr "" msgid "No registrations." msgstr "" +#: ../../Zotlabs/Module/Admin/Accounts.php:171 +#: ../../Zotlabs/Module/Connections.php:281 +msgid "Approve" +msgstr "" + #: ../../Zotlabs/Module/Admin/Accounts.php:172 msgid "Deny" msgstr "" #: ../../Zotlabs/Module/Admin/Accounts.php:174 -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:618 msgid "Block" msgstr "" #: ../../Zotlabs/Module/Admin/Accounts.php:175 -#: ../../Zotlabs/Module/Connedit.php:594 +#: ../../Zotlabs/Module/Connedit.php:618 msgid "Unblock" msgstr "" @@ -2152,6 +2237,37 @@ msgid "" "this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" +#: ../../Zotlabs/Module/Admin/Logs.php:28 +msgid "Log settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:83 ../../Zotlabs/Widget/Admin.php:48 +#: ../../Zotlabs/Widget/Admin.php:58 +msgid "Logs" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:85 +msgid "Clear" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:91 +msgid "Debugging" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "Log file" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:92 +msgid "" +"Must be writable by web server. Relative to your top-level webserver " +"directory." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Logs.php:93 +msgid "Log level" +msgstr "" + #: ../../Zotlabs/Module/Admin/Channels.php:31 #, php-format msgid "%s channel censored/uncensored" @@ -2202,7 +2318,8 @@ msgstr "" msgid "Channel '%s' code disallowed" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:146 ../../include/widgets.php:1593 +#: ../../Zotlabs/Module/Admin/Channels.php:146 +#: ../../Zotlabs/Widget/Admin.php:24 msgid "Channels" msgstr "" @@ -2223,7 +2340,7 @@ msgid "Disallow Code" msgstr "" #: ../../Zotlabs/Module/Admin/Channels.php:154 -#: ../../include/conversation.php:1815 +#: ../../include/conversation.php:1760 ../../include/nav.php:369 msgid "Channel" msgstr "" @@ -2231,13 +2348,6 @@ msgstr "" msgid "UID" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:160 -#: ../../Zotlabs/Module/Locs.php:118 ../../Zotlabs/Module/Connedit.php:874 -#: ../../Zotlabs/Module/Profiles.php:503 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1143 -msgid "Address" -msgstr "" - #: ../../Zotlabs/Module/Admin/Channels.php:162 msgid "" "Selected channels will be deleted!\\n\\nEverything that was posted in these " @@ -2250,3848 +2360,3708 @@ msgid "" "channel on this site will be permanently deleted!\\n\\nAre you sure?" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:19 -msgid "Update has been marked successful" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:29 -#, php-format -msgid "Executing %s failed. Check system logs." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:32 -#, php-format -msgid "Update %s was successfully applied." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Dbsync.php:36 -#, php-format -msgid "Update %s did not return a status. Unknown if it succeeded." +#: ../../Zotlabs/Module/Admin/Themes.php:26 +msgid "Theme settings updated." msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:39 -#, php-format -msgid "Update function %s could not be found." +#: ../../Zotlabs/Module/Admin/Themes.php:61 +msgid "No themes found." msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:55 -msgid "No failed updates." +#: ../../Zotlabs/Module/Admin/Themes.php:116 +msgid "Screenshot" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:59 -msgid "Failed Updates" +#: ../../Zotlabs/Module/Admin/Themes.php:123 +#: ../../Zotlabs/Module/Admin/Themes.php:157 ../../Zotlabs/Widget/Admin.php:28 +msgid "Themes" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:61 -msgid "Mark success (if update was manually applied)" +#: ../../Zotlabs/Module/Admin/Themes.php:162 +msgid "[Experimental]" msgstr "" -#: ../../Zotlabs/Module/Admin/Dbsync.php:62 -msgid "Attempt to execute this update step automatically" +#: ../../Zotlabs/Module/Admin/Themes.php:163 +msgid "[Unsupported]" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:133 +#: ../../Zotlabs/Module/Admin/Site.php:144 msgid "Site settings updated." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:159 ../../include/text.php:2931 +#: ../../Zotlabs/Module/Admin/Site.php:170 ../../include/text.php:2915 msgid "Default" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:169 -#: ../../Zotlabs/Module/Settings/Display.php:143 +#: ../../Zotlabs/Module/Admin/Site.php:181 +#: ../../Zotlabs/Module/Settings/Display.php:137 +#, php-format +msgid "%s - (Incompatible)" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:188 +#: ../../Zotlabs/Module/Settings/Display.php:151 msgid "mobile" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:171 +#: ../../Zotlabs/Module/Admin/Site.php:190 msgid "experimental" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:173 +#: ../../Zotlabs/Module/Admin/Site.php:192 msgid "unsupported" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:219 +#: ../../Zotlabs/Module/Admin/Site.php:238 msgid "Yes - with approval" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:225 +#: ../../Zotlabs/Module/Admin/Site.php:244 msgid "My site is not a public server" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:226 +#: ../../Zotlabs/Module/Admin/Site.php:245 msgid "My site has paid access only" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:227 +#: ../../Zotlabs/Module/Admin/Site.php:246 msgid "My site has free access only" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:228 +#: ../../Zotlabs/Module/Admin/Site.php:247 msgid "My site offers free accounts with optional paid upgrades" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:239 ../../Zotlabs/Module/Setup.php:328 -msgid "Basic/Minimal Social Networking" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:240 ../../Zotlabs/Module/Setup.php:329 -msgid "Standard Configuration (default)" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:241 ../../Zotlabs/Module/Setup.php:330 -msgid "Professional" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:245 ../../Zotlabs/Lib/Techlevels.php:10 +#: ../../Zotlabs/Module/Admin/Site.php:264 ../../Zotlabs/Lib/Techlevels.php:10 msgid "Beginner/Basic" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:246 ../../Zotlabs/Lib/Techlevels.php:11 +#: ../../Zotlabs/Module/Admin/Site.php:265 ../../Zotlabs/Lib/Techlevels.php:11 msgid "Novice - not skilled but willing to learn" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:247 ../../Zotlabs/Lib/Techlevels.php:12 +#: ../../Zotlabs/Module/Admin/Site.php:266 ../../Zotlabs/Lib/Techlevels.php:12 msgid "Intermediate - somewhat comfortable" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:248 ../../Zotlabs/Lib/Techlevels.php:13 +#: ../../Zotlabs/Module/Admin/Site.php:267 ../../Zotlabs/Lib/Techlevels.php:13 msgid "Advanced - very comfortable" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:249 ../../Zotlabs/Lib/Techlevels.php:14 +#: ../../Zotlabs/Module/Admin/Site.php:268 ../../Zotlabs/Lib/Techlevels.php:14 msgid "Expert - I can write computer code" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:250 ../../Zotlabs/Lib/Techlevels.php:15 +#: ../../Zotlabs/Module/Admin/Site.php:269 ../../Zotlabs/Lib/Techlevels.php:15 msgid "Wizard - I probably know more than you do" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:259 ../../include/widgets.php:1591 +#: ../../Zotlabs/Module/Admin/Site.php:278 ../../Zotlabs/Widget/Admin.php:22 msgid "Site" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:262 +#: ../../Zotlabs/Module/Admin/Site.php:280 +#: ../../Zotlabs/Module/Register.php:253 +msgid "Registration" +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:281 msgid "File upload" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:263 +#: ../../Zotlabs/Module/Admin/Site.php:282 msgid "Policies" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:264 -#: ../../include/contact_widgets.php:16 +#: ../../Zotlabs/Module/Admin/Site.php:283 ../../include/contact_widgets.php:16 msgid "Advanced" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:268 -#: ../../extend/addon/addon/statusnet/statusnet.php:890 +#: ../../Zotlabs/Module/Admin/Site.php:287 +#: ../../addon/statusnet/statusnet.php:890 msgid "Site name" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:270 ../../Zotlabs/Module/Setup.php:351 -msgid "Server Configuration/Role" -msgstr "" - -#: ../../Zotlabs/Module/Admin/Site.php:272 +#: ../../Zotlabs/Module/Admin/Site.php:291 msgid "Site default technical skill level" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:272 +#: ../../Zotlabs/Module/Admin/Site.php:291 msgid "Used to provide a member experience matched to technical comfort level" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:274 +#: ../../Zotlabs/Module/Admin/Site.php:293 msgid "Lock the technical skill level setting" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:274 +#: ../../Zotlabs/Module/Admin/Site.php:293 msgid "Members can set their own technical comfort level by default" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:276 +#: ../../Zotlabs/Module/Admin/Site.php:295 msgid "Banner/Logo" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:277 +#: ../../Zotlabs/Module/Admin/Site.php:296 msgid "Administrator Information" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:277 +#: ../../Zotlabs/Module/Admin/Site.php:296 msgid "" "Contact information for site administrators. Displayed on siteinfo page. " "BBCode can be used here" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:278 -#: ../../Zotlabs/Module/Siteinfo.php:23 +#: ../../Zotlabs/Module/Admin/Site.php:297 ../../Zotlabs/Module/Siteinfo.php:23 msgid "Site Information" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:278 +#: ../../Zotlabs/Module/Admin/Site.php:297 msgid "" "Publicly visible description of this site. Displayed on siteinfo page. " "BBCode can be used here" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:279 +#: ../../Zotlabs/Module/Admin/Site.php:298 msgid "System language" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:280 +#: ../../Zotlabs/Module/Admin/Site.php:299 msgid "System theme" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:280 +#: ../../Zotlabs/Module/Admin/Site.php:299 msgid "" "Default system theme - may be over-ridden by user profiles - <a href='#' " "id='cnftheme'>change theme settings</a>" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:281 +#: ../../Zotlabs/Module/Admin/Site.php:300 msgid "Mobile system theme" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:281 +#: ../../Zotlabs/Module/Admin/Site.php:300 msgid "Theme for mobile devices" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:283 +#: ../../Zotlabs/Module/Admin/Site.php:302 msgid "Allow Feeds as Connections" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:283 +#: ../../Zotlabs/Module/Admin/Site.php:302 msgid "(Heavy system resource usage)" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:284 +#: ../../Zotlabs/Module/Admin/Site.php:303 msgid "Maximum image size" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:284 +#: ../../Zotlabs/Module/Admin/Site.php:303 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:285 +#: ../../Zotlabs/Module/Admin/Site.php:304 msgid "Does this site allow new member registration?" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:286 +#: ../../Zotlabs/Module/Admin/Site.php:305 msgid "Invitation only" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:286 +#: ../../Zotlabs/Module/Admin/Site.php:305 msgid "" "Only allow new member registrations with an invitation code. Above register " "policy must be set to Yes." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:287 +#: ../../Zotlabs/Module/Admin/Site.php:306 msgid "Which best describes the types of account offered by this hub?" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:288 +#: ../../Zotlabs/Module/Admin/Site.php:307 msgid "Register text" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:288 +#: ../../Zotlabs/Module/Admin/Site.php:307 msgid "Will be displayed prominently on the registration page." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:289 +#: ../../Zotlabs/Module/Admin/Site.php:308 msgid "Site homepage to show visitors (default: login box)" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:289 +#: ../../Zotlabs/Module/Admin/Site.php:308 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 "" -#: ../../Zotlabs/Module/Admin/Site.php:290 +#: ../../Zotlabs/Module/Admin/Site.php:309 msgid "Preserve site homepage URL" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:290 +#: ../../Zotlabs/Module/Admin/Site.php:309 msgid "" "Present the site homepage in a frame at the original location instead of " "redirecting" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:291 +#: ../../Zotlabs/Module/Admin/Site.php:310 msgid "Accounts abandoned after x days" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:291 +#: ../../Zotlabs/Module/Admin/Site.php:310 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:292 +#: ../../Zotlabs/Module/Admin/Site.php:311 msgid "Allowed friend domains" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:292 +#: ../../Zotlabs/Module/Admin/Site.php:311 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:293 +#: ../../Zotlabs/Module/Admin/Site.php:312 msgid "Verify Email Addresses" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:293 +#: ../../Zotlabs/Module/Admin/Site.php:312 msgid "" "Check to verify email addresses used in account registration (recommended)." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:294 +#: ../../Zotlabs/Module/Admin/Site.php:313 msgid "Force publish" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:294 +#: ../../Zotlabs/Module/Admin/Site.php:313 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:295 +#: ../../Zotlabs/Module/Admin/Site.php:314 msgid "Import Public Streams" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:295 +#: ../../Zotlabs/Module/Admin/Site.php:314 msgid "" "Import and allow access to public content pulled from other sites. Warning: " "this content is unmoderated." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:296 +#: ../../Zotlabs/Module/Admin/Site.php:315 msgid "Login on Homepage" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:296 +#: ../../Zotlabs/Module/Admin/Site.php:315 msgid "" "Present a login box to visitors on the home page if no other content has " "been configured." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:297 +#: ../../Zotlabs/Module/Admin/Site.php:316 msgid "Enable context help" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:297 +#: ../../Zotlabs/Module/Admin/Site.php:316 msgid "" "Display contextual help for the current page when the help button is pressed." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:299 +#: ../../Zotlabs/Module/Admin/Site.php:318 +msgid "Reply-to email address for system generated email." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:319 +msgid "Sender (From) email address for system generated email." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:320 +msgid "Name of email sender for system generated email." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:322 msgid "Directory Server URL" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:299 +#: ../../Zotlabs/Module/Admin/Site.php:322 msgid "Default directory server" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:301 +#: ../../Zotlabs/Module/Admin/Site.php:324 msgid "Proxy user" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:302 +#: ../../Zotlabs/Module/Admin/Site.php:325 msgid "Proxy URL" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:303 +#: ../../Zotlabs/Module/Admin/Site.php:326 msgid "Network timeout" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:303 +#: ../../Zotlabs/Module/Admin/Site.php:326 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:304 +#: ../../Zotlabs/Module/Admin/Site.php:327 msgid "Delivery interval" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:304 +#: ../../Zotlabs/Module/Admin/Site.php:327 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 "" -#: ../../Zotlabs/Module/Admin/Site.php:305 +#: ../../Zotlabs/Module/Admin/Site.php:328 msgid "Deliveries per process" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:305 +#: ../../Zotlabs/Module/Admin/Site.php:328 msgid "" "Number of deliveries to attempt in a single operating system process. Adjust " "if necessary to tune system performance. Recommend: 1-5." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:306 +#: ../../Zotlabs/Module/Admin/Site.php:329 msgid "Poll interval" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:306 +#: ../../Zotlabs/Module/Admin/Site.php:329 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:307 +#: ../../Zotlabs/Module/Admin/Site.php:330 msgid "Maximum Load Average" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:307 +#: ../../Zotlabs/Module/Admin/Site.php:330 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:308 +#: ../../Zotlabs/Module/Admin/Site.php:331 msgid "Expiration period in days for imported (grid/network) content" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:308 +#: ../../Zotlabs/Module/Admin/Site.php:331 msgid "0 for no expiration of imported content" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:284 -#, php-format -msgid "Plugin %s disabled." -msgstr "" - -#: ../../Zotlabs/Module/Admin/Plugins.php:289 -#, php-format -msgid "Plugin %s enabled." +#: ../../Zotlabs/Module/Admin/Profs.php:69 +msgid "New Profile Field" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:337 -#: ../../Zotlabs/Module/Admin/Plugins.php:432 ../../include/widgets.php:1596 -msgid "Plugins" +#: ../../Zotlabs/Module/Admin/Profs.php:70 +#: ../../Zotlabs/Module/Admin/Profs.php:90 +msgid "Field nickname" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:348 -msgid "Minimum project version: " +#: ../../Zotlabs/Module/Admin/Profs.php:70 +#: ../../Zotlabs/Module/Admin/Profs.php:90 +msgid "System name of field" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:349 -msgid "Maximum project version: " +#: ../../Zotlabs/Module/Admin/Profs.php:71 +#: ../../Zotlabs/Module/Admin/Profs.php:91 +msgid "Input type" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:350 -msgid "Minimum PHP version: " +#: ../../Zotlabs/Module/Admin/Profs.php:72 +#: ../../Zotlabs/Module/Admin/Profs.php:92 +msgid "Field Name" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:351 -msgid "Compatible Server Roles: " +#: ../../Zotlabs/Module/Admin/Profs.php:72 +#: ../../Zotlabs/Module/Admin/Profs.php:92 +msgid "Label on profile pages" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:352 -msgid "Requires: " +#: ../../Zotlabs/Module/Admin/Profs.php:73 +#: ../../Zotlabs/Module/Admin/Profs.php:93 +msgid "Help text" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:353 -#: ../../Zotlabs/Module/Admin/Plugins.php:437 -msgid "Disabled - version incompatibility" +#: ../../Zotlabs/Module/Admin/Profs.php:73 +#: ../../Zotlabs/Module/Admin/Profs.php:93 +msgid "Additional info (optional)" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:406 -msgid "Enter the public git repository URL of the plugin repo." +#: ../../Zotlabs/Module/Admin/Profs.php:74 +#: ../../Zotlabs/Module/Admin/Profs.php:94 ../../Zotlabs/Module/Rbmark.php:32 +#: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Module/Filer.php:53 +#: ../../Zotlabs/Widget/Notes.php:18 ../../include/text.php:1028 +#: ../../include/text.php:1040 +msgid "Save" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:407 -msgid "Plugin repo git URL" +#: ../../Zotlabs/Module/Admin/Profs.php:83 +msgid "Field definition not found" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:408 -msgid "Custom repo name" +#: ../../Zotlabs/Module/Admin/Profs.php:89 +msgid "Edit Profile Field" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:408 -msgid "(optional)" +#: ../../Zotlabs/Module/Admin/Profs.php:147 ../../Zotlabs/Widget/Admin.php:30 +msgid "Profile Fields" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:409 -msgid "Download Plugin Repo" +#: ../../Zotlabs/Module/Admin/Profs.php:148 +msgid "Basic Profile Fields" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:416 -msgid "Install new repo" +#: ../../Zotlabs/Module/Admin/Profs.php:149 +msgid "Advanced Profile Fields" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:417 ../../Zotlabs/Lib/Apps.php:348 -msgid "Install" +#: ../../Zotlabs/Module/Admin/Profs.php:149 +msgid "(In addition to basic fields)" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:418 -#: ../../Zotlabs/Module/Connedit.php:885 ../../Zotlabs/Module/Fbrowser.php:66 -#: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Wiki.php:263 -#: ../../Zotlabs/Module/Wiki.php:288 -#: ../../Zotlabs/Module/Settings/Oauth.php:88 -#: ../../Zotlabs/Module/Settings/Oauth.php:114 -#: ../../Zotlabs/Module/Tagrm.php:15 ../../Zotlabs/Module/Tagrm.php:138 -#: ../../extend/addon/addon/friendica/dfrn_request.php:879 -#: ../../extend/addon/addon/js_upload/js_upload.php:46 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:866 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1154 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:243 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:266 -#: ../../include/conversation.php:1394 ../../include/conversation.php:1443 -msgid "Cancel" +#: ../../Zotlabs/Module/Admin/Profs.php:151 +msgid "All available fields" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:440 -msgid "Manage Repos" +#: ../../Zotlabs/Module/Admin/Profs.php:152 +msgid "Custom Fields" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:441 -msgid "Installed Plugin Repositories" +#: ../../Zotlabs/Module/Admin/Profs.php:156 +msgid "Create Custom Field" msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:442 -msgid "Install a New Plugin Repository" +#: ../../Zotlabs/Module/Admin/Account_edit.php:29 +#, php-format +msgid "Password changed for account %d." msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:448 -#: ../../Zotlabs/Module/Connedit.php:883 -#: ../../Zotlabs/Module/Settings/Oauth.php:42 -#: ../../Zotlabs/Module/Settings/Oauth.php:113 ../../Zotlabs/Lib/Apps.php:348 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1152 -msgid "Update" +#: ../../Zotlabs/Module/Admin/Account_edit.php:46 +msgid "Account settings updated." msgstr "" -#: ../../Zotlabs/Module/Admin/Plugins.php:449 -msgid "Switch branch" +#: ../../Zotlabs/Module/Admin/Account_edit.php:61 +msgid "Account not found." msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:35 -msgid "Queue Statistics" +#: ../../Zotlabs/Module/Admin/Account_edit.php:68 +msgid "Account Edit" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:36 -msgid "Total Entries" +#: ../../Zotlabs/Module/Admin/Account_edit.php:69 +msgid "New Password" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:37 -msgid "Priority" +#: ../../Zotlabs/Module/Admin/Account_edit.php:70 +msgid "New Password again" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:38 -msgid "Destination URL" +#: ../../Zotlabs/Module/Admin/Account_edit.php:71 +msgid "Technical skill level" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:39 -msgid "Mark hub permanently offline" +#: ../../Zotlabs/Module/Admin/Account_edit.php:72 +msgid "Account language (for emails)" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:40 -msgid "Empty queue for this hub" +#: ../../Zotlabs/Module/Admin/Account_edit.php:73 +msgid "Service class" msgstr "" -#: ../../Zotlabs/Module/Admin/Queue.php:41 -msgid "Last known contact" +#: ../../Zotlabs/Module/Admin/Security.php:77 +msgid "" +"By default, unfiltered HTML is allowed in embedded media. This is inherently " +"insecure." msgstr "" -#: ../../Zotlabs/Module/Search.php:223 -#, php-format -msgid "Items tagged with: %s" +#: ../../Zotlabs/Module/Admin/Security.php:80 +msgid "" +"The recommended setting is to only allow unfiltered HTML from the following " +"sites:" msgstr "" -#: ../../Zotlabs/Module/Search.php:225 -#, php-format -msgid "Search results for: %s" +#: ../../Zotlabs/Module/Admin/Security.php:81 +msgid "" +"https://youtube.com/<br />https://www.youtube.com/<br />https://youtu.be/" +"<br />https://vimeo.com/<br />https://soundcloud.com/<br />" msgstr "" -#: ../../Zotlabs/Module/Editlayout.php:127 -#: ../../Zotlabs/Module/Layouts.php:128 ../../Zotlabs/Module/Layouts.php:188 -msgid "Layout Name" +#: ../../Zotlabs/Module/Admin/Security.php:82 +msgid "" +"All other embedded content will be filtered, <strong>unless</strong> " +"embedded content from that site is explicitly blocked." msgstr "" -#: ../../Zotlabs/Module/Editlayout.php:128 -#: ../../Zotlabs/Module/Layouts.php:131 -msgid "Layout Description (Optional)" +#: ../../Zotlabs/Module/Admin/Security.php:87 ../../Zotlabs/Widget/Admin.php:25 +msgid "Security" msgstr "" -#: ../../Zotlabs/Module/Editlayout.php:136 -msgid "Edit Layout" +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "Block public" msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:142 -msgid "Page link" +#: ../../Zotlabs/Module/Admin/Security.php:89 +msgid "" +"Check to block public access to all otherwise public personal pages on this " +"site unless you are currently authenticated." msgstr "" -#: ../../Zotlabs/Module/Editwebpage.php:169 -msgid "Edit Webpage" +#: ../../Zotlabs/Module/Admin/Security.php:90 +msgid "Set \"Transport Security\" HTTP header" msgstr "" -#: ../../Zotlabs/Module/Like.php:19 -msgid "Like/Dislike" +#: ../../Zotlabs/Module/Admin/Security.php:91 +msgid "Set \"Content Security Policy\" HTTP header" msgstr "" -#: ../../Zotlabs/Module/Like.php:24 -msgid "This action is restricted to members." +#: ../../Zotlabs/Module/Admin/Security.php:92 +msgid "Allowed email domains" msgstr "" -#: ../../Zotlabs/Module/Like.php:25 +#: ../../Zotlabs/Module/Admin/Security.php:92 msgid "" -"Please <a href=\"rmagic\">login with your $Projectname ID</a> or <a href=" -"\"register\">register as a new $Projectname member</a> to continue." +"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 "" -#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 -#: ../../Zotlabs/Module/Like.php:169 -msgid "Invalid request." +#: ../../Zotlabs/Module/Admin/Security.php:93 +msgid "Not allowed email domains" msgstr "" -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 -msgid "channel" +#: ../../Zotlabs/Module/Admin/Security.php:93 +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 "" -#: ../../Zotlabs/Module/Like.php:146 -msgid "thing" +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "Allow communications only from these sites" msgstr "" -#: ../../Zotlabs/Module/Like.php:192 -msgid "Channel unavailable." +#: ../../Zotlabs/Module/Admin/Security.php:94 +msgid "" +"One site per line. Leave empty to allow communication from anywhere by " +"default" msgstr "" -#: ../../Zotlabs/Module/Like.php:240 -msgid "Previous action reversed." +#: ../../Zotlabs/Module/Admin/Security.php:95 +msgid "Block communications from these sites" msgstr "" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../Zotlabs/Module/Tagger.php:47 -#: ../../extend/addon/addon/diaspora/inbound.php:1794 -#: ../../extend/addon/addon/redphotos/redphotohelper.php:74 -#: ../../include/conversation.php:120 ../../include/text.php:1953 -msgid "photo" +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "Allow communications only from these channels" msgstr "" -#: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../extend/addon/addon/diaspora/inbound.php:1794 -#: ../../include/conversation.php:148 ../../include/text.php:1959 -msgid "status" +#: ../../Zotlabs/Module/Admin/Security.php:96 +msgid "" +"One channel (hash) per line. Leave empty to allow from any channel by default" msgstr "" -#: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:260 -#: ../../Zotlabs/Module/Tagger.php:51 ../../include/conversation.php:123 -#: ../../include/text.php:1956 ../../include/event.php:1000 -msgid "event" +#: ../../Zotlabs/Module/Admin/Security.php:97 +msgid "Block communications from these channels" msgstr "" -#: ../../Zotlabs/Module/Like.php:419 -#: ../../extend/addon/addon/diaspora/inbound.php:1823 -#: ../../include/conversation.php:164 -#, php-format -msgid "%1$s likes %2$s's %3$s" +#: ../../Zotlabs/Module/Admin/Security.php:98 +msgid "Only allow embeds from secure (SSL) websites and links." msgstr "" -#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 -#, php-format -msgid "%1$s doesn't like %2$s's %3$s" +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "Allow unfiltered embedded HTML content only from these domains" msgstr "" -#: ../../Zotlabs/Module/Like.php:423 -#, php-format -msgid "%1$s agrees with %2$s's %3$s" +#: ../../Zotlabs/Module/Admin/Security.php:99 +msgid "One site per line. By default embedded content is filtered." msgstr "" -#: ../../Zotlabs/Module/Like.php:425 -#, php-format -msgid "%1$s doesn't agree with %2$s's %3$s" +#: ../../Zotlabs/Module/Admin/Security.php:100 +msgid "Block embedded HTML from these domains" msgstr "" -#: ../../Zotlabs/Module/Like.php:427 -#, php-format -msgid "%1$s abstains from a decision on %2$s's %3$s" +#: ../../Zotlabs/Module/Lockview.php:75 +msgid "Remote privacy information not available." msgstr "" -#: ../../Zotlabs/Module/Like.php:429 -#, php-format -msgid "%1$s is attending %2$s's %3$s" +#: ../../Zotlabs/Module/Lockview.php:96 +msgid "Visible to:" msgstr "" -#: ../../Zotlabs/Module/Like.php:431 -#, php-format -msgid "%1$s is not attending %2$s's %3$s" +#: ../../Zotlabs/Module/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 +#: ../../Zotlabs/Module/Acl.php:117 ../../include/acl_selectors.php:183 +msgctxt "acl" +msgid "Profile" msgstr "" -#: ../../Zotlabs/Module/Like.php:433 -#, php-format -msgid "%1$s may attend %2$s's %3$s" +#: ../../Zotlabs/Module/Settings/Permcats.php:37 +msgid "Permission category saved." msgstr "" -#: ../../Zotlabs/Module/Like.php:538 -msgid "Action completed." +#: ../../Zotlabs/Module/Settings/Permcats.php:61 +msgid "" +"Use this form to create permission rules for various classes of people or " +"connections." msgstr "" -#: ../../Zotlabs/Module/Like.php:539 -msgid "Thank you." +#: ../../Zotlabs/Module/Settings/Permcats.php:94 +msgid "Permission Categories" msgstr "" -#: ../../Zotlabs/Module/Dirsearch.php:25 ../../Zotlabs/Module/Regdir.php:49 -msgid "This site is not a directory server" +#: ../../Zotlabs/Module/Settings/Permcats.php:102 +msgid "Permission Name" msgstr "" -#: ../../Zotlabs/Module/Dirsearch.php:33 -msgid "This directory server requires an access token" +#: ../../Zotlabs/Module/Settings/Permcats.php:103 +#: ../../Zotlabs/Module/Settings/Tokens.php:161 +#: ../../Zotlabs/Module/Connedit.php:886 +msgid "My Settings" msgstr "" -#: ../../Zotlabs/Module/Network.php:96 -msgid "No such group" +#: ../../Zotlabs/Module/Settings/Permcats.php:105 +#: ../../Zotlabs/Module/Settings/Tokens.php:163 +#: ../../Zotlabs/Module/Connedit.php:881 +msgid "inherited" msgstr "" -#: ../../Zotlabs/Module/Network.php:136 -msgid "No such channel" +#: ../../Zotlabs/Module/Settings/Permcats.php:108 +#: ../../Zotlabs/Module/Settings/Tokens.php:166 +#: ../../Zotlabs/Module/Connedit.php:888 +msgid "Individual Permissions" msgstr "" -#: ../../Zotlabs/Module/Network.php:141 -msgid "forum" +#: ../../Zotlabs/Module/Settings/Permcats.php:109 +#: ../../Zotlabs/Module/Settings/Tokens.php:167 +#: ../../Zotlabs/Module/Connedit.php:889 +msgid "" +"Some permissions may be inherited from your channel's <a href=\"settings" +"\"><strong>privacy settings</strong></a>, which have higher priority than " +"individual settings. You can <strong>not</strong> change those settings here." msgstr "" -#: ../../Zotlabs/Module/Network.php:153 -msgid "Search Results For:" +#: ../../Zotlabs/Module/Settings/Channel.php:62 +#: ../../Zotlabs/Module/Settings/Channel.php:66 +#: ../../Zotlabs/Module/Settings/Channel.php:67 +#: ../../Zotlabs/Module/Settings/Channel.php:70 +#: ../../Zotlabs/Module/Settings/Channel.php:81 +#: ../../Zotlabs/Module/Connedit.php:707 ../../Zotlabs/Widget/Affinity.php:28 +#: ../../include/selectors.php:123 ../../include/channel.php:406 +#: ../../include/channel.php:407 ../../include/channel.php:414 +msgid "Friends" msgstr "" -#: ../../Zotlabs/Module/Network.php:221 -msgid "Privacy group is empty" +#: ../../Zotlabs/Module/Settings/Channel.php:251 +#: ../../addon/rendezvous/rendezvous.php:82 +#: ../../addon/openstreetmap/openstreetmap.php:184 +#: ../../addon/msgfooter/msgfooter.php:54 ../../addon/logrot/logrot.php:54 +#: ../../addon/twitter/twitter.php:766 ../../addon/piwik/piwik.php:116 +#: ../../addon/xmpp/xmpp.php:102 +msgid "Settings updated." msgstr "" -#: ../../Zotlabs/Module/Network.php:230 -msgid "Privacy group: " +#: ../../Zotlabs/Module/Settings/Channel.php:312 +msgid "Nobody except yourself" msgstr "" -#: ../../Zotlabs/Module/Network.php:256 -msgid "Invalid connection." +#: ../../Zotlabs/Module/Settings/Channel.php:313 +msgid "Only those you specifically allow" msgstr "" -#: ../../Zotlabs/Module/Menu.php:49 -msgid "Unable to update menu." +#: ../../Zotlabs/Module/Settings/Channel.php:314 +msgid "Approved connections" msgstr "" -#: ../../Zotlabs/Module/Menu.php:60 -msgid "Unable to create menu." +#: ../../Zotlabs/Module/Settings/Channel.php:315 +msgid "Any connections" msgstr "" -#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 -msgid "Menu Name" +#: ../../Zotlabs/Module/Settings/Channel.php:316 +msgid "Anybody on this website" msgstr "" -#: ../../Zotlabs/Module/Menu.php:98 -msgid "Unique name (not visible on webpage) - required" +#: ../../Zotlabs/Module/Settings/Channel.php:317 +msgid "Anybody in this network" msgstr "" -#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 -msgid "Menu Title" +#: ../../Zotlabs/Module/Settings/Channel.php:318 +msgid "Anybody authenticated" msgstr "" -#: ../../Zotlabs/Module/Menu.php:99 -msgid "Visible on webpage - leave empty for no title" +#: ../../Zotlabs/Module/Settings/Channel.php:319 +msgid "Anybody on the internet" msgstr "" -#: ../../Zotlabs/Module/Menu.php:100 -msgid "Allow Bookmarks" +#: ../../Zotlabs/Module/Settings/Channel.php:395 +msgid "Publish your default profile in the network directory" msgstr "" -#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 -msgid "Menu may be used to store saved bookmarks" +#: ../../Zotlabs/Module/Settings/Channel.php:400 +msgid "Allow us to suggest you as a potential friend to new members?" msgstr "" -#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 -msgid "Submit and proceed" +#: ../../Zotlabs/Module/Settings/Channel.php:404 +#: ../../Zotlabs/Module/Profile_photo.php:429 +#: ../../Zotlabs/Module/Cover_photo.php:365 +msgid "or" msgstr "" -#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2284 -msgid "Menus" +#: ../../Zotlabs/Module/Settings/Channel.php:409 +msgid "Your channel address is" msgstr "" -#: ../../Zotlabs/Module/Menu.php:113 ../../Zotlabs/Module/Locs.php:120 -msgid "Drop" +#: ../../Zotlabs/Module/Settings/Channel.php:412 +msgid "Your files/photos are accessible via WebDAV at" msgstr "" -#: ../../Zotlabs/Module/Menu.php:114 ../../Zotlabs/Module/Blocks.php:157 -#: ../../Zotlabs/Module/Layouts.php:190 ../../Zotlabs/Module/Webpages.php:255 -#: ../../include/page_widgets.php:47 -msgid "Created" +#: ../../Zotlabs/Module/Settings/Channel.php:474 +msgid "Channel Settings" msgstr "" -#: ../../Zotlabs/Module/Menu.php:115 ../../Zotlabs/Module/Blocks.php:158 -#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Webpages.php:256 -#: ../../include/page_widgets.php:48 -msgid "Edited" +#: ../../Zotlabs/Module/Settings/Channel.php:481 +msgid "Basic Settings" msgstr "" -#: ../../Zotlabs/Module/Menu.php:117 -msgid "Bookmarks allowed" +#: ../../Zotlabs/Module/Settings/Channel.php:482 ../../include/channel.php:1250 +msgid "Full Name:" msgstr "" -#: ../../Zotlabs/Module/Menu.php:119 -msgid "Delete this menu" +#: ../../Zotlabs/Module/Settings/Channel.php:483 +#: ../../Zotlabs/Module/Settings/Account.php:119 +msgid "Email Address:" msgstr "" -#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 -msgid "Edit menu contents" +#: ../../Zotlabs/Module/Settings/Channel.php:484 +msgid "Your Timezone:" msgstr "" -#: ../../Zotlabs/Module/Menu.php:121 -msgid "Edit this menu" +#: ../../Zotlabs/Module/Settings/Channel.php:485 +msgid "Default Post Location:" msgstr "" -#: ../../Zotlabs/Module/Menu.php:136 -msgid "Menu could not be deleted." +#: ../../Zotlabs/Module/Settings/Channel.php:485 +msgid "Geographical location to display on your posts" msgstr "" -#: ../../Zotlabs/Module/Menu.php:144 ../../Zotlabs/Module/Mitem.php:28 -msgid "Menu not found." +#: ../../Zotlabs/Module/Settings/Channel.php:486 +msgid "Use Browser Location:" msgstr "" -#: ../../Zotlabs/Module/Menu.php:149 -msgid "Edit Menu" +#: ../../Zotlabs/Module/Settings/Channel.php:488 +msgid "Adult Content" msgstr "" -#: ../../Zotlabs/Module/Menu.php:153 -msgid "Add or remove entries to this menu" +#: ../../Zotlabs/Module/Settings/Channel.php:488 +msgid "" +"This channel frequently or regularly publishes adult content. (Please tag " +"any adult material and/or nudity with #NSFW)" msgstr "" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Menu name" +#: ../../Zotlabs/Module/Settings/Channel.php:490 +msgid "Security and Privacy Settings" msgstr "" -#: ../../Zotlabs/Module/Menu.php:155 -msgid "Must be unique, only seen by you" +#: ../../Zotlabs/Module/Settings/Channel.php:493 +msgid "Your permissions are already configured. Click to view/adjust" msgstr "" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title" +#: ../../Zotlabs/Module/Settings/Channel.php:495 +msgid "Hide my online presence" msgstr "" -#: ../../Zotlabs/Module/Menu.php:156 -msgid "Menu title as seen by others" +#: ../../Zotlabs/Module/Settings/Channel.php:495 +msgid "Prevents displaying in your profile that you are online" msgstr "" -#: ../../Zotlabs/Module/Menu.php:157 -msgid "Allow bookmarks" +#: ../../Zotlabs/Module/Settings/Channel.php:497 +msgid "Simple Privacy Settings:" msgstr "" -#: ../../Zotlabs/Module/Menu.php:166 ../../Zotlabs/Module/Mitem.php:120 -#: ../../Zotlabs/Module/Xchan.php:41 -msgid "Not found." +#: ../../Zotlabs/Module/Settings/Channel.php:498 +msgid "" +"Very Public - <em>extremely permissive (should be used with caution)</em>" msgstr "" -#: ../../Zotlabs/Module/Locs.php:25 ../../Zotlabs/Module/Locs.php:54 -msgid "Location not found." +#: ../../Zotlabs/Module/Settings/Channel.php:499 +msgid "" +"Typical - <em>default public, privacy when desired (similar to social " +"network permissions but with improved privacy)</em>" msgstr "" -#: ../../Zotlabs/Module/Locs.php:62 -msgid "Location lookup failed." +#: ../../Zotlabs/Module/Settings/Channel.php:500 +msgid "Private - <em>default private, never open or public</em>" msgstr "" -#: ../../Zotlabs/Module/Locs.php:66 -msgid "" -"Please select another location to become primary before removing the primary " -"location." +#: ../../Zotlabs/Module/Settings/Channel.php:501 +msgid "Blocked - <em>default blocked to/from everybody</em>" msgstr "" -#: ../../Zotlabs/Module/Locs.php:95 -msgid "Syncing locations" +#: ../../Zotlabs/Module/Settings/Channel.php:503 +msgid "Allow others to tag your posts" msgstr "" -#: ../../Zotlabs/Module/Locs.php:105 -msgid "No locations found." +#: ../../Zotlabs/Module/Settings/Channel.php:503 +msgid "" +"Often used by the community to retro-actively flag inappropriate content" msgstr "" -#: ../../Zotlabs/Module/Locs.php:116 -msgid "Manage Channel Locations" +#: ../../Zotlabs/Module/Settings/Channel.php:505 +msgid "Channel Permission Limits" msgstr "" -#: ../../Zotlabs/Module/Locs.php:117 ../../Zotlabs/Module/Pubsites.php:51 -#: ../../Zotlabs/Module/Profiles.php:510 ../../Zotlabs/Module/Profiles.php:733 -#: ../../Zotlabs/Module/Events.php:475 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:839 -#: ../../include/js_strings.php:25 -msgid "Location" +#: ../../Zotlabs/Module/Settings/Channel.php:507 +msgid "Expire other channel content after this many days" msgstr "" -#: ../../Zotlabs/Module/Locs.php:119 -msgid "Primary" +#: ../../Zotlabs/Module/Settings/Channel.php:507 +msgid "0 or blank to use the website limit." msgstr "" -#: ../../Zotlabs/Module/Locs.php:122 -msgid "Sync Now" +#: ../../Zotlabs/Module/Settings/Channel.php:507 +#, php-format +msgid "This website expires after %d days." msgstr "" -#: ../../Zotlabs/Module/Locs.php:123 -msgid "Please wait several minutes between consecutive operations." +#: ../../Zotlabs/Module/Settings/Channel.php:507 +msgid "This website does not expire imported content." msgstr "" -#: ../../Zotlabs/Module/Locs.php:124 -msgid "" -"When possible, drop a location by logging into that website/hub and removing " -"your channel." +#: ../../Zotlabs/Module/Settings/Channel.php:507 +msgid "The website limit takes precedence if lower than your limit." msgstr "" -#: ../../Zotlabs/Module/Locs.php:125 -msgid "Use this form to drop the location if the hub is no longer operating." +#: ../../Zotlabs/Module/Settings/Channel.php:508 +msgid "Maximum Friend Requests/Day:" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:24 ../../include/widgets.php:1415 -msgid "Public Hubs" +#: ../../Zotlabs/Module/Settings/Channel.php:508 +msgid "May reduce spam activity" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:27 -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 <strong>may</strong> provide " -"additional details." +#: ../../Zotlabs/Module/Settings/Channel.php:509 +msgid "Default Access Control List (ACL)" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Hub URL" +#: ../../Zotlabs/Module/Settings/Channel.php:511 +msgid "Use my default audience setting for the type of object published" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Access Type" +#: ../../Zotlabs/Module/Settings/Channel.php:518 +msgid "Channel permissions category:" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Registration Policy" +#: ../../Zotlabs/Module/Settings/Channel.php:519 +msgid "Default Permissions Group" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Stats" +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "Maximum private messages per day from unknown people:" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:33 -msgid "Software" +#: ../../Zotlabs/Module/Settings/Channel.php:525 +msgid "Useful to reduce spamming" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:35 ../../Zotlabs/Module/Ratings.php:97 -#: ../../include/conversation.php:941 ../../include/conversation.php:1099 -msgid "Ratings" +#: ../../Zotlabs/Module/Settings/Channel.php:528 +msgid "Notification Settings" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:48 -msgid "Rate" +#: ../../Zotlabs/Module/Settings/Channel.php:529 +msgid "By default post a status message when:" msgstr "" -#: ../../Zotlabs/Module/Pubsites.php:59 ../../Zotlabs/Module/Blocks.php:166 -#: ../../Zotlabs/Module/Layouts.php:197 ../../Zotlabs/Module/Events.php:694 -#: ../../Zotlabs/Module/Webpages.php:250 ../../Zotlabs/Module/Wiki.php:165 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:151 -#: ../../include/page_widgets.php:42 -msgid "View" +#: ../../Zotlabs/Module/Settings/Channel.php:530 +msgid "accepting a friend request" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:82 -msgid "Could not access contact record." +#: ../../Zotlabs/Module/Settings/Channel.php:531 +msgid "joining a forum/community" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:112 -msgid "Could not locate selected profile." +#: ../../Zotlabs/Module/Settings/Channel.php:532 +msgid "making an <em>interesting</em> profile change" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:249 -msgid "Connection updated." +#: ../../Zotlabs/Module/Settings/Channel.php:533 +msgid "Send a notification email when:" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:251 -msgid "Failed to update connection record." +#: ../../Zotlabs/Module/Settings/Channel.php:534 +msgid "You receive a connection request" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:301 -msgid "is now connected to" +#: ../../Zotlabs/Module/Settings/Channel.php:535 +msgid "Your connections are confirmed" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:434 -msgid "Could not access address book record." +#: ../../Zotlabs/Module/Settings/Channel.php:536 +msgid "Someone writes on your profile wall" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:454 -msgid "Refresh failed - channel is currently unavailable." +#: ../../Zotlabs/Module/Settings/Channel.php:537 +msgid "Someone writes a followup comment" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:469 ../../Zotlabs/Module/Connedit.php:478 -#: ../../Zotlabs/Module/Connedit.php:487 ../../Zotlabs/Module/Connedit.php:496 -#: ../../Zotlabs/Module/Connedit.php:509 -msgid "Unable to set address book parameters." +#: ../../Zotlabs/Module/Settings/Channel.php:538 +msgid "You receive a private message" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:533 -msgid "Connection has been removed." +#: ../../Zotlabs/Module/Settings/Channel.php:539 +msgid "You receive a friend suggestion" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:573 ../../Zotlabs/Lib/Apps.php:228 -#: ../../extend/addon/addon/openclipatar/openclipatar.php:57 -#: ../../include/conversation.php:936 ../../include/conversation.php:1049 -#: ../../include/nav.php:103 -msgid "View Profile" +#: ../../Zotlabs/Module/Settings/Channel.php:540 +msgid "You are tagged in a post" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:576 -#, php-format -msgid "View %s's profile" +#: ../../Zotlabs/Module/Settings/Channel.php:541 +msgid "You are poked/prodded/etc. in a post" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:580 -msgid "Refresh Permissions" +#: ../../Zotlabs/Module/Settings/Channel.php:543 +msgid "Someone likes your post/comment" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:583 -msgid "Fetch updated permissions" +#: ../../Zotlabs/Module/Settings/Channel.php:546 +msgid "Show visual notifications including:" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:587 -msgid "Recent Activity" +#: ../../Zotlabs/Module/Settings/Channel.php:548 +msgid "Unseen grid activity" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:590 -msgid "View recent posts and comments" +#: ../../Zotlabs/Module/Settings/Channel.php:549 +msgid "Unseen channel activity" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:597 -msgid "Block (or Unblock) all communications with this connection" +#: ../../Zotlabs/Module/Settings/Channel.php:550 +msgid "Unseen private messages" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:598 -msgid "This connection is blocked!" +#: ../../Zotlabs/Module/Settings/Channel.php:550 +#: ../../Zotlabs/Module/Settings/Channel.php:555 +#: ../../Zotlabs/Module/Settings/Channel.php:556 +#: ../../Zotlabs/Module/Settings/Channel.php:557 +#: ../../addon/jappixmini/jappixmini.php:343 +msgid "Recommended" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:602 -msgid "Unignore" +#: ../../Zotlabs/Module/Settings/Channel.php:551 +msgid "Upcoming events" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:605 -msgid "Ignore (or Unignore) all inbound communications from this connection" +#: ../../Zotlabs/Module/Settings/Channel.php:552 +msgid "Events today" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:606 -msgid "This connection is ignored!" +#: ../../Zotlabs/Module/Settings/Channel.php:553 +msgid "Upcoming birthdays" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:610 -msgid "Unarchive" +#: ../../Zotlabs/Module/Settings/Channel.php:553 +msgid "Not available in all themes" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:610 -msgid "Archive" +#: ../../Zotlabs/Module/Settings/Channel.php:554 +msgid "System (personal) notifications" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:613 -msgid "" -"Archive (or Unarchive) this connection - mark channel dead but keep content" +#: ../../Zotlabs/Module/Settings/Channel.php:555 +msgid "System info messages" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:614 -msgid "This connection is archived!" +#: ../../Zotlabs/Module/Settings/Channel.php:556 +msgid "System critical alerts" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:618 -msgid "Unhide" +#: ../../Zotlabs/Module/Settings/Channel.php:557 +msgid "New connections" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:618 -msgid "Hide" +#: ../../Zotlabs/Module/Settings/Channel.php:558 +msgid "System Registrations" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:621 -msgid "Hide or Unhide this connection from your other connections" +#: ../../Zotlabs/Module/Settings/Channel.php:559 +msgid "" +"Also show new wall posts, private messages and connections under Notices" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:622 -msgid "This connection is hidden!" +#: ../../Zotlabs/Module/Settings/Channel.php:561 +msgid "Notify me of events this many days in advance" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:629 -msgid "Delete this connection" +#: ../../Zotlabs/Module/Settings/Channel.php:561 +msgid "Must be greater than 0" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:640 -msgid "Open Individual Permissions section by default" +#: ../../Zotlabs/Module/Settings/Channel.php:567 +msgid "Advanced Account/Page Type Settings" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:663 -msgid "Affinity" +#: ../../Zotlabs/Module/Settings/Channel.php:568 +msgid "Change the behaviour of this account for special situations" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:666 -msgid "Open Set Affinity section by default" +#: ../../Zotlabs/Module/Settings/Channel.php:570 +msgid "Miscellaneous Settings" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:670 ../../include/widgets.php:540 -msgid "Me" +#: ../../Zotlabs/Module/Settings/Channel.php:571 +msgid "Default photo upload folder" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:671 ../../include/widgets.php:541 -msgid "Family" +#: ../../Zotlabs/Module/Settings/Channel.php:571 +#: ../../Zotlabs/Module/Settings/Channel.php:572 +msgid "%Y - current year, %m - current month" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:672 -#: ../../Zotlabs/Module/Settings/Channel.php:62 -#: ../../Zotlabs/Module/Settings/Channel.php:66 -#: ../../Zotlabs/Module/Settings/Channel.php:67 -#: ../../Zotlabs/Module/Settings/Channel.php:70 -#: ../../Zotlabs/Module/Settings/Channel.php:81 -#: ../../include/selectors.php:123 ../../include/widgets.php:542 -#: ../../include/channel.php:408 ../../include/channel.php:409 -#: ../../include/channel.php:416 -msgid "Friends" +#: ../../Zotlabs/Module/Settings/Channel.php:572 +msgid "Default file upload folder" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:673 ../../include/widgets.php:543 -msgid "Acquaintances" +#: ../../Zotlabs/Module/Settings/Channel.php:574 +msgid "Personal menu to display in your channel pages" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:700 -msgid "Filter" +#: ../../Zotlabs/Module/Settings/Channel.php:576 +msgid "Remove this channel." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:703 -msgid "Open Custom Filter section by default" +#: ../../Zotlabs/Module/Settings/Channel.php:577 +msgid "Firefox Share $Projectname provider" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:740 -msgid "Approve this connection" +#: ../../Zotlabs/Module/Settings/Channel.php:578 +msgid "Start calendar week on Monday" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:740 -msgid "Accept connection to allow communication" +#: ../../Zotlabs/Module/Settings/Features.php:45 +msgid "Additional Features" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:745 -msgid "Set Affinity" +#: ../../Zotlabs/Module/Settings/Tokens.php:31 +#, php-format +msgid "This channel is limited to %d tokens" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:748 -msgid "Set Profile" +#: ../../Zotlabs/Module/Settings/Tokens.php:37 +msgid "Name and Password are required." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:751 -msgid "Set Affinity & Profile" +#: ../../Zotlabs/Module/Settings/Tokens.php:77 +msgid "Token saved." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:809 -msgid "none" +#: ../../Zotlabs/Module/Settings/Tokens.php:113 +msgid "" +"Use this form to create temporary access identifiers to share things with " +"non-members. These identities may be used in Access Control Lists and " +"visitors may login using these credentials to access private content." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:812 ../../include/widgets.php:675 -msgid "Connection Default Permissions" +#: ../../Zotlabs/Module/Settings/Tokens.php:115 +msgid "" +"You may also provide <em>dropbox</em> style access links to friends and " +"associates by adding the Login Password to any specific site URL as shown. " +"Examples:" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:812 ../../include/items.php:3932 -#, php-format -msgid "Connection: %s" +#: ../../Zotlabs/Module/Settings/Tokens.php:150 +#: ../../Zotlabs/Widget/Settings_menu.php:90 +msgid "Guest Access Tokens" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:813 -msgid "Apply these permissions automatically" +#: ../../Zotlabs/Module/Settings/Tokens.php:157 +msgid "Login Name" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:813 -msgid "Connection requests will be approved without your interaction" +#: ../../Zotlabs/Module/Settings/Tokens.php:158 +msgid "Login Password" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:814 -msgid "Permission role" +#: ../../Zotlabs/Module/Settings/Tokens.php:159 +msgid "Expires (yyyy-mm-dd)" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:815 -msgid "Add permission role" +#: ../../Zotlabs/Module/Settings/Tokens.php:160 +#: ../../Zotlabs/Module/Connedit.php:885 +msgid "Their Settings" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:821 -msgid "This connection's primary address is" +#: ../../Zotlabs/Module/Settings/Account.php:20 +msgid "Not valid email." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:822 -msgid "Available locations:" +#: ../../Zotlabs/Module/Settings/Account.php:23 +msgid "Protected email address. Cannot change to that email." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:826 -msgid "" -"The permissions indicated on this page will be applied to all new " -"connections." +#: ../../Zotlabs/Module/Settings/Account.php:32 +msgid "System failure storing new email. Please try again." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:827 -msgid "Connection Tools" +#: ../../Zotlabs/Module/Settings/Account.php:40 +msgid "Technical skill level updated" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:829 -msgid "Slide to adjust your degree of friendship" +#: ../../Zotlabs/Module/Settings/Account.php:56 +msgid "Password verification failed." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:830 ../../Zotlabs/Module/Rate.php:155 -#: ../../include/js_strings.php:20 -msgid "Rating" +#: ../../Zotlabs/Module/Settings/Account.php:63 +msgid "Passwords do not match. Password unchanged." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:831 -msgid "Slide to adjust your rating" +#: ../../Zotlabs/Module/Settings/Account.php:67 +msgid "Empty passwords are not allowed. Password unchanged." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:832 ../../Zotlabs/Module/Connedit.php:837 -msgid "Optionally explain your rating" +#: ../../Zotlabs/Module/Settings/Account.php:81 +msgid "Password changed." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:834 -msgid "Custom Filter" +#: ../../Zotlabs/Module/Settings/Account.php:83 +msgid "Password update failed. Please try again." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:835 -msgid "Only import posts with this text" +#: ../../Zotlabs/Module/Settings/Account.php:112 +msgid "Account Settings" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:835 ../../Zotlabs/Module/Connedit.php:836 -msgid "" -"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " -"all posts" +#: ../../Zotlabs/Module/Settings/Account.php:113 +msgid "Current Password" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:836 -msgid "Do not import posts with this text" +#: ../../Zotlabs/Module/Settings/Account.php:114 +msgid "Enter New Password" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:838 -msgid "This information is public!" +#: ../../Zotlabs/Module/Settings/Account.php:115 +msgid "Confirm New Password" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:843 -msgid "Connection Pending Approval" +#: ../../Zotlabs/Module/Settings/Account.php:115 +msgid "Leave password fields blank unless changing" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:846 -#: ../../Zotlabs/Module/Settings/Tokens.php:163 -#: ../../Zotlabs/Module/Settings/Permcats.php:107 -msgid "inherited" +#: ../../Zotlabs/Module/Settings/Account.php:116 +msgid "Your technical skill level" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:848 -#, php-format -msgid "" -"Please choose the profile you would like to display to %s when viewing your " -"profile securely." +#: ../../Zotlabs/Module/Settings/Account.php:116 +msgid "Used to provide a member experience matched to your comfort level" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:850 -#: ../../Zotlabs/Module/Settings/Tokens.php:160 -msgid "Their Settings" +#: ../../Zotlabs/Module/Settings/Account.php:120 +#: ../../Zotlabs/Module/Removeaccount.php:61 +msgid "Remove Account" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:851 -#: ../../Zotlabs/Module/Settings/Tokens.php:161 -#: ../../Zotlabs/Module/Settings/Permcats.php:105 -msgid "My Settings" +#: ../../Zotlabs/Module/Settings/Account.php:121 +msgid "Remove this account including all its channels" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:853 -#: ../../Zotlabs/Module/Settings/Tokens.php:166 -#: ../../Zotlabs/Module/Settings/Permcats.php:110 -msgid "Individual Permissions" +#: ../../Zotlabs/Module/Settings/Featured.php:20 +msgid "Affinity Slider settings updated." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:854 -#: ../../Zotlabs/Module/Settings/Tokens.php:167 -#: ../../Zotlabs/Module/Settings/Permcats.php:111 -msgid "" -"Some permissions may be inherited from your channel's <a href=\"settings" -"\"><strong>privacy settings</strong></a>, which have higher priority than " -"individual settings. You can <strong>not</strong> change those settings here." +#: ../../Zotlabs/Module/Settings/Featured.php:34 +msgid "No feature settings configured" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:855 -msgid "" -"Some permissions may be inherited from your channel's <a href=\"settings" -"\"><strong>privacy settings</strong></a>, which have higher priority than " -"individual settings. You can change those settings here but they wont have " -"any impact unless the inherited setting changes." +#: ../../Zotlabs/Module/Settings/Featured.php:41 +msgid "Default maximum affinity level" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:856 -msgid "Last update:" +#: ../../Zotlabs/Module/Settings/Featured.php:46 +msgid "Default minimum affinity level" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:865 -msgid "Details" +#: ../../Zotlabs/Module/Settings/Featured.php:50 +msgid "Affinity Slider Settings" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:868 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1137 -msgid "Organisation" +#: ../../Zotlabs/Module/Settings/Featured.php:60 +msgid "Feature/Addon Settings" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:869 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1138 -#: ../../include/page_widgets.php:46 -msgid "Title" +#: ../../Zotlabs/Module/Settings/Display.php:145 +msgid "No special theme for mobile devices" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:870 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1139 -msgid "Phone" +#: ../../Zotlabs/Module/Settings/Display.php:148 +#, php-format +msgid "%s - (Experimental)" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:872 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1141 -msgid "Instant messenger" +#: ../../Zotlabs/Module/Settings/Display.php:198 +msgid "Display Settings" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:873 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1142 -msgid "Website" +#: ../../Zotlabs/Module/Settings/Display.php:199 +msgid "Theme Settings" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:875 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1144 -msgid "Note" +#: ../../Zotlabs/Module/Settings/Display.php:200 +msgid "Custom Theme Settings" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:876 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1145 -#: ../../extend/addon/addon/cdav/cdav.php:270 -#: ../../include/connections.php:894 -msgid "Mobile" +#: ../../Zotlabs/Module/Settings/Display.php:201 +msgid "Content Settings" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:877 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1146 -#: ../../extend/addon/addon/cdav/cdav.php:271 -#: ../../include/connections.php:895 -msgid "Home" +#: ../../Zotlabs/Module/Settings/Display.php:207 +msgid "Display Theme:" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:878 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1147 -#: ../../extend/addon/addon/cdav/cdav.php:274 -#: ../../include/connections.php:898 -msgid "Work" +#: ../../Zotlabs/Module/Settings/Display.php:208 +msgid "Select scheme" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:880 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:368 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1149 -msgid "Add Contact" +#: ../../Zotlabs/Module/Settings/Display.php:210 +msgid "Mobile Theme:" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:881 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1150 -msgid "Add Field" +#: ../../Zotlabs/Module/Settings/Display.php:211 +msgid "Preload images before rendering the page" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:886 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1155 -msgid "P.O. Box" +#: ../../Zotlabs/Module/Settings/Display.php:211 +msgid "" +"The subjective page load time will be longer but the page will be ready when " +"displayed" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:887 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1156 -msgid "Additional" +#: ../../Zotlabs/Module/Settings/Display.php:212 +msgid "Enable user zoom on mobile devices" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:888 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1157 -msgid "Street" +#: ../../Zotlabs/Module/Settings/Display.php:213 +msgid "Update browser every xx seconds" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:889 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1158 -msgid "Locality" +#: ../../Zotlabs/Module/Settings/Display.php:213 +msgid "Minimum of 10 seconds, no maximum" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:890 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1159 -msgid "Region" +#: ../../Zotlabs/Module/Settings/Display.php:214 +msgid "Maximum number of conversations to load at any time:" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:891 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1160 -msgid "ZIP Code" +#: ../../Zotlabs/Module/Settings/Display.php:214 +msgid "Maximum of 100 items" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:892 ../../Zotlabs/Module/Profiles.php:756 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:1161 -msgid "Country" +#: ../../Zotlabs/Module/Settings/Display.php:215 +msgid "Show emoticons (smilies) as images" msgstr "" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../extend/addon/addon/opensearch/opensearch.php:42 -msgid "$Projectname" +#: ../../Zotlabs/Module/Settings/Display.php:216 +msgid "Manual conversation updates" msgstr "" -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" +#: ../../Zotlabs/Module/Settings/Display.php:216 +msgid "Default is on, turning this off may increase screen jumping" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:87 -msgid "Permission Denied." +#: ../../Zotlabs/Module/Settings/Display.php:217 +msgid "Link post titles to source" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." +#: ../../Zotlabs/Module/Settings/Display.php:218 +msgid "System Page Layout Editor - (advanced)" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:146 -msgid "Edit file permissions" +#: ../../Zotlabs/Module/Settings/Display.php:221 +msgid "Use blog/list mode on channel page" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:159 -msgid "Set/edit permissions" +#: ../../Zotlabs/Module/Settings/Display.php:221 +#: ../../Zotlabs/Module/Settings/Display.php:222 +msgid "(comments displayed separately)" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Include all files and sub folders" +#: ../../Zotlabs/Module/Settings/Display.php:222 +msgid "Use blog/list mode on grid page" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:161 -msgid "Return to file list" +#: ../../Zotlabs/Module/Settings/Display.php:223 +msgid "Channel page max height of content (in pixels)" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Copy/paste this code to attach file to a post" +#: ../../Zotlabs/Module/Settings/Display.php:223 +#: ../../Zotlabs/Module/Settings/Display.php:224 +msgid "click to expand content exceeding this height" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Copy/paste this URL to link file from a web page" +#: ../../Zotlabs/Module/Settings/Display.php:224 +msgid "Grid page max height of content (in pixels)" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:166 -msgid "Share this file" +#: ../../Zotlabs/Module/Settings/Oauth.php:34 +msgid "Name is required" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:167 -msgid "Show URL to this file" +#: ../../Zotlabs/Module/Settings/Oauth.php:38 +msgid "Key and Secret are required" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:168 -msgid "Notify your contacts about this file" +#: ../../Zotlabs/Module/Settings/Oauth.php:86 +#: ../../Zotlabs/Module/Settings/Oauth.php:112 +#: ../../Zotlabs/Module/Settings/Oauth.php:148 +msgid "Add application" msgstr "" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:229 -#: ../../include/conversation.php:1836 -msgid "Photos" +#: ../../Zotlabs/Module/Settings/Oauth.php:89 +msgid "Name of application" msgstr "" -#: ../../Zotlabs/Module/Apps.php:45 ../../include/widgets.php:102 -#: ../../include/nav.php:178 -msgid "Apps" +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth.php:116 +#: ../../addon/statusnet/statusnet.php:893 ../../addon/twitter/twitter.php:775 +msgid "Consumer Key" msgstr "" -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." +#: ../../Zotlabs/Module/Settings/Oauth.php:90 +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +msgid "Automatically generated - change if desired. Max length 20" msgstr "" -#: ../../Zotlabs/Module/Cal.php:263 ../../Zotlabs/Module/Events.php:605 -msgid "l, F j" +#: ../../Zotlabs/Module/Settings/Oauth.php:91 +#: ../../Zotlabs/Module/Settings/Oauth.php:117 +#: ../../addon/statusnet/statusnet.php:892 ../../addon/twitter/twitter.php:776 +msgid "Consumer Secret" msgstr "" -#: ../../Zotlabs/Module/Cal.php:312 ../../Zotlabs/Module/Events.php:660 -#: ../../include/text.php:1761 -msgid "Link to Source" +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +#: ../../Zotlabs/Module/Settings/Oauth.php:118 +msgid "Redirect" msgstr "" -#: ../../Zotlabs/Module/Cal.php:335 ../../Zotlabs/Module/Events.php:688 -msgid "Edit Event" +#: ../../Zotlabs/Module/Settings/Oauth.php:92 +msgid "" +"Redirect URI - leave blank unless your application specifically requires this" msgstr "" -#: ../../Zotlabs/Module/Cal.php:335 ../../Zotlabs/Module/Events.php:688 -msgid "Create Event" +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +#: ../../Zotlabs/Module/Settings/Oauth.php:119 +msgid "Icon url" msgstr "" -#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Events.php:691 -#: ../../include/channel.php:1370 -msgid "Export" +#: ../../Zotlabs/Module/Settings/Oauth.php:93 +#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 +msgid "Optional" msgstr "" -#: ../../Zotlabs/Module/Cal.php:341 ../../include/text.php:2307 -msgid "Import" +#: ../../Zotlabs/Module/Settings/Oauth.php:104 +msgid "Application not found." msgstr "" -#: ../../Zotlabs/Module/Cal.php:345 ../../Zotlabs/Module/Events.php:700 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:848 -msgid "Today" +#: ../../Zotlabs/Module/Settings/Oauth.php:147 +msgid "Connected Apps" msgstr "" -#: ../../Zotlabs/Module/Group.php:24 -msgid "Privacy group created." +#: ../../Zotlabs/Module/Settings/Oauth.php:151 +msgid "Client key starts with" msgstr "" -#: ../../Zotlabs/Module/Group.php:30 -msgid "Could not create privacy group." +#: ../../Zotlabs/Module/Settings/Oauth.php:152 +msgid "No name" msgstr "" -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3899 -msgid "Privacy group not found." +#: ../../Zotlabs/Module/Settings/Oauth.php:153 +msgid "Remove authorization" msgstr "" -#: ../../Zotlabs/Module/Group.php:58 -msgid "Privacy group updated." +#: ../../Zotlabs/Module/Embedphotos.php:140 ../../Zotlabs/Module/Photos.php:751 +#: ../../Zotlabs/Module/Photos.php:1290 ../../Zotlabs/Widget/Album.php:78 +msgid "View Photo" msgstr "" -#: ../../Zotlabs/Module/Group.php:90 -msgid "Create a group of channels." +#: ../../Zotlabs/Module/Embedphotos.php:146 ../../Zotlabs/Module/Photos.php:757 +#: ../../Zotlabs/Module/Photos.php:1213 ../../Zotlabs/Lib/Apps.php:571 +#: ../../Zotlabs/Lib/Apps.php:649 ../../Zotlabs/Storage/Browser.php:163 +#: ../../Zotlabs/Widget/Album.php:84 ../../addon/cdav/Mod_Cdav.php:745 +#: ../../addon/cdav/Mod_Cdav.php:746 ../../addon/cdav/Mod_Cdav.php:753 +#: ../../include/conversation.php:1110 +msgid "Unknown" msgstr "" -#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 -msgid "Privacy group name: " +#: ../../Zotlabs/Module/Embedphotos.php:156 ../../Zotlabs/Module/Photos.php:782 +#: ../../Zotlabs/Widget/Album.php:95 +msgid "Edit Album" msgstr "" -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 -msgid "Members are visible to other channels" +#: ../../Zotlabs/Module/Embedphotos.php:158 ../../Zotlabs/Module/Photos.php:784 +#: ../../Zotlabs/Module/Photos.php:1321 +#: ../../Zotlabs/Module/Profile_photo.php:423 +#: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Storage/Browser.php:229 ../../Zotlabs/Storage/Browser.php:334 +#: ../../Zotlabs/Widget/Album.php:97 ../../addon/cdav/include/widgets.php:132 +#: ../../addon/cdav/include/widgets.php:168 +msgid "Upload" msgstr "" -#: ../../Zotlabs/Module/Group.php:111 -msgid "Privacy group removed." +#: ../../Zotlabs/Module/Achievements.php:38 +msgid "Some blurb about what to do when you're new here" msgstr "" -#: ../../Zotlabs/Module/Group.php:113 -msgid "Unable to remove privacy group." +#: ../../Zotlabs/Module/Thing.php:114 +msgid "Thing updated" msgstr "" -#: ../../Zotlabs/Module/Group.php:183 -msgid "Privacy group editor" +#: ../../Zotlabs/Module/Thing.php:166 +msgid "Object store: failed" msgstr "" -#: ../../Zotlabs/Module/Group.php:199 -msgid "All Connected Channels" +#: ../../Zotlabs/Module/Thing.php:170 +msgid "Thing added" msgstr "" -#: ../../Zotlabs/Module/Group.php:231 -msgid "Click on a channel to add or remove." +#: ../../Zotlabs/Module/Thing.php:196 +#, php-format +msgid "OBJ: %1$s %2$s %3$s" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:45 -msgid "Invalid message" +#: ../../Zotlabs/Module/Thing.php:259 +msgid "Show Thing" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:78 -msgid "no results" +#: ../../Zotlabs/Module/Thing.php:266 +msgid "item not found." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:93 -msgid "channel sync processed" +#: ../../Zotlabs/Module/Thing.php:299 +msgid "Edit Thing" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:97 -msgid "queued" +#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355 +msgid "Select a profile" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:101 -msgid "posted" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Post an activity" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:105 -msgid "accepted for delivery" +#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 +msgid "Only sends to viewers of the applicable profile" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:109 -msgid "updated" +#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360 +msgid "Name of thing e.g. something" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:112 -msgid "update ignored" +#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361 +msgid "URL of thing (optional)" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:115 -msgid "permission denied" +#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362 +msgid "URL for photo of thing (optional)" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:119 -msgid "recipient not found" +#: ../../Zotlabs/Module/Thing.php:313 ../../Zotlabs/Module/Thing.php:363 +#: ../../Zotlabs/Module/Photos.php:647 ../../Zotlabs/Module/Photos.php:1011 +#: ../../Zotlabs/Module/Connedit.php:672 ../../Zotlabs/Module/Chat.php:233 +#: ../../Zotlabs/Module/Filestorage.php:152 ../../include/acl_selectors.php:218 +msgid "Permissions" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:122 -msgid "mail recalled" +#: ../../Zotlabs/Module/Thing.php:353 +msgid "Add Thing to your Profile" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:125 -msgid "duplicate mail received" +#: ../../Zotlabs/Module/Notify.php:57 ../../Zotlabs/Module/Notifications.php:38 +msgid "No more system notifications." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:128 -msgid "mail delivered" +#: ../../Zotlabs/Module/Notify.php:61 ../../Zotlabs/Module/Notifications.php:42 +msgid "System Notifications" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:148 -#, php-format -msgid "Delivery report for %1$s" +#: ../../Zotlabs/Module/Follow.php:31 +msgid "Channel added." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:151 -msgid "Options" +#: ../../Zotlabs/Module/Import.php:144 +#, php-format +msgid "Your service plan only allows %d channels." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:152 -msgid "Redeliver" +#: ../../Zotlabs/Module/Import.php:158 +msgid "No channel. Import failed." msgstr "" -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:203 -msgid "webpage" +#: ../../Zotlabs/Module/Import.php:466 +#: ../../addon/diaspora/import_diaspora.php:142 +msgid "Import completed." msgstr "" -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:209 -msgid "block" +#: ../../Zotlabs/Module/Import.php:494 +msgid "You must be logged in to use this feature." msgstr "" -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:206 -msgid "layout" +#: ../../Zotlabs/Module/Import.php:499 +msgid "Import Channel" msgstr "" -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:212 -msgid "menu" +#: ../../Zotlabs/Module/Import.php:500 +msgid "" +"Use this form to import an existing channel from a different server/hub. You " +"may retrieve the channel identity from the old server/hub via the network or " +"provide an export file." msgstr "" -#: ../../Zotlabs/Module/Impel.php:191 -#, php-format -msgid "%s element installed" +#: ../../Zotlabs/Module/Import.php:502 +msgid "Or provide the old server/hub details" msgstr "" -#: ../../Zotlabs/Module/Impel.php:194 -#, php-format -msgid "%s element installation failed" +#: ../../Zotlabs/Module/Import.php:503 +msgid "Your old identity address (xyz@example.com)" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:42 ../../Zotlabs/Module/Import.php:57 -msgid "Nothing to import." +#: ../../Zotlabs/Module/Import.php:504 +msgid "Your old login email address" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:66 ../../Zotlabs/Module/Import.php:69 -#: ../../Zotlabs/Module/Import.php:84 -msgid "Unable to download data from old server" +#: ../../Zotlabs/Module/Import.php:505 +msgid "Your old login password" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:72 ../../Zotlabs/Module/Import.php:91 -msgid "Imported file is empty." +#: ../../Zotlabs/Module/Import.php:506 +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 "" -#: ../../Zotlabs/Module/Import_items.php:88 -#: ../../Zotlabs/Module/Import.php:111 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." +#: ../../Zotlabs/Module/Import.php:507 +msgid "Make this hub my primary location" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" +#: ../../Zotlabs/Module/Import.php:508 +msgid "Move this channel (disable all previous locations)" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" +#: ../../Zotlabs/Module/Import.php:509 +msgid "Import a few months of posts if possible (limited by available memory" msgstr "" -#: ../../Zotlabs/Module/Import_items.php:120 -msgid "Use this form to import existing posts and content from an export file." +#: ../../Zotlabs/Module/Import.php:510 +msgid "" +"This process may take several minutes to complete. Please submit the form " +"only once and leave this page open until finished." msgstr "" -#: ../../Zotlabs/Module/Import_items.php:121 -#: ../../Zotlabs/Module/Import.php:495 -msgid "File to Upload" +#: ../../Zotlabs/Module/Rmagic.php:35 +msgid "Authentication failed." msgstr "" -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." +#: ../../Zotlabs/Module/Rmagic.php:75 ../../include/channel.php:1984 +msgid "Remote Authentication" msgstr "" -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" +#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:1985 +msgid "Enter your channel address (e.g. channel@example.com)" msgstr "" -#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Profiles.php:813 -#: ../../Zotlabs/Module/Wiki.php:166 ../../Zotlabs/Module/Chat.php:255 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:152 -msgid "Create New" +#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:1986 +msgid "Authenticate" msgstr "" -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:223 -msgid "Channel Manager" +#: ../../Zotlabs/Module/Cal.php:62 ../../Zotlabs/Module/Chanview.php:96 +#: ../../Zotlabs/Module/Page.php:56 ../../Zotlabs/Module/Wall_upload.php:31 +#: ../../Zotlabs/Module/Block.php:43 +msgid "Channel not found." msgstr "" -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." msgstr "" -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." +#: ../../Zotlabs/Module/Cal.php:342 ../../include/text.php:2291 +msgid "Import" msgstr "" -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" +#: ../../Zotlabs/Module/Api.php:72 ../../Zotlabs/Module/Api.php:93 +msgid "Authorize application connection" msgstr "" -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" +#: ../../Zotlabs/Module/Api.php:73 +msgid "Return to your app and insert this Security Code:" msgstr "" -#: ../../Zotlabs/Module/Manage.php:172 -#, php-format -msgid "%d new messages" +#: ../../Zotlabs/Module/Api.php:83 +msgid "Please login to continue." msgstr "" -#: ../../Zotlabs/Module/Manage.php:173 -#, php-format -msgid "%d new introductions" +#: ../../Zotlabs/Module/Api.php:95 +msgid "" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" msgstr "" -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." msgstr "" -#: ../../Zotlabs/Module/Import.php:134 -#, php-format -msgid "Your service plan only allows %d channels." +#: ../../Zotlabs/Module/Editblock.php:116 ../../Zotlabs/Module/Chat.php:205 +#: ../../Zotlabs/Module/Editwebpage.php:143 ../../Zotlabs/Module/Mail.php:306 +#: ../../Zotlabs/Module/Mail.php:448 ../../include/conversation.php:1228 +msgid "Insert web link" msgstr "" -#: ../../Zotlabs/Module/Import.php:149 -msgid "No channel. Import failed." +#: ../../Zotlabs/Module/Editblock.php:129 ../../include/conversation.php:1339 +msgid "Title (optional)" msgstr "" -#: ../../Zotlabs/Module/Import.php:467 -#: ../../extend/addon/addon/diaspora/import_diaspora.php:142 -msgid "Import completed." +#: ../../Zotlabs/Module/Editblock.php:138 +msgid "Edit Block" msgstr "" -#: ../../Zotlabs/Module/Import.php:488 -msgid "You must be logged in to use this feature." +#: ../../Zotlabs/Module/Profile.php:91 +msgid "vcard" msgstr "" -#: ../../Zotlabs/Module/Import.php:493 -msgid "Import Channel" +#: ../../Zotlabs/Module/Apps.php:45 +msgid "Apps" msgstr "" -#: ../../Zotlabs/Module/Import.php:494 -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." +#: ../../Zotlabs/Module/Apps.php:48 +msgid "Manage apps" msgstr "" -#: ../../Zotlabs/Module/Import.php:496 -msgid "Or provide the old server/hub details" +#: ../../Zotlabs/Module/Apps.php:49 +msgid "Create new app" msgstr "" -#: ../../Zotlabs/Module/Import.php:497 -msgid "Your old identity address (xyz@example.com)" +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:256 +#, php-format +msgctxt "mood" +msgid "%1$s is %2$s" msgstr "" -#: ../../Zotlabs/Module/Import.php:498 -msgid "Your old login email address" +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:234 +msgid "Mood" msgstr "" -#: ../../Zotlabs/Module/Import.php:499 -msgid "Your old login password" +#: ../../Zotlabs/Module/Mood.php:136 +msgid "Set your current mood and tell your friends" msgstr "" -#: ../../Zotlabs/Module/Import.php:500 -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." +#: ../../Zotlabs/Module/Connections.php:52 +#: ../../Zotlabs/Module/Connections.php:157 +#: ../../Zotlabs/Module/Connections.php:246 +msgid "Blocked" msgstr "" -#: ../../Zotlabs/Module/Import.php:501 -msgid "Make this hub my primary location" +#: ../../Zotlabs/Module/Connections.php:57 +#: ../../Zotlabs/Module/Connections.php:164 +#: ../../Zotlabs/Module/Connections.php:245 +msgid "Ignored" msgstr "" -#: ../../Zotlabs/Module/Import.php:502 -msgid "Move this channel (disable all previous locations)" +#: ../../Zotlabs/Module/Connections.php:62 +#: ../../Zotlabs/Module/Connections.php:178 +#: ../../Zotlabs/Module/Connections.php:244 +msgid "Hidden" msgstr "" -#: ../../Zotlabs/Module/Import.php:503 -msgid "Import a few months of posts if possible (limited by available memory" +#: ../../Zotlabs/Module/Connections.php:67 +#: ../../Zotlabs/Module/Connections.php:171 +#: ../../Zotlabs/Module/Connections.php:243 +msgid "Archived" msgstr "" -#: ../../Zotlabs/Module/Import.php:504 -msgid "" -"This process may take several minutes to complete. Please submit the form " -"only once and leave this page open until finished." +#: ../../Zotlabs/Module/Connections.php:72 +#: ../../Zotlabs/Module/Connections.php:82 ../../Zotlabs/Module/Menu.php:116 +#: ../../include/conversation.php:1666 +msgid "New" msgstr "" -#: ../../Zotlabs/Module/Lockview.php:75 -msgid "Remote privacy information not available." +#: ../../Zotlabs/Module/Connections.php:88 +#: ../../Zotlabs/Module/Connections.php:103 +#: ../../Zotlabs/Module/Connedit.php:709 ../../Zotlabs/Widget/Affinity.php:30 +msgid "All" msgstr "" -#: ../../Zotlabs/Module/Lockview.php:96 -msgid "Visible to:" +#: ../../Zotlabs/Module/Connections.php:134 +msgid "New Connections" msgstr "" -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." +#: ../../Zotlabs/Module/Connections.php:137 +msgid "Show pending (new) connections" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." +#: ../../Zotlabs/Module/Connections.php:144 +msgid "Show all connections" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." +#: ../../Zotlabs/Module/Connections.php:160 +msgid "Only show blocked connections" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." +#: ../../Zotlabs/Module/Connections.php:167 +msgid "Only show ignored connections" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 -msgid "Menu Item Permissions" +#: ../../Zotlabs/Module/Connections.php:174 +msgid "Only show archived connections" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 -#: ../../Zotlabs/Module/Settings/Channel.php:510 -msgid "(click to open/close)" +#: ../../Zotlabs/Module/Connections.php:181 +msgid "Only show hidden connections" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 -msgid "Link Name" +#: ../../Zotlabs/Module/Connections.php:242 +msgid "Pending approval" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 -msgid "Link or Submenu Target" +#: ../../Zotlabs/Module/Connections.php:258 +#, php-format +msgid "%1$s [%2$s]" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Enter URL of the link or select a menu name to create a submenu" +#: ../../Zotlabs/Module/Connections.php:259 +msgid "Edit connection" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 -msgid "Use magic-auth if available" +#: ../../Zotlabs/Module/Connections.php:260 +msgid "Delete connection" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 -msgid "Open link in new window" +#: ../../Zotlabs/Module/Connections.php:269 +msgid "Channel address" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Order in list" +#: ../../Zotlabs/Module/Connections.php:271 +msgid "Network" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Higher numbers will sink to bottom of listing" +#: ../../Zotlabs/Module/Connections.php:274 +msgid "Call" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:165 -msgid "Submit and finish" +#: ../../Zotlabs/Module/Connections.php:276 +msgid "Status" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:166 -msgid "Submit and continue" +#: ../../Zotlabs/Module/Connections.php:278 +msgid "Connected" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:174 -msgid "Menu:" +#: ../../Zotlabs/Module/Connections.php:280 +msgid "Approve connection" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:177 -msgid "Link Target" +#: ../../Zotlabs/Module/Connections.php:282 +msgid "Ignore connection" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Edit menu" +#: ../../Zotlabs/Module/Connections.php:283 +#: ../../Zotlabs/Module/Connedit.php:626 +msgid "Ignore" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Edit element" +#: ../../Zotlabs/Module/Connections.php:284 +msgid "Recent activity" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Drop element" +#: ../../Zotlabs/Module/Connections.php:308 ../../Zotlabs/Lib/Apps.php:216 +#: ../../include/text.php:957 ../../include/nav.php:185 +msgid "Connections" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "New element" +#: ../../Zotlabs/Module/Connections.php:313 +msgid "Search your connections" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:186 -msgid "Edit this menu container" +#: ../../Zotlabs/Module/Connections.php:314 +msgid "Connections search" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:187 -msgid "Add menu element" +#: ../../Zotlabs/Module/Connections.php:315 +#: ../../Zotlabs/Module/Directory.php:391 +#: ../../Zotlabs/Module/Directory.php:396 ../../include/contact_widgets.php:23 +msgid "Find" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:188 -msgid "Delete this menu item" +#: ../../Zotlabs/Module/Viewsrc.php:43 +msgid "item" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:189 -msgid "Edit this menu item" +#: ../../Zotlabs/Module/Viewsrc.php:55 +msgid "Source of Item" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:206 -msgid "Menu item not found." +#: ../../Zotlabs/Module/Bookmarks.php:53 +msgid "Bookmark added" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:219 -msgid "Menu item deleted." +#: ../../Zotlabs/Module/Bookmarks.php:76 +msgid "My Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:221 -msgid "Menu item could not be deleted." +#: ../../Zotlabs/Module/Bookmarks.php:87 +msgid "My Connections Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Mitem.php:228 -msgid "Edit Menu Element" +#: ../../Zotlabs/Module/Removeaccount.php:35 +msgid "" +"Account removals are not allowed within 48 hours of changing the account " +"password." msgstr "" -#: ../../Zotlabs/Module/Mitem.php:238 -msgid "Link text" +#: ../../Zotlabs/Module/Removeaccount.php:57 +msgid "Remove This Account" msgstr "" -#: ../../Zotlabs/Module/Appman.php:38 ../../Zotlabs/Module/Appman.php:54 -msgid "App installed." +#: ../../Zotlabs/Module/Removeaccount.php:58 +msgid "" +"This account and all its channels will be completely removed from the " +"network. " msgstr "" -#: ../../Zotlabs/Module/Appman.php:47 -msgid "Malformed app." +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"Remove this account, all its channels and all its channel clones from the " +"network" msgstr "" -#: ../../Zotlabs/Module/Appman.php:110 -msgid "Embed code" +#: ../../Zotlabs/Module/Removeaccount.php:60 +msgid "" +"By default only the instances of the channels located on this hub will be " +"removed from the network" msgstr "" -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Edit App" +#: ../../Zotlabs/Module/Photos.php:78 +msgid "Page owner information could not be retrieved." msgstr "" -#: ../../Zotlabs/Module/Appman.php:116 -msgid "Create App" +#: ../../Zotlabs/Module/Photos.php:94 ../../Zotlabs/Module/Photos.php:120 +msgid "Album not found." msgstr "" -#: ../../Zotlabs/Module/Appman.php:121 -msgid "Name of app" +#: ../../Zotlabs/Module/Photos.php:103 +msgid "Delete Album" msgstr "" -#: ../../Zotlabs/Module/Appman.php:121 ../../Zotlabs/Module/Appman.php:122 -#: ../../Zotlabs/Module/Profiles.php:744 ../../Zotlabs/Module/Profiles.php:748 -#: ../../Zotlabs/Module/Events.php:460 ../../Zotlabs/Module/Events.php:465 -#: ../../include/datetime.php:259 -msgid "Required" +#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1023 +msgid "Delete Photo" msgstr "" -#: ../../Zotlabs/Module/Appman.php:122 -msgid "Location (URL) of app" +#: ../../Zotlabs/Module/Photos.php:501 +msgid "No photos selected" msgstr "" -#: ../../Zotlabs/Module/Appman.php:123 ../../Zotlabs/Module/Events.php:473 -#: ../../Zotlabs/Module/Rbmark.php:101 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:838 -#: ../../extend/addon/addon/rendezvous/rendezvous.php:173 -msgid "Description" +#: ../../Zotlabs/Module/Photos.php:550 +msgid "Access to this item is restricted." msgstr "" -#: ../../Zotlabs/Module/Appman.php:124 -msgid "Photo icon URL" +#: ../../Zotlabs/Module/Photos.php:591 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." msgstr "" -#: ../../Zotlabs/Module/Appman.php:124 -msgid "80 x 80 pixels - optional" +#: ../../Zotlabs/Module/Photos.php:594 +#, php-format +msgid "%1$.2f MB photo storage used." msgstr "" -#: ../../Zotlabs/Module/Appman.php:125 -msgid "Categories (optional, comma separated list)" +#: ../../Zotlabs/Module/Photos.php:636 +msgid "Upload Photos" msgstr "" -#: ../../Zotlabs/Module/Appman.php:126 -msgid "Version ID" +#: ../../Zotlabs/Module/Photos.php:640 +msgid "Enter an album name" msgstr "" -#: ../../Zotlabs/Module/Appman.php:127 -msgid "Price of app" +#: ../../Zotlabs/Module/Photos.php:641 +msgid "or select an existing album (doubleclick)" msgstr "" -#: ../../Zotlabs/Module/Appman.php:128 -msgid "Location (URL) to purchase app" +#: ../../Zotlabs/Module/Photos.php:642 +msgid "Create a status post for this upload" msgstr "" -#: ../../Zotlabs/Module/Ratings.php:70 -msgid "No ratings" +#: ../../Zotlabs/Module/Photos.php:643 +msgid "Caption (optional):" msgstr "" -#: ../../Zotlabs/Module/Ratings.php:98 -msgid "Rating: " +#: ../../Zotlabs/Module/Photos.php:644 +msgid "Description (optional):" msgstr "" -#: ../../Zotlabs/Module/Ratings.php:99 -msgid "Website: " +#: ../../Zotlabs/Module/Photos.php:725 +msgid "Show Newest First" msgstr "" -#: ../../Zotlabs/Module/Ratings.php:101 -msgid "Description: " +#: ../../Zotlabs/Module/Photos.php:727 +msgid "Show Oldest First" msgstr "" -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." +#: ../../Zotlabs/Module/Photos.php:832 +msgid "Permission denied. Access to this item may be restricted." msgstr "" -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 -#, php-format -msgctxt "mood" -msgid "%1$s is %2$s" +#: ../../Zotlabs/Module/Photos.php:834 +msgid "Photo not available" msgstr "" -#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Lib/Apps.php:234 -msgid "Mood" +#: ../../Zotlabs/Module/Photos.php:892 +msgid "Use as profile photo" msgstr "" -#: ../../Zotlabs/Module/Mood.php:136 -msgid "Set your current mood and tell your friends" +#: ../../Zotlabs/Module/Photos.php:893 +msgid "Use as cover photo" msgstr "" -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:38 -msgid "No more system notifications." +#: ../../Zotlabs/Module/Photos.php:900 +msgid "Private Photo" msgstr "" -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:42 -msgid "System Notifications" +#: ../../Zotlabs/Module/Photos.php:915 +msgid "View Full Size" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:184 -#: ../../Zotlabs/Module/Profiles.php:241 ../../Zotlabs/Module/Profiles.php:660 -#: ../../extend/addon/addon/friendica/dfrn_confirm.php:62 -msgid "Profile not found." +#: ../../Zotlabs/Module/Photos.php:997 +msgid "Edit photo" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:44 -msgid "Profile deleted." +#: ../../Zotlabs/Module/Photos.php:999 +msgid "Rotate CW (right)" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:105 -msgid "Profile-" +#: ../../Zotlabs/Module/Photos.php:1000 +msgid "Rotate CCW (left)" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:90 ../../Zotlabs/Module/Profiles.php:127 -msgid "New profile created." +#: ../../Zotlabs/Module/Photos.php:1003 +msgid "Move photo to album" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:111 -msgid "Profile unavailable to clone." +#: ../../Zotlabs/Module/Photos.php:1004 +msgid "Enter a new album name" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:146 -msgid "Profile unavailable to export." +#: ../../Zotlabs/Module/Photos.php:1005 +msgid "or select an existing one (doubleclick)" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:252 -msgid "Profile Name is required." +#: ../../Zotlabs/Module/Photos.php:1008 +msgid "Caption" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:460 -msgid "Marital Status" +#: ../../Zotlabs/Module/Photos.php:1010 +msgid "Add a Tag" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:464 -msgid "Romantic Partner" +#: ../../Zotlabs/Module/Photos.php:1018 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:468 ../../Zotlabs/Module/Profiles.php:771 -msgid "Likes" +#: ../../Zotlabs/Module/Photos.php:1021 +msgid "Flag as adult in album view" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:472 ../../Zotlabs/Module/Profiles.php:772 -msgid "Dislikes" +#: ../../Zotlabs/Module/Photos.php:1040 ../../Zotlabs/Lib/ThreadItem.php:269 +msgid "I like this (toggle)" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:476 ../../Zotlabs/Module/Profiles.php:779 -msgid "Work/Employment" +#: ../../Zotlabs/Module/Photos.php:1041 ../../Zotlabs/Lib/ThreadItem.php:270 +msgid "I don't like this (toggle)" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:479 -msgid "Religion" +#: ../../Zotlabs/Module/Photos.php:1043 ../../Zotlabs/Lib/ThreadItem.php:412 +#: ../../include/conversation.php:739 +msgid "Please wait" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:483 -msgid "Political Views" +#: ../../Zotlabs/Module/Photos.php:1059 ../../Zotlabs/Module/Photos.php:1177 +#: ../../Zotlabs/Lib/ThreadItem.php:729 +msgid "This is you" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:487 -#: ../../extend/addon/addon/openid/MysqlProvider.php:74 -msgid "Gender" +#: ../../Zotlabs/Module/Photos.php:1061 ../../Zotlabs/Module/Photos.php:1179 +#: ../../Zotlabs/Lib/ThreadItem.php:731 ../../include/js_strings.php:6 +msgid "Comment" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:491 -msgid "Sexual Preference" +#: ../../Zotlabs/Module/Photos.php:1077 ../../include/conversation.php:574 +msgctxt "title" +msgid "Likes" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:495 -msgid "Homepage" +#: ../../Zotlabs/Module/Photos.php:1077 ../../include/conversation.php:574 +msgctxt "title" +msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:499 -msgid "Interests" +#: ../../Zotlabs/Module/Photos.php:1078 ../../include/conversation.php:575 +msgctxt "title" +msgid "Agree" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:595 -msgid "Profile updated." +#: ../../Zotlabs/Module/Photos.php:1078 ../../include/conversation.php:575 +msgctxt "title" +msgid "Disagree" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:679 -msgid "Hide your connections list from viewers of this profile" +#: ../../Zotlabs/Module/Photos.php:1078 ../../include/conversation.php:575 +msgctxt "title" +msgid "Abstain" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:721 -msgid "Edit Profile Details" +#: ../../Zotlabs/Module/Photos.php:1079 ../../include/conversation.php:576 +msgctxt "title" +msgid "Attending" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:723 -msgid "View this profile" +#: ../../Zotlabs/Module/Photos.php:1079 ../../include/conversation.php:576 +msgctxt "title" +msgid "Not attending" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:724 ../../Zotlabs/Module/Profiles.php:806 -#: ../../include/channel.php:1066 -msgid "Edit visibility" +#: ../../Zotlabs/Module/Photos.php:1079 ../../include/conversation.php:576 +msgctxt "title" +msgid "Might attend" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:725 -msgid "Profile Tools" +#: ../../Zotlabs/Module/Photos.php:1096 ../../Zotlabs/Module/Photos.php:1108 +#: ../../Zotlabs/Lib/ThreadItem.php:187 ../../Zotlabs/Lib/ThreadItem.php:199 +msgid "View all" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:726 -msgid "Change cover photo" -msgstr "" +#: ../../Zotlabs/Module/Photos.php:1100 ../../Zotlabs/Lib/ThreadItem.php:191 +#: ../../include/conversation.php:1907 ../../include/channel.php:1268 +#: ../../include/taxonomy.php:403 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Profiles.php:727 ../../include/channel.php:1037 -msgid "Change profile photo" -msgstr "" +#: ../../Zotlabs/Module/Photos.php:1105 ../../Zotlabs/Lib/ThreadItem.php:196 +#: ../../include/conversation.php:1910 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" -#: ../../Zotlabs/Module/Profiles.php:728 -msgid "Create a new profile using these settings" +#: ../../Zotlabs/Module/Photos.php:1205 +msgid "Photo Tools" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:729 -msgid "Clone this profile" +#: ../../Zotlabs/Module/Photos.php:1214 +msgid "In This Photo:" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:730 -msgid "Delete this profile" +#: ../../Zotlabs/Module/Photos.php:1219 +msgid "Map" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:731 -msgid "Add profile things" +#: ../../Zotlabs/Module/Photos.php:1227 ../../Zotlabs/Lib/ThreadItem.php:401 +msgctxt "noun" +msgid "Likes" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:732 ../../include/conversation.php:1715 -#: ../../include/widgets.php:105 -msgid "Personal" +#: ../../Zotlabs/Module/Photos.php:1228 ../../Zotlabs/Lib/ThreadItem.php:402 +msgctxt "noun" +msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:734 -msgid "Relation" +#: ../../Zotlabs/Module/Photos.php:1233 ../../Zotlabs/Lib/ThreadItem.php:407 +#: ../../include/acl_selectors.php:220 +msgid "Close" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:735 ../../include/datetime.php:55 -msgid "Miscellaneous" +#: ../../Zotlabs/Module/Photos.php:1305 ../../Zotlabs/Module/Photos.php:1318 +#: ../../Zotlabs/Module/Photos.php:1319 ../../include/photos.php:529 +msgid "Recent Photos" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:737 -msgid "Import profile from file" +#: ../../Zotlabs/Module/Wiki.php:30 +msgid "Profile Unavailable." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:738 -msgid "Export profile to file" +#: ../../Zotlabs/Module/Wiki.php:44 ../../addon/gitwiki/Mod_Gitwiki.php:42 +msgid "Not found" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:739 -msgid "Your gender" +#: ../../Zotlabs/Module/Wiki.php:68 ../../addon/gitwiki/Mod_Gitwiki.php:62 +msgid "Invalid channel" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:740 -msgid "Marital status" +#: ../../Zotlabs/Module/Wiki.php:160 ../../addon/gitwiki/Mod_Gitwiki.php:146 +#: ../../include/conversation.php:1854 ../../include/nav.php:462 +msgid "Wikis" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:741 -msgid "Sexual preference" +#: ../../Zotlabs/Module/Wiki.php:166 ../../addon/gitwiki/Mod_Gitwiki.php:152 +msgid "Download" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:744 -msgid "Profile name" +#: ../../Zotlabs/Module/Wiki.php:168 ../../Zotlabs/Module/Chat.php:254 +#: ../../Zotlabs/Module/Profiles.php:834 ../../Zotlabs/Module/Manage.php:143 +#: ../../addon/gitwiki/Mod_Gitwiki.php:154 +msgid "Create New" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:746 -msgid "This is your default profile." +#: ../../Zotlabs/Module/Wiki.php:170 ../../addon/gitwiki/Mod_Gitwiki.php:156 +msgid "Wiki name" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:748 -msgid "Your full name" +#: ../../Zotlabs/Module/Wiki.php:171 ../../addon/gitwiki/Mod_Gitwiki.php:157 +msgid "Content type" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:749 -msgid "Title/Description" +#: ../../Zotlabs/Module/Wiki.php:173 ../../Zotlabs/Storage/Browser.php:234 +#: ../../addon/gitwiki/Mod_Gitwiki.php:159 +msgid "Type" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:752 -msgid "Street address" +#: ../../Zotlabs/Module/Wiki.php:180 ../../addon/gitwiki/Mod_Gitwiki.php:166 +msgid "Create a status post for this wiki" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:753 -msgid "Locality/City" +#: ../../Zotlabs/Module/Wiki.php:205 ../../addon/gitwiki/Mod_Gitwiki.php:185 +msgid "Wiki not found" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:754 -msgid "Region/State" +#: ../../Zotlabs/Module/Wiki.php:229 ../../addon/gitwiki/Mod_Gitwiki.php:210 +msgid "Rename page" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:755 -msgid "Postal/Zip code" +#: ../../Zotlabs/Module/Wiki.php:233 ../../addon/gitwiki/Mod_Gitwiki.php:214 +msgid "Error retrieving page content" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:761 -msgid "Who (if applicable)" +#: ../../Zotlabs/Module/Wiki.php:239 +msgid "New page" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:761 -msgid "Examples: cathy123, Cathy Williams, cathy@example.com" +#: ../../Zotlabs/Module/Wiki.php:263 ../../addon/gitwiki/Mod_Gitwiki.php:242 +msgid "Revision Comparison" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:762 -msgid "Since (date)" +#: ../../Zotlabs/Module/Wiki.php:264 ../../addon/gitwiki/Mod_Gitwiki.php:243 +msgid "Revert" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:765 -msgid "Tell us about yourself" +#: ../../Zotlabs/Module/Wiki.php:268 +msgid "Short description of your changes (optional)" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:766 -#: ../../extend/addon/addon/openid/MysqlProvider.php:68 -msgid "Homepage URL" +#: ../../Zotlabs/Module/Wiki.php:275 ../../addon/gitwiki/Mod_Gitwiki.php:252 +msgid "Source" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:767 -msgid "Hometown" +#: ../../Zotlabs/Module/Wiki.php:283 ../../addon/gitwiki/Mod_Gitwiki.php:260 +msgid "New page name" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:768 -msgid "Political views" +#: ../../Zotlabs/Module/Wiki.php:288 ../../addon/gitwiki/Mod_Gitwiki.php:265 +#: ../../include/conversation.php:1232 +msgid "Embed image from photo albums" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:769 -msgid "Religious views" +#: ../../Zotlabs/Module/Wiki.php:289 ../../addon/gitwiki/Mod_Gitwiki.php:266 +#: ../../include/conversation.php:1326 +msgid "Embed an image from your albums" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:770 -msgid "Keywords used in directory listings" +#: ../../Zotlabs/Module/Wiki.php:291 ../../addon/gitwiki/Mod_Gitwiki.php:268 +#: ../../include/conversation.php:1328 ../../include/conversation.php:1375 +msgid "OK" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:770 -msgid "Example: fishing photography software" +#: ../../Zotlabs/Module/Wiki.php:292 ../../addon/gitwiki/Mod_Gitwiki.php:269 +#: ../../include/conversation.php:1268 +msgid "Choose images to embed" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:773 -msgid "Musical interests" +#: ../../Zotlabs/Module/Wiki.php:293 ../../addon/gitwiki/Mod_Gitwiki.php:270 +#: ../../include/conversation.php:1269 +msgid "Choose an album" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:774 -msgid "Books, literature" +#: ../../Zotlabs/Module/Wiki.php:294 ../../addon/gitwiki/Mod_Gitwiki.php:271 +msgid "Choose a different album" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:775 -msgid "Television" +#: ../../Zotlabs/Module/Wiki.php:295 ../../addon/gitwiki/Mod_Gitwiki.php:272 +#: ../../include/conversation.php:1271 +msgid "Error getting album list" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:776 -msgid "Film/Dance/Culture/Entertainment" +#: ../../Zotlabs/Module/Wiki.php:296 ../../addon/gitwiki/Mod_Gitwiki.php:273 +#: ../../include/conversation.php:1272 +msgid "Error getting photo link" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:777 -msgid "Hobbies/Interests" +#: ../../Zotlabs/Module/Wiki.php:297 ../../addon/gitwiki/Mod_Gitwiki.php:274 +#: ../../include/conversation.php:1273 +msgid "Error getting album" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:778 -msgid "Love/Romance" +#: ../../Zotlabs/Module/Wiki.php:364 ../../addon/gitwiki/Mod_Gitwiki.php:337 +msgid "Error creating wiki. Invalid name." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:780 -msgid "School/Education" +#: ../../Zotlabs/Module/Wiki.php:371 +msgid "A wiki with this name already exists." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:781 -msgid "Contact information and social networks" +#: ../../Zotlabs/Module/Wiki.php:384 ../../addon/gitwiki/Mod_Gitwiki.php:348 +msgid "Wiki created, but error creating Home page." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:782 -msgid "My other channels" +#: ../../Zotlabs/Module/Wiki.php:391 ../../addon/gitwiki/Mod_Gitwiki.php:353 +msgid "Error creating wiki" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:802 ../../include/channel.php:1062 -msgid "Profile Image" +#: ../../Zotlabs/Module/Wiki.php:403 +msgid "Wiki delete permission denied." msgstr "" -#: ../../Zotlabs/Module/Profiles.php:812 ../../include/channel.php:1044 -#: ../../include/nav.php:105 -msgid "Edit Profiles" +#: ../../Zotlabs/Module/Wiki.php:413 +msgid "Error deleting wiki" msgstr "" -#: ../../Zotlabs/Module/Api.php:72 ../../Zotlabs/Module/Api.php:93 -msgid "Authorize application connection" +#: ../../Zotlabs/Module/Wiki.php:439 ../../addon/gitwiki/Mod_Gitwiki.php:400 +msgid "New page created" msgstr "" -#: ../../Zotlabs/Module/Api.php:73 -msgid "Return to your app and insert this Security Code:" +#: ../../Zotlabs/Module/Wiki.php:558 +msgid "Cannot delete Home" msgstr "" -#: ../../Zotlabs/Module/Api.php:83 -msgid "Please login to continue." +#: ../../Zotlabs/Module/Wiki.php:622 +msgid "Current Revision" msgstr "" -#: ../../Zotlabs/Module/Api.php:95 -msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" +#: ../../Zotlabs/Module/Wiki.php:622 +msgid "Selected Revision" msgstr "" -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." +#: ../../Zotlabs/Module/Wiki.php:672 +msgid "You must be authenticated." msgstr "" -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." +#: ../../Zotlabs/Module/Chanview.php:134 +msgid "toggle full screen mode" msgstr "" -#: ../../Zotlabs/Module/Invite.php:67 -msgid "Please join us on $Projectname" +#: ../../Zotlabs/Module/Pdledit.php:21 +msgid "Layout updated." msgstr "" -#: ../../Zotlabs/Module/Invite.php:77 -msgid "Invitation limit exceeded. Please contact your site administrator." +#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:217 +msgid "Feature disabled." msgstr "" -#: ../../Zotlabs/Module/Invite.php:82 -#, php-format -msgid "%s : Message delivery failed." +#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Pdledit.php:69 +msgid "Edit System Page Description" msgstr "" -#: ../../Zotlabs/Module/Invite.php:86 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Invite.php:105 -msgid "You have no more invitations available" +#: ../../Zotlabs/Module/Pdledit.php:64 +msgid "Layout not found." msgstr "" -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Send invitations" +#: ../../Zotlabs/Module/Pdledit.php:70 +msgid "Module Name:" msgstr "" -#: ../../Zotlabs/Module/Invite.php:137 -msgid "Enter email addresses, one per line:" +#: ../../Zotlabs/Module/Pdledit.php:71 +msgid "Layout Help" msgstr "" -#: ../../Zotlabs/Module/Invite.php:138 ../../Zotlabs/Module/Mail.php:284 -msgid "Your message:" +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:235 +#: ../../include/conversation.php:1042 +msgid "Poke" msgstr "" -#: ../../Zotlabs/Module/Invite.php:139 -msgid "Please join my community on $Projectname." +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" msgstr "" -#: ../../Zotlabs/Module/Invite.php:141 -msgid "You will need to supply this invitation code:" +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" msgstr "" -#: ../../Zotlabs/Module/Invite.php:142 -msgid "1. Register at any $Projectname location (they are all inter-connected)" +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" msgstr "" -#: ../../Zotlabs/Module/Invite.php:144 -msgid "2. Enter my $Projectname network address into the site searchbar." +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" msgstr "" -#: ../../Zotlabs/Module/Invite.php:145 -msgid "or visit" +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" msgstr "" -#: ../../Zotlabs/Module/Invite.php:147 -msgid "3. Click [Connect]" +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:20 -msgid "About this site" +#: ../../Zotlabs/Module/Profile_photo.php:61 +#: ../../Zotlabs/Module/Cover_photo.php:56 +msgid "Image uploaded but image cropping failed." msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:21 -msgid "Site Name" +#: ../../Zotlabs/Module/Profile_photo.php:115 +#: ../../Zotlabs/Module/Profile_photo.php:226 +#: ../../include/photo/photo_driver.php:647 +msgid "Profile Photos" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:25 ../../include/network.php:1972 -msgid "Administrator" +#: ../../Zotlabs/Module/Profile_photo.php:137 +#: ../../Zotlabs/Module/Cover_photo.php:159 +msgid "Image resize failed." msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:28 -msgid "Software and Project information" +#: ../../Zotlabs/Module/Profile_photo.php:196 +#: ../../addon/openclipatar/openclipatar.php:298 +msgid "" +"Shift-reload the page or clear browser cache if the new photo does not " +"display immediately." msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:29 -msgid "This site is powered by $Projectname" +#: ../../Zotlabs/Module/Profile_photo.php:203 +#: ../../Zotlabs/Module/Cover_photo.php:173 ../../include/photos.php:149 +msgid "Unable to process image" msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:30 -msgid "" -"Federated and decentralised networking and identity services provided by Zot" +#: ../../Zotlabs/Module/Profile_photo.php:238 +#: ../../Zotlabs/Module/Cover_photo.php:197 +msgid "Image upload failed." msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:32 -#, php-format -msgid "Version %s" +#: ../../Zotlabs/Module/Profile_photo.php:257 +#: ../../Zotlabs/Module/Cover_photo.php:214 +msgid "Unable to process image." msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:33 -msgid "Project homepage" +#: ../../Zotlabs/Module/Profile_photo.php:318 +#: ../../Zotlabs/Module/Profile_photo.php:365 +#: ../../Zotlabs/Module/Cover_photo.php:307 +#: ../../Zotlabs/Module/Cover_photo.php:322 +msgid "Photo not available." msgstr "" -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Developer homepage" +#: ../../Zotlabs/Module/Profile_photo.php:420 +#: ../../Zotlabs/Module/Cover_photo.php:358 +msgid "Upload File:" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:140 -msgid "Create Channel" +#: ../../Zotlabs/Module/Profile_photo.php:421 +#: ../../Zotlabs/Module/Cover_photo.php:359 +msgid "Select a profile:" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:141 -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." +#: ../../Zotlabs/Module/Profile_photo.php:422 +msgid "Use Photo for Profile" msgstr "" -#: ../../Zotlabs/Module/New_channel.php:142 -msgid "" -"or <a href=\"import\">import an existing channel</a> from another location." +#: ../../Zotlabs/Module/Profile_photo.php:422 +msgid "Upload Profile Photo" msgstr "" -#: ../../Zotlabs/Module/Setup.php:176 -msgid "$Projectname Server - Setup" +#: ../../Zotlabs/Module/Profile_photo.php:423 +#: ../../addon/openclipatar/openclipatar.php:182 +#: ../../addon/openclipatar/openclipatar.php:194 +msgid "Use" msgstr "" -#: ../../Zotlabs/Module/Setup.php:180 -msgid "Could not connect to database." +#: ../../Zotlabs/Module/Profile_photo.php:429 +#: ../../Zotlabs/Module/Cover_photo.php:365 +msgid "skip this step" msgstr "" -#: ../../Zotlabs/Module/Setup.php:184 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." +#: ../../Zotlabs/Module/Profile_photo.php:429 +#: ../../Zotlabs/Module/Cover_photo.php:365 +msgid "select a photo from your photo albums" msgstr "" -#: ../../Zotlabs/Module/Setup.php:191 -msgid "Could not create table." +#: ../../Zotlabs/Module/Profile_photo.php:448 +#: ../../Zotlabs/Module/Cover_photo.php:381 +msgid "Crop Image" msgstr "" -#: ../../Zotlabs/Module/Setup.php:196 -msgid "Your site database has been installed." +#: ../../Zotlabs/Module/Profile_photo.php:449 +#: ../../Zotlabs/Module/Cover_photo.php:382 +msgid "Please adjust the image cropping for optimum viewing." msgstr "" -#: ../../Zotlabs/Module/Setup.php:200 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." +#: ../../Zotlabs/Module/Profile_photo.php:451 +#: ../../Zotlabs/Module/Cover_photo.php:384 +msgid "Done Editing" msgstr "" -#: ../../Zotlabs/Module/Setup.php:201 ../../Zotlabs/Module/Setup.php:263 -#: ../../Zotlabs/Module/Setup.php:750 -msgid "Please see the file \"install/INSTALL.txt\"." +#: ../../Zotlabs/Module/Chatsvc.php:131 +msgid "Away" msgstr "" -#: ../../Zotlabs/Module/Setup.php:260 -msgid "System check" +#: ../../Zotlabs/Module/Chatsvc.php:136 +msgid "Online" msgstr "" -#: ../../Zotlabs/Module/Setup.php:265 -msgid "Check again" +#: ../../Zotlabs/Module/Item.php:185 +msgid "Unable to locate original post." msgstr "" -#: ../../Zotlabs/Module/Setup.php:287 -msgid "Database connection" +#: ../../Zotlabs/Module/Item.php:451 +msgid "Empty post discarded." msgstr "" -#: ../../Zotlabs/Module/Setup.php:288 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." +#: ../../Zotlabs/Module/Item.php:825 +msgid "Duplicate post suppressed." msgstr "" -#: ../../Zotlabs/Module/Setup.php:289 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." +#: ../../Zotlabs/Module/Item.php:955 +msgid "System error. Post not saved." msgstr "" -#: ../../Zotlabs/Module/Setup.php:290 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." +#: ../../Zotlabs/Module/Item.php:1085 +msgid "Unable to obtain post information from database." msgstr "" -#: ../../Zotlabs/Module/Setup.php:294 -msgid "Database Server Name" +#: ../../Zotlabs/Module/Item.php:1092 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." msgstr "" -#: ../../Zotlabs/Module/Setup.php:294 -msgid "Default is 127.0.0.1" +#: ../../Zotlabs/Module/Item.php:1099 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." msgstr "" -#: ../../Zotlabs/Module/Setup.php:295 -msgid "Database Port" +#: ../../Zotlabs/Module/Ping.php:254 +msgid "sent you a private message" msgstr "" -#: ../../Zotlabs/Module/Setup.php:295 -msgid "Communication port number - use 0 for default" +#: ../../Zotlabs/Module/Ping.php:302 +msgid "added your channel" msgstr "" -#: ../../Zotlabs/Module/Setup.php:296 -msgid "Database Login Name" +#: ../../Zotlabs/Module/Ping.php:312 +msgid "g A l F d" msgstr "" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Database Login Password" +#: ../../Zotlabs/Module/Ping.php:330 +msgid "[today]" msgstr "" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Database Name" +#: ../../Zotlabs/Module/Ping.php:339 +msgid "posted an event" msgstr "" -#: ../../Zotlabs/Module/Setup.php:299 -msgid "Database Type" +#: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 +msgid "Invalid item." msgstr "" -#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:347 -msgid "Site administrator email address" +#: ../../Zotlabs/Module/Page.php:94 ../../Zotlabs/Module/Block.php:79 +#: ../../Zotlabs/Module/Display.php:122 +#: ../../Zotlabs/Lib/NativeWikiPage.php:500 ../../Zotlabs/Web/Router.php:146 +#: ../../include/help.php:68 +msgid "Page not found." msgstr "" -#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:347 +#: ../../Zotlabs/Module/Page.php:131 msgid "" -"Your account email address must match this in order to use the web admin " -"panel." +"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 "" -#: ../../Zotlabs/Module/Setup.php:302 ../../Zotlabs/Module/Setup.php:349 -msgid "Website URL" +#: ../../Zotlabs/Module/Connedit.php:79 +msgid "Could not access contact record." msgstr "" -#: ../../Zotlabs/Module/Setup.php:302 ../../Zotlabs/Module/Setup.php:349 -msgid "Please use SSL (https) URL if available." +#: ../../Zotlabs/Module/Connedit.php:109 +msgid "Could not locate selected profile." msgstr "" -#: ../../Zotlabs/Module/Setup.php:303 ../../Zotlabs/Module/Setup.php:353 -msgid "Please select a default timezone for your website" +#: ../../Zotlabs/Module/Connedit.php:246 +msgid "Connection updated." msgstr "" -#: ../../Zotlabs/Module/Setup.php:336 -msgid "Site settings" +#: ../../Zotlabs/Module/Connedit.php:248 +msgid "Failed to update connection record." msgstr "" -#: ../../Zotlabs/Module/Setup.php:392 -msgid "PHP version 5.5 or greater is required." +#: ../../Zotlabs/Module/Connedit.php:298 +msgid "is now connected to" msgstr "" -#: ../../Zotlabs/Module/Setup.php:393 -msgid "PHP version" +#: ../../Zotlabs/Module/Connedit.php:423 +msgid "Could not access address book record." msgstr "" -#: ../../Zotlabs/Module/Setup.php:409 -msgid "Could not find a command line version of PHP in the web server PATH." +#: ../../Zotlabs/Module/Connedit.php:471 +msgid "Refresh failed - channel is currently unavailable." msgstr "" -#: ../../Zotlabs/Module/Setup.php:410 -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." +#: ../../Zotlabs/Module/Connedit.php:486 ../../Zotlabs/Module/Connedit.php:495 +#: ../../Zotlabs/Module/Connedit.php:504 ../../Zotlabs/Module/Connedit.php:513 +#: ../../Zotlabs/Module/Connedit.php:526 +msgid "Unable to set address book parameters." msgstr "" -#: ../../Zotlabs/Module/Setup.php:414 -msgid "PHP executable path" +#: ../../Zotlabs/Module/Connedit.php:550 +msgid "Connection has been removed." msgstr "" -#: ../../Zotlabs/Module/Setup.php:414 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." +#: ../../Zotlabs/Module/Connedit.php:590 ../../Zotlabs/Lib/Apps.php:228 +#: ../../addon/openclipatar/openclipatar.php:57 +#: ../../include/conversation.php:982 ../../include/nav.php:106 +msgid "View Profile" msgstr "" -#: ../../Zotlabs/Module/Setup.php:419 -msgid "Command line PHP" +#: ../../Zotlabs/Module/Connedit.php:593 +#, php-format +msgid "View %s's profile" msgstr "" -#: ../../Zotlabs/Module/Setup.php:429 -msgid "" -"Unable to check command line PHP, as shell_exec() is disabled. This is " -"required." +#: ../../Zotlabs/Module/Connedit.php:597 +msgid "Refresh Permissions" msgstr "" -#: ../../Zotlabs/Module/Setup.php:432 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." +#: ../../Zotlabs/Module/Connedit.php:600 +msgid "Fetch updated permissions" msgstr "" -#: ../../Zotlabs/Module/Setup.php:433 -msgid "This is required for message delivery to work." +#: ../../Zotlabs/Module/Connedit.php:604 +msgid "Refresh Photo" msgstr "" -#: ../../Zotlabs/Module/Setup.php:436 -msgid "PHP register_argc_argv" +#: ../../Zotlabs/Module/Connedit.php:607 +msgid "Fetch updated photo" msgstr "" -#: ../../Zotlabs/Module/Setup.php:454 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to " -"upload is set to %s. You are allowed to upload up to %d files at once." +#: ../../Zotlabs/Module/Connedit.php:611 +msgid "Recent Activity" msgstr "" -#: ../../Zotlabs/Module/Setup.php:459 -msgid "You can adjust these settings in the server php.ini file." +#: ../../Zotlabs/Module/Connedit.php:614 +msgid "View recent posts and comments" msgstr "" -#: ../../Zotlabs/Module/Setup.php:461 -msgid "PHP upload limits" +#: ../../Zotlabs/Module/Connedit.php:621 +msgid "Block (or Unblock) all communications with this connection" msgstr "" -#: ../../Zotlabs/Module/Setup.php:484 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" +#: ../../Zotlabs/Module/Connedit.php:622 +msgid "This connection is blocked!" msgstr "" -#: ../../Zotlabs/Module/Setup.php:485 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." +#: ../../Zotlabs/Module/Connedit.php:626 +msgid "Unignore" msgstr "" -#: ../../Zotlabs/Module/Setup.php:488 -msgid "Generate encryption keys" +#: ../../Zotlabs/Module/Connedit.php:629 +msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "" -#: ../../Zotlabs/Module/Setup.php:505 -msgid "libCurl PHP module" +#: ../../Zotlabs/Module/Connedit.php:630 +msgid "This connection is ignored!" msgstr "" -#: ../../Zotlabs/Module/Setup.php:506 -msgid "GD graphics PHP module" +#: ../../Zotlabs/Module/Connedit.php:634 +msgid "Unarchive" msgstr "" -#: ../../Zotlabs/Module/Setup.php:507 -msgid "OpenSSL PHP module" +#: ../../Zotlabs/Module/Connedit.php:634 +msgid "Archive" msgstr "" -#: ../../Zotlabs/Module/Setup.php:508 -msgid "PDO database PHP module" +#: ../../Zotlabs/Module/Connedit.php:637 +msgid "" +"Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "" -#: ../../Zotlabs/Module/Setup.php:509 -msgid "mb_string PHP module" +#: ../../Zotlabs/Module/Connedit.php:638 +msgid "This connection is archived!" msgstr "" -#: ../../Zotlabs/Module/Setup.php:510 -msgid "xml PHP module" +#: ../../Zotlabs/Module/Connedit.php:642 +msgid "Unhide" msgstr "" -#: ../../Zotlabs/Module/Setup.php:514 ../../Zotlabs/Module/Setup.php:516 -msgid "Apache mod_rewrite module" +#: ../../Zotlabs/Module/Connedit.php:642 +msgid "Hide" msgstr "" -#: ../../Zotlabs/Module/Setup.php:514 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." +#: ../../Zotlabs/Module/Connedit.php:645 +msgid "Hide or Unhide this connection from your other connections" msgstr "" -#: ../../Zotlabs/Module/Setup.php:520 ../../Zotlabs/Module/Setup.php:523 -msgid "exec" +#: ../../Zotlabs/Module/Connedit.php:646 +msgid "This connection is hidden!" msgstr "" -#: ../../Zotlabs/Module/Setup.php:520 -msgid "" -"Error: exec is required but is either not installed or has been disabled in " -"php.ini" +#: ../../Zotlabs/Module/Connedit.php:653 +msgid "Delete this connection" msgstr "" -#: ../../Zotlabs/Module/Setup.php:526 ../../Zotlabs/Module/Setup.php:529 -msgid "shell_exec" +#: ../../Zotlabs/Module/Connedit.php:661 +msgid "Fetch Vcard" msgstr "" -#: ../../Zotlabs/Module/Setup.php:526 -msgid "" -"Error: shell_exec is required but is either not installed or has been " -"disabled in php.ini" +#: ../../Zotlabs/Module/Connedit.php:664 +msgid "Fetch electronic calling card for this connection" msgstr "" -#: ../../Zotlabs/Module/Setup.php:534 -msgid "Error: libCURL PHP module required but not installed." +#: ../../Zotlabs/Module/Connedit.php:675 +msgid "Open Individual Permissions section by default" msgstr "" -#: ../../Zotlabs/Module/Setup.php:538 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." +#: ../../Zotlabs/Module/Connedit.php:698 +msgid "Affinity" msgstr "" -#: ../../Zotlabs/Module/Setup.php:542 -msgid "Error: openssl PHP module required but not installed." +#: ../../Zotlabs/Module/Connedit.php:701 +msgid "Open Set Affinity section by default" msgstr "" -#: ../../Zotlabs/Module/Setup.php:546 -msgid "Error: PDO database PHP module required but not installed." +#: ../../Zotlabs/Module/Connedit.php:705 ../../Zotlabs/Widget/Affinity.php:26 +msgid "Me" msgstr "" -#: ../../Zotlabs/Module/Setup.php:550 -msgid "Error: mb_string PHP module required but not installed." +#: ../../Zotlabs/Module/Connedit.php:706 ../../Zotlabs/Widget/Affinity.php:27 +msgid "Family" msgstr "" -#: ../../Zotlabs/Module/Setup.php:554 -msgid "Error: xml PHP module required for DAV but not installed." +#: ../../Zotlabs/Module/Connedit.php:708 ../../Zotlabs/Widget/Affinity.php:29 +msgid "Acquaintances" msgstr "" -#: ../../Zotlabs/Module/Setup.php:572 -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." +#: ../../Zotlabs/Module/Connedit.php:735 +msgid "Filter" msgstr "" -#: ../../Zotlabs/Module/Setup.php:573 -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." +#: ../../Zotlabs/Module/Connedit.php:738 +msgid "Open Custom Filter section by default" msgstr "" -#: ../../Zotlabs/Module/Setup.php:574 -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." +#: ../../Zotlabs/Module/Connedit.php:775 +msgid "Approve this connection" msgstr "" -#: ../../Zotlabs/Module/Setup.php:575 -msgid "" -"You can alternatively skip this procedure and perform a manual installation. " -"Please see the file \"install/INSTALL.txt\" for instructions." +#: ../../Zotlabs/Module/Connedit.php:775 +msgid "Accept connection to allow communication" msgstr "" -#: ../../Zotlabs/Module/Setup.php:578 -msgid ".htconfig.php is writable" +#: ../../Zotlabs/Module/Connedit.php:780 +msgid "Set Affinity" msgstr "" -#: ../../Zotlabs/Module/Setup.php:592 -msgid "" -"This software uses the Smarty3 template engine to render its web views. " -"Smarty3 compiles templates to PHP to speed up rendering." +#: ../../Zotlabs/Module/Connedit.php:783 +msgid "Set Profile" msgstr "" -#: ../../Zotlabs/Module/Setup.php:593 -#, php-format -msgid "" -"In order to store these compiled templates, the web server needs to have " -"write access to the directory %s under the top level web folder." +#: ../../Zotlabs/Module/Connedit.php:786 +msgid "Set Affinity & Profile" msgstr "" -#: ../../Zotlabs/Module/Setup.php:594 ../../Zotlabs/Module/Setup.php:615 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." +#: ../../Zotlabs/Module/Connedit.php:844 +msgid "none" msgstr "" -#: ../../Zotlabs/Module/Setup.php:595 -#, 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." +#: ../../Zotlabs/Module/Connedit.php:847 +#: ../../Zotlabs/Widget/Settings_menu.php:107 +msgid "Connection Default Permissions" msgstr "" -#: ../../Zotlabs/Module/Setup.php:598 +#: ../../Zotlabs/Module/Connedit.php:847 ../../include/items.php:3955 #, php-format -msgid "%s is writable" -msgstr "" - -#: ../../Zotlabs/Module/Setup.php:614 -msgid "" -"This software uses the store directory to save uploaded files. The web " -"server needs to have write access to the store directory under the top level " -"web folder" +msgid "Connection: %s" msgstr "" -#: ../../Zotlabs/Module/Setup.php:618 -msgid "store is writable" +#: ../../Zotlabs/Module/Connedit.php:848 +msgid "Apply these permissions automatically" msgstr "" -#: ../../Zotlabs/Module/Setup.php:651 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access " -"to this site." +#: ../../Zotlabs/Module/Connedit.php:848 +msgid "Connection requests will be approved without your interaction" msgstr "" -#: ../../Zotlabs/Module/Setup.php:652 -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!" +#: ../../Zotlabs/Module/Connedit.php:849 +msgid "Permission role" msgstr "" -#: ../../Zotlabs/Module/Setup.php:653 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." +#: ../../Zotlabs/Module/Connedit.php:850 +msgid "Add permission role" msgstr "" -#: ../../Zotlabs/Module/Setup.php:654 -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." +#: ../../Zotlabs/Module/Connedit.php:856 +msgid "This connection's primary address is" msgstr "" -#: ../../Zotlabs/Module/Setup.php:655 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." +#: ../../Zotlabs/Module/Connedit.php:857 +msgid "Available locations:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:656 +#: ../../Zotlabs/Module/Connedit.php:861 msgid "" -"Providers are available that issue free certificates which are browser-valid." +"The permissions indicated on this page will be applied to all new " +"connections." msgstr "" -#: ../../Zotlabs/Module/Setup.php:658 -msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." +#: ../../Zotlabs/Module/Connedit.php:862 +msgid "Connection Tools" msgstr "" -#: ../../Zotlabs/Module/Setup.php:660 -msgid "SSL certificate validation" +#: ../../Zotlabs/Module/Connedit.php:864 +msgid "Slide to adjust your degree of friendship" msgstr "" -#: ../../Zotlabs/Module/Setup.php:666 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -"Test: " +#: ../../Zotlabs/Module/Connedit.php:865 ../../Zotlabs/Module/Rate.php:155 +#: ../../include/js_strings.php:20 +msgid "Rating" msgstr "" -#: ../../Zotlabs/Module/Setup.php:669 -msgid "Url rewrite is working" +#: ../../Zotlabs/Module/Connedit.php:866 +msgid "Slide to adjust your rating" msgstr "" -#: ../../Zotlabs/Module/Setup.php:683 -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." +#: ../../Zotlabs/Module/Connedit.php:867 ../../Zotlabs/Module/Connedit.php:872 +msgid "Optionally explain your rating" msgstr "" -#: ../../Zotlabs/Module/Setup.php:707 -#: ../../extend/addon/addon/cdav/cdav.php:41 -#: ../../extend/addon/addon/rendezvous/rendezvous.php:401 -msgid "Errors encountered creating database tables." +#: ../../Zotlabs/Module/Connedit.php:869 +msgid "Custom Filter" msgstr "" -#: ../../Zotlabs/Module/Setup.php:748 -msgid "<h1>What next</h1>" +#: ../../Zotlabs/Module/Connedit.php:870 +msgid "Only import posts with this text" msgstr "" -#: ../../Zotlabs/Module/Setup.php:749 +#: ../../Zotlabs/Module/Connedit.php:870 ../../Zotlabs/Module/Connedit.php:871 msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." -msgstr "" - -#: ../../Zotlabs/Module/Notifications.php:43 ../../include/nav.php:208 -msgid "Mark all system notifications seen" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:235 -#: ../../include/conversation.php:942 ../../include/conversation.php:1109 -msgid "Poke" +"words one per line or #tags or /patterns/ or lang=xx, leave blank to import " +"all posts" msgstr "" -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" +#: ../../Zotlabs/Module/Connedit.php:871 +msgid "Do not import posts with this text" msgstr "" -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" +#: ../../Zotlabs/Module/Connedit.php:873 +msgid "This information is public!" msgstr "" -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" +#: ../../Zotlabs/Module/Connedit.php:878 +msgid "Connection Pending Approval" msgstr "" -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" +#: ../../Zotlabs/Module/Connedit.php:883 +#, php-format +msgid "" +"Please choose the profile you would like to display to %s when viewing your " +"profile securely." msgstr "" -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" +#: ../../Zotlabs/Module/Connedit.php:890 +msgid "" +"Some permissions may be inherited from your channel's <a href=\"settings" +"\"><strong>privacy settings</strong></a>, which have higher priority than " +"individual settings. You can change those settings here but they wont have " +"any impact unless the inherited setting changes." msgstr "" -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" +#: ../../Zotlabs/Module/Connedit.php:891 +msgid "Last update:" msgstr "" -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." +#: ../../Zotlabs/Module/Connedit.php:900 +msgid "Details" msgstr "" -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." +#: ../../Zotlabs/Module/Connedit.php:903 ../../addon/cdav/Mod_Cdav.php:1137 +msgid "Organisation" msgstr "" -#: ../../Zotlabs/Module/Item.php:184 -msgid "Unable to locate original post." +#: ../../Zotlabs/Module/Connedit.php:904 ../../addon/cdav/Mod_Cdav.php:1138 +#: ../../include/page_widgets.php:46 +msgid "Title" msgstr "" -#: ../../Zotlabs/Module/Item.php:450 -msgid "Empty post discarded." +#: ../../Zotlabs/Module/Connedit.php:905 ../../Zotlabs/Module/Profiles.php:789 +#: ../../addon/cdav/Mod_Cdav.php:1139 +msgid "Phone" msgstr "" -#: ../../Zotlabs/Module/Item.php:492 -msgid "Executable content type not permitted to this channel." +#: ../../Zotlabs/Module/Connedit.php:907 ../../Zotlabs/Module/Profiles.php:791 +#: ../../addon/cdav/Mod_Cdav.php:1141 +msgid "Instant messenger" msgstr "" -#: ../../Zotlabs/Module/Item.php:842 -msgid "Duplicate post suppressed." +#: ../../Zotlabs/Module/Connedit.php:908 ../../Zotlabs/Module/Profiles.php:792 +#: ../../addon/cdav/Mod_Cdav.php:1142 +msgid "Website" msgstr "" -#: ../../Zotlabs/Module/Item.php:984 -msgid "System error. Post not saved." +#: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Profiles.php:794 +#: ../../addon/cdav/Mod_Cdav.php:1144 +msgid "Note" msgstr "" -#: ../../Zotlabs/Module/Item.php:1114 -msgid "Unable to obtain post information from database." +#: ../../Zotlabs/Module/Connedit.php:911 ../../Zotlabs/Module/Profiles.php:795 +#: ../../addon/cdav/Mod_Cdav.php:1145 ../../addon/cdav/cdav.php:270 +#: ../../include/connections.php:668 +msgid "Mobile" msgstr "" -#: ../../Zotlabs/Module/Item.php:1121 -#, php-format -msgid "You have reached your limit of %1$.0f top level posts." +#: ../../Zotlabs/Module/Connedit.php:912 ../../Zotlabs/Module/Profiles.php:796 +#: ../../addon/cdav/Mod_Cdav.php:1146 ../../addon/cdav/cdav.php:271 +#: ../../include/connections.php:669 +msgid "Home" msgstr "" -#: ../../Zotlabs/Module/Item.php:1128 -#, php-format -msgid "You have reached your limit of %1$.0f webpages." +#: ../../Zotlabs/Module/Connedit.php:913 ../../Zotlabs/Module/Profiles.php:797 +#: ../../addon/cdav/Mod_Cdav.php:1147 ../../addon/cdav/cdav.php:274 +#: ../../include/connections.php:672 +msgid "Work" msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 -msgid "This setting requires special processing and editing has been blocked." +#: ../../Zotlabs/Module/Connedit.php:915 ../../Zotlabs/Module/Profiles.php:799 +#: ../../addon/cdav/Mod_Cdav.php:1149 ../../addon/jappixmini/jappixmini.php:368 +msgid "Add Contact" msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:48 -msgid "Configuration Editor" +#: ../../Zotlabs/Module/Connedit.php:916 ../../Zotlabs/Module/Profiles.php:800 +#: ../../addon/cdav/Mod_Cdav.php:1150 +msgid "Add Field" msgstr "" -#: ../../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." +#: ../../Zotlabs/Module/Connedit.php:921 ../../addon/cdav/Mod_Cdav.php:1155 +msgid "P.O. Box" msgstr "" -#: ../../Zotlabs/Module/Profile.php:78 -msgid "vcard" +#: ../../Zotlabs/Module/Connedit.php:922 ../../addon/cdav/Mod_Cdav.php:1156 +msgid "Additional" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2283 -msgid "Blocks" +#: ../../Zotlabs/Module/Connedit.php:923 ../../addon/cdav/Mod_Cdav.php:1157 +msgid "Street" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:156 -msgid "Block Title" +#: ../../Zotlabs/Module/Connedit.php:924 ../../addon/cdav/Mod_Cdav.php:1158 +msgid "Locality" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:183 ../../include/text.php:2285 -msgid "Layouts" +#: ../../Zotlabs/Module/Connedit.php:925 ../../addon/cdav/Mod_Cdav.php:1159 +msgid "Region" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Lib/Apps.php:232 -#: ../../include/nav.php:174 ../../include/help.php:53 -#: ../../include/help.php:59 -msgid "Help" +#: ../../Zotlabs/Module/Connedit.php:926 ../../addon/cdav/Mod_Cdav.php:1160 +msgid "ZIP Code" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:185 -msgid "Comanche page description language help" +#: ../../Zotlabs/Module/Connedit.php:927 ../../Zotlabs/Module/Profiles.php:760 +#: ../../addon/cdav/Mod_Cdav.php:1161 +msgid "Country" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:189 -msgid "Layout Description" +#: ../../Zotlabs/Module/Chat.php:179 +msgid "Room not found" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:194 -msgid "Download PDL file" +#: ../../Zotlabs/Module/Chat.php:195 +msgid "Leave Room" msgstr "" -#: ../../Zotlabs/Module/Rate.php:156 -msgid "Website:" +#: ../../Zotlabs/Module/Chat.php:196 +msgid "Delete Room" msgstr "" -#: ../../Zotlabs/Module/Rate.php:159 -#, php-format -msgid "Remote Channel [%s] (not yet known on this site)" +#: ../../Zotlabs/Module/Chat.php:197 +msgid "I am away right now" msgstr "" -#: ../../Zotlabs/Module/Rate.php:160 -msgid "Rating (this information is public)" +#: ../../Zotlabs/Module/Chat.php:198 +msgid "I am online" msgstr "" -#: ../../Zotlabs/Module/Rate.php:161 -msgid "Optionally explain your rating (this information is public)" +#: ../../Zotlabs/Module/Chat.php:200 +msgid "Bookmark this room" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:190 -#: ../../extend/addon/addon/openclipatar/openclipatar.php:295 -msgid "" -"Shift-reload the page or clear browser cache if the new photo does not " -"display immediately." +#: ../../Zotlabs/Module/Chat.php:203 ../../Zotlabs/Module/Mail.php:259 +#: ../../Zotlabs/Module/Mail.php:380 ../../include/conversation.php:1263 +msgid "Please enter a link URL:" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:411 -msgid "Use Photo for Profile" +#: ../../Zotlabs/Module/Chat.php:204 ../../Zotlabs/Module/Mail.php:312 +#: ../../Zotlabs/Module/Mail.php:454 ../../Zotlabs/Lib/ThreadItem.php:744 +#: ../../include/conversation.php:1373 +msgid "Encrypt text" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:411 -msgid "Upload Profile Photo" +#: ../../Zotlabs/Module/Chat.php:230 +msgid "New Chatroom" msgstr "" -#: ../../Zotlabs/Module/Profile_photo.php:412 -#: ../../extend/addon/addon/openclipatar/openclipatar.php:182 -#: ../../extend/addon/addon/openclipatar/openclipatar.php:194 -msgid "Use" +#: ../../Zotlabs/Module/Chat.php:231 +msgid "Chatroom name" msgstr "" -#: ../../Zotlabs/Module/Events.php:25 -msgid "Calendar entries imported." +#: ../../Zotlabs/Module/Chat.php:232 +msgid "Expiration of chats (minutes)" msgstr "" -#: ../../Zotlabs/Module/Events.php:27 -msgid "No calendar entries found." +#: ../../Zotlabs/Module/Chat.php:248 +#, php-format +msgid "%1$s's Chatrooms" msgstr "" -#: ../../Zotlabs/Module/Events.php:110 -msgid "Event can not end before it has started." +#: ../../Zotlabs/Module/Chat.php:253 +msgid "No chatrooms available" msgstr "" -#: ../../Zotlabs/Module/Events.php:112 ../../Zotlabs/Module/Events.php:121 -#: ../../Zotlabs/Module/Events.php:143 -msgid "Unable to generate preview." +#: ../../Zotlabs/Module/Chat.php:257 +msgid "Expiration" msgstr "" -#: ../../Zotlabs/Module/Events.php:119 -msgid "Event title and start time are required." +#: ../../Zotlabs/Module/Chat.php:258 +msgid "min" msgstr "" -#: ../../Zotlabs/Module/Events.php:141 ../../Zotlabs/Module/Events.php:265 -msgid "Event not found." +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:229 +#: ../../include/conversation.php:1783 ../../include/nav.php:392 +msgid "Photos" msgstr "" -#: ../../Zotlabs/Module/Events.php:460 -msgid "Edit event title" +#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:224 +#: ../../Zotlabs/Storage/Browser.php:224 ../../include/conversation.php:1791 +#: ../../include/nav.php:400 +msgid "Files" msgstr "" -#: ../../Zotlabs/Module/Events.php:460 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:835 -msgid "Event title" +#: ../../Zotlabs/Module/Menu.php:49 +msgid "Unable to update menu." msgstr "" -#: ../../Zotlabs/Module/Events.php:462 -msgid "Categories (comma-separated list)" +#: ../../Zotlabs/Module/Menu.php:60 +msgid "Unable to create menu." msgstr "" -#: ../../Zotlabs/Module/Events.php:463 -msgid "Edit Category" +#: ../../Zotlabs/Module/Menu.php:98 ../../Zotlabs/Module/Menu.php:110 +msgid "Menu Name" msgstr "" -#: ../../Zotlabs/Module/Events.php:463 -msgid "Category" +#: ../../Zotlabs/Module/Menu.php:98 +msgid "Unique name (not visible on webpage) - required" msgstr "" -#: ../../Zotlabs/Module/Events.php:466 -msgid "Edit start date and time" +#: ../../Zotlabs/Module/Menu.php:99 ../../Zotlabs/Module/Menu.php:111 +msgid "Menu Title" msgstr "" -#: ../../Zotlabs/Module/Events.php:466 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:836 -msgid "Start date and time" +#: ../../Zotlabs/Module/Menu.php:99 +msgid "Visible on webpage - leave empty for no title" msgstr "" -#: ../../Zotlabs/Module/Events.php:467 ../../Zotlabs/Module/Events.php:470 -msgid "Finish date and time are not known or not relevant" +#: ../../Zotlabs/Module/Menu.php:100 +msgid "Allow Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Events.php:469 -msgid "Edit finish date and time" +#: ../../Zotlabs/Module/Menu.php:100 ../../Zotlabs/Module/Menu.php:157 +msgid "Menu may be used to store saved bookmarks" msgstr "" -#: ../../Zotlabs/Module/Events.php:469 -msgid "Finish date and time" +#: ../../Zotlabs/Module/Menu.php:101 ../../Zotlabs/Module/Menu.php:159 +msgid "Submit and proceed" msgstr "" -#: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Events.php:472 -msgid "Adjust for viewer timezone" +#: ../../Zotlabs/Module/Menu.php:107 ../../include/text.php:2268 +msgid "Menus" msgstr "" -#: ../../Zotlabs/Module/Events.php:471 -msgid "" -"Important for events that happen in a particular place. Not practical for " -"global holidays." +#: ../../Zotlabs/Module/Menu.php:117 +msgid "Bookmarks allowed" msgstr "" -#: ../../Zotlabs/Module/Events.php:473 -msgid "Edit Description" +#: ../../Zotlabs/Module/Menu.php:119 +msgid "Delete this menu" msgstr "" -#: ../../Zotlabs/Module/Events.php:475 -msgid "Edit Location" +#: ../../Zotlabs/Module/Menu.php:120 ../../Zotlabs/Module/Menu.php:154 +msgid "Edit menu contents" msgstr "" -#: ../../Zotlabs/Module/Events.php:479 ../../include/conversation.php:1410 -msgid "Permission settings" +#: ../../Zotlabs/Module/Menu.php:121 +msgid "Edit this menu" msgstr "" -#: ../../Zotlabs/Module/Events.php:489 -msgid "Timezone:" +#: ../../Zotlabs/Module/Menu.php:136 +msgid "Menu could not be deleted." msgstr "" -#: ../../Zotlabs/Module/Events.php:494 -msgid "Advanced Options" +#: ../../Zotlabs/Module/Menu.php:149 +msgid "Edit Menu" msgstr "" -#: ../../Zotlabs/Module/Events.php:633 -msgid "Edit event" +#: ../../Zotlabs/Module/Menu.php:153 +msgid "Add or remove entries to this menu" msgstr "" -#: ../../Zotlabs/Module/Events.php:635 -msgid "Delete event" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Menu name" msgstr "" -#: ../../Zotlabs/Module/Events.php:669 -msgid "calendar" +#: ../../Zotlabs/Module/Menu.php:155 +msgid "Must be unique, only seen by you" msgstr "" -#: ../../Zotlabs/Module/Events.php:695 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:849 -msgid "Month" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title" msgstr "" -#: ../../Zotlabs/Module/Events.php:696 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:850 -msgid "Week" +#: ../../Zotlabs/Module/Menu.php:156 +msgid "Menu title as seen by others" msgstr "" -#: ../../Zotlabs/Module/Events.php:697 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:851 -msgid "Day" +#: ../../Zotlabs/Module/Menu.php:157 +msgid "Allow bookmarks" msgstr "" -#: ../../Zotlabs/Module/Events.php:731 -msgid "Event removed" +#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2269 +msgid "Layouts" msgstr "" -#: ../../Zotlabs/Module/Events.php:734 -msgid "Failed to remove event" +#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:232 +#: ../../include/nav.php:161 ../../include/nav.php:268 +#: ../../include/help.php:55 ../../include/help.php:61 +msgid "Help" msgstr "" -#: ../../Zotlabs/Module/Common.php:14 -msgid "No channel." +#: ../../Zotlabs/Module/Layouts.php:186 +msgid "Comanche page description language help" msgstr "" -#: ../../Zotlabs/Module/Common.php:43 -msgid "Common connections" +#: ../../Zotlabs/Module/Layouts.php:190 +msgid "Layout Description" msgstr "" -#: ../../Zotlabs/Module/Common.php:48 -msgid "No connections in common." +#: ../../Zotlabs/Module/Layouts.php:195 +msgid "Download PDL file" msgstr "" -#: ../../Zotlabs/Module/Chanview.php:134 -msgid "toggle full screen mode" +#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:274 +msgid "post" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:34 ../../Zotlabs/Module/Profperm.php:63 -msgid "Invalid profile identifier." +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:146 +#: ../../include/text.php:1945 +msgid "comment" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:111 -msgid "Profile Visibility Editor" +#: ../../Zotlabs/Module/Tagger.php:95 +#, php-format +msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1367 -msgid "Profile" +#: ../../Zotlabs/Module/Pconfig.php:26 ../../Zotlabs/Module/Pconfig.php:59 +msgid "This setting requires special processing and editing has been blocked." msgstr "" -#: ../../Zotlabs/Module/Profperm.php:115 -msgid "Click on a contact to add or remove." +#: ../../Zotlabs/Module/Pconfig.php:48 +msgid "Configuration Editor" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:124 -msgid "Visible To" +#: ../../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 "" -#: ../../Zotlabs/Module/Channel.php:32 ../../Zotlabs/Module/Chat.php:25 -#: ../../extend/addon/addon/chess/chess.php:400 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:26 -msgid "You must be logged in to see this page." +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." msgstr "" -#: ../../Zotlabs/Module/Channel.php:44 -msgid "Posts and comments" +#: ../../Zotlabs/Module/Group.php:30 +msgid "Could not create privacy group." msgstr "" -#: ../../Zotlabs/Module/Channel.php:45 -msgid "Only posts" +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 +#: ../../include/items.php:3922 +msgid "Privacy group not found." msgstr "" -#: ../../Zotlabs/Module/Channel.php:104 -msgid "Insufficient permissions. Request redirected to profile page." +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:19 -msgid "No valid account found." +#: ../../Zotlabs/Module/Group.php:90 +msgid "Create a group of channels." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:33 -msgid "Password reset request issued. Check your email." +#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 +msgid "Privacy group name: " msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:108 -#, php-format -msgid "Site Member (%s)" +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 +msgid "Members are visible to other channels" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 -#, php-format -msgid "Password reset requested at %s" +#: ../../Zotlabs/Module/Group.php:111 +msgid "Privacy group removed." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:68 -msgid "" -"Request could not be verified. (You may have previously submitted it.) " -"Password reset failed." +#: ../../Zotlabs/Module/Group.php:113 +msgid "Unable to remove privacy group." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1740 -msgid "Password Reset" +#: ../../Zotlabs/Module/Group.php:183 +msgid "Privacy group editor" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:92 -msgid "Your password has been reset as requested." +#: ../../Zotlabs/Module/Group.php:197 ../../Zotlabs/Module/Help.php:81 +msgid "Members" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:93 -msgid "Your new password is" +#: ../../Zotlabs/Module/Group.php:199 +msgid "All Connected Channels" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:94 -msgid "Save or copy your new password - and then" +#: ../../Zotlabs/Module/Group.php:231 +msgid "Click on a channel to add or remove." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:95 -msgid "click here to login" +#: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:184 +#: ../../Zotlabs/Module/Profiles.php:241 ../../Zotlabs/Module/Profiles.php:659 +msgid "Profile not found." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:96 -msgid "" -"Your password may be changed from the <em>Settings</em> page after " -"successful login." +#: ../../Zotlabs/Module/Profiles.php:44 +msgid "Profile deleted." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:117 -#, php-format -msgid "Your password has changed at %s" +#: ../../Zotlabs/Module/Profiles.php:68 ../../Zotlabs/Module/Profiles.php:105 +msgid "Profile-" msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:130 -msgid "Forgot your Password?" +#: ../../Zotlabs/Module/Profiles.php:90 ../../Zotlabs/Module/Profiles.php:127 +msgid "New profile created." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:131 -msgid "" -"Enter your email address and submit to have your password reset. Then check " -"your email for further instructions." +#: ../../Zotlabs/Module/Profiles.php:111 +msgid "Profile unavailable to clone." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:132 -msgid "Email Address" +#: ../../Zotlabs/Module/Profiles.php:146 +msgid "Profile unavailable to export." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:133 -msgid "Reset" +#: ../../Zotlabs/Module/Profiles.php:252 +msgid "Profile Name is required." msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:94 -msgid "Select a bookmark folder" +#: ../../Zotlabs/Module/Profiles.php:459 +msgid "Marital Status" msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:99 -msgid "Save Bookmark" +#: ../../Zotlabs/Module/Profiles.php:463 +msgid "Romantic Partner" msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:100 -msgid "URL of bookmark" +#: ../../Zotlabs/Module/Profiles.php:467 ../../Zotlabs/Module/Profiles.php:775 +msgid "Likes" msgstr "" -#: ../../Zotlabs/Module/Rbmark.php:105 -msgid "Or enter new bookmark folder name" +#: ../../Zotlabs/Module/Profiles.php:471 ../../Zotlabs/Module/Profiles.php:776 +msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Follow.php:31 -msgid "Channel added." +#: ../../Zotlabs/Module/Profiles.php:475 ../../Zotlabs/Module/Profiles.php:783 +msgid "Work/Employment" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:35 -msgid "Authentication failed." +#: ../../Zotlabs/Module/Profiles.php:478 +msgid "Religion" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:75 ../../include/channel.php:1991 -msgid "Remote Authentication" +#: ../../Zotlabs/Module/Profiles.php:482 +msgid "Political Views" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:1992 -msgid "Enter your channel address (e.g. channel@example.com)" +#: ../../Zotlabs/Module/Profiles.php:486 +#: ../../addon/openid/MysqlProvider.php:74 +msgid "Gender" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:1993 -msgid "Authenticate" +#: ../../Zotlabs/Module/Profiles.php:490 +msgid "Sexual Preference" msgstr "" -#: ../../Zotlabs/Module/Regmod.php:15 -msgid "Please login." +#: ../../Zotlabs/Module/Profiles.php:494 +msgid "Homepage" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:35 -msgid "" -"Account removals are not allowed within 48 hours of changing the account " -"password." +#: ../../Zotlabs/Module/Profiles.php:498 +msgid "Interests" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:57 -msgid "Remove This Account" +#: ../../Zotlabs/Module/Profiles.php:594 +msgid "Profile updated." msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "WARNING: " +#: ../../Zotlabs/Module/Profiles.php:678 +msgid "Hide your connections list from viewers of this profile" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:58 -msgid "" -"This account and all its channels will be completely removed from the " -"network. " +#: ../../Zotlabs/Module/Profiles.php:725 +msgid "Edit Profile Details" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:58 -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This action is permanent and can not be undone!" +#: ../../Zotlabs/Module/Profiles.php:727 +msgid "View this profile" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:59 -#: ../../Zotlabs/Module/Removeme.php:62 -msgid "Please enter your password for verification:" +#: ../../Zotlabs/Module/Profiles.php:728 ../../Zotlabs/Module/Profiles.php:827 +#: ../../include/channel.php:1066 +msgid "Edit visibility" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"Remove this account, all its channels and all its channel clones from the " -"network" +#: ../../Zotlabs/Module/Profiles.php:729 +msgid "Profile Tools" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:60 -msgid "" -"By default only the instances of the channels located on this hub will be " -"removed from the network" +#: ../../Zotlabs/Module/Profiles.php:730 +msgid "Change cover photo" msgstr "" -#: ../../Zotlabs/Module/Removeaccount.php:61 -#: ../../Zotlabs/Module/Settings/Account.php:120 -msgid "Remove Account" +#: ../../Zotlabs/Module/Profiles.php:731 ../../include/channel.php:1037 +msgid "Change profile photo" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:21 -msgid "Layout updated." +#: ../../Zotlabs/Module/Profiles.php:732 +msgid "Create a new profile using these settings" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Chat.php:218 -msgid "Feature disabled." +#: ../../Zotlabs/Module/Profiles.php:733 +msgid "Clone this profile" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:42 ../../Zotlabs/Module/Pdledit.php:69 -msgid "Edit System Page Description" +#: ../../Zotlabs/Module/Profiles.php:734 +msgid "Delete this profile" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:64 -msgid "Layout not found." +#: ../../Zotlabs/Module/Profiles.php:735 +msgid "Add profile things" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:70 -msgid "Module Name:" +#: ../../Zotlabs/Module/Profiles.php:736 ../../include/conversation.php:1657 +msgid "Personal" msgstr "" -#: ../../Zotlabs/Module/Pdledit.php:71 -msgid "Layout Help" +#: ../../Zotlabs/Module/Profiles.php:738 +msgid "Relation" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:57 ../../Zotlabs/Module/Uexport.php:58 -msgid "Export Channel" +#: ../../Zotlabs/Module/Profiles.php:739 ../../include/datetime.php:55 +msgid "Miscellaneous" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:59 -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." +#: ../../Zotlabs/Module/Profiles.php:741 +msgid "Import profile from file" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:60 -msgid "Export Content" +#: ../../Zotlabs/Module/Profiles.php:742 +msgid "Export profile to file" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:61 -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." +#: ../../Zotlabs/Module/Profiles.php:743 +msgid "Your gender" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:63 -msgid "Export your posts from a given year." +#: ../../Zotlabs/Module/Profiles.php:744 +msgid "Marital status" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:65 -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." +#: ../../Zotlabs/Module/Profiles.php:745 +msgid "Sexual preference" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:66 -#, php-format -msgid "" -"To select all posts for a given year, such as this year, visit <a href=\"%1$s" -"\">%2$s</a>" +#: ../../Zotlabs/Module/Profiles.php:748 +msgid "Profile name" msgstr "" -#: ../../Zotlabs/Module/Uexport.php:67 -#, php-format -msgid "" -"To select all posts for a given month, such as January of this year, visit " -"<a href=\"%1$s\">%2$s</a>" +#: ../../Zotlabs/Module/Profiles.php:750 +msgid "This is your default profile." msgstr "" -#: ../../Zotlabs/Module/Uexport.php:68 -#, php-format -msgid "" -"These content files may be imported or restored by visiting <a href=\"%1$s\">" -"%2$s</a> on any site containing your channel. For best results please import " -"or restore these in date order (oldest first)." +#: ../../Zotlabs/Module/Profiles.php:752 +msgid "Your full name" msgstr "" -#: ../../Zotlabs/Module/Directory.php:246 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Directory.php:257 -msgid "Gender: " +#: ../../Zotlabs/Module/Profiles.php:753 +msgid "Title/Description" msgstr "" -#: ../../Zotlabs/Module/Directory.php:259 -msgid "Status: " +#: ../../Zotlabs/Module/Profiles.php:756 +msgid "Street address" msgstr "" -#: ../../Zotlabs/Module/Directory.php:261 -msgid "Homepage: " +#: ../../Zotlabs/Module/Profiles.php:757 +msgid "Locality/City" msgstr "" -#: ../../Zotlabs/Module/Directory.php:310 ../../include/channel.php:1298 -msgid "Age:" +#: ../../Zotlabs/Module/Profiles.php:758 +msgid "Region/State" msgstr "" -#: ../../Zotlabs/Module/Directory.php:315 ../../include/markdown.php:561 -#: ../../include/channel.php:1134 ../../include/event.php:52 -#: ../../include/event.php:84 -msgid "Location:" +#: ../../Zotlabs/Module/Profiles.php:759 +msgid "Postal/Zip code" msgstr "" -#: ../../Zotlabs/Module/Directory.php:321 -msgid "Description:" +#: ../../Zotlabs/Module/Profiles.php:765 +msgid "Who (if applicable)" msgstr "" -#: ../../Zotlabs/Module/Directory.php:326 ../../include/channel.php:1314 -msgid "Hometown:" +#: ../../Zotlabs/Module/Profiles.php:765 +msgid "Examples: cathy123, Cathy Williams, cathy@example.com" msgstr "" -#: ../../Zotlabs/Module/Directory.php:328 ../../include/channel.php:1322 -msgid "About:" +#: ../../Zotlabs/Module/Profiles.php:766 +msgid "Since (date)" msgstr "" -#: ../../Zotlabs/Module/Directory.php:329 ../../Zotlabs/Module/Suggest.php:56 -#: ../../include/connections.php:110 ../../include/conversation.php:938 -#: ../../include/conversation.php:1069 ../../include/widgets.php:148 -#: ../../include/widgets.php:185 ../../include/channel.php:1119 -msgid "Connect" +#: ../../Zotlabs/Module/Profiles.php:769 +msgid "Tell us about yourself" msgstr "" -#: ../../Zotlabs/Module/Directory.php:330 -msgid "Public Forum:" +#: ../../Zotlabs/Module/Profiles.php:770 +#: ../../addon/openid/MysqlProvider.php:68 +msgid "Homepage URL" msgstr "" -#: ../../Zotlabs/Module/Directory.php:333 -msgid "Keywords: " +#: ../../Zotlabs/Module/Profiles.php:771 +msgid "Hometown" msgstr "" -#: ../../Zotlabs/Module/Directory.php:336 -msgid "Don't suggest" +#: ../../Zotlabs/Module/Profiles.php:772 +msgid "Political views" msgstr "" -#: ../../Zotlabs/Module/Directory.php:338 -msgid "Common connections:" +#: ../../Zotlabs/Module/Profiles.php:773 +msgid "Religious views" msgstr "" -#: ../../Zotlabs/Module/Directory.php:387 -msgid "Global Directory" +#: ../../Zotlabs/Module/Profiles.php:774 +msgid "Keywords used in directory listings" msgstr "" -#: ../../Zotlabs/Module/Directory.php:387 -msgid "Local Directory" +#: ../../Zotlabs/Module/Profiles.php:774 +msgid "Example: fishing photography software" msgstr "" -#: ../../Zotlabs/Module/Directory.php:393 -msgid "Finding:" +#: ../../Zotlabs/Module/Profiles.php:777 +msgid "Musical interests" msgstr "" -#: ../../Zotlabs/Module/Directory.php:396 ../../Zotlabs/Module/Suggest.php:64 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" +#: ../../Zotlabs/Module/Profiles.php:778 +msgid "Books, literature" msgstr "" -#: ../../Zotlabs/Module/Directory.php:398 -msgid "next page" +#: ../../Zotlabs/Module/Profiles.php:779 +msgid "Television" msgstr "" -#: ../../Zotlabs/Module/Directory.php:398 -msgid "previous page" +#: ../../Zotlabs/Module/Profiles.php:780 +msgid "Film/Dance/Culture/Entertainment" msgstr "" -#: ../../Zotlabs/Module/Directory.php:399 -msgid "Sort options" +#: ../../Zotlabs/Module/Profiles.php:781 +msgid "Hobbies/Interests" msgstr "" -#: ../../Zotlabs/Module/Directory.php:400 -msgid "Alphabetic" +#: ../../Zotlabs/Module/Profiles.php:782 +msgid "Love/Romance" msgstr "" -#: ../../Zotlabs/Module/Directory.php:401 -msgid "Reverse Alphabetic" +#: ../../Zotlabs/Module/Profiles.php:784 +msgid "School/Education" msgstr "" -#: ../../Zotlabs/Module/Directory.php:402 -msgid "Newest to Oldest" +#: ../../Zotlabs/Module/Profiles.php:785 +msgid "Contact information and social networks" msgstr "" -#: ../../Zotlabs/Module/Directory.php:403 -msgid "Oldest to Newest" +#: ../../Zotlabs/Module/Profiles.php:786 +msgid "My other channels" msgstr "" -#: ../../Zotlabs/Module/Directory.php:420 -msgid "No entries (some entries may be hidden)." +#: ../../Zotlabs/Module/Profiles.php:788 +msgid "Communications" msgstr "" -#: ../../Zotlabs/Module/Chatsvc.php:131 -msgid "Away" +#: ../../Zotlabs/Module/Profiles.php:823 ../../include/channel.php:1062 +msgid "Profile Image" msgstr "" -#: ../../Zotlabs/Module/Chatsvc.php:136 -msgid "Online" +#: ../../Zotlabs/Module/Profiles.php:833 ../../include/channel.php:1044 +#: ../../include/nav.php:109 +msgid "Edit Profiles" msgstr "" -#: ../../Zotlabs/Module/Service_limits.php:23 -msgid "No service class restrictions found." +#: ../../Zotlabs/Module/Editwebpage.php:139 +msgid "Page link" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:52 -msgid "Import Webpage Elements" +#: ../../Zotlabs/Module/Editwebpage.php:166 +msgid "Edit Webpage" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:53 -msgid "Import selected" +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:76 -msgid "Export Webpage Elements" +#: ../../Zotlabs/Module/Manage.php:168 ../../Zotlabs/Lib/Apps.php:221 +#: ../../include/nav.php:205 +msgid "Channel Manager" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:77 -msgid "Export selected" +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Current Channel" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:241 ../../Zotlabs/Lib/Apps.php:225 -#: ../../include/conversation.php:1889 -msgid "Webpages" +#: ../../Zotlabs/Module/Manage.php:171 +msgid "Switch to one of your channels by selecting it." msgstr "" -#: ../../Zotlabs/Module/Webpages.php:252 ../../include/page_widgets.php:44 -msgid "Actions" +#: ../../Zotlabs/Module/Manage.php:172 +msgid "Default Channel" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:253 ../../include/page_widgets.php:45 -msgid "Page Link" +#: ../../Zotlabs/Module/Manage.php:173 +msgid "Make Default" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:254 -msgid "Page Title" +#: ../../Zotlabs/Module/Manage.php:176 +#, php-format +msgid "%d new messages" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:284 -msgid "Invalid file type." +#: ../../Zotlabs/Module/Manage.php:177 +#, php-format +msgid "%d new introductions" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:296 -msgid "Error opening zip file" +#: ../../Zotlabs/Module/Manage.php:179 +msgid "Delegated Channel" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:307 -msgid "Invalid folder path." +#: ../../Zotlabs/Module/Dirsearch.php:33 +msgid "This directory server requires an access token" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:334 -msgid "No webpage elements detected." +#: ../../Zotlabs/Module/Siteinfo.php:20 +msgid "About this site" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:409 -msgid "Import complete." +#: ../../Zotlabs/Module/Siteinfo.php:21 +msgid "Site Name" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:35 -msgid "" -"Channel removals are not allowed within 48 hours of changing the account " -"password." +#: ../../Zotlabs/Module/Siteinfo.php:25 ../../include/network.php:2025 +msgid "Administrator" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:60 -msgid "Remove This Channel" +#: ../../Zotlabs/Module/Siteinfo.php:27 ../../Zotlabs/Module/Register.php:221 +msgid "Terms of Service" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:61 -msgid "This channel will be completely removed from the network. " +#: ../../Zotlabs/Module/Siteinfo.php:28 +msgid "Software and Project information" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:63 -msgid "Remove this channel and all its clones from the network" +#: ../../Zotlabs/Module/Siteinfo.php:29 +msgid "This site is powered by $Projectname" msgstr "" -#: ../../Zotlabs/Module/Removeme.php:63 +#: ../../Zotlabs/Module/Siteinfo.php:30 msgid "" -"By default only the instance of the channel located on this hub will be " -"removed from the network" -msgstr "" - -#: ../../Zotlabs/Module/Removeme.php:64 -#: ../../Zotlabs/Module/Settings/Channel.php:575 -msgid "Remove Channel" +"Federated and decentralised networking and identity services provided by Zot" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:98 -msgid "Files: shared with me" +#: ../../Zotlabs/Module/Siteinfo.php:32 +#, php-format +msgid "Version %s" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:100 -msgid "NEW" +#: ../../Zotlabs/Module/Siteinfo.php:33 +msgid "Project homepage" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:103 -msgid "Remove all files" +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Developer homepage" msgstr "" -#: ../../Zotlabs/Module/Sharedwithme.php:104 -msgid "Remove this file" +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:29 -msgid "Profile Unavailable." +#: ../../Zotlabs/Module/Ratings.php:97 ../../Zotlabs/Module/Pubsites.php:35 +#: ../../include/conversation.php:1032 +msgid "Ratings" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:43 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:40 -msgid "Not found" +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " msgstr "" -#: ../../Zotlabs/Module/Wiki.php:67 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:60 -msgid "Invalid channel" +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " msgstr "" -#: ../../Zotlabs/Module/Wiki.php:158 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:144 -#: ../../include/conversation.php:1900 -msgid "Wikis" +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " msgstr "" -#: ../../Zotlabs/Module/Wiki.php:164 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:150 -msgid "Download" +#: ../../Zotlabs/Module/Webpages.php:52 +msgid "Import Webpage Elements" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:168 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:154 -msgid "Wiki name" +#: ../../Zotlabs/Module/Webpages.php:53 +msgid "Import selected" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:169 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:155 -msgid "Content type" +#: ../../Zotlabs/Module/Webpages.php:76 +msgid "Export Webpage Elements" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:178 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:164 -msgid "Create a status post for this wiki" +#: ../../Zotlabs/Module/Webpages.php:77 +msgid "Export selected" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:203 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:183 -msgid "Wiki not found" +#: ../../Zotlabs/Module/Webpages.php:242 ../../Zotlabs/Lib/Apps.php:225 +#: ../../include/conversation.php:1841 ../../include/nav.php:449 +msgid "Webpages" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:227 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:208 -msgid "Rename page" +#: ../../Zotlabs/Module/Webpages.php:253 ../../include/page_widgets.php:44 +msgid "Actions" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:231 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:212 -msgid "Error retrieving page content" +#: ../../Zotlabs/Module/Webpages.php:254 ../../include/page_widgets.php:45 +msgid "Page Link" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:261 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:241 -msgid "Revision Comparison" +#: ../../Zotlabs/Module/Webpages.php:255 +msgid "Page Title" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:262 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:242 -msgid "Revert" +#: ../../Zotlabs/Module/Webpages.php:285 +msgid "Invalid file type." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:266 -msgid "Short description of your changes (optional)" +#: ../../Zotlabs/Module/Webpages.php:297 +msgid "Error opening zip file" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:273 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:251 -msgid "Source" +#: ../../Zotlabs/Module/Webpages.php:308 +msgid "Invalid folder path." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:281 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:259 -msgid "New page name" +#: ../../Zotlabs/Module/Webpages.php:335 +msgid "No webpage elements detected." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:286 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:264 -#: ../../include/conversation.php:1299 -msgid "Embed image from photo albums" +#: ../../Zotlabs/Module/Webpages.php:410 +msgid "Import complete." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:287 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:265 -#: ../../include/conversation.php:1393 -msgid "Embed an image from your albums" +#: ../../Zotlabs/Module/Editpost.php:38 +msgid "Item is not editable" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:289 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:267 -#: ../../include/conversation.php:1395 ../../include/conversation.php:1442 -msgid "OK" +#: ../../Zotlabs/Module/Editpost.php:103 ../../Zotlabs/Module/Rpost.php:138 +msgid "Edit post" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:290 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:268 -#: ../../include/conversation.php:1335 -msgid "Choose images to embed" +#: ../../Zotlabs/Module/Dreport.php:45 +msgid "Invalid message" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:291 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:269 -#: ../../include/conversation.php:1336 -msgid "Choose an album" +#: ../../Zotlabs/Module/Dreport.php:78 +msgid "no results" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:292 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:270 -msgid "Choose a different album" +#: ../../Zotlabs/Module/Dreport.php:93 +msgid "channel sync processed" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:293 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:271 -#: ../../include/conversation.php:1338 -msgid "Error getting album list" +#: ../../Zotlabs/Module/Dreport.php:97 +msgid "queued" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:294 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:272 -#: ../../include/conversation.php:1339 -msgid "Error getting photo link" +#: ../../Zotlabs/Module/Dreport.php:101 +msgid "posted" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:295 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:273 -#: ../../include/conversation.php:1340 -msgid "Error getting album" +#: ../../Zotlabs/Module/Dreport.php:105 +msgid "accepted for delivery" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:364 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:337 -msgid "Error creating wiki. Invalid name." +#: ../../Zotlabs/Module/Dreport.php:109 +msgid "updated" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:376 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:348 -msgid "Wiki created, but error creating Home page." +#: ../../Zotlabs/Module/Dreport.php:112 +msgid "update ignored" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:383 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:353 -msgid "Error creating wiki" +#: ../../Zotlabs/Module/Dreport.php:115 +msgid "permission denied" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:395 -msgid "Wiki delete permission denied." +#: ../../Zotlabs/Module/Dreport.php:119 +msgid "recipient not found" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:405 -msgid "Error deleting wiki" +#: ../../Zotlabs/Module/Dreport.php:122 +msgid "mail recalled" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:431 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:400 -msgid "New page created" +#: ../../Zotlabs/Module/Dreport.php:125 +msgid "duplicate mail received" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:546 -msgid "Cannot delete Home" +#: ../../Zotlabs/Module/Dreport.php:128 +msgid "mail delivered" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:610 -msgid "Current Revision" +#: ../../Zotlabs/Module/Dreport.php:148 +#, php-format +msgid "Delivery report for %1$s" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:610 -msgid "Selected Revision" +#: ../../Zotlabs/Module/Dreport.php:151 +msgid "Options" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:660 -msgid "You must be authenticated." +#: ../../Zotlabs/Module/Dreport.php:152 +msgid "Redeliver" msgstr "" #: ../../Zotlabs/Module/Sources.php:37 @@ -6110,8 +6080,8 @@ msgstr "" msgid "*" msgstr "" -#: ../../Zotlabs/Module/Sources.php:96 ../../include/widgets.php:691 -#: ../../include/features.php:213 +#: ../../Zotlabs/Module/Sources.php:96 +#: ../../Zotlabs/Widget/Settings_menu.php:123 ../../include/features.php:213 msgid "Channel Sources" msgstr "" @@ -6147,11 +6117,6 @@ msgid "" "separated)" msgstr "" -#: ../../Zotlabs/Module/Sources.php:112 ../../Zotlabs/Module/Sources.php:147 -#: ../../Zotlabs/Module/Settings/Oauth.php:93 -msgid "Optional" -msgstr "" - #: ../../Zotlabs/Module/Sources.php:133 ../../Zotlabs/Module/Sources.php:161 msgid "Source not found." msgstr "" @@ -6172,1017 +6137,1144 @@ msgstr "" msgid "Unable to remove source." msgstr "" -#: ../../Zotlabs/Module/Subthread.php:118 +#: ../../Zotlabs/Module/Like.php:19 +msgid "Like/Dislike" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:24 +msgid "This action is restricted to members." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:25 +msgid "" +"Please <a href=\"rmagic\">login with your $Projectname ID</a> or <a href=" +"\"register\">register as a new $Projectname member</a> to continue." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:105 ../../Zotlabs/Module/Like.php:131 +#: ../../Zotlabs/Module/Like.php:169 +msgid "Invalid request." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:122 +msgid "channel" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:146 +msgid "thing" +msgstr "" + +#: ../../Zotlabs/Module/Like.php:192 +msgid "Channel unavailable." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:240 +msgid "Previous action reversed." +msgstr "" + +#: ../../Zotlabs/Module/Like.php:419 ../../addon/diaspora/inbound.php:1812 +#: ../../include/conversation.php:160 #, php-format -msgid "%1$s is following %2$s's %3$s" +msgid "%1$s likes %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Subthread.php:120 +#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:163 #, php-format -msgid "%1$s stopped following %2$s's %3$s" +msgid "%1$s doesn't like %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Suggest.php:39 -msgid "" -"No suggestions available. If this is a new site, please try again in 24 " -"hours." +#: ../../Zotlabs/Module/Like.php:423 +#, php-format +msgid "%1$s agrees with %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Suggest.php:58 ../../include/widgets.php:150 -msgid "Ignore/Hide" +#: ../../Zotlabs/Module/Like.php:425 +#, php-format +msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Tagger.php:55 ../../include/bbcode.php:274 -msgid "post" +#: ../../Zotlabs/Module/Like.php:427 +#, php-format +msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 -#: ../../include/text.php:1961 -msgid "comment" +#: ../../Zotlabs/Module/Like.php:429 +#, php-format +msgid "%1$s is attending %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Tagger.php:95 +#: ../../Zotlabs/Module/Like.php:431 #, php-format -msgid "%1$s tagged %2$s's %3$s with %4$s" +msgid "%1$s is not attending %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Settings/Features.php:45 -msgid "Additional Features" +#: ../../Zotlabs/Module/Like.php:433 +#, php-format +msgid "%1$s may attend %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:34 -msgid "Name is required" +#: ../../Zotlabs/Module/Like.php:538 +msgid "Action completed." msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:38 -msgid "Key and Secret are required" +#: ../../Zotlabs/Module/Like.php:539 +msgid "Thank you." msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:86 -#: ../../Zotlabs/Module/Settings/Oauth.php:112 -#: ../../Zotlabs/Module/Settings/Oauth.php:148 -msgid "Add application" +#: ../../Zotlabs/Module/Directory.php:245 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Gender: " msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:89 -msgid "Name of application" +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Status: " msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:90 -#: ../../Zotlabs/Module/Settings/Oauth.php:116 -#: ../../extend/addon/addon/statusnet/statusnet.php:893 -#: ../../extend/addon/addon/twitter/twitter.php:775 -msgid "Consumer Key" +#: ../../Zotlabs/Module/Directory.php:260 +msgid "Homepage: " msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:90 -#: ../../Zotlabs/Module/Settings/Oauth.php:91 -msgid "Automatically generated - change if desired. Max length 20" +#: ../../Zotlabs/Module/Directory.php:309 ../../include/channel.php:1293 +msgid "Age:" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:91 -#: ../../Zotlabs/Module/Settings/Oauth.php:117 -#: ../../extend/addon/addon/statusnet/statusnet.php:892 -#: ../../extend/addon/addon/twitter/twitter.php:776 -msgid "Consumer Secret" +#: ../../Zotlabs/Module/Directory.php:314 ../../include/markdown.php:560 +#: ../../include/channel.php:1134 ../../include/event.php:52 +#: ../../include/event.php:84 +msgid "Location:" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:92 -#: ../../Zotlabs/Module/Settings/Oauth.php:118 -msgid "Redirect" +#: ../../Zotlabs/Module/Directory.php:320 +msgid "Description:" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:92 -msgid "" -"Redirect URI - leave blank unless your application specifically requires this" +#: ../../Zotlabs/Module/Directory.php:325 ../../include/channel.php:1309 +msgid "Hometown:" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:93 -#: ../../Zotlabs/Module/Settings/Oauth.php:119 -msgid "Icon url" +#: ../../Zotlabs/Module/Directory.php:327 ../../include/channel.php:1317 +msgid "About:" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:104 -msgid "Application not found." +#: ../../Zotlabs/Module/Directory.php:328 ../../Zotlabs/Module/Suggest.php:54 +#: ../../Zotlabs/Widget/Follow.php:32 ../../Zotlabs/Widget/Suggestions.php:44 +#: ../../include/conversation.php:1002 ../../include/channel.php:1119 +#: ../../include/connections.php:110 +msgid "Connect" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:147 -msgid "Connected Apps" +#: ../../Zotlabs/Module/Directory.php:329 +msgid "Public Forum:" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:151 -msgid "Client key starts with" +#: ../../Zotlabs/Module/Directory.php:332 +msgid "Keywords: " msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:152 -msgid "No name" +#: ../../Zotlabs/Module/Directory.php:335 +msgid "Don't suggest" msgstr "" -#: ../../Zotlabs/Module/Settings/Oauth.php:153 -msgid "Remove authorization" +#: ../../Zotlabs/Module/Directory.php:337 +msgid "Common connections:" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:20 -msgid "Not valid email." +#: ../../Zotlabs/Module/Directory.php:386 +msgid "Global Directory" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:23 -msgid "Protected email address. Cannot change to that email." +#: ../../Zotlabs/Module/Directory.php:386 +msgid "Local Directory" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:32 -msgid "System failure storing new email. Please try again." +#: ../../Zotlabs/Module/Directory.php:392 +msgid "Finding:" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:40 -msgid "Technical skill level updated" +#: ../../Zotlabs/Module/Directory.php:395 ../../Zotlabs/Module/Suggest.php:62 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:56 -msgid "Password verification failed." +#: ../../Zotlabs/Module/Directory.php:397 +msgid "next page" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:63 -msgid "Passwords do not match. Password unchanged." +#: ../../Zotlabs/Module/Directory.php:397 +msgid "previous page" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:67 -msgid "Empty passwords are not allowed. Password unchanged." +#: ../../Zotlabs/Module/Directory.php:398 +msgid "Sort options" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:81 -msgid "Password changed." +#: ../../Zotlabs/Module/Directory.php:399 +msgid "Alphabetic" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:83 -msgid "Password update failed. Please try again." +#: ../../Zotlabs/Module/Directory.php:400 +msgid "Reverse Alphabetic" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:112 -msgid "Account Settings" +#: ../../Zotlabs/Module/Directory.php:401 +msgid "Newest to Oldest" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:113 -msgid "Current Password" +#: ../../Zotlabs/Module/Directory.php:402 +msgid "Oldest to Newest" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:114 -msgid "Enter New Password" +#: ../../Zotlabs/Module/Directory.php:419 +msgid "No entries (some entries may be hidden)." msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:115 -msgid "Confirm New Password" +#: ../../Zotlabs/Module/Xchan.php:10 +msgid "Xchan Lookup" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:115 -msgid "Leave password fields blank unless changing" +#: ../../Zotlabs/Module/Xchan.php:13 +msgid "Lookup xchan beginning with (or webbie): " msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:116 -msgid "Your technical skill level" +#: ../../Zotlabs/Module/Suggest.php:37 +msgid "" +"No suggestions available. If this is a new site, please try again in 24 " +"hours." msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:116 -msgid "Used to provide a member experience matched to your comfort level" +#: ../../Zotlabs/Module/Suggest.php:56 ../../Zotlabs/Widget/Suggestions.php:46 +msgid "Ignore/Hide" msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:119 -#: ../../Zotlabs/Module/Settings/Channel.php:483 -msgid "Email Address:" +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." msgstr "" -#: ../../Zotlabs/Module/Settings/Account.php:121 -msgid "Remove this account including all its channels" +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:31 -#, php-format -msgid "This channel is limited to %d tokens" +#: ../../Zotlabs/Module/Mail.php:65 +msgid "Unable to lookup recipient." msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:37 -msgid "Name and Password are required." +#: ../../Zotlabs/Module/Mail.php:72 +msgid "Unable to communicate with requested channel." msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:77 -msgid "Token saved." +#: ../../Zotlabs/Module/Mail.php:79 +msgid "Cannot verify requested channel." msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:113 -msgid "" -"Use this form to create temporary access identifiers to share things with " -"non-members. These identities may be used in Access Control Lists and " -"visitors may login using these credentials to access private content." +#: ../../Zotlabs/Module/Mail.php:97 +msgid "Selected channel has private message restrictions. Send failed." msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:115 -msgid "" -"You may also provide <em>dropbox</em> style access links to friends and " -"associates by adding the Login Password to any specific site URL as shown. " -"Examples:" +#: ../../Zotlabs/Module/Mail.php:178 +msgid "Messages" msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:150 ../../include/widgets.php:658 -msgid "Guest Access Tokens" +#: ../../Zotlabs/Module/Mail.php:191 +msgid "message" msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:157 -msgid "Login Name" +#: ../../Zotlabs/Module/Mail.php:232 +msgid "Message recalled." msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:158 -msgid "Login Password" +#: ../../Zotlabs/Module/Mail.php:245 +msgid "Conversation removed." msgstr "" -#: ../../Zotlabs/Module/Settings/Tokens.php:159 -msgid "Expires (yyyy-mm-dd)" +#: ../../Zotlabs/Module/Mail.php:260 ../../Zotlabs/Module/Mail.php:381 +msgid "Expires YYYY-MM-DD HH:MM" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:20 -msgid "Affinity Slider settings updated." +#: ../../Zotlabs/Module/Mail.php:288 +msgid "Requested channel is not in this network" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:34 -msgid "No feature settings configured" +#: ../../Zotlabs/Module/Mail.php:296 +msgid "Send Private Message" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:41 -msgid "Default maximum affinity level" +#: ../../Zotlabs/Module/Mail.php:297 ../../Zotlabs/Module/Mail.php:439 +msgid "To:" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:46 -msgid "Default minimum affinity level" +#: ../../Zotlabs/Module/Mail.php:300 ../../Zotlabs/Module/Mail.php:441 +msgid "Subject:" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:50 -msgid "Affinity Slider Settings" +#: ../../Zotlabs/Module/Mail.php:305 ../../Zotlabs/Module/Mail.php:447 +#: ../../include/conversation.php:1323 +msgid "Attach file" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:60 -msgid "Feature/Addon Settings" +#: ../../Zotlabs/Module/Mail.php:307 +msgid "Send" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:251 -#: ../../extend/addon/addon/logrot/logrot.php:54 -#: ../../extend/addon/addon/msgfooter/msgfooter.php:54 -#: ../../extend/addon/addon/openstreetmap/openstreetmap.php:184 -#: ../../extend/addon/addon/piwik/piwik.php:116 -#: ../../extend/addon/addon/twitter/twitter.php:766 -#: ../../extend/addon/addon/xmpp/xmpp.php:102 -#: ../../extend/addon/addon/rendezvous/rendezvous.php:82 -msgid "Settings updated." +#: ../../Zotlabs/Module/Mail.php:310 ../../Zotlabs/Module/Mail.php:452 +#: ../../include/conversation.php:1368 +msgid "Set expiration date" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:312 -msgid "Nobody except yourself" +#: ../../Zotlabs/Module/Mail.php:411 +msgid "Delete message" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:313 -msgid "Only those you specifically allow" +#: ../../Zotlabs/Module/Mail.php:412 +msgid "Delivery report" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:314 -msgid "Approved connections" +#: ../../Zotlabs/Module/Mail.php:413 +msgid "Recall message" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:315 -msgid "Any connections" +#: ../../Zotlabs/Module/Mail.php:415 +msgid "Message has been recalled." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:316 -msgid "Anybody on this website" +#: ../../Zotlabs/Module/Mail.php:432 +msgid "Delete Conversation" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:317 -msgid "Anybody in this network" +#: ../../Zotlabs/Module/Mail.php:434 +msgid "" +"No secure communications available. You <strong>may</strong> be able to " +"respond from the sender's profile page." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:318 -msgid "Anybody authenticated" +#: ../../Zotlabs/Module/Mail.php:438 +msgid "Send Reply" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:319 -msgid "Anybody on the internet" +#: ../../Zotlabs/Module/Mail.php:443 +#, php-format +msgid "Your message for %s (%s):" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:395 -msgid "Publish your default profile in the network directory" +#: ../../Zotlabs/Module/Pubsites.php:24 ../../Zotlabs/Widget/Pubsites.php:12 +msgid "Public Hubs" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:400 -msgid "Allow us to suggest you as a potential friend to new members?" +#: ../../Zotlabs/Module/Pubsites.php:27 +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 <strong>may</strong> provide " +"additional details." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:409 -msgid "Your channel address is" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Hub URL" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:412 -msgid "Your files/photos are accessible via WebDAV at" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Access Type" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:474 -msgid "Channel Settings" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Registration Policy" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:481 -msgid "Basic Settings" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Stats" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:482 -#: ../../include/channel.php:1255 -msgid "Full Name:" +#: ../../Zotlabs/Module/Pubsites.php:33 +msgid "Software" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:484 -msgid "Your Timezone:" +#: ../../Zotlabs/Module/Pubsites.php:48 +msgid "Rate" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:485 -msgid "Default Post Location:" +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:203 +msgid "webpage" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:485 -msgid "Geographical location to display on your posts" +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:209 +msgid "block" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:486 -msgid "Use Browser Location:" +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:206 +msgid "layout" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:488 -msgid "Adult Content" +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:212 +msgid "menu" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:488 -msgid "" -"This channel frequently or regularly publishes adult content. (Please tag " -"any adult material and/or nudity with #NSFW)" +#: ../../Zotlabs/Module/Impel.php:181 +#, php-format +msgid "%s element installed" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:490 -msgid "Security and Privacy Settings" +#: ../../Zotlabs/Module/Impel.php:184 +#, php-format +msgid "%s element installation failed" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:493 -msgid "Your permissions are already configured. Click to view/adjust" +#: ../../Zotlabs/Module/Rbmark.php:94 +msgid "Select a bookmark folder" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:495 -msgid "Hide my online presence" +#: ../../Zotlabs/Module/Rbmark.php:99 +msgid "Save Bookmark" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:495 -msgid "Prevents displaying in your profile that you are online" +#: ../../Zotlabs/Module/Rbmark.php:100 +msgid "URL of bookmark" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:497 -msgid "Simple Privacy Settings:" +#: ../../Zotlabs/Module/Rbmark.php:105 +msgid "Or enter new bookmark folder name" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:498 +#: ../../Zotlabs/Module/Filer.php:52 +msgid "Enter a folder name" +msgstr "" + +#: ../../Zotlabs/Module/Filer.php:52 +msgid "or select an existing folder (doubleclick)" +msgstr "" + +#: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Lib/ThreadItem.php:137 +msgid "Save to Folder" +msgstr "" + +#: ../../Zotlabs/Module/Probe.php:28 ../../Zotlabs/Module/Probe.php:32 +#, php-format +msgid "Fetching URL returns error: %1$s" +msgstr "" + +#: ../../Zotlabs/Module/Register.php:49 +msgid "Maximum daily site registrations exceeded. Please try again tomorrow." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:55 msgid "" -"Very Public - <em>extremely permissive (should be used with caution)</em>" +"Please indicate acceptance of the Terms of Service. Registration failed." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:499 +#: ../../Zotlabs/Module/Register.php:89 +msgid "Passwords do not match." +msgstr "" + +#: ../../Zotlabs/Module/Register.php:131 msgid "" -"Typical - <em>default public, privacy when desired (similar to social " -"network permissions but with improved privacy)</em>" +"Registration successful. Please check your email for validation instructions." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:500 -msgid "Private - <em>default private, never open or public</em>" +#: ../../Zotlabs/Module/Register.php:137 +msgid "Your registration is pending approval by the site owner." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:501 -msgid "Blocked - <em>default blocked to/from everybody</em>" +#: ../../Zotlabs/Module/Register.php:140 +msgid "Your registration can not be processed." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:503 -msgid "Allow others to tag your posts" +#: ../../Zotlabs/Module/Register.php:184 +msgid "Registration on this hub is disabled." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:503 -msgid "" -"Often used by the community to retro-actively flag inappropriate content" +#: ../../Zotlabs/Module/Register.php:193 +msgid "Registration on this hub is by approval only." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:505 -msgid "Channel Permission Limits" +#: ../../Zotlabs/Module/Register.php:194 +msgid "<a href=\"pubsites\">Register at another affiliated hub.</a>" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:507 -msgid "Expire other channel content after this many days" +#: ../../Zotlabs/Module/Register.php:204 +msgid "" +"This site has exceeded the number of allowed daily account registrations. " +"Please try again tomorrow." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:507 -msgid "0 or blank to use the website limit." +#: ../../Zotlabs/Module/Register.php:227 +#, php-format +msgid "I accept the %s for this website" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:507 +#: ../../Zotlabs/Module/Register.php:229 #, php-format -msgid "This website expires after %d days." +msgid "I am over 13 years of age and accept the %s for this website" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:507 -msgid "This website does not expire imported content." +#: ../../Zotlabs/Module/Register.php:233 +msgid "Your email address" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:507 -msgid "The website limit takes precedence if lower than your limit." +#: ../../Zotlabs/Module/Register.php:234 +msgid "Choose a password" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:508 -msgid "Maximum Friend Requests/Day:" +#: ../../Zotlabs/Module/Register.php:235 +msgid "Please re-enter your password" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:508 -msgid "May reduce spam activity" +#: ../../Zotlabs/Module/Register.php:236 +msgid "Please enter your invitation code" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:509 -msgid "Default Access Control List (ACL)" +#: ../../Zotlabs/Module/Register.php:241 +msgid "no" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:511 -msgid "Use my default audience setting for the type of object published" +#: ../../Zotlabs/Module/Register.php:241 +msgid "yes" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:518 -msgid "Channel permissions category:" +#: ../../Zotlabs/Module/Register.php:258 +msgid "Membership on this site is by invitation only." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:519 -msgid "Default Permissions Group" +#: ../../Zotlabs/Module/Register.php:270 ../../boot.php:1610 +#: ../../include/nav.php:149 +msgid "Register" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:525 -msgid "Maximum private messages per day from unknown people:" +#: ../../Zotlabs/Module/Register.php:271 +msgid "" +"This site may require email verification after submitting this form. If you " +"are returned to a login page, please check your email for instructions." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:525 -msgid "Useful to reduce spamming" +#: ../../Zotlabs/Module/Cover_photo.php:136 +#: ../../Zotlabs/Module/Cover_photo.php:186 +msgid "Cover Photos" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:528 -msgid "Notification Settings" +#: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4303 +msgid "female" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:529 -msgid "By default post a status message when:" +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4304 +#, php-format +msgid "%1$s updated her %2$s" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:530 -msgid "accepting a friend request" +#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4305 +msgid "male" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:531 -msgid "joining a forum/community" +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4306 +#, php-format +msgid "%1$s updated his %2$s" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:532 -msgid "making an <em>interesting</em> profile change" +#: ../../Zotlabs/Module/Cover_photo.php:242 ../../include/items.php:4308 +#, php-format +msgid "%1$s updated their %2$s" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:533 -msgid "Send a notification email when:" +#: ../../Zotlabs/Module/Cover_photo.php:244 ../../include/channel.php:1759 +msgid "cover photo" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:534 -msgid "You receive a connection request" +#: ../../Zotlabs/Module/Cover_photo.php:360 +msgid "Upload Cover Photo" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:535 -msgid "Your connections are confirmed" +#: ../../Zotlabs/Module/Help.php:23 +msgid "Documentation Search" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:536 -msgid "Someone writes on your profile wall" +#: ../../Zotlabs/Module/Help.php:80 ../../include/conversation.php:1773 +#: ../../include/nav.php:382 +msgid "About" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:537 -msgid "Someone writes a followup comment" +#: ../../Zotlabs/Module/Help.php:82 +msgid "Administrators" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:538 -msgid "You receive a private message" +#: ../../Zotlabs/Module/Help.php:83 +msgid "Developers" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:539 -msgid "You receive a friend suggestion" +#: ../../Zotlabs/Module/Help.php:84 +msgid "Tutorials" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:540 -msgid "You are tagged in a post" +#: ../../Zotlabs/Module/Help.php:93 +msgid "$Projectname Documentation" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:541 -msgid "You are poked/prodded/etc. in a post" +#: ../../Zotlabs/Module/Help.php:94 +msgid "Contents" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:543 -msgid "Someone likes your post/comment" +#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 +msgid "Tag removed" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:546 -msgid "Show visual notifications including:" +#: ../../Zotlabs/Module/Tagrm.php:123 +msgid "Remove Item Tag" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:548 -msgid "Unseen grid activity" +#: ../../Zotlabs/Module/Tagrm.php:125 +msgid "Select a tag to remove: " msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:549 -msgid "Unseen channel activity" +#: ../../Zotlabs/Module/Network.php:96 +msgid "No such group" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:550 -msgid "Unseen private messages" +#: ../../Zotlabs/Module/Network.php:136 +msgid "No such channel" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:550 -#: ../../Zotlabs/Module/Settings/Channel.php:555 -#: ../../Zotlabs/Module/Settings/Channel.php:556 -#: ../../Zotlabs/Module/Settings/Channel.php:557 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:343 -msgid "Recommended" +#: ../../Zotlabs/Module/Network.php:141 +msgid "forum" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:551 -msgid "Upcoming events" +#: ../../Zotlabs/Module/Network.php:153 +msgid "Search Results For:" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:552 -msgid "Events today" +#: ../../Zotlabs/Module/Network.php:221 +msgid "Privacy group is empty" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:553 -msgid "Upcoming birthdays" +#: ../../Zotlabs/Module/Network.php:230 +msgid "Privacy group: " msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:553 -msgid "Not available in all themes" +#: ../../Zotlabs/Module/Network.php:256 +msgid "Invalid connection." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:554 -msgid "System (personal) notifications" +#: ../../Zotlabs/Module/Network.php:275 ../../addon/redred/redred.php:65 +msgid "Invalid channel." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:555 -msgid "System info messages" +#: ../../Zotlabs/Module/Acl.php:344 +msgid "network" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:556 -msgid "System critical alerts" +#: ../../Zotlabs/Module/Acl.php:354 +msgid "RSS" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:557 -msgid "New connections" +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../addon/opensearch/opensearch.php:42 +msgid "$Projectname" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:558 -msgid "System Registrations" +#: ../../Zotlabs/Module/Home.php:92 +#, php-format +msgid "Welcome to %s" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:559 -msgid "" -"Also show new wall posts, private messages and connections under Notices" +#: ../../Zotlabs/Module/Filestorage.php:87 +msgid "Permission Denied." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:561 -msgid "Notify me of events this many days in advance" +#: ../../Zotlabs/Module/Filestorage.php:103 +msgid "File not found." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:561 -msgid "Must be greater than 0" +#: ../../Zotlabs/Module/Filestorage.php:146 +msgid "Edit file permissions" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:567 -msgid "Advanced Account/Page Type Settings" +#: ../../Zotlabs/Module/Filestorage.php:159 +msgid "Set/edit permissions" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:568 -msgid "Change the behaviour of this account for special situations" +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Include all files and sub folders" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:570 -msgid "Miscellaneous Settings" +#: ../../Zotlabs/Module/Filestorage.php:161 +msgid "Return to file list" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:571 -msgid "Default photo upload folder" +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Copy/paste this code to attach file to a post" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:571 -#: ../../Zotlabs/Module/Settings/Channel.php:572 -msgid "%Y - current year, %m - current month" +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Copy/paste this URL to link file from a web page" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:572 -msgid "Default file upload folder" +#: ../../Zotlabs/Module/Filestorage.php:166 +msgid "Share this file" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:574 -msgid "Personal menu to display in your channel pages" +#: ../../Zotlabs/Module/Filestorage.php:167 +msgid "Show URL to this file" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:576 -msgid "Remove this channel." +#: ../../Zotlabs/Module/Filestorage.php:168 +msgid "Notify your contacts about this file" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:577 -msgid "Firefox Share $Projectname provider" +#: ../../Zotlabs/Module/Common.php:14 +msgid "No channel." msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:578 -msgid "Start calendar week on monday" +#: ../../Zotlabs/Module/Common.php:43 +msgid "Common connections" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:137 -msgid "No special theme for mobile devices" +#: ../../Zotlabs/Module/Common.php:48 +msgid "No connections in common." msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:140 +#: ../../Zotlabs/Module/Viewconnections.php:65 +msgid "No connections." +msgstr "" + +#: ../../Zotlabs/Module/Viewconnections.php:78 #, php-format -msgid "%s - (Experimental)" +msgid "Visit %s's profile [%s]" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:191 -msgid "Display Settings" +#: ../../Zotlabs/Module/Viewconnections.php:107 +msgid "View Connections" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:192 -msgid "Theme Settings" +#: ../../Zotlabs/Module/Admin.php:94 +msgid "# Accounts" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:193 -msgid "Custom Theme Settings" +#: ../../Zotlabs/Module/Admin.php:95 +msgid "# blocked accounts" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:194 -msgid "Content Settings" +#: ../../Zotlabs/Module/Admin.php:96 +msgid "# expired accounts" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:200 -msgid "Display Theme:" +#: ../../Zotlabs/Module/Admin.php:97 +msgid "# expiring accounts" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:201 -msgid "Select scheme" +#: ../../Zotlabs/Module/Admin.php:108 +msgid "# Channels" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:203 -msgid "Mobile Theme:" +#: ../../Zotlabs/Module/Admin.php:109 +msgid "# primary" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:204 -msgid "Preload images before rendering the page" +#: ../../Zotlabs/Module/Admin.php:110 +msgid "# clones" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:204 -msgid "" -"The subjective page load time will be longer but the page will be ready when " -"displayed" +#: ../../Zotlabs/Module/Admin.php:116 +msgid "Message queues" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:205 -msgid "Enable user zoom on mobile devices" +#: ../../Zotlabs/Module/Admin.php:133 +msgid "Your software should be updated" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:206 -msgid "Update browser every xx seconds" +#: ../../Zotlabs/Module/Admin.php:138 +msgid "Summary" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:206 -msgid "Minimum of 10 seconds, no maximum" +#: ../../Zotlabs/Module/Admin.php:141 +msgid "Registered accounts" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:207 -msgid "Maximum number of conversations to load at any time:" +#: ../../Zotlabs/Module/Admin.php:142 +msgid "Pending registrations" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:207 -msgid "Maximum of 100 items" +#: ../../Zotlabs/Module/Admin.php:143 +msgid "Registered channels" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:208 -msgid "Show emoticons (smilies) as images" +#: ../../Zotlabs/Module/Admin.php:144 +msgid "Active plugins" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:209 -msgid "Manual conversation updates" +#: ../../Zotlabs/Module/Admin.php:145 +msgid "Version" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:209 -msgid "Default is on, turning this off may increase screen jumping" +#: ../../Zotlabs/Module/Admin.php:146 +msgid "Repository version (master)" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:210 -msgid "Link post titles to source" +#: ../../Zotlabs/Module/Admin.php:147 +msgid "Repository version (dev)" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:211 -msgid "System Page Layout Editor - (advanced)" +#: ../../Zotlabs/Module/Service_limits.php:23 +msgid "No service class restrictions found." msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:214 -msgid "Use blog/list mode on channel page" +#: ../../Zotlabs/Module/Rate.php:156 +msgid "Website:" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:214 -#: ../../Zotlabs/Module/Settings/Display.php:215 -msgid "(comments displayed separately)" +#: ../../Zotlabs/Module/Rate.php:159 +#, php-format +msgid "Remote Channel [%s] (not yet known on this site)" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:215 -msgid "Use blog/list mode on grid page" +#: ../../Zotlabs/Module/Rate.php:160 +msgid "Rating (this information is public)" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:216 -msgid "Channel page max height of content (in pixels)" +#: ../../Zotlabs/Module/Rate.php:161 +msgid "Optionally explain your rating (this information is public)" msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:216 -#: ../../Zotlabs/Module/Settings/Display.php:217 -msgid "click to expand content exceeding this height" +#: ../../Zotlabs/Module/Lostpass.php:19 +msgid "No valid account found." msgstr "" -#: ../../Zotlabs/Module/Settings/Display.php:217 -msgid "Grid page max height of content (in pixels)" +#: ../../Zotlabs/Module/Lostpass.php:33 +msgid "Password reset request issued. Check your email." msgstr "" -#: ../../Zotlabs/Module/Settings/Permcats.php:37 -msgid "Permission category saved." +#: ../../Zotlabs/Module/Lostpass.php:39 ../../Zotlabs/Module/Lostpass.php:108 +#, php-format +msgid "Site Member (%s)" msgstr "" -#: ../../Zotlabs/Module/Settings/Permcats.php:63 +#: ../../Zotlabs/Module/Lostpass.php:44 ../../Zotlabs/Module/Lostpass.php:49 +#, php-format +msgid "Password reset requested at %s" +msgstr "" + +#: ../../Zotlabs/Module/Lostpass.php:68 msgid "" -"Use this form to create permission rules for various classes of people or " -"connections." +"Request could not be verified. (You may have previously submitted it.) " +"Password reset failed." msgstr "" -#: ../../Zotlabs/Module/Settings/Permcats.php:96 -msgid "Permission Categories" +#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1637 +msgid "Password Reset" msgstr "" -#: ../../Zotlabs/Module/Settings/Permcats.php:104 -msgid "Permission Name" +#: ../../Zotlabs/Module/Lostpass.php:92 +msgid "Your password has been reset as requested." msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 -msgid "Tag removed" +#: ../../Zotlabs/Module/Lostpass.php:93 +msgid "Your new password is" msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:123 -msgid "Remove Item Tag" +#: ../../Zotlabs/Module/Lostpass.php:94 +msgid "Save or copy your new password - and then" msgstr "" -#: ../../Zotlabs/Module/Tagrm.php:125 -msgid "Select a tag to remove: " +#: ../../Zotlabs/Module/Lostpass.php:95 +msgid "click here to login" msgstr "" -#: ../../Zotlabs/Module/Thing.php:114 -msgid "Thing updated" +#: ../../Zotlabs/Module/Lostpass.php:96 +msgid "" +"Your password may be changed from the <em>Settings</em> page after " +"successful login." msgstr "" -#: ../../Zotlabs/Module/Thing.php:166 -msgid "Object store: failed" +#: ../../Zotlabs/Module/Lostpass.php:117 +#, php-format +msgid "Your password has changed at %s" msgstr "" -#: ../../Zotlabs/Module/Thing.php:170 -msgid "Thing added" +#: ../../Zotlabs/Module/Lostpass.php:130 +msgid "Forgot your Password?" msgstr "" -#: ../../Zotlabs/Module/Thing.php:196 -#, php-format -msgid "OBJ: %1$s %2$s %3$s" +#: ../../Zotlabs/Module/Lostpass.php:131 +msgid "" +"Enter your email address and submit to have your password reset. Then check " +"your email for further instructions." msgstr "" -#: ../../Zotlabs/Module/Thing.php:259 -msgid "Show Thing" +#: ../../Zotlabs/Module/Lostpass.php:132 +msgid "Email Address" msgstr "" -#: ../../Zotlabs/Module/Thing.php:266 -msgid "item not found." +#: ../../Zotlabs/Module/Lostpass.php:133 +msgid "Reset" msgstr "" -#: ../../Zotlabs/Module/Thing.php:299 -msgid "Edit Thing" +#: ../../Zotlabs/Module/Notifications.php:43 ../../include/nav.php:190 +msgid "Mark all system notifications seen" msgstr "" -#: ../../Zotlabs/Module/Thing.php:301 ../../Zotlabs/Module/Thing.php:355 -msgid "Select a profile" +#: ../../Zotlabs/Lib/Apps.php:212 +msgid "Site Admin" msgstr "" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 -msgid "Post an activity" +#: ../../Zotlabs/Lib/Apps.php:213 ../../addon/buglink/buglink.php:16 +msgid "Report Bug" msgstr "" -#: ../../Zotlabs/Module/Thing.php:305 ../../Zotlabs/Module/Thing.php:358 -msgid "Only sends to viewers of the applicable profile" +#: ../../Zotlabs/Lib/Apps.php:214 +msgid "View Bookmarks" msgstr "" -#: ../../Zotlabs/Module/Thing.php:307 ../../Zotlabs/Module/Thing.php:360 -msgid "Name of thing e.g. something" +#: ../../Zotlabs/Lib/Apps.php:215 +msgid "My Chatrooms" msgstr "" -#: ../../Zotlabs/Module/Thing.php:309 ../../Zotlabs/Module/Thing.php:361 -msgid "URL of thing (optional)" +#: ../../Zotlabs/Lib/Apps.php:217 +msgid "Firefox Share" msgstr "" -#: ../../Zotlabs/Module/Thing.php:311 ../../Zotlabs/Module/Thing.php:362 -msgid "URL for photo of thing (optional)" +#: ../../Zotlabs/Lib/Apps.php:218 +msgid "Remote Diagnostics" msgstr "" -#: ../../Zotlabs/Module/Thing.php:353 -msgid "Add Thing to your Profile" +#: ../../Zotlabs/Lib/Apps.php:219 ../../include/features.php:337 +msgid "Suggest Channels" msgstr "" -#: ../../Zotlabs/Module/Mail.php:65 -msgid "Unable to lookup recipient." +#: ../../Zotlabs/Lib/Apps.php:220 ../../boot.php:1629 ../../include/nav.php:117 +msgid "Login" msgstr "" -#: ../../Zotlabs/Module/Mail.php:72 -msgid "Unable to communicate with requested channel." +#: ../../Zotlabs/Lib/Apps.php:222 +msgid "Activity" msgstr "" -#: ../../Zotlabs/Module/Mail.php:79 -msgid "Cannot verify requested channel." +#: ../../Zotlabs/Lib/Apps.php:226 ../../include/conversation.php:1857 +#: ../../include/features.php:99 ../../include/nav.php:465 +msgid "Wiki" msgstr "" -#: ../../Zotlabs/Module/Mail.php:97 -msgid "Selected channel has private message restrictions. Send failed." +#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:180 +msgid "Channel Home" msgstr "" -#: ../../Zotlabs/Module/Mail.php:178 -msgid "Messages" +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/conversation.php:1802 +#: ../../include/conversation.php:1805 ../../include/nav.php:200 +#: ../../include/nav.php:411 ../../include/nav.php:414 +msgid "Events" msgstr "" -#: ../../Zotlabs/Module/Mail.php:213 -msgid "Message recalled." +#: ../../Zotlabs/Lib/Apps.php:231 +msgid "Directory" msgstr "" -#: ../../Zotlabs/Module/Mail.php:226 -msgid "Conversation removed." +#: ../../Zotlabs/Lib/Apps.php:233 ../../include/nav.php:192 +msgid "Mail" msgstr "" -#: ../../Zotlabs/Module/Mail.php:240 ../../Zotlabs/Module/Mail.php:349 -#: ../../Zotlabs/Module/Chat.php:205 ../../include/conversation.php:1330 -msgid "Please enter a link URL:" +#: ../../Zotlabs/Lib/Apps.php:236 +msgid "Chat" msgstr "" -#: ../../Zotlabs/Module/Mail.php:241 ../../Zotlabs/Module/Mail.php:350 -msgid "Expires YYYY-MM-DD HH:MM" +#: ../../Zotlabs/Lib/Apps.php:238 +msgid "Probe" msgstr "" -#: ../../Zotlabs/Module/Mail.php:269 -msgid "Requested channel is not in this network" +#: ../../Zotlabs/Lib/Apps.php:239 +msgid "Suggest" msgstr "" -#: ../../Zotlabs/Module/Mail.php:277 -msgid "Send Private Message" +#: ../../Zotlabs/Lib/Apps.php:240 +msgid "Random Channel" msgstr "" -#: ../../Zotlabs/Module/Mail.php:278 ../../Zotlabs/Module/Mail.php:403 -msgid "To:" +#: ../../Zotlabs/Lib/Apps.php:241 +msgid "Invite" msgstr "" -#: ../../Zotlabs/Module/Mail.php:281 ../../Zotlabs/Module/Mail.php:405 -msgid "Subject:" +#: ../../Zotlabs/Lib/Apps.php:242 ../../Zotlabs/Widget/Admin.php:26 +msgid "Features" msgstr "" -#: ../../Zotlabs/Module/Mail.php:286 ../../Zotlabs/Module/Mail.php:411 -#: ../../include/conversation.php:1390 -msgid "Attach file" +#: ../../Zotlabs/Lib/Apps.php:243 ../../addon/openid/MysqlProvider.php:69 +msgid "Language" msgstr "" -#: ../../Zotlabs/Module/Mail.php:288 -msgid "Send" +#: ../../Zotlabs/Lib/Apps.php:244 +msgid "Post" msgstr "" -#: ../../Zotlabs/Module/Mail.php:291 ../../Zotlabs/Module/Mail.php:416 -#: ../../include/conversation.php:1435 -msgid "Set expiration date" +#: ../../Zotlabs/Lib/Apps.php:245 ../../addon/openid/MysqlProvider.php:58 +#: ../../addon/openid/MysqlProvider.php:59 +#: ../../addon/openid/MysqlProvider.php:60 +msgid "Profile Photo" msgstr "" -#: ../../Zotlabs/Module/Mail.php:293 ../../Zotlabs/Module/Mail.php:418 -#: ../../Zotlabs/Module/Chat.php:206 ../../Zotlabs/Lib/ThreadItem.php:743 -#: ../../include/conversation.php:1440 -msgid "Encrypt text" +#: ../../Zotlabs/Lib/Apps.php:365 +msgid "Purchase" msgstr "" -#: ../../Zotlabs/Module/Mail.php:375 -msgid "Delete message" +#: ../../Zotlabs/Lib/Apps.php:369 +msgid "Undelete" msgstr "" -#: ../../Zotlabs/Module/Mail.php:376 -msgid "Delivery report" +#: ../../Zotlabs/Lib/Apps.php:374 +msgid "Add to app-tray" msgstr "" -#: ../../Zotlabs/Module/Mail.php:377 -msgid "Recall message" +#: ../../Zotlabs/Lib/Apps.php:375 +msgid "Remove from app-tray" msgstr "" -#: ../../Zotlabs/Module/Mail.php:379 -msgid "Message has been recalled." +#: ../../Zotlabs/Lib/Permcat.php:58 +msgctxt "permcat" +msgid "default" msgstr "" -#: ../../Zotlabs/Module/Mail.php:396 -msgid "Delete Conversation" +#: ../../Zotlabs/Lib/Permcat.php:96 +msgctxt "permcat" +msgid "follower" msgstr "" -#: ../../Zotlabs/Module/Mail.php:398 -msgid "" -"No secure communications available. You <strong>may</strong> be able to " -"respond from the sender's profile page." +#: ../../Zotlabs/Lib/Permcat.php:100 +msgctxt "permcat" +msgid "contributor" msgstr "" -#: ../../Zotlabs/Module/Mail.php:402 -msgid "Send Reply" +#: ../../Zotlabs/Lib/Permcat.php:104 +msgctxt "permcat" +msgid "publisher" msgstr "" -#: ../../Zotlabs/Module/Mail.php:407 -#, php-format -msgid "Your message for %s (%s):" +#: ../../Zotlabs/Lib/NativeWikiPage.php:42 +#: ../../Zotlabs/Lib/NativeWikiPage.php:83 +msgid "(No Title)" msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:65 -msgid "No connections." +#: ../../Zotlabs/Lib/NativeWikiPage.php:97 +msgid "Wiki page create failed." msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:78 -#, php-format -msgid "Visit %s's profile [%s]" +#: ../../Zotlabs/Lib/NativeWikiPage.php:110 +msgid "Wiki not found." msgstr "" -#: ../../Zotlabs/Module/Viewconnections.php:107 -msgid "View Connections" +#: ../../Zotlabs/Lib/NativeWikiPage.php:121 +msgid "Destination name already exists" msgstr "" -#: ../../Zotlabs/Module/Viewsrc.php:44 -msgid "Source of Item" +#: ../../Zotlabs/Lib/NativeWikiPage.php:147 +#: ../../Zotlabs/Lib/NativeWikiPage.php:342 +msgid "Page not found" msgstr "" -#: ../../Zotlabs/Module/Chat.php:181 -msgid "Room not found" +#: ../../Zotlabs/Lib/NativeWikiPage.php:177 +msgid "Error reading page content" msgstr "" -#: ../../Zotlabs/Module/Chat.php:197 -msgid "Leave Room" +#: ../../Zotlabs/Lib/NativeWikiPage.php:333 +#: ../../Zotlabs/Lib/NativeWikiPage.php:381 +#: ../../Zotlabs/Lib/NativeWikiPage.php:448 +#: ../../Zotlabs/Lib/NativeWikiPage.php:489 +msgid "Error reading wiki" msgstr "" -#: ../../Zotlabs/Module/Chat.php:198 -msgid "Delete Room" +#: ../../Zotlabs/Lib/NativeWikiPage.php:369 +msgid "Page update failed." msgstr "" -#: ../../Zotlabs/Module/Chat.php:199 -msgid "I am away right now" +#: ../../Zotlabs/Lib/NativeWikiPage.php:403 +msgid "Nothing deleted" msgstr "" -#: ../../Zotlabs/Module/Chat.php:200 -msgid "I am online" +#: ../../Zotlabs/Lib/NativeWikiPage.php:469 +msgid "Compare: object not found." msgstr "" -#: ../../Zotlabs/Module/Chat.php:202 -msgid "Bookmark this room" +#: ../../Zotlabs/Lib/NativeWikiPage.php:475 +msgid "Page updated" msgstr "" -#: ../../Zotlabs/Module/Chat.php:231 -msgid "New Chatroom" +#: ../../Zotlabs/Lib/NativeWikiPage.php:478 +msgid "Untitled" msgstr "" -#: ../../Zotlabs/Module/Chat.php:232 -msgid "Chatroom name" +#: ../../Zotlabs/Lib/NativeWikiPage.php:484 +msgid "Wiki resource_id required for git commit" msgstr "" -#: ../../Zotlabs/Module/Chat.php:233 -msgid "Expiration of chats (minutes)" +#: ../../Zotlabs/Lib/NativeWikiPage.php:540 +#: ../../Zotlabs/Widget/Wiki_page_history.php:23 +msgctxt "wiki_history" +msgid "Message" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:578 +#: ../../addon/gitwiki/gitwiki_backend.php:579 ../../include/bbcode.php:610 +#: ../../include/bbcode.php:756 +msgid "Different viewers will see this text differently" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:34 +#: ../../include/acl_selectors.php:128 +msgid "Visible to your default audience" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:107 +#: ../../include/acl_selectors.php:201 +msgid "Only me" msgstr "" -#: ../../Zotlabs/Module/Chat.php:249 +#: ../../Zotlabs/Lib/PermissionDescription.php:108 +msgid "Public" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:109 +msgid "Anybody in the $Projectname network" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:110 #, php-format -msgid "%1$s's Chatrooms" +msgid "Any account on %s" msgstr "" -#: ../../Zotlabs/Module/Chat.php:254 -msgid "No chatrooms available" +#: ../../Zotlabs/Lib/PermissionDescription.php:111 +msgid "Any of my connections" msgstr "" -#: ../../Zotlabs/Module/Chat.php:258 -msgid "Expiration" +#: ../../Zotlabs/Lib/PermissionDescription.php:112 +msgid "Only connections I specifically allow" msgstr "" -#: ../../Zotlabs/Module/Chat.php:259 -msgid "min" +#: ../../Zotlabs/Lib/PermissionDescription.php:113 +msgid "Anybody authenticated (could include visitors from other networks)" msgstr "" -#: ../../Zotlabs/Module/Xchan.php:10 -msgid "Xchan Lookup" +#: ../../Zotlabs/Lib/PermissionDescription.php:114 +msgid "Any connections including those who haven't yet been approved" msgstr "" -#: ../../Zotlabs/Module/Xchan.php:13 -msgid "Lookup xchan beginning with (or webbie): " +#: ../../Zotlabs/Lib/PermissionDescription.php:150 +msgid "" +"This is your default setting for the audience of your normal stream, and " +"posts." +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:151 +msgid "" +"This is your default setting for who can view your default channel profile" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:152 +msgid "This is your default setting for who can view your connections" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:153 +msgid "" +"This is your default setting for who can view your file storage and photos" +msgstr "" + +#: ../../Zotlabs/Lib/PermissionDescription.php:154 +msgid "This is your default setting for the audience of your webpages" msgstr "" #: ../../Zotlabs/Lib/Chatroom.php:27 @@ -7205,22 +7297,21 @@ msgstr "" msgid "Room is full" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1924 +#: ../../Zotlabs/Lib/Enotify.php:60 ../../include/network.php:1977 msgid "$Projectname Notification" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../extend/addon/addon/diaspora/p.php:46 -#: ../../extend/addon/addon/diaspora/util.php:218 -#: ../../extend/addon/addon/diaspora/util.php:231 -#: ../../include/network.php:1925 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../addon/diaspora/util.php:218 +#: ../../addon/diaspora/util.php:231 ../../addon/diaspora/p.php:46 +#: ../../include/network.php:1978 msgid "$projectname" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1927 +#: ../../Zotlabs/Lib/Enotify.php:63 ../../include/network.php:1980 msgid "Thank You," msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1929 +#: ../../Zotlabs/Lib/Enotify.php:65 ../../include/network.php:1982 #, php-format msgid "%s Administrator" msgstr "" @@ -7414,205 +7505,152 @@ msgstr "" msgid "Please visit %s to approve or reject the suggestion." msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:619 +#: ../../Zotlabs/Lib/Enotify.php:620 msgid "[$Projectname:Notify]" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:779 +#: ../../Zotlabs/Lib/Enotify.php:780 msgid "created a new post" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:780 +#: ../../Zotlabs/Lib/Enotify.php:781 #, php-format msgid "commented on %s's post" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:34 -#: ../../include/acl_selectors.php:128 -msgid "Visible to your default audience" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:107 -#: ../../include/acl_selectors.php:201 -msgid "Only me" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:108 -msgid "Public" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:109 -msgid "Anybody in the $Projectname network" +#: ../../Zotlabs/Lib/NativeWiki.php:128 +msgid "Wiki files deleted successfully" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:110 +#: ../../Zotlabs/Lib/DB_Upgrade.php:93 #, php-format -msgid "Any account on %s" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:111 -msgid "Any of my connections" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:112 -msgid "Only connections I specifically allow" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:113 -msgid "Anybody authenticated (could include visitors from other networks)" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:114 -msgid "Any connections including those who haven't yet been approved" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:150 -msgid "" -"This is your default setting for the audience of your normal stream, and " -"posts." -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:151 -msgid "" -"This is your default setting for who can view your default channel profile" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:152 -msgid "This is your default setting for who can view your connections" -msgstr "" - -#: ../../Zotlabs/Lib/PermissionDescription.php:153 -msgid "" -"This is your default setting for who can view your file storage and photos" +msgid "Update Error at %s" msgstr "" -#: ../../Zotlabs/Lib/PermissionDescription.php:154 -msgid "This is your default setting for the audience of your webpages" +#: ../../Zotlabs/Lib/DB_Upgrade.php:99 +#, php-format +msgid "Update %s failed. See error logs." msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:663 +#: ../../Zotlabs/Lib/ThreadItem.php:96 ../../include/conversation.php:661 msgid "Private Message" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:655 +#: ../../Zotlabs/Lib/ThreadItem.php:133 ../../include/conversation.php:653 msgid "Select" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:136 -msgid "Save to Folder" -msgstr "" - -#: ../../Zotlabs/Lib/ThreadItem.php:157 +#: ../../Zotlabs/Lib/ThreadItem.php:158 msgid "I will attend" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:157 +#: ../../Zotlabs/Lib/ThreadItem.php:158 msgid "I will not attend" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:157 +#: ../../Zotlabs/Lib/ThreadItem.php:158 msgid "I might attend" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:167 +#: ../../Zotlabs/Lib/ThreadItem.php:168 msgid "I agree" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:167 +#: ../../Zotlabs/Lib/ThreadItem.php:168 msgid "I disagree" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:167 +#: ../../Zotlabs/Lib/ThreadItem.php:168 msgid "I abstain" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:223 +#: ../../Zotlabs/Lib/ThreadItem.php:224 msgid "Add Star" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:224 +#: ../../Zotlabs/Lib/ThreadItem.php:225 msgid "Remove Star" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:225 +#: ../../Zotlabs/Lib/ThreadItem.php:226 msgid "Toggle Star Status" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:229 +#: ../../Zotlabs/Lib/ThreadItem.php:230 msgid "starred" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:239 ../../include/conversation.php:670 +#: ../../Zotlabs/Lib/ThreadItem.php:240 ../../include/conversation.php:668 msgid "Message signature validated" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:240 ../../include/conversation.php:671 +#: ../../Zotlabs/Lib/ThreadItem.php:241 ../../include/conversation.php:669 msgid "Message signature incorrect" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:248 +#: ../../Zotlabs/Lib/ThreadItem.php:249 msgid "Add Tag" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:268 ../../include/taxonomy.php:316 +#: ../../Zotlabs/Lib/ThreadItem.php:269 ../../include/taxonomy.php:316 msgid "like" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:269 ../../include/taxonomy.php:317 +#: ../../Zotlabs/Lib/ThreadItem.php:270 ../../include/taxonomy.php:317 msgid "dislike" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:273 +#: ../../Zotlabs/Lib/ThreadItem.php:274 msgid "Share This" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:273 +#: ../../Zotlabs/Lib/ThreadItem.php:274 msgid "share" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:282 +#: ../../Zotlabs/Lib/ThreadItem.php:283 msgid "Delivery Report" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:300 +#: ../../Zotlabs/Lib/ThreadItem.php:301 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "" msgstr[1] "" -#: ../../Zotlabs/Lib/ThreadItem.php:329 ../../Zotlabs/Lib/ThreadItem.php:330 +#: ../../Zotlabs/Lib/ThreadItem.php:330 ../../Zotlabs/Lib/ThreadItem.php:331 #, php-format msgid "View %s's profile - %s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:333 +#: ../../Zotlabs/Lib/ThreadItem.php:334 msgid "to" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:334 +#: ../../Zotlabs/Lib/ThreadItem.php:335 msgid "via" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:335 +#: ../../Zotlabs/Lib/ThreadItem.php:336 msgid "Wall-to-Wall" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:336 +#: ../../Zotlabs/Lib/ThreadItem.php:337 msgid "via Wall-To-Wall:" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:350 ../../include/conversation.php:717 +#: ../../Zotlabs/Lib/ThreadItem.php:350 ../../include/conversation.php:718 #, php-format msgid "from %s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:353 ../../include/conversation.php:720 +#: ../../Zotlabs/Lib/ThreadItem.php:353 ../../include/conversation.php:721 #, php-format msgid "last edited: %s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:354 ../../include/conversation.php:721 +#: ../../Zotlabs/Lib/ThreadItem.php:354 ../../include/conversation.php:722 #, php-format msgid "Expires: %s" msgstr "" @@ -7633,3389 +7671,3075 @@ msgstr "" msgid "Voting Options" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:383 -#: ../../extend/addon/addon/bookmarker/bookmarker.php:38 +#: ../../Zotlabs/Lib/ThreadItem.php:384 +#: ../../addon/bookmarker/bookmarker.php:38 msgid "Save Bookmarks" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:384 +#: ../../Zotlabs/Lib/ThreadItem.php:385 msgid "Add to Calendar" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:393 +#: ../../Zotlabs/Lib/ThreadItem.php:394 msgid "Mark all seen" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:442 ../../include/js_strings.php:7 +#: ../../Zotlabs/Lib/ThreadItem.php:443 ../../include/js_strings.php:7 #, php-format msgid "%s show all" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:732 ../../include/conversation.php:1385 +#: ../../Zotlabs/Lib/ThreadItem.php:733 ../../include/conversation.php:1318 msgid "Bold" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:733 ../../include/conversation.php:1386 +#: ../../Zotlabs/Lib/ThreadItem.php:734 ../../include/conversation.php:1319 msgid "Italic" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:734 ../../include/conversation.php:1387 +#: ../../Zotlabs/Lib/ThreadItem.php:735 ../../include/conversation.php:1320 msgid "Underline" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:735 ../../include/conversation.php:1388 +#: ../../Zotlabs/Lib/ThreadItem.php:736 ../../include/conversation.php:1321 msgid "Quote" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:736 ../../include/conversation.php:1389 +#: ../../Zotlabs/Lib/ThreadItem.php:737 ../../include/conversation.php:1322 msgid "Code" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:737 +#: ../../Zotlabs/Lib/ThreadItem.php:738 msgid "Image" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:738 +#: ../../Zotlabs/Lib/ThreadItem.php:739 msgid "Insert Link" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:739 +#: ../../Zotlabs/Lib/ThreadItem.php:740 msgid "Video" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:212 -msgid "Site Admin" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:213 -#: ../../extend/addon/addon/buglink/buglink.php:16 -msgid "Report Bug" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:214 -msgid "View Bookmarks" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:215 -msgid "My Chatrooms" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:217 -msgid "Firefox Share" -msgstr "" - -#: ../../Zotlabs/Lib/Apps.php:218 -msgid "Remote Diagnostics" +#: ../../Zotlabs/Zot/Auth.php:138 +msgid "" +"Remote authentication blocked. You are logged into this site locally. Please " +"logout and retry." msgstr "" -#: ../../Zotlabs/Lib/Apps.php:219 ../../include/features.php:337 -msgid "Suggest Channels" +#: ../../Zotlabs/Zot/Auth.php:250 ../../addon/openid/Mod_Openid.php:76 +#: ../../addon/openid/Mod_Openid.php:178 +#, php-format +msgid "Welcome %s. Remote authentication successful." msgstr "" -#: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:130 -#: ../../boot.php:1732 -msgid "Login" +#: ../../Zotlabs/Storage/Browser.php:106 ../../Zotlabs/Storage/Browser.php:237 +msgid "parent" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:222 ../../include/nav.php:194 -msgid "Grid" +#: ../../Zotlabs/Storage/Browser.php:130 ../../include/text.php:2679 +msgid "Collection" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/conversation.php:1903 -#: ../../include/features.php:99 -msgid "Wiki" +#: ../../Zotlabs/Storage/Browser.php:133 +msgid "Principal" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:227 ../../include/nav.php:198 -msgid "Channel Home" +#: ../../Zotlabs/Storage/Browser.php:136 +msgid "Addressbook" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/conversation.php:1853 -#: ../../include/conversation.php:1856 ../../include/nav.php:218 -msgid "Events" +#: ../../Zotlabs/Storage/Browser.php:139 +msgid "Calendar" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:231 ../../include/nav.php:182 -msgid "Directory" +#: ../../Zotlabs/Storage/Browser.php:142 +msgid "Schedule Inbox" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:233 ../../include/nav.php:210 -msgid "Mail" +#: ../../Zotlabs/Storage/Browser.php:145 +msgid "Schedule Outbox" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:236 -msgid "Chat" +#: ../../Zotlabs/Storage/Browser.php:225 +msgid "Total" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:238 -msgid "Probe" +#: ../../Zotlabs/Storage/Browser.php:227 +msgid "Shared" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:239 -msgid "Suggest" +#: ../../Zotlabs/Storage/Browser.php:301 +#, php-format +msgid "You are using %1$s of your available file storage." msgstr "" -#: ../../Zotlabs/Lib/Apps.php:240 -msgid "Random Channel" +#: ../../Zotlabs/Storage/Browser.php:306 +#, php-format +msgid "You are using %1$s of %2$s available file storage. (%3$s%)" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:241 -msgid "Invite" +#: ../../Zotlabs/Storage/Browser.php:317 +msgid "WARNING:" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:242 ../../include/widgets.php:1595 -msgid "Features" +#: ../../Zotlabs/Storage/Browser.php:327 +msgid "" +"Please use DAV to upload large (video, audio) files.<br>See <a class=\"zrl\" " +"href=\"help/member/member_guide#Cloud_Desktop_Clients\">Cloud Desktop " +"Clients</a>" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:243 -#: ../../extend/addon/addon/openid/MysqlProvider.php:69 -msgid "Language" +#: ../../Zotlabs/Storage/Browser.php:331 +msgid "Create new folder" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:244 -msgid "Post" +#: ../../Zotlabs/Storage/Browser.php:333 +msgid "Upload file" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:245 -#: ../../extend/addon/addon/openid/MysqlProvider.php:58 -#: ../../extend/addon/addon/openid/MysqlProvider.php:59 -#: ../../extend/addon/addon/openid/MysqlProvider.php:60 -msgid "Profile Photo" +#: ../../Zotlabs/Storage/Browser.php:347 +msgid "Drop files here to immediately upload" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:355 -msgid "Purchase" +#: ../../Zotlabs/Widget/Forums.php:85 +msgid "Forums" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:359 -msgid "Undelete" +#: ../../Zotlabs/Widget/Appcategories.php:39 +#: ../../Zotlabs/Widget/Tagcloud.php:25 ../../include/contact_widgets.php:91 +#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 +msgid "Categories" msgstr "" -#: ../../Zotlabs/Lib/NativeWiki.php:126 -msgid "Wiki files deleted successfully" +#: ../../Zotlabs/Widget/Appcategories.php:42 ../../Zotlabs/Widget/Filer.php:31 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" msgstr "" -#: ../../Zotlabs/Lib/Permcat.php:58 -msgctxt "permcat" -msgid "default" +#: ../../Zotlabs/Widget/Eventstools.php:13 +msgid "Events Tools" msgstr "" -#: ../../Zotlabs/Lib/Permcat.php:96 -msgctxt "permcat" -msgid "follower" +#: ../../Zotlabs/Widget/Eventstools.php:14 +msgid "Export Calendar" msgstr "" -#: ../../Zotlabs/Lib/Permcat.php:100 -msgctxt "permcat" -msgid "contributor" +#: ../../Zotlabs/Widget/Eventstools.php:15 +msgid "Import Calendar" msgstr "" -#: ../../Zotlabs/Lib/Permcat.php:104 -msgctxt "permcat" -msgid "publisher" +#: ../../Zotlabs/Widget/Suggestedchats.php:32 +msgid "Suggested Chatrooms" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:31 -#: ../../Zotlabs/Lib/NativeWikiPage.php:62 -msgid "(No Title)" +#: ../../Zotlabs/Widget/Mailmenu.php:13 +msgid "Private Mail Menu" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:76 -msgid "Wiki page create failed." +#: ../../Zotlabs/Widget/Mailmenu.php:15 +msgid "Combined View" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:89 -msgid "Wiki not found." +#: ../../Zotlabs/Widget/Mailmenu.php:20 ../../include/nav.php:195 +msgid "Inbox" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:100 -msgid "Destination name already exists" +#: ../../Zotlabs/Widget/Mailmenu.php:25 ../../include/nav.php:196 +msgid "Outbox" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:126 -#: ../../Zotlabs/Lib/NativeWikiPage.php:345 -msgid "Page not found" +#: ../../Zotlabs/Widget/Mailmenu.php:30 ../../include/nav.php:197 +msgid "New Message" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:156 -msgid "Error reading page content" +#: ../../Zotlabs/Widget/Chatroom_list.php:16 +#: ../../include/conversation.php:1816 ../../include/conversation.php:1819 +#: ../../include/nav.php:425 ../../include/nav.php:428 +msgid "Chatrooms" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:338 -#: ../../Zotlabs/Lib/NativeWikiPage.php:383 -#: ../../Zotlabs/Lib/NativeWikiPage.php:450 -#: ../../Zotlabs/Lib/NativeWikiPage.php:491 -msgid "Error reading wiki" +#: ../../Zotlabs/Widget/Chatroom_list.php:20 +msgid "Overview" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:371 -msgid "Page update failed." +#: ../../Zotlabs/Widget/Rating.php:51 +msgid "Rating Tools" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:405 -msgid "Nothing deleted" +#: ../../Zotlabs/Widget/Rating.php:55 ../../Zotlabs/Widget/Rating.php:57 +msgid "Rate Me" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:471 -msgid "Compare: object not found." +#: ../../Zotlabs/Widget/Rating.php:60 +msgid "View Ratings" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:477 -msgid "Page updated" +#: ../../Zotlabs/Widget/Activity.php:50 +msgctxt "widget" +msgid "Activity" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:480 -msgid "Untitled" +#: ../../Zotlabs/Widget/Follow.php:22 +#, php-format +msgid "You have %1$.0f of %2$.0f allowed connections." msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:486 -msgid "Wiki resource_id required for git commit" +#: ../../Zotlabs/Widget/Follow.php:29 +msgid "Add New Connection" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:557 -#: ../../extend/addon/addon/gitwiki/gitwiki_backend.php:579 -#: ../../include/bbcode.php:610 ../../include/bbcode.php:756 -msgid "Different viewers will see this text differently" +#: ../../Zotlabs/Widget/Follow.php:30 +msgid "Enter channel address" msgstr "" -#: ../../extend/addon/addon/adultphotoflag/adultphotoflag.php:24 -msgid "Flag Adult Photos" +#: ../../Zotlabs/Widget/Follow.php:31 +msgid "Examples: bob@example.com, https://example.com/barbara" msgstr "" -#: ../../extend/addon/addon/adultphotoflag/adultphotoflag.php:25 -msgid "" -"Provide photo edit option to hide inappropriate photos from default album " -"view" +#: ../../Zotlabs/Widget/Wiki_list.php:15 ../../addon/gitwiki/gitwiki.php:95 +msgid "Wiki List" msgstr "" -#: ../../extend/addon/addon/chords/Mod_Chords.php:44 -msgid "" -"This is a fairly comprehensive and complete guitar chord dictionary which " -"will list most of the available ways to play a certain chord, starting from " -"the base of the fingerboard up to a few frets beyond the twelfth fret " -"(beyond which everything repeats). A couple of non-standard tunings are " -"provided for the benefit of slide players, etc." +#: ../../Zotlabs/Widget/Archive.php:43 +msgid "Archives" msgstr "" -#: ../../extend/addon/addon/chords/Mod_Chords.php:46 -msgid "" -"Chord names start with a root note (A-G) and may include sharps (#) and " -"flats (b). This software will parse most of the standard naming conventions " -"such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements." +#: ../../Zotlabs/Widget/Conversations.php:17 +#: ../../Zotlabs/Widget/Conversations.php:29 +msgid "Conversations" msgstr "" -#: ../../extend/addon/addon/chords/Mod_Chords.php:48 -msgid "" -"Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, " -"E7b13b11 ..." +#: ../../Zotlabs/Widget/Conversations.php:21 +msgid "Received Messages" msgstr "" -#: ../../extend/addon/addon/chords/Mod_Chords.php:51 -msgid "Guitar Chords" +#: ../../Zotlabs/Widget/Conversations.php:25 +msgid "Sent Messages" msgstr "" -#: ../../extend/addon/addon/chords/Mod_Chords.php:52 -msgid "The complete online chord dictionary" +#: ../../Zotlabs/Widget/Conversations.php:39 +msgid "No messages." msgstr "" -#: ../../extend/addon/addon/chords/Mod_Chords.php:57 -msgid "Tuning" +#: ../../Zotlabs/Widget/Conversations.php:57 +msgid "Delete conversation" msgstr "" -#: ../../extend/addon/addon/chords/Mod_Chords.php:58 -msgid "Chord name: example: Em7" +#: ../../Zotlabs/Widget/Chatroom_members.php:11 +msgid "Chat Members" msgstr "" -#: ../../extend/addon/addon/chords/Mod_Chords.php:59 -msgid "Show for left handed stringing" +#: ../../Zotlabs/Widget/Photo.php:48 ../../Zotlabs/Widget/Photo_rand.php:58 +msgid "photo/image" msgstr "" -#: ../../extend/addon/addon/chords/chords.php:33 -msgid "Quick Reference" +#: ../../Zotlabs/Widget/Savedsearch.php:75 +msgid "Remove term" msgstr "" -#: ../../extend/addon/addon/diaspora/import_diaspora.php:16 -msgid "No username found in import file." +#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:301 +msgid "Saved Searches" msgstr "" -#: ../../extend/addon/addon/diaspora/import_diaspora.php:41 -#: ../../include/import.php:51 -msgid "Unable to create a unique channel address. Import failed." +#: ../../Zotlabs/Widget/Savedsearch.php:84 ../../include/group.php:336 +msgid "add" msgstr "" -#: ../../extend/addon/addon/diaspora/diaspora.php:677 -msgid "Diaspora Protocol Settings updated." +#: ../../Zotlabs/Widget/Notes.php:16 +msgid "Notes" msgstr "" -#: ../../extend/addon/addon/diaspora/diaspora.php:696 -msgid "Enable the Diaspora protocol for this channel" +#: ../../Zotlabs/Widget/Wiki_pages.php:54 ../../addon/gitwiki/gitwiki.php:76 +msgid "Wiki Pages" msgstr "" -#: ../../extend/addon/addon/diaspora/diaspora.php:700 -msgid "Allow any Diaspora member to comment on your public posts" +#: ../../Zotlabs/Widget/Wiki_pages.php:60 ../../addon/gitwiki/gitwiki.php:81 +msgid "Add new page" msgstr "" -#: ../../extend/addon/addon/diaspora/diaspora.php:704 -msgid "Prevent your hashtags from being redirected to other sites" +#: ../../Zotlabs/Widget/Wiki_pages.php:61 ../../addon/gitwiki/gitwiki.php:82 +msgid "Page name" msgstr "" -#: ../../extend/addon/addon/diaspora/diaspora.php:709 -msgid "Followed hashtags (comma separated, do not include the #)" +#: ../../Zotlabs/Widget/Affinity.php:49 +msgid "Refresh" msgstr "" -#: ../../extend/addon/addon/diaspora/diaspora.php:714 -msgid "Diaspora Protocol Settings" +#: ../../Zotlabs/Widget/Tasklist.php:23 +msgid "Tasks" msgstr "" -#: ../../extend/addon/addon/dirstats/dirstats.php:94 -msgid "Hubzilla Directory Stats" +#: ../../Zotlabs/Widget/Suggestions.php:51 +msgid "Suggestions" msgstr "" -#: ../../extend/addon/addon/dirstats/dirstats.php:95 -msgid "Total Hubs" +#: ../../Zotlabs/Widget/Suggestions.php:52 +msgid "See more..." msgstr "" -#: ../../extend/addon/addon/dirstats/dirstats.php:97 -msgid "Hubzilla Hubs" +#: ../../Zotlabs/Widget/Filer.php:28 ../../include/contact_widgets.php:53 +#: ../../include/features.php:390 +msgid "Saved Folders" msgstr "" -#: ../../extend/addon/addon/dirstats/dirstats.php:99 -msgid "Friendica Hubs" +#: ../../Zotlabs/Widget/Cover_photo.php:54 +msgid "Click to show more" msgstr "" -#: ../../extend/addon/addon/dirstats/dirstats.php:101 -msgid "Diaspora Pods" +#: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 +msgid "Member registrations waiting for confirmation" msgstr "" -#: ../../extend/addon/addon/dirstats/dirstats.php:103 -msgid "Hubzilla Channels" +#: ../../Zotlabs/Widget/Admin.php:29 +msgid "Inspect queue" msgstr "" -#: ../../extend/addon/addon/dirstats/dirstats.php:105 -msgid "Friendica Channels" +#: ../../Zotlabs/Widget/Admin.php:31 +msgid "DB updates" msgstr "" -#: ../../extend/addon/addon/dirstats/dirstats.php:107 -msgid "Diaspora Channels" +#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:215 +msgid "Admin" msgstr "" -#: ../../extend/addon/addon/dirstats/dirstats.php:109 -msgid "Aged 35 and above" +#: ../../Zotlabs/Widget/Admin.php:56 +msgid "Plugin Features" msgstr "" -#: ../../extend/addon/addon/dirstats/dirstats.php:111 -msgid "Aged 34 and under" +#: ../../Zotlabs/Widget/Settings_menu.php:35 +msgid "Account settings" msgstr "" -#: ../../extend/addon/addon/dirstats/dirstats.php:113 -msgid "Average Age" +#: ../../Zotlabs/Widget/Settings_menu.php:41 +msgid "Channel settings" msgstr "" -#: ../../extend/addon/addon/dirstats/dirstats.php:115 -msgid "Known Chatrooms" +#: ../../Zotlabs/Widget/Settings_menu.php:50 +msgid "Additional features" msgstr "" -#: ../../extend/addon/addon/dirstats/dirstats.php:117 -msgid "Known Tags" +#: ../../Zotlabs/Widget/Settings_menu.php:57 +msgid "Feature/Addon settings" msgstr "" -#: ../../extend/addon/addon/dirstats/dirstats.php:119 -msgid "" -"Please note Diaspora and Friendica statistics are merely those **this " -"directory** is aware of, and not all those known in the network. This also " -"applies to chatrooms," +#: ../../Zotlabs/Widget/Settings_menu.php:63 +msgid "Display settings" msgstr "" -#: ../../extend/addon/addon/donate/donate.php:21 -msgid "Project Servers and Resources" +#: ../../Zotlabs/Widget/Settings_menu.php:70 +msgid "Manage locations" msgstr "" -#: ../../extend/addon/addon/donate/donate.php:22 -msgid "Project Creator and Tech Lead" +#: ../../Zotlabs/Widget/Settings_menu.php:77 +msgid "Export channel" msgstr "" -#: ../../extend/addon/addon/donate/donate.php:23 -msgid "Admin, developer, directorymin, support bloke" +#: ../../Zotlabs/Widget/Settings_menu.php:83 +msgid "Connected apps" msgstr "" -#: ../../extend/addon/addon/donate/donate.php:50 -msgid "" -"And the hundreds of other people and organisations who helped make the " -"Hubzilla possible." +#: ../../Zotlabs/Widget/Settings_menu.php:98 ../../include/features.php:153 +msgid "Permission Groups" msgstr "" -#: ../../extend/addon/addon/donate/donate.php:53 -msgid "" -"The Redmatrix/Hubzilla projects are provided primarily by volunteers giving " -"their time and expertise - and often paying out of pocket for services they " -"share with others." +#: ../../Zotlabs/Widget/Settings_menu.php:115 +msgid "Premium Channel Settings" msgstr "" -#: ../../extend/addon/addon/donate/donate.php:54 -msgid "" -"There is no corporate funding and no ads, and we do not collect and sell " -"your personal information. (We don't control your personal information - " -"<strong>you do</strong>.)" +#: ../../Zotlabs/Widget/Bookmarkedchats.php:24 +msgid "Bookmarked Chatrooms" msgstr "" -#: ../../extend/addon/addon/donate/donate.php:55 -msgid "" -"Help support our ground-breaking work in decentralisation, web identity, and " -"privacy." +#: ../../util/nconfig.php:34 +msgid "Source channel not found." msgstr "" -#: ../../extend/addon/addon/donate/donate.php:57 -msgid "" -"Your donations keep servers and services running and also helps us to " -"provide innovative new features and continued development." +#: ../../boot.php:1162 ../../addon/opensearch/opensearch.php:26 +#, php-format +msgctxt "opensearch" +msgid "Search %1$s (%2$s)" msgstr "" -#: ../../extend/addon/addon/donate/donate.php:60 -msgid "Donate" +#: ../../boot.php:1162 ../../addon/opensearch/opensearch.php:28 +msgctxt "opensearch" +msgid "$Projectname" msgstr "" -#: ../../extend/addon/addon/donate/donate.php:62 -msgid "" -"Choose a project, developer, or public hub to support with a one-time " -"donation" +#: ../../boot.php:1609 +msgid "Create an account to access services and applications" msgstr "" -#: ../../extend/addon/addon/donate/donate.php:63 -msgid "Donate Now" +#: ../../boot.php:1628 ../../include/nav.php:103 ../../include/nav.php:127 +msgid "Logout" msgstr "" -#: ../../extend/addon/addon/donate/donate.php:64 -msgid "" -"<strong><em>Or</em></strong> become a project sponsor (Hubzilla Project only)" +#: ../../boot.php:1631 +msgid "Login/Email" msgstr "" -#: ../../extend/addon/addon/donate/donate.php:65 -msgid "" -"Please indicate if you would like your first name or full name (or nothing) " -"to appear in our sponsor listing" +#: ../../boot.php:1632 +msgid "Password" msgstr "" -#: ../../extend/addon/addon/donate/donate.php:66 -msgid "Sponsor" +#: ../../boot.php:1633 +msgid "Remember me" msgstr "" -#: ../../extend/addon/addon/donate/donate.php:69 -msgid "Special thanks to: " +#: ../../boot.php:1636 +msgid "Forgot your password?" msgstr "" -#: ../../extend/addon/addon/dwpost/dwpost.php:42 -msgid "Post to Dreamwidth" +#: ../../boot.php:2174 +msgid "toggle mobile" msgstr "" -#: ../../extend/addon/addon/dwpost/dwpost.php:73 -msgid "Enable Dreamwidth Post Plugin" +#: ../../boot.php:2327 +#, php-format +msgid "[$Projectname] Website SSL error for %s" msgstr "" -#: ../../extend/addon/addon/dwpost/dwpost.php:77 -msgid "Dreamwidth username" +#: ../../boot.php:2332 +msgid "Website SSL certificate is not valid. Please correct." msgstr "" -#: ../../extend/addon/addon/dwpost/dwpost.php:81 -msgid "Dreamwidth password" +#: ../../boot.php:2450 +#, php-format +msgid "[$Projectname] Cron tasks not running on %s" msgstr "" -#: ../../extend/addon/addon/dwpost/dwpost.php:85 -msgid "Post to Dreamwidth by default" +#: ../../boot.php:2455 +msgid "Cron/Scheduled tasks not running." msgstr "" -#: ../../extend/addon/addon/dwpost/dwpost.php:89 -msgid "Dreamwidth Post Settings" +#: ../../boot.php:2456 ../../include/datetime.php:286 +msgid "never" msgstr "" -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:45 -msgid "Flattr this!" +#: ../../view/theme/redbasic/php/config.php:9 +msgid "Focus (Hubzilla default)" msgstr "" -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:83 -msgid "Flattr widget settings updated." +#: ../../view/theme/redbasic/php/config.php:88 +msgid "Theme settings" msgstr "" -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:100 -msgid "Flattr user" +#: ../../view/theme/redbasic/php/config.php:89 +msgid "Narrow navbar" msgstr "" -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:104 -msgid "URL of the Thing to flattr" +#: ../../view/theme/redbasic/php/config.php:90 +msgid "Navigation bar background color" msgstr "" -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:104 -msgid "If empty channel URL is used" +#: ../../view/theme/redbasic/php/config.php:91 +msgid "Navigation bar icon color " msgstr "" -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:108 -msgid "Title of the Thing to flattr" +#: ../../view/theme/redbasic/php/config.php:92 +msgid "Navigation bar active icon color " msgstr "" -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:108 -msgid "If empty \"channel name on The Hubzilla\" will be used" +#: ../../view/theme/redbasic/php/config.php:93 +msgid "Link color" msgstr "" -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:112 -msgid "Static or dynamic flattr button" +#: ../../view/theme/redbasic/php/config.php:94 +msgid "Set font-color for banner" msgstr "" -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:112 -msgid "static" +#: ../../view/theme/redbasic/php/config.php:95 +msgid "Set the background color" msgstr "" -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:112 -msgid "dynamic" +#: ../../view/theme/redbasic/php/config.php:96 +msgid "Set the background image" msgstr "" -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:116 -msgid "Alignment of the widget" +#: ../../view/theme/redbasic/php/config.php:97 +msgid "Set the background color of items" msgstr "" -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:116 -msgid "left" +#: ../../view/theme/redbasic/php/config.php:98 +msgid "Set the background color of comments" msgstr "" -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:116 -msgid "right" +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Set font-size for the entire application" msgstr "" -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:120 -msgid "Enable Flattr widget" +#: ../../view/theme/redbasic/php/config.php:99 +msgid "Examples: 1rem, 100%, 16px" msgstr "" -#: ../../extend/addon/addon/flattrwidget/flattrwidget.php:124 -msgid "Flattr Widget Settings" +#: ../../view/theme/redbasic/php/config.php:100 +msgid "Set font-color for posts and comments" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_confirm.php:118 -msgid "Contact not found." +#: ../../view/theme/redbasic/php/config.php:101 +msgid "Set radius of corners" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_confirm.php:119 -msgid "" -"This may occasionally happen if contact was requested by both persons and it " -"has already been approved." +#: ../../view/theme/redbasic/php/config.php:101 +msgid "Example: 4px" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_confirm.php:238 -msgid "Response from remote site was not understood." +#: ../../view/theme/redbasic/php/config.php:102 +msgid "Set shadow depth of photos" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_confirm.php:247 -#: ../../extend/addon/addon/friendica/dfrn_confirm.php:252 -msgid "Unexpected response from remote site: " +#: ../../view/theme/redbasic/php/config.php:103 +msgid "Set maximum width of content region in pixel" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_confirm.php:261 -msgid "Confirmation completed successfully." +#: ../../view/theme/redbasic/php/config.php:103 +msgid "Leave empty for default width" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_confirm.php:263 -#: ../../extend/addon/addon/friendica/dfrn_confirm.php:277 -#: ../../extend/addon/addon/friendica/dfrn_confirm.php:284 -msgid "Remote site reported: " +#: ../../view/theme/redbasic/php/config.php:104 +msgid "Left align page content" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_confirm.php:275 -msgid "Temporary failure. Please wait and try again." +#: ../../view/theme/redbasic/php/config.php:105 +msgid "Set size of conversation author photo" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_confirm.php:282 -msgid "Introduction failed or was revoked." +#: ../../view/theme/redbasic/php/config.php:106 +msgid "Set size of followup author photos" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_confirm.php:428 -msgid "Unable to set contact photo." +#: ../../addon/rendezvous/rendezvous.php:57 +msgid "Errors encountered deleting database table " msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_confirm.php:485 -#, php-format -msgid "%1$s is now friends with %2$s" +#: ../../addon/rendezvous/rendezvous.php:95 ../../addon/twitter/twitter.php:773 +msgid "Submit Settings" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_confirm.php:570 -#, php-format -msgid "No user record found for '%s' " +#: ../../addon/rendezvous/rendezvous.php:96 +msgid "Drop tables when uninstalling?" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_confirm.php:580 -msgid "Our site encryption key is apparently messed up." +#: ../../addon/rendezvous/rendezvous.php:96 +msgid "" +"If checked, the Rendezvous database tables will be deleted when the plugin " +"is uninstalled." msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_confirm.php:591 -msgid "Empty site URL was provided or URL could not be decrypted by us." +#: ../../addon/rendezvous/rendezvous.php:97 +msgid "Mapbox Access Token" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_confirm.php:612 -msgid "Contact record was not found for you on our site." +#: ../../addon/rendezvous/rendezvous.php:97 +msgid "" +"If you enter a Mapbox access token, it will be used to retrieve map tiles " +"from Mapbox instead of the default OpenStreetMap tile server." msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_confirm.php:626 -#, php-format -msgid "Site public key not available in contact record for URL %s." +#: ../../addon/rendezvous/rendezvous.php:162 +msgid "Rendezvous" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_confirm.php:646 +#: ../../addon/rendezvous/rendezvous.php:167 msgid "" -"The ID provided by your system is a duplicate on our system. It should work " -"if you try again." +"This identity has been deleted by another member due to inactivity. Please " +"press the \"New identity\" button or refresh the page to register a new " +"identity. You may use the same name." msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_confirm.php:657 -msgid "Unable to set your contact credentials on our system." +#: ../../addon/rendezvous/rendezvous.php:168 +msgid "Welcome to Rendezvous!" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_confirm.php:724 -msgid "Unable to update your contact profile details on our system" +#: ../../addon/rendezvous/rendezvous.php:169 +msgid "" +"Enter your name to join this rendezvous. To begin sharing your location with " +"the other members, tap the GPS control. When your location is discovered, a " +"red dot will appear and others will be able to see you on the map." msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_confirm.php:751 -#: ../../extend/addon/addon/friendica/dfrn_request.php:749 -msgid "[Name Withheld]" +#: ../../addon/rendezvous/rendezvous.php:171 +msgid "Let's meet here" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_confirm.php:796 -#, php-format -msgid "%1$s has joined %2$s" +#: ../../addon/rendezvous/rendezvous.php:174 +msgid "New marker" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_poll.php:103 -#: ../../extend/addon/addon/friendica/dfrn_poll.php:536 -#, php-format -msgid "%1$s welcomes %2$s" +#: ../../addon/rendezvous/rendezvous.php:175 +msgid "Edit marker" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:102 -msgid "This introduction has already been accepted." +#: ../../addon/rendezvous/rendezvous.php:176 +msgid "New identity" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:123 -#: ../../extend/addon/addon/friendica/dfrn_request.php:528 -msgid "Profile location is not valid or does not contain profile information." +#: ../../addon/rendezvous/rendezvous.php:177 +msgid "Delete marker" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:128 -#: ../../extend/addon/addon/friendica/dfrn_request.php:533 -msgid "Warning: profile location has no identifiable owner name." +#: ../../addon/rendezvous/rendezvous.php:178 +msgid "Delete member" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:130 -#: ../../extend/addon/addon/friendica/dfrn_request.php:535 -msgid "Warning: profile location has no profile photo." +#: ../../addon/rendezvous/rendezvous.php:179 +msgid "Edit proximity alert" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:133 -#: ../../extend/addon/addon/friendica/dfrn_request.php:538 -#, php-format -msgid "%d required parameter was not found at the given location" -msgid_plural "%d required parameters were not found at the given location" -msgstr[0] "" -msgstr[1] "" - -#: ../../extend/addon/addon/friendica/dfrn_request.php:180 -msgid "Introduction complete." +#: ../../addon/rendezvous/rendezvous.php:180 +msgid "" +"A proximity alert will be issued when this member is within a certain radius " +"of you.<br><br>Enter a radius in meters (0 to disable):" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:224 -msgid "Unrecoverable protocol error." +#: ../../addon/rendezvous/rendezvous.php:180 +#: ../../addon/rendezvous/rendezvous.php:185 +msgid "distance" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:252 -msgid "Profile unavailable." +#: ../../addon/rendezvous/rendezvous.php:181 +msgid "Proximity alert distance (meters)" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:277 -#, php-format -msgid "%s has received too many connection requests today." +#: ../../addon/rendezvous/rendezvous.php:182 +#: ../../addon/rendezvous/rendezvous.php:184 +msgid "" +"A proximity alert will be issued when you are within a certain radius of the " +"marker location.<br><br>Enter a radius in meters (0 to disable):" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:278 -msgid "Spam protection measures have been invoked." +#: ../../addon/rendezvous/rendezvous.php:183 +msgid "Marker proximity alert" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:279 -msgid "Friends are advised to please try again in 24 hours." +#: ../../addon/rendezvous/rendezvous.php:186 +msgid "Reminder note" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:341 -msgid "Invalid locator" +#: ../../addon/rendezvous/rendezvous.php:187 +msgid "" +"Enter a note to be displayed when you are within the specified proximity..." msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:350 -msgid "Invalid email address." +#: ../../addon/rendezvous/rendezvous.php:199 +msgid "Add new rendezvous" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:377 -msgid "This account has not been configured for email. Request failed." +#: ../../addon/rendezvous/rendezvous.php:200 +msgid "" +"Create a new rendezvous and share the access link with those you wish to " +"invite to the group. Those who open the link become members of the " +"rendezvous. They can view other member locations, add markers to the map, or " +"share their own locations with the group." msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:473 -msgid "Unable to resolve your name at the provided location." +#: ../../addon/skeleton/skeleton.php:59 +msgid "Some setting" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:486 -msgid "You have already introduced yourself here." +#: ../../addon/skeleton/skeleton.php:61 +msgid "A setting" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:490 -#, php-format -msgid "Apparently you are already friends with %s." +#: ../../addon/skeleton/skeleton.php:64 +msgid "Skeleton Settings" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:511 -msgid "Invalid profile URL." +#: ../../addon/gnusoc/gnusoc.php:119 +msgid "GNU-Social Protocol Settings updated." msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:517 -msgid "Disallowed profile URL." +#: ../../addon/gnusoc/gnusoc.php:130 +msgid "Enable the GNU-Social protocol for this channel" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:587 -msgid "Failed to update contact record." +#: ../../addon/gnusoc/gnusoc.php:134 +msgid "GNU-Social Protocol Settings" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:608 -msgid "Your introduction has been sent." +#: ../../addon/gnusoc/gnusoc.php:324 +msgid "Follow" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:662 -msgid "Please login to confirm introduction." +#: ../../addon/gnusoc/gnusoc.php:327 +#, php-format +msgid "%1$s is now following %2$s" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:676 -msgid "" -"Incorrect identity currently logged in. Please login to <strong>this</" -"strong> profile." +#: ../../addon/cdav/Mod_Cdav.php:744 +msgid "INVALID EVENT DISMISSED!" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:690 -#: ../../extend/addon/addon/friendica/dfrn_request.php:707 -msgid "Confirm" +#: ../../addon/cdav/Mod_Cdav.php:745 +msgid "Summary: " msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:702 -msgid "Hide this contact" +#: ../../addon/cdav/Mod_Cdav.php:746 +msgid "Date: " msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:705 -#, php-format -msgid "Welcome home %s." +#: ../../addon/cdav/Mod_Cdav.php:747 ../../addon/cdav/Mod_Cdav.php:754 +msgid "Reason: " msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:706 -#, php-format -msgid "Please confirm your introduction/connection request to %s." +#: ../../addon/cdav/Mod_Cdav.php:752 +msgid "INVALID CARD DISMISSED!" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:836 -msgid "" -"Please enter your 'Identity Address' from one of the following supported " -"communications networks:" +#: ../../addon/cdav/Mod_Cdav.php:753 +msgid "Name: " msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:857 -#, php-format +#: ../../addon/cdav/Mod_Cdav.php:770 msgid "" -"If you are not yet a member of the free social web, <a href=\"%s/siteinfo" -"\">follow this link to find a public Friendica site and join us today</a>." +"You have to enable this plugin in Feature/Addon Settings > CalDAV/CardDAV " +"Settings before you can use it." msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:862 -msgid "Friend/Connection Request" +#: ../../addon/cdav/Mod_Cdav.php:836 ../../addon/cdav/Mod_Cdav.php:837 +msgid "Example: YYYY-MM-DD HH:mm" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:863 -msgid "" -"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, " -"testuser@identi.ca" +#: ../../addon/cdav/Mod_Cdav.php:837 +msgid "End date and time" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:864 -msgid "Please answer the following:" +#: ../../addon/cdav/Mod_Cdav.php:852 +msgid "List month" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:865 -#, php-format -msgid "Does %s know you?" +#: ../../addon/cdav/Mod_Cdav.php:853 +msgid "List week" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:869 -msgid "Add a personal note:" +#: ../../addon/cdav/Mod_Cdav.php:854 +msgid "List day" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:871 -#: ../../include/network.php:2242 ../../include/network.php:2243 -msgid "Friendica" +#: ../../addon/cdav/Mod_Cdav.php:861 +msgid "More" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:872 -msgid "StatusNet/Federated Social Web" +#: ../../addon/cdav/Mod_Cdav.php:862 +msgid "Less" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:873 -#: ../../include/network.php:2248 -msgid "Diaspora" +#: ../../addon/cdav/Mod_Cdav.php:863 +msgid "Select calendar" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:874 -#, php-format -msgid "" -" - please do not use this form. Instead, enter %s into your Diaspora search " -"bar." +#: ../../addon/cdav/Mod_Cdav.php:865 +msgid "Delete all" msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:875 -msgid "Your Identity Address:" +#: ../../addon/cdav/Mod_Cdav.php:867 +msgid "Sorry! Editing of recurrent events is not yet implemented." msgstr "" -#: ../../extend/addon/addon/friendica/dfrn_request.php:878 -msgid "Submit Request" +#: ../../addon/cdav/cdav.php:36 +msgid "Errors encountered creating database table: " msgstr "" -#: ../../extend/addon/addon/friendica/friendica.php:113 -#: ../../extend/addon/addon/gnusoc/gnusoc.php:118 -msgid "GNU-Social Protocol Settings updated." +#: ../../addon/cdav/cdav.php:197 +msgid "Default Calendar" msgstr "" -#: ../../extend/addon/addon/friendica/friendica.php:124 -msgid "Enable the (experimental) GNU-Social protocol for this channel" +#: ../../addon/cdav/cdav.php:206 +msgid "Default Addressbook" msgstr "" -#: ../../extend/addon/addon/friendica/friendica.php:128 -#: ../../extend/addon/addon/gnusoc/gnusoc.php:133 -msgid "GNU-Social Protocol Settings" +#: ../../addon/cdav/cdav.php:215 +msgid "CalDAV/CardDAV Settings saved." msgstr "" -#: ../../extend/addon/addon/friendica/friendica.php:185 -#: ../../extend/addon/addon/gnusoc/gnusoc.php:323 -msgid "Follow" +#: ../../addon/cdav/cdav.php:234 +msgid "Enable CalDAV/CardDAV Server for this channel" msgstr "" -#: ../../extend/addon/addon/friendica/friendica.php:188 -#: ../../extend/addon/addon/gnusoc/gnusoc.php:326 +#: ../../addon/cdav/cdav.php:237 #, php-format -msgid "%1$s is now following %2$s" -msgstr "" - -#: ../../extend/addon/addon/frphotos/frphotos.php:91 -msgid "Friendica Photo Album Import" -msgstr "" - -#: ../../extend/addon/addon/frphotos/frphotos.php:92 -msgid "This will import all your Friendica photo albums to this Red channel." -msgstr "" - -#: ../../extend/addon/addon/frphotos/frphotos.php:93 -msgid "Friendica Server base URL" -msgstr "" - -#: ../../extend/addon/addon/frphotos/frphotos.php:94 -msgid "Friendica Login Username" -msgstr "" - -#: ../../extend/addon/addon/frphotos/frphotos.php:95 -msgid "Friendica Login Password" -msgstr "" - -#: ../../extend/addon/addon/hubwall/hubwall.php:19 -msgid "Send email to all members" +msgid "Your CalDAV resources are located at %s " msgstr "" -#: ../../extend/addon/addon/hubwall/hubwall.php:33 +#: ../../addon/cdav/cdav.php:240 #, php-format -msgid "$1%s Administrator" -msgstr "" - -#: ../../extend/addon/addon/hubwall/hubwall.php:50 -#: ../../extend/addon/addon/mailtest/mailtest.php:50 -msgid "No recipients found." +msgid "Your CardDAV resources are located at %s " msgstr "" -#: ../../extend/addon/addon/hubwall/hubwall.php:73 -#, php-format -msgid "%1$d of %2$d messages sent." +#: ../../addon/cdav/cdav.php:246 +msgid "CalDAV/CardDAV Settings" msgstr "" -#: ../../extend/addon/addon/hubwall/hubwall.php:81 -msgid "Send email to all hub members." +#: ../../addon/cdav/cdav.php:272 ../../include/connections.php:670 +msgid "Home, Voice" msgstr "" -#: ../../extend/addon/addon/hubwall/hubwall.php:92 -#: ../../extend/addon/addon/mailtest/mailtest.php:96 -msgid "Message subject" +#: ../../addon/cdav/cdav.php:273 ../../include/connections.php:671 +msgid "Home, Fax" msgstr "" -#: ../../extend/addon/addon/hubwall/hubwall.php:93 -msgid "Sender Email address" +#: ../../addon/cdav/cdav.php:275 ../../include/connections.php:673 +msgid "Work, Voice" msgstr "" -#: ../../extend/addon/addon/hubwall/hubwall.php:94 -msgid "Test mode (only send to hub administrator)" +#: ../../addon/cdav/cdav.php:276 ../../include/connections.php:674 +msgid "Work, Fax" msgstr "" -#: ../../extend/addon/addon/ijpost/ijpost.php:42 -msgid "Post to Insanejournal" +#: ../../addon/cdav/include/widgets.php:37 +msgid "Select Channel" msgstr "" -#: ../../extend/addon/addon/ijpost/ijpost.php:73 -msgid "Enable InsaneJournal Post Plugin" +#: ../../addon/cdav/include/widgets.php:42 +msgid "Read-write" msgstr "" -#: ../../extend/addon/addon/ijpost/ijpost.php:77 -msgid "InsaneJournal username" +#: ../../addon/cdav/include/widgets.php:43 +msgid "Read-only" msgstr "" -#: ../../extend/addon/addon/ijpost/ijpost.php:81 -msgid "InsaneJournal password" +#: ../../addon/cdav/include/widgets.php:116 +msgid "My Calendars" msgstr "" -#: ../../extend/addon/addon/ijpost/ijpost.php:85 -msgid "Post to InsaneJournal by default" +#: ../../addon/cdav/include/widgets.php:118 +msgid "Shared Calendars" msgstr "" -#: ../../extend/addon/addon/ijpost/ijpost.php:89 -msgid "InsaneJournal Post Settings" +#: ../../addon/cdav/include/widgets.php:122 +msgid "Share this calendar" msgstr "" -#: ../../extend/addon/addon/ijpost/ijpost.php:104 -msgid "Insane Journal Settings saved." +#: ../../addon/cdav/include/widgets.php:124 +msgid "Calendar name and color" msgstr "" -#: ../../extend/addon/addon/irc/irc.php:45 -msgid "Channels to auto connect" +#: ../../addon/cdav/include/widgets.php:126 +msgid "Create new calendar" msgstr "" -#: ../../extend/addon/addon/irc/irc.php:45 -#: ../../extend/addon/addon/irc/irc.php:49 -msgid "Comma separated list" +#: ../../addon/cdav/include/widgets.php:128 +msgid "Calendar Name" msgstr "" -#: ../../extend/addon/addon/irc/irc.php:49 -#: ../../extend/addon/addon/irc/irc.php:96 -msgid "Popular Channels" +#: ../../addon/cdav/include/widgets.php:129 +msgid "Calendar Tools" msgstr "" -#: ../../extend/addon/addon/irc/irc.php:53 -msgid "IRC Settings" +#: ../../addon/cdav/include/widgets.php:130 +msgid "Import calendar" msgstr "" -#: ../../extend/addon/addon/irc/irc.php:69 -msgid "IRC settings saved." +#: ../../addon/cdav/include/widgets.php:131 +msgid "Select a calendar to import to" msgstr "" -#: ../../extend/addon/addon/irc/irc.php:74 -msgid "IRC Chatroom" +#: ../../addon/cdav/include/widgets.php:158 +msgid "Addressbooks" msgstr "" -#: ../../extend/addon/addon/jappixmini/jappixmini.php:305 -#: ../../include/channel.php:1139 ../../include/channel.php:1301 -msgid "Status:" +#: ../../addon/cdav/include/widgets.php:160 +msgid "Addressbook name" msgstr "" -#: ../../extend/addon/addon/jappixmini/jappixmini.php:309 -msgid "Activate addon" +#: ../../addon/cdav/include/widgets.php:162 +msgid "Create new addressbook" msgstr "" -#: ../../extend/addon/addon/jappixmini/jappixmini.php:313 -msgid "Hide Jappixmini Chat-Widget from the webinterface" +#: ../../addon/cdav/include/widgets.php:163 +msgid "Addressbook Name" msgstr "" -#: ../../extend/addon/addon/jappixmini/jappixmini.php:318 -msgid "Jabber username" +#: ../../addon/cdav/include/widgets.php:165 +msgid "Addressbook Tools" msgstr "" -#: ../../extend/addon/addon/jappixmini/jappixmini.php:324 -msgid "Jabber server" +#: ../../addon/cdav/include/widgets.php:166 +msgid "Import addressbook" msgstr "" -#: ../../extend/addon/addon/jappixmini/jappixmini.php:330 -msgid "Jabber BOSH host URL" +#: ../../addon/cdav/include/widgets.php:167 +msgid "Select an addressbook to import to" msgstr "" -#: ../../extend/addon/addon/jappixmini/jappixmini.php:337 -msgid "Jabber password" +#: ../../addon/planets/planets.php:121 +msgid "Planets Settings updated." msgstr "" -#: ../../extend/addon/addon/jappixmini/jappixmini.php:343 -msgid "Encrypt Jabber password with Hubzilla password" +#: ../../addon/planets/planets.php:153 +msgid "Enable Planets Plugin" msgstr "" -#: ../../extend/addon/addon/jappixmini/jappixmini.php:347 -#: ../../extend/addon/addon/redred/redred.php:115 -msgid "Hubzilla password" +#: ../../addon/planets/planets.php:157 +msgid "Planets Settings" msgstr "" -#: ../../extend/addon/addon/jappixmini/jappixmini.php:351 -#: ../../extend/addon/addon/jappixmini/jappixmini.php:355 -msgid "Approve subscription requests from Hubzilla contacts automatically" +#: ../../addon/openclipatar/openclipatar.php:50 +#: ../../addon/openclipatar/openclipatar.php:128 +msgid "System defaults:" msgstr "" -#: ../../extend/addon/addon/jappixmini/jappixmini.php:359 -msgid "Purge internal list of jabber addresses of contacts" +#: ../../addon/openclipatar/openclipatar.php:54 +msgid "Preferred Clipart IDs" msgstr "" -#: ../../extend/addon/addon/jappixmini/jappixmini.php:364 -msgid "Configuration Help" +#: ../../addon/openclipatar/openclipatar.php:54 +msgid "List of preferred clipart ids. These will be shown first." msgstr "" -#: ../../extend/addon/addon/jappixmini/jappixmini.php:371 -msgid "Jappix Mini Settings" +#: ../../addon/openclipatar/openclipatar.php:55 +msgid "Default Search Term" msgstr "" -#: ../../extend/addon/addon/js_upload/js_upload.php:44 -msgid "Upload a file" +#: ../../addon/openclipatar/openclipatar.php:55 +msgid "The default search term. These will be shown second." msgstr "" -#: ../../extend/addon/addon/js_upload/js_upload.php:45 -msgid "Drop files here to upload" +#: ../../addon/openclipatar/openclipatar.php:56 +msgid "Return After" msgstr "" -#: ../../extend/addon/addon/js_upload/js_upload.php:47 -msgid "Failed" +#: ../../addon/openclipatar/openclipatar.php:56 +msgid "Page to load after image selection." msgstr "" -#: ../../extend/addon/addon/js_upload/js_upload.php:315 -msgid "No files were uploaded." +#: ../../addon/openclipatar/openclipatar.php:58 ../../include/channel.php:1048 +#: ../../include/nav.php:111 +msgid "Edit Profile" msgstr "" -#: ../../extend/addon/addon/js_upload/js_upload.php:322 -msgid "Uploaded file is empty" +#: ../../addon/openclipatar/openclipatar.php:59 +msgid "Profile List" msgstr "" -#: ../../extend/addon/addon/js_upload/js_upload.php:335 -msgid "Image exceeds size limit of " +#: ../../addon/openclipatar/openclipatar.php:61 +msgid "Order of Preferred" msgstr "" -#: ../../extend/addon/addon/js_upload/js_upload.php:347 -msgid "File has an invalid extension, it should be one of " +#: ../../addon/openclipatar/openclipatar.php:61 +msgid "Sort order of preferred clipart ids." msgstr "" -#: ../../extend/addon/addon/js_upload/js_upload.php:359 -msgid "Upload was cancelled, or server error encountered" +#: ../../addon/openclipatar/openclipatar.php:62 +#: ../../addon/openclipatar/openclipatar.php:68 +msgid "Newest first" msgstr "" -#: ../../extend/addon/addon/ldapauth/ldapauth.php:61 -msgid "An account has been created for you." +#: ../../addon/openclipatar/openclipatar.php:65 +msgid "As entered" msgstr "" -#: ../../extend/addon/addon/ldapauth/ldapauth.php:68 -msgid "Authentication successful but rejected: account creation is disabled." +#: ../../addon/openclipatar/openclipatar.php:67 +msgid "Order of other" msgstr "" -#: ../../extend/addon/addon/libertree/libertree.php:38 -msgid "Post to Libertree" +#: ../../addon/openclipatar/openclipatar.php:67 +msgid "Sort order of other clipart ids." msgstr "" -#: ../../extend/addon/addon/libertree/libertree.php:69 -msgid "Enable Libertree Post Plugin" +#: ../../addon/openclipatar/openclipatar.php:69 +msgid "Most downloaded first" msgstr "" -#: ../../extend/addon/addon/libertree/libertree.php:73 -msgid "Libertree API token" +#: ../../addon/openclipatar/openclipatar.php:70 +msgid "Most liked first" msgstr "" -#: ../../extend/addon/addon/libertree/libertree.php:77 -msgid "Libertree site URL" +#: ../../addon/openclipatar/openclipatar.php:72 +msgid "Preferred IDs Message" msgstr "" -#: ../../extend/addon/addon/libertree/libertree.php:81 -msgid "Post to Libertree by default" +#: ../../addon/openclipatar/openclipatar.php:72 +msgid "Message to display above preferred results." msgstr "" -#: ../../extend/addon/addon/libertree/libertree.php:85 -msgid "Libertree Post Settings" +#: ../../addon/openclipatar/openclipatar.php:78 +msgid "Uploaded by: " msgstr "" -#: ../../extend/addon/addon/libertree/libertree.php:99 -msgid "Libertree Settings saved." +#: ../../addon/openclipatar/openclipatar.php:78 +msgid "Drawn by: " msgstr "" -#: ../../extend/addon/addon/ljpost/ljpost.php:42 -msgid "Post to LiveJournal" +#: ../../addon/openclipatar/openclipatar.php:192 +msgid "Or select from a free OpenClipart.org image:" msgstr "" -#: ../../extend/addon/addon/ljpost/ljpost.php:70 -msgid "Enable LiveJournal Post Plugin" +#: ../../addon/openclipatar/openclipatar.php:195 +msgid "Search Term" msgstr "" -#: ../../extend/addon/addon/ljpost/ljpost.php:74 -msgid "LiveJournal username" +#: ../../addon/openclipatar/openclipatar.php:232 +msgid "Unknown error. Please try again later." msgstr "" -#: ../../extend/addon/addon/ljpost/ljpost.php:78 -msgid "LiveJournal password" +#: ../../addon/openclipatar/openclipatar.php:308 +msgid "Profile photo updated successfully." msgstr "" -#: ../../extend/addon/addon/ljpost/ljpost.php:82 -msgid "Post to LiveJournal by default" +#: ../../addon/adultphotoflag/adultphotoflag.php:24 +msgid "Flag Adult Photos" msgstr "" -#: ../../extend/addon/addon/ljpost/ljpost.php:86 -msgid "LiveJournal Post Settings" +#: ../../addon/adultphotoflag/adultphotoflag.php:25 +msgid "" +"Provide photo edit option to hide inappropriate photos from default album " +"view" msgstr "" -#: ../../extend/addon/addon/ljpost/ljpost.php:101 -msgid "LiveJournal Settings saved." +#: ../../addon/wppost/wppost.php:45 +msgid "Post to WordPress" msgstr "" -#: ../../extend/addon/addon/logrot/logrot.php:36 -msgid "Logfile archive directory" +#: ../../addon/wppost/wppost.php:82 +msgid "Enable WordPress Post Plugin" msgstr "" -#: ../../extend/addon/addon/logrot/logrot.php:36 -msgid "Directory to store rotated logs" +#: ../../addon/wppost/wppost.php:86 +msgid "WordPress username" msgstr "" -#: ../../extend/addon/addon/logrot/logrot.php:37 -msgid "Logfile size in bytes before rotating" +#: ../../addon/wppost/wppost.php:90 +msgid "WordPress password" msgstr "" -#: ../../extend/addon/addon/logrot/logrot.php:38 -msgid "Number of logfiles to retain" +#: ../../addon/wppost/wppost.php:94 +msgid "WordPress API URL" msgstr "" -#: ../../extend/addon/addon/mailhost/mailhost.php:36 -msgid "Email notification hub" +#: ../../addon/wppost/wppost.php:95 +msgid "Typically https://your-blog.tld/xmlrpc.php" msgstr "" -#: ../../extend/addon/addon/mailhost/mailhost.php:36 -msgid "Hostname" +#: ../../addon/wppost/wppost.php:98 +msgid "WordPress blogid" msgstr "" -#: ../../extend/addon/addon/mailhost/mailhost.php:40 -msgid "Mailhost Settings" +#: ../../addon/wppost/wppost.php:99 +msgid "For multi-user sites such as wordpress.com, otherwise leave blank" msgstr "" -#: ../../extend/addon/addon/mailhost/mailhost.php:54 -msgid "MAILHOST Settings saved." +#: ../../addon/wppost/wppost.php:105 +msgid "Post to WordPress by default" msgstr "" -#: ../../extend/addon/addon/moremoods/moremoods.php:19 -msgid "lonely" +#: ../../addon/wppost/wppost.php:109 +msgid "Forward comments (requires hubzilla_wp plugin)" msgstr "" -#: ../../extend/addon/addon/moremoods/moremoods.php:20 -msgid "drunk" +#: ../../addon/wppost/wppost.php:113 +msgid "WordPress Post Settings" msgstr "" -#: ../../extend/addon/addon/moremoods/moremoods.php:21 -msgid "horny" +#: ../../addon/wppost/wppost.php:129 +msgid "Wordpress Settings saved." msgstr "" -#: ../../extend/addon/addon/moremoods/moremoods.php:22 -msgid "stoned" +#: ../../addon/nsfw/nsfw.php:80 +msgid "" +"This plugin looks in posts for the words/text you specify below, and " +"collapses any content containing those keywords so it is not displayed at " +"inappropriate times, such as sexual innuendo that may be improper in a work " +"setting. It is polite and recommended to tag any content containing nudity " +"with #NSFW. This filter can also match any other word/text you specify, and " +"can thereby be used as a general purpose content filter." msgstr "" -#: ../../extend/addon/addon/moremoods/moremoods.php:23 -msgid "fucked up" +#: ../../addon/nsfw/nsfw.php:84 +msgid "Enable Content filter" msgstr "" -#: ../../extend/addon/addon/moremoods/moremoods.php:24 -msgid "clusterfucked" +#: ../../addon/nsfw/nsfw.php:88 +msgid "Comma separated list of keywords to hide" msgstr "" -#: ../../extend/addon/addon/moremoods/moremoods.php:25 -msgid "crazy" +#: ../../addon/nsfw/nsfw.php:88 +msgid "Word, /regular-expression/, lang=xx, lang!=xx" msgstr "" -#: ../../extend/addon/addon/moremoods/moremoods.php:26 -msgid "hurt" +#: ../../addon/nsfw/nsfw.php:92 +msgid "Not Safe For Work Settings" msgstr "" -#: ../../extend/addon/addon/moremoods/moremoods.php:27 -msgid "sleepy" +#: ../../addon/nsfw/nsfw.php:92 +msgid "General Purpose Content Filter" msgstr "" -#: ../../extend/addon/addon/moremoods/moremoods.php:28 -msgid "grumpy" +#: ../../addon/nsfw/nsfw.php:110 +msgid "NSFW Settings saved." msgstr "" -#: ../../extend/addon/addon/moremoods/moremoods.php:29 -msgid "high" +#: ../../addon/nsfw/nsfw.php:207 +msgid "Possible adult content" msgstr "" -#: ../../extend/addon/addon/moremoods/moremoods.php:30 -msgid "semi-conscious" +#: ../../addon/nsfw/nsfw.php:211 +#, php-format +msgid "%s - view" msgstr "" -#: ../../extend/addon/addon/moremoods/moremoods.php:31 -msgid "in love" +#: ../../addon/ijpost/ijpost.php:42 +msgid "Post to Insanejournal" msgstr "" -#: ../../extend/addon/addon/moremoods/moremoods.php:32 -msgid "in lust" +#: ../../addon/ijpost/ijpost.php:73 +msgid "Enable InsaneJournal Post Plugin" msgstr "" -#: ../../extend/addon/addon/moremoods/moremoods.php:33 -msgid "naked" +#: ../../addon/ijpost/ijpost.php:77 +msgid "InsaneJournal username" msgstr "" -#: ../../extend/addon/addon/moremoods/moremoods.php:34 -msgid "stinky" +#: ../../addon/ijpost/ijpost.php:81 +msgid "InsaneJournal password" msgstr "" -#: ../../extend/addon/addon/moremoods/moremoods.php:35 -msgid "sweaty" +#: ../../addon/ijpost/ijpost.php:85 +msgid "Post to InsaneJournal by default" msgstr "" -#: ../../extend/addon/addon/moremoods/moremoods.php:36 -msgid "bleeding out" +#: ../../addon/ijpost/ijpost.php:89 +msgid "InsaneJournal Post Settings" msgstr "" -#: ../../extend/addon/addon/moremoods/moremoods.php:37 -msgid "victorious" +#: ../../addon/ijpost/ijpost.php:104 +msgid "Insane Journal Settings saved." msgstr "" -#: ../../extend/addon/addon/moremoods/moremoods.php:38 -msgid "defeated" +#: ../../addon/js_upload/js_upload.php:44 +msgid "Upload a file" msgstr "" -#: ../../extend/addon/addon/moremoods/moremoods.php:39 -msgid "envious" +#: ../../addon/js_upload/js_upload.php:45 +msgid "Drop files here to upload" msgstr "" -#: ../../extend/addon/addon/moremoods/moremoods.php:40 -msgid "jealous" +#: ../../addon/js_upload/js_upload.php:47 +msgid "Failed" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:19 -msgid "bitchslap" +#: ../../addon/js_upload/js_upload.php:315 +msgid "No files were uploaded." msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:19 -msgid "bitchslapped" +#: ../../addon/js_upload/js_upload.php:322 +msgid "Uploaded file is empty" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:20 -msgid "shag" +#: ../../addon/js_upload/js_upload.php:335 +msgid "Image exceeds size limit of " msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:20 -msgid "shagged" +#: ../../addon/js_upload/js_upload.php:347 +msgid "File has an invalid extension, it should be one of " msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:21 -msgid "patent" +#: ../../addon/js_upload/js_upload.php:359 +msgid "Upload was cancelled, or server error encountered" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:21 -msgid "patented" +#: ../../addon/dwpost/dwpost.php:42 +msgid "Post to Dreamwidth" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:22 -msgid "hug" +#: ../../addon/dwpost/dwpost.php:73 +msgid "Enable Dreamwidth Post Plugin" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:22 -msgid "hugged" +#: ../../addon/dwpost/dwpost.php:77 +msgid "Dreamwidth username" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:23 -msgid "murder" +#: ../../addon/dwpost/dwpost.php:81 +msgid "Dreamwidth password" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:23 -msgid "murdered" +#: ../../addon/dwpost/dwpost.php:85 +msgid "Post to Dreamwidth by default" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:24 -msgid "worship" +#: ../../addon/dwpost/dwpost.php:89 +msgid "Dreamwidth Post Settings" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:24 -msgid "worshipped" +#: ../../addon/firefox/firefox.php:23 +msgid "Install Firefox Sharing Tools" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:25 -msgid "kiss" +#: ../../addon/firefox/firefox.php:34 +msgid "Share content from Firefox to $Projectname" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:25 -msgid "kissed" +#: ../../addon/firefox/firefox.php:37 +msgid "Install Firefox Sharing Tools to this web browser" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:26 -msgid "tempt" +#: ../../addon/dirstats/dirstats.php:94 +msgid "Hubzilla Directory Stats" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:26 -msgid "tempted" +#: ../../addon/dirstats/dirstats.php:95 +msgid "Total Hubs" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:27 -msgid "raise eyebrows at" +#: ../../addon/dirstats/dirstats.php:97 +msgid "Hubzilla Hubs" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:27 -msgid "raised their eyebrows at" +#: ../../addon/dirstats/dirstats.php:99 +msgid "Friendica Hubs" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:28 -msgid "insult" +#: ../../addon/dirstats/dirstats.php:101 +msgid "Diaspora Pods" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:28 -msgid "insulted" +#: ../../addon/dirstats/dirstats.php:103 +msgid "Hubzilla Channels" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:29 -msgid "praise" +#: ../../addon/dirstats/dirstats.php:105 +msgid "Friendica Channels" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:29 -msgid "praised" +#: ../../addon/dirstats/dirstats.php:107 +msgid "Diaspora Channels" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:30 -msgid "be dubious of" +#: ../../addon/dirstats/dirstats.php:109 +msgid "Aged 35 and above" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:30 -msgid "was dubious of" +#: ../../addon/dirstats/dirstats.php:111 +msgid "Aged 34 and under" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:31 -msgid "eat" +#: ../../addon/dirstats/dirstats.php:113 +msgid "Average Age" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:31 -msgid "ate" +#: ../../addon/dirstats/dirstats.php:115 +msgid "Known Chatrooms" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:32 -msgid "giggle and fawn at" +#: ../../addon/dirstats/dirstats.php:117 +msgid "Known Tags" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:32 -msgid "giggled and fawned at" +#: ../../addon/dirstats/dirstats.php:119 +msgid "" +"Please note Diaspora and Friendica statistics are merely those **this " +"directory** is aware of, and not all those known in the network. This also " +"applies to chatrooms," msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:33 -msgid "doubt" +#: ../../addon/mailhost/mailhost.php:36 +msgid "Email notification hub" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:33 -msgid "doubted" +#: ../../addon/mailhost/mailhost.php:36 +msgid "Hostname" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:34 -msgid "glare" +#: ../../addon/mailhost/mailhost.php:40 +msgid "Mailhost Settings" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:34 -msgid "glared at" +#: ../../addon/mailhost/mailhost.php:54 +msgid "MAILHOST Settings saved." msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:35 -msgid "fuck" +#: ../../addon/likebanner/likebanner.php:51 +msgid "Your Webbie:" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:35 -msgid "fucked" +#: ../../addon/likebanner/likebanner.php:54 +msgid "Fontsize (px):" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:36 -msgid "bonk" +#: ../../addon/likebanner/likebanner.php:68 +msgid "Link:" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:36 -msgid "bonked" +#: ../../addon/likebanner/likebanner.php:70 +msgid "Like us on Hubzilla" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:37 -msgid "declare undying love for" +#: ../../addon/likebanner/likebanner.php:72 +msgid "Embed:" msgstr "" -#: ../../extend/addon/addon/morepokes/morepokes.php:37 -msgid "declared undying love for" +#: ../../addon/redphotos/redphotos.php:106 +msgid "Photos imported" msgstr "" -#: ../../extend/addon/addon/msgfooter/msgfooter.php:46 -#: ../../extend/addon/addon/xmpp/xmpp.php:91 -msgid "Save Settings" +#: ../../addon/redphotos/redphotos.php:129 +msgid "Redmatrix Photo Album Import" msgstr "" -#: ../../extend/addon/addon/msgfooter/msgfooter.php:47 -msgid "text to include in all outgoing posts from this site" +#: ../../addon/redphotos/redphotos.php:130 +msgid "This will import all your Redmatrix photo albums to this channel." msgstr "" -#: ../../extend/addon/addon/nofed/nofed.php:42 -msgid "Federate" +#: ../../addon/redphotos/redphotos.php:131 +#: ../../addon/redfiles/redfiles.php:121 +msgid "Redmatrix Server base URL" msgstr "" -#: ../../extend/addon/addon/nofed/nofed.php:56 -msgid "nofed Settings saved." +#: ../../addon/redphotos/redphotos.php:132 +#: ../../addon/redfiles/redfiles.php:122 +msgid "Redmatrix Login Username" msgstr "" -#: ../../extend/addon/addon/nofed/nofed.php:72 -msgid "Allow Federation Toggle" +#: ../../addon/redphotos/redphotos.php:133 +#: ../../addon/redfiles/redfiles.php:123 +msgid "Redmatrix Login Password" msgstr "" -#: ../../extend/addon/addon/nofed/nofed.php:76 -msgid "Federate posts by default" +#: ../../addon/redphotos/redphotos.php:134 +msgid "Import just this album" msgstr "" -#: ../../extend/addon/addon/nofed/nofed.php:80 -msgid "NoFed Settings" +#: ../../addon/redphotos/redphotos.php:134 +msgid "Leave blank to import all albums" msgstr "" -#: ../../extend/addon/addon/nsabait/nsabait.php:125 -msgid "Nsabait Settings updated." +#: ../../addon/redphotos/redphotos.php:135 +msgid "Maximum count to import" msgstr "" -#: ../../extend/addon/addon/nsabait/nsabait.php:157 -msgid "Enable NSAbait Plugin" +#: ../../addon/redphotos/redphotos.php:135 +msgid "0 or blank to import all available" msgstr "" -#: ../../extend/addon/addon/nsabait/nsabait.php:161 -msgid "NSAbait Settings" +#: ../../addon/irc/irc.php:45 +msgid "Channels to auto connect" msgstr "" -#: ../../extend/addon/addon/nsfw/nsfw.php:80 -msgid "" -"This plugin looks in posts for the words/text you specify below, and " -"collapses any content containing those keywords so it is not displayed at " -"inappropriate times, such as sexual innuendo that may be improper in a work " -"setting. It is polite and recommended to tag any content containing nudity " -"with #NSFW. This filter can also match any other word/text you specify, and " -"can thereby be used as a general purpose content filter." +#: ../../addon/irc/irc.php:45 ../../addon/irc/irc.php:49 +msgid "Comma separated list" msgstr "" -#: ../../extend/addon/addon/nsfw/nsfw.php:84 -msgid "Enable Content filter" +#: ../../addon/irc/irc.php:49 ../../addon/irc/irc.php:96 +msgid "Popular Channels" msgstr "" -#: ../../extend/addon/addon/nsfw/nsfw.php:88 -msgid "Comma separated list of keywords to hide" +#: ../../addon/irc/irc.php:53 +msgid "IRC Settings" msgstr "" -#: ../../extend/addon/addon/nsfw/nsfw.php:88 -msgid "Word, /regular-expression/, lang=xx, lang!=xx" +#: ../../addon/irc/irc.php:69 +msgid "IRC settings saved." msgstr "" -#: ../../extend/addon/addon/nsfw/nsfw.php:92 -msgid "Not Safe For Work Settings" +#: ../../addon/irc/irc.php:74 +msgid "IRC Chatroom" msgstr "" -#: ../../extend/addon/addon/nsfw/nsfw.php:92 -msgid "General Purpose Content Filter" +#: ../../addon/ljpost/ljpost.php:42 +msgid "Post to LiveJournal" msgstr "" -#: ../../extend/addon/addon/nsfw/nsfw.php:110 -msgid "NSFW Settings saved." +#: ../../addon/ljpost/ljpost.php:70 +msgid "Enable LiveJournal Post Plugin" msgstr "" -#: ../../extend/addon/addon/nsfw/nsfw.php:207 -msgid "Possible adult content" +#: ../../addon/ljpost/ljpost.php:74 +msgid "LiveJournal username" msgstr "" -#: ../../extend/addon/addon/nsfw/nsfw.php:211 -#, php-format -msgid "%s - view" +#: ../../addon/ljpost/ljpost.php:78 +msgid "LiveJournal password" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:50 -#: ../../extend/addon/addon/openclipatar/openclipatar.php:128 -msgid "System defaults:" +#: ../../addon/ljpost/ljpost.php:82 +msgid "Post to LiveJournal by default" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:54 -msgid "Preferred Clipart IDs" +#: ../../addon/ljpost/ljpost.php:86 +msgid "LiveJournal Post Settings" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:54 -msgid "List of preferred clipart ids. These will be shown first." +#: ../../addon/ljpost/ljpost.php:101 +msgid "LiveJournal Settings saved." msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:55 -msgid "Default Search Term" +#: ../../addon/openid/openid.php:49 +msgid "" +"We encountered a problem while logging in with the OpenID you provided. " +"Please check the correct spelling of the ID." msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:55 -msgid "The default search term. These will be shown second." +#: ../../addon/openid/openid.php:49 +msgid "The error message was:" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:56 -msgid "Return After" +#: ../../addon/openid/MysqlProvider.php:52 +msgid "First Name" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:56 -msgid "Page to load after image selection." +#: ../../addon/openid/MysqlProvider.php:53 +msgid "Last Name" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:58 -#: ../../include/channel.php:1048 ../../include/nav.php:107 -msgid "Edit Profile" +#: ../../addon/openid/MysqlProvider.php:54 ../../addon/redred/redred.php:111 +msgid "Nickname" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:59 -msgid "Profile List" +#: ../../addon/openid/MysqlProvider.php:55 +msgid "Full Name" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:61 -msgid "Order of Preferred" +#: ../../addon/openid/MysqlProvider.php:61 +msgid "Profile Photo 16px" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:61 -msgid "Sort order of preferred clipart ids." +#: ../../addon/openid/MysqlProvider.php:62 +msgid "Profile Photo 32px" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:62 -#: ../../extend/addon/addon/openclipatar/openclipatar.php:68 -msgid "Newest first" +#: ../../addon/openid/MysqlProvider.php:63 +msgid "Profile Photo 48px" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:65 -msgid "As entered" +#: ../../addon/openid/MysqlProvider.php:64 +msgid "Profile Photo 64px" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:67 -msgid "Order of other" +#: ../../addon/openid/MysqlProvider.php:65 +msgid "Profile Photo 80px" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:67 -msgid "Sort order of other clipart ids." +#: ../../addon/openid/MysqlProvider.php:66 +msgid "Profile Photo 128px" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:69 -msgid "Most downloaded first" +#: ../../addon/openid/MysqlProvider.php:67 +msgid "Timezone" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:70 -msgid "Most liked first" +#: ../../addon/openid/MysqlProvider.php:70 +msgid "Birth Year" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:72 -msgid "Preferred IDs Message" +#: ../../addon/openid/MysqlProvider.php:71 +msgid "Birth Month" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:72 -msgid "Message to display above preferred results." +#: ../../addon/openid/MysqlProvider.php:72 +msgid "Birth Day" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:78 -msgid "Uploaded by: " +#: ../../addon/openid/MysqlProvider.php:73 +msgid "Birthdate" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:78 -msgid "Drawn by: " +#: ../../addon/openid/Mod_Openid.php:30 +msgid "OpenID protocol error. No ID returned." msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:192 -msgid "Or select from a free OpenClipart.org image:" +#: ../../addon/openid/Mod_Openid.php:188 ../../include/auth.php:286 +msgid "Login failed." msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:195 -msgid "Search Term" +#: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Male" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:232 -msgid "Unknown error. Please try again later." +#: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:49 +#: ../../include/selectors.php:66 +msgid "Female" msgstr "" -#: ../../extend/addon/addon/openclipatar/openclipatar.php:305 -msgid "Profile photo updated successfully." +#: ../../addon/randpost/randpost.php:97 +msgid "You're welcome." msgstr "" -#: ../../extend/addon/addon/openstreetmap/openstreetmap.php:146 -msgid "View Larger" +#: ../../addon/randpost/randpost.php:98 +msgid "Ah shucks..." msgstr "" -#: ../../extend/addon/addon/openstreetmap/openstreetmap.php:169 -msgid "Tile Server URL" +#: ../../addon/randpost/randpost.php:99 +msgid "Don't mention it." msgstr "" -#: ../../extend/addon/addon/openstreetmap/openstreetmap.php:169 -msgid "" -"A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank" -"\">public tile servers</a>" +#: ../../addon/randpost/randpost.php:100 +msgid "<blush>" msgstr "" -#: ../../extend/addon/addon/openstreetmap/openstreetmap.php:170 -msgid "Nominatim (reverse geocoding) Server URL" +#: ../../addon/startpage/startpage.php:109 +msgid "Page to load after login" msgstr "" -#: ../../extend/addon/addon/openstreetmap/openstreetmap.php:170 +#: ../../addon/startpage/startpage.php:109 msgid "" -"A list of <a href=\"http://wiki.openstreetmap.org/wiki/Nominatim\" target=" -"\"_blank\">Nominatim servers</a>" -msgstr "" - -#: ../../extend/addon/addon/openstreetmap/openstreetmap.php:171 -msgid "Default zoom" +"Examples: "apps", "network?f=&gid=37" (privacy " +"collection), "channel" or "notifications/system" (leave " +"blank for default network page (grid)." msgstr "" -#: ../../extend/addon/addon/openstreetmap/openstreetmap.php:171 -msgid "" -"The default zoom level. (1:world, 18:highest, also depends on tile server)" +#: ../../addon/startpage/startpage.php:113 +msgid "Startpage Settings" msgstr "" -#: ../../extend/addon/addon/openstreetmap/openstreetmap.php:172 -msgid "Include marker on map" +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslap" msgstr "" -#: ../../extend/addon/addon/openstreetmap/openstreetmap.php:172 -msgid "Include a marker on the map." +#: ../../addon/morepokes/morepokes.php:19 +msgid "bitchslapped" msgstr "" -#: ../../extend/addon/addon/pageheader/pageheader.php:43 -msgid "Message to display on every page on this server" +#: ../../addon/morepokes/morepokes.php:20 +msgid "shag" msgstr "" -#: ../../extend/addon/addon/pageheader/pageheader.php:48 -msgid "Pageheader Settings" +#: ../../addon/morepokes/morepokes.php:20 +msgid "shagged" msgstr "" -#: ../../extend/addon/addon/pageheader/pageheader.php:64 -msgid "pageheader Settings saved." +#: ../../addon/morepokes/morepokes.php:21 +msgid "patent" msgstr "" -#: ../../extend/addon/addon/piwik/piwik.php:85 -msgid "" -"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> " -"analytics tool." +#: ../../addon/morepokes/morepokes.php:21 +msgid "patented" msgstr "" -#: ../../extend/addon/addon/piwik/piwik.php:88 -#, php-format -msgid "" -"If you do not want that your visits are logged this way you <a href='%s'>can " -"set a cookie to prevent Piwik from tracking further visits of the site</a> " -"(opt-out)." +#: ../../addon/morepokes/morepokes.php:22 +msgid "hug" msgstr "" -#: ../../extend/addon/addon/piwik/piwik.php:96 -msgid "Piwik Base URL" +#: ../../addon/morepokes/morepokes.php:22 +msgid "hugged" msgstr "" -#: ../../extend/addon/addon/piwik/piwik.php:96 -msgid "" -"Absolute path to your Piwik installation. (without protocol (http/s), with " -"trailing slash)" +#: ../../addon/morepokes/morepokes.php:23 +msgid "murder" msgstr "" -#: ../../extend/addon/addon/piwik/piwik.php:97 -msgid "Site ID" +#: ../../addon/morepokes/morepokes.php:23 +msgid "murdered" msgstr "" -#: ../../extend/addon/addon/piwik/piwik.php:98 -msgid "Show opt-out cookie link?" +#: ../../addon/morepokes/morepokes.php:24 +msgid "worship" msgstr "" -#: ../../extend/addon/addon/piwik/piwik.php:99 -msgid "Asynchronous tracking" +#: ../../addon/morepokes/morepokes.php:24 +msgid "worshipped" msgstr "" -#: ../../extend/addon/addon/piwik/piwik.php:100 -msgid "Enable frontend JavaScript error tracking" +#: ../../addon/morepokes/morepokes.php:25 +msgid "kiss" msgstr "" -#: ../../extend/addon/addon/piwik/piwik.php:100 -msgid "This feature requires Piwik >= 2.2.0" +#: ../../addon/morepokes/morepokes.php:25 +msgid "kissed" msgstr "" -#: ../../extend/addon/addon/planets/planets.php:121 -msgid "Planets Settings updated." +#: ../../addon/morepokes/morepokes.php:26 +msgid "tempt" msgstr "" -#: ../../extend/addon/addon/planets/planets.php:153 -msgid "Enable Planets Plugin" +#: ../../addon/morepokes/morepokes.php:26 +msgid "tempted" msgstr "" -#: ../../extend/addon/addon/planets/planets.php:157 -msgid "Planets Settings" +#: ../../addon/morepokes/morepokes.php:27 +msgid "raise eyebrows at" msgstr "" -#: ../../extend/addon/addon/pumpio/pumpio.php:148 -msgid "You are now authenticated to pumpio." +#: ../../addon/morepokes/morepokes.php:27 +msgid "raised their eyebrows at" msgstr "" -#: ../../extend/addon/addon/pumpio/pumpio.php:149 -msgid "return to the featured settings page" +#: ../../addon/morepokes/morepokes.php:28 +msgid "insult" msgstr "" -#: ../../extend/addon/addon/pumpio/pumpio.php:163 -msgid "Post to Pump.io" +#: ../../addon/morepokes/morepokes.php:28 +msgid "insulted" msgstr "" -#: ../../extend/addon/addon/pumpio/pumpio.php:198 -msgid "Pump.io servername" +#: ../../addon/morepokes/morepokes.php:29 +msgid "praise" msgstr "" -#: ../../extend/addon/addon/pumpio/pumpio.php:198 -msgid "Without \"http://\" or \"https://\"" +#: ../../addon/morepokes/morepokes.php:29 +msgid "praised" msgstr "" -#: ../../extend/addon/addon/pumpio/pumpio.php:202 -msgid "Pump.io username" +#: ../../addon/morepokes/morepokes.php:30 +msgid "be dubious of" msgstr "" -#: ../../extend/addon/addon/pumpio/pumpio.php:202 -msgid "Without the servername" +#: ../../addon/morepokes/morepokes.php:30 +msgid "was dubious of" msgstr "" -#: ../../extend/addon/addon/pumpio/pumpio.php:213 -msgid "You are not authenticated to pumpio" +#: ../../addon/morepokes/morepokes.php:31 +msgid "eat" msgstr "" -#: ../../extend/addon/addon/pumpio/pumpio.php:215 -msgid "(Re-)Authenticate your pump.io connection" +#: ../../addon/morepokes/morepokes.php:31 +msgid "ate" msgstr "" -#: ../../extend/addon/addon/pumpio/pumpio.php:219 -msgid "Enable pump.io Post Plugin" +#: ../../addon/morepokes/morepokes.php:32 +msgid "giggle and fawn at" msgstr "" -#: ../../extend/addon/addon/pumpio/pumpio.php:223 -msgid "Post to pump.io by default" +#: ../../addon/morepokes/morepokes.php:32 +msgid "giggled and fawned at" msgstr "" -#: ../../extend/addon/addon/pumpio/pumpio.php:227 -msgid "Should posts be public" +#: ../../addon/morepokes/morepokes.php:33 +msgid "doubt" msgstr "" -#: ../../extend/addon/addon/pumpio/pumpio.php:231 -msgid "Mirror all public posts" +#: ../../addon/morepokes/morepokes.php:33 +msgid "doubted" msgstr "" -#: ../../extend/addon/addon/pumpio/pumpio.php:237 -msgid "Pump.io Post Settings" +#: ../../addon/morepokes/morepokes.php:34 +msgid "glare" msgstr "" -#: ../../extend/addon/addon/pumpio/pumpio.php:266 -msgid "PumpIO Settings saved." +#: ../../addon/morepokes/morepokes.php:34 +msgid "glared at" msgstr "" -#: ../../extend/addon/addon/qrator/qrator.php:48 -msgid "QR code" +#: ../../addon/morepokes/morepokes.php:35 +msgid "fuck" msgstr "" -#: ../../extend/addon/addon/qrator/qrator.php:63 -msgid "QR Generator" +#: ../../addon/morepokes/morepokes.php:35 +msgid "fucked" msgstr "" -#: ../../extend/addon/addon/qrator/qrator.php:64 -msgid "Enter some text" +#: ../../addon/morepokes/morepokes.php:36 +msgid "bonk" msgstr "" -#: ../../extend/addon/addon/rainbowtag/rainbowtag.php:81 -msgid "Enable Rainbowtag" +#: ../../addon/morepokes/morepokes.php:36 +msgid "bonked" msgstr "" -#: ../../extend/addon/addon/rainbowtag/rainbowtag.php:85 -msgid "Rainbowtag Settings" +#: ../../addon/morepokes/morepokes.php:37 +msgid "declare undying love for" msgstr "" -#: ../../extend/addon/addon/rainbowtag/rainbowtag.php:101 -msgid "Rainbowtag Settings saved." +#: ../../addon/morepokes/morepokes.php:37 +msgid "declared undying love for" msgstr "" -#: ../../extend/addon/addon/randpost/randpost.php:97 -msgid "You're welcome." +#: ../../addon/diaspora/diaspora.php:675 +msgid "Diaspora Protocol Settings updated." msgstr "" -#: ../../extend/addon/addon/randpost/randpost.php:98 -msgid "Ah shucks..." +#: ../../addon/diaspora/diaspora.php:694 +msgid "Enable the Diaspora protocol for this channel" msgstr "" -#: ../../extend/addon/addon/randpost/randpost.php:99 -msgid "Don't mention it." +#: ../../addon/diaspora/diaspora.php:698 +msgid "Allow any Diaspora member to comment on your public posts" msgstr "" -#: ../../extend/addon/addon/randpost/randpost.php:100 -msgid "<blush>" +#: ../../addon/diaspora/diaspora.php:702 +msgid "Prevent your hashtags from being redirected to other sites" msgstr "" -#: ../../extend/addon/addon/redfiles/redfiles.php:119 -msgid "Redmatrix File Storage Import" +#: ../../addon/diaspora/diaspora.php:707 +msgid "Followed hashtags (comma separated, do not include the #)" msgstr "" -#: ../../extend/addon/addon/redfiles/redfiles.php:120 -msgid "This will import all your Redmatrix cloud files to this channel." +#: ../../addon/diaspora/diaspora.php:712 +msgid "Diaspora Protocol Settings" msgstr "" -#: ../../extend/addon/addon/redfiles/redfiles.php:121 -#: ../../extend/addon/addon/redphotos/redphotos.php:131 -msgid "Redmatrix Server base URL" +#: ../../addon/diaspora/import_diaspora.php:16 +msgid "No username found in import file." msgstr "" -#: ../../extend/addon/addon/redfiles/redfiles.php:122 -#: ../../extend/addon/addon/redphotos/redphotos.php:132 -msgid "Redmatrix Login Username" +#: ../../addon/diaspora/import_diaspora.php:41 ../../include/import.php:62 +msgid "Unable to create a unique channel address. Import failed." msgstr "" -#: ../../extend/addon/addon/redfiles/redfiles.php:123 -#: ../../extend/addon/addon/redphotos/redphotos.php:133 -msgid "Redmatrix Login Password" +#: ../../addon/gitwiki/Mod_Gitwiki.php:107 +msgid "Error retrieving wiki" msgstr "" -#: ../../extend/addon/addon/redfiles/redfilehelper.php:67 -msgid "file" +#: ../../addon/gitwiki/Mod_Gitwiki.php:114 +msgid "Error creating zip file export folder" msgstr "" -#: ../../extend/addon/addon/redphotos/redphotos.php:106 -msgid "Photos imported" +#: ../../addon/gitwiki/Mod_Gitwiki.php:132 +msgid "Error downloading wiki: " msgstr "" -#: ../../extend/addon/addon/redphotos/redphotos.php:129 -msgid "Redmatrix Photo Album Import" +#: ../../addon/testdrive/testdrive.php:104 +#, php-format +msgid "Your account on %s will expire in a few days." msgstr "" -#: ../../extend/addon/addon/redphotos/redphotos.php:130 -msgid "This will import all your Redmatrix photo albums to this channel." +#: ../../addon/testdrive/testdrive.php:105 +msgid "Your $Productname test account is about to expire." msgstr "" -#: ../../extend/addon/addon/redphotos/redphotos.php:134 -msgid "Import just this album" +#: ../../addon/rainbowtag/rainbowtag.php:81 +msgid "Enable Rainbowtag" msgstr "" -#: ../../extend/addon/addon/redphotos/redphotos.php:134 -msgid "Leave blank to import all albums" +#: ../../addon/rainbowtag/rainbowtag.php:85 +msgid "Rainbowtag Settings" msgstr "" -#: ../../extend/addon/addon/redphotos/redphotos.php:135 -msgid "Maximum count to import" +#: ../../addon/rainbowtag/rainbowtag.php:101 +msgid "Rainbowtag Settings saved." msgstr "" -#: ../../extend/addon/addon/redphotos/redphotos.php:135 -msgid "0 or blank to import all available" +#: ../../addon/upload_limits/upload_limits.php:25 +msgid "Show Upload Limits" msgstr "" -#: ../../extend/addon/addon/redred/redred.php:45 -msgid "Post to Red" +#: ../../addon/upload_limits/upload_limits.php:27 +msgid "Hubzilla configured maximum size: " msgstr "" -#: ../../extend/addon/addon/redred/redred.php:60 -msgid "Channel is required." +#: ../../addon/upload_limits/upload_limits.php:28 +msgid "PHP upload_max_filesize: " msgstr "" -#: ../../extend/addon/addon/redred/redred.php:65 -msgid "Invalid channel." +#: ../../addon/upload_limits/upload_limits.php:29 +msgid "PHP post_max_size (must be larger than upload_max_filesize): " msgstr "" -#: ../../extend/addon/addon/redred/redred.php:76 -msgid "redred Settings saved." +#: ../../addon/visage/visage.php:93 +msgid "Recent Channel/Profile Viewers" msgstr "" -#: ../../extend/addon/addon/redred/redred.php:95 -msgid "Allow posting to another Hubzilla Channel" +#: ../../addon/visage/visage.php:98 +msgid "This plugin/addon has not been configured." msgstr "" -#: ../../extend/addon/addon/redred/redred.php:99 -msgid "Send public postings to Hubzilla channel by default" +#: ../../addon/visage/visage.php:99 +#, php-format +msgid "Please visit the Visage settings on %s" msgstr "" -#: ../../extend/addon/addon/redred/redred.php:103 -msgid "Hubzilla API Path" +#: ../../addon/visage/visage.php:99 +msgid "your feature settings page" msgstr "" -#: ../../extend/addon/addon/redred/redred.php:103 -#: ../../extend/addon/addon/rtof/rtof.php:89 -msgid "https://{sitename}/api" +#: ../../addon/visage/visage.php:112 +msgid "No entries." msgstr "" -#: ../../extend/addon/addon/redred/redred.php:107 -msgid "Hubzilla login name" +#: ../../addon/visage/visage.php:166 +msgid "Enable Visage Visitor Logging" msgstr "" -#: ../../extend/addon/addon/redred/redred.php:111 -msgid "Hubzilla channel name" +#: ../../addon/visage/visage.php:170 +msgid "Visage Settings" msgstr "" -#: ../../extend/addon/addon/redred/redred.php:111 -#: ../../extend/addon/addon/openid/MysqlProvider.php:54 -msgid "Nickname" +#: ../../addon/nsabait/nsabait.php:125 +msgid "Nsabait Settings updated." msgstr "" -#: ../../extend/addon/addon/redred/redred.php:119 -msgid "Hubzilla Crosspost Settings" +#: ../../addon/nsabait/nsabait.php:157 +msgid "Enable NSAbait Plugin" msgstr "" -#: ../../extend/addon/addon/rtof/rtof.php:45 -msgid "Post to Friendica" +#: ../../addon/nsabait/nsabait.php:161 +msgid "NSAbait Settings" msgstr "" -#: ../../extend/addon/addon/rtof/rtof.php:62 -msgid "rtof Settings saved." +#: ../../addon/mailtest/mailtest.php:19 +msgid "Send test email" msgstr "" -#: ../../extend/addon/addon/rtof/rtof.php:81 -msgid "Allow posting to Friendica" +#: ../../addon/mailtest/mailtest.php:50 ../../addon/hubwall/hubwall.php:50 +msgid "No recipients found." msgstr "" -#: ../../extend/addon/addon/rtof/rtof.php:85 -msgid "Send public postings to Friendica by default" +#: ../../addon/mailtest/mailtest.php:66 +msgid "Mail sent." msgstr "" -#: ../../extend/addon/addon/rtof/rtof.php:89 -msgid "Friendica API Path" +#: ../../addon/mailtest/mailtest.php:68 +msgid "Sending of mail failed." msgstr "" -#: ../../extend/addon/addon/rtof/rtof.php:93 -msgid "Friendica login name" +#: ../../addon/mailtest/mailtest.php:77 +msgid "Mail Test" msgstr "" -#: ../../extend/addon/addon/rtof/rtof.php:97 -msgid "Friendica password" +#: ../../addon/mailtest/mailtest.php:96 ../../addon/hubwall/hubwall.php:92 +msgid "Message subject" msgstr "" -#: ../../extend/addon/addon/rtof/rtof.php:101 -msgid "Hubzilla to Friendica Post Settings" +#: ../../addon/diaspora_reconnect/diaspora_reconnect.php:44 +#, php-format +msgid "Reconnecting %d connections" msgstr "" -#: ../../extend/addon/addon/sendzid/sendzid.php:25 -msgid "Extended Identity Sharing" +#: ../../addon/diaspora_reconnect/diaspora_reconnect.php:63 +msgid "Diaspora Reconnect" msgstr "" -#: ../../extend/addon/addon/sendzid/sendzid.php:26 +#: ../../addon/diaspora_reconnect/diaspora_reconnect.php:65 msgid "" -"Share your identity with all websites on the internet. When disabled, " -"identity is only shared with sites in the matrix." -msgstr "" - -#: ../../extend/addon/addon/skeleton/skeleton.php:59 -msgid "Some setting" -msgstr "" - -#: ../../extend/addon/addon/skeleton/skeleton.php:61 -msgid "A setting" +"Use this form to re-establish Diaspora connections which were initially made " +"from a different hub." msgstr "" -#: ../../extend/addon/addon/skeleton/skeleton.php:64 -msgid "Skeleton Settings" +#: ../../addon/diaspora_reconnect/diaspora_reconnect.php:70 +msgid "Reconnect" msgstr "" -#: ../../extend/addon/addon/smileybutton/smileybutton.php:273 -msgid "Deactivate the feature" +#: ../../addon/openstreetmap/openstreetmap.php:146 +msgid "View Larger" msgstr "" -#: ../../extend/addon/addon/smileybutton/smileybutton.php:277 -msgid "Hide the button and show the smilies directly." +#: ../../addon/openstreetmap/openstreetmap.php:169 +msgid "Tile Server URL" msgstr "" -#: ../../extend/addon/addon/smileybutton/smileybutton.php:281 -msgid "Smileybutton Settings" +#: ../../addon/openstreetmap/openstreetmap.php:169 +msgid "" +"A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank" +"\">public tile servers</a>" msgstr "" -#: ../../extend/addon/addon/startpage/startpage.php:109 -msgid "Page to load after login" +#: ../../addon/openstreetmap/openstreetmap.php:170 +msgid "Nominatim (reverse geocoding) Server URL" msgstr "" -#: ../../extend/addon/addon/startpage/startpage.php:109 +#: ../../addon/openstreetmap/openstreetmap.php:170 msgid "" -"Examples: "apps", "network?f=&gid=37" (privacy " -"collection), "channel" or "notifications/system" (leave " -"blank for default network page (grid)." -msgstr "" - -#: ../../extend/addon/addon/startpage/startpage.php:113 -msgid "Startpage Settings" +"A list of <a href=\"http://wiki.openstreetmap.org/wiki/Nominatim\" target=" +"\"_blank\">Nominatim servers</a>" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:143 -msgid "Post to GNU social" +#: ../../addon/openstreetmap/openstreetmap.php:171 +msgid "Default zoom" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:195 +#: ../../addon/openstreetmap/openstreetmap.php:171 msgid "" -"Please contact your site administrator.<br />The provided API URL is not " -"valid." -msgstr "" - -#: ../../extend/addon/addon/statusnet/statusnet.php:232 -msgid "We could not contact the GNU social API with the Path you entered." +"The default zoom level. (1:world, 18:highest, also depends on tile server)" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:266 -msgid "GNU social settings updated." +#: ../../addon/openstreetmap/openstreetmap.php:172 +msgid "Include marker on map" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:310 -msgid "Globally Available GNU social OAuthKeys" +#: ../../addon/openstreetmap/openstreetmap.php:172 +msgid "Include a marker on the map." msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:312 -msgid "" -"There are preconfigured OAuth key pairs for some GNU social servers " -"available. If you are using one of them, please use these credentials.<br /" -">If not feel free to connect to any other GNU social instance (see below)." +#: ../../addon/msgfooter/msgfooter.php:46 ../../addon/xmpp/xmpp.php:91 +msgid "Save Settings" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:327 -msgid "Provide your own OAuth Credentials" +#: ../../addon/msgfooter/msgfooter.php:47 +msgid "text to include in all outgoing posts from this site" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:329 -msgid "" -"No consumer key pair for GNU social found. Register your Hubzilla Account as " -"an desktop client on your GNU social account, copy the consumer key pair " -"here and enter the API base root.<br />Before you register your own OAuth " -"key pair ask the administrator if there is already a key pair for this " -"Hubzilla installation at your favourite GNU social installation." +#: ../../addon/rtof/rtof.php:45 +msgid "Post to Friendica" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:333 -msgid "OAuth Consumer Key" +#: ../../addon/rtof/rtof.php:62 +msgid "rtof Settings saved." msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:337 -msgid "OAuth Consumer Secret" +#: ../../addon/rtof/rtof.php:81 +msgid "Allow posting to Friendica" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:341 -msgid "Base API Path" +#: ../../addon/rtof/rtof.php:85 +msgid "Send public postings to Friendica by default" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:341 -msgid "Remember the trailing /" +#: ../../addon/rtof/rtof.php:89 +msgid "Friendica API Path" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:345 -msgid "GNU social application name" +#: ../../addon/rtof/rtof.php:89 ../../addon/redred/redred.php:103 +msgid "https://{sitename}/api" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:368 -msgid "" -"To connect to your GNU social account click the button below to get a " -"security code from GNU social which you have to copy into the input box " -"below and submit the form. Only your <strong>public</strong> posts will be " -"posted to GNU social." +#: ../../addon/rtof/rtof.php:93 +msgid "Friendica login name" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:370 -msgid "Log in with GNU social" +#: ../../addon/rtof/rtof.php:97 +msgid "Friendica password" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:373 -msgid "Copy the security code from GNU social here" +#: ../../addon/rtof/rtof.php:101 +msgid "Hubzilla to Friendica Post Settings" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:383 -msgid "Cancel Connection Process" +#: ../../addon/jappixmini/jappixmini.php:305 ../../include/channel.php:1139 +#: ../../include/channel.php:1296 +msgid "Status:" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:385 -msgid "Current GNU social API is" +#: ../../addon/jappixmini/jappixmini.php:309 +msgid "Activate addon" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:389 -msgid "Cancel GNU social Connection" +#: ../../addon/jappixmini/jappixmini.php:313 +msgid "Hide Jappixmini Chat-Widget from the webinterface" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:401 -#: ../../extend/addon/addon/twitter/twitter.php:232 -msgid "Currently connected to: " +#: ../../addon/jappixmini/jappixmini.php:318 +msgid "Jabber username" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:406 -msgid "" -"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile " -"details from unknown viewers?</em>) the link potentially included in public " -"postings relayed to GNU social will lead the visitor to a blank page " -"informing the visitor that the access to your profile has been restricted." +#: ../../addon/jappixmini/jappixmini.php:324 +msgid "Jabber server" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:411 -msgid "Allow posting to GNU social" +#: ../../addon/jappixmini/jappixmini.php:330 +msgid "Jabber BOSH host URL" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:411 -msgid "" -"If enabled your public postings can be posted to the associated GNU-social " -"account" +#: ../../addon/jappixmini/jappixmini.php:337 +msgid "Jabber password" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:415 -msgid "Post to GNU social by default" +#: ../../addon/jappixmini/jappixmini.php:343 +msgid "Encrypt Jabber password with Hubzilla password" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:415 -msgid "" -"If enabled your public postings will be posted to the associated GNU-social " -"account by default" +#: ../../addon/jappixmini/jappixmini.php:347 ../../addon/redred/redred.php:115 +msgid "Hubzilla password" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:424 -#: ../../extend/addon/addon/twitter/twitter.php:255 -msgid "Clear OAuth configuration" +#: ../../addon/jappixmini/jappixmini.php:351 +#: ../../addon/jappixmini/jappixmini.php:355 +msgid "Approve subscription requests from Hubzilla contacts automatically" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:432 -msgid "GNU social Post Settings" +#: ../../addon/jappixmini/jappixmini.php:359 +msgid "Purge internal list of jabber addresses of contacts" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:891 -msgid "API URL" +#: ../../addon/jappixmini/jappixmini.php:364 +msgid "Configuration Help" msgstr "" -#: ../../extend/addon/addon/statusnet/statusnet.php:894 -msgid "Application name" +#: ../../addon/jappixmini/jappixmini.php:371 +msgid "Jappix Mini Settings" msgstr "" -#: ../../extend/addon/addon/superblock/superblock.php:110 +#: ../../addon/superblock/superblock.php:112 msgid "Currently blocked" msgstr "" -#: ../../extend/addon/addon/superblock/superblock.php:112 +#: ../../addon/superblock/superblock.php:114 msgid "No channels currently blocked" msgstr "" -#: ../../extend/addon/addon/superblock/superblock.php:118 +#: ../../addon/superblock/superblock.php:120 msgid "\"Superblock\" Settings" msgstr "" -#: ../../extend/addon/addon/superblock/superblock.php:322 +#: ../../addon/superblock/superblock.php:345 msgid "Block Completely" msgstr "" -#: ../../extend/addon/addon/superblock/superblock.php:371 +#: ../../addon/superblock/superblock.php:394 msgid "superblock settings updated" msgstr "" -#: ../../extend/addon/addon/testdrive/testdrive.php:104 -#, php-format -msgid "Your account on %s will expire in a few days." -msgstr "" - -#: ../../extend/addon/addon/testdrive/testdrive.php:105 -msgid "Your $Productname test account is about to expire." -msgstr "" - -#: ../../extend/addon/addon/tictac/tictac.php:21 -msgid "Three Dimensional Tic-Tac-Toe" -msgstr "" - -#: ../../extend/addon/addon/tictac/tictac.php:54 -msgid "3D Tic-Tac-Toe" +#: ../../addon/nofed/nofed.php:42 +msgid "Federate" msgstr "" -#: ../../extend/addon/addon/tictac/tictac.php:59 -msgid "New game" +#: ../../addon/nofed/nofed.php:56 +msgid "nofed Settings saved." msgstr "" -#: ../../extend/addon/addon/tictac/tictac.php:60 -msgid "New game with handicap" +#: ../../addon/nofed/nofed.php:72 +msgid "Allow Federation Toggle" msgstr "" -#: ../../extend/addon/addon/tictac/tictac.php:61 -msgid "" -"Three dimensional tic-tac-toe is just like the traditional game except that " -"it is played on multiple levels simultaneously. " +#: ../../addon/nofed/nofed.php:76 +msgid "Federate posts by default" msgstr "" -#: ../../extend/addon/addon/tictac/tictac.php:62 -msgid "" -"In this case there are three levels. You win by getting three in a row on " -"any level, as well as up, down, and diagonally across the different levels." +#: ../../addon/nofed/nofed.php:80 +msgid "NoFed Settings" msgstr "" -#: ../../extend/addon/addon/tictac/tictac.php:64 -msgid "" -"The handicap game disables the center position on the middle level because " -"the player claiming this square often has an unfair advantage." +#: ../../addon/redred/redred.php:45 +msgid "Post to Red" msgstr "" -#: ../../extend/addon/addon/tictac/tictac.php:183 -msgid "You go first..." +#: ../../addon/redred/redred.php:60 +msgid "Channel is required." msgstr "" -#: ../../extend/addon/addon/tictac/tictac.php:188 -msgid "I'm going first this time..." +#: ../../addon/redred/redred.php:76 +msgid "redred Settings saved." msgstr "" -#: ../../extend/addon/addon/tictac/tictac.php:194 -msgid "You won!" +#: ../../addon/redred/redred.php:95 +msgid "Allow posting to another Hubzilla Channel" msgstr "" -#: ../../extend/addon/addon/tictac/tictac.php:200 -#: ../../extend/addon/addon/tictac/tictac.php:225 -msgid "\"Cat\" game!" +#: ../../addon/redred/redred.php:99 +msgid "Send public postings to Hubzilla channel by default" msgstr "" -#: ../../extend/addon/addon/tictac/tictac.php:223 -msgid "I won!" +#: ../../addon/redred/redred.php:103 +msgid "Hubzilla API Path" msgstr "" -#: ../../extend/addon/addon/tour/tour.php:75 -msgid "Edit your profile and change settings." +#: ../../addon/redred/redred.php:107 +msgid "Hubzilla login name" msgstr "" -#: ../../extend/addon/addon/tour/tour.php:76 -msgid "Click here to see activity from your connections." +#: ../../addon/redred/redred.php:111 +msgid "Hubzilla channel name" msgstr "" -#: ../../extend/addon/addon/tour/tour.php:77 -msgid "Click here to see your channel home." +#: ../../addon/redred/redred.php:119 +msgid "Hubzilla Crosspost Settings" msgstr "" -#: ../../extend/addon/addon/tour/tour.php:78 -msgid "You can access your private messages from here." +#: ../../addon/logrot/logrot.php:36 +msgid "Logfile archive directory" msgstr "" -#: ../../extend/addon/addon/tour/tour.php:79 -msgid "Create new events here." +#: ../../addon/logrot/logrot.php:36 +msgid "Directory to store rotated logs" msgstr "" -#: ../../extend/addon/addon/tour/tour.php:80 -msgid "" -"You can accept new connections and change permissions for existing ones " -"here. You can also e.g. create groups of contacts." +#: ../../addon/logrot/logrot.php:37 +msgid "Logfile size in bytes before rotating" msgstr "" -#: ../../extend/addon/addon/tour/tour.php:81 -msgid "System notifications will arrive here" +#: ../../addon/logrot/logrot.php:38 +msgid "Number of logfiles to retain" msgstr "" -#: ../../extend/addon/addon/tour/tour.php:82 -msgid "Search for content and users" +#: ../../addon/frphotos/frphotos.php:91 +msgid "Friendica Photo Album Import" msgstr "" -#: ../../extend/addon/addon/tour/tour.php:83 -msgid "Browse for new contacts" +#: ../../addon/frphotos/frphotos.php:92 +msgid "This will import all your Friendica photo albums to this Red channel." msgstr "" -#: ../../extend/addon/addon/tour/tour.php:84 -msgid "Launch installed apps" +#: ../../addon/frphotos/frphotos.php:93 +msgid "Friendica Server base URL" msgstr "" -#: ../../extend/addon/addon/tour/tour.php:85 -msgid "Looking for help? Click here." +#: ../../addon/frphotos/frphotos.php:94 +msgid "Friendica Login Username" msgstr "" -#: ../../extend/addon/addon/tour/tour.php:86 -msgid "" -"New events have occurred in your network. Click here to see what has " -"happened!" +#: ../../addon/frphotos/frphotos.php:95 +msgid "Friendica Login Password" msgstr "" -#: ../../extend/addon/addon/tour/tour.php:87 -msgid "You have received a new private message. Click here to see from who!" +#: ../../addon/donate/donate.php:21 +msgid "Project Servers and Resources" msgstr "" -#: ../../extend/addon/addon/tour/tour.php:88 -msgid "There are events this week. Click here too see which!" +#: ../../addon/donate/donate.php:22 +msgid "Project Creator and Tech Lead" msgstr "" -#: ../../extend/addon/addon/tour/tour.php:89 -msgid "You have received a new introduction. Click here to see who!" +#: ../../addon/donate/donate.php:23 +msgid "Admin, developer, directorymin, support bloke" msgstr "" -#: ../../extend/addon/addon/tour/tour.php:90 +#: ../../addon/donate/donate.php:50 msgid "" -"There is a new system notification. Click here to see what has happened!" -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:93 -msgid "Click here to share text, images, videos and sound." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:94 -msgid "You can write an optional title for your update (good for long posts)." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:95 -msgid "Entering some categories here makes it easier to find your post later." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:96 -msgid "Share photos, links, location, etc." +"And the hundreds of other people and organisations who helped make the " +"Hubzilla possible." msgstr "" -#: ../../extend/addon/addon/tour/tour.php:97 +#: ../../addon/donate/donate.php:53 msgid "" -"Only want to share content for a while? Make it expire at a certain date." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:98 -msgid "You can password protect content." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:99 -msgid "Choose who you share with." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:101 -msgid "Click here when you are done." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:104 -msgid "Adjust from which channels posts should be displayed." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:105 -msgid "Only show posts from channels in the specified privacy group." +"The Redmatrix/Hubzilla projects are provided primarily by volunteers giving " +"their time and expertise - and often paying out of pocket for services they " +"share with others." msgstr "" -#: ../../extend/addon/addon/tour/tour.php:109 +#: ../../addon/donate/donate.php:54 msgid "" -"Easily find posts containing tags (keywords preceded by the \"#\" symbol)." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:110 -msgid "Easily find posts in given category." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:111 -msgid "Easily find posts by date." +"There is no corporate funding and no ads, and we do not collect and sell " +"your personal information. (We don't control your personal information - " +"<strong>you do</strong>.)" msgstr "" -#: ../../extend/addon/addon/tour/tour.php:112 +#: ../../addon/donate/donate.php:55 msgid "" -"Suggested users who have volounteered to be shown as suggestions, and who we " -"think you might find interesting." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:113 -msgid "Here you see channels you have connected to." -msgstr "" - -#: ../../extend/addon/addon/tour/tour.php:114 -msgid "Save your search so you can repeat it at a later date." +"Help support our ground-breaking work in decentralisation, web identity, and " +"privacy." msgstr "" -#: ../../extend/addon/addon/tour/tour.php:117 +#: ../../addon/donate/donate.php:57 msgid "" -"If you see this icon you can be sure that the sender is who it say it is. It " -"is normal that it is not always possible to verify the sender, so the icon " -"will be missing sometimes. There is usually no need to worry about that." +"Your donations keep servers and services running and also helps us to " +"provide innovative new features and continued development." msgstr "" -#: ../../extend/addon/addon/tour/tour.php:118 -msgid "" -"Danger! It seems someone tried to forge a message! This message is not " -"necessarily from who it says it is from!" +#: ../../addon/donate/donate.php:60 +msgid "Donate" msgstr "" -#: ../../extend/addon/addon/tour/tour.php:125 +#: ../../addon/donate/donate.php:62 msgid "" -"Welcome to Hubzilla! Would you like to see a tour of the UI?</p> <p>You can " -"pause it at any time and continue where you left off by reloading the page, " -"or navigting to another page.</p><p>You can also advance by pressing the " -"return key" -msgstr "" - -#: ../../extend/addon/addon/twitter/twitter.php:99 -msgid "Post to Twitter" +"Choose a project, developer, or public hub to support with a one-time " +"donation" msgstr "" -#: ../../extend/addon/addon/twitter/twitter.php:154 -msgid "Twitter settings updated." +#: ../../addon/donate/donate.php:63 +msgid "Donate Now" msgstr "" -#: ../../extend/addon/addon/twitter/twitter.php:183 +#: ../../addon/donate/donate.php:64 msgid "" -"No consumer key pair for Twitter found. Please contact your site " -"administrator." +"<strong><em>Or</em></strong> become a project sponsor (Hubzilla Project only)" msgstr "" -#: ../../extend/addon/addon/twitter/twitter.php:205 +#: ../../addon/donate/donate.php:65 msgid "" -"At this Hubzilla instance the Twitter plugin was enabled but you have not " -"yet connected your account to your Twitter account. To do so click the " -"button below to get a PIN from Twitter which you have to copy into the input " -"box below and submit the form. Only your <strong>public</strong> posts will " -"be posted to Twitter." +"Please indicate if you would like your first name or full name (or nothing) " +"to appear in our sponsor listing" msgstr "" -#: ../../extend/addon/addon/twitter/twitter.php:207 -msgid "Log in with Twitter" +#: ../../addon/donate/donate.php:66 +msgid "Sponsor" msgstr "" -#: ../../extend/addon/addon/twitter/twitter.php:210 -msgid "Copy the PIN from Twitter here" +#: ../../addon/donate/donate.php:69 +msgid "Special thanks to: " msgstr "" -#: ../../extend/addon/addon/twitter/twitter.php:237 +#: ../../addon/chords/Mod_Chords.php:44 msgid "" -"<strong>Note:</strong> Due your privacy settings (<em>Hide your profile " -"details from unknown viewers?</em>) the link potentially included in public " -"postings relayed to Twitter will lead the visitor to a blank page informing " -"the visitor that the access to your profile has been restricted." +"This is a fairly comprehensive and complete guitar chord dictionary which " +"will list most of the available ways to play a certain chord, starting from " +"the base of the fingerboard up to a few frets beyond the twelfth fret " +"(beyond which everything repeats). A couple of non-standard tunings are " +"provided for the benefit of slide players, etc." msgstr "" -#: ../../extend/addon/addon/twitter/twitter.php:242 -msgid "Allow posting to Twitter" +#: ../../addon/chords/Mod_Chords.php:46 +msgid "" +"Chord names start with a root note (A-G) and may include sharps (#) and " +"flats (b). This software will parse most of the standard naming conventions " +"such as maj, min, dim, sus(2 or 4), aug, with optional repeating elements." msgstr "" -#: ../../extend/addon/addon/twitter/twitter.php:242 +#: ../../addon/chords/Mod_Chords.php:48 msgid "" -"If enabled your public postings can be posted to the associated Twitter " -"account" +"Valid examples include A, A7, Am7, Amaj7, Amaj9, Ammaj7, Aadd4, Asus2Add4, " +"E7b13b11 ..." msgstr "" -#: ../../extend/addon/addon/twitter/twitter.php:246 -msgid "Send public postings to Twitter by default" +#: ../../addon/chords/Mod_Chords.php:51 +msgid "Guitar Chords" msgstr "" -#: ../../extend/addon/addon/twitter/twitter.php:246 -msgid "" -"If enabled your public postings will be posted to the associated Twitter " -"account by default" +#: ../../addon/chords/Mod_Chords.php:52 +msgid "The complete online chord dictionary" msgstr "" -#: ../../extend/addon/addon/twitter/twitter.php:264 -msgid "Twitter Post Settings" +#: ../../addon/chords/Mod_Chords.php:57 +msgid "Tuning" msgstr "" -#: ../../extend/addon/addon/twitter/twitter.php:773 -#: ../../extend/addon/addon/rendezvous/rendezvous.php:95 -msgid "Submit Settings" +#: ../../addon/chords/Mod_Chords.php:58 +msgid "Chord name: example: Em7" msgstr "" -#: ../../extend/addon/addon/upload_limits/upload_limits.php:25 -msgid "Show Upload Limits" +#: ../../addon/chords/Mod_Chords.php:59 +msgid "Show for left handed stringing" msgstr "" -#: ../../extend/addon/addon/upload_limits/upload_limits.php:27 -msgid "Hubzilla configured maximum size: " +#: ../../addon/chords/chords.php:33 +msgid "Quick Reference" msgstr "" -#: ../../extend/addon/addon/upload_limits/upload_limits.php:28 -msgid "PHP upload_max_filesize: " +#: ../../addon/libertree/libertree.php:38 +msgid "Post to Libertree" msgstr "" -#: ../../extend/addon/addon/upload_limits/upload_limits.php:29 -msgid "PHP post_max_size (must be larger than upload_max_filesize): " +#: ../../addon/libertree/libertree.php:69 +msgid "Enable Libertree Post Plugin" msgstr "" -#: ../../extend/addon/addon/visage/visage.php:93 -msgid "Recent Channel/Profile Viewers" +#: ../../addon/libertree/libertree.php:73 +msgid "Libertree API token" msgstr "" -#: ../../extend/addon/addon/visage/visage.php:98 -msgid "This plugin/addon has not been configured." +#: ../../addon/libertree/libertree.php:77 +msgid "Libertree site URL" msgstr "" -#: ../../extend/addon/addon/visage/visage.php:99 -#, php-format -msgid "Please visit the Visage settings on %s" +#: ../../addon/libertree/libertree.php:81 +msgid "Post to Libertree by default" msgstr "" -#: ../../extend/addon/addon/visage/visage.php:99 -msgid "your feature settings page" +#: ../../addon/libertree/libertree.php:85 +msgid "Libertree Post Settings" msgstr "" -#: ../../extend/addon/addon/visage/visage.php:112 -msgid "No entries." +#: ../../addon/libertree/libertree.php:99 +msgid "Libertree Settings saved." msgstr "" -#: ../../extend/addon/addon/visage/visage.php:166 -msgid "Enable Visage Visitor Logging" +#: ../../addon/flattrwidget/flattrwidget.php:45 +msgid "Flattr this!" msgstr "" -#: ../../extend/addon/addon/visage/visage.php:170 -msgid "Visage Settings" +#: ../../addon/flattrwidget/flattrwidget.php:83 +msgid "Flattr widget settings updated." msgstr "" -#: ../../extend/addon/addon/wholikesme/wholikesme.php:29 -msgid "Who likes me?" +#: ../../addon/flattrwidget/flattrwidget.php:100 +msgid "Flattr user" msgstr "" -#: ../../extend/addon/addon/wppost/wppost.php:45 -msgid "Post to WordPress" +#: ../../addon/flattrwidget/flattrwidget.php:104 +msgid "URL of the Thing to flattr" msgstr "" -#: ../../extend/addon/addon/wppost/wppost.php:82 -msgid "Enable WordPress Post Plugin" +#: ../../addon/flattrwidget/flattrwidget.php:104 +msgid "If empty channel URL is used" msgstr "" -#: ../../extend/addon/addon/wppost/wppost.php:86 -msgid "WordPress username" +#: ../../addon/flattrwidget/flattrwidget.php:108 +msgid "Title of the Thing to flattr" msgstr "" -#: ../../extend/addon/addon/wppost/wppost.php:90 -msgid "WordPress password" +#: ../../addon/flattrwidget/flattrwidget.php:108 +msgid "If empty \"channel name on The Hubzilla\" will be used" msgstr "" -#: ../../extend/addon/addon/wppost/wppost.php:94 -msgid "WordPress API URL" +#: ../../addon/flattrwidget/flattrwidget.php:112 +msgid "Static or dynamic flattr button" msgstr "" -#: ../../extend/addon/addon/wppost/wppost.php:95 -msgid "Typically https://your-blog.tld/xmlrpc.php" +#: ../../addon/flattrwidget/flattrwidget.php:112 +msgid "static" msgstr "" -#: ../../extend/addon/addon/wppost/wppost.php:98 -msgid "WordPress blogid" +#: ../../addon/flattrwidget/flattrwidget.php:112 +msgid "dynamic" msgstr "" -#: ../../extend/addon/addon/wppost/wppost.php:99 -msgid "For multi-user sites such as wordpress.com, otherwise leave blank" +#: ../../addon/flattrwidget/flattrwidget.php:116 +msgid "Alignment of the widget" msgstr "" -#: ../../extend/addon/addon/wppost/wppost.php:105 -msgid "Post to WordPress by default" +#: ../../addon/flattrwidget/flattrwidget.php:116 +msgid "left" msgstr "" -#: ../../extend/addon/addon/wppost/wppost.php:109 -msgid "Forward comments (requires hubzilla_wp plugin)" +#: ../../addon/flattrwidget/flattrwidget.php:116 +msgid "right" msgstr "" -#: ../../extend/addon/addon/wppost/wppost.php:113 -msgid "WordPress Post Settings" +#: ../../addon/flattrwidget/flattrwidget.php:120 +msgid "Enable Flattr widget" msgstr "" -#: ../../extend/addon/addon/wppost/wppost.php:129 -msgid "Wordpress Settings saved." +#: ../../addon/flattrwidget/flattrwidget.php:124 +msgid "Flattr Widget Settings" msgstr "" -#: ../../extend/addon/addon/xmpp/xmpp.php:31 -msgid "XMPP settings updated." +#: ../../addon/statusnet/statusnet.php:143 +msgid "Post to GNU social" msgstr "" -#: ../../extend/addon/addon/xmpp/xmpp.php:53 -msgid "Enable Chat" +#: ../../addon/statusnet/statusnet.php:195 +msgid "" +"Please contact your site administrator.<br />The provided API URL is not " +"valid." msgstr "" -#: ../../extend/addon/addon/xmpp/xmpp.php:58 -msgid "Individual credentials" +#: ../../addon/statusnet/statusnet.php:232 +msgid "We could not contact the GNU social API with the Path you entered." msgstr "" -#: ../../extend/addon/addon/xmpp/xmpp.php:64 -msgid "Jabber BOSH server" +#: ../../addon/statusnet/statusnet.php:266 +msgid "GNU social settings updated." msgstr "" -#: ../../extend/addon/addon/xmpp/xmpp.php:69 -msgid "XMPP Settings" +#: ../../addon/statusnet/statusnet.php:310 +msgid "Globally Available GNU social OAuthKeys" msgstr "" -#: ../../extend/addon/addon/xmpp/xmpp.php:92 -msgid "Jabber BOSH host" +#: ../../addon/statusnet/statusnet.php:312 +msgid "" +"There are preconfigured OAuth key pairs for some GNU social servers " +"available. If you are using one of them, please use these credentials.<br /" +">If not feel free to connect to any other GNU social instance (see below)." msgstr "" -#: ../../extend/addon/addon/xmpp/xmpp.php:93 -msgid "Use central userbase" +#: ../../addon/statusnet/statusnet.php:327 +msgid "Provide your own OAuth Credentials" msgstr "" -#: ../../extend/addon/addon/xmpp/xmpp.php:93 +#: ../../addon/statusnet/statusnet.php:329 msgid "" -"If enabled, members will automatically login to an ejabberd server that has " -"to be installed on this machine with synchronized credentials via the " -"\"auth_ejabberd.php\" script." -msgstr "" - -#: ../../extend/addon/addon/cdav/include/widgets.php:37 -msgid "Select Channel" +"No consumer key pair for GNU social found. Register your Hubzilla Account as " +"an desktop client on your GNU social account, copy the consumer key pair " +"here and enter the API base root.<br />Before you register your own OAuth " +"key pair ask the administrator if there is already a key pair for this " +"Hubzilla installation at your favourite GNU social installation." msgstr "" -#: ../../extend/addon/addon/cdav/include/widgets.php:42 -msgid "Read-write" +#: ../../addon/statusnet/statusnet.php:333 +msgid "OAuth Consumer Key" msgstr "" -#: ../../extend/addon/addon/cdav/include/widgets.php:43 -msgid "Read-only" +#: ../../addon/statusnet/statusnet.php:337 +msgid "OAuth Consumer Secret" msgstr "" -#: ../../extend/addon/addon/cdav/include/widgets.php:116 -msgid "My Calendars" +#: ../../addon/statusnet/statusnet.php:341 +msgid "Base API Path" msgstr "" -#: ../../extend/addon/addon/cdav/include/widgets.php:118 -msgid "Shared Calendars" +#: ../../addon/statusnet/statusnet.php:341 +msgid "Remember the trailing /" msgstr "" -#: ../../extend/addon/addon/cdav/include/widgets.php:122 -msgid "Share this calendar" +#: ../../addon/statusnet/statusnet.php:345 +msgid "GNU social application name" msgstr "" -#: ../../extend/addon/addon/cdav/include/widgets.php:124 -msgid "Calendar name and color" +#: ../../addon/statusnet/statusnet.php:368 +msgid "" +"To connect to your GNU social account click the button below to get a " +"security code from GNU social which you have to copy into the input box " +"below and submit the form. Only your <strong>public</strong> posts will be " +"posted to GNU social." msgstr "" -#: ../../extend/addon/addon/cdav/include/widgets.php:126 -msgid "Create new calendar" +#: ../../addon/statusnet/statusnet.php:370 +msgid "Log in with GNU social" msgstr "" -#: ../../extend/addon/addon/cdav/include/widgets.php:128 -msgid "Calendar Name" +#: ../../addon/statusnet/statusnet.php:373 +msgid "Copy the security code from GNU social here" msgstr "" -#: ../../extend/addon/addon/cdav/include/widgets.php:129 -msgid "Calendar Tools" +#: ../../addon/statusnet/statusnet.php:383 +msgid "Cancel Connection Process" msgstr "" -#: ../../extend/addon/addon/cdav/include/widgets.php:130 -msgid "Import calendar" +#: ../../addon/statusnet/statusnet.php:385 +msgid "Current GNU social API is" msgstr "" -#: ../../extend/addon/addon/cdav/include/widgets.php:131 -msgid "Select a calendar to import to" +#: ../../addon/statusnet/statusnet.php:389 +msgid "Cancel GNU social Connection" msgstr "" -#: ../../extend/addon/addon/cdav/include/widgets.php:158 -msgid "Addressbooks" +#: ../../addon/statusnet/statusnet.php:401 ../../addon/twitter/twitter.php:232 +msgid "Currently connected to: " msgstr "" -#: ../../extend/addon/addon/cdav/include/widgets.php:160 -msgid "Addressbook name" +#: ../../addon/statusnet/statusnet.php:406 +msgid "" +"<strong>Note</strong>: Due your privacy settings (<em>Hide your profile " +"details from unknown viewers?</em>) the link potentially included in public " +"postings relayed to GNU social will lead the visitor to a blank page " +"informing the visitor that the access to your profile has been restricted." msgstr "" -#: ../../extend/addon/addon/cdav/include/widgets.php:162 -msgid "Create new addressbook" +#: ../../addon/statusnet/statusnet.php:411 +msgid "Allow posting to GNU social" msgstr "" -#: ../../extend/addon/addon/cdav/include/widgets.php:163 -msgid "Addressbook Name" +#: ../../addon/statusnet/statusnet.php:411 +msgid "" +"If enabled your public postings can be posted to the associated GNU-social " +"account" msgstr "" -#: ../../extend/addon/addon/cdav/include/widgets.php:165 -msgid "Addressbook Tools" +#: ../../addon/statusnet/statusnet.php:415 +msgid "Post to GNU social by default" msgstr "" -#: ../../extend/addon/addon/cdav/include/widgets.php:166 -msgid "Import addressbook" +#: ../../addon/statusnet/statusnet.php:415 +msgid "" +"If enabled your public postings will be posted to the associated GNU-social " +"account by default" msgstr "" -#: ../../extend/addon/addon/cdav/include/widgets.php:167 -msgid "Select an addressbook to import to" +#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:255 +msgid "Clear OAuth configuration" msgstr "" -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:744 -msgid "INVALID EVENT DISMISSED!" +#: ../../addon/statusnet/statusnet.php:432 +msgid "GNU social Post Settings" msgstr "" -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:745 -msgid "Summary: " +#: ../../addon/statusnet/statusnet.php:891 +msgid "API URL" msgstr "" -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:746 -msgid "Date: " +#: ../../addon/statusnet/statusnet.php:894 +msgid "Application name" msgstr "" -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:747 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:754 -msgid "Reason: " +#: ../../addon/qrator/qrator.php:48 +msgid "QR code" msgstr "" -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:752 -msgid "INVALID CARD DISMISSED!" +#: ../../addon/qrator/qrator.php:63 +msgid "QR Generator" msgstr "" -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:753 -msgid "Name: " +#: ../../addon/qrator/qrator.php:64 +msgid "Enter some text" msgstr "" -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:770 -msgid "" -"You have to enable this plugin in Feature/Addon Settings > CalDAV/CardDAV " -"Settings before you can use it." +#: ../../addon/chess/chess.php:276 ../../addon/chess/chess.php:433 +msgid "Invalid game." msgstr "" -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:836 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:837 -msgid "Example: YYYY-MM-DD HH:mm" +#: ../../addon/chess/chess.php:282 ../../addon/chess/chess.php:439 +msgid "You are not a player in this game." msgstr "" -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:837 -msgid "End date and time" +#: ../../addon/chess/chess.php:315 +msgid "You must be a local channel to create a game." msgstr "" -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:852 -msgid "List month" +#: ../../addon/chess/chess.php:333 +msgid "You must select one opponent that is not yourself." msgstr "" -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:853 -msgid "List week" +#: ../../addon/chess/chess.php:336 +msgid "Creating new game..." msgstr "" -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:854 -msgid "List day" +#: ../../addon/chess/chess.php:342 +msgid "You must select white or black." msgstr "" -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:861 -msgid "More" +#: ../../addon/chess/chess.php:349 +msgid "Error creating new game." msgstr "" -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:862 -msgid "Less" +#: ../../addon/chess/chess.php:381 ../../include/channel.php:899 +msgid "Requested channel is not available." msgstr "" -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:863 -msgid "Select calendar" +#: ../../addon/chess/chess.php:395 +msgid "You must select a local channel /chess/channelname" msgstr "" -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:865 -msgid "Delete all" +#: ../../addon/chess/chess.php:923 +msgid "Enable notifications" msgstr "" -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:867 -msgid "Sorry! Editing of recurrent events is not yet implemented." +#: ../../addon/twitter/twitter.php:99 +msgid "Post to Twitter" msgstr "" -#: ../../extend/addon/addon/cdav/cdav.php:36 -msgid "Errors encountered creating database table: " +#: ../../addon/twitter/twitter.php:154 +msgid "Twitter settings updated." msgstr "" -#: ../../extend/addon/addon/cdav/cdav.php:197 -msgid "Default Calendar" +#: ../../addon/twitter/twitter.php:183 +msgid "" +"No consumer key pair for Twitter found. Please contact your site " +"administrator." msgstr "" -#: ../../extend/addon/addon/cdav/cdav.php:206 -msgid "Default Addressbook" +#: ../../addon/twitter/twitter.php:205 +msgid "" +"At this Hubzilla instance the Twitter plugin was enabled but you have not " +"yet connected your account to your Twitter account. To do so click the " +"button below to get a PIN from Twitter which you have to copy into the input " +"box below and submit the form. Only your <strong>public</strong> posts will " +"be posted to Twitter." msgstr "" -#: ../../extend/addon/addon/cdav/cdav.php:215 -msgid "CalDAV/CardDAV Settings saved." +#: ../../addon/twitter/twitter.php:207 +msgid "Log in with Twitter" msgstr "" -#: ../../extend/addon/addon/cdav/cdav.php:234 -msgid "Enable CalDAV/CardDAV Server for this channel" +#: ../../addon/twitter/twitter.php:210 +msgid "Copy the PIN from Twitter here" msgstr "" -#: ../../extend/addon/addon/cdav/cdav.php:237 -#, php-format -msgid "Your CalDAV resources are located at %s " +#: ../../addon/twitter/twitter.php:237 +msgid "" +"<strong>Note:</strong> Due your privacy settings (<em>Hide your profile " +"details from unknown viewers?</em>) the link potentially included in public " +"postings relayed to Twitter will lead the visitor to a blank page informing " +"the visitor that the access to your profile has been restricted." msgstr "" -#: ../../extend/addon/addon/cdav/cdav.php:240 -#, php-format -msgid "Your CardDAV resources are located at %s " +#: ../../addon/twitter/twitter.php:242 +msgid "Allow posting to Twitter" msgstr "" -#: ../../extend/addon/addon/cdav/cdav.php:246 -msgid "CalDAV/CardDAV Settings" +#: ../../addon/twitter/twitter.php:242 +msgid "" +"If enabled your public postings can be posted to the associated Twitter " +"account" msgstr "" -#: ../../extend/addon/addon/cdav/cdav.php:272 -#: ../../include/connections.php:896 -msgid "Home, Voice" +#: ../../addon/twitter/twitter.php:246 +msgid "Send public postings to Twitter by default" msgstr "" -#: ../../extend/addon/addon/cdav/cdav.php:273 -#: ../../include/connections.php:897 -msgid "Home, Fax" +#: ../../addon/twitter/twitter.php:246 +msgid "" +"If enabled your public postings will be posted to the associated Twitter " +"account by default" msgstr "" -#: ../../extend/addon/addon/cdav/cdav.php:275 -#: ../../include/connections.php:899 -msgid "Work, Voice" +#: ../../addon/twitter/twitter.php:264 +msgid "Twitter Post Settings" msgstr "" -#: ../../extend/addon/addon/cdav/cdav.php:276 -#: ../../include/connections.php:900 -msgid "Work, Fax" +#: ../../addon/smileybutton/smileybutton.php:273 +msgid "Deactivate the feature" msgstr "" -#: ../../extend/addon/addon/chess/chess.php:276 -#: ../../extend/addon/addon/chess/chess.php:430 -msgid "Invalid game." +#: ../../addon/smileybutton/smileybutton.php:277 +msgid "Hide the button and show the smilies directly." msgstr "" -#: ../../extend/addon/addon/chess/chess.php:282 -#: ../../extend/addon/addon/chess/chess.php:436 -msgid "You are not a player in this game." +#: ../../addon/smileybutton/smileybutton.php:281 +msgid "Smileybutton Settings" msgstr "" -#: ../../extend/addon/addon/chess/chess.php:315 -msgid "You must be a local channel to create a game." +#: ../../addon/piwik/piwik.php:85 +msgid "" +"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> " +"analytics tool." msgstr "" -#: ../../extend/addon/addon/chess/chess.php:333 -msgid "You must select one opponent that is not yourself." +#: ../../addon/piwik/piwik.php:88 +#, php-format +msgid "" +"If you do not want that your visits are logged this way you <a href='%s'>can " +"set a cookie to prevent Piwik from tracking further visits of the site</a> " +"(opt-out)." msgstr "" -#: ../../extend/addon/addon/chess/chess.php:336 -msgid "Creating new game..." +#: ../../addon/piwik/piwik.php:96 +msgid "Piwik Base URL" msgstr "" -#: ../../extend/addon/addon/chess/chess.php:342 -msgid "You must select white or black." +#: ../../addon/piwik/piwik.php:96 +msgid "" +"Absolute path to your Piwik installation. (without protocol (http/s), with " +"trailing slash)" msgstr "" -#: ../../extend/addon/addon/chess/chess.php:349 -msgid "Error creating new game." +#: ../../addon/piwik/piwik.php:97 +msgid "Site ID" msgstr "" -#: ../../extend/addon/addon/chess/chess.php:379 ../../include/channel.php:899 -msgid "Requested channel is not available." +#: ../../addon/piwik/piwik.php:98 +msgid "Show opt-out cookie link?" msgstr "" -#: ../../extend/addon/addon/chess/chess.php:392 -msgid "You must select a local channel /chess/channelname" +#: ../../addon/piwik/piwik.php:99 +msgid "Asynchronous tracking" msgstr "" -#: ../../extend/addon/addon/chess/chess.php:920 -msgid "Enable notifications" +#: ../../addon/piwik/piwik.php:100 +msgid "Enable frontend JavaScript error tracking" msgstr "" -#: ../../extend/addon/addon/likebanner/likebanner.php:51 -msgid "Your Webbie:" +#: ../../addon/piwik/piwik.php:100 +msgid "This feature requires Piwik >= 2.2.0" msgstr "" -#: ../../extend/addon/addon/likebanner/likebanner.php:54 -msgid "Fontsize (px):" +#: ../../addon/tour/tour.php:75 +msgid "Edit your profile and change settings." msgstr "" -#: ../../extend/addon/addon/likebanner/likebanner.php:68 -msgid "Link:" +#: ../../addon/tour/tour.php:76 +msgid "Click here to see activity from your connections." msgstr "" -#: ../../extend/addon/addon/likebanner/likebanner.php:70 -msgid "Like us on Hubzilla" +#: ../../addon/tour/tour.php:77 +msgid "Click here to see your channel home." msgstr "" -#: ../../extend/addon/addon/likebanner/likebanner.php:72 -msgid "Embed:" +#: ../../addon/tour/tour.php:78 +msgid "You can access your private messages from here." msgstr "" -#: ../../extend/addon/addon/openid/Mod_Id.php:85 -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -msgid "Male" +#: ../../addon/tour/tour.php:79 +msgid "Create new events here." msgstr "" -#: ../../extend/addon/addon/openid/Mod_Id.php:87 -#: ../../include/selectors.php:49 ../../include/selectors.php:66 -msgid "Female" +#: ../../addon/tour/tour.php:80 +msgid "" +"You can accept new connections and change permissions for existing ones " +"here. You can also e.g. create groups of contacts." msgstr "" -#: ../../extend/addon/addon/openid/MysqlProvider.php:52 -msgid "First Name" +#: ../../addon/tour/tour.php:81 +msgid "System notifications will arrive here" msgstr "" -#: ../../extend/addon/addon/openid/MysqlProvider.php:53 -msgid "Last Name" +#: ../../addon/tour/tour.php:82 +msgid "Search for content and users" msgstr "" -#: ../../extend/addon/addon/openid/MysqlProvider.php:55 -msgid "Full Name" +#: ../../addon/tour/tour.php:83 +msgid "Browse for new contacts" msgstr "" -#: ../../extend/addon/addon/openid/MysqlProvider.php:61 -msgid "Profile Photo 16px" +#: ../../addon/tour/tour.php:84 +msgid "Launch installed apps" msgstr "" -#: ../../extend/addon/addon/openid/MysqlProvider.php:62 -msgid "Profile Photo 32px" +#: ../../addon/tour/tour.php:85 +msgid "Looking for help? Click here." msgstr "" -#: ../../extend/addon/addon/openid/MysqlProvider.php:63 -msgid "Profile Photo 48px" +#: ../../addon/tour/tour.php:86 +msgid "" +"New events have occurred in your network. Click here to see what has " +"happened!" msgstr "" -#: ../../extend/addon/addon/openid/MysqlProvider.php:64 -msgid "Profile Photo 64px" +#: ../../addon/tour/tour.php:87 +msgid "You have received a new private message. Click here to see from who!" msgstr "" -#: ../../extend/addon/addon/openid/MysqlProvider.php:65 -msgid "Profile Photo 80px" +#: ../../addon/tour/tour.php:88 +msgid "There are events this week. Click here too see which!" msgstr "" -#: ../../extend/addon/addon/openid/MysqlProvider.php:66 -msgid "Profile Photo 128px" +#: ../../addon/tour/tour.php:89 +msgid "You have received a new introduction. Click here to see who!" msgstr "" -#: ../../extend/addon/addon/openid/MysqlProvider.php:67 -msgid "Timezone" +#: ../../addon/tour/tour.php:90 +msgid "" +"There is a new system notification. Click here to see what has happened!" msgstr "" -#: ../../extend/addon/addon/openid/MysqlProvider.php:70 -msgid "Birth Year" +#: ../../addon/tour/tour.php:93 +msgid "Click here to share text, images, videos and sound." msgstr "" -#: ../../extend/addon/addon/openid/MysqlProvider.php:71 -msgid "Birth Month" +#: ../../addon/tour/tour.php:94 +msgid "You can write an optional title for your update (good for long posts)." msgstr "" -#: ../../extend/addon/addon/openid/MysqlProvider.php:72 -msgid "Birth Day" +#: ../../addon/tour/tour.php:95 +msgid "Entering some categories here makes it easier to find your post later." msgstr "" -#: ../../extend/addon/addon/openid/MysqlProvider.php:73 -msgid "Birthdate" +#: ../../addon/tour/tour.php:96 +msgid "Share photos, links, location, etc." msgstr "" -#: ../../extend/addon/addon/openid/openid.php:49 +#: ../../addon/tour/tour.php:97 msgid "" -"We encountered a problem while logging in with the OpenID you provided. " -"Please check the correct spelling of the ID." +"Only want to share content for a while? Make it expire at a certain date." msgstr "" -#: ../../extend/addon/addon/openid/openid.php:49 -msgid "The error message was:" +#: ../../addon/tour/tour.php:98 +msgid "You can password protect content." msgstr "" -#: ../../extend/addon/addon/openid/Mod_Openid.php:30 -msgid "OpenID protocol error. No ID returned." +#: ../../addon/tour/tour.php:99 +msgid "Choose who you share with." msgstr "" -#: ../../extend/addon/addon/openid/Mod_Openid.php:188 -#: ../../include/auth.php:286 -msgid "Login failed." +#: ../../addon/tour/tour.php:101 +msgid "Click here when you are done." msgstr "" -#: ../../extend/addon/addon/diaspora_reconnect/diaspora_reconnect.php:44 -#, php-format -msgid "Reconnecting %d connections" +#: ../../addon/tour/tour.php:104 +msgid "Adjust from which channels posts should be displayed." msgstr "" -#: ../../extend/addon/addon/diaspora_reconnect/diaspora_reconnect.php:63 -msgid "Diaspora Reconnect" +#: ../../addon/tour/tour.php:105 +msgid "Only show posts from channels in the specified privacy group." msgstr "" -#: ../../extend/addon/addon/diaspora_reconnect/diaspora_reconnect.php:65 +#: ../../addon/tour/tour.php:109 msgid "" -"Use this form to re-establish Diaspora connections which were initially made " -"from a different hub." -msgstr "" - -#: ../../extend/addon/addon/diaspora_reconnect/diaspora_reconnect.php:70 -msgid "Reconnect" -msgstr "" - -#: ../../extend/addon/addon/mailtest/mailtest.php:19 -msgid "Send test email" +"Easily find posts containing tags (keywords preceded by the \"#\" symbol)." msgstr "" -#: ../../extend/addon/addon/mailtest/mailtest.php:66 -msgid "Mail sent." +#: ../../addon/tour/tour.php:110 +msgid "Easily find posts in given category." msgstr "" -#: ../../extend/addon/addon/mailtest/mailtest.php:68 -msgid "Sending of mail failed." +#: ../../addon/tour/tour.php:111 +msgid "Easily find posts by date." msgstr "" -#: ../../extend/addon/addon/mailtest/mailtest.php:77 -msgid "Mail Test" +#: ../../addon/tour/tour.php:112 +msgid "" +"Suggested users who have volounteered to be shown as suggestions, and who we " +"think you might find interesting." msgstr "" -#: ../../extend/addon/addon/rendezvous/rendezvous.php:57 -msgid "Errors encountered deleting database table " +#: ../../addon/tour/tour.php:113 +msgid "Here you see channels you have connected to." msgstr "" -#: ../../extend/addon/addon/rendezvous/rendezvous.php:96 -msgid "Drop tables when uninstalling?" +#: ../../addon/tour/tour.php:114 +msgid "Save your search so you can repeat it at a later date." msgstr "" -#: ../../extend/addon/addon/rendezvous/rendezvous.php:96 +#: ../../addon/tour/tour.php:117 msgid "" -"If checked, the Rendezvous database tables will be deleted when the plugin " -"is uninstalled." -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:97 -msgid "Mapbox Access Token" +"If you see this icon you can be sure that the sender is who it say it is. It " +"is normal that it is not always possible to verify the sender, so the icon " +"will be missing sometimes. There is usually no need to worry about that." msgstr "" -#: ../../extend/addon/addon/rendezvous/rendezvous.php:97 +#: ../../addon/tour/tour.php:118 msgid "" -"If you enter a Mapbox access token, it will be used to retrieve map tiles " -"from Mapbox instead of the default OpenStreetMap tile server." -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:162 -msgid "Rendezvous" +"Danger! It seems someone tried to forge a message! This message is not " +"necessarily from who it says it is from!" msgstr "" -#: ../../extend/addon/addon/rendezvous/rendezvous.php:167 +#: ../../addon/tour/tour.php:125 msgid "" -"This identity has been deleted by another member due to inactivity. Please " -"press the \"New identity\" button or refresh the page to register a new " -"identity. You may use the same name." +"Welcome to Hubzilla! Would you like to see a tour of the UI?</p> <p>You can " +"pause it at any time and continue where you left off by reloading the page, " +"or navigting to another page.</p><p>You can also advance by pressing the " +"return key" msgstr "" -#: ../../extend/addon/addon/rendezvous/rendezvous.php:168 -msgid "Welcome to Rendezvous!" +#: ../../addon/sendzid/sendzid.php:25 +msgid "Extended Identity Sharing" msgstr "" -#: ../../extend/addon/addon/rendezvous/rendezvous.php:169 +#: ../../addon/sendzid/sendzid.php:26 msgid "" -"Enter your name to join this rendezvous. To begin sharing your location with " -"the other members, tap the GPS control. When your location is discovered, a " -"red dot will appear and others will be able to see you on the map." -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:171 -msgid "Let's meet here" -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:174 -msgid "New marker" -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:175 -msgid "Edit marker" +"Share your identity with all websites on the internet. When disabled, " +"identity is only shared with sites in the matrix." msgstr "" -#: ../../extend/addon/addon/rendezvous/rendezvous.php:176 -msgid "New identity" +#: ../../addon/tictac/tictac.php:21 +msgid "Three Dimensional Tic-Tac-Toe" msgstr "" -#: ../../extend/addon/addon/rendezvous/rendezvous.php:177 -msgid "Delete marker" +#: ../../addon/tictac/tictac.php:54 +msgid "3D Tic-Tac-Toe" msgstr "" -#: ../../extend/addon/addon/rendezvous/rendezvous.php:178 -msgid "Delete member" +#: ../../addon/tictac/tictac.php:59 +msgid "New game" msgstr "" -#: ../../extend/addon/addon/rendezvous/rendezvous.php:179 -msgid "Edit proximity alert" +#: ../../addon/tictac/tictac.php:60 +msgid "New game with handicap" msgstr "" -#: ../../extend/addon/addon/rendezvous/rendezvous.php:180 +#: ../../addon/tictac/tictac.php:61 msgid "" -"A proximity alert will be issued when this member is within a certain radius " -"of you.<br><br>Enter a radius in meters (0 to disable):" -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:180 -#: ../../extend/addon/addon/rendezvous/rendezvous.php:185 -msgid "distance" -msgstr "" - -#: ../../extend/addon/addon/rendezvous/rendezvous.php:181 -msgid "Proximity alert distance (meters)" +"Three dimensional tic-tac-toe is just like the traditional game except that " +"it is played on multiple levels simultaneously. " msgstr "" -#: ../../extend/addon/addon/rendezvous/rendezvous.php:182 -#: ../../extend/addon/addon/rendezvous/rendezvous.php:184 +#: ../../addon/tictac/tictac.php:62 msgid "" -"A proximity alert will be issued when you are within a certain radius of the " -"marker location.<br><br>Enter a radius in meters (0 to disable):" +"In this case there are three levels. You win by getting three in a row on " +"any level, as well as up, down, and diagonally across the different levels." msgstr "" -#: ../../extend/addon/addon/rendezvous/rendezvous.php:183 -msgid "Marker proximity alert" +#: ../../addon/tictac/tictac.php:64 +msgid "" +"The handicap game disables the center position on the middle level because " +"the player claiming this square often has an unfair advantage." msgstr "" -#: ../../extend/addon/addon/rendezvous/rendezvous.php:186 -msgid "Reminder note" +#: ../../addon/tictac/tictac.php:183 +msgid "You go first..." msgstr "" -#: ../../extend/addon/addon/rendezvous/rendezvous.php:187 -msgid "" -"Enter a note to be displayed when you are within the specified proximity..." +#: ../../addon/tictac/tictac.php:188 +msgid "I'm going first this time..." msgstr "" -#: ../../extend/addon/addon/rendezvous/rendezvous.php:199 -msgid "Add new rendezvous" +#: ../../addon/tictac/tictac.php:194 +msgid "You won!" msgstr "" -#: ../../extend/addon/addon/rendezvous/rendezvous.php:200 -msgid "" -"Create a new rendezvous and share the access link with those you wish to " -"invite to the group. Those who open the link become members of the " -"rendezvous. They can view other member locations, add markers to the map, or " -"share their own locations with the group." +#: ../../addon/tictac/tictac.php:200 ../../addon/tictac/tictac.php:225 +msgid "\"Cat\" game!" msgstr "" -#: ../../extend/addon/addon/firefox/firefox.php:23 -msgid "Install Firefox Sharing Tools" +#: ../../addon/tictac/tictac.php:223 +msgid "I won!" msgstr "" -#: ../../extend/addon/addon/firefox/firefox.php:34 -msgid "Share content from Firefox to $Projectname" +#: ../../addon/pageheader/pageheader.php:43 +msgid "Message to display on every page on this server" msgstr "" -#: ../../extend/addon/addon/firefox/firefox.php:37 -msgid "Install Firefox Sharing Tools to this web browser" +#: ../../addon/pageheader/pageheader.php:48 +msgid "Pageheader Settings" msgstr "" -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:105 -msgid "Error retrieving wiki" +#: ../../addon/pageheader/pageheader.php:64 +msgid "pageheader Settings saved." msgstr "" -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:112 -msgid "Error creating zip file export folder" +#: ../../addon/moremoods/moremoods.php:19 +msgid "lonely" msgstr "" -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:130 -msgid "Error downloading wiki: " +#: ../../addon/moremoods/moremoods.php:20 +msgid "drunk" msgstr "" -#: ../../extend/addon/addon/gitwiki/gitwiki.php:76 -#: ../../include/widgets.php:970 -msgid "Wiki Pages" +#: ../../addon/moremoods/moremoods.php:21 +msgid "horny" msgstr "" -#: ../../extend/addon/addon/gitwiki/gitwiki.php:81 -#: ../../include/widgets.php:976 -msgid "Add new page" +#: ../../addon/moremoods/moremoods.php:22 +msgid "stoned" msgstr "" -#: ../../extend/addon/addon/gitwiki/gitwiki.php:82 -#: ../../include/widgets.php:977 -msgid "Page name" +#: ../../addon/moremoods/moremoods.php:23 +msgid "fucked up" msgstr "" -#: ../../extend/addon/addon/gitwiki/gitwiki.php:95 -#: ../../include/widgets.php:927 -msgid "Wiki List" +#: ../../addon/moremoods/moremoods.php:24 +msgid "clusterfucked" msgstr "" -#: ../../extend/addon/addon/gnusoc/gnusoc.php:129 -msgid "Enable the GNU-Social protocol for this channel" +#: ../../addon/moremoods/moremoods.php:25 +msgid "crazy" msgstr "" -#: ../../extend/addon/addon/opensearch/opensearch.php:26 ../../boot.php:1187 -#, php-format -msgctxt "opensearch" -msgid "Search %1$s (%2$s)" +#: ../../addon/moremoods/moremoods.php:26 +msgid "hurt" msgstr "" -#: ../../extend/addon/addon/opensearch/opensearch.php:28 ../../boot.php:1187 -msgctxt "opensearch" -msgid "$Projectname" +#: ../../addon/moremoods/moremoods.php:27 +msgid "sleepy" msgstr "" -#: ../../extend/addon/addon/opensearch/opensearch.php:43 -msgid "Search $Projectname" +#: ../../addon/moremoods/moremoods.php:28 +msgid "grumpy" msgstr "" -#: ../../include/dba/dba_driver.php:187 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" +#: ../../addon/moremoods/moremoods.php:29 +msgid "high" msgstr "" -#: ../../include/language.php:367 ../../include/text.php:1783 -msgid "default" +#: ../../addon/moremoods/moremoods.php:30 +msgid "semi-conscious" msgstr "" -#: ../../include/language.php:380 -msgid "Select an alternate language" +#: ../../addon/moremoods/moremoods.php:31 +msgid "in love" msgstr "" -#: ../../include/account.php:35 -msgid "Not a valid email address" +#: ../../addon/moremoods/moremoods.php:32 +msgid "in lust" msgstr "" -#: ../../include/account.php:37 -msgid "Your email domain is not among those allowed on this site" +#: ../../addon/moremoods/moremoods.php:33 +msgid "naked" msgstr "" -#: ../../include/account.php:43 -msgid "Your email address is already registered at this site." +#: ../../addon/moremoods/moremoods.php:34 +msgid "stinky" msgstr "" -#: ../../include/account.php:75 -msgid "An invitation is required." +#: ../../addon/moremoods/moremoods.php:35 +msgid "sweaty" msgstr "" -#: ../../include/account.php:79 -msgid "Invitation could not be verified." +#: ../../addon/moremoods/moremoods.php:36 +msgid "bleeding out" msgstr "" -#: ../../include/account.php:130 -msgid "Please enter the required information." +#: ../../addon/moremoods/moremoods.php:37 +msgid "victorious" msgstr "" -#: ../../include/account.php:198 -msgid "Failed to store account information." +#: ../../addon/moremoods/moremoods.php:38 +msgid "defeated" msgstr "" -#: ../../include/account.php:263 -#, php-format -msgid "Registration confirmation for %s" +#: ../../addon/moremoods/moremoods.php:39 +msgid "envious" msgstr "" -#: ../../include/account.php:330 -#, php-format -msgid "Registration request at %s" +#: ../../addon/moremoods/moremoods.php:40 +msgid "jealous" msgstr "" -#: ../../include/account.php:352 -msgid "your registration password" +#: ../../addon/xmpp/xmpp.php:31 +msgid "XMPP settings updated." msgstr "" -#: ../../include/account.php:358 ../../include/account.php:420 -#, php-format -msgid "Registration details for %s" +#: ../../addon/xmpp/xmpp.php:53 +msgid "Enable Chat" msgstr "" -#: ../../include/account.php:431 -msgid "Account approved." +#: ../../addon/xmpp/xmpp.php:58 +msgid "Individual credentials" msgstr "" -#: ../../include/account.php:471 -#, php-format -msgid "Registration revoked for %s" +#: ../../addon/xmpp/xmpp.php:64 +msgid "Jabber BOSH server" msgstr "" -#: ../../include/account.php:756 ../../include/account.php:758 -msgid "Click here to upgrade." +#: ../../addon/xmpp/xmpp.php:69 +msgid "XMPP Settings" msgstr "" -#: ../../include/account.php:764 -msgid "This action exceeds the limits set by your subscription plan." +#: ../../addon/xmpp/xmpp.php:92 +msgid "Jabber BOSH host" msgstr "" -#: ../../include/account.php:769 -msgid "This action is not available under your subscription plan." +#: ../../addon/xmpp/xmpp.php:93 +msgid "Use central userbase" msgstr "" -#: ../../include/acl_selectors.php:208 -msgid "Who can see this?" +#: ../../addon/xmpp/xmpp.php:93 +msgid "" +"If enabled, members will automatically login to an ejabberd server that has " +"to be installed on this machine with synchronized credentials via the " +"\"auth_ejabberd.php\" script." msgstr "" -#: ../../include/acl_selectors.php:209 -msgid "Custom selection" +#: ../../addon/wholikesme/wholikesme.php:29 +msgid "Who likes me?" msgstr "" -#: ../../include/acl_selectors.php:210 -msgid "" -"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " -"the scope of \"Show\"." +#: ../../addon/pumpio/pumpio.php:148 +msgid "You are now authenticated to pumpio." msgstr "" -#: ../../include/acl_selectors.php:211 -msgid "Show" +#: ../../addon/pumpio/pumpio.php:149 +msgid "return to the featured settings page" msgstr "" -#: ../../include/acl_selectors.php:212 -msgid "Don't show" +#: ../../addon/pumpio/pumpio.php:163 +msgid "Post to Pump.io" msgstr "" -#: ../../include/acl_selectors.php:245 -#, php-format -msgid "" -"Post permissions %s cannot be changed %s after a post is shared.</br />These " -"permissions set who is allowed to view the post." +#: ../../addon/pumpio/pumpio.php:198 +msgid "Pump.io servername" msgstr "" -#: ../../include/taxonomy.php:188 ../../include/taxonomy.php:270 -#: ../../include/widgets.php:46 ../../include/widgets.php:469 -#: ../../include/contact_widgets.php:91 -msgid "Categories" +#: ../../addon/pumpio/pumpio.php:198 +msgid "Without \"http://\" or \"https://\"" msgstr "" -#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 -msgid "Tags" +#: ../../addon/pumpio/pumpio.php:202 +msgid "Pump.io username" msgstr "" -#: ../../include/taxonomy.php:293 -msgid "Keywords" +#: ../../addon/pumpio/pumpio.php:202 +msgid "Without the servername" msgstr "" -#: ../../include/taxonomy.php:314 -msgid "have" +#: ../../addon/pumpio/pumpio.php:213 +msgid "You are not authenticated to pumpio" msgstr "" -#: ../../include/taxonomy.php:314 -msgid "has" +#: ../../addon/pumpio/pumpio.php:215 +msgid "(Re-)Authenticate your pump.io connection" msgstr "" -#: ../../include/taxonomy.php:315 -msgid "want" +#: ../../addon/pumpio/pumpio.php:219 +msgid "Enable pump.io Post Plugin" msgstr "" -#: ../../include/taxonomy.php:315 -msgid "wants" +#: ../../addon/pumpio/pumpio.php:223 +msgid "Post to pump.io by default" msgstr "" -#: ../../include/taxonomy.php:316 -msgid "likes" +#: ../../addon/pumpio/pumpio.php:227 +msgid "Should posts be public" msgstr "" -#: ../../include/taxonomy.php:317 -msgid "dislikes" +#: ../../addon/pumpio/pumpio.php:231 +msgid "Mirror all public posts" msgstr "" -#: ../../include/markdown.php:444 -msgid "Attachments:" +#: ../../addon/pumpio/pumpio.php:237 +msgid "Pump.io Post Settings" msgstr "" -#: ../../include/markdown.php:539 ../../include/event.php:22 -#: ../../include/event.php:69 -msgid "l F d, Y \\@ g:i A" +#: ../../addon/pumpio/pumpio.php:266 +msgid "PumpIO Settings saved." msgstr "" -#: ../../include/markdown.php:541 -msgid "$Projectname event notification:" +#: ../../addon/ldapauth/ldapauth.php:61 +msgid "An account has been created for you." msgstr "" -#: ../../include/markdown.php:545 ../../include/event.php:30 -#: ../../include/event.php:73 -msgid "Starts:" +#: ../../addon/ldapauth/ldapauth.php:68 +msgid "Authentication successful but rejected: account creation is disabled." msgstr "" -#: ../../include/markdown.php:553 ../../include/event.php:40 -#: ../../include/event.php:77 -msgid "Finishes:" +#: ../../addon/opensearch/opensearch.php:43 +msgid "Search $Projectname" msgstr "" -#: ../../include/datetime.php:147 -msgid "Birthday" +#: ../../addon/redfiles/redfiles.php:119 +msgid "Redmatrix File Storage Import" msgstr "" -#: ../../include/datetime.php:149 -msgid "Age: " +#: ../../addon/redfiles/redfiles.php:120 +msgid "This will import all your Redmatrix cloud files to this channel." msgstr "" -#: ../../include/datetime.php:151 -msgid "YYYY-MM-DD or MM-DD" +#: ../../addon/redfiles/redfilehelper.php:64 +msgid "file" msgstr "" -#: ../../include/datetime.php:286 ../../boot.php:2578 -msgid "never" +#: ../../addon/hubwall/hubwall.php:19 +msgid "Send email to all members" msgstr "" -#: ../../include/datetime.php:292 -msgid "less than a second ago" +#: ../../addon/hubwall/hubwall.php:33 +#, php-format +msgid "$1%s Administrator" msgstr "" -#: ../../include/datetime.php:310 +#: ../../addon/hubwall/hubwall.php:73 #, php-format -msgctxt "e.g. 22 hours ago, 1 minute ago" -msgid "%1$d %2$s ago" +msgid "%1$d of %2$d messages sent." msgstr "" -#: ../../include/datetime.php:321 -msgctxt "relative_date" -msgid "year" -msgid_plural "years" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:324 -msgctxt "relative_date" -msgid "month" -msgid_plural "months" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:327 -msgctxt "relative_date" -msgid "week" -msgid_plural "weeks" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:330 -msgctxt "relative_date" -msgid "day" -msgid_plural "days" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:333 -msgctxt "relative_date" -msgid "hour" -msgid_plural "hours" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:336 -msgctxt "relative_date" -msgid "minute" -msgid_plural "minutes" -msgstr[0] "" -msgstr[1] "" - -#: ../../include/datetime.php:339 -msgctxt "relative_date" -msgid "second" -msgid_plural "seconds" -msgstr[0] "" -msgstr[1] "" +#: ../../addon/hubwall/hubwall.php:81 +msgid "Send email to all hub members." +msgstr "" -#: ../../include/datetime.php:576 -#, php-format -msgid "%1$s's birthday" +#: ../../addon/hubwall/hubwall.php:93 +msgid "Sender Email address" msgstr "" -#: ../../include/datetime.php:577 -#, php-format -msgid "Happy Birthday %1$s" +#: ../../addon/hubwall/hubwall.php:94 +msgid "Test mode (only send to hub administrator)" msgstr "" #: ../../include/selectors.php:30 @@ -11258,738 +10982,719 @@ msgstr "" msgid "Ask me" msgstr "" -#: ../../include/connections.php:127 -msgid "New window" -msgstr "" - -#: ../../include/connections.php:128 -msgid "Open the selected location in a different window or browser tab" -msgstr "" - -#: ../../include/connections.php:246 -#, php-format -msgid "User '%s' deleted" -msgstr "" - -#: ../../include/conversation.php:204 +#: ../../include/conversation.php:200 #, php-format msgid "%1$s is now connected with %2$s" msgstr "" -#: ../../include/conversation.php:239 +#: ../../include/conversation.php:235 #, php-format msgid "%1$s poked %2$s" msgstr "" -#: ../../include/conversation.php:243 ../../include/text.php:1092 -#: ../../include/text.php:1097 +#: ../../include/conversation.php:239 ../../include/text.php:1115 +#: ../../include/text.php:1120 msgid "poked" msgstr "" -#: ../../include/conversation.php:690 +#: ../../include/conversation.php:691 #, php-format msgid "View %s's profile @ %s" msgstr "" -#: ../../include/conversation.php:710 +#: ../../include/conversation.php:711 msgid "Categories:" msgstr "" -#: ../../include/conversation.php:711 +#: ../../include/conversation.php:712 msgid "Filed under:" msgstr "" -#: ../../include/conversation.php:736 +#: ../../include/conversation.php:737 msgid "View in context" msgstr "" -#: ../../include/conversation.php:832 +#: ../../include/conversation.php:834 msgid "remove" msgstr "" -#: ../../include/conversation.php:836 ../../include/nav.php:292 +#: ../../include/conversation.php:838 ../../include/nav.php:272 msgid "Loading..." msgstr "" -#: ../../include/conversation.php:837 +#: ../../include/conversation.php:839 msgid "Delete Selected Items" msgstr "" -#: ../../include/conversation.php:930 ../../include/conversation.php:972 +#: ../../include/conversation.php:882 msgid "View Source" msgstr "" -#: ../../include/conversation.php:931 ../../include/conversation.php:982 +#: ../../include/conversation.php:892 msgid "Follow Thread" msgstr "" -#: ../../include/conversation.php:932 ../../include/conversation.php:991 +#: ../../include/conversation.php:901 msgid "Unfollow Thread" msgstr "" -#: ../../include/conversation.php:937 ../../include/conversation.php:1059 +#: ../../include/conversation.php:992 msgid "Activity/Posts" msgstr "" -#: ../../include/conversation.php:939 ../../include/conversation.php:1079 +#: ../../include/conversation.php:1012 msgid "Edit Connection" msgstr "" -#: ../../include/conversation.php:940 ../../include/conversation.php:1089 +#: ../../include/conversation.php:1022 msgid "Message" msgstr "" -#: ../../include/conversation.php:1223 +#: ../../include/conversation.php:1156 #, php-format msgid "%s likes this." msgstr "" -#: ../../include/conversation.php:1223 +#: ../../include/conversation.php:1156 #, php-format msgid "%s doesn't like this." msgstr "" -#: ../../include/conversation.php:1227 +#: ../../include/conversation.php:1160 #, php-format msgid "<span %1$s>%2$d people</span> like this." msgid_plural "<span %1$s>%2$d people</span> like this." msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1229 +#: ../../include/conversation.php:1162 #, php-format msgid "<span %1$s>%2$d people</span> don't like this." msgid_plural "<span %1$s>%2$d people</span> don't like this." msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1235 +#: ../../include/conversation.php:1168 msgid "and" msgstr "" -#: ../../include/conversation.php:1238 +#: ../../include/conversation.php:1171 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1239 +#: ../../include/conversation.php:1172 #, php-format msgid "%s like this." msgstr "" -#: ../../include/conversation.php:1239 +#: ../../include/conversation.php:1172 #, php-format msgid "%s don't like this." msgstr "" -#: ../../include/conversation.php:1282 +#: ../../include/conversation.php:1215 msgid "Set your location" msgstr "" -#: ../../include/conversation.php:1283 +#: ../../include/conversation.php:1216 msgid "Clear browser location" msgstr "" -#: ../../include/conversation.php:1331 +#: ../../include/conversation.php:1264 msgid "Tag term:" msgstr "" -#: ../../include/conversation.php:1332 +#: ../../include/conversation.php:1265 msgid "Where are you right now?" msgstr "" -#: ../../include/conversation.php:1337 +#: ../../include/conversation.php:1270 msgid "Choose a different album..." msgstr "" -#: ../../include/conversation.php:1341 +#: ../../include/conversation.php:1274 msgid "Comments enabled" msgstr "" -#: ../../include/conversation.php:1342 +#: ../../include/conversation.php:1275 msgid "Comments disabled" msgstr "" -#: ../../include/conversation.php:1380 +#: ../../include/conversation.php:1313 msgid "Page link name" msgstr "" -#: ../../include/conversation.php:1383 +#: ../../include/conversation.php:1316 msgid "Post as" msgstr "" -#: ../../include/conversation.php:1397 +#: ../../include/conversation.php:1330 msgid "Toggle voting" msgstr "" -#: ../../include/conversation.php:1400 +#: ../../include/conversation.php:1333 msgid "Disable comments" msgstr "" -#: ../../include/conversation.php:1401 +#: ../../include/conversation.php:1334 msgid "Toggle comments" msgstr "" -#: ../../include/conversation.php:1409 +#: ../../include/conversation.php:1342 msgid "Categories (optional, comma-separated list)" msgstr "" -#: ../../include/conversation.php:1432 +#: ../../include/conversation.php:1365 msgid "Other networks and post services" msgstr "" -#: ../../include/conversation.php:1438 +#: ../../include/conversation.php:1371 msgid "Set publish date" msgstr "" -#: ../../include/conversation.php:1692 +#: ../../include/conversation.php:1634 msgid "Discover" msgstr "" -#: ../../include/conversation.php:1695 +#: ../../include/conversation.php:1637 msgid "Imported public streams" msgstr "" -#: ../../include/conversation.php:1700 +#: ../../include/conversation.php:1642 msgid "Commented Order" msgstr "" -#: ../../include/conversation.php:1703 +#: ../../include/conversation.php:1645 msgid "Sort by Comment Date" msgstr "" -#: ../../include/conversation.php:1707 +#: ../../include/conversation.php:1649 msgid "Posted Order" msgstr "" -#: ../../include/conversation.php:1710 +#: ../../include/conversation.php:1652 msgid "Sort by Post Date" msgstr "" -#: ../../include/conversation.php:1718 +#: ../../include/conversation.php:1660 msgid "Posts that mention or involve you" msgstr "" -#: ../../include/conversation.php:1727 +#: ../../include/conversation.php:1669 msgid "Activity Stream - by date" msgstr "" -#: ../../include/conversation.php:1733 +#: ../../include/conversation.php:1675 msgid "Starred" msgstr "" -#: ../../include/conversation.php:1736 +#: ../../include/conversation.php:1678 msgid "Favourite Posts" msgstr "" -#: ../../include/conversation.php:1743 +#: ../../include/conversation.php:1685 msgid "Spam" msgstr "" -#: ../../include/conversation.php:1746 +#: ../../include/conversation.php:1688 msgid "Posts flagged as SPAM" msgstr "" -#: ../../include/conversation.php:1818 +#: ../../include/conversation.php:1763 ../../include/nav.php:372 msgid "Status Messages and Posts" msgstr "" -#: ../../include/conversation.php:1830 +#: ../../include/conversation.php:1776 ../../include/nav.php:385 msgid "Profile Details" msgstr "" -#: ../../include/conversation.php:1839 ../../include/photos.php:515 +#: ../../include/conversation.php:1786 ../../include/nav.php:395 +#: ../../include/photos.php:528 msgid "Photo Albums" msgstr "" -#: ../../include/conversation.php:1846 +#: ../../include/conversation.php:1794 ../../include/nav.php:403 msgid "Files and Storage" msgstr "" -#: ../../include/conversation.php:1866 ../../include/conversation.php:1869 -#: ../../include/widgets.php:902 -msgid "Chatrooms" -msgstr "" - -#: ../../include/conversation.php:1879 +#: ../../include/conversation.php:1830 ../../include/nav.php:438 msgid "Bookmarks" msgstr "" -#: ../../include/conversation.php:1882 +#: ../../include/conversation.php:1833 ../../include/nav.php:441 msgid "Saved Bookmarks" msgstr "" -#: ../../include/conversation.php:1892 +#: ../../include/conversation.php:1844 ../../include/nav.php:452 msgid "View Webpages" msgstr "" -#: ../../include/conversation.php:1958 +#: ../../include/conversation.php:1913 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1961 +#: ../../include/conversation.php:1916 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1964 +#: ../../include/conversation.php:1919 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1967 +#: ../../include/conversation.php:1922 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1970 +#: ../../include/conversation.php:1925 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1973 +#: ../../include/conversation.php:1928 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" msgstr[0] "" msgstr[1] "" -#: ../../include/message.php:32 -msgid "Unable to determine sender." +#: ../../include/permissions.php:35 +msgid "Can view my normal stream and posts" msgstr "" -#: ../../include/message.php:69 -msgid "No recipient provided." +#: ../../include/permissions.php:39 +msgid "Can view my webpages" msgstr "" -#: ../../include/message.php:74 -msgid "[no subject]" +#: ../../include/permissions.php:43 +msgid "Can post on my channel page (\"wall\")" msgstr "" -#: ../../include/message.php:225 -msgid "Stored post could not be verified." +#: ../../include/permissions.php:46 +msgid "Can like/dislike stuff" msgstr "" -#: ../../include/security.php:117 -msgid "guest:" +#: ../../include/permissions.php:46 +msgid "Profiles and things other than posts/comments" msgstr "" -#: ../../include/security.php:532 -msgid "" -"The form security token was not correct. This probably happened because the " -"form has been opened for too long (>3 hours) before submitting it." +#: ../../include/permissions.php:48 +msgid "Can forward to all my channel contacts via post @mentions" msgstr "" -#: ../../include/widgets.php:103 -msgid "System" +#: ../../include/permissions.php:48 +msgid "Advanced - useful for creating group forum channels" msgstr "" -#: ../../include/widgets.php:106 -msgid "New App" +#: ../../include/permissions.php:49 +msgid "Can chat with me (when available)" msgstr "" -#: ../../include/widgets.php:107 -msgid "Edit Apps" +#: ../../include/permissions.php:50 +msgid "Can write to my file storage and photos" msgstr "" -#: ../../include/widgets.php:155 -msgid "Suggestions" +#: ../../include/permissions.php:51 +msgid "Can edit my webpages" msgstr "" -#: ../../include/widgets.php:156 -msgid "See more..." +#: ../../include/permissions.php:53 +msgid "Somewhat advanced - very useful in open communities" msgstr "" -#: ../../include/widgets.php:176 -#, php-format -msgid "You have %1$.0f of %2$.0f allowed connections." +#: ../../include/permissions.php:55 +msgid "Can administer my channel resources" msgstr "" -#: ../../include/widgets.php:182 -msgid "Add New Connection" +#: ../../include/permissions.php:55 +msgid "Extremely advanced. Leave this alone unless you know what you are doing" msgstr "" -#: ../../include/widgets.php:183 -msgid "Enter channel address" +#: ../../include/dir_fns.php:141 +msgid "Directory Options" msgstr "" -#: ../../include/widgets.php:184 -msgid "Examples: bob@example.com, https://example.com/barbara" +#: ../../include/dir_fns.php:143 +msgid "Safe Mode" msgstr "" -#: ../../include/widgets.php:200 -msgid "Notes" +#: ../../include/dir_fns.php:144 +msgid "Public Forums Only" msgstr "" -#: ../../include/widgets.php:276 -msgid "Remove term" +#: ../../include/dir_fns.php:145 +msgid "This Website Only" msgstr "" -#: ../../include/widgets.php:284 ../../include/features.php:301 -msgid "Saved Searches" +#: ../../include/bookmarks.php:34 +#, php-format +msgid "%1$s's bookmarks" msgstr "" -#: ../../include/widgets.php:285 ../../include/group.php:336 -msgid "add" +#: ../../include/import.php:41 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." msgstr "" -#: ../../include/widgets.php:347 ../../include/contact_widgets.php:53 -#: ../../include/features.php:390 -msgid "Saved Folders" +#: ../../include/import.php:105 +msgid "Cloned channel not found. Import failed." msgstr "" -#: ../../include/widgets.php:350 ../../include/widgets.php:472 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" +#: ../../include/text.php:478 +msgid "prev" msgstr "" -#: ../../include/widgets.php:391 -msgid "Archives" +#: ../../include/text.php:480 +msgid "first" msgstr "" -#: ../../include/widgets.php:563 -msgid "Refresh" +#: ../../include/text.php:509 +msgid "last" msgstr "" -#: ../../include/widgets.php:603 -msgid "Account settings" +#: ../../include/text.php:512 +msgid "next" msgstr "" -#: ../../include/widgets.php:609 -msgid "Channel settings" +#: ../../include/text.php:523 +msgid "older" msgstr "" -#: ../../include/widgets.php:618 -msgid "Additional features" +#: ../../include/text.php:525 +msgid "newer" msgstr "" -#: ../../include/widgets.php:625 -msgid "Feature/Addon settings" +#: ../../include/text.php:945 +msgid "No connections" msgstr "" -#: ../../include/widgets.php:631 -msgid "Display settings" +#: ../../include/text.php:970 +#, php-format +msgid "View all %s connections" msgstr "" -#: ../../include/widgets.php:638 -msgid "Manage locations" +#: ../../include/text.php:1115 ../../include/text.php:1120 +msgid "poke" msgstr "" -#: ../../include/widgets.php:645 -msgid "Export channel" +#: ../../include/text.php:1121 +msgid "ping" msgstr "" -#: ../../include/widgets.php:651 -msgid "Connected apps" +#: ../../include/text.php:1121 +msgid "pinged" msgstr "" -#: ../../include/widgets.php:666 ../../include/features.php:153 -msgid "Permission Groups" +#: ../../include/text.php:1122 +msgid "prod" msgstr "" -#: ../../include/widgets.php:683 -msgid "Premium Channel Settings" +#: ../../include/text.php:1122 +msgid "prodded" msgstr "" -#: ../../include/widgets.php:712 -msgid "Private Mail Menu" +#: ../../include/text.php:1123 +msgid "slap" msgstr "" -#: ../../include/widgets.php:714 -msgid "Combined View" +#: ../../include/text.php:1123 +msgid "slapped" msgstr "" -#: ../../include/widgets.php:719 ../../include/nav.php:213 -msgid "Inbox" +#: ../../include/text.php:1124 +msgid "finger" msgstr "" -#: ../../include/widgets.php:724 ../../include/nav.php:214 -msgid "Outbox" +#: ../../include/text.php:1124 +msgid "fingered" msgstr "" -#: ../../include/widgets.php:729 ../../include/nav.php:215 -msgid "New Message" +#: ../../include/text.php:1125 +msgid "rebuff" msgstr "" -#: ../../include/widgets.php:746 ../../include/widgets.php:758 -msgid "Conversations" +#: ../../include/text.php:1125 +msgid "rebuffed" msgstr "" -#: ../../include/widgets.php:750 -msgid "Received Messages" +#: ../../include/text.php:1137 +msgid "happy" msgstr "" -#: ../../include/widgets.php:754 -msgid "Sent Messages" +#: ../../include/text.php:1138 +msgid "sad" msgstr "" -#: ../../include/widgets.php:768 -msgid "No messages." +#: ../../include/text.php:1139 +msgid "mellow" msgstr "" -#: ../../include/widgets.php:786 -msgid "Delete conversation" +#: ../../include/text.php:1140 +msgid "tired" msgstr "" -#: ../../include/widgets.php:812 -msgid "Events Tools" +#: ../../include/text.php:1141 +msgid "perky" msgstr "" -#: ../../include/widgets.php:813 -msgid "Export Calendar" +#: ../../include/text.php:1142 +msgid "angry" msgstr "" -#: ../../include/widgets.php:814 -msgid "Import Calendar" +#: ../../include/text.php:1143 +msgid "stupefied" msgstr "" -#: ../../include/widgets.php:906 -msgid "Overview" +#: ../../include/text.php:1144 +msgid "puzzled" msgstr "" -#: ../../include/widgets.php:913 -msgid "Chat Members" +#: ../../include/text.php:1145 +msgid "interested" msgstr "" -#: ../../include/widgets.php:991 -msgctxt "wiki_history" -msgid "Message" +#: ../../include/text.php:1146 +msgid "bitter" msgstr "" -#: ../../include/widgets.php:1013 -msgid "Bookmarked Chatrooms" +#: ../../include/text.php:1147 +msgid "cheerful" msgstr "" -#: ../../include/widgets.php:1044 -msgid "Suggested Chatrooms" +#: ../../include/text.php:1148 +msgid "alive" msgstr "" -#: ../../include/widgets.php:1189 ../../include/widgets.php:1301 -msgid "photo/image" +#: ../../include/text.php:1149 +msgid "annoyed" msgstr "" -#: ../../include/widgets.php:1244 -msgid "Click to show more" +#: ../../include/text.php:1150 +msgid "anxious" msgstr "" -#: ../../include/widgets.php:1395 -msgid "Rating Tools" +#: ../../include/text.php:1151 +msgid "cranky" msgstr "" -#: ../../include/widgets.php:1399 ../../include/widgets.php:1401 -msgid "Rate Me" +#: ../../include/text.php:1152 +msgid "disturbed" msgstr "" -#: ../../include/widgets.php:1404 -msgid "View Ratings" +#: ../../include/text.php:1153 +msgid "frustrated" msgstr "" -#: ../../include/widgets.php:1497 -msgid "Forums" +#: ../../include/text.php:1154 +msgid "depressed" msgstr "" -#: ../../include/widgets.php:1526 -msgid "Tasks" +#: ../../include/text.php:1155 +msgid "motivated" msgstr "" -#: ../../include/widgets.php:1592 ../../include/widgets.php:1630 -msgid "Member registrations waiting for confirmation" +#: ../../include/text.php:1156 +msgid "relaxed" msgstr "" -#: ../../include/widgets.php:1598 -msgid "Inspect queue" +#: ../../include/text.php:1157 +msgid "surprised" msgstr "" -#: ../../include/widgets.php:1600 -msgid "DB updates" +#: ../../include/text.php:1335 ../../include/js_strings.php:70 +msgid "Monday" msgstr "" -#: ../../include/widgets.php:1625 ../../include/nav.php:233 -msgid "Admin" +#: ../../include/text.php:1335 ../../include/js_strings.php:71 +msgid "Tuesday" msgstr "" -#: ../../include/widgets.php:1626 -msgid "Plugin Features" +#: ../../include/text.php:1335 ../../include/js_strings.php:72 +msgid "Wednesday" msgstr "" -#: ../../include/zot.php:652 -msgid "Invalid data packet" +#: ../../include/text.php:1335 ../../include/js_strings.php:73 +msgid "Thursday" msgstr "" -#: ../../include/zot.php:668 -msgid "Unable to verify channel signature" +#: ../../include/text.php:1335 ../../include/js_strings.php:74 +msgid "Friday" msgstr "" -#: ../../include/zot.php:2319 -#, php-format -msgid "Unable to verify site signature for %s" +#: ../../include/text.php:1335 ../../include/js_strings.php:75 +msgid "Saturday" msgstr "" -#: ../../include/zot.php:3725 -msgid "invalid target signature" +#: ../../include/text.php:1335 ../../include/js_strings.php:69 +msgid "Sunday" msgstr "" -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" +#: ../../include/text.php:1339 ../../include/js_strings.php:45 +msgid "January" msgstr "" -#: ../../include/channel.php:67 -msgid "Empty name" +#: ../../include/text.php:1339 ../../include/js_strings.php:46 +msgid "February" msgstr "" -#: ../../include/channel.php:70 -msgid "Name too long" +#: ../../include/text.php:1339 ../../include/js_strings.php:47 +msgid "March" msgstr "" -#: ../../include/channel.php:181 -msgid "No account identifier" +#: ../../include/text.php:1339 ../../include/js_strings.php:48 +msgid "April" msgstr "" -#: ../../include/channel.php:193 -msgid "Nickname is required." +#: ../../include/text.php:1339 +msgid "May" msgstr "" -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." +#: ../../include/text.php:1339 ../../include/js_strings.php:50 +msgid "June" msgstr "" -#: ../../include/channel.php:212 -msgid "" -"Nickname has unsupported characters or is already being used on this site." +#: ../../include/text.php:1339 ../../include/js_strings.php:51 +msgid "July" msgstr "" -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" +#: ../../include/text.php:1339 ../../include/js_strings.php:52 +msgid "August" msgstr "" -#: ../../include/channel.php:344 -msgid "Default Profile" +#: ../../include/text.php:1339 ../../include/js_strings.php:53 +msgid "September" msgstr "" -#: ../../include/channel.php:1045 -msgid "Create New Profile" +#: ../../include/text.php:1339 ../../include/js_strings.php:54 +msgid "October" msgstr "" -#: ../../include/channel.php:1065 -msgid "Visible to everybody" +#: ../../include/text.php:1339 ../../include/js_strings.php:55 +msgid "November" msgstr "" -#: ../../include/channel.php:1138 ../../include/channel.php:1257 -msgid "Gender:" +#: ../../include/text.php:1339 ../../include/js_strings.php:56 +msgid "December" msgstr "" -#: ../../include/channel.php:1140 ../../include/channel.php:1312 -msgid "Homepage:" +#: ../../include/text.php:1403 ../../include/text.php:1407 +msgid "Unknown Attachment" msgstr "" -#: ../../include/channel.php:1141 -msgid "Online Now" +#: ../../include/text.php:1409 +msgid "unknown" msgstr "" -#: ../../include/channel.php:1262 -msgid "Like this channel" +#: ../../include/text.php:1445 +msgid "remove category" msgstr "" -#: ../../include/channel.php:1286 -msgid "j F, Y" +#: ../../include/text.php:1519 +msgid "remove from file" msgstr "" -#: ../../include/channel.php:1287 -msgid "j F" +#: ../../include/text.php:1781 ../../include/language.php:367 +msgid "default" msgstr "" -#: ../../include/channel.php:1294 -msgid "Birthday:" +#: ../../include/text.php:1789 +msgid "Page layout" msgstr "" -#: ../../include/channel.php:1307 -#, php-format -msgid "for %1$d %2$s" +#: ../../include/text.php:1789 +msgid "You can create your own with the layouts tool" msgstr "" -#: ../../include/channel.php:1310 -msgid "Sexual Preference:" +#: ../../include/text.php:1817 +msgid "Page content type" msgstr "" -#: ../../include/channel.php:1316 -msgid "Tags:" +#: ../../include/text.php:1950 +msgid "activity" msgstr "" -#: ../../include/channel.php:1318 -msgid "Political Views:" +#: ../../include/text.php:2264 +msgid "Design Tools" msgstr "" -#: ../../include/channel.php:1320 -msgid "Religion:" +#: ../../include/text.php:2270 +msgid "Pages" msgstr "" -#: ../../include/channel.php:1324 -msgid "Hobbies/Interests:" +#: ../../include/text.php:2292 +msgid "Import website..." msgstr "" -#: ../../include/channel.php:1326 -msgid "Likes:" +#: ../../include/text.php:2293 +msgid "Select folder to import" msgstr "" -#: ../../include/channel.php:1328 -msgid "Dislikes:" +#: ../../include/text.php:2294 +msgid "Import from a zipped folder:" msgstr "" -#: ../../include/channel.php:1330 -msgid "Contact information and Social Networks:" +#: ../../include/text.php:2295 +msgid "Import from cloud files:" msgstr "" -#: ../../include/channel.php:1332 -msgid "My other channels:" +#: ../../include/text.php:2296 +msgid "/cloud/channel/path/to/folder" msgstr "" -#: ../../include/channel.php:1334 -msgid "Musical interests:" +#: ../../include/text.php:2297 +msgid "Enter path to website files" msgstr "" -#: ../../include/channel.php:1336 -msgid "Books, literature:" +#: ../../include/text.php:2298 +msgid "Select folder" msgstr "" -#: ../../include/channel.php:1338 -msgid "Television:" +#: ../../include/text.php:2299 +msgid "Export website..." msgstr "" -#: ../../include/channel.php:1340 -msgid "Film/dance/culture/entertainment:" +#: ../../include/text.php:2300 +msgid "Export to a zip file" msgstr "" -#: ../../include/channel.php:1342 -msgid "Love/Romance:" +#: ../../include/text.php:2301 +msgid "website.zip" msgstr "" -#: ../../include/channel.php:1344 -msgid "Work/employment:" +#: ../../include/text.php:2302 +msgid "Enter a name for the zip file." msgstr "" -#: ../../include/channel.php:1346 -msgid "School/education:" +#: ../../include/text.php:2303 +msgid "Export to cloud files" msgstr "" -#: ../../include/channel.php:1369 -msgid "Like this thing" +#: ../../include/text.php:2304 +msgid "/path/to/export/folder" msgstr "" -#: ../../include/page_widgets.php:7 -msgid "New Page" +#: ../../include/text.php:2305 +msgid "Enter a path to a cloud files destination." +msgstr "" + +#: ../../include/text.php:2306 +msgid "Specify folder" msgstr "" #: ../../include/contact_widgets.php:11 @@ -12038,840 +11743,747 @@ msgstr[1] "" msgid "show more" msgstr "" -#: ../../include/selectors.php:123 -msgid "Partners" -msgstr "" - -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Cohabiting" -msgstr "" - -#: ../../include/selectors.php:123 -msgid "Common law" -msgstr "" - -#: ../../include/js_strings.php:45 ../../include/text.php:1325 -msgid "January" +#: ../../include/markdown.php:444 +msgid "Attachments:" msgstr "" -#: ../../include/js_strings.php:46 ../../include/text.php:1325 -msgid "February" +#: ../../include/markdown.php:538 ../../include/event.php:22 +#: ../../include/event.php:69 +msgid "l F d, Y \\@ g:i A" msgstr "" -#: ../../include/js_strings.php:47 ../../include/text.php:1325 -msgid "March" +#: ../../include/markdown.php:540 +msgid "$Projectname event notification:" msgstr "" -#: ../../include/js_strings.php:48 ../../include/text.php:1325 -msgid "April" +#: ../../include/markdown.php:544 ../../include/event.php:30 +#: ../../include/event.php:73 +msgid "Starts:" msgstr "" -#: ../../include/js_strings.php:49 -msgctxt "long" -msgid "May" +#: ../../include/markdown.php:552 ../../include/event.php:40 +#: ../../include/event.php:77 +msgid "Finishes:" msgstr "" -#: ../../include/js_strings.php:50 ../../include/text.php:1325 -msgid "June" +#: ../../include/follow.php:26 +msgid "Channel is blocked on this site." msgstr "" -#: ../../include/js_strings.php:51 ../../include/text.php:1325 -msgid "July" +#: ../../include/follow.php:31 +msgid "Channel location missing." msgstr "" -#: ../../include/js_strings.php:52 ../../include/text.php:1325 -msgid "August" +#: ../../include/follow.php:73 +msgid "Response from remote channel was incomplete." msgstr "" -#: ../../include/js_strings.php:53 ../../include/text.php:1325 -msgid "September" +#: ../../include/follow.php:90 +msgid "Channel was deleted and no longer exists." msgstr "" -#: ../../include/js_strings.php:54 ../../include/text.php:1325 -msgid "October" +#: ../../include/follow.php:140 ../../include/follow.php:175 +msgid "Protocol disabled." msgstr "" -#: ../../include/js_strings.php:55 ../../include/text.php:1325 -msgid "November" +#: ../../include/follow.php:163 +msgid "Channel discovery failed." msgstr "" -#: ../../include/js_strings.php:56 ../../include/text.php:1325 -msgid "December" +#: ../../include/follow.php:202 +msgid "Cannot connect to yourself." msgstr "" -#: ../../include/js_strings.php:57 -msgid "Jan" +#: ../../include/js_strings.php:5 +msgid "Delete this item?" msgstr "" -#: ../../include/selectors.php:123 -msgid "Swinger" +#: ../../include/js_strings.php:8 +#, php-format +msgid "%s show less" msgstr "" -#: ../../include/selectors.php:123 -msgid "Betrayed" +#: ../../include/js_strings.php:9 +#, php-format +msgid "%s expand" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Separated" +#: ../../include/js_strings.php:10 +#, php-format +msgid "%s collapse" msgstr "" -#: ../../include/selectors.php:123 -msgid "Unstable" +#: ../../include/js_strings.php:11 +msgid "Password too short" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Divorced" +#: ../../include/js_strings.php:12 +msgid "Passwords do not match" msgstr "" -#: ../../include/selectors.php:123 -msgid "Imaginarily divorced" +#: ../../include/js_strings.php:13 +msgid "everybody" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "Widowed" +#: ../../include/js_strings.php:14 +msgid "Secret Passphrase" msgstr "" -#: ../../include/selectors.php:123 -msgid "Uncertain" +#: ../../include/js_strings.php:15 +msgid "Passphrase hint" msgstr "" -#: ../../include/selectors.php:123 ../../include/selectors.php:140 -msgid "It's complicated" +#: ../../include/js_strings.php:16 +msgid "Notice: Permissions have changed but have not yet been submitted." msgstr "" -#: ../../include/selectors.php:123 -msgid "Don't care" +#: ../../include/js_strings.php:17 +msgid "close all" msgstr "" -#: ../../include/selectors.php:123 -msgid "Ask me" +#: ../../include/js_strings.php:18 +msgid "Nothing new here" msgstr "" -#: ../../include/js_strings.php:69 ../../include/text.php:1321 -msgid "Sunday" +#: ../../include/js_strings.php:19 +msgid "Rate This Channel (this is public)" msgstr "" -#: ../../include/js_strings.php:70 ../../include/text.php:1321 -msgid "Monday" +#: ../../include/js_strings.php:21 +msgid "Describe (optional)" msgstr "" -#: ../../include/js_strings.php:71 ../../include/text.php:1321 -msgid "Tuesday" +#: ../../include/js_strings.php:23 +msgid "Please enter a link URL" msgstr "" -#: ../../include/js_strings.php:72 ../../include/text.php:1321 -msgid "Wednesday" +#: ../../include/js_strings.php:24 +msgid "Unsaved changes. Are you sure you wish to leave this page?" msgstr "" -#: ../../include/js_strings.php:73 ../../include/text.php:1321 -msgid "Thursday" +#: ../../include/js_strings.php:27 +msgid "timeago.prefixAgo" msgstr "" -#: ../../include/js_strings.php:74 ../../include/text.php:1321 -msgid "Friday" +#: ../../include/js_strings.php:28 +msgid "timeago.prefixFromNow" msgstr "" -#: ../../include/js_strings.php:75 ../../include/text.php:1321 -msgid "Saturday" +#: ../../include/js_strings.php:29 +msgid "ago" msgstr "" -#: ../../include/js_strings.php:76 -msgid "Sun" +#: ../../include/js_strings.php:30 +msgid "from now" msgstr "" -#: ../../include/permissions.php:39 -msgid "Can view my webpages" +#: ../../include/js_strings.php:31 +msgid "less than a minute" msgstr "" -#: ../../include/permissions.php:43 -msgid "Can post on my channel page (\"wall\")" +#: ../../include/js_strings.php:32 +msgid "about a minute" msgstr "" -#: ../../include/permissions.php:46 -msgid "Can like/dislike stuff" +#: ../../include/js_strings.php:33 +#, php-format +msgid "%d minutes" msgstr "" -#: ../../include/js_strings.php:80 -msgid "Thu" +#: ../../include/js_strings.php:34 +msgid "about an hour" msgstr "" -#: ../../include/js_strings.php:81 -msgid "Fri" +#: ../../include/js_strings.php:35 +#, php-format +msgid "about %d hours" msgstr "" -#: ../../include/js_strings.php:82 -msgid "Sat" +#: ../../include/js_strings.php:36 +msgid "a day" msgstr "" -#: ../../include/js_strings.php:83 -msgctxt "calendar" -msgid "today" +#: ../../include/js_strings.php:37 +#, php-format +msgid "%d days" msgstr "" -#: ../../include/js_strings.php:84 -msgctxt "calendar" -msgid "month" +#: ../../include/js_strings.php:38 +msgid "about a month" msgstr "" -#: ../../include/js_strings.php:85 -msgctxt "calendar" -msgid "week" +#: ../../include/js_strings.php:39 +#, php-format +msgid "%d months" msgstr "" -#: ../../include/js_strings.php:86 -msgctxt "calendar" -msgid "day" +#: ../../include/js_strings.php:40 +msgid "about a year" msgstr "" -#: ../../include/js_strings.php:87 -msgctxt "calendar" -msgid "All day" +#: ../../include/js_strings.php:41 +#, php-format +msgid "%d years" msgstr "" -#: ../../include/dir_fns.php:141 -msgid "Directory Options" +#: ../../include/js_strings.php:42 +msgid " " msgstr "" -#: ../../include/dir_fns.php:143 -msgid "Safe Mode" +#: ../../include/js_strings.php:43 +msgid "timeago.numbers" msgstr "" -#: ../../include/dir_fns.php:144 -msgid "Public Forums Only" +#: ../../include/js_strings.php:49 +msgctxt "long" +msgid "May" msgstr "" -#: ../../include/dir_fns.php:145 -msgid "This Website Only" +#: ../../include/js_strings.php:57 +msgid "Jan" msgstr "" -#: ../../include/attach.php:250 ../../include/attach.php:338 -msgid "Item was not found." +#: ../../include/js_strings.php:58 +msgid "Feb" msgstr "" -#: ../../include/attach.php:499 -msgid "No source file." +#: ../../include/js_strings.php:59 +msgid "Mar" msgstr "" -#: ../../include/attach.php:521 -msgid "Cannot locate file to replace" +#: ../../include/js_strings.php:60 +msgid "Apr" msgstr "" -#: ../../include/attach.php:539 -msgid "Cannot locate file to revise/update" +#: ../../include/js_strings.php:61 +msgctxt "short" +msgid "May" msgstr "" -#: ../../include/attach.php:670 -#, php-format -msgid "File exceeds size limit of %d" +#: ../../include/js_strings.php:62 +msgid "Jun" msgstr "" -#: ../../include/attach.php:684 -#, php-format -msgid "You have reached your limit of %1$.0f Mbytes attachment storage." +#: ../../include/js_strings.php:63 +msgid "Jul" msgstr "" -#: ../../include/attach.php:854 -msgid "File upload failed. Possible system limit or action terminated." +#: ../../include/js_strings.php:64 +msgid "Aug" msgstr "" -#: ../../include/attach.php:867 -msgid "Stored file could not be verified. Upload failed." +#: ../../include/js_strings.php:65 +msgid "Sep" msgstr "" -#: ../../include/attach.php:922 ../../include/attach.php:938 -msgid "Path not available." +#: ../../include/js_strings.php:66 +msgid "Oct" msgstr "" -#: ../../include/attach.php:984 ../../include/attach.php:1142 -msgid "Empty pathname" +#: ../../include/js_strings.php:67 +msgid "Nov" msgstr "" -#: ../../include/attach.php:1010 -msgid "duplicate filename or path" +#: ../../include/js_strings.php:68 +msgid "Dec" msgstr "" -#: ../../include/attach.php:1032 -msgid "Path not found." +#: ../../include/js_strings.php:76 +msgid "Sun" msgstr "" -#: ../../include/attach.php:1096 -msgid "mkdir failed." +#: ../../include/js_strings.php:77 +msgid "Mon" msgstr "" -#: ../../include/attach.php:1100 -msgid "database storage failed." +#: ../../include/js_strings.php:78 +msgid "Tue" msgstr "" -#: ../../include/attach.php:1148 -msgid "Empty path" +#: ../../include/js_strings.php:79 +msgid "Wed" msgstr "" -#: ../../include/network.php:733 -msgid "view full size" +#: ../../include/js_strings.php:80 +msgid "Thu" msgstr "" -#: ../../include/network.php:1988 -msgid "No Subject" +#: ../../include/js_strings.php:81 +msgid "Fri" msgstr "" -#: ../../include/network.php:2244 -msgid "OStatus" +#: ../../include/js_strings.php:82 +msgid "Sat" msgstr "" -#: ../../include/network.php:2245 -msgid "GNU-Social" +#: ../../include/js_strings.php:83 +msgctxt "calendar" +msgid "today" msgstr "" -#: ../../include/network.php:2246 -msgid "RSS/Atom" +#: ../../include/js_strings.php:84 +msgctxt "calendar" +msgid "month" msgstr "" -#: ../../include/network.php:2249 -msgid "Facebook" +#: ../../include/js_strings.php:85 +msgctxt "calendar" +msgid "week" msgstr "" -#: ../../include/network.php:2250 -msgid "Zot" +#: ../../include/js_strings.php:86 +msgctxt "calendar" +msgid "day" msgstr "" -#: ../../include/network.php:2251 -msgid "LinkedIn" +#: ../../include/js_strings.php:87 +msgctxt "calendar" +msgid "All day" msgstr "" -#: ../../include/network.php:2252 -msgid "XMPP/IM" +#: ../../include/message.php:30 +msgid "Unable to determine sender." msgstr "" -#: ../../include/network.php:2253 -msgid "MySpace" +#: ../../include/message.php:69 +msgid "No recipient provided." msgstr "" -#: ../../include/oembed.php:308 -msgid " by " +#: ../../include/message.php:74 +msgid "[no subject]" msgstr "" -#: ../../include/oembed.php:309 -msgid " on " +#: ../../include/message.php:227 +msgid "Stored post could not be verified." msgstr "" -#: ../../include/oembed.php:338 -msgid "Embedded content" +#: ../../include/activities.php:41 +msgid " and " msgstr "" -#: ../../include/oembed.php:347 -msgid "Embedding disabled" +#: ../../include/activities.php:49 +msgid "public profile" msgstr "" -#: ../../include/photos.php:115 +#: ../../include/activities.php:58 #, php-format -msgid "Image exceeds website size limit of %lu bytes" -msgstr "" - -#: ../../include/photos.php:122 -msgid "Image file is empty." -msgstr "" - -#: ../../include/photos.php:260 -msgid "Photo storage failed." -msgstr "" - -#: ../../include/photos.php:300 -msgid "a new photo" +msgid "%1$s changed %2$s to “%3$s”" msgstr "" -#: ../../include/photos.php:304 +#: ../../include/activities.php:59 #, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" -msgstr "" - -#: ../../include/photos.php:519 -msgid "Upload New Photos" -msgstr "" - -#: ../../include/text.php:460 -msgid "prev" -msgstr "" - -#: ../../include/text.php:462 -msgid "first" -msgstr "" - -#: ../../include/text.php:491 -msgid "last" -msgstr "" - -#: ../../include/text.php:494 -msgid "next" -msgstr "" - -#: ../../include/text.php:505 -msgid "older" -msgstr "" - -#: ../../include/text.php:507 -msgid "newer" -msgstr "" - -#: ../../include/text.php:922 -msgid "No connections" +msgid "Visit %1$s's %2$s" msgstr "" -#: ../../include/text.php:947 +#: ../../include/activities.php:62 #, php-format -msgid "View all %s connections" -msgstr "" - -#: ../../include/text.php:1092 ../../include/text.php:1097 -msgid "poke" -msgstr "" - -#: ../../include/text.php:1098 -msgid "ping" +msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" -#: ../../include/text.php:1098 -msgid "pinged" +#: ../../include/attach.php:250 ../../include/attach.php:339 +msgid "Item was not found." msgstr "" -#: ../../include/text.php:1099 -msgid "prod" +#: ../../include/attach.php:500 +msgid "No source file." msgstr "" -#: ../../include/text.php:1099 -msgid "prodded" +#: ../../include/attach.php:522 +msgid "Cannot locate file to replace" msgstr "" -#: ../../include/text.php:1100 -msgid "slap" +#: ../../include/attach.php:540 +msgid "Cannot locate file to revise/update" msgstr "" -#: ../../include/text.php:1100 -msgid "slapped" +#: ../../include/attach.php:671 +#, php-format +msgid "File exceeds size limit of %d" msgstr "" -#: ../../include/text.php:1101 -msgid "finger" +#: ../../include/attach.php:685 +#, php-format +msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "" -#: ../../include/text.php:1101 -msgid "fingered" +#: ../../include/attach.php:855 +msgid "File upload failed. Possible system limit or action terminated." msgstr "" -#: ../../include/text.php:1102 -msgid "rebuff" +#: ../../include/attach.php:868 +msgid "Stored file could not be verified. Upload failed." msgstr "" -#: ../../include/text.php:1102 -msgid "rebuffed" +#: ../../include/attach.php:923 ../../include/attach.php:939 +msgid "Path not available." msgstr "" -#: ../../include/text.php:1114 -msgid "happy" +#: ../../include/attach.php:988 ../../include/attach.php:1153 +msgid "Empty pathname" msgstr "" -#: ../../include/text.php:1115 -msgid "sad" +#: ../../include/attach.php:1014 +msgid "duplicate filename or path" msgstr "" -#: ../../include/text.php:1116 -msgid "mellow" +#: ../../include/attach.php:1039 +msgid "Path not found." msgstr "" -#: ../../include/text.php:1117 -msgid "tired" +#: ../../include/attach.php:1107 +msgid "mkdir failed." msgstr "" -#: ../../include/text.php:1118 -msgid "perky" +#: ../../include/attach.php:1111 +msgid "database storage failed." msgstr "" -#: ../../include/text.php:1119 -msgid "angry" +#: ../../include/attach.php:1159 +msgid "Empty path" msgstr "" -#: ../../include/text.php:1120 -msgid "stupefied" +#: ../../include/security.php:117 +msgid "guest:" msgstr "" -#: ../../include/text.php:1121 -msgid "puzzled" +#: ../../include/security.php:532 +msgid "" +"The form security token was not correct. This probably happened because the " +"form has been opened for too long (>3 hours) before submitting it." msgstr "" -#: ../../include/text.php:1122 -msgid "interested" +#: ../../include/items.php:869 ../../include/items.php:916 +msgid "(Unknown)" msgstr "" -#: ../../include/text.php:1123 -msgid "bitter" +#: ../../include/items.php:1110 +msgid "Visible to anybody on the internet." msgstr "" -#: ../../include/text.php:1124 -msgid "cheerful" +#: ../../include/items.php:1112 +msgid "Visible to you only." msgstr "" -#: ../../include/text.php:1125 -msgid "alive" +#: ../../include/items.php:1114 +msgid "Visible to anybody in this network." msgstr "" -#: ../../include/text.php:1126 -msgid "annoyed" +#: ../../include/items.php:1116 +msgid "Visible to anybody authenticated." msgstr "" -#: ../../include/text.php:1127 -msgid "anxious" +#: ../../include/items.php:1118 +#, php-format +msgid "Visible to anybody on %s." msgstr "" -#: ../../include/text.php:1128 -msgid "cranky" +#: ../../include/items.php:1120 +msgid "Visible to all connections." msgstr "" -#: ../../include/text.php:1129 -msgid "disturbed" +#: ../../include/items.php:1122 +msgid "Visible to approved connections." msgstr "" -#: ../../include/text.php:1130 -msgid "frustrated" +#: ../../include/items.php:1124 +msgid "Visible to specific connections." msgstr "" -#: ../../include/text.php:1131 -msgid "depressed" +#: ../../include/items.php:3938 +msgid "Privacy group is empty." msgstr "" -#: ../../include/text.php:1132 -msgid "motivated" +#: ../../include/items.php:3945 +#, php-format +msgid "Privacy group: %s" msgstr "" -#: ../../include/text.php:1133 -msgid "relaxed" +#: ../../include/items.php:3957 +msgid "Connection not found." msgstr "" -#: ../../include/text.php:1134 -msgid "surprised" +#: ../../include/items.php:4310 +msgid "profile photo" msgstr "" -#: ../../include/text.php:1325 -msgid "May" +#: ../../include/items.php:4506 +#, php-format +msgid "[Edited %s]" msgstr "" -#: ../../include/text.php:1402 ../../include/text.php:1406 -msgid "Unknown Attachment" +#: ../../include/items.php:4506 +msgctxt "edit_activity" +msgid "Post" msgstr "" -#: ../../include/text.php:1408 -msgid "unknown" +#: ../../include/items.php:4506 +msgctxt "edit_activity" +msgid "Comment" msgstr "" -#: ../../include/text.php:1444 -msgid "remove category" +#: ../../include/channel.php:33 +msgid "Unable to obtain identity information from database" msgstr "" -#: ../../include/text.php:1521 -msgid "remove from file" +#: ../../include/channel.php:67 +msgid "Empty name" msgstr "" -#: ../../include/text.php:1791 -msgid "Page layout" +#: ../../include/channel.php:70 +msgid "Name too long" msgstr "" -#: ../../include/text.php:1791 -msgid "You can create your own with the layouts tool" +#: ../../include/channel.php:181 +msgid "No account identifier" msgstr "" -#: ../../include/text.php:1833 -msgid "Page content type" +#: ../../include/channel.php:193 +msgid "Nickname is required." msgstr "" -#: ../../include/text.php:1966 -msgid "activity" +#: ../../include/channel.php:207 +msgid "Reserved nickname. Please choose another." msgstr "" -#: ../../include/text.php:2280 -msgid "Design Tools" +#: ../../include/channel.php:212 +msgid "" +"Nickname has unsupported characters or is already being used on this site." msgstr "" -#: ../../include/text.php:2286 -msgid "Pages" +#: ../../include/channel.php:270 +msgid "Unable to retrieve created identity" msgstr "" -#: ../../include/text.php:2308 -msgid "Import website..." +#: ../../include/channel.php:342 +msgid "Default Profile" msgstr "" -#: ../../include/text.php:2309 -msgid "Select folder to import" +#: ../../include/channel.php:1045 +msgid "Create New Profile" msgstr "" -#: ../../include/text.php:2310 -msgid "Import from a zipped folder:" +#: ../../include/channel.php:1065 +msgid "Visible to everybody" msgstr "" -#: ../../include/text.php:2311 -msgid "Import from cloud files:" +#: ../../include/channel.php:1138 ../../include/channel.php:1252 +msgid "Gender:" msgstr "" -#: ../../include/text.php:2312 -msgid "/cloud/channel/path/to/folder" +#: ../../include/channel.php:1140 ../../include/channel.php:1307 +msgid "Homepage:" msgstr "" -#: ../../include/text.php:2313 -msgid "Enter path to website files" +#: ../../include/channel.php:1141 +msgid "Online Now" msgstr "" -#: ../../include/text.php:2314 -msgid "Select folder" +#: ../../include/channel.php:1257 +msgid "Like this channel" msgstr "" -#: ../../include/text.php:2315 -msgid "Export website..." +#: ../../include/channel.php:1281 +msgid "j F, Y" msgstr "" -#: ../../include/text.php:2316 -msgid "Export to a zip file" +#: ../../include/channel.php:1282 +msgid "j F" msgstr "" -#: ../../include/text.php:2317 -msgid "website.zip" +#: ../../include/channel.php:1289 +msgid "Birthday:" msgstr "" -#: ../../include/text.php:2318 -msgid "Enter a name for the zip file." +#: ../../include/channel.php:1302 +#, php-format +msgid "for %1$d %2$s" msgstr "" -#: ../../include/text.php:2319 -msgid "Export to cloud files" +#: ../../include/channel.php:1305 +msgid "Sexual Preference:" msgstr "" -#: ../../include/text.php:2320 -msgid "/path/to/export/folder" +#: ../../include/channel.php:1311 +msgid "Tags:" msgstr "" -#: ../../include/text.php:2321 -msgid "Enter a path to a cloud files destination." +#: ../../include/channel.php:1313 +msgid "Political Views:" msgstr "" -#: ../../include/text.php:2322 -msgid "Specify folder" +#: ../../include/channel.php:1315 +msgid "Religion:" msgstr "" -#: ../../include/nav.php:88 -msgid "Remote authentication" +#: ../../include/channel.php:1319 +msgid "Hobbies/Interests:" msgstr "" -#: ../../include/nav.php:88 -msgid "Click to authenticate to your home hub" +#: ../../include/channel.php:1321 +msgid "Likes:" msgstr "" -#: ../../include/nav.php:99 ../../include/nav.php:140 ../../boot.php:1731 -msgid "Logout" +#: ../../include/channel.php:1323 +msgid "Dislikes:" msgstr "" -#: ../../include/nav.php:99 ../../include/nav.php:140 -msgid "End this session" +#: ../../include/channel.php:1325 +msgid "Contact information and Social Networks:" msgstr "" -#: ../../include/nav.php:103 -msgid "Your profile page" +#: ../../include/channel.php:1327 +msgid "My other channels:" msgstr "" -#: ../../include/nav.php:105 -msgid "Manage/Edit profiles" +#: ../../include/channel.php:1329 +msgid "Musical interests:" msgstr "" -#: ../../include/nav.php:107 -msgid "Edit your profile" +#: ../../include/channel.php:1331 +msgid "Books, literature:" msgstr "" -#: ../../include/nav.php:130 -msgid "Sign in" +#: ../../include/channel.php:1333 +msgid "Television:" msgstr "" -#: ../../include/nav.php:155 -msgid "Get me home" +#: ../../include/channel.php:1335 +msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../include/nav.php:157 -msgid "Log me out of this site" +#: ../../include/channel.php:1337 +msgid "Love/Romance:" msgstr "" -#: ../../include/nav.php:162 -msgid "Create an account" +#: ../../include/channel.php:1339 +msgid "Work/employment:" msgstr "" -#: ../../include/nav.php:174 -msgid "Help and documentation" +#: ../../include/channel.php:1341 +msgid "School/education:" msgstr "" -#: ../../include/nav.php:178 -msgid "Applications, utilities, links, games" +#: ../../include/channel.php:1364 +msgid "Like this thing" msgstr "" -#: ../../include/nav.php:180 -msgid "Search site @name, #tag, ?docs, content" +#: ../../include/channel.php:2139 +#, php-format +msgid "User '%s' deleted" msgstr "" -#: ../../include/nav.php:182 -msgid "Channel Directory" +#: ../../include/event.php:1004 +msgid "This event has been added to your calendar." msgstr "" -#: ../../include/nav.php:194 -msgid "Your grid" +#: ../../include/event.php:1204 +msgid "Not specified" msgstr "" -#: ../../include/nav.php:195 -msgid "View your network/grid" +#: ../../include/event.php:1205 +msgid "Needs Action" msgstr "" -#: ../../include/nav.php:196 -msgid "Mark all grid notifications seen" +#: ../../include/event.php:1206 +msgid "Completed" msgstr "" -#: ../../include/nav.php:198 -msgid "Channel home" +#: ../../include/event.php:1207 +msgid "In Process" msgstr "" -#: ../../include/nav.php:199 -msgid "View your channel home" +#: ../../include/event.php:1208 +msgid "Cancelled" msgstr "" -#: ../../include/nav.php:200 -msgid "Mark all channel notifications seen" +#: ../../include/network.php:776 +msgid "view full size" msgstr "" -#: ../../include/nav.php:206 -msgid "Notices" +#: ../../include/network.php:2042 +msgid "No Subject" msgstr "" -#: ../../include/nav.php:206 -msgid "Notifications" +#: ../../include/network.php:2310 ../../include/network.php:2311 +msgid "Friendica" msgstr "" -#: ../../include/nav.php:207 -msgid "View all notifications" +#: ../../include/network.php:2312 +msgid "OStatus" msgstr "" -#: ../../include/nav.php:210 -msgid "Private mail" +#: ../../include/network.php:2313 +msgid "GNU-Social" msgstr "" -#: ../../include/nav.php:211 -msgid "View your private messages" +#: ../../include/network.php:2314 +msgid "RSS/Atom" msgstr "" -#: ../../include/nav.php:212 -msgid "Mark all private messages seen" +#: ../../include/network.php:2316 +msgid "Diaspora" msgstr "" -#: ../../include/nav.php:218 -msgid "Event Calendar" +#: ../../include/network.php:2317 +msgid "Facebook" msgstr "" -#: ../../include/nav.php:219 -msgid "View events" +#: ../../include/network.php:2318 +msgid "Zot" msgstr "" -#: ../../include/nav.php:220 -msgid "Mark all events seen" +#: ../../include/network.php:2319 +msgid "LinkedIn" msgstr "" -#: ../../include/nav.php:223 -msgid "Manage Your Channels" +#: ../../include/network.php:2320 +msgid "XMPP/IM" msgstr "" -#: ../../include/nav.php:225 -msgid "Account/Channel Settings" +#: ../../include/network.php:2321 +msgid "MySpace" msgstr "" -#: ../../include/nav.php:233 -msgid "Site Setup and Configuration" +#: ../../include/page_widgets.php:7 +msgid "New Page" msgstr "" -#: ../../include/nav.php:288 -msgid "Documentation" +#: ../../include/language.php:380 +msgid "Select an alternate language" msgstr "" -#: ../../include/nav.php:297 -msgid "@name, #tag, ?doc, content" +#: ../../include/acl_selectors.php:208 +msgid "Who can see this?" msgstr "" -#: ../../include/nav.php:298 -msgid "Please wait..." +#: ../../include/acl_selectors.php:209 +msgid "Custom selection" msgstr "" -#: ../../include/import.php:30 +#: ../../include/acl_selectors.php:210 msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." -msgstr "" - -#: ../../include/import.php:90 -msgid "Channel clone failed. Import failed." -msgstr "" - -#: ../../include/import.php:100 -msgid "Cloned channel not found. Import failed." -msgstr "" - -#: ../../include/import.php:1373 -msgid "Unable to import element \"" -msgstr "" - -#: ../../include/auth.php:148 -msgid "Logged out." -msgstr "" - -#: ../../include/auth.php:275 -msgid "Failed authentication" -msgstr "" - -#: ../../include/follow.php:26 -msgid "Channel is blocked on this site." -msgstr "" - -#: ../../include/follow.php:31 -msgid "Channel location missing." -msgstr "" - -#: ../../include/follow.php:73 -msgid "Response from remote channel was incomplete." -msgstr "" - -#: ../../include/follow.php:90 -msgid "Channel was deleted and no longer exists." -msgstr "" - -#: ../../include/follow.php:140 ../../include/follow.php:175 -msgid "Protocol disabled." -msgstr "" - -#: ../../include/follow.php:163 -msgid "Channel discovery failed." -msgstr "" - -#: ../../include/follow.php:202 -msgid "Cannot connect to yourself." -msgstr "" - -#: ../../include/activities.php:41 -msgid " and " +"Select \"Show\" to allow viewing. \"Don't show\" lets you override and limit " +"the scope of \"Show\"." msgstr "" -#: ../../include/activities.php:49 -msgid "public profile" +#: ../../include/acl_selectors.php:211 +msgid "Show" msgstr "" -#: ../../include/activities.php:58 -#, php-format -msgid "%1$s changed %2$s to “%3$s”" +#: ../../include/acl_selectors.php:212 +msgid "Don't show" msgstr "" -#: ../../include/activities.php:59 +#: ../../include/acl_selectors.php:245 #, php-format -msgid "Visit %1$s's %2$s" +msgid "" +"Post permissions %s cannot be changed %s after a post is shared.</br />These " +"permissions set who is allowed to view the post." msgstr "" -#: ../../include/activities.php:62 +#: ../../include/dba/dba_driver.php:189 #, php-format -msgid "%1$s has an updated %2$s, changing %3$s." +msgid "Cannot locate DNS info for database server '%s'" msgstr "" #: ../../include/bbcode.php:134 ../../include/bbcode.php:1040 @@ -12917,185 +12529,20 @@ msgstr "" msgid "$1 wrote:" msgstr "" -#: ../../include/bookmarks.php:34 -#, php-format -msgid "%1$s's bookmarks" -msgstr "" - -#: ../../include/group.php:26 -msgid "" -"A deleted group with this name was revived. Existing item permissions " -"<strong>may</strong> apply to this group and any future members. If this is " -"not what you intended, please create another group with a different name." -msgstr "" - -#: ../../include/group.php:268 -msgid "Add new connections to this privacy group" -msgstr "" - -#: ../../include/group.php:309 -msgid "edit" -msgstr "" - -#: ../../include/group.php:331 ../../include/features.php:292 -msgid "Privacy Groups" -msgstr "" - -#: ../../include/group.php:332 -msgid "Edit group" -msgstr "" - -#: ../../include/group.php:333 -msgid "Add privacy group" -msgstr "" - -#: ../../include/group.php:334 -msgid "Channels not in any privacy group" -msgstr "" - -#: ../../include/event.php:863 -msgid "This event has been added to your calendar." -msgstr "" - -#: ../../include/event.php:1063 -msgid "Not specified" -msgstr "" - -#: ../../include/event.php:1064 -msgid "Needs Action" -msgstr "" - -#: ../../include/event.php:1065 -msgid "Completed" -msgstr "" - -#: ../../include/event.php:1066 -msgid "In Process" -msgstr "" - -#: ../../include/event.php:1067 -msgid "Cancelled" -msgstr "" - -#: ../../include/items.php:841 ../../include/items.php:888 -msgid "(Unknown)" -msgstr "" - -#: ../../include/items.php:1089 -msgid "Visible to anybody on the internet." -msgstr "" - -#: ../../include/items.php:1091 -msgid "Visible to you only." -msgstr "" - -#: ../../include/items.php:1093 -msgid "Visible to anybody in this network." -msgstr "" - -#: ../../include/items.php:1095 -msgid "Visible to anybody authenticated." -msgstr "" - -#: ../../include/items.php:1097 -#, php-format -msgid "Visible to anybody on %s." -msgstr "" - -#: ../../include/items.php:1099 -msgid "Visible to all connections." -msgstr "" - -#: ../../include/items.php:1101 -msgid "Visible to approved connections." -msgstr "" - -#: ../../include/items.php:1103 -msgid "Visible to specific connections." -msgstr "" - -#: ../../include/items.php:3915 -msgid "Privacy group is empty." -msgstr "" - -#: ../../include/items.php:3922 -#, php-format -msgid "Privacy group: %s" -msgstr "" - -#: ../../include/items.php:3934 -msgid "Connection not found." -msgstr "" - -#: ../../include/items.php:4283 -msgid "profile photo" -msgstr "" - -#: ../../include/items.php:4479 -#, php-format -msgid "[Edited %s]" -msgstr "" - -#: ../../include/items.php:4479 -msgctxt "edit_activity" -msgid "Post" -msgstr "" - -#: ../../include/items.php:4479 -msgctxt "edit_activity" -msgid "Comment" -msgstr "" - -#: ../../include/permissions.php:35 -msgid "Can view my normal stream and posts" -msgstr "" - -#: ../../include/permissions.php:39 -msgid "Can view my webpages" -msgstr "" - -#: ../../include/permissions.php:43 -msgid "Can post on my channel page (\"wall\")" -msgstr "" - -#: ../../include/permissions.php:46 -msgid "Can like/dislike stuff" -msgstr "" - -#: ../../include/permissions.php:46 -msgid "Profiles and things other than posts/comments" -msgstr "" - -#: ../../include/permissions.php:48 -msgid "Can forward to all my channel contacts via post @mentions" -msgstr "" - -#: ../../include/permissions.php:48 -msgid "Advanced - useful for creating group forum channels" -msgstr "" - -#: ../../include/permissions.php:49 -msgid "Can chat with me (when available)" -msgstr "" - -#: ../../include/permissions.php:50 -msgid "Can write to my file storage and photos" -msgstr "" - -#: ../../include/permissions.php:51 -msgid "Can edit my webpages" +#: ../../include/oembed.php:315 +msgid " by " msgstr "" -#: ../../include/permissions.php:53 -msgid "Somewhat advanced - very useful in open communities" +#: ../../include/oembed.php:316 +msgid " on " msgstr "" -#: ../../include/permissions.php:55 -msgid "Can administer my channel resources" +#: ../../include/oembed.php:345 +msgid "Embedded content" msgstr "" -#: ../../include/permissions.php:55 -msgid "Extremely advanced. Leave this alone unless you know what you are doing" +#: ../../include/oembed.php:354 +msgid "Embedding disabled" msgstr "" #: ../../include/features.php:58 @@ -13289,6 +12736,10 @@ msgstr "" msgid "Ability to select posts by date ranges" msgstr "" +#: ../../include/features.php:292 ../../include/group.php:331 +msgid "Privacy Groups" +msgstr "" + #: ../../include/features.php:293 msgid "Enable management and selection of privacy groups" msgstr "" @@ -13399,198 +12850,414 @@ msgid "" "channel" msgstr "" -#: ../../include/help.php:31 -msgid "Help:" +#: ../../include/taxonomy.php:228 ../../include/taxonomy.php:249 +msgid "Tags" msgstr "" -#: ../../include/help.php:63 -msgid "Not Found" +#: ../../include/taxonomy.php:293 +msgid "Keywords" msgstr "" -#: ../../util/nconfig.php:34 -msgid "Source channel not found." +#: ../../include/taxonomy.php:314 +msgid "have" msgstr "" -#: ../../view/theme/redbasic/php/config.php:9 -msgid "Focus (Hubzilla default)" +#: ../../include/taxonomy.php:314 +msgid "has" msgstr "" -#: ../../view/theme/redbasic/php/config.php:110 -msgid "Theme settings" +#: ../../include/taxonomy.php:315 +msgid "want" msgstr "" -#: ../../view/theme/redbasic/php/config.php:111 -msgid "Narrow navbar" +#: ../../include/taxonomy.php:315 +msgid "wants" msgstr "" -#: ../../view/theme/redbasic/php/config.php:112 -msgid "Navigation bar background color" +#: ../../include/taxonomy.php:316 +msgid "likes" msgstr "" -#: ../../view/theme/redbasic/php/config.php:113 -msgid "Navigation bar gradient top color" +#: ../../include/taxonomy.php:317 +msgid "dislikes" msgstr "" -#: ../../view/theme/redbasic/php/config.php:114 -msgid "Navigation bar gradient bottom color" +#: ../../include/account.php:35 +msgid "Not a valid email address" msgstr "" -#: ../../view/theme/redbasic/php/config.php:115 -msgid "Navigation active button gradient top color" +#: ../../include/account.php:37 +msgid "Your email domain is not among those allowed on this site" msgstr "" -#: ../../view/theme/redbasic/php/config.php:116 -msgid "Navigation active button gradient bottom color" +#: ../../include/account.php:43 +msgid "Your email address is already registered at this site." msgstr "" -#: ../../view/theme/redbasic/php/config.php:117 -msgid "Navigation bar border color " +#: ../../include/account.php:75 +msgid "An invitation is required." msgstr "" -#: ../../view/theme/redbasic/php/config.php:118 -msgid "Navigation bar icon color " +#: ../../include/account.php:79 +msgid "Invitation could not be verified." msgstr "" -#: ../../view/theme/redbasic/php/config.php:119 -msgid "Navigation bar active icon color " +#: ../../include/account.php:130 +msgid "Please enter the required information." msgstr "" -#: ../../view/theme/redbasic/php/config.php:120 -msgid "link color" +#: ../../include/account.php:198 +msgid "Failed to store account information." msgstr "" -#: ../../view/theme/redbasic/php/config.php:121 -msgid "Set font-color for banner" +#: ../../include/account.php:263 +#, php-format +msgid "Registration confirmation for %s" msgstr "" -#: ../../view/theme/redbasic/php/config.php:122 -msgid "Set the background color" +#: ../../include/account.php:330 +#, php-format +msgid "Registration request at %s" msgstr "" -#: ../../view/theme/redbasic/php/config.php:123 -msgid "Set the background image" +#: ../../include/account.php:352 +msgid "your registration password" msgstr "" -#: ../../view/theme/redbasic/php/config.php:124 -msgid "Set the background color of items" +#: ../../include/account.php:358 ../../include/account.php:420 +#, php-format +msgid "Registration details for %s" msgstr "" -#: ../../view/theme/redbasic/php/config.php:125 -msgid "Set the background color of comments" +#: ../../include/account.php:431 +msgid "Account approved." msgstr "" -#: ../../view/theme/redbasic/php/config.php:126 -msgid "Set the border color of comments" +#: ../../include/account.php:471 +#, php-format +msgid "Registration revoked for %s" msgstr "" -#: ../../view/theme/redbasic/php/config.php:127 -msgid "Set the indent for comments" +#: ../../include/account.php:756 ../../include/account.php:758 +msgid "Click here to upgrade." msgstr "" -#: ../../view/theme/redbasic/php/config.php:128 -msgid "Set the basic color for item icons" +#: ../../include/account.php:764 +msgid "This action exceeds the limits set by your subscription plan." msgstr "" -#: ../../view/theme/redbasic/php/config.php:129 -msgid "Set the hover color for item icons" +#: ../../include/account.php:769 +msgid "This action is not available under your subscription plan." msgstr "" -#: ../../view/theme/redbasic/php/config.php:130 -msgid "Set font-size for the entire application" +#: ../../include/datetime.php:147 +msgid "Birthday" msgstr "" -#: ../../view/theme/redbasic/php/config.php:130 -msgid "Example: 14px" +#: ../../include/datetime.php:149 +msgid "Age: " msgstr "" -#: ../../view/theme/redbasic/php/config.php:131 -msgid "Set font-size for posts and comments" +#: ../../include/datetime.php:151 +msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: ../../view/theme/redbasic/php/config.php:132 -msgid "Set font-color for posts and comments" +#: ../../include/datetime.php:292 +msgid "less than a second ago" msgstr "" -#: ../../view/theme/redbasic/php/config.php:133 -msgid "Set radius of corners" +#: ../../include/datetime.php:310 +#, php-format +msgctxt "e.g. 22 hours ago, 1 minute ago" +msgid "%1$d %2$s ago" msgstr "" -#: ../../view/theme/redbasic/php/config.php:134 -msgid "Set shadow depth of photos" +#: ../../include/datetime.php:321 +msgctxt "relative_date" +msgid "year" +msgid_plural "years" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:324 +msgctxt "relative_date" +msgid "month" +msgid_plural "months" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:327 +msgctxt "relative_date" +msgid "week" +msgid_plural "weeks" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:330 +msgctxt "relative_date" +msgid "day" +msgid_plural "days" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:333 +msgctxt "relative_date" +msgid "hour" +msgid_plural "hours" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:336 +msgctxt "relative_date" +msgid "minute" +msgid_plural "minutes" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:339 +msgctxt "relative_date" +msgid "second" +msgid_plural "seconds" +msgstr[0] "" +msgstr[1] "" + +#: ../../include/datetime.php:576 +#, php-format +msgid "%1$s's birthday" msgstr "" -#: ../../view/theme/redbasic/php/config.php:135 -msgid "Set maximum width of content region in pixel" +#: ../../include/datetime.php:577 +#, php-format +msgid "Happy Birthday %1$s" msgstr "" -#: ../../view/theme/redbasic/php/config.php:135 -msgid "Leave empty for default width" +#: ../../include/nav.php:92 +msgid "Remote authentication" msgstr "" -#: ../../view/theme/redbasic/php/config.php:136 -msgid "Left align page content" +#: ../../include/nav.php:92 +msgid "Click to authenticate to your home hub" msgstr "" -#: ../../view/theme/redbasic/php/config.php:137 -msgid "Set minimum opacity of nav bar - to hide it" +#: ../../include/nav.php:103 ../../include/nav.php:127 +msgid "End this session" msgstr "" -#: ../../view/theme/redbasic/php/config.php:138 -msgid "Set size of conversation author photo" +#: ../../include/nav.php:106 +msgid "Your profile page" msgstr "" -#: ../../view/theme/redbasic/php/config.php:139 -msgid "Set size of followup author photos" +#: ../../include/nav.php:109 +msgid "Manage/Edit profiles" msgstr "" -#: ../../boot.php:1505 -#, php-format -msgid "Update %s failed. See error logs." +#: ../../include/nav.php:111 +msgid "Edit your profile" msgstr "" -#: ../../boot.php:1508 -#, php-format -msgid "Update Error at %s" +#: ../../include/nav.php:117 +msgid "Sign in" msgstr "" -#: ../../boot.php:1712 -msgid "Create an account to access services and applications" +#: ../../include/nav.php:142 +msgid "Take me home" msgstr "" -#: ../../boot.php:1734 -msgid "Login/Email" +#: ../../include/nav.php:144 +msgid "Log me out of this site" msgstr "" -#: ../../boot.php:1735 -msgid "Password" +#: ../../include/nav.php:149 +msgid "Create an account" msgstr "" -#: ../../boot.php:1736 -msgid "Remember me" +#: ../../include/nav.php:161 +msgid "Help and documentation" msgstr "" -#: ../../boot.php:1739 -msgid "Forgot your password?" +#: ../../include/nav.php:164 +msgid "Search site @name, #tag, ?docs, content" msgstr "" -#: ../../boot.php:2300 -msgid "toggle mobile" +#: ../../include/nav.php:176 +msgid "Grid" msgstr "" -#: ../../boot.php:2455 -msgid "Website SSL certificate is not valid. Please correct." +#: ../../include/nav.php:176 +msgid "Your grid" +msgstr "" + +#: ../../include/nav.php:177 +msgid "View your network/grid" msgstr "" -#: ../../boot.php:2458 +#: ../../include/nav.php:178 +msgid "Mark all grid notifications seen" +msgstr "" + +#: ../../include/nav.php:180 +msgid "Channel home" +msgstr "" + +#: ../../include/nav.php:181 +msgid "View your channel home" +msgstr "" + +#: ../../include/nav.php:182 +msgid "Mark all channel notifications seen" +msgstr "" + +#: ../../include/nav.php:188 +msgid "Notices" +msgstr "" + +#: ../../include/nav.php:188 +msgid "Notifications" +msgstr "" + +#: ../../include/nav.php:189 +msgid "View all notifications" +msgstr "" + +#: ../../include/nav.php:192 +msgid "Private mail" +msgstr "" + +#: ../../include/nav.php:193 +msgid "View your private messages" +msgstr "" + +#: ../../include/nav.php:194 +msgid "Mark all private messages seen" +msgstr "" + +#: ../../include/nav.php:200 +msgid "Event Calendar" +msgstr "" + +#: ../../include/nav.php:201 +msgid "View events" +msgstr "" + +#: ../../include/nav.php:202 +msgid "Mark all events seen" +msgstr "" + +#: ../../include/nav.php:205 +msgid "Manage Your Channels" +msgstr "" + +#: ../../include/nav.php:207 +msgid "Account/Channel Settings" +msgstr "" + +#: ../../include/nav.php:215 +msgid "Site Setup and Configuration" +msgstr "" + +#: ../../include/nav.php:277 +msgid "@name, #tag, ?doc, content" +msgstr "" + +#: ../../include/nav.php:278 +msgid "Please wait..." +msgstr "" + +#: ../../include/nav.php:280 +msgid "Add Apps" +msgstr "" + +#: ../../include/photos.php:115 #, php-format -msgid "[hubzilla] Website SSL error for %s" +msgid "Image exceeds website size limit of %lu bytes" msgstr "" -#: ../../boot.php:2577 -msgid "Cron/Scheduled tasks not running." +#: ../../include/photos.php:122 +msgid "Image file is empty." +msgstr "" + +#: ../../include/photos.php:261 +msgid "Photo storage failed." msgstr "" -#: ../../boot.php:2581 +#: ../../include/photos.php:301 +msgid "a new photo" +msgstr "" + +#: ../../include/photos.php:305 #, php-format -msgid "[hubzilla] Cron tasks not running on %s" +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" +msgstr "" + +#: ../../include/photos.php:533 +msgid "Upload New Photos" +msgstr "" + +#: ../../include/zot.php:646 +msgid "Invalid data packet" +msgstr "" + +#: ../../include/zot.php:662 +msgid "Unable to verify channel signature" +msgstr "" + +#: ../../include/zot.php:2313 +#, php-format +msgid "Unable to verify site signature for %s" +msgstr "" + +#: ../../include/zot.php:3764 +msgid "invalid target signature" +msgstr "" + +#: ../../include/group.php:26 +msgid "" +"A deleted group with this name was revived. Existing item permissions " +"<strong>may</strong> apply to this group and any future members. If this is " +"not what you intended, please create another group with a different name." +msgstr "" + +#: ../../include/group.php:268 +msgid "Add new connections to this privacy group" +msgstr "" + +#: ../../include/group.php:309 +msgid "edit" +msgstr "" + +#: ../../include/group.php:332 +msgid "Edit group" +msgstr "" + +#: ../../include/group.php:333 +msgid "Add privacy group" +msgstr "" + +#: ../../include/group.php:334 +msgid "Channels not in any privacy group" +msgstr "" + +#: ../../include/connections.php:127 +msgid "New window" +msgstr "" + +#: ../../include/connections.php:128 +msgid "Open the selected location in a different window or browser tab" +msgstr "" + +#: ../../include/auth.php:148 +msgid "Logged out." +msgstr "" + +#: ../../include/auth.php:275 +msgid "Failed authentication" +msgstr "" + +#: ../../include/help.php:33 +msgid "Help:" +msgstr "" + +#: ../../include/help.php:65 +msgid "Not Found" msgstr "" diff --git a/util/typo.php b/util/typo.php index f9c9e5353..a8d363340 100644 --- a/util/typo.php +++ b/util/typo.php @@ -28,17 +28,18 @@ include_once($file); } - echo "Directory: include/RedDAV\n"; - $files = glob('include/RedDAV/*.php'); + echo "Directory: include/photo\n"; + $files = glob('include/photo/*.php'); foreach($files as $file) { echo $file . "\n"; include_once($file); } + echo "Directory: Zotlabs\n"; $files = glob('Zotlabs/*/*.php'); foreach($files as $file) { - if(strpos($file,'SiteModule') === false) { + if((strpos($file,'SiteModule') === false) || (strpos($file,'SiteWidget') === false)) { echo $file . "\n"; include_once($file); } @@ -51,21 +52,6 @@ include_once($file); } - - echo "Directory: include/photo\n"; - $files = glob('include/photo/*.php'); - foreach($files as $file) { - echo $file . "\n"; - include_once($file); - } - -// echo "Directory: mod\n"; -// $files = glob('mod/*.php'); -// foreach($files as $file) { -// echo $file . "\n"; -// include_once($file); -// } - echo "Directory: addon\n"; $dirs = glob('addon/*'); @@ -93,6 +79,5 @@ foreach($files as $file) { echo $file . "\n"; - passthru($phpath . ' util/typohelper.php ' . $file); -// include_once($file); + passthru($phpath . ' util/typohelper.php ' . $file); } |