diff options
Diffstat (limited to 'util')
-rw-r--r-- | util/Doxyfile | 4 | ||||
-rwxr-xr-x | util/addons | 15 | ||||
-rwxr-xr-x | util/admins | 60 | ||||
-rw-r--r-- | util/hmessages.po | 3297 | ||||
-rwxr-xr-x | util/udall | 2 |
5 files changed, 1870 insertions, 1508 deletions
diff --git a/util/Doxyfile b/util/Doxyfile index 7be774a81..14464df81 100644 --- a/util/Doxyfile +++ b/util/Doxyfile @@ -1,7 +1,8 @@ INPUT = README.md index.php boot.php include/ install/ util/ view/ Zotlabs/ RECURSIVE = YES PROJECT_NAME = "The Hubzilla" -PROJECT_LOGO = images/rm-64.png +PROJECT_LOGO = images/hz-64.png +IMAGE_PATH = images/ EXCLUDE = .htconfig.php library/ doc/ store/ vendor/ .git/ util/zotsh/easywebdav/ util/generate-hooks-index/ EXCLUDE_PATTERNS = *smarty3* *strings.php *.out *test* OUTPUT_DIRECTORY = doc @@ -33,5 +34,6 @@ INTERACTIVE_SVG = YES CLASS_GRAPH = YES COLLABORATION_GRAPH = NO # fix @var (https://bugzilla.gnome.org/show_bug.cgi?id=626105) +# Should be obsolete with doxygen >= 1.8.15 #INPUT_FILTER = "sed -e 's/@var\s/@see /'" INPUT_FILTER = "php util/Doxygen_phpvarfilter.php" diff --git a/util/addons b/util/addons index 3d772bf73..7bd70984e 100755 --- a/util/addons +++ b/util/addons @@ -10,6 +10,7 @@ echo <<< EOT util/addons list all # list all addons (*)= installed, (!)= disabled due to version compatibility util/addons install foo # install addon named 'foo' util/addons uninstall foo # uninstall addon named 'foo' + util/addons reinstall # reinstall all plugins EOT; } @@ -68,6 +69,20 @@ if($argc == 2 && $argv[1] === 'list') { killme(); } +if($argc == 2 && $argv[1] === 'reinstall') { + require_once("include/plugin.php"); + if($plugins) { + foreach($plugins as $p) { + if($p[1]) { + echo "Reinstall: ". $p[0] . "\n"; + uninstall_plugin($p[0]); + install_plugin($p[0]); + } + } + } + killme(); +} + if($argc == 3 && $argv[1] === 'list' && $argv[2] === 'all') { if($plugins) { diff --git a/util/admins b/util/admins new file mode 100755 index 000000000..3c7f0e83e --- /dev/null +++ b/util/admins @@ -0,0 +1,60 @@ +#!/usr/bin/env php +<?php + +if(!file_exists('include/cli_startup.php')) { + echo 'Run admins from the top level Hubzilla web directory, as util/admins <args>' . PHP_EOL; + exit(1); +} + + + +require_once('include/cli_startup.php'); + +cli_startup(); + +$helpArgs = getopt('h', array('help')); +if (count($helpArgs) === 1) { + echo <<<'EndOfOutput' +adds, removes, or lists admins + +Usage: util/admins + util/admins list + util/admins add <account_id> + util/admins remove <account_id> + +EndOfOutput; + return; +} + +if($argc == 1) { + $r = q("select account_id, account_roles, account_email from account"); + if($r) { + foreach($r as $rr) { + echo sprintf('%4u %s %s', $rr['account_id'], $rr['account_email'],(($rr['account_roles'] & 4096) ? '*' : '')) . PHP_EOL; + } + } +} + + + +if($argc > 1 && $argv[1] === 'list') { + $r = q("select account_id, account_roles, account_email from account where (account_roles & 4096) > 0"); + if($r) { + foreach($r as $rr) { + echo sprintf('%4u %s %s', $rr['account_id'], $rr['account_email'],(($rr['account_roles'] & 4096) ? '*' : '')) . PHP_EOL; + } + } +} + + +if($argc > 2 && $argv[1] === 'add' && intval($argv[2])) { + $r = q("update account set account_roles = (account_roles | 4096) where account_id = %d", + intval($argv[2]) + ); +} + +if($argc > 2 && $argv[1] === 'remove' && intval($argv[2])) { + $r = q("update account set account_roles = (account_roles - 4096) where account_id = %d and (account_roles & 4096) > 0", + intval($argv[2]) + ); +} diff --git a/util/hmessages.po b/util/hmessages.po index 9561cab2b..91cc1f191 100644 --- a/util/hmessages.po +++ b/util/hmessages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 3.9.2\n" +"Project-Id-Version: 3.9.6\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-10-19 11:04+0200\n" +"POT-Creation-Date: 2019-02-19 10:11+0100\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" @@ -150,11 +150,11 @@ msgid "Special - Group Repository" msgstr "" #: ../../Zotlabs/Access/PermissionRoles.php:306 -#: ../../Zotlabs/Module/Cdav.php:1227 ../../Zotlabs/Module/Connedit.php:919 +#: ../../Zotlabs/Module/Cdav.php:1227 ../../Zotlabs/Module/Connedit.php:935 #: ../../Zotlabs/Module/Profiles.php:795 ../../include/selectors.php:60 #: ../../include/selectors.php:77 ../../include/selectors.php:115 -#: ../../include/selectors.php:151 ../../include/event.php:1315 -#: ../../include/event.php:1322 ../../include/connections.php:703 +#: ../../include/selectors.php:151 ../../include/event.php:1327 +#: ../../include/event.php:1334 ../../include/connections.php:703 #: ../../include/connections.php:710 msgid "Other" msgstr "" @@ -163,22 +163,22 @@ msgstr "" msgid "Custom/Expert Mode" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Articles.php:34 +#: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Articles.php:42 #: ../../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/Menu.php:91 ../../Zotlabs/Module/Layouts.php:31 -#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Cards.php:37 +#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Cards.php:42 #: ../../Zotlabs/Module/Webpages.php:39 ../../Zotlabs/Module/Filestorage.php:51 -#: ../../addon/gallery/Mod_Gallery.php:47 ../../include/channel.php:1204 +#: ../../addon/gallery/Mod_Gallery.php:49 ../../include/channel.php:1253 msgid "Requested profile is not available." msgstr "" #: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 #: ../../Zotlabs/Module/Invite.php:21 ../../Zotlabs/Module/Invite.php:102 -#: ../../Zotlabs/Module/Articles.php:80 ../../Zotlabs/Module/Editlayout.php:67 -#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Channel.php:119 -#: ../../Zotlabs/Module/Channel.php:286 ../../Zotlabs/Module/Channel.php:325 +#: ../../Zotlabs/Module/Articles.php:88 ../../Zotlabs/Module/Editlayout.php:67 +#: ../../Zotlabs/Module/Editlayout.php:90 ../../Zotlabs/Module/Channel.php:168 +#: ../../Zotlabs/Module/Channel.php:335 ../../Zotlabs/Module/Channel.php:374 #: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Locs.php:87 #: ../../Zotlabs/Module/Mitem.php:129 ../../Zotlabs/Module/Events.php:271 #: ../../Zotlabs/Module/Appman.php:87 ../../Zotlabs/Module/Regmod.php:20 @@ -191,17 +191,17 @@ msgstr "" #: ../../Zotlabs/Module/Thing.php:300 ../../Zotlabs/Module/Thing.php:341 #: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Editblock.php:67 #: ../../Zotlabs/Module/Profile.php:85 ../../Zotlabs/Module/Profile.php:101 -#: ../../Zotlabs/Module/Mood.php:124 ../../Zotlabs/Module/Connections.php:32 +#: ../../Zotlabs/Module/Mood.php:126 ../../Zotlabs/Module/Connections.php:32 #: ../../Zotlabs/Module/Viewsrc.php:19 ../../Zotlabs/Module/Bookmarks.php:70 #: ../../Zotlabs/Module/Photos.php:69 ../../Zotlabs/Module/Wiki.php:59 #: ../../Zotlabs/Module/Wiki.php:285 ../../Zotlabs/Module/Wiki.php:428 #: ../../Zotlabs/Module/Pdledit.php:34 ../../Zotlabs/Module/Poke.php:157 #: ../../Zotlabs/Module/Profile_photo.php:302 #: ../../Zotlabs/Module/Profile_photo.php:315 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Item.php:229 -#: ../../Zotlabs/Module/Item.php:248 ../../Zotlabs/Module/Item.php:258 -#: ../../Zotlabs/Module/Item.php:1110 ../../Zotlabs/Module/Page.php:34 -#: ../../Zotlabs/Module/Page.php:133 ../../Zotlabs/Module/Connedit.php:390 +#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Item.php:376 +#: ../../Zotlabs/Module/Item.php:395 ../../Zotlabs/Module/Item.php:405 +#: ../../Zotlabs/Module/Item.php:1281 ../../Zotlabs/Module/Page.php:34 +#: ../../Zotlabs/Module/Page.php:133 ../../Zotlabs/Module/Connedit.php:399 #: ../../Zotlabs/Module/Chat.php:115 ../../Zotlabs/Module/Chat.php:120 #: ../../Zotlabs/Module/Menu.php:129 ../../Zotlabs/Module/Menu.php:140 #: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 @@ -213,15 +213,15 @@ msgstr "" #: ../../Zotlabs/Module/Editwebpage.php:89 #: ../../Zotlabs/Module/Editwebpage.php:107 #: ../../Zotlabs/Module/Editwebpage.php:121 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Cards.php:81 ../../Zotlabs/Module/Webpages.php:133 +#: ../../Zotlabs/Module/Cards.php:86 ../../Zotlabs/Module/Webpages.php:133 #: ../../Zotlabs/Module/Block.php:24 ../../Zotlabs/Module/Block.php:74 #: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Sources.php:80 -#: ../../Zotlabs/Module/Like.php:185 ../../Zotlabs/Module/Suggest.php:32 +#: ../../Zotlabs/Module/Like.php:187 ../../Zotlabs/Module/Suggest.php:32 #: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Mail.php:146 #: ../../Zotlabs/Module/Register.php:77 #: ../../Zotlabs/Module/Cover_photo.php:313 #: ../../Zotlabs/Module/Cover_photo.php:326 -#: ../../Zotlabs/Module/Display.php:448 ../../Zotlabs/Module/Network.php:17 +#: ../../Zotlabs/Module/Display.php:446 ../../Zotlabs/Module/Network.php:19 #: ../../Zotlabs/Module/Filestorage.php:15 #: ../../Zotlabs/Module/Filestorage.php:70 #: ../../Zotlabs/Module/Filestorage.php:96 @@ -232,13 +232,14 @@ msgstr "" #: ../../Zotlabs/Module/Card_edit.php:51 #: ../../Zotlabs/Module/Notifications.php:11 ../../Zotlabs/Lib/Chatroom.php:133 #: ../../Zotlabs/Web/WebServer.php:123 ../../addon/keepout/keepout.php:36 -#: ../../addon/openid/Mod_Id.php:53 ../../addon/pumpio/pumpio.php:40 -#: ../../include/attach.php:150 ../../include/attach.php:197 -#: ../../include/attach.php:270 ../../include/attach.php:379 -#: ../../include/attach.php:393 ../../include/attach.php:400 -#: ../../include/attach.php:482 ../../include/attach.php:1042 -#: ../../include/attach.php:1116 ../../include/attach.php:1281 -#: ../../include/items.php:3675 ../../include/photos.php:27 +#: ../../addon/flashcards/Mod_Flashcards.php:167 +#: ../../addon/openid/Mod_Id.php:53 ../../addon/pumpio/pumpio.php:44 +#: ../../include/attach.php:150 ../../include/attach.php:199 +#: ../../include/attach.php:272 ../../include/attach.php:381 +#: ../../include/attach.php:395 ../../include/attach.php:402 +#: ../../include/attach.php:484 ../../include/attach.php:1044 +#: ../../include/attach.php:1118 ../../include/attach.php:1283 +#: ../../include/items.php:3781 ../../include/photos.php:27 msgid "Permission denied." msgstr "" @@ -247,7 +248,7 @@ msgstr "" msgid "Block Name" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2465 +#: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2534 msgid "Blocks" msgstr "" @@ -265,11 +266,11 @@ msgstr "" msgid "Edited" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Articles.php:108 +#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Articles.php:116 #: ../../Zotlabs/Module/Cdav.php:1230 ../../Zotlabs/Module/New_channel.php:189 -#: ../../Zotlabs/Module/Connedit.php:922 ../../Zotlabs/Module/Menu.php:181 +#: ../../Zotlabs/Module/Connedit.php:938 ../../Zotlabs/Module/Menu.php:181 #: ../../Zotlabs/Module/Layouts.php:185 ../../Zotlabs/Module/Profiles.php:798 -#: ../../Zotlabs/Module/Cards.php:109 ../../Zotlabs/Module/Webpages.php:254 +#: ../../Zotlabs/Module/Cards.php:113 ../../Zotlabs/Module/Webpages.php:254 #: ../../Zotlabs/Storage/Browser.php:276 ../../Zotlabs/Storage/Browser.php:390 #: ../../Zotlabs/Widget/Cdav.php:128 ../../Zotlabs/Widget/Cdav.php:165 msgid "Create" @@ -283,21 +284,21 @@ msgstr "" #: ../../Zotlabs/Module/Connections.php:322 #: ../../Zotlabs/Module/Connections.php:342 ../../Zotlabs/Module/Wiki.php:211 #: ../../Zotlabs/Module/Wiki.php:384 ../../Zotlabs/Module/Menu.php:175 -#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Group.php:235 +#: ../../Zotlabs/Module/Layouts.php:193 ../../Zotlabs/Module/Group.php:252 #: ../../Zotlabs/Module/Editwebpage.php:142 #: ../../Zotlabs/Module/Webpages.php:255 ../../Zotlabs/Module/Card_edit.php:99 -#: ../../Zotlabs/Module/Oauth.php:173 ../../Zotlabs/Lib/Apps.php:534 -#: ../../Zotlabs/Lib/ThreadItem.php:130 ../../Zotlabs/Storage/Browser.php:290 +#: ../../Zotlabs/Module/Oauth.php:173 ../../Zotlabs/Lib/Apps.php:556 +#: ../../Zotlabs/Lib/ThreadItem.php:147 ../../Zotlabs/Storage/Browser.php:290 #: ../../Zotlabs/Widget/Cdav.php:126 ../../Zotlabs/Widget/Cdav.php:162 -#: ../../include/channel.php:1303 ../../include/channel.php:1307 +#: ../../include/channel.php:1352 ../../include/channel.php:1356 #: ../../include/menu.php:118 msgid "Edit" msgstr "" -#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Photos.php:1104 +#: ../../Zotlabs/Module/Blocks.php:161 ../../Zotlabs/Module/Photos.php:1117 #: ../../Zotlabs/Module/Wiki.php:301 ../../Zotlabs/Module/Layouts.php:194 #: ../../Zotlabs/Module/Webpages.php:256 ../../Zotlabs/Widget/Cdav.php:124 -#: ../../addon/hsse/hsse.php:186 ../../include/conversation.php:1389 +#: ../../addon/hsse/hsse.php:186 ../../include/conversation.php:1392 msgid "Share" msgstr "" @@ -309,12 +310,12 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Profs.php:176 ../../Zotlabs/Module/Thing.php:267 #: ../../Zotlabs/Module/Oauth2.php:195 ../../Zotlabs/Module/Editblock.php:139 #: ../../Zotlabs/Module/Connections.php:292 -#: ../../Zotlabs/Module/Photos.php:1205 ../../Zotlabs/Module/Connedit.php:655 -#: ../../Zotlabs/Module/Connedit.php:924 ../../Zotlabs/Module/Profiles.php:800 +#: ../../Zotlabs/Module/Photos.php:1220 ../../Zotlabs/Module/Connedit.php:668 +#: ../../Zotlabs/Module/Connedit.php:940 ../../Zotlabs/Module/Profiles.php:800 #: ../../Zotlabs/Module/Editwebpage.php:167 #: ../../Zotlabs/Module/Webpages.php:257 ../../Zotlabs/Module/Card_edit.php:129 -#: ../../Zotlabs/Module/Oauth.php:174 ../../Zotlabs/Lib/Apps.php:535 -#: ../../Zotlabs/Lib/ThreadItem.php:150 ../../Zotlabs/Storage/Browser.php:291 +#: ../../Zotlabs/Module/Oauth.php:174 ../../Zotlabs/Lib/Apps.php:557 +#: ../../Zotlabs/Lib/ThreadItem.php:167 ../../Zotlabs/Storage/Browser.php:291 #: ../../include/conversation.php:691 ../../include/conversation.php:736 msgid "Delete" msgstr "" @@ -360,20 +361,44 @@ msgstr[1] "" msgid "Invite App" msgstr "" -#: ../../Zotlabs/Module/Invite.php:110 ../../Zotlabs/Module/Articles.php:43 +#: ../../Zotlabs/Module/Invite.php:110 ../../Zotlabs/Module/Articles.php:51 #: ../../Zotlabs/Module/Cdav.php:839 ../../Zotlabs/Module/Cdav.php:848 #: ../../Zotlabs/Module/Permcats.php:62 ../../Zotlabs/Module/Lang.php:17 #: ../../Zotlabs/Module/Uexport.php:61 ../../Zotlabs/Module/Pubstream.php:20 #: ../../Zotlabs/Module/Connect.php:104 ../../Zotlabs/Module/Tokens.php:99 #: ../../Zotlabs/Module/Oauth2.php:106 ../../Zotlabs/Module/Randprof.php:29 -#: ../../Zotlabs/Module/Mood.php:132 ../../Zotlabs/Module/Bookmarks.php:78 +#: ../../Zotlabs/Module/Mood.php:134 ../../Zotlabs/Module/Bookmarks.php:78 #: ../../Zotlabs/Module/Wiki.php:52 ../../Zotlabs/Module/Pdledit.php:42 #: ../../Zotlabs/Module/Poke.php:165 ../../Zotlabs/Module/Chat.php:102 -#: ../../Zotlabs/Module/Notes.php:55 ../../Zotlabs/Module/Defperms.php:189 -#: ../../Zotlabs/Module/Group.php:101 ../../Zotlabs/Module/Cards.php:46 -#: ../../Zotlabs/Module/Webpages.php:48 ../../Zotlabs/Module/Sources.php:88 -#: ../../Zotlabs/Module/Suggest.php:40 ../../Zotlabs/Module/Probe.php:18 -#: ../../Zotlabs/Module/Oauth.php:100 +#: ../../Zotlabs/Module/Notes.php:56 ../../Zotlabs/Module/Affinity.php:52 +#: ../../Zotlabs/Module/Defperms.php:189 ../../Zotlabs/Module/Group.php:106 +#: ../../Zotlabs/Module/Cards.php:51 ../../Zotlabs/Module/Webpages.php:48 +#: ../../Zotlabs/Module/Sources.php:88 ../../Zotlabs/Module/Suggest.php:40 +#: ../../Zotlabs/Module/Probe.php:18 ../../Zotlabs/Module/Oauth.php:100 +#: ../../addon/skeleton/Mod_Skeleton.php:32 +#: ../../addon/gnusoc/Mod_Gnusoc.php:22 ../../addon/planets/Mod_Planets.php:20 +#: ../../addon/wppost/Mod_Wppost.php:41 ../../addon/nsfw/Mod_Nsfw.php:33 +#: ../../addon/ijpost/Mod_Ijpost.php:35 ../../addon/dwpost/Mod_Dwpost.php:36 +#: ../../addon/gallery/Mod_Gallery.php:58 ../../addon/ljpost/Mod_Ljpost.php:36 +#: ../../addon/startpage/Mod_Startpage.php:50 +#: ../../addon/diaspora/Mod_Diaspora.php:55 +#: ../../addon/photocache/Mod_Photocache.php:42 +#: ../../addon/rainbowtag/Mod_Rainbowtag.php:21 +#: ../../addon/nsabait/Mod_Nsabait.php:20 +#: ../../addon/fuzzloc/Mod_Fuzzloc.php:34 ../../addon/rtof/Mod_Rtof.php:36 +#: ../../addon/jappixmini/Mod_Jappixmini.php:96 +#: ../../addon/superblock/Mod_Superblock.php:20 +#: ../../addon/nofed/Mod_Nofed.php:33 ../../addon/redred/Mod_Redred.php:50 +#: ../../addon/hsse/Mod_Hsse.php:21 ../../addon/pubcrawl/Mod_Pubcrawl.php:40 +#: ../../addon/libertree/Mod_Libertree.php:35 +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:53 +#: ../../addon/statusnet/Mod_Statusnet.php:146 +#: ../../addon/twitter/Mod_Twitter.php:78 +#: ../../addon/smileybutton/Mod_Smileybutton.php:35 +#: ../../addon/sendzid/Mod_Sendzid.php:20 +#: ../../addon/pageheader/Mod_Pageheader.php:34 +#: ../../addon/authchoose/Mod_Authchoose.php:28 +#: ../../addon/xmpp/Mod_Xmpp.php:35 ../../addon/pumpio/Mod_Pumpio.php:53 msgid "Not Installed" msgstr "" @@ -432,7 +457,7 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Channels.php:147 #: ../../Zotlabs/Module/Admin/Themes.php:158 #: ../../Zotlabs/Module/Admin/Site.php:289 -#: ../../Zotlabs/Module/Admin/Addons.php:438 +#: ../../Zotlabs/Module/Admin/Addons.php:441 #: ../../Zotlabs/Module/Admin/Profs.php:178 #: ../../Zotlabs/Module/Admin/Account_edit.php:73 #: ../../Zotlabs/Module/Admin/Security.php:112 @@ -446,83 +471,84 @@ msgstr "" #: ../../Zotlabs/Module/Settings/Account.php:103 #: ../../Zotlabs/Module/Settings/Profiles.php:50 #: ../../Zotlabs/Module/Settings/Manage.php:41 -#: ../../Zotlabs/Module/Settings/Featured.php:54 #: ../../Zotlabs/Module/Settings/Channel_home.php:89 #: ../../Zotlabs/Module/Settings/Directory.php:41 #: ../../Zotlabs/Module/Settings/Editor.php:41 #: ../../Zotlabs/Module/Settings/Display.php:189 #: ../../Zotlabs/Module/Settings/Network.php:61 #: ../../Zotlabs/Module/Tokens.php:188 ../../Zotlabs/Module/Thing.php:326 -#: ../../Zotlabs/Module/Thing.php:379 ../../Zotlabs/Module/Import.php:565 +#: ../../Zotlabs/Module/Thing.php:379 ../../Zotlabs/Module/Import.php:574 #: ../../Zotlabs/Module/Oauth2.php:116 ../../Zotlabs/Module/Cal.php:344 -#: ../../Zotlabs/Module/Mood.php:156 ../../Zotlabs/Module/Photos.php:1084 -#: ../../Zotlabs/Module/Photos.php:1124 ../../Zotlabs/Module/Photos.php:1242 +#: ../../Zotlabs/Module/Mood.php:158 ../../Zotlabs/Module/Photos.php:1097 +#: ../../Zotlabs/Module/Photos.php:1138 ../../Zotlabs/Module/Photos.php:1257 #: ../../Zotlabs/Module/Wiki.php:215 ../../Zotlabs/Module/Pdledit.php:107 -#: ../../Zotlabs/Module/Poke.php:217 ../../Zotlabs/Module/Connedit.php:888 +#: ../../Zotlabs/Module/Poke.php:217 ../../Zotlabs/Module/Connedit.php:904 #: ../../Zotlabs/Module/Chat.php:211 ../../Zotlabs/Module/Chat.php:250 #: ../../Zotlabs/Module/Email_validation.php:40 -#: ../../Zotlabs/Module/Pconfig.php:111 ../../Zotlabs/Module/Defperms.php:265 -#: ../../Zotlabs/Module/Group.php:140 ../../Zotlabs/Module/Group.php:156 -#: ../../Zotlabs/Module/Profiles.php:723 ../../Zotlabs/Module/Editpost.php:85 -#: ../../Zotlabs/Module/Sources.php:125 ../../Zotlabs/Module/Sources.php:162 -#: ../../Zotlabs/Module/Xchan.php:15 ../../Zotlabs/Module/Mail.php:431 -#: ../../Zotlabs/Module/Filestorage.php:183 ../../Zotlabs/Module/Rate.php:166 -#: ../../Zotlabs/Module/Oauth.php:111 ../../Zotlabs/Lib/ThreadItem.php:767 -#: ../../Zotlabs/Widget/Eventstools.php:16 +#: ../../Zotlabs/Module/Pconfig.php:116 ../../Zotlabs/Module/Affinity.php:87 +#: ../../Zotlabs/Module/Defperms.php:265 ../../Zotlabs/Module/Group.php:150 +#: ../../Zotlabs/Module/Group.php:166 ../../Zotlabs/Module/Profiles.php:723 +#: ../../Zotlabs/Module/Editpost.php:85 ../../Zotlabs/Module/Sources.php:125 +#: ../../Zotlabs/Module/Sources.php:162 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Module/Mail.php:431 ../../Zotlabs/Module/Filestorage.php:183 +#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Module/Oauth.php:111 +#: ../../Zotlabs/Lib/ThreadItem.php:795 ../../Zotlabs/Widget/Eventstools.php:16 #: ../../Zotlabs/Widget/Wiki_pages.php:42 #: ../../Zotlabs/Widget/Wiki_pages.php:99 #: ../../view/theme/redbasic_c/php/config.php:95 #: ../../view/theme/redbasic/php/config.php:94 -#: ../../addon/skeleton/skeleton.php:65 ../../addon/planets/planets.php:153 +#: ../../addon/skeleton/Mod_Skeleton.php:51 #: ../../addon/openclipatar/openclipatar.php:53 #: ../../addon/wppost/Mod_Wppost.php:97 ../../addon/nsfw/Mod_Nsfw.php:61 -#: ../../addon/ijpost/ijpost.php:89 ../../addon/dwpost/dwpost.php:89 +#: ../../addon/ijpost/Mod_Ijpost.php:72 ../../addon/dwpost/Mod_Dwpost.php:71 #: ../../addon/likebanner/likebanner.php:57 -#: ../../addon/redphotos/redphotos.php:136 ../../addon/irc/irc.php:53 -#: ../../addon/ljpost/ljpost.php:86 ../../addon/startpage/Mod_Startpage.php:73 -#: ../../addon/diaspora/Mod_Diaspora.php:99 ../../addon/hzfiles/hzfiles.php:84 -#: ../../addon/visage/visage.php:170 ../../addon/nsabait/nsabait.php:161 -#: ../../addon/mailtest/mailtest.php:100 -#: ../../addon/openstreetmap/openstreetmap.php:168 -#: ../../addon/fuzzloc/fuzzloc.php:191 ../../addon/rtof/rtof.php:101 -#: ../../addon/jappixmini/jappixmini.php:371 -#: ../../addon/channelreputation/channelreputation.php:139 -#: ../../addon/nofed/nofed.php:80 ../../addon/redred/redred.php:119 +#: ../../addon/redphotos/redphotos.php:136 ../../addon/irc/irc.php:45 +#: ../../addon/ljpost/Mod_Ljpost.php:73 +#: ../../addon/startpage/Mod_Startpage.php:73 +#: ../../addon/diaspora/Mod_Diaspora.php:99 +#: ../../addon/photocache/Mod_Photocache.php:67 +#: ../../addon/hzfiles/hzfiles.php:84 ../../addon/mailtest/mailtest.php:100 +#: ../../addon/openstreetmap/openstreetmap.php:169 +#: ../../addon/fuzzloc/Mod_Fuzzloc.php:56 ../../addon/rtof/Mod_Rtof.php:72 +#: ../../addon/jappixmini/Mod_Jappixmini.php:261 +#: ../../addon/channelreputation/channelreputation.php:140 +#: ../../addon/nofed/Mod_Nofed.php:53 ../../addon/redred/Mod_Redred.php:90 #: ../../addon/logrot/logrot.php:35 ../../addon/frphotos/frphotos.php:97 #: ../../addon/pubcrawl/Mod_Pubcrawl.php:63 -#: ../../addon/chords/Mod_Chords.php:60 ../../addon/libertree/libertree.php:85 -#: ../../addon/flattrwidget/flattrwidget.php:124 -#: ../../addon/statusnet/statusnet.php:322 -#: ../../addon/statusnet/statusnet.php:380 -#: ../../addon/statusnet/statusnet.php:432 -#: ../../addon/statusnet/statusnet.php:900 ../../addon/twitter/twitter.php:221 -#: ../../addon/twitter/twitter.php:268 -#: ../../addon/smileybutton/smileybutton.php:219 -#: ../../addon/cart/Settings/Cart.php:114 ../../addon/cart/cart.php:1263 +#: ../../addon/chords/Mod_Chords.php:60 +#: ../../addon/libertree/Mod_Libertree.php:70 +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:92 +#: ../../addon/statusnet/Mod_Statusnet.php:193 +#: ../../addon/statusnet/Mod_Statusnet.php:251 +#: ../../addon/statusnet/Mod_Statusnet.php:306 +#: ../../addon/statusnet/statusnet.php:602 +#: ../../addon/twitter/Mod_Twitter.php:184 +#: ../../addon/smileybutton/Mod_Smileybutton.php:55 +#: ../../addon/cart/Settings/Cart.php:114 ../../addon/cart/cart.php:1264 #: ../../addon/cart/submodules/manualcat.php:248 #: ../../addon/cart/submodules/hzservices.php:640 #: ../../addon/cart/submodules/subscriptions.php:410 -#: ../../addon/piwik/piwik.php:95 ../../addon/pageheader/pageheader.php:48 -#: ../../addon/xmpp/xmpp.php:69 ../../addon/pumpio/pumpio.php:237 +#: ../../addon/piwik/piwik.php:95 ../../addon/pageheader/Mod_Pageheader.php:54 +#: ../../addon/xmpp/Mod_Xmpp.php:70 ../../addon/pumpio/Mod_Pumpio.php:115 #: ../../addon/redfiles/redfiles.php:124 ../../addon/hubwall/hubwall.php:95 #: ../../include/js_strings.php:22 msgid "Submit" msgstr "" -#: ../../Zotlabs/Module/Articles.php:43 +#: ../../Zotlabs/Module/Articles.php:51 msgid "Articles App" msgstr "" -#: ../../Zotlabs/Module/Articles.php:44 +#: ../../Zotlabs/Module/Articles.php:52 msgid "Create interactive articles" msgstr "" -#: ../../Zotlabs/Module/Articles.php:107 +#: ../../Zotlabs/Module/Articles.php:115 msgid "Add Article" msgstr "" -#: ../../Zotlabs/Module/Articles.php:214 ../../Zotlabs/Lib/Apps.php:302 -#: ../../include/nav.php:482 +#: ../../Zotlabs/Module/Articles.php:222 ../../Zotlabs/Lib/Apps.php:324 +#: ../../include/nav.php:512 msgid "Articles" msgstr "" @@ -550,11 +576,11 @@ msgstr "" #: ../../Zotlabs/Module/Editlayout.php:140 ../../Zotlabs/Module/Cdav.php:944 #: ../../Zotlabs/Module/Cdav.php:1233 ../../Zotlabs/Module/Article_edit.php:131 -#: ../../Zotlabs/Module/Admin/Addons.php:423 +#: ../../Zotlabs/Module/Admin/Addons.php:426 #: ../../Zotlabs/Module/Oauth2.php:117 ../../Zotlabs/Module/Oauth2.php:145 #: ../../Zotlabs/Module/Editblock.php:141 ../../Zotlabs/Module/Wiki.php:368 #: ../../Zotlabs/Module/Wiki.php:401 ../../Zotlabs/Module/Profile_photo.php:465 -#: ../../Zotlabs/Module/Connedit.php:925 ../../Zotlabs/Module/Fbrowser.php:66 +#: ../../Zotlabs/Module/Connedit.php:941 ../../Zotlabs/Module/Fbrowser.php:66 #: ../../Zotlabs/Module/Fbrowser.php:88 ../../Zotlabs/Module/Profiles.php:801 #: ../../Zotlabs/Module/Editwebpage.php:169 #: ../../Zotlabs/Module/Editpost.php:109 ../../Zotlabs/Module/Filer.php:55 @@ -562,17 +588,18 @@ msgstr "" #: ../../Zotlabs/Module/Tagrm.php:138 ../../Zotlabs/Module/Card_edit.php:131 #: ../../Zotlabs/Module/Oauth.php:112 ../../Zotlabs/Module/Oauth.php:138 #: ../../addon/hsse/hsse.php:209 ../../addon/hsse/hsse.php:258 -#: ../../include/conversation.php:1412 ../../include/conversation.php:1461 +#: ../../include/conversation.php:1415 ../../include/conversation.php:1464 msgid "Cancel" msgstr "" #: ../../Zotlabs/Module/Profperm.php:28 ../../Zotlabs/Module/Subthread.php:86 -#: ../../Zotlabs/Module/Import_items.php:120 ../../Zotlabs/Module/Cloud.php:126 -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Dreport.php:10 -#: ../../Zotlabs/Module/Dreport.php:68 ../../Zotlabs/Module/Like.php:296 -#: ../../Zotlabs/Web/WebServer.php:122 ../../addon/redphotos/redphotos.php:119 -#: ../../addon/hzfiles/hzfiles.php:73 ../../addon/frphotos/frphotos.php:82 -#: ../../addon/redfiles/redfiles.php:109 ../../include/items.php:384 +#: ../../Zotlabs/Module/Import_items.php:120 ../../Zotlabs/Module/Share.php:71 +#: ../../Zotlabs/Module/Cloud.php:126 ../../Zotlabs/Module/Group.php:98 +#: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:79 +#: ../../Zotlabs/Module/Like.php:301 ../../Zotlabs/Web/WebServer.php:122 +#: ../../addon/redphotos/redphotos.php:119 ../../addon/hzfiles/hzfiles.php:73 +#: ../../addon/frphotos/frphotos.php:82 ../../addon/redfiles/redfiles.php:109 +#: ../../include/items.php:416 msgid "Permission denied" msgstr "" @@ -584,8 +611,8 @@ msgstr "" msgid "Profile Visibility Editor" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:113 ../../Zotlabs/Lib/Apps.php:337 -#: ../../include/channel.php:1651 +#: ../../Zotlabs/Module/Profperm.php:113 ../../Zotlabs/Lib/Apps.php:359 +#: ../../include/channel.php:1700 msgid "Profile" msgstr "" @@ -611,12 +638,12 @@ msgid "Summary: " msgstr "" #: ../../Zotlabs/Module/Cdav.php:811 ../../Zotlabs/Module/Cdav.php:812 -#: ../../Zotlabs/Module/Cdav.php:819 ../../Zotlabs/Module/Embedphotos.php:146 -#: ../../Zotlabs/Module/Photos.php:819 ../../Zotlabs/Module/Photos.php:1275 -#: ../../Zotlabs/Lib/Activity.php:858 ../../Zotlabs/Lib/Apps.php:994 -#: ../../Zotlabs/Lib/Apps.php:1078 ../../Zotlabs/Storage/Browser.php:164 +#: ../../Zotlabs/Module/Cdav.php:819 ../../Zotlabs/Module/Embedphotos.php:154 +#: ../../Zotlabs/Module/Photos.php:832 ../../Zotlabs/Module/Photos.php:1296 +#: ../../Zotlabs/Lib/Activity.php:1011 ../../Zotlabs/Lib/Apps.php:1113 +#: ../../Zotlabs/Lib/Apps.php:1197 ../../Zotlabs/Storage/Browser.php:164 #: ../../Zotlabs/Widget/Portfolio.php:95 ../../Zotlabs/Widget/Album.php:84 -#: ../../addon/pubcrawl/as.php:963 ../../include/conversation.php:1166 +#: ../../addon/pubcrawl/as.php:959 ../../include/conversation.php:1166 msgid "Unknown" msgstr "" @@ -685,14 +712,14 @@ msgstr "" #: ../../Zotlabs/Module/Cdav.php:924 ../../Zotlabs/Module/Events.php:690 #: ../../Zotlabs/Module/Events.php:699 ../../Zotlabs/Module/Cal.php:338 -#: ../../Zotlabs/Module/Cal.php:345 ../../Zotlabs/Module/Photos.php:973 +#: ../../Zotlabs/Module/Cal.php:345 ../../Zotlabs/Module/Photos.php:986 msgid "Previous" msgstr "" #: ../../Zotlabs/Module/Cdav.php:925 ../../Zotlabs/Module/Events.php:691 #: ../../Zotlabs/Module/Events.php:700 ../../Zotlabs/Module/Setup.php:263 #: ../../Zotlabs/Module/Cal.php:339 ../../Zotlabs/Module/Cal.php:346 -#: ../../Zotlabs/Module/Photos.php:982 +#: ../../Zotlabs/Module/Photos.php:995 msgid "Next" msgstr "" @@ -748,8 +775,8 @@ msgstr "" #: ../../Zotlabs/Module/Cdav.php:1215 ../../Zotlabs/Module/Sharedwithme.php:104 #: ../../Zotlabs/Module/Admin/Channels.php:159 #: ../../Zotlabs/Module/Oauth2.php:118 ../../Zotlabs/Module/Oauth2.php:146 -#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Connedit.php:907 -#: ../../Zotlabs/Module/Chat.php:259 ../../Zotlabs/Module/Group.php:144 +#: ../../Zotlabs/Module/Wiki.php:218 ../../Zotlabs/Module/Connedit.php:923 +#: ../../Zotlabs/Module/Chat.php:259 ../../Zotlabs/Module/Group.php:154 #: ../../Zotlabs/Module/Oauth.php:113 ../../Zotlabs/Module/Oauth.php:139 #: ../../Zotlabs/Lib/NativeWikiPage.php:561 #: ../../Zotlabs/Storage/Browser.php:285 @@ -758,15 +785,15 @@ msgstr "" msgid "Name" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1216 ../../Zotlabs/Module/Connedit.php:908 +#: ../../Zotlabs/Module/Cdav.php:1216 ../../Zotlabs/Module/Connedit.php:924 msgid "Organisation" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1217 ../../Zotlabs/Module/Connedit.php:909 +#: ../../Zotlabs/Module/Cdav.php:1217 ../../Zotlabs/Module/Connedit.php:925 msgid "Title" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1218 ../../Zotlabs/Module/Connedit.php:910 +#: ../../Zotlabs/Module/Cdav.php:1218 ../../Zotlabs/Module/Connedit.php:926 #: ../../Zotlabs/Module/Profiles.php:786 msgid "Phone" msgstr "" @@ -774,97 +801,97 @@ msgstr "" #: ../../Zotlabs/Module/Cdav.php:1219 #: ../../Zotlabs/Module/Admin/Accounts.php:171 #: ../../Zotlabs/Module/Admin/Accounts.php:183 -#: ../../Zotlabs/Module/Connedit.php:911 ../../Zotlabs/Module/Profiles.php:787 +#: ../../Zotlabs/Module/Connedit.php:927 ../../Zotlabs/Module/Profiles.php:787 #: ../../addon/openid/MysqlProvider.php:56 -#: ../../addon/openid/MysqlProvider.php:57 ../../addon/rtof/rtof.php:93 -#: ../../addon/redred/redred.php:107 ../../include/network.php:1779 +#: ../../addon/openid/MysqlProvider.php:57 ../../addon/rtof/Mod_Rtof.php:57 +#: ../../addon/redred/Mod_Redred.php:71 ../../include/network.php:1721 msgid "Email" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1220 ../../Zotlabs/Module/Connedit.php:912 +#: ../../Zotlabs/Module/Cdav.php:1220 ../../Zotlabs/Module/Connedit.php:928 #: ../../Zotlabs/Module/Profiles.php:788 msgid "Instant messenger" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1221 ../../Zotlabs/Module/Connedit.php:913 +#: ../../Zotlabs/Module/Cdav.php:1221 ../../Zotlabs/Module/Connedit.php:929 #: ../../Zotlabs/Module/Profiles.php:789 msgid "Website" msgstr "" #: ../../Zotlabs/Module/Cdav.php:1222 ../../Zotlabs/Module/Locs.php:118 #: ../../Zotlabs/Module/Admin/Channels.php:160 -#: ../../Zotlabs/Module/Connedit.php:914 ../../Zotlabs/Module/Profiles.php:502 +#: ../../Zotlabs/Module/Connedit.php:930 ../../Zotlabs/Module/Profiles.php:502 #: ../../Zotlabs/Module/Profiles.php:790 msgid "Address" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1223 ../../Zotlabs/Module/Connedit.php:915 +#: ../../Zotlabs/Module/Cdav.php:1223 ../../Zotlabs/Module/Connedit.php:931 #: ../../Zotlabs/Module/Profiles.php:791 msgid "Note" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1224 ../../Zotlabs/Module/Connedit.php:916 -#: ../../Zotlabs/Module/Profiles.php:792 ../../include/event.php:1308 +#: ../../Zotlabs/Module/Cdav.php:1224 ../../Zotlabs/Module/Connedit.php:932 +#: ../../Zotlabs/Module/Profiles.php:792 ../../include/event.php:1320 #: ../../include/connections.php:696 msgid "Mobile" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1225 ../../Zotlabs/Module/Connedit.php:917 -#: ../../Zotlabs/Module/Profiles.php:793 ../../include/event.php:1309 +#: ../../Zotlabs/Module/Cdav.php:1225 ../../Zotlabs/Module/Connedit.php:933 +#: ../../Zotlabs/Module/Profiles.php:793 ../../include/event.php:1321 #: ../../include/connections.php:697 msgid "Home" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1226 ../../Zotlabs/Module/Connedit.php:918 -#: ../../Zotlabs/Module/Profiles.php:794 ../../include/event.php:1312 +#: ../../Zotlabs/Module/Cdav.php:1226 ../../Zotlabs/Module/Connedit.php:934 +#: ../../Zotlabs/Module/Profiles.php:794 ../../include/event.php:1324 #: ../../include/connections.php:700 msgid "Work" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1228 ../../Zotlabs/Module/Connedit.php:920 +#: ../../Zotlabs/Module/Cdav.php:1228 ../../Zotlabs/Module/Connedit.php:936 #: ../../Zotlabs/Module/Profiles.php:796 -#: ../../addon/jappixmini/jappixmini.php:368 +#: ../../addon/jappixmini/Mod_Jappixmini.php:216 msgid "Add Contact" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1229 ../../Zotlabs/Module/Connedit.php:921 +#: ../../Zotlabs/Module/Cdav.php:1229 ../../Zotlabs/Module/Connedit.php:937 #: ../../Zotlabs/Module/Profiles.php:797 msgid "Add Field" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1231 ../../Zotlabs/Module/Admin/Addons.php:453 +#: ../../Zotlabs/Module/Cdav.php:1231 ../../Zotlabs/Module/Admin/Addons.php:456 #: ../../Zotlabs/Module/Oauth2.php:58 ../../Zotlabs/Module/Oauth2.php:144 -#: ../../Zotlabs/Module/Connedit.php:923 ../../Zotlabs/Module/Profiles.php:799 +#: ../../Zotlabs/Module/Connedit.php:939 ../../Zotlabs/Module/Profiles.php:799 #: ../../Zotlabs/Module/Oauth.php:53 ../../Zotlabs/Module/Oauth.php:137 -#: ../../Zotlabs/Lib/Apps.php:513 +#: ../../Zotlabs/Lib/Apps.php:535 msgid "Update" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1234 ../../Zotlabs/Module/Connedit.php:926 +#: ../../Zotlabs/Module/Cdav.php:1234 ../../Zotlabs/Module/Connedit.php:942 msgid "P.O. Box" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1235 ../../Zotlabs/Module/Connedit.php:927 +#: ../../Zotlabs/Module/Cdav.php:1235 ../../Zotlabs/Module/Connedit.php:943 msgid "Additional" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1236 ../../Zotlabs/Module/Connedit.php:928 +#: ../../Zotlabs/Module/Cdav.php:1236 ../../Zotlabs/Module/Connedit.php:944 msgid "Street" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1237 ../../Zotlabs/Module/Connedit.php:929 +#: ../../Zotlabs/Module/Cdav.php:1237 ../../Zotlabs/Module/Connedit.php:945 msgid "Locality" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1238 ../../Zotlabs/Module/Connedit.php:930 +#: ../../Zotlabs/Module/Cdav.php:1238 ../../Zotlabs/Module/Connedit.php:946 msgid "Region" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1239 ../../Zotlabs/Module/Connedit.php:931 +#: ../../Zotlabs/Module/Cdav.php:1239 ../../Zotlabs/Module/Connedit.php:947 msgid "ZIP Code" msgstr "" -#: ../../Zotlabs/Module/Cdav.php:1240 ../../Zotlabs/Module/Connedit.php:932 +#: ../../Zotlabs/Module/Cdav.php:1240 ../../Zotlabs/Module/Connedit.php:948 #: ../../Zotlabs/Module/Profiles.php:757 msgid "Country" msgstr "" @@ -903,7 +930,7 @@ msgid "" "connections." msgstr "" -#: ../../Zotlabs/Module/Permcats.php:112 ../../Zotlabs/Lib/Apps.php:350 +#: ../../Zotlabs/Module/Permcats.php:112 ../../Zotlabs/Lib/Apps.php:372 msgid "Permission Categories" msgstr "" @@ -912,58 +939,58 @@ msgid "Permission category name" msgstr "" #: ../../Zotlabs/Module/Permcats.php:121 ../../Zotlabs/Module/Tokens.php:181 -#: ../../Zotlabs/Module/Connedit.php:892 ../../Zotlabs/Module/Defperms.php:266 +#: ../../Zotlabs/Module/Connedit.php:908 ../../Zotlabs/Module/Defperms.php:266 msgid "My Settings" msgstr "" #: ../../Zotlabs/Module/Permcats.php:123 ../../Zotlabs/Module/Tokens.php:183 -#: ../../Zotlabs/Module/Connedit.php:887 ../../Zotlabs/Module/Defperms.php:264 +#: ../../Zotlabs/Module/Connedit.php:903 ../../Zotlabs/Module/Defperms.php:264 msgid "inherited" msgstr "" #: ../../Zotlabs/Module/Permcats.php:126 ../../Zotlabs/Module/Tokens.php:186 -#: ../../Zotlabs/Module/Connedit.php:894 ../../Zotlabs/Module/Defperms.php:269 +#: ../../Zotlabs/Module/Connedit.php:910 ../../Zotlabs/Module/Defperms.php:269 msgid "Individual Permissions" msgstr "" #: ../../Zotlabs/Module/Permcats.php:127 ../../Zotlabs/Module/Tokens.php:187 -#: ../../Zotlabs/Module/Connedit.php:895 +#: ../../Zotlabs/Module/Connedit.php:911 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/Channel.php:39 ../../Zotlabs/Module/Ochannel.php:32 -#: ../../Zotlabs/Module/Chat.php:31 ../../addon/chess/chess.php:508 +#: ../../Zotlabs/Module/Channel.php:41 ../../Zotlabs/Module/Ochannel.php:32 +#: ../../Zotlabs/Module/Chat.php:31 ../../addon/chess/Mod_Chess.php:343 msgid "You must be logged in to see this page." msgstr "" -#: ../../Zotlabs/Module/Channel.php:54 ../../Zotlabs/Module/Hcard.php:37 +#: ../../Zotlabs/Module/Channel.php:98 ../../Zotlabs/Module/Hcard.php:37 #: ../../Zotlabs/Module/Profile.php:45 msgid "Posts and comments" msgstr "" -#: ../../Zotlabs/Module/Channel.php:61 ../../Zotlabs/Module/Hcard.php:44 +#: ../../Zotlabs/Module/Channel.php:105 ../../Zotlabs/Module/Hcard.php:44 #: ../../Zotlabs/Module/Profile.php:52 msgid "Only posts" msgstr "" -#: ../../Zotlabs/Module/Channel.php:116 +#: ../../Zotlabs/Module/Channel.php:165 msgid "Insufficient permissions. Request redirected to profile page." msgstr "" -#: ../../Zotlabs/Module/Channel.php:133 ../../Zotlabs/Module/Network.php:163 +#: ../../Zotlabs/Module/Channel.php:182 ../../Zotlabs/Module/Network.php:173 msgid "Search Results For:" msgstr "" -#: ../../Zotlabs/Module/Channel.php:168 ../../Zotlabs/Module/Hq.php:134 +#: ../../Zotlabs/Module/Channel.php:217 ../../Zotlabs/Module/Hq.php:134 #: ../../Zotlabs/Module/Pubstream.php:94 ../../Zotlabs/Module/Display.php:80 -#: ../../Zotlabs/Module/Network.php:193 +#: ../../Zotlabs/Module/Network.php:203 msgid "Reset form" msgstr "" -#: ../../Zotlabs/Module/Channel.php:424 ../../Zotlabs/Module/Display.php:374 +#: ../../Zotlabs/Module/Channel.php:476 ../../Zotlabs/Module/Display.php:373 msgid "" "You must enable javascript for your browser to be able to view this content." msgstr "" @@ -1050,7 +1077,7 @@ msgstr "" msgid "You have got no unseen posts..." msgstr "" -#: ../../Zotlabs/Module/Search.php:17 ../../Zotlabs/Module/Photos.php:545 +#: ../../Zotlabs/Module/Search.php:17 ../../Zotlabs/Module/Photos.php:558 #: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Directory.php:67 #: ../../Zotlabs/Module/Directory.php:72 ../../Zotlabs/Module/Display.php:29 #: ../../Zotlabs/Module/Viewconnections.php:23 @@ -1058,9 +1085,9 @@ msgid "Public access denied." msgstr "" #: ../../Zotlabs/Module/Search.php:44 ../../Zotlabs/Module/Connections.php:338 -#: ../../Zotlabs/Lib/Apps.php:328 ../../Zotlabs/Widget/Sitesearch.php:31 -#: ../../Zotlabs/Widget/Activity_filter.php:150 ../../include/text.php:1068 -#: ../../include/text.php:1080 ../../include/acl_selectors.php:118 +#: ../../Zotlabs/Lib/Apps.php:350 ../../Zotlabs/Widget/Sitesearch.php:31 +#: ../../Zotlabs/Widget/Activity_filter.php:151 ../../include/text.php:1084 +#: ../../include/text.php:1096 ../../include/acl_selectors.php:118 #: ../../include/nav.php:183 msgid "Search" msgstr "" @@ -1083,7 +1110,7 @@ msgstr "" msgid "The unmoderated public stream of this hub" msgstr "" -#: ../../Zotlabs/Module/Pubstream.php:109 ../../Zotlabs/Lib/Apps.php:352 +#: ../../Zotlabs/Module/Pubstream.php:109 ../../Zotlabs/Lib/Apps.php:374 #: ../../Zotlabs/Widget/Notifications.php:142 msgid "Public Stream" msgstr "" @@ -1114,7 +1141,7 @@ msgstr "" msgid "Manage Channel Locations" msgstr "" -#: ../../Zotlabs/Module/Locs.php:119 ../../Zotlabs/Module/Admin.php:115 +#: ../../Zotlabs/Module/Locs.php:119 msgid "Primary" msgstr "" @@ -1140,21 +1167,21 @@ msgstr "" msgid "Use this form to drop the location if the hub is no longer operating." msgstr "" -#: ../../Zotlabs/Module/Apporder.php:44 +#: ../../Zotlabs/Module/Apporder.php:47 msgid "Change Order of Pinned Navbar Apps" msgstr "" -#: ../../Zotlabs/Module/Apporder.php:44 +#: ../../Zotlabs/Module/Apporder.php:47 msgid "Change Order of App Tray Apps" msgstr "" -#: ../../Zotlabs/Module/Apporder.php:45 +#: ../../Zotlabs/Module/Apporder.php:48 msgid "" "Use arrows to move the corresponding app left (top) or right (bottom) in the " "navbar" msgstr "" -#: ../../Zotlabs/Module/Apporder.php:45 +#: ../../Zotlabs/Module/Apporder.php:48 msgid "Use arrows to move the corresponding app up or down in the app tray" msgstr "" @@ -1210,50 +1237,41 @@ msgstr "" #: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Admin/Site.php:255 #: ../../Zotlabs/Module/Settings/Channel.php:309 #: ../../Zotlabs/Module/Settings/Display.php:89 -#: ../../Zotlabs/Module/Import.php:554 ../../Zotlabs/Module/Import.php:558 -#: ../../Zotlabs/Module/Import.php:559 ../../Zotlabs/Module/Api.php:99 -#: ../../Zotlabs/Module/Photos.php:699 ../../Zotlabs/Module/Wiki.php:227 -#: ../../Zotlabs/Module/Wiki.php:228 ../../Zotlabs/Module/Connedit.php:397 -#: ../../Zotlabs/Module/Connedit.php:780 ../../Zotlabs/Module/Menu.php:162 +#: ../../Zotlabs/Module/Import.php:563 ../../Zotlabs/Module/Import.php:567 +#: ../../Zotlabs/Module/Import.php:568 ../../Zotlabs/Module/Api.php:99 +#: ../../Zotlabs/Module/Photos.php:712 ../../Zotlabs/Module/Wiki.php:227 +#: ../../Zotlabs/Module/Wiki.php:228 ../../Zotlabs/Module/Connedit.php:406 +#: ../../Zotlabs/Module/Connedit.php:796 ../../Zotlabs/Module/Menu.php:162 #: ../../Zotlabs/Module/Menu.php:221 ../../Zotlabs/Module/Defperms.php:197 #: ../../Zotlabs/Module/Profiles.php:681 ../../Zotlabs/Module/Sources.php:124 #: ../../Zotlabs/Module/Sources.php:159 #: ../../Zotlabs/Module/Filestorage.php:178 #: ../../Zotlabs/Module/Filestorage.php:186 ../../Zotlabs/Lib/Libzotdir.php:162 #: ../../Zotlabs/Lib/Libzotdir.php:163 ../../Zotlabs/Lib/Libzotdir.php:165 -#: ../../Zotlabs/Storage/Browser.php:405 ../../boot.php:1630 +#: ../../Zotlabs/Storage/Browser.php:405 ../../boot.php:1634 #: ../../view/theme/redbasic_c/php/config.php:100 #: ../../view/theme/redbasic_c/php/config.php:115 #: ../../view/theme/redbasic/php/config.php:99 #: ../../view/theme/redbasic/php/config.php:116 -#: ../../addon/planets/planets.php:149 ../../addon/wppost/Mod_Wppost.php:82 -#: ../../addon/wppost/Mod_Wppost.php:86 ../../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/visage/visage.php:166 -#: ../../addon/nsabait/nsabait.php:157 ../../addon/fuzzloc/fuzzloc.php:178 -#: ../../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/channelreputation/channelreputation.php:111 -#: ../../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:246 -#: ../../addon/twitter/twitter.php:255 ../../addon/twitter/twitter.php:264 -#: ../../addon/smileybutton/smileybutton.php:211 -#: ../../addon/smileybutton/smileybutton.php:215 +#: ../../addon/wppost/Mod_Wppost.php:82 ../../addon/wppost/Mod_Wppost.php:86 +#: ../../addon/ijpost/Mod_Ijpost.php:61 ../../addon/dwpost/Mod_Dwpost.php:60 +#: ../../addon/ljpost/Mod_Ljpost.php:62 ../../addon/rtof/Mod_Rtof.php:49 +#: ../../addon/jappixmini/Mod_Jappixmini.php:161 +#: ../../addon/jappixmini/Mod_Jappixmini.php:191 +#: ../../addon/jappixmini/Mod_Jappixmini.php:199 +#: ../../addon/jappixmini/Mod_Jappixmini.php:203 +#: ../../addon/jappixmini/Mod_Jappixmini.php:207 +#: ../../addon/channelreputation/channelreputation.php:108 +#: ../../addon/nofed/Mod_Nofed.php:42 ../../addon/redred/Mod_Redred.php:63 +#: ../../addon/libertree/Mod_Libertree.php:59 +#: ../../addon/statusnet/Mod_Statusnet.php:260 +#: ../../addon/statusnet/Mod_Statusnet.php:282 +#: ../../addon/statusnet/Mod_Statusnet.php:291 +#: ../../addon/twitter/Mod_Twitter.php:162 +#: ../../addon/twitter/Mod_Twitter.php:171 +#: ../../addon/smileybutton/Mod_Smileybutton.php:44 #: ../../addon/cart/Settings/Cart.php:59 ../../addon/cart/Settings/Cart.php:71 -#: ../../addon/cart/cart.php:1257 +#: ../../addon/cart/cart.php:1258 #: ../../addon/cart/submodules/paypalbutton.php:87 #: ../../addon/cart/submodules/paypalbutton.php:95 #: ../../addon/cart/submodules/manualcat.php:63 @@ -1264,9 +1282,8 @@ msgstr "" #: ../../addon/cart/submodules/hzservices.php:650 #: ../../addon/cart/submodules/subscriptions.php:153 #: ../../addon/cart/submodules/subscriptions.php:425 -#: ../../addon/xmpp/xmpp.php:53 ../../addon/pumpio/pumpio.php:219 -#: ../../addon/pumpio/pumpio.php:223 ../../addon/pumpio/pumpio.php:227 -#: ../../addon/pumpio/pumpio.php:231 ../../include/dir_fns.php:143 +#: ../../addon/pumpio/Mod_Pumpio.php:94 ../../addon/pumpio/Mod_Pumpio.php:98 +#: ../../addon/pumpio/Mod_Pumpio.php:102 ../../include/dir_fns.php:143 #: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 msgid "No" msgstr "" @@ -1277,49 +1294,40 @@ msgstr "" #: ../../Zotlabs/Module/Removeme.php:63 ../../Zotlabs/Module/Admin/Site.php:257 #: ../../Zotlabs/Module/Settings/Channel.php:309 #: ../../Zotlabs/Module/Settings/Display.php:89 -#: ../../Zotlabs/Module/Import.php:554 ../../Zotlabs/Module/Import.php:558 -#: ../../Zotlabs/Module/Import.php:559 ../../Zotlabs/Module/Api.php:98 -#: ../../Zotlabs/Module/Photos.php:699 ../../Zotlabs/Module/Wiki.php:227 -#: ../../Zotlabs/Module/Wiki.php:228 ../../Zotlabs/Module/Connedit.php:397 +#: ../../Zotlabs/Module/Import.php:563 ../../Zotlabs/Module/Import.php:567 +#: ../../Zotlabs/Module/Import.php:568 ../../Zotlabs/Module/Api.php:98 +#: ../../Zotlabs/Module/Photos.php:712 ../../Zotlabs/Module/Wiki.php:227 +#: ../../Zotlabs/Module/Wiki.php:228 ../../Zotlabs/Module/Connedit.php:406 #: ../../Zotlabs/Module/Menu.php:162 ../../Zotlabs/Module/Menu.php:221 #: ../../Zotlabs/Module/Defperms.php:197 ../../Zotlabs/Module/Profiles.php:681 #: ../../Zotlabs/Module/Sources.php:124 ../../Zotlabs/Module/Sources.php:159 #: ../../Zotlabs/Module/Filestorage.php:178 #: ../../Zotlabs/Module/Filestorage.php:186 ../../Zotlabs/Lib/Libzotdir.php:162 #: ../../Zotlabs/Lib/Libzotdir.php:163 ../../Zotlabs/Lib/Libzotdir.php:165 -#: ../../Zotlabs/Storage/Browser.php:405 ../../boot.php:1630 +#: ../../Zotlabs/Storage/Browser.php:405 ../../boot.php:1634 #: ../../view/theme/redbasic_c/php/config.php:100 #: ../../view/theme/redbasic_c/php/config.php:115 #: ../../view/theme/redbasic/php/config.php:99 #: ../../view/theme/redbasic/php/config.php:116 -#: ../../addon/planets/planets.php:149 ../../addon/wppost/Mod_Wppost.php:82 -#: ../../addon/wppost/Mod_Wppost.php:86 ../../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/visage/visage.php:166 -#: ../../addon/nsabait/nsabait.php:157 ../../addon/fuzzloc/fuzzloc.php:178 -#: ../../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/channelreputation/channelreputation.php:111 -#: ../../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:246 -#: ../../addon/twitter/twitter.php:255 ../../addon/twitter/twitter.php:264 -#: ../../addon/smileybutton/smileybutton.php:211 -#: ../../addon/smileybutton/smileybutton.php:215 +#: ../../addon/wppost/Mod_Wppost.php:82 ../../addon/wppost/Mod_Wppost.php:86 +#: ../../addon/ijpost/Mod_Ijpost.php:61 ../../addon/dwpost/Mod_Dwpost.php:60 +#: ../../addon/ljpost/Mod_Ljpost.php:62 ../../addon/rtof/Mod_Rtof.php:49 +#: ../../addon/jappixmini/Mod_Jappixmini.php:161 +#: ../../addon/jappixmini/Mod_Jappixmini.php:191 +#: ../../addon/jappixmini/Mod_Jappixmini.php:199 +#: ../../addon/jappixmini/Mod_Jappixmini.php:203 +#: ../../addon/jappixmini/Mod_Jappixmini.php:207 +#: ../../addon/channelreputation/channelreputation.php:108 +#: ../../addon/nofed/Mod_Nofed.php:42 ../../addon/redred/Mod_Redred.php:63 +#: ../../addon/libertree/Mod_Libertree.php:59 +#: ../../addon/statusnet/Mod_Statusnet.php:260 +#: ../../addon/statusnet/Mod_Statusnet.php:282 +#: ../../addon/statusnet/Mod_Statusnet.php:291 +#: ../../addon/twitter/Mod_Twitter.php:162 +#: ../../addon/twitter/Mod_Twitter.php:171 +#: ../../addon/smileybutton/Mod_Smileybutton.php:44 #: ../../addon/cart/Settings/Cart.php:59 ../../addon/cart/Settings/Cart.php:71 -#: ../../addon/cart/cart.php:1257 +#: ../../addon/cart/cart.php:1258 #: ../../addon/cart/submodules/paypalbutton.php:87 #: ../../addon/cart/submodules/paypalbutton.php:95 #: ../../addon/cart/submodules/manualcat.php:63 @@ -1330,9 +1338,8 @@ msgstr "" #: ../../addon/cart/submodules/hzservices.php:650 #: ../../addon/cart/submodules/subscriptions.php:153 #: ../../addon/cart/submodules/subscriptions.php:425 -#: ../../addon/xmpp/xmpp.php:53 ../../addon/pumpio/pumpio.php:219 -#: ../../addon/pumpio/pumpio.php:223 ../../addon/pumpio/pumpio.php:227 -#: ../../addon/pumpio/pumpio.php:231 ../../include/dir_fns.php:143 +#: ../../addon/pumpio/Mod_Pumpio.php:94 ../../addon/pumpio/Mod_Pumpio.php:98 +#: ../../addon/pumpio/Mod_Pumpio.php:102 ../../include/dir_fns.php:143 #: ../../include/dir_fns.php:144 ../../include/dir_fns.php:145 msgid "Yes" msgstr "" @@ -1443,8 +1450,8 @@ msgid "Event not found." msgstr "" #: ../../Zotlabs/Module/Events.php:260 ../../Zotlabs/Module/Tagger.php:73 -#: ../../Zotlabs/Module/Like.php:386 ../../include/conversation.php:119 -#: ../../include/text.php:2031 ../../include/event.php:1153 +#: ../../Zotlabs/Module/Like.php:394 ../../include/conversation.php:119 +#: ../../include/text.php:2094 ../../include/event.php:1165 msgid "event" msgstr "" @@ -1505,14 +1512,14 @@ msgstr "" msgid "Edit Location" msgstr "" -#: ../../Zotlabs/Module/Events.php:480 ../../Zotlabs/Module/Photos.php:1125 -#: ../../Zotlabs/Module/Webpages.php:262 ../../Zotlabs/Lib/ThreadItem.php:777 -#: ../../addon/hsse/hsse.php:153 ../../include/conversation.php:1356 +#: ../../Zotlabs/Module/Events.php:480 ../../Zotlabs/Module/Photos.php:1139 +#: ../../Zotlabs/Module/Webpages.php:262 ../../Zotlabs/Lib/ThreadItem.php:805 +#: ../../addon/hsse/hsse.php:153 ../../include/conversation.php:1359 msgid "Preview" msgstr "" #: ../../Zotlabs/Module/Events.php:481 ../../addon/hsse/hsse.php:225 -#: ../../include/conversation.php:1428 +#: ../../include/conversation.php:1431 msgid "Permission settings" msgstr "" @@ -1537,7 +1544,7 @@ msgid "Delete event" msgstr "" #: ../../Zotlabs/Module/Events.php:663 ../../Zotlabs/Module/Cal.php:314 -#: ../../include/text.php:1850 +#: ../../include/text.php:1913 msgid "Link to Source" msgstr "" @@ -1554,7 +1561,7 @@ msgid "Create Event" msgstr "" #: ../../Zotlabs/Module/Events.php:692 ../../Zotlabs/Module/Cal.php:340 -#: ../../include/channel.php:1654 +#: ../../include/channel.php:1703 msgid "Export" msgstr "" @@ -1626,27 +1633,27 @@ msgstr "" msgid "Hub not found." msgstr "" -#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Tagger.php:69 -#: ../../Zotlabs/Module/Like.php:384 ../../Zotlabs/Lib/Activity.php:1570 +#: ../../Zotlabs/Module/Subthread.php:112 ../../Zotlabs/Module/Tagger.php:69 +#: ../../Zotlabs/Module/Like.php:392 ../../Zotlabs/Lib/Activity.php:1959 #: ../../addon/redphotos/redphotohelper.php:71 -#: ../../addon/diaspora/Receiver.php:1539 ../../addon/pubcrawl/as.php:1511 -#: ../../include/conversation.php:116 ../../include/text.php:2028 +#: ../../addon/diaspora/Receiver.php:1551 ../../addon/pubcrawl/as.php:1504 +#: ../../include/conversation.php:116 ../../include/text.php:2091 msgid "photo" msgstr "" -#: ../../Zotlabs/Module/Subthread.php:111 ../../Zotlabs/Module/Like.php:384 -#: ../../Zotlabs/Lib/Activity.php:1570 ../../addon/diaspora/Receiver.php:1539 -#: ../../addon/pubcrawl/as.php:1511 ../../include/conversation.php:144 -#: ../../include/text.php:2034 +#: ../../Zotlabs/Module/Subthread.php:112 ../../Zotlabs/Module/Like.php:392 +#: ../../Zotlabs/Lib/Activity.php:1959 ../../addon/diaspora/Receiver.php:1551 +#: ../../addon/pubcrawl/as.php:1504 ../../include/conversation.php:144 +#: ../../include/text.php:2097 msgid "status" msgstr "" -#: ../../Zotlabs/Module/Subthread.php:142 +#: ../../Zotlabs/Module/Subthread.php:143 #, php-format msgid "%1$s is following %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Subthread.php:144 +#: ../../Zotlabs/Module/Subthread.php:145 #, php-format msgid "%1$s stopped following %2$s's %3$s" msgstr "" @@ -1667,9 +1674,9 @@ msgid "Insert web link" msgstr "" #: ../../Zotlabs/Module/Article_edit.php:117 -#: ../../Zotlabs/Module/Editblock.php:129 ../../Zotlabs/Module/Photos.php:700 -#: ../../Zotlabs/Module/Photos.php:1070 ../../Zotlabs/Module/Card_edit.php:117 -#: ../../addon/hsse/hsse.php:221 ../../include/conversation.php:1424 +#: ../../Zotlabs/Module/Editblock.php:129 ../../Zotlabs/Module/Photos.php:713 +#: ../../Zotlabs/Module/Photos.php:1083 ../../Zotlabs/Module/Card_edit.php:117 +#: ../../addon/hsse/hsse.php:221 ../../include/conversation.php:1427 msgid "Title (optional)" msgstr "" @@ -1708,7 +1715,7 @@ msgid "Use this form to import existing posts and content from an export file." msgstr "" #: ../../Zotlabs/Module/Import_items.php:127 -#: ../../Zotlabs/Module/Import.php:548 +#: ../../Zotlabs/Module/Import.php:557 msgid "File to Upload" msgstr "" @@ -1719,8 +1726,8 @@ msgstr "" #: ../../Zotlabs/Module/New_channel.php:157 #: ../../Zotlabs/Module/New_channel.php:164 -#: ../../Zotlabs/Module/Connedit.php:853 ../../Zotlabs/Module/Defperms.php:256 -#: ../../Zotlabs/Widget/Notifications.php:162 ../../include/nav.php:293 +#: ../../Zotlabs/Module/Connedit.php:869 ../../Zotlabs/Module/Defperms.php:256 +#: ../../Zotlabs/Widget/Notifications.php:162 ../../include/nav.php:323 msgid "Loading" msgstr "" @@ -1844,7 +1851,7 @@ msgid "NEW" msgstr "" #: ../../Zotlabs/Module/Sharedwithme.php:106 -#: ../../Zotlabs/Storage/Browser.php:287 ../../include/text.php:1457 +#: ../../Zotlabs/Storage/Browser.php:287 ../../include/text.php:1496 msgid "Size" msgstr "" @@ -1890,7 +1897,7 @@ msgid "" msgstr "" #: ../../Zotlabs/Module/Setup.php:198 ../../Zotlabs/Module/Setup.php:262 -#: ../../Zotlabs/Module/Setup.php:756 +#: ../../Zotlabs/Module/Setup.php:761 msgid "Please see the file \"install/INSTALL.txt\"." msgstr "" @@ -2034,229 +2041,235 @@ msgstr "" msgid "PHP register_argc_argv" msgstr "" -#: ../../Zotlabs/Module/Setup.php:446 +#: ../../Zotlabs/Module/Setup.php:448 +msgid "" +"This is not sufficient to upload larger images or files. You should be able " +"to upload at least 4 MB at once." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:450 #, 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/Setup.php:451 +#: ../../Zotlabs/Module/Setup.php:456 msgid "You can adjust these settings in the server php.ini file." msgstr "" -#: ../../Zotlabs/Module/Setup.php:453 +#: ../../Zotlabs/Module/Setup.php:458 msgid "PHP upload limits" msgstr "" -#: ../../Zotlabs/Module/Setup.php:476 +#: ../../Zotlabs/Module/Setup.php:481 msgid "" "Error: the \"openssl_pkey_new\" function on this system is not able to " "generate encryption keys" msgstr "" -#: ../../Zotlabs/Module/Setup.php:477 +#: ../../Zotlabs/Module/Setup.php:482 msgid "" "If running under Windows, please see \"http://www.php.net/manual/en/openssl." "installation.php\"." msgstr "" -#: ../../Zotlabs/Module/Setup.php:480 +#: ../../Zotlabs/Module/Setup.php:485 msgid "Generate encryption keys" msgstr "" -#: ../../Zotlabs/Module/Setup.php:497 +#: ../../Zotlabs/Module/Setup.php:502 msgid "libCurl PHP module" msgstr "" -#: ../../Zotlabs/Module/Setup.php:498 +#: ../../Zotlabs/Module/Setup.php:503 msgid "GD graphics PHP module" msgstr "" -#: ../../Zotlabs/Module/Setup.php:499 +#: ../../Zotlabs/Module/Setup.php:504 msgid "OpenSSL PHP module" msgstr "" -#: ../../Zotlabs/Module/Setup.php:500 +#: ../../Zotlabs/Module/Setup.php:505 msgid "PDO database PHP module" msgstr "" -#: ../../Zotlabs/Module/Setup.php:501 +#: ../../Zotlabs/Module/Setup.php:506 msgid "mb_string PHP module" msgstr "" -#: ../../Zotlabs/Module/Setup.php:502 +#: ../../Zotlabs/Module/Setup.php:507 msgid "xml PHP module" msgstr "" -#: ../../Zotlabs/Module/Setup.php:503 +#: ../../Zotlabs/Module/Setup.php:508 msgid "zip PHP module" msgstr "" -#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:509 +#: ../../Zotlabs/Module/Setup.php:512 ../../Zotlabs/Module/Setup.php:514 msgid "Apache mod_rewrite module" msgstr "" -#: ../../Zotlabs/Module/Setup.php:507 +#: ../../Zotlabs/Module/Setup.php:512 msgid "" "Error: Apache webserver mod-rewrite module is required but not installed." msgstr "" -#: ../../Zotlabs/Module/Setup.php:513 ../../Zotlabs/Module/Setup.php:516 +#: ../../Zotlabs/Module/Setup.php:518 ../../Zotlabs/Module/Setup.php:521 msgid "exec" msgstr "" -#: ../../Zotlabs/Module/Setup.php:513 +#: ../../Zotlabs/Module/Setup.php:518 msgid "" "Error: exec is required but is either not installed or has been disabled in " "php.ini" msgstr "" -#: ../../Zotlabs/Module/Setup.php:519 ../../Zotlabs/Module/Setup.php:522 +#: ../../Zotlabs/Module/Setup.php:524 ../../Zotlabs/Module/Setup.php:527 msgid "shell_exec" msgstr "" -#: ../../Zotlabs/Module/Setup.php:519 +#: ../../Zotlabs/Module/Setup.php:524 msgid "" "Error: shell_exec is required but is either not installed or has been " "disabled in php.ini" msgstr "" -#: ../../Zotlabs/Module/Setup.php:527 +#: ../../Zotlabs/Module/Setup.php:532 msgid "Error: libCURL PHP module required but not installed." msgstr "" -#: ../../Zotlabs/Module/Setup.php:531 +#: ../../Zotlabs/Module/Setup.php:536 msgid "" "Error: GD PHP module with JPEG support or ImageMagick graphics library " "required but not installed." msgstr "" -#: ../../Zotlabs/Module/Setup.php:535 +#: ../../Zotlabs/Module/Setup.php:540 msgid "Error: openssl PHP module required but not installed." msgstr "" -#: ../../Zotlabs/Module/Setup.php:541 +#: ../../Zotlabs/Module/Setup.php:546 msgid "" "Error: PDO database PHP module missing a driver for either mysql or pgsql." msgstr "" -#: ../../Zotlabs/Module/Setup.php:546 +#: ../../Zotlabs/Module/Setup.php:551 msgid "Error: PDO database PHP module required but not installed." msgstr "" -#: ../../Zotlabs/Module/Setup.php:550 +#: ../../Zotlabs/Module/Setup.php:555 msgid "Error: mb_string PHP module required but not installed." msgstr "" -#: ../../Zotlabs/Module/Setup.php:554 +#: ../../Zotlabs/Module/Setup.php:559 msgid "Error: xml PHP module required for DAV but not installed." msgstr "" -#: ../../Zotlabs/Module/Setup.php:558 +#: ../../Zotlabs/Module/Setup.php:563 msgid "Error: zip PHP module required but not installed." msgstr "" -#: ../../Zotlabs/Module/Setup.php:577 ../../Zotlabs/Module/Setup.php:586 +#: ../../Zotlabs/Module/Setup.php:582 ../../Zotlabs/Module/Setup.php:591 msgid ".htconfig.php is writable" msgstr "" -#: ../../Zotlabs/Module/Setup.php:582 +#: ../../Zotlabs/Module/Setup.php:587 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/Setup.php:583 +#: ../../Zotlabs/Module/Setup.php:588 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/Setup.php:584 +#: ../../Zotlabs/Module/Setup.php:589 msgid "Please see install/INSTALL.txt for additional information." msgstr "" -#: ../../Zotlabs/Module/Setup.php:600 +#: ../../Zotlabs/Module/Setup.php:605 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/Setup.php:601 +#: ../../Zotlabs/Module/Setup.php:606 #, php-format msgid "" "In order to store these compiled templates, the web server needs to have " "write access to the directory %s under the top level web folder." msgstr "" -#: ../../Zotlabs/Module/Setup.php:602 ../../Zotlabs/Module/Setup.php:623 +#: ../../Zotlabs/Module/Setup.php:607 ../../Zotlabs/Module/Setup.php:628 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/Setup.php:603 +#: ../../Zotlabs/Module/Setup.php:608 #, 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/Setup.php:606 +#: ../../Zotlabs/Module/Setup.php:611 #, php-format msgid "%s is writable" msgstr "" -#: ../../Zotlabs/Module/Setup.php:622 +#: ../../Zotlabs/Module/Setup.php:627 msgid "" "This software uses the store directory to save uploaded files. The web " "server needs to have write access to the store directory under the top level " "web folder" msgstr "" -#: ../../Zotlabs/Module/Setup.php:626 +#: ../../Zotlabs/Module/Setup.php:631 msgid "store is writable" msgstr "" -#: ../../Zotlabs/Module/Setup.php:658 +#: ../../Zotlabs/Module/Setup.php:663 msgid "" "SSL certificate cannot be validated. Fix certificate or disable https access " "to this site." msgstr "" -#: ../../Zotlabs/Module/Setup.php:659 +#: ../../Zotlabs/Module/Setup.php:664 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/Setup.php:660 +#: ../../Zotlabs/Module/Setup.php:665 msgid "" "This restriction is incorporated because public posts from you may for " "example contain references to images on your own hub." msgstr "" -#: ../../Zotlabs/Module/Setup.php:661 +#: ../../Zotlabs/Module/Setup.php:666 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/Setup.php:662 +#: ../../Zotlabs/Module/Setup.php:667 msgid "" "This can cause usability issues elsewhere (not just on your own site) so we " "must insist on this requirement." msgstr "" -#: ../../Zotlabs/Module/Setup.php:663 +#: ../../Zotlabs/Module/Setup.php:668 msgid "" "Providers are available that issue free certificates which are browser-valid." msgstr "" -#: ../../Zotlabs/Module/Setup.php:665 +#: ../../Zotlabs/Module/Setup.php:670 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. " @@ -2264,36 +2277,36 @@ msgid "" "server communications." msgstr "" -#: ../../Zotlabs/Module/Setup.php:667 +#: ../../Zotlabs/Module/Setup.php:672 msgid "SSL certificate validation" msgstr "" -#: ../../Zotlabs/Module/Setup.php:673 +#: ../../Zotlabs/Module/Setup.php:678 msgid "" "Url rewrite in .htaccess is not working. Check your server configuration." "Test: " msgstr "" -#: ../../Zotlabs/Module/Setup.php:676 +#: ../../Zotlabs/Module/Setup.php:681 msgid "Url rewrite is working" msgstr "" -#: ../../Zotlabs/Module/Setup.php:690 +#: ../../Zotlabs/Module/Setup.php:695 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/Setup.php:714 ../../addon/rendezvous/rendezvous.php:401 +#: ../../Zotlabs/Module/Setup.php:719 ../../addon/rendezvous/rendezvous.php:401 msgid "Errors encountered creating database tables." msgstr "" -#: ../../Zotlabs/Module/Setup.php:754 +#: ../../Zotlabs/Module/Setup.php:759 msgid "<h1>What next?</h1>" msgstr "" -#: ../../Zotlabs/Module/Setup.php:755 +#: ../../Zotlabs/Module/Setup.php:760 msgid "" "IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" @@ -2458,7 +2471,7 @@ msgstr[1] "" msgid "Account not found" msgstr "" -#: ../../Zotlabs/Module/Admin/Accounts.php:91 ../../include/channel.php:2497 +#: ../../Zotlabs/Module/Admin/Accounts.php:91 ../../include/channel.php:2562 #, php-format msgid "Account '%s' deleted" msgstr "" @@ -2480,9 +2493,9 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Themes.php:156 #: ../../Zotlabs/Module/Admin/Site.php:287 #: ../../Zotlabs/Module/Admin/Addons.php:341 -#: ../../Zotlabs/Module/Admin/Addons.php:436 +#: ../../Zotlabs/Module/Admin/Addons.php:439 #: ../../Zotlabs/Module/Admin/Security.php:92 -#: ../../Zotlabs/Module/Admin.php:140 +#: ../../Zotlabs/Module/Admin.php:138 msgid "Administration" msgstr "" @@ -2520,12 +2533,12 @@ msgid "Deny" msgstr "" #: ../../Zotlabs/Module/Admin/Accounts.php:176 -#: ../../Zotlabs/Module/Connedit.php:623 +#: ../../Zotlabs/Module/Connedit.php:636 msgid "Block" msgstr "" #: ../../Zotlabs/Module/Admin/Accounts.php:177 -#: ../../Zotlabs/Module/Connedit.php:623 +#: ../../Zotlabs/Module/Connedit.php:636 msgid "Unblock" msgstr "" @@ -2667,7 +2680,7 @@ msgstr "" msgid "Disallow Code" msgstr "" -#: ../../Zotlabs/Module/Admin/Channels.php:154 ../../include/nav.php:391 +#: ../../Zotlabs/Module/Admin/Channels.php:154 ../../include/nav.php:421 msgid "Channel" msgstr "" @@ -2698,8 +2711,8 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Themes.php:72 #: ../../Zotlabs/Module/Admin/Addons.php:259 ../../Zotlabs/Module/Thing.php:94 #: ../../Zotlabs/Module/Viewsrc.php:25 ../../Zotlabs/Module/Display.php:45 -#: ../../Zotlabs/Module/Display.php:452 ../../Zotlabs/Module/Filestorage.php:24 -#: ../../Zotlabs/Module/Admin.php:62 ../../include/items.php:3587 +#: ../../Zotlabs/Module/Display.php:450 ../../Zotlabs/Module/Filestorage.php:24 +#: ../../Zotlabs/Module/Admin.php:62 ../../include/items.php:3693 msgid "Item not found." msgstr "" @@ -2728,9 +2741,9 @@ msgid "Toggle" msgstr "" #: ../../Zotlabs/Module/Admin/Themes.php:125 -#: ../../Zotlabs/Module/Admin/Addons.php:344 ../../Zotlabs/Lib/Apps.php:314 +#: ../../Zotlabs/Module/Admin/Addons.php:344 ../../Zotlabs/Lib/Apps.php:336 #: ../../Zotlabs/Widget/Newmember.php:53 -#: ../../Zotlabs/Widget/Settings_menu.php:68 ../../include/nav.php:97 +#: ../../Zotlabs/Widget/Settings_menu.php:61 ../../include/nav.php:97 msgid "Settings" msgstr "" @@ -2758,7 +2771,7 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Site.php:187 #: ../../view/theme/redbasic_c/php/config.php:15 -#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:3087 +#: ../../view/theme/redbasic/php/config.php:15 ../../include/text.php:3210 msgid "Default" msgstr "" @@ -2831,7 +2844,7 @@ msgid "Advanced" msgstr "" #: ../../Zotlabs/Module/Admin/Site.php:297 -#: ../../addon/statusnet/statusnet.php:891 +#: ../../addon/statusnet/statusnet.php:593 msgid "Site name" msgstr "" @@ -3027,7 +3040,7 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Site.php:323 #: ../../Zotlabs/Module/Admin/Site.php:324 -#: ../../Zotlabs/Module/Connedit.php:876 ../../Zotlabs/Module/Connedit.php:877 +#: ../../Zotlabs/Module/Connedit.php:892 ../../Zotlabs/Module/Connedit.php:893 msgid "" "words one per line or #tags or /patterns/ or lang=xx, leave blank to import " "all posts" @@ -3212,7 +3225,7 @@ msgid "Plugin %s enabled." msgstr "" #: ../../Zotlabs/Module/Admin/Addons.php:342 -#: ../../Zotlabs/Module/Admin/Addons.php:437 ../../Zotlabs/Widget/Admin.php:27 +#: ../../Zotlabs/Module/Admin/Addons.php:440 ../../Zotlabs/Widget/Admin.php:27 msgid "Addons" msgstr "" @@ -3237,56 +3250,56 @@ msgid "Requires: " msgstr "" #: ../../Zotlabs/Module/Admin/Addons.php:358 -#: ../../Zotlabs/Module/Admin/Addons.php:442 +#: ../../Zotlabs/Module/Admin/Addons.php:445 msgid "Disabled - version incompatibility" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:411 +#: ../../Zotlabs/Module/Admin/Addons.php:414 msgid "Enter the public git repository URL of the addon repo." msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:412 +#: ../../Zotlabs/Module/Admin/Addons.php:415 msgid "Addon repo git URL" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:413 +#: ../../Zotlabs/Module/Admin/Addons.php:416 msgid "Custom repo name" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:413 +#: ../../Zotlabs/Module/Admin/Addons.php:416 msgid "(optional)" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:414 +#: ../../Zotlabs/Module/Admin/Addons.php:417 msgid "Download Addon Repo" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:421 +#: ../../Zotlabs/Module/Admin/Addons.php:424 msgid "Install new repo" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:422 ../../Zotlabs/Lib/Apps.php:513 +#: ../../Zotlabs/Module/Admin/Addons.php:425 ../../Zotlabs/Lib/Apps.php:535 msgid "Install" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:445 +#: ../../Zotlabs/Module/Admin/Addons.php:448 msgid "Manage Repos" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:446 +#: ../../Zotlabs/Module/Admin/Addons.php:449 msgid "Installed Addon Repositories" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:447 +#: ../../Zotlabs/Module/Admin/Addons.php:450 msgid "Install a New Addon Repository" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:454 +#: ../../Zotlabs/Module/Admin/Addons.php:457 msgid "Switch branch" msgstr "" -#: ../../Zotlabs/Module/Admin/Addons.php:455 -#: ../../Zotlabs/Module/Photos.php:1022 ../../Zotlabs/Module/Tagrm.php:137 +#: ../../Zotlabs/Module/Admin/Addons.php:458 +#: ../../Zotlabs/Module/Photos.php:1035 ../../Zotlabs/Module/Tagrm.php:137 #: ../../addon/superblock/Mod_Superblock.php:91 msgid "Remove" msgstr "" @@ -3333,8 +3346,9 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Profs.php:94 #: ../../Zotlabs/Module/Admin/Profs.php:114 ../../Zotlabs/Module/Rbmark.php:32 #: ../../Zotlabs/Module/Rbmark.php:104 ../../Zotlabs/Module/Filer.php:53 -#: ../../Zotlabs/Widget/Notes.php:23 ../../include/text.php:1069 -#: ../../include/text.php:1081 +#: ../../Zotlabs/Widget/Notes.php:23 +#: ../../addon/queueworker/Mod_Queueworker.php:102 ../../include/text.php:1085 +#: ../../include/text.php:1097 msgid "Save" msgstr "" @@ -3540,7 +3554,7 @@ msgid "Visible to:" msgstr "" #: ../../Zotlabs/Module/Lockview.php:117 ../../Zotlabs/Module/Lockview.php:153 -#: ../../Zotlabs/Module/Acl.php:120 ../../include/acl_selectors.php:88 +#: ../../Zotlabs/Module/Acl.php:121 ../../include/acl_selectors.php:88 msgctxt "acl" msgid "Profile" msgstr "" @@ -3558,19 +3572,19 @@ msgstr "" #: ../../Zotlabs/Module/Settings/Channel.php:75 #: ../../Zotlabs/Module/Settings/Channel.php:78 #: ../../Zotlabs/Module/Settings/Channel.php:89 -#: ../../Zotlabs/Module/Connedit.php:712 ../../Zotlabs/Widget/Affinity.php:24 -#: ../../include/selectors.php:134 ../../include/channel.php:444 -#: ../../include/channel.php:445 ../../include/channel.php:452 +#: ../../Zotlabs/Module/Connedit.php:725 ../../Zotlabs/Widget/Affinity.php:32 +#: ../../include/selectors.php:134 ../../include/channel.php:493 +#: ../../include/channel.php:494 ../../include/channel.php:501 msgid "Friends" msgstr "" #: ../../Zotlabs/Module/Settings/Channel.php:266 #: ../../Zotlabs/Module/Defperms.php:111 #: ../../addon/rendezvous/rendezvous.php:82 -#: ../../addon/openstreetmap/openstreetmap.php:184 +#: ../../addon/openstreetmap/openstreetmap.php:185 #: ../../addon/msgfooter/msgfooter.php:54 ../../addon/logrot/logrot.php:54 -#: ../../addon/twitter/twitter.php:775 ../../addon/piwik/piwik.php:116 -#: ../../addon/xmpp/xmpp.php:102 +#: ../../addon/twitter/twitter.php:605 ../../addon/piwik/piwik.php:116 +#: ../../addon/xmpp/xmpp.php:54 msgid "Settings updated." msgstr "" @@ -3644,7 +3658,7 @@ msgstr "" msgid "Basic Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Channel.php:499 ../../include/channel.php:1528 +#: ../../Zotlabs/Module/Settings/Channel.php:499 ../../include/channel.php:1577 msgid "Full Name:" msgstr "" @@ -3861,7 +3875,7 @@ msgstr "" #: ../../Zotlabs/Module/Settings/Channel.php:572 #: ../../Zotlabs/Module/Settings/Channel.php:573 #: ../../Zotlabs/Module/Settings/Channel.php:574 -#: ../../addon/jappixmini/jappixmini.php:343 +#: ../../addon/jappixmini/Mod_Jappixmini.php:191 msgid "Recommended" msgstr "" @@ -4070,39 +4084,15 @@ msgstr "" msgid "Channel Manager Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:23 -msgid "Affinity Slider settings updated." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Featured.php:38 +#: ../../Zotlabs/Module/Settings/Featured.php:24 msgid "No feature settings configured" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:45 -msgid "Default maximum affinity level" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Featured.php:45 -msgid "0-99 default 99" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Featured.php:50 -msgid "Default minimum affinity level" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Featured.php:50 -msgid "0-99 - default 0" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Featured.php:54 -msgid "Affinity Slider Settings" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Featured.php:67 +#: ../../Zotlabs/Module/Settings/Featured.php:33 msgid "Addon Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Featured.php:68 +#: ../../Zotlabs/Module/Settings/Featured.php:34 msgid "Please save/submit changes to any panel before opening another." msgstr "" @@ -4228,18 +4218,18 @@ msgstr "" msgid "Stream Settings" msgstr "" -#: ../../Zotlabs/Module/Embedphotos.php:140 ../../Zotlabs/Module/Photos.php:813 -#: ../../Zotlabs/Module/Photos.php:1352 ../../Zotlabs/Widget/Portfolio.php:87 +#: ../../Zotlabs/Module/Embedphotos.php:148 ../../Zotlabs/Module/Photos.php:826 +#: ../../Zotlabs/Module/Photos.php:1374 ../../Zotlabs/Widget/Portfolio.php:87 #: ../../Zotlabs/Widget/Album.php:78 msgid "View Photo" msgstr "" -#: ../../Zotlabs/Module/Embedphotos.php:156 ../../Zotlabs/Module/Photos.php:844 +#: ../../Zotlabs/Module/Embedphotos.php:164 ../../Zotlabs/Module/Photos.php:857 #: ../../Zotlabs/Widget/Portfolio.php:108 ../../Zotlabs/Widget/Album.php:95 msgid "Edit Album" msgstr "" -#: ../../Zotlabs/Module/Embedphotos.php:158 ../../Zotlabs/Module/Photos.php:714 +#: ../../Zotlabs/Module/Embedphotos.php:166 ../../Zotlabs/Module/Photos.php:727 #: ../../Zotlabs/Module/Profile_photo.php:459 #: ../../Zotlabs/Module/Cover_photo.php:395 #: ../../Zotlabs/Storage/Browser.php:392 ../../Zotlabs/Widget/Cdav.php:133 @@ -4299,7 +4289,7 @@ msgstr "" msgid "Expires (yyyy-mm-dd)" msgstr "" -#: ../../Zotlabs/Module/Tokens.php:180 ../../Zotlabs/Module/Connedit.php:891 +#: ../../Zotlabs/Module/Tokens.php:180 ../../Zotlabs/Module/Connedit.php:907 msgid "Their Settings" msgstr "" @@ -4361,8 +4351,8 @@ msgid "URL for photo of thing (optional)" msgstr "" #: ../../Zotlabs/Module/Thing.php:319 ../../Zotlabs/Module/Thing.php:372 -#: ../../Zotlabs/Module/Photos.php:704 ../../Zotlabs/Module/Photos.php:1073 -#: ../../Zotlabs/Module/Connedit.php:677 ../../Zotlabs/Module/Chat.php:243 +#: ../../Zotlabs/Module/Photos.php:717 ../../Zotlabs/Module/Photos.php:1086 +#: ../../Zotlabs/Module/Connedit.php:690 ../../Zotlabs/Module/Chat.php:243 #: ../../Zotlabs/Module/Filestorage.php:170 ../../include/acl_selectors.php:123 msgid "Permissions" msgstr "" @@ -4383,56 +4373,56 @@ msgstr "" msgid "Connection added." msgstr "" -#: ../../Zotlabs/Module/Import.php:146 +#: ../../Zotlabs/Module/Import.php:155 #, php-format msgid "Your service plan only allows %d channels." msgstr "" -#: ../../Zotlabs/Module/Import.php:173 +#: ../../Zotlabs/Module/Import.php:182 msgid "No channel. Import failed." msgstr "" -#: ../../Zotlabs/Module/Import.php:513 +#: ../../Zotlabs/Module/Import.php:522 #: ../../addon/diaspora/import_diaspora.php:141 msgid "Import completed." msgstr "" -#: ../../Zotlabs/Module/Import.php:541 +#: ../../Zotlabs/Module/Import.php:550 msgid "You must be logged in to use this feature." msgstr "" -#: ../../Zotlabs/Module/Import.php:546 +#: ../../Zotlabs/Module/Import.php:555 msgid "Import Channel" msgstr "" -#: ../../Zotlabs/Module/Import.php:547 +#: ../../Zotlabs/Module/Import.php:556 msgid "" "Use this form to import an existing channel from a different server/hub. You " "may retrieve the channel identity from the old server/hub via the network or " "provide an export file." msgstr "" -#: ../../Zotlabs/Module/Import.php:549 +#: ../../Zotlabs/Module/Import.php:558 msgid "Or provide the old server/hub details" msgstr "" -#: ../../Zotlabs/Module/Import.php:551 +#: ../../Zotlabs/Module/Import.php:560 msgid "Your old identity address (xyz@example.com)" msgstr "" -#: ../../Zotlabs/Module/Import.php:552 +#: ../../Zotlabs/Module/Import.php:561 msgid "Your old login email address" msgstr "" -#: ../../Zotlabs/Module/Import.php:553 +#: ../../Zotlabs/Module/Import.php:562 msgid "Your old login password" msgstr "" -#: ../../Zotlabs/Module/Import.php:554 +#: ../../Zotlabs/Module/Import.php:563 msgid "Import a few months of posts if possible (limited by available memory" msgstr "" -#: ../../Zotlabs/Module/Import.php:556 +#: ../../Zotlabs/Module/Import.php:565 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 " @@ -4440,44 +4430,44 @@ msgid "" "location for files, photos, and media." msgstr "" -#: ../../Zotlabs/Module/Import.php:558 +#: ../../Zotlabs/Module/Import.php:567 msgid "Make this hub my primary location" msgstr "" -#: ../../Zotlabs/Module/Import.php:559 +#: ../../Zotlabs/Module/Import.php:568 msgid "Move this channel (disable all previous locations)" msgstr "" -#: ../../Zotlabs/Module/Import.php:560 +#: ../../Zotlabs/Module/Import.php:569 msgid "Use this channel nickname instead of the one provided" msgstr "" -#: ../../Zotlabs/Module/Import.php:560 +#: ../../Zotlabs/Module/Import.php:569 msgid "" "Leave blank to keep your existing channel nickname. You will be randomly " "assigned a similar nickname if either name is already allocated on this site." msgstr "" -#: ../../Zotlabs/Module/Import.php:562 +#: ../../Zotlabs/Module/Import.php:571 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/Rmagic.php:35 +#: ../../Zotlabs/Module/Rmagic.php:44 msgid "Authentication failed." msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:75 ../../boot.php:1626 -#: ../../include/channel.php:2341 +#: ../../Zotlabs/Module/Rmagic.php:93 ../../boot.php:1630 +#: ../../include/channel.php:2405 msgid "Remote Authentication" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:2342 +#: ../../Zotlabs/Module/Rmagic.php:94 ../../include/channel.php:2406 msgid "Enter your channel address (e.g. channel@example.com)" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:2343 +#: ../../Zotlabs/Module/Rmagic.php:95 ../../include/channel.php:2407 msgid "Authenticate" msgstr "" @@ -4504,7 +4494,7 @@ msgstr "" #: ../../Zotlabs/Module/Oauth2.php:119 ../../Zotlabs/Module/Oauth2.php:147 #: ../../Zotlabs/Module/Oauth.php:115 ../../Zotlabs/Module/Oauth.php:141 -#: ../../addon/statusnet/statusnet.php:893 ../../addon/twitter/twitter.php:785 +#: ../../addon/statusnet/statusnet.php:595 ../../addon/twitter/twitter.php:615 msgid "Consumer Secret" msgstr "" @@ -4570,7 +4560,7 @@ msgstr "" msgid "Permissions denied." msgstr "" -#: ../../Zotlabs/Module/Cal.php:343 ../../include/text.php:2489 +#: ../../Zotlabs/Module/Cal.php:343 ../../include/text.php:2558 msgid "Import" msgstr "" @@ -4628,21 +4618,21 @@ msgstr "" msgid "Create Custom App" msgstr "" -#: ../../Zotlabs/Module/Mood.php:75 ../../include/conversation.php:268 +#: ../../Zotlabs/Module/Mood.php:76 ../../include/conversation.php:268 #, php-format msgctxt "mood" msgid "%1$s is %2$s" msgstr "" -#: ../../Zotlabs/Module/Mood.php:132 +#: ../../Zotlabs/Module/Mood.php:134 msgid "Mood App" msgstr "" -#: ../../Zotlabs/Module/Mood.php:133 ../../Zotlabs/Module/Mood.php:153 +#: ../../Zotlabs/Module/Mood.php:135 ../../Zotlabs/Module/Mood.php:155 msgid "Set your current mood and tell your friends" msgstr "" -#: ../../Zotlabs/Module/Mood.php:152 ../../Zotlabs/Lib/Apps.php:325 +#: ../../Zotlabs/Module/Mood.php:154 ../../Zotlabs/Lib/Apps.php:347 msgid "Mood" msgstr "" @@ -4683,7 +4673,7 @@ msgstr "" #: ../../Zotlabs/Module/Connections.php:97 #: ../../Zotlabs/Module/Connections.php:111 -#: ../../Zotlabs/Module/Connedit.php:714 ../../Zotlabs/Widget/Affinity.php:26 +#: ../../Zotlabs/Module/Connedit.php:727 ../../Zotlabs/Widget/Affinity.php:34 msgid "All" msgstr "" @@ -4778,7 +4768,7 @@ msgid "Ignore connection" msgstr "" #: ../../Zotlabs/Module/Connections.php:308 -#: ../../Zotlabs/Module/Connedit.php:631 +#: ../../Zotlabs/Module/Connedit.php:644 msgid "Ignore" msgstr "" @@ -4786,8 +4776,8 @@ msgstr "" msgid "Recent activity" msgstr "" -#: ../../Zotlabs/Module/Connections.php:334 ../../Zotlabs/Lib/Apps.php:308 -#: ../../include/text.php:981 ../../include/features.php:125 +#: ../../Zotlabs/Module/Connections.php:334 ../../Zotlabs/Lib/Apps.php:330 +#: ../../include/text.php:991 ../../include/features.php:125 msgid "Connections" msgstr "" @@ -4869,190 +4859,190 @@ msgstr "" msgid "Delete Album" msgstr "" -#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1085 +#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1098 msgid "Delete Photo" msgstr "" -#: ../../Zotlabs/Module/Photos.php:556 +#: ../../Zotlabs/Module/Photos.php:569 msgid "No photos selected" msgstr "" -#: ../../Zotlabs/Module/Photos.php:605 +#: ../../Zotlabs/Module/Photos.php:618 msgid "Access to this item is restricted." msgstr "" -#: ../../Zotlabs/Module/Photos.php:648 +#: ../../Zotlabs/Module/Photos.php:661 #, php-format msgid "%1$.2f MB of %2$.2f MB photo storage used." msgstr "" -#: ../../Zotlabs/Module/Photos.php:651 +#: ../../Zotlabs/Module/Photos.php:664 #, php-format msgid "%1$.2f MB photo storage used." msgstr "" -#: ../../Zotlabs/Module/Photos.php:693 +#: ../../Zotlabs/Module/Photos.php:706 msgid "Upload Photos" msgstr "" -#: ../../Zotlabs/Module/Photos.php:697 +#: ../../Zotlabs/Module/Photos.php:710 msgid "Enter an album name" msgstr "" -#: ../../Zotlabs/Module/Photos.php:698 +#: ../../Zotlabs/Module/Photos.php:711 msgid "or select an existing album (doubleclick)" msgstr "" -#: ../../Zotlabs/Module/Photos.php:699 +#: ../../Zotlabs/Module/Photos.php:712 msgid "Create a status post for this upload" msgstr "" -#: ../../Zotlabs/Module/Photos.php:701 +#: ../../Zotlabs/Module/Photos.php:714 msgid "Description (optional)" msgstr "" -#: ../../Zotlabs/Module/Photos.php:787 +#: ../../Zotlabs/Module/Photos.php:800 msgid "Show Newest First" msgstr "" -#: ../../Zotlabs/Module/Photos.php:789 +#: ../../Zotlabs/Module/Photos.php:802 msgid "Show Oldest First" msgstr "" -#: ../../Zotlabs/Module/Photos.php:846 ../../Zotlabs/Module/Photos.php:1383 +#: ../../Zotlabs/Module/Photos.php:859 ../../Zotlabs/Module/Photos.php:1405 msgid "Add Photos" msgstr "" -#: ../../Zotlabs/Module/Photos.php:894 +#: ../../Zotlabs/Module/Photos.php:907 msgid "Permission denied. Access to this item may be restricted." msgstr "" -#: ../../Zotlabs/Module/Photos.php:896 +#: ../../Zotlabs/Module/Photos.php:909 msgid "Photo not available" msgstr "" -#: ../../Zotlabs/Module/Photos.php:954 +#: ../../Zotlabs/Module/Photos.php:967 msgid "Use as profile photo" msgstr "" -#: ../../Zotlabs/Module/Photos.php:955 +#: ../../Zotlabs/Module/Photos.php:968 msgid "Use as cover photo" msgstr "" -#: ../../Zotlabs/Module/Photos.php:962 +#: ../../Zotlabs/Module/Photos.php:975 msgid "Private Photo" msgstr "" -#: ../../Zotlabs/Module/Photos.php:977 +#: ../../Zotlabs/Module/Photos.php:990 msgid "View Full Size" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1059 +#: ../../Zotlabs/Module/Photos.php:1072 msgid "Edit photo" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1061 +#: ../../Zotlabs/Module/Photos.php:1074 msgid "Rotate CW (right)" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1062 +#: ../../Zotlabs/Module/Photos.php:1075 msgid "Rotate CCW (left)" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1065 +#: ../../Zotlabs/Module/Photos.php:1078 msgid "Move photo to album" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1066 +#: ../../Zotlabs/Module/Photos.php:1079 msgid "Enter a new album name" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1067 +#: ../../Zotlabs/Module/Photos.php:1080 msgid "or select an existing one (doubleclick)" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1072 +#: ../../Zotlabs/Module/Photos.php:1085 msgid "Add a Tag" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1080 +#: ../../Zotlabs/Module/Photos.php:1093 msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1083 +#: ../../Zotlabs/Module/Photos.php:1096 msgid "Flag as adult in album view" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1102 ../../Zotlabs/Lib/ThreadItem.php:289 +#: ../../Zotlabs/Module/Photos.php:1115 ../../Zotlabs/Lib/ThreadItem.php:306 msgid "I like this (toggle)" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1103 ../../Zotlabs/Lib/ThreadItem.php:290 +#: ../../Zotlabs/Module/Photos.php:1116 ../../Zotlabs/Lib/ThreadItem.php:307 msgid "I don't like this (toggle)" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1105 ../../Zotlabs/Lib/ThreadItem.php:441 +#: ../../Zotlabs/Module/Photos.php:1118 ../../Zotlabs/Lib/ThreadItem.php:469 #: ../../include/conversation.php:787 msgid "Please wait" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1121 ../../Zotlabs/Module/Photos.php:1239 -#: ../../Zotlabs/Lib/ThreadItem.php:764 +#: ../../Zotlabs/Module/Photos.php:1135 ../../Zotlabs/Module/Photos.php:1254 +#: ../../Zotlabs/Lib/ThreadItem.php:792 msgid "This is you" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1123 ../../Zotlabs/Module/Photos.php:1241 -#: ../../Zotlabs/Lib/ThreadItem.php:766 ../../include/js_strings.php:6 +#: ../../Zotlabs/Module/Photos.php:1137 ../../Zotlabs/Module/Photos.php:1256 +#: ../../Zotlabs/Lib/ThreadItem.php:794 ../../include/js_strings.php:6 msgid "Comment" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:619 +#: ../../Zotlabs/Module/Photos.php:1154 ../../include/conversation.php:619 msgctxt "title" msgid "Likes" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1139 ../../include/conversation.php:619 +#: ../../Zotlabs/Module/Photos.php:1154 ../../include/conversation.php:619 msgctxt "title" msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1140 ../../include/conversation.php:620 +#: ../../Zotlabs/Module/Photos.php:1155 ../../include/conversation.php:620 msgctxt "title" msgid "Agree" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1140 ../../include/conversation.php:620 +#: ../../Zotlabs/Module/Photos.php:1155 ../../include/conversation.php:620 msgctxt "title" msgid "Disagree" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1140 ../../include/conversation.php:620 +#: ../../Zotlabs/Module/Photos.php:1155 ../../include/conversation.php:620 msgctxt "title" msgid "Abstain" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1141 ../../include/conversation.php:621 +#: ../../Zotlabs/Module/Photos.php:1156 ../../include/conversation.php:621 msgctxt "title" msgid "Attending" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1141 ../../include/conversation.php:621 +#: ../../Zotlabs/Module/Photos.php:1156 ../../include/conversation.php:621 msgctxt "title" msgid "Not attending" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1141 ../../include/conversation.php:621 +#: ../../Zotlabs/Module/Photos.php:1156 ../../include/conversation.php:621 msgctxt "title" msgid "Might attend" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1158 ../../Zotlabs/Module/Photos.php:1170 -#: ../../Zotlabs/Lib/ThreadItem.php:214 ../../Zotlabs/Lib/ThreadItem.php:226 +#: ../../Zotlabs/Module/Photos.php:1173 ../../Zotlabs/Module/Photos.php:1185 +#: ../../Zotlabs/Lib/ThreadItem.php:231 ../../Zotlabs/Lib/ThreadItem.php:243 msgid "View all" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1162 ../../Zotlabs/Lib/ThreadItem.php:218 -#: ../../include/conversation.php:1693 ../../include/channel.php:1546 +#: ../../Zotlabs/Module/Photos.php:1177 ../../Zotlabs/Lib/ThreadItem.php:235 +#: ../../include/conversation.php:1702 ../../include/channel.php:1595 #: ../../include/taxonomy.php:661 msgctxt "noun" msgid "Like" @@ -5060,47 +5050,48 @@ msgid_plural "Likes" msgstr[0] "" msgstr[1] "" -#: ../../Zotlabs/Module/Photos.php:1167 ../../Zotlabs/Lib/ThreadItem.php:223 -#: ../../include/conversation.php:1696 +#: ../../Zotlabs/Module/Photos.php:1182 ../../Zotlabs/Lib/ThreadItem.php:240 +#: ../../include/conversation.php:1705 msgctxt "noun" msgid "Dislike" msgid_plural "Dislikes" msgstr[0] "" msgstr[1] "" -#: ../../Zotlabs/Module/Photos.php:1267 +#: ../../Zotlabs/Module/Photos.php:1288 msgid "Photo Tools" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1276 +#: ../../Zotlabs/Module/Photos.php:1297 msgid "In This Photo:" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1281 +#: ../../Zotlabs/Module/Photos.php:1302 msgid "Map" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1289 ../../Zotlabs/Lib/ThreadItem.php:429 +#: ../../Zotlabs/Module/Photos.php:1310 ../../Zotlabs/Lib/ThreadItem.php:457 msgctxt "noun" msgid "Likes" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1290 ../../Zotlabs/Lib/ThreadItem.php:430 +#: ../../Zotlabs/Module/Photos.php:1311 ../../Zotlabs/Lib/ThreadItem.php:458 msgctxt "noun" msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1295 ../../Zotlabs/Lib/ThreadItem.php:435 +#: ../../Zotlabs/Module/Photos.php:1316 ../../Zotlabs/Lib/ThreadItem.php:463 #: ../../include/acl_selectors.php:125 msgid "Close" msgstr "" -#: ../../Zotlabs/Module/Photos.php:1367 ../../Zotlabs/Module/Photos.php:1380 -#: ../../Zotlabs/Module/Photos.php:1381 ../../include/photos.php:668 +#: ../../Zotlabs/Module/Photos.php:1389 ../../Zotlabs/Module/Photos.php:1402 +#: ../../Zotlabs/Module/Photos.php:1403 ../../include/photos.php:670 msgid "Recent Photos" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:35 ../../addon/cart/cart.php:1297 +#: ../../Zotlabs/Module/Wiki.php:35 +#: ../../addon/flashcards/Mod_Flashcards.php:34 ../../addon/cart/cart.php:1298 msgid "Profile Unavailable." msgstr "" @@ -5113,7 +5104,7 @@ msgid "Provide a wiki for your channel" msgstr "" #: ../../Zotlabs/Module/Wiki.php:77 ../../addon/cart/myshop.php:37 -#: ../../addon/cart/cart.php:1440 +#: ../../addon/cart/cart.php:1444 #: ../../addon/cart/submodules/paypalbutton.php:456 #: ../../addon/cart/manual_payments.php:93 msgid "Invalid channel" @@ -5131,8 +5122,8 @@ msgstr "" msgid "Error downloading wiki: " msgstr "" -#: ../../Zotlabs/Module/Wiki.php:206 ../../Zotlabs/Widget/Wiki_list.php:19 -#: ../../include/nav.php:506 +#: ../../Zotlabs/Module/Wiki.php:206 ../../Zotlabs/Widget/Wiki_list.php:15 +#: ../../include/nav.php:536 msgid "Wikis" msgstr "" @@ -5156,18 +5147,18 @@ msgstr "" #: ../../Zotlabs/Module/Wiki.php:217 ../../Zotlabs/Module/Wiki.php:371 #: ../../Zotlabs/Widget/Wiki_pages.php:38 #: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../addon/mdpost/mdpost.php:41 -#: ../../include/text.php:1892 +#: ../../include/text.php:1955 msgid "Markdown" msgstr "" #: ../../Zotlabs/Module/Wiki.php:217 ../../Zotlabs/Module/Wiki.php:371 #: ../../Zotlabs/Widget/Wiki_pages.php:38 -#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../include/text.php:1890 +#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../include/text.php:1953 msgid "BBcode" msgstr "" #: ../../Zotlabs/Module/Wiki.php:217 ../../Zotlabs/Widget/Wiki_pages.php:38 -#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../include/text.php:1893 +#: ../../Zotlabs/Widget/Wiki_pages.php:95 ../../include/text.php:1956 msgid "Text" msgstr "" @@ -5233,14 +5224,14 @@ msgid "Embed image from photo albums" msgstr "" #: ../../Zotlabs/Module/Wiki.php:400 ../../addon/hsse/hsse.php:208 -#: ../../include/conversation.php:1411 +#: ../../include/conversation.php:1414 msgid "Embed an image from your albums" msgstr "" #: ../../Zotlabs/Module/Wiki.php:402 ../../Zotlabs/Module/Profile_photo.php:466 #: ../../Zotlabs/Module/Cover_photo.php:400 ../../addon/hsse/hsse.php:210 -#: ../../addon/hsse/hsse.php:257 ../../include/conversation.php:1413 -#: ../../include/conversation.php:1460 +#: ../../addon/hsse/hsse.php:257 ../../include/conversation.php:1416 +#: ../../include/conversation.php:1463 msgid "OK" msgstr "" @@ -5335,6 +5326,15 @@ msgstr "" msgid "You must be authenticated." msgstr "" +#: ../../Zotlabs/Module/Share.php:103 ../../Zotlabs/Lib/Activity.php:1473 +#, php-format +msgid "🔁 Repeated %1$s's %2$s" +msgstr "" + +#: ../../Zotlabs/Module/Share.php:119 +msgid "Post repeated" +msgstr "" + #: ../../Zotlabs/Module/Chanview.php:139 msgid "toggle full screen mode" msgstr "" @@ -5391,7 +5391,7 @@ msgstr "" msgid "Poke somebody in your addressbook" msgstr "" -#: ../../Zotlabs/Module/Poke.php:199 ../../Zotlabs/Lib/Apps.php:326 +#: ../../Zotlabs/Module/Poke.php:199 ../../Zotlabs/Lib/Apps.php:348 #: ../../include/conversation.php:1098 msgid "Poke" msgstr "" @@ -5427,7 +5427,7 @@ msgstr "" #: ../../Zotlabs/Module/Profile_photo.php:120 #: ../../Zotlabs/Module/Profile_photo.php:248 -#: ../../include/photo/photo_driver.php:741 +#: ../../include/photo/photo_driver.php:367 msgid "Profile Photos" msgstr "" @@ -5534,73 +5534,73 @@ msgstr "" msgid "Online" msgstr "" -#: ../../Zotlabs/Module/Item.php:194 +#: ../../Zotlabs/Module/Item.php:341 msgid "Unable to locate original post." msgstr "" -#: ../../Zotlabs/Module/Item.php:479 +#: ../../Zotlabs/Module/Item.php:628 msgid "Empty post discarded." msgstr "" -#: ../../Zotlabs/Module/Item.php:866 +#: ../../Zotlabs/Module/Item.php:1037 msgid "Duplicate post suppressed." msgstr "" -#: ../../Zotlabs/Module/Item.php:1011 +#: ../../Zotlabs/Module/Item.php:1182 msgid "System error. Post not saved." msgstr "" -#: ../../Zotlabs/Module/Item.php:1047 +#: ../../Zotlabs/Module/Item.php:1218 msgid "Your comment is awaiting approval." msgstr "" -#: ../../Zotlabs/Module/Item.php:1164 +#: ../../Zotlabs/Module/Item.php:1335 msgid "Unable to obtain post information from database." msgstr "" -#: ../../Zotlabs/Module/Item.php:1171 +#: ../../Zotlabs/Module/Item.php:1342 #, php-format msgid "You have reached your limit of %1$.0f top level posts." msgstr "" -#: ../../Zotlabs/Module/Item.php:1178 +#: ../../Zotlabs/Module/Item.php:1349 #, php-format msgid "You have reached your limit of %1$.0f webpages." msgstr "" -#: ../../Zotlabs/Module/Ping.php:337 +#: ../../Zotlabs/Module/Ping.php:338 msgid "sent you a private message" msgstr "" -#: ../../Zotlabs/Module/Ping.php:390 +#: ../../Zotlabs/Module/Ping.php:394 msgid "added your channel" msgstr "" -#: ../../Zotlabs/Module/Ping.php:414 +#: ../../Zotlabs/Module/Ping.php:419 msgid "requires approval" msgstr "" -#: ../../Zotlabs/Module/Ping.php:424 +#: ../../Zotlabs/Module/Ping.php:429 msgid "g A l F d" msgstr "" -#: ../../Zotlabs/Module/Ping.php:442 +#: ../../Zotlabs/Module/Ping.php:447 msgid "[today]" msgstr "" -#: ../../Zotlabs/Module/Ping.php:451 +#: ../../Zotlabs/Module/Ping.php:457 msgid "posted an event" msgstr "" -#: ../../Zotlabs/Module/Ping.php:484 +#: ../../Zotlabs/Module/Ping.php:491 msgid "shared a file with you" msgstr "" -#: ../../Zotlabs/Module/Ping.php:659 +#: ../../Zotlabs/Module/Ping.php:673 msgid "Private forum" msgstr "" -#: ../../Zotlabs/Module/Ping.php:659 +#: ../../Zotlabs/Module/Ping.php:673 msgid "Public forum" msgstr "" @@ -5612,7 +5612,7 @@ msgstr "" #: ../../Zotlabs/Module/Display.php:140 ../../Zotlabs/Module/Display.php:157 #: ../../Zotlabs/Module/Display.php:174 #: ../../Zotlabs/Lib/NativeWikiPage.php:521 ../../Zotlabs/Web/Router.php:185 -#: ../../include/help.php:132 +#: ../../addon/chess/Mod_Chess.php:447 ../../include/help.php:132 msgid "Page not found." msgstr "" @@ -5626,302 +5626,302 @@ msgid "" "non proident, sunt in culpa qui officia deserunt mollit anim id est laborum." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:80 ../../Zotlabs/Module/Defperms.php:67 +#: ../../Zotlabs/Module/Connedit.php:81 ../../Zotlabs/Module/Defperms.php:67 msgid "Could not access contact record." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:110 +#: ../../Zotlabs/Module/Connedit.php:112 msgid "Could not locate selected profile." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:247 +#: ../../Zotlabs/Module/Connedit.php:256 msgid "Connection updated." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:249 +#: ../../Zotlabs/Module/Connedit.php:258 msgid "Failed to update connection record." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:303 +#: ../../Zotlabs/Module/Connedit.php:312 msgid "is now connected to" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:428 +#: ../../Zotlabs/Module/Connedit.php:437 msgid "Could not access address book record." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:476 +#: ../../Zotlabs/Module/Connedit.php:485 ../../Zotlabs/Module/Connedit.php:489 msgid "Refresh failed - channel is currently unavailable." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:491 ../../Zotlabs/Module/Connedit.php:500 -#: ../../Zotlabs/Module/Connedit.php:509 ../../Zotlabs/Module/Connedit.php:518 -#: ../../Zotlabs/Module/Connedit.php:531 +#: ../../Zotlabs/Module/Connedit.php:504 ../../Zotlabs/Module/Connedit.php:513 +#: ../../Zotlabs/Module/Connedit.php:522 ../../Zotlabs/Module/Connedit.php:531 +#: ../../Zotlabs/Module/Connedit.php:544 msgid "Unable to set address book parameters." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:555 +#: ../../Zotlabs/Module/Connedit.php:568 msgid "Connection has been removed." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:595 ../../Zotlabs/Lib/Apps.php:319 +#: ../../Zotlabs/Module/Connedit.php:608 ../../Zotlabs/Lib/Apps.php:341 #: ../../addon/openclipatar/openclipatar.php:57 #: ../../include/conversation.php:1038 ../../include/nav.php:106 msgid "View Profile" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:598 +#: ../../Zotlabs/Module/Connedit.php:611 #, php-format msgid "View %s's profile" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:602 +#: ../../Zotlabs/Module/Connedit.php:615 msgid "Refresh Permissions" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:605 +#: ../../Zotlabs/Module/Connedit.php:618 msgid "Fetch updated permissions" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:609 +#: ../../Zotlabs/Module/Connedit.php:622 msgid "Refresh Photo" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:612 +#: ../../Zotlabs/Module/Connedit.php:625 msgid "Fetch updated photo" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:616 ../../include/conversation.php:1048 +#: ../../Zotlabs/Module/Connedit.php:629 ../../include/conversation.php:1048 msgid "Recent Activity" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:619 +#: ../../Zotlabs/Module/Connedit.php:632 msgid "View recent posts and comments" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:626 +#: ../../Zotlabs/Module/Connedit.php:639 msgid "Block (or Unblock) all communications with this connection" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:627 +#: ../../Zotlabs/Module/Connedit.php:640 msgid "This connection is blocked!" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:631 +#: ../../Zotlabs/Module/Connedit.php:644 msgid "Unignore" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:634 +#: ../../Zotlabs/Module/Connedit.php:647 msgid "Ignore (or Unignore) all inbound communications from this connection" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:635 +#: ../../Zotlabs/Module/Connedit.php:648 msgid "This connection is ignored!" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:639 +#: ../../Zotlabs/Module/Connedit.php:652 msgid "Unarchive" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:639 +#: ../../Zotlabs/Module/Connedit.php:652 msgid "Archive" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:642 +#: ../../Zotlabs/Module/Connedit.php:655 msgid "" "Archive (or Unarchive) this connection - mark channel dead but keep content" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:643 +#: ../../Zotlabs/Module/Connedit.php:656 msgid "This connection is archived!" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:647 +#: ../../Zotlabs/Module/Connedit.php:660 msgid "Unhide" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:647 +#: ../../Zotlabs/Module/Connedit.php:660 msgid "Hide" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:650 +#: ../../Zotlabs/Module/Connedit.php:663 msgid "Hide or Unhide this connection from your other connections" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:651 +#: ../../Zotlabs/Module/Connedit.php:664 msgid "This connection is hidden!" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:658 +#: ../../Zotlabs/Module/Connedit.php:671 msgid "Delete this connection" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:666 +#: ../../Zotlabs/Module/Connedit.php:679 msgid "Fetch Vcard" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:669 +#: ../../Zotlabs/Module/Connedit.php:682 msgid "Fetch electronic calling card for this connection" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:680 +#: ../../Zotlabs/Module/Connedit.php:693 msgid "Open Individual Permissions section by default" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:703 +#: ../../Zotlabs/Module/Connedit.php:716 msgid "Affinity" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:706 +#: ../../Zotlabs/Module/Connedit.php:719 msgid "Open Set Affinity section by default" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:710 ../../Zotlabs/Widget/Affinity.php:22 +#: ../../Zotlabs/Module/Connedit.php:723 ../../Zotlabs/Widget/Affinity.php:30 msgid "Me" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:711 ../../Zotlabs/Widget/Affinity.php:23 +#: ../../Zotlabs/Module/Connedit.php:724 ../../Zotlabs/Widget/Affinity.php:31 msgid "Family" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:713 ../../Zotlabs/Widget/Affinity.php:25 +#: ../../Zotlabs/Module/Connedit.php:726 ../../Zotlabs/Widget/Affinity.php:33 msgid "Acquaintances" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:740 +#: ../../Zotlabs/Module/Connedit.php:756 msgid "Filter" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:743 +#: ../../Zotlabs/Module/Connedit.php:759 msgid "Open Custom Filter section by default" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:780 +#: ../../Zotlabs/Module/Connedit.php:796 msgid "Approve this connection" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:780 +#: ../../Zotlabs/Module/Connedit.php:796 msgid "Accept connection to allow communication" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:785 +#: ../../Zotlabs/Module/Connedit.php:801 msgid "Set Affinity" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:788 +#: ../../Zotlabs/Module/Connedit.php:804 msgid "Set Profile" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:791 +#: ../../Zotlabs/Module/Connedit.php:807 msgid "Set Affinity & Profile" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:839 +#: ../../Zotlabs/Module/Connedit.php:855 msgid "This connection is unreachable from this location." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:840 +#: ../../Zotlabs/Module/Connedit.php:856 msgid "This connection may be unreachable from other channel locations." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:842 +#: ../../Zotlabs/Module/Connedit.php:858 msgid "Location independence is not supported by their network." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:848 +#: ../../Zotlabs/Module/Connedit.php:864 msgid "" "This connection is unreachable from this location. Location independence is " "not supported by their network." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:851 ../../Zotlabs/Module/Defperms.php:254 +#: ../../Zotlabs/Module/Connedit.php:867 ../../Zotlabs/Module/Defperms.php:254 msgid "Connection Default Permissions" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:851 ../../include/items.php:4200 +#: ../../Zotlabs/Module/Connedit.php:867 ../../include/items.php:4308 #, php-format msgid "Connection: %s" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:852 ../../Zotlabs/Module/Defperms.php:255 +#: ../../Zotlabs/Module/Connedit.php:868 ../../Zotlabs/Module/Defperms.php:255 msgid "Apply these permissions automatically" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:852 +#: ../../Zotlabs/Module/Connedit.php:868 msgid "Connection requests will be approved without your interaction" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:853 ../../Zotlabs/Module/Defperms.php:256 +#: ../../Zotlabs/Module/Connedit.php:869 ../../Zotlabs/Module/Defperms.php:256 msgid "Permission role" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:854 ../../Zotlabs/Module/Defperms.php:257 +#: ../../Zotlabs/Module/Connedit.php:870 ../../Zotlabs/Module/Defperms.php:257 msgid "Add permission role" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:861 +#: ../../Zotlabs/Module/Connedit.php:877 msgid "This connection's primary address is" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:862 +#: ../../Zotlabs/Module/Connedit.php:878 msgid "Available locations:" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:867 ../../Zotlabs/Module/Defperms.php:261 +#: ../../Zotlabs/Module/Connedit.php:883 ../../Zotlabs/Module/Defperms.php:261 msgid "" "The permissions indicated on this page will be applied to all new " "connections." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:868 +#: ../../Zotlabs/Module/Connedit.php:884 msgid "Connection Tools" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:870 +#: ../../Zotlabs/Module/Connedit.php:886 msgid "Slide to adjust your degree of friendship" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:871 ../../Zotlabs/Module/Rate.php:155 +#: ../../Zotlabs/Module/Connedit.php:887 ../../Zotlabs/Module/Rate.php:155 #: ../../include/js_strings.php:20 msgid "Rating" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:872 +#: ../../Zotlabs/Module/Connedit.php:888 msgid "Slide to adjust your rating" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:873 ../../Zotlabs/Module/Connedit.php:878 +#: ../../Zotlabs/Module/Connedit.php:889 ../../Zotlabs/Module/Connedit.php:894 msgid "Optionally explain your rating" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:875 +#: ../../Zotlabs/Module/Connedit.php:891 msgid "Custom Filter" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:876 +#: ../../Zotlabs/Module/Connedit.php:892 msgid "Only import posts with this text" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:877 +#: ../../Zotlabs/Module/Connedit.php:893 msgid "Do not import posts with this text" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:879 +#: ../../Zotlabs/Module/Connedit.php:895 msgid "This information is public!" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:884 +#: ../../Zotlabs/Module/Connedit.php:900 msgid "Connection Pending Approval" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:889 +#: ../../Zotlabs/Module/Connedit.php:905 #, php-format msgid "" "Please choose the profile you would like to display to %s when viewing your " "profile securely." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:896 +#: ../../Zotlabs/Module/Connedit.php:912 msgid "" "Some permissions may be inherited from your channel's <a href=\"settings" "\"><strong>privacy settings</strong></a>, which have higher priority than " @@ -5929,11 +5929,11 @@ msgid "" "any impact unless the inherited setting changes." msgstr "" -#: ../../Zotlabs/Module/Connedit.php:897 +#: ../../Zotlabs/Module/Connedit.php:913 msgid "Last update:" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:905 +#: ../../Zotlabs/Module/Connedit.php:921 msgid "Details" msgstr "" @@ -5976,8 +5976,8 @@ msgid "Please enter a link URL:" msgstr "" #: ../../Zotlabs/Module/Chat.php:221 ../../Zotlabs/Module/Mail.php:294 -#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:781 -#: ../../addon/hsse/hsse.php:255 ../../include/conversation.php:1458 +#: ../../Zotlabs/Module/Mail.php:436 ../../Zotlabs/Lib/ThreadItem.php:809 +#: ../../addon/hsse/hsse.php:255 ../../include/conversation.php:1461 msgid "Encrypt text" msgstr "" @@ -6010,13 +6010,13 @@ msgstr "" msgid "min" msgstr "" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:320 -#: ../../include/features.php:391 ../../include/nav.php:414 +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:342 +#: ../../include/features.php:383 ../../include/nav.php:444 msgid "Photos" msgstr "" -#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:315 -#: ../../Zotlabs/Storage/Browser.php:272 ../../include/nav.php:422 +#: ../../Zotlabs/Module/Fbrowser.php:85 ../../Zotlabs/Lib/Apps.php:337 +#: ../../Zotlabs/Storage/Browser.php:272 ../../include/nav.php:452 msgid "Files" msgstr "" @@ -6056,7 +6056,7 @@ msgstr "" msgid "Submit and proceed" msgstr "" -#: ../../Zotlabs/Module/Menu.php:170 ../../include/text.php:2466 +#: ../../Zotlabs/Module/Menu.php:170 ../../include/text.php:2535 msgid "Menus" msgstr "" @@ -6108,12 +6108,12 @@ msgstr "" msgid "Allow bookmarks" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2467 +#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2536 msgid "Layouts" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:323 -#: ../../include/nav.php:168 ../../include/nav.php:289 +#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:345 +#: ../../include/nav.php:168 ../../include/nav.php:319 #: ../../include/help.php:117 ../../include/help.php:125 msgid "Help" msgstr "" @@ -6130,11 +6130,11 @@ msgstr "" msgid "Download PDL file" msgstr "" -#: ../../Zotlabs/Module/Notes.php:55 +#: ../../Zotlabs/Module/Notes.php:56 msgid "Notes App" msgstr "" -#: ../../Zotlabs/Module/Notes.php:56 +#: ../../Zotlabs/Module/Notes.php:57 msgid "A simple notes app with a widget (note: notes are not encrypted)" msgstr "" @@ -6179,13 +6179,13 @@ msgstr "" msgid "Post not found." msgstr "" -#: ../../Zotlabs/Module/Tagger.php:77 ../../include/markdown.php:202 -#: ../../include/bbcode.php:354 +#: ../../Zotlabs/Module/Tagger.php:77 ../../include/markdown.php:200 +#: ../../include/bbcode.php:343 msgid "post" msgstr "" #: ../../Zotlabs/Module/Tagger.php:79 ../../include/conversation.php:146 -#: ../../include/text.php:2036 +#: ../../include/text.php:2099 msgid "comment" msgstr "" @@ -6194,21 +6194,72 @@ msgstr "" msgid "%1$s tagged %2$s's %3$s with %4$s" msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:27 ../../Zotlabs/Module/Pconfig.php:63 +#: ../../Zotlabs/Module/Pconfig.php:32 ../../Zotlabs/Module/Pconfig.php:68 msgid "This setting requires special processing and editing has been blocked." msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:52 +#: ../../Zotlabs/Module/Pconfig.php:57 msgid "Configuration Editor" msgstr "" -#: ../../Zotlabs/Module/Pconfig.php:53 +#: ../../Zotlabs/Module/Pconfig.php:58 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/Affinity.php:35 +msgid "Affinity Tool settings updated." +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:47 +msgid "" +"This app presents a slider control in your connection editor and also on " +"your network page. The slider represents your degree of friendship " +"(affinity) with each connection. It allows you to zoom in or out and display " +"conversations from only your closest friends or everybody in your stream." +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:52 +msgid "Affinity Tool App" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:57 +msgid "" +"The numbers below represent the minimum and maximum slider default positions " +"for your network/stream page as a percentage." +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:64 +msgid "Default maximum affinity level" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:64 +msgid "0-99 default 99" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:70 +msgid "Default minimum affinity level" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:70 +msgid "0-99 - default 0" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:76 +msgid "Persistent affinity levels" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:76 +msgid "" +"If disabled the max and min levels will be reset to default after page reload" +msgstr "" + +#: ../../Zotlabs/Module/Affinity.php:84 +msgid "Affinity Tool Settings" +msgstr "" + #: ../../Zotlabs/Module/Defperms.php:189 msgid "Default Permissions App" msgstr "" @@ -6252,76 +6303,76 @@ msgstr "" msgid "Could not create privacy group." msgstr "" -#: ../../Zotlabs/Module/Group.php:61 ../../Zotlabs/Module/Group.php:200 -#: ../../include/items.php:4167 +#: ../../Zotlabs/Module/Group.php:61 ../../Zotlabs/Module/Group.php:213 +#: ../../include/items.php:4275 msgid "Privacy group not found." msgstr "" -#: ../../Zotlabs/Module/Group.php:77 +#: ../../Zotlabs/Module/Group.php:80 msgid "Privacy group updated." msgstr "" -#: ../../Zotlabs/Module/Group.php:101 +#: ../../Zotlabs/Module/Group.php:106 msgid "Privacy Groups App" msgstr "" -#: ../../Zotlabs/Module/Group.php:102 +#: ../../Zotlabs/Module/Group.php:107 msgid "Management of privacy groups" msgstr "" -#: ../../Zotlabs/Module/Group.php:132 ../../Zotlabs/Module/Group.php:143 -#: ../../Zotlabs/Lib/Apps.php:339 ../../Zotlabs/Lib/Group.php:324 -#: ../../Zotlabs/Widget/Activity_filter.php:70 ../../include/nav.php:95 +#: ../../Zotlabs/Module/Group.php:141 ../../Zotlabs/Module/Group.php:153 +#: ../../Zotlabs/Lib/Apps.php:361 ../../Zotlabs/Lib/Group.php:324 +#: ../../Zotlabs/Widget/Activity_filter.php:41 ../../include/nav.php:95 #: ../../include/group.php:320 msgid "Privacy Groups" msgstr "" -#: ../../Zotlabs/Module/Group.php:133 +#: ../../Zotlabs/Module/Group.php:142 msgid "Add Group" msgstr "" -#: ../../Zotlabs/Module/Group.php:137 +#: ../../Zotlabs/Module/Group.php:146 msgid "Privacy group name" msgstr "" -#: ../../Zotlabs/Module/Group.php:138 ../../Zotlabs/Module/Group.php:239 +#: ../../Zotlabs/Module/Group.php:147 ../../Zotlabs/Module/Group.php:256 msgid "Members are visible to other channels" msgstr "" -#: ../../Zotlabs/Module/Group.php:145 ../../Zotlabs/Module/Help.php:81 +#: ../../Zotlabs/Module/Group.php:155 ../../Zotlabs/Module/Help.php:81 msgid "Members" msgstr "" -#: ../../Zotlabs/Module/Group.php:170 +#: ../../Zotlabs/Module/Group.php:182 msgid "Privacy group removed." msgstr "" -#: ../../Zotlabs/Module/Group.php:172 +#: ../../Zotlabs/Module/Group.php:185 msgid "Unable to remove privacy group." msgstr "" -#: ../../Zotlabs/Module/Group.php:234 +#: ../../Zotlabs/Module/Group.php:251 #, php-format msgid "Privacy Group: %s" msgstr "" -#: ../../Zotlabs/Module/Group.php:236 +#: ../../Zotlabs/Module/Group.php:253 msgid "Privacy group name: " msgstr "" -#: ../../Zotlabs/Module/Group.php:241 +#: ../../Zotlabs/Module/Group.php:258 msgid "Delete Group" msgstr "" -#: ../../Zotlabs/Module/Group.php:251 +#: ../../Zotlabs/Module/Group.php:269 msgid "Group members" msgstr "" -#: ../../Zotlabs/Module/Group.php:253 +#: ../../Zotlabs/Module/Group.php:271 msgid "Not in this group" msgstr "" -#: ../../Zotlabs/Module/Group.php:285 +#: ../../Zotlabs/Module/Group.php:303 msgid "Click a channel to toggle membership" msgstr "" @@ -6416,7 +6467,7 @@ msgid "View this profile" msgstr "" #: ../../Zotlabs/Module/Profiles.php:725 ../../Zotlabs/Module/Profiles.php:824 -#: ../../include/channel.php:1326 +#: ../../include/channel.php:1375 msgid "Edit visibility" msgstr "" @@ -6428,7 +6479,7 @@ msgstr "" msgid "Change cover photo" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:728 ../../include/channel.php:1296 +#: ../../Zotlabs/Module/Profiles.php:728 ../../include/channel.php:1345 msgid "Change profile photo" msgstr "" @@ -6594,11 +6645,11 @@ msgstr "" msgid "Communications" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:820 ../../include/channel.php:1322 +#: ../../Zotlabs/Module/Profiles.php:820 ../../include/channel.php:1371 msgid "Profile Image" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:830 ../../include/channel.php:1303 +#: ../../Zotlabs/Module/Profiles.php:830 ../../include/channel.php:1352 #: ../../include/nav.php:109 msgid "Edit Profiles" msgstr "" @@ -6678,7 +6729,7 @@ msgstr "" msgid "Create a new channel" msgstr "" -#: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:312 +#: ../../Zotlabs/Module/Manage.php:170 ../../Zotlabs/Lib/Apps.php:334 #: ../../include/nav.php:92 msgid "Channel Manager" msgstr "" @@ -6713,20 +6764,20 @@ msgstr "" msgid "Delegated Channel" msgstr "" -#: ../../Zotlabs/Module/Cards.php:46 +#: ../../Zotlabs/Module/Cards.php:51 msgid "Cards App" msgstr "" -#: ../../Zotlabs/Module/Cards.php:47 +#: ../../Zotlabs/Module/Cards.php:52 msgid "Create personal planning cards" msgstr "" -#: ../../Zotlabs/Module/Cards.php:108 +#: ../../Zotlabs/Module/Cards.php:112 msgid "Add Card" msgstr "" -#: ../../Zotlabs/Module/Cards.php:203 ../../Zotlabs/Lib/Apps.php:303 -#: ../../include/nav.php:471 +#: ../../Zotlabs/Module/Cards.php:207 ../../Zotlabs/Lib/Apps.php:325 +#: ../../include/nav.php:501 msgid "Cards" msgstr "" @@ -6825,8 +6876,8 @@ msgstr "" msgid "Export selected" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:252 ../../Zotlabs/Lib/Apps.php:316 -#: ../../include/nav.php:494 +#: ../../Zotlabs/Module/Webpages.php:252 ../../Zotlabs/Lib/Apps.php:338 +#: ../../include/nav.php:524 msgid "Webpages" msgstr "" @@ -6868,13 +6919,13 @@ msgid "" "password." msgstr "" -#: ../../Zotlabs/Module/Changeaddr.php:46 ../../include/channel.php:221 -#: ../../include/channel.php:606 +#: ../../Zotlabs/Module/Changeaddr.php:46 ../../include/channel.php:222 +#: ../../include/channel.php:655 msgid "Reserved nickname. Please choose another." msgstr "" -#: ../../Zotlabs/Module/Changeaddr.php:51 ../../include/channel.php:226 -#: ../../include/channel.php:611 +#: ../../Zotlabs/Module/Changeaddr.php:51 ../../include/channel.php:227 +#: ../../include/channel.php:660 msgid "" "Nickname has unsupported characters or is already being used on this site." msgstr "" @@ -6903,69 +6954,69 @@ msgstr "" msgid "Edit post" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:45 +#: ../../Zotlabs/Module/Dreport.php:56 msgid "Invalid message" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:78 +#: ../../Zotlabs/Module/Dreport.php:90 msgid "no results" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:93 +#: ../../Zotlabs/Module/Dreport.php:104 msgid "channel sync processed" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:97 +#: ../../Zotlabs/Module/Dreport.php:108 msgid "queued" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:101 +#: ../../Zotlabs/Module/Dreport.php:112 msgid "posted" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:105 +#: ../../Zotlabs/Module/Dreport.php:116 msgid "accepted for delivery" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:109 +#: ../../Zotlabs/Module/Dreport.php:120 msgid "updated" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:112 +#: ../../Zotlabs/Module/Dreport.php:123 msgid "update ignored" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:115 +#: ../../Zotlabs/Module/Dreport.php:126 msgid "permission denied" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:119 +#: ../../Zotlabs/Module/Dreport.php:130 msgid "recipient not found" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:122 +#: ../../Zotlabs/Module/Dreport.php:133 msgid "mail recalled" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:125 +#: ../../Zotlabs/Module/Dreport.php:136 msgid "duplicate mail received" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:128 +#: ../../Zotlabs/Module/Dreport.php:139 msgid "mail delivered" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:148 +#: ../../Zotlabs/Module/Dreport.php:159 #, php-format msgid "Delivery report for %1$s" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:151 ../../Zotlabs/Widget/Wiki_pages.php:41 +#: ../../Zotlabs/Module/Dreport.php:162 ../../Zotlabs/Widget/Wiki_pages.php:41 #: ../../Zotlabs/Widget/Wiki_pages.php:98 msgid "Options" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:152 +#: ../../Zotlabs/Module/Dreport.php:163 msgid "Redeliver" msgstr "" @@ -6993,7 +7044,7 @@ msgstr "" msgid "*" msgstr "" -#: ../../Zotlabs/Module/Sources.php:107 ../../Zotlabs/Lib/Apps.php:344 +#: ../../Zotlabs/Module/Sources.php:107 ../../Zotlabs/Lib/Apps.php:366 msgid "Channel Sources" msgstr "" @@ -7062,89 +7113,89 @@ msgstr "" msgid "Unable to remove source." msgstr "" -#: ../../Zotlabs/Module/Like.php:54 +#: ../../Zotlabs/Module/Like.php:56 msgid "Like/Dislike" msgstr "" -#: ../../Zotlabs/Module/Like.php:59 +#: ../../Zotlabs/Module/Like.php:61 msgid "This action is restricted to members." msgstr "" -#: ../../Zotlabs/Module/Like.php:60 +#: ../../Zotlabs/Module/Like.php:62 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:109 ../../Zotlabs/Module/Like.php:135 -#: ../../Zotlabs/Module/Like.php:173 +#: ../../Zotlabs/Module/Like.php:111 ../../Zotlabs/Module/Like.php:137 +#: ../../Zotlabs/Module/Like.php:175 msgid "Invalid request." msgstr "" -#: ../../Zotlabs/Module/Like.php:121 ../../include/conversation.php:122 +#: ../../Zotlabs/Module/Like.php:123 ../../include/conversation.php:122 msgid "channel" msgstr "" -#: ../../Zotlabs/Module/Like.php:150 +#: ../../Zotlabs/Module/Like.php:152 msgid "thing" msgstr "" -#: ../../Zotlabs/Module/Like.php:196 +#: ../../Zotlabs/Module/Like.php:198 msgid "Channel unavailable." msgstr "" -#: ../../Zotlabs/Module/Like.php:244 +#: ../../Zotlabs/Module/Like.php:246 msgid "Previous action reversed." msgstr "" -#: ../../Zotlabs/Module/Like.php:438 ../../Zotlabs/Lib/Activity.php:1605 -#: ../../addon/diaspora/Receiver.php:1568 ../../addon/pubcrawl/as.php:1546 +#: ../../Zotlabs/Module/Like.php:447 ../../Zotlabs/Lib/Activity.php:1994 +#: ../../addon/diaspora/Receiver.php:1491 ../../addon/pubcrawl/as.php:1540 #: ../../include/conversation.php:160 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:440 ../../Zotlabs/Lib/Activity.php:1607 -#: ../../addon/pubcrawl/as.php:1548 ../../include/conversation.php:163 +#: ../../Zotlabs/Module/Like.php:449 ../../Zotlabs/Lib/Activity.php:1996 +#: ../../addon/pubcrawl/as.php:1542 ../../include/conversation.php:163 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:442 +#: ../../Zotlabs/Module/Like.php:451 #, php-format msgid "%1$s agrees with %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:444 +#: ../../Zotlabs/Module/Like.php:453 #, php-format msgid "%1$s doesn't agree with %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:446 +#: ../../Zotlabs/Module/Like.php:455 #, php-format msgid "%1$s abstains from a decision on %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:448 ../../addon/diaspora/Receiver.php:2111 +#: ../../Zotlabs/Module/Like.php:457 ../../addon/diaspora/Receiver.php:2137 #, php-format msgid "%1$s is attending %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:450 ../../addon/diaspora/Receiver.php:2113 +#: ../../Zotlabs/Module/Like.php:459 ../../addon/diaspora/Receiver.php:2139 #, php-format msgid "%1$s is not attending %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:452 ../../addon/diaspora/Receiver.php:2115 +#: ../../Zotlabs/Module/Like.php:461 ../../addon/diaspora/Receiver.php:2141 #, php-format msgid "%1$s may attend %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:564 +#: ../../Zotlabs/Module/Like.php:572 msgid "Action completed." msgstr "" -#: ../../Zotlabs/Module/Like.php:565 +#: ../../Zotlabs/Module/Like.php:573 msgid "Thank you." msgstr "" @@ -7171,12 +7222,12 @@ msgstr "" msgid "Homepage: " msgstr "" -#: ../../Zotlabs/Module/Directory.php:323 ../../include/channel.php:1571 +#: ../../Zotlabs/Module/Directory.php:323 ../../include/channel.php:1620 msgid "Age:" msgstr "" -#: ../../Zotlabs/Module/Directory.php:328 ../../include/channel.php:1398 -#: ../../include/event.php:54 ../../include/event.php:86 +#: ../../Zotlabs/Module/Directory.php:328 ../../include/channel.php:1447 +#: ../../include/event.php:58 ../../include/event.php:90 msgid "Location:" msgstr "" @@ -7184,17 +7235,17 @@ msgstr "" msgid "Description:" msgstr "" -#: ../../Zotlabs/Module/Directory.php:339 ../../include/channel.php:1600 +#: ../../Zotlabs/Module/Directory.php:339 ../../include/channel.php:1649 msgid "Hometown:" msgstr "" -#: ../../Zotlabs/Module/Directory.php:341 ../../include/channel.php:1606 +#: ../../Zotlabs/Module/Directory.php:341 ../../include/channel.php:1655 msgid "About:" msgstr "" #: ../../Zotlabs/Module/Directory.php:342 ../../Zotlabs/Module/Suggest.php:71 #: ../../Zotlabs/Widget/Follow.php:32 ../../Zotlabs/Widget/Suggestions.php:44 -#: ../../include/conversation.php:1058 ../../include/channel.php:1383 +#: ../../include/conversation.php:1058 ../../include/channel.php:1432 #: ../../include/connections.php:110 msgid "Connect" msgstr "" @@ -7361,7 +7412,7 @@ msgid "Send" msgstr "" #: ../../Zotlabs/Module/Mail.php:292 ../../Zotlabs/Module/Mail.php:434 -#: ../../addon/hsse/hsse.php:250 ../../include/conversation.php:1453 +#: ../../addon/hsse/hsse.php:250 ../../include/conversation.php:1456 msgid "Set expiration date" msgstr "" @@ -7453,12 +7504,12 @@ msgstr "" msgid "menu" msgstr "" -#: ../../Zotlabs/Module/Impel.php:183 +#: ../../Zotlabs/Module/Impel.php:185 #, php-format msgid "%s element installed" msgstr "" -#: ../../Zotlabs/Module/Impel.php:186 +#: ../../Zotlabs/Module/Impel.php:188 #, php-format msgid "%s element installation failed" msgstr "" @@ -7487,7 +7538,7 @@ msgstr "" msgid "or select an existing folder (doubleclick)" msgstr "" -#: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Lib/ThreadItem.php:164 +#: ../../Zotlabs/Module/Filer.php:54 ../../Zotlabs/Lib/ThreadItem.php:181 msgid "Save to Folder" msgstr "" @@ -7606,7 +7657,7 @@ msgstr "" msgid "yes" msgstr "" -#: ../../Zotlabs/Module/Register.php:289 ../../boot.php:1605 +#: ../../Zotlabs/Module/Register.php:289 ../../boot.php:1609 #: ../../include/nav.php:156 msgid "Register" msgstr "" @@ -7622,30 +7673,30 @@ msgstr "" msgid "Cover Photos" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:269 ../../include/items.php:4544 +#: ../../Zotlabs/Module/Cover_photo.php:269 ../../include/items.php:4652 msgid "female" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:270 ../../include/items.php:4545 +#: ../../Zotlabs/Module/Cover_photo.php:270 ../../include/items.php:4653 #, php-format msgid "%1$s updated her %2$s" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:271 ../../include/items.php:4546 +#: ../../Zotlabs/Module/Cover_photo.php:271 ../../include/items.php:4654 msgid "male" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:272 ../../include/items.php:4547 +#: ../../Zotlabs/Module/Cover_photo.php:272 ../../include/items.php:4655 #, php-format msgid "%1$s updated his %2$s" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:274 ../../include/items.php:4549 +#: ../../Zotlabs/Module/Cover_photo.php:274 ../../include/items.php:4657 #, php-format msgid "%1$s updated their %2$s" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:276 ../../include/channel.php:2088 +#: ../../Zotlabs/Module/Cover_photo.php:276 ../../include/channel.php:2137 msgid "cover photo" msgstr "" @@ -7661,7 +7712,7 @@ msgstr "" msgid "Documentation Search" msgstr "" -#: ../../Zotlabs/Module/Help.php:80 ../../include/nav.php:404 +#: ../../Zotlabs/Module/Help.php:80 ../../include/nav.php:434 msgid "About" msgstr "" @@ -7685,11 +7736,11 @@ msgstr "" msgid "Contents" msgstr "" -#: ../../Zotlabs/Module/Display.php:393 +#: ../../Zotlabs/Module/Display.php:391 msgid "Article" msgstr "" -#: ../../Zotlabs/Module/Display.php:445 +#: ../../Zotlabs/Module/Display.php:443 msgid "Item has been removed." msgstr "" @@ -7705,27 +7756,27 @@ msgstr "" msgid "Select a tag to remove: " msgstr "" -#: ../../Zotlabs/Module/Network.php:107 +#: ../../Zotlabs/Module/Network.php:109 msgid "No such group" msgstr "" -#: ../../Zotlabs/Module/Network.php:148 +#: ../../Zotlabs/Module/Network.php:158 msgid "No such channel" msgstr "" -#: ../../Zotlabs/Module/Network.php:231 +#: ../../Zotlabs/Module/Network.php:242 msgid "Privacy group is empty" msgstr "" -#: ../../Zotlabs/Module/Network.php:242 +#: ../../Zotlabs/Module/Network.php:252 msgid "Privacy group: " msgstr "" -#: ../../Zotlabs/Module/Network.php:291 ../../addon/redred/redred.php:65 +#: ../../Zotlabs/Module/Network.php:325 ../../addon/redred/Mod_Redred.php:29 msgid "Invalid channel." msgstr "" -#: ../../Zotlabs/Module/Acl.php:359 +#: ../../Zotlabs/Module/Acl.php:360 msgid "network" msgstr "" @@ -7829,47 +7880,43 @@ msgstr "" msgid "Expiring accounts" msgstr "" -#: ../../Zotlabs/Module/Admin.php:116 -msgid "Clones" -msgstr "" - -#: ../../Zotlabs/Module/Admin.php:122 +#: ../../Zotlabs/Module/Admin.php:120 msgid "Message queues" msgstr "" -#: ../../Zotlabs/Module/Admin.php:136 +#: ../../Zotlabs/Module/Admin.php:134 msgid "Your software should be updated" msgstr "" -#: ../../Zotlabs/Module/Admin.php:141 +#: ../../Zotlabs/Module/Admin.php:139 msgid "Summary" msgstr "" -#: ../../Zotlabs/Module/Admin.php:144 +#: ../../Zotlabs/Module/Admin.php:142 msgid "Registered accounts" msgstr "" -#: ../../Zotlabs/Module/Admin.php:145 +#: ../../Zotlabs/Module/Admin.php:143 msgid "Pending registrations" msgstr "" -#: ../../Zotlabs/Module/Admin.php:146 +#: ../../Zotlabs/Module/Admin.php:144 msgid "Registered channels" msgstr "" -#: ../../Zotlabs/Module/Admin.php:147 +#: ../../Zotlabs/Module/Admin.php:145 msgid "Active addons" msgstr "" -#: ../../Zotlabs/Module/Admin.php:148 +#: ../../Zotlabs/Module/Admin.php:146 msgid "Version" msgstr "" -#: ../../Zotlabs/Module/Admin.php:149 +#: ../../Zotlabs/Module/Admin.php:147 msgid "Repository version (master)" msgstr "" -#: ../../Zotlabs/Module/Admin.php:150 +#: ../../Zotlabs/Module/Admin.php:148 msgid "Repository version (dev)" msgstr "" @@ -7922,7 +7969,7 @@ msgid "" "Password reset failed." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1634 +#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1638 msgid "Password Reset" msgstr "" @@ -7984,7 +8031,7 @@ msgid "OAuth authentication tokens for mobile and remote apps" msgstr "" #: ../../Zotlabs/Module/Oauth.php:114 ../../Zotlabs/Module/Oauth.php:140 -#: ../../addon/statusnet/statusnet.php:894 ../../addon/twitter/twitter.php:784 +#: ../../addon/statusnet/statusnet.php:596 ../../addon/twitter/twitter.php:614 msgid "Consumer Key" msgstr "" @@ -8001,14 +8048,39 @@ msgid "Connected OAuth Apps" msgstr "" #: ../../Zotlabs/Module/Notifications.php:60 -#: ../../Zotlabs/Lib/ThreadItem.php:422 +#: ../../Zotlabs/Lib/ThreadItem.php:450 msgid "Mark all seen" msgstr "" -#: ../../Zotlabs/Lib/Activity.php:1417 ../../Zotlabs/Lib/Activity.php:1614 -#: ../../widget/Netselect/Netselect.php:42 ../../addon/pubcrawl/as.php:1221 -#: ../../addon/pubcrawl/as.php:1376 ../../addon/pubcrawl/as.php:1555 -#: ../../include/network.php:1778 +#: ../../Zotlabs/Lib/Activity.php:1458 +#, php-format +msgid "Likes %1$s's %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:1461 +#, php-format +msgid "Doesn't like %1$s's %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:1464 +#, php-format +msgid "Will attend %1$s's %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:1467 +#, php-format +msgid "Will not attend %1$s's %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:1470 +#, php-format +msgid "May attend %1$s's %2$s" +msgstr "" + +#: ../../Zotlabs/Lib/Activity.php:1806 ../../Zotlabs/Lib/Activity.php:2003 +#: ../../widget/Netselect/Netselect.php:42 ../../addon/pubcrawl/as.php:1214 +#: ../../addon/pubcrawl/as.php:1369 ../../addon/pubcrawl/as.php:1549 +#: ../../include/network.php:1720 msgid "ActivityPub" msgstr "" @@ -8036,179 +8108,183 @@ msgstr "" msgid "5. Wizard - I probably know more than you do" msgstr "" -#: ../../Zotlabs/Lib/Libzot.php:663 ../../include/zot.php:800 +#: ../../Zotlabs/Lib/Libzot.php:652 ../../include/zot.php:802 msgid "Unable to verify channel signature" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:301 +#: ../../Zotlabs/Lib/Apps.php:322 msgid "Apps" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:304 +#: ../../Zotlabs/Lib/Apps.php:323 +msgid "Affinity Tool" +msgstr "" + +#: ../../Zotlabs/Lib/Apps.php:326 msgid "Site Admin" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:305 ../../addon/buglink/buglink.php:16 +#: ../../Zotlabs/Lib/Apps.php:327 ../../addon/buglink/buglink.php:16 msgid "Report Bug" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:306 ../../include/nav.php:460 +#: ../../Zotlabs/Lib/Apps.php:328 ../../include/nav.php:490 msgid "Bookmarks" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:307 ../../Zotlabs/Widget/Chatroom_list.php:16 -#: ../../include/nav.php:447 ../../include/nav.php:450 +#: ../../Zotlabs/Lib/Apps.php:329 ../../Zotlabs/Widget/Chatroom_list.php:16 +#: ../../include/nav.php:477 ../../include/nav.php:480 msgid "Chatrooms" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:309 +#: ../../Zotlabs/Lib/Apps.php:331 msgid "Remote Diagnostics" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:310 ../../include/features.php:373 +#: ../../Zotlabs/Lib/Apps.php:332 ../../include/features.php:365 msgid "Suggest Channels" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:311 ../../boot.php:1625 ../../include/nav.php:118 +#: ../../Zotlabs/Lib/Apps.php:333 ../../boot.php:1629 ../../include/nav.php:118 #: ../../include/nav.php:122 msgid "Login" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:313 +#: ../../Zotlabs/Lib/Apps.php:335 msgid "Stream" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:317 ../../include/nav.php:509 +#: ../../Zotlabs/Lib/Apps.php:339 ../../include/nav.php:539 msgid "Wiki" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:318 ../../include/features.php:96 +#: ../../Zotlabs/Lib/Apps.php:340 ../../include/features.php:96 msgid "Channel Home" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:321 ../../include/features.php:269 +#: ../../Zotlabs/Lib/Apps.php:343 ../../include/features.php:269 msgid "Events" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:322 ../../include/features.php:176 +#: ../../Zotlabs/Lib/Apps.php:344 ../../include/features.php:176 msgid "Directory" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:324 +#: ../../Zotlabs/Lib/Apps.php:346 msgid "Mail" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:327 +#: ../../Zotlabs/Lib/Apps.php:349 msgid "Chat" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:329 +#: ../../Zotlabs/Lib/Apps.php:351 msgid "Probe" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:330 +#: ../../Zotlabs/Lib/Apps.php:352 msgid "Suggest" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:331 +#: ../../Zotlabs/Lib/Apps.php:353 msgid "Random Channel" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:332 +#: ../../Zotlabs/Lib/Apps.php:354 msgid "Invite" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:333 ../../Zotlabs/Widget/Admin.php:26 +#: ../../Zotlabs/Lib/Apps.php:355 ../../Zotlabs/Widget/Admin.php:26 msgid "Features" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:334 ../../addon/openid/MysqlProvider.php:69 +#: ../../Zotlabs/Lib/Apps.php:356 ../../addon/openid/MysqlProvider.php:69 msgid "Language" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:335 +#: ../../Zotlabs/Lib/Apps.php:357 msgid "Post" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:336 ../../addon/openid/MysqlProvider.php:58 +#: ../../Zotlabs/Lib/Apps.php:358 ../../addon/openid/MysqlProvider.php:58 #: ../../addon/openid/MysqlProvider.php:59 #: ../../addon/openid/MysqlProvider.php:60 msgid "Profile Photo" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:338 ../../include/features.php:405 +#: ../../Zotlabs/Lib/Apps.php:360 ../../include/features.php:397 msgid "Profiles" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:340 +#: ../../Zotlabs/Lib/Apps.php:362 msgid "Notifications" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:341 +#: ../../Zotlabs/Lib/Apps.php:363 msgid "Order Apps" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:342 ../../include/features.php:82 +#: ../../Zotlabs/Lib/Apps.php:364 ../../include/features.php:82 msgid "CalDAV" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:343 +#: ../../Zotlabs/Lib/Apps.php:365 msgid "CardDAV" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:345 +#: ../../Zotlabs/Lib/Apps.php:367 msgid "Guest Access" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:346 ../../Zotlabs/Widget/Notes.php:21 +#: ../../Zotlabs/Lib/Apps.php:368 ../../Zotlabs/Widget/Notes.php:21 msgid "Notes" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:347 +#: ../../Zotlabs/Lib/Apps.php:369 msgid "OAuth Apps Manager" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:348 +#: ../../Zotlabs/Lib/Apps.php:370 msgid "OAuth2 Apps Manager" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:349 +#: ../../Zotlabs/Lib/Apps.php:371 msgid "PDL Editor" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:351 +#: ../../Zotlabs/Lib/Apps.php:373 msgid "Premium Channel" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:353 +#: ../../Zotlabs/Lib/Apps.php:375 msgid "My Chatrooms" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:354 +#: ../../Zotlabs/Lib/Apps.php:376 msgid "Channel Export" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:531 +#: ../../Zotlabs/Lib/Apps.php:553 msgid "Purchase" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:536 +#: ../../Zotlabs/Lib/Apps.php:558 msgid "Undelete" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:545 +#: ../../Zotlabs/Lib/Apps.php:567 msgid "Add to app-tray" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:546 +#: ../../Zotlabs/Lib/Apps.php:568 msgid "Remove from app-tray" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:547 +#: ../../Zotlabs/Lib/Apps.php:569 msgid "Pin to navbar" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:548 +#: ../../Zotlabs/Lib/Apps.php:570 msgid "Unpin from navbar" msgstr "" @@ -8305,8 +8381,8 @@ msgstr "" msgid "Compare" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:603 ../../include/bbcode.php:746 -#: ../../include/bbcode.php:916 +#: ../../Zotlabs/Lib/NativeWikiPage.php:603 ../../include/bbcode.php:735 +#: ../../include/bbcode.php:905 msgid "Different viewers will see this text differently" msgstr "" @@ -8441,7 +8517,7 @@ msgstr "" msgid "Room is full" msgstr "" -#: ../../Zotlabs/Lib/Libsync.php:733 ../../include/zot.php:2571 +#: ../../Zotlabs/Lib/Libsync.php:733 ../../include/zot.php:2591 #, php-format msgid "Unable to verify site signature for %s" msgstr "" @@ -8450,8 +8526,8 @@ msgstr "" msgid "$Projectname Notification" msgstr "" -#: ../../Zotlabs/Lib/Enotify.php:61 ../../addon/diaspora/util.php:308 -#: ../../addon/diaspora/util.php:321 ../../addon/diaspora/p.php:48 +#: ../../Zotlabs/Lib/Enotify.php:61 ../../addon/diaspora/util.php:313 +#: ../../addon/diaspora/util.php:326 ../../addon/diaspora/p.php:48 msgid "$projectname" msgstr "" @@ -8713,11 +8789,11 @@ msgstr "" msgid "edited a comment dated %s" msgstr "" -#: ../../Zotlabs/Lib/NativeWiki.php:152 +#: ../../Zotlabs/Lib/NativeWiki.php:143 msgid "Wiki updated successfully" msgstr "" -#: ../../Zotlabs/Lib/NativeWiki.php:206 +#: ../../Zotlabs/Lib/NativeWiki.php:197 msgid "Wiki files deleted successfully" msgstr "" @@ -8731,210 +8807,214 @@ msgstr "" msgid "Update %s failed. See error logs." msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:99 ../../include/conversation.php:700 +#: ../../Zotlabs/Lib/ThreadItem.php:102 ../../include/conversation.php:700 msgid "Private Message" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:154 ../../Zotlabs/Storage/Browser.php:280 +#: ../../Zotlabs/Lib/ThreadItem.php:129 +msgid "Privacy conflict. Discretion advised." +msgstr "" + +#: ../../Zotlabs/Lib/ThreadItem.php:171 ../../Zotlabs/Storage/Browser.php:280 msgid "Admin Delete" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:160 ../../include/conversation.php:690 +#: ../../Zotlabs/Lib/ThreadItem.php:177 ../../include/conversation.php:690 msgid "Select" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../Zotlabs/Lib/ThreadItem.php:202 msgid "I will attend" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../Zotlabs/Lib/ThreadItem.php:202 msgid "I will not attend" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:185 +#: ../../Zotlabs/Lib/ThreadItem.php:202 msgid "I might attend" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:195 +#: ../../Zotlabs/Lib/ThreadItem.php:212 msgid "I agree" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:195 +#: ../../Zotlabs/Lib/ThreadItem.php:212 msgid "I disagree" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:195 +#: ../../Zotlabs/Lib/ThreadItem.php:212 msgid "I abstain" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:249 ../../include/conversation.php:695 +#: ../../Zotlabs/Lib/ThreadItem.php:266 ../../include/conversation.php:695 msgid "Toggle Star Status" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:260 ../../include/conversation.php:707 +#: ../../Zotlabs/Lib/ThreadItem.php:277 ../../include/conversation.php:707 msgid "Message signature validated" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:261 ../../include/conversation.php:708 +#: ../../Zotlabs/Lib/ThreadItem.php:278 ../../include/conversation.php:708 msgid "Message signature incorrect" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:269 +#: ../../Zotlabs/Lib/ThreadItem.php:286 msgid "Add Tag" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:273 ../../include/conversation.php:891 +#: ../../Zotlabs/Lib/ThreadItem.php:290 ../../include/conversation.php:891 msgid "Conversation Tools" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:289 ../../include/taxonomy.php:575 +#: ../../Zotlabs/Lib/ThreadItem.php:306 ../../include/taxonomy.php:575 msgid "like" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:290 ../../include/taxonomy.php:576 +#: ../../Zotlabs/Lib/ThreadItem.php:307 ../../include/taxonomy.php:576 msgid "dislike" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:294 +#: ../../Zotlabs/Lib/ThreadItem.php:317 msgid "Share This" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:294 +#: ../../Zotlabs/Lib/ThreadItem.php:317 msgid "share" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:303 +#: ../../Zotlabs/Lib/ThreadItem.php:327 msgid "Delivery Report" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:321 +#: ../../Zotlabs/Lib/ThreadItem.php:347 #, php-format msgid "%d comment" msgid_plural "%d comments" msgstr[0] "" msgstr[1] "" -#: ../../Zotlabs/Lib/ThreadItem.php:355 ../../Zotlabs/Lib/ThreadItem.php:356 +#: ../../Zotlabs/Lib/ThreadItem.php:381 ../../Zotlabs/Lib/ThreadItem.php:382 #, php-format msgid "View %s's profile - %s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:359 +#: ../../Zotlabs/Lib/ThreadItem.php:385 msgid "to" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:360 +#: ../../Zotlabs/Lib/ThreadItem.php:386 msgid "via" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:361 +#: ../../Zotlabs/Lib/ThreadItem.php:387 msgid "Wall-to-Wall" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:362 +#: ../../Zotlabs/Lib/ThreadItem.php:388 msgid "via Wall-To-Wall:" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:375 ../../include/conversation.php:766 +#: ../../Zotlabs/Lib/ThreadItem.php:402 ../../include/conversation.php:766 #, php-format msgid "from %s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:378 ../../include/conversation.php:769 +#: ../../Zotlabs/Lib/ThreadItem.php:405 ../../include/conversation.php:769 #, php-format msgid "last edited: %s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:379 ../../include/conversation.php:770 +#: ../../Zotlabs/Lib/ThreadItem.php:406 ../../include/conversation.php:770 #, php-format msgid "Expires: %s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:387 +#: ../../Zotlabs/Lib/ThreadItem.php:414 msgid "Attend" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:388 +#: ../../Zotlabs/Lib/ThreadItem.php:415 msgid "Attendance Options" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:389 +#: ../../Zotlabs/Lib/ThreadItem.php:416 msgid "Vote" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:390 +#: ../../Zotlabs/Lib/ThreadItem.php:417 msgid "Voting Options" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:411 +#: ../../Zotlabs/Lib/ThreadItem.php:439 #: ../../addon/bookmarker/bookmarker.php:38 msgid "Save Bookmarks" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:412 +#: ../../Zotlabs/Lib/ThreadItem.php:440 msgid "Add to Calendar" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:440 ../../include/conversation.php:483 +#: ../../Zotlabs/Lib/ThreadItem.php:468 ../../include/conversation.php:483 msgid "This is an unsaved preview" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:473 ../../include/js_strings.php:7 +#: ../../Zotlabs/Lib/ThreadItem.php:501 ../../include/js_strings.php:7 #, php-format msgid "%s show all" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:768 ../../addon/hsse/hsse.php:200 -#: ../../include/conversation.php:1403 +#: ../../Zotlabs/Lib/ThreadItem.php:796 ../../addon/hsse/hsse.php:200 +#: ../../include/conversation.php:1406 msgid "Bold" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:769 ../../addon/hsse/hsse.php:201 -#: ../../include/conversation.php:1404 +#: ../../Zotlabs/Lib/ThreadItem.php:797 ../../addon/hsse/hsse.php:201 +#: ../../include/conversation.php:1407 msgid "Italic" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:770 ../../addon/hsse/hsse.php:202 -#: ../../include/conversation.php:1405 +#: ../../Zotlabs/Lib/ThreadItem.php:798 ../../addon/hsse/hsse.php:202 +#: ../../include/conversation.php:1408 msgid "Underline" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:771 ../../addon/hsse/hsse.php:203 -#: ../../include/conversation.php:1406 +#: ../../Zotlabs/Lib/ThreadItem.php:799 ../../addon/hsse/hsse.php:203 +#: ../../include/conversation.php:1409 msgid "Quote" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:772 ../../addon/hsse/hsse.php:204 -#: ../../include/conversation.php:1407 +#: ../../Zotlabs/Lib/ThreadItem.php:800 ../../addon/hsse/hsse.php:204 +#: ../../include/conversation.php:1410 msgid "Code" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:773 +#: ../../Zotlabs/Lib/ThreadItem.php:801 msgid "Image" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:774 ../../addon/hsse/hsse.php:205 -#: ../../include/conversation.php:1408 +#: ../../Zotlabs/Lib/ThreadItem.php:802 ../../addon/hsse/hsse.php:205 +#: ../../include/conversation.php:1411 msgid "Attach/Upload file" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:775 +#: ../../Zotlabs/Lib/ThreadItem.php:803 msgid "Insert Link" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:776 +#: ../../Zotlabs/Lib/ThreadItem.php:804 msgid "Video" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:786 +#: ../../Zotlabs/Lib/ThreadItem.php:814 msgid "Your full name (required)" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:787 +#: ../../Zotlabs/Lib/ThreadItem.php:815 msgid "Your email address (required)" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:788 +#: ../../Zotlabs/Lib/ThreadItem.php:816 msgid "Your website URL (optional)" msgstr "" @@ -8954,7 +9034,7 @@ msgstr "" msgid "parent" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2824 +#: ../../Zotlabs/Storage/Browser.php:131 ../../include/text.php:2941 msgid "Collection" msgstr "" @@ -8966,8 +9046,8 @@ msgstr "" msgid "Addressbook" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:433 -#: ../../include/nav.php:436 +#: ../../Zotlabs/Storage/Browser.php:140 ../../include/nav.php:463 +#: ../../include/nav.php:466 msgid "Calendar" msgstr "" @@ -9018,7 +9098,7 @@ msgid "Drop files here to immediately upload" msgstr "" #: ../../Zotlabs/Widget/Forums.php:100 -#: ../../Zotlabs/Widget/Activity_filter.php:102 +#: ../../Zotlabs/Widget/Activity_filter.php:73 #: ../../Zotlabs/Widget/Notifications.php:119 #: ../../Zotlabs/Widget/Notifications.php:120 msgid "Forums" @@ -9101,8 +9181,8 @@ msgid "Select an addressbook to import to" msgstr "" #: ../../Zotlabs/Widget/Appcategories.php:43 -#: ../../include/contact_widgets.php:97 ../../include/contact_widgets.php:141 -#: ../../include/contact_widgets.php:186 ../../include/taxonomy.php:409 +#: ../../include/contact_widgets.php:96 ../../include/contact_widgets.php:139 +#: ../../include/contact_widgets.php:184 ../../include/taxonomy.php:409 #: ../../include/taxonomy.php:491 ../../include/taxonomy.php:511 #: ../../include/taxonomy.php:532 msgid "Categories" @@ -9110,8 +9190,8 @@ msgstr "" #: ../../Zotlabs/Widget/Appcategories.php:46 ../../Zotlabs/Widget/Filer.php:31 #: ../../widget/Netselect/Netselect.php:26 ../../include/contact_widgets.php:56 -#: ../../include/contact_widgets.php:100 ../../include/contact_widgets.php:144 -#: ../../include/contact_widgets.php:189 +#: ../../include/contact_widgets.php:99 ../../include/contact_widgets.php:142 +#: ../../include/contact_widgets.php:187 msgid "Everything" msgstr "" @@ -9180,71 +9260,67 @@ msgctxt "widget" msgid "Activity" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:26 -msgid "Personal Posts" -msgstr "" - -#: ../../Zotlabs/Widget/Activity_filter.php:30 -msgid "Show posts that mention or involve me" +#: ../../Zotlabs/Widget/Activity_filter.php:36 +#, php-format +msgid "Show posts related to the %s privacy group" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:41 -msgid "Starred Posts" +#: ../../Zotlabs/Widget/Activity_filter.php:45 +msgid "Show my privacy groups" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:45 -msgid "Show posts that I have starred" +#: ../../Zotlabs/Widget/Activity_filter.php:66 +msgid "Show posts to this forum" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:65 -#, php-format -msgid "Show posts related to the %s privacy group" +#: ../../Zotlabs/Widget/Activity_filter.php:77 +msgid "Show forums" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:74 -msgid "Show my privacy groups" +#: ../../Zotlabs/Widget/Activity_filter.php:91 +msgid "Starred Posts" msgstr "" #: ../../Zotlabs/Widget/Activity_filter.php:95 -msgid "Show posts to this forum" +msgid "Show posts that I have starred" msgstr "" #: ../../Zotlabs/Widget/Activity_filter.php:106 -msgid "Show forums" +msgid "Personal Posts" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:130 +#: ../../Zotlabs/Widget/Activity_filter.php:110 +msgid "Show posts that mention or involve me" +msgstr "" + +#: ../../Zotlabs/Widget/Activity_filter.php:131 #, php-format msgid "Show posts that I have filed to %s" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:136 +#: ../../Zotlabs/Widget/Activity_filter.php:137 #: ../../Zotlabs/Widget/Filer.php:28 ../../include/contact_widgets.php:53 #: ../../include/features.php:325 msgid "Saved Folders" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:140 +#: ../../Zotlabs/Widget/Activity_filter.php:141 msgid "Show filed post categories" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:154 +#: ../../Zotlabs/Widget/Activity_filter.php:155 msgid "Panel search" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:164 -#: ../../Zotlabs/Widget/Notifications.php:27 -#: ../../Zotlabs/Widget/Notifications.php:46 -#: ../../Zotlabs/Widget/Notifications.php:122 -#: ../../Zotlabs/Widget/Notifications.php:153 +#: ../../Zotlabs/Widget/Activity_filter.php:165 msgid "Filter by name" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:179 +#: ../../Zotlabs/Widget/Activity_filter.php:180 msgid "Remove active filter" msgstr "" -#: ../../Zotlabs/Widget/Activity_filter.php:195 +#: ../../Zotlabs/Widget/Activity_filter.php:196 msgid "Stream Filters" msgstr "" @@ -9318,7 +9394,7 @@ msgstr "" msgid "Page name" msgstr "" -#: ../../Zotlabs/Widget/Affinity.php:45 +#: ../../Zotlabs/Widget/Affinity.php:54 msgid "Refresh" msgstr "" @@ -9467,15 +9543,11 @@ msgstr "" msgid "Channel settings" msgstr "" -#: ../../Zotlabs/Widget/Settings_menu.php:47 +#: ../../Zotlabs/Widget/Settings_menu.php:46 msgid "Display settings" msgstr "" #: ../../Zotlabs/Widget/Settings_menu.php:53 -msgid "Addon settings" -msgstr "" - -#: ../../Zotlabs/Widget/Settings_menu.php:60 msgid "Manage locations" msgstr "" @@ -9505,6 +9577,13 @@ msgstr "" msgid "Show new posts only" msgstr "" +#: ../../Zotlabs/Widget/Notifications.php:27 +#: ../../Zotlabs/Widget/Notifications.php:46 +#: ../../Zotlabs/Widget/Notifications.php:122 +#: ../../Zotlabs/Widget/Notifications.php:153 +msgid "Filter by name or address" +msgstr "" + #: ../../Zotlabs/Widget/Notifications.php:35 msgid "New Home Activity" msgstr "" @@ -9611,67 +9690,67 @@ msgstr "" msgid "Network/Protocol" msgstr "" -#: ../../widget/Netselect/Netselect.php:28 ../../include/network.php:1782 +#: ../../widget/Netselect/Netselect.php:28 ../../include/network.php:1724 msgid "Zot" msgstr "" -#: ../../widget/Netselect/Netselect.php:31 ../../include/network.php:1780 +#: ../../widget/Netselect/Netselect.php:31 ../../include/network.php:1722 msgid "Diaspora" msgstr "" -#: ../../widget/Netselect/Netselect.php:33 ../../include/network.php:1773 -#: ../../include/network.php:1774 +#: ../../widget/Netselect/Netselect.php:33 ../../include/network.php:1715 +#: ../../include/network.php:1716 msgid "Friendica" msgstr "" -#: ../../widget/Netselect/Netselect.php:38 ../../include/network.php:1775 +#: ../../widget/Netselect/Netselect.php:38 ../../include/network.php:1717 msgid "OStatus" msgstr "" -#: ../../boot.php:1604 +#: ../../boot.php:1608 msgid "Create an account to access services and applications" msgstr "" -#: ../../boot.php:1624 ../../include/nav.php:103 ../../include/nav.php:132 +#: ../../boot.php:1628 ../../include/nav.php:103 ../../include/nav.php:132 #: ../../include/nav.php:151 msgid "Logout" msgstr "" -#: ../../boot.php:1628 +#: ../../boot.php:1632 msgid "Login/Email" msgstr "" -#: ../../boot.php:1629 +#: ../../boot.php:1633 msgid "Password" msgstr "" -#: ../../boot.php:1630 +#: ../../boot.php:1634 msgid "Remember me" msgstr "" -#: ../../boot.php:1633 +#: ../../boot.php:1637 msgid "Forgot your password?" msgstr "" -#: ../../boot.php:2431 +#: ../../boot.php:2433 #, php-format msgid "[$Projectname] Website SSL error for %s" msgstr "" -#: ../../boot.php:2436 +#: ../../boot.php:2438 msgid "Website SSL certificate is not valid. Please correct." msgstr "" -#: ../../boot.php:2552 +#: ../../boot.php:2554 #, php-format msgid "[$Projectname] Cron tasks not running on %s" msgstr "" -#: ../../boot.php:2557 +#: ../../boot.php:2559 msgid "Cron/Scheduled tasks not running." msgstr "" -#: ../../boot.php:2558 ../../include/datetime.php:238 +#: ../../boot.php:2560 ../../include/datetime.php:238 msgid "never" msgstr "" @@ -9803,7 +9882,7 @@ msgstr "" msgid "Errors encountered deleting database table " msgstr "" -#: ../../addon/rendezvous/rendezvous.php:95 ../../addon/twitter/twitter.php:782 +#: ../../addon/rendezvous/rendezvous.php:95 ../../addon/twitter/twitter.php:612 msgid "Submit Settings" msgstr "" @@ -9928,15 +10007,23 @@ msgstr "" msgid "You have no rendezvous. Press the button above to create a rendezvous!" msgstr "" -#: ../../addon/skeleton/skeleton.php:59 +#: ../../addon/skeleton/Mod_Skeleton.php:32 +msgid "Skeleton App" +msgstr "" + +#: ../../addon/skeleton/Mod_Skeleton.php:33 +msgid "A skeleton for addons, you can copy/paste" +msgstr "" + +#: ../../addon/skeleton/Mod_Skeleton.php:40 msgid "Some setting" msgstr "" -#: ../../addon/skeleton/skeleton.php:61 +#: ../../addon/skeleton/Mod_Skeleton.php:40 msgid "A setting" msgstr "" -#: ../../addon/skeleton/skeleton.php:64 +#: ../../addon/skeleton/Mod_Skeleton.php:48 msgid "Skeleton Settings" msgstr "" @@ -9947,6 +10034,10 @@ msgid "" "locations." msgstr "" +#: ../../addon/gnusoc/Mod_Gnusoc.php:22 +msgid "GNU-Social Protocol App" +msgstr "" + #: ../../addon/gnusoc/Mod_Gnusoc.php:34 msgid "GNU-Social Protocol" msgstr "" @@ -9960,16 +10051,21 @@ msgstr "" msgid "%1$s is now following %2$s" msgstr "" -#: ../../addon/planets/planets.php:121 -msgid "Planets Settings updated." +#: ../../addon/planets/Mod_Planets.php:20 +#: ../../addon/planets/Mod_Planets.php:23 +msgid "Random Planet App" msgstr "" -#: ../../addon/planets/planets.php:149 -msgid "Enable Planets Plugin" +#: ../../addon/planets/Mod_Planets.php:23 +#: ../../addon/rainbowtag/Mod_Rainbowtag.php:26 +#: ../../addon/nsabait/Mod_Nsabait.php:24 ../../addon/hsse/Mod_Hsse.php:26 +#: ../../addon/authchoose/Mod_Authchoose.php:33 +msgid "Installed" msgstr "" -#: ../../addon/planets/planets.php:153 -msgid "Planets Settings" +#: ../../addon/planets/Mod_Planets.php:25 +msgid "" +"Set a random planet from the Star Wars Empire as your location when posting" msgstr "" #: ../../addon/openclipatar/openclipatar.php:50 @@ -10001,7 +10097,7 @@ msgstr "" msgid "Page to load after image selection." msgstr "" -#: ../../addon/openclipatar/openclipatar.php:58 ../../include/channel.php:1307 +#: ../../addon/openclipatar/openclipatar.php:58 ../../include/channel.php:1356 #: ../../include/nav.php:111 msgid "Edit Profile" msgstr "" @@ -10090,10 +10186,97 @@ msgid "" "view" msgstr "" +#: ../../addon/totp/Settings/Totp.php:90 +msgid "" +"You haven't set a TOTP secret yet.\n" +"Please click the button below to generate one and register this site\n" +"with your preferred authenticator app." +msgstr "" + +#: ../../addon/totp/Settings/Totp.php:93 +msgid "Your TOTP secret is" +msgstr "" + +#: ../../addon/totp/Settings/Totp.php:94 +msgid "" +"Be sure to save it somewhere in case you lose or replace your mobile " +"device.\n" +"Use your mobile device to scan the QR code below to register this site\n" +"with your preferred authenticator app." +msgstr "" + +#: ../../addon/totp/Settings/Totp.php:99 +msgid "Test" +msgstr "" + +#: ../../addon/totp/Settings/Totp.php:100 +msgid "Generate New Secret" +msgstr "" + +#: ../../addon/totp/Settings/Totp.php:101 +msgid "Go" +msgstr "" + +#: ../../addon/totp/Settings/Totp.php:102 +msgid "Enter your password" +msgstr "" + +#: ../../addon/totp/Settings/Totp.php:103 +msgid "enter TOTP code from your device" +msgstr "" + +#: ../../addon/totp/Settings/Totp.php:104 +msgid "Pass!" +msgstr "" + +#: ../../addon/totp/Settings/Totp.php:105 +msgid "Fail" +msgstr "" + +#: ../../addon/totp/Settings/Totp.php:106 +msgid "Incorrect password, try again." +msgstr "" + +#: ../../addon/totp/Settings/Totp.php:107 +msgid "Record your new TOTP secret and rescan the QR code above." +msgstr "" + +#: ../../addon/totp/Settings/Totp.php:115 +msgid "TOTP Settings" +msgstr "" + +#: ../../addon/totp/Mod_Totp.php:23 +msgid "TOTP Two-Step Verification" +msgstr "" + +#: ../../addon/totp/Mod_Totp.php:24 +msgid "Enter the 2-step verification generated by your authenticator app:" +msgstr "" + +#: ../../addon/totp/Mod_Totp.php:25 +msgid "Success!" +msgstr "" + +#: ../../addon/totp/Mod_Totp.php:26 +msgid "Invalid code, please try again." +msgstr "" + +#: ../../addon/totp/Mod_Totp.php:27 +msgid "Too many invalid codes..." +msgstr "" + +#: ../../addon/totp/Mod_Totp.php:28 +msgid "Verify" +msgstr "" + #: ../../addon/wppost/Mod_Wppost.php:28 msgid "Wordpress Settings saved." msgstr "" +#: ../../addon/wppost/Mod_Wppost.php:41 +msgid "Wordpress Post App" +msgstr "" + #: ../../addon/wppost/Mod_Wppost.php:42 msgid "Post to WordPress or anything else which uses the wordpress XMLRPC API" msgstr "" @@ -10151,6 +10334,10 @@ msgstr "" msgid "NSFW Settings saved." msgstr "" +#: ../../addon/nsfw/Mod_Nsfw.php:33 +msgid "NSFW App" +msgstr "" + #: ../../addon/nsfw/Mod_Nsfw.php:34 msgid "Collapse content that contains predefined words" msgstr "" @@ -10177,56 +10364,80 @@ msgstr "" msgid "NSFW" msgstr "" -#: ../../addon/ijpost/ijpost.php:42 -msgid "Post to Insanejournal" +#: ../../addon/queueworker/Mod_Queueworker.php:73 +msgid "Max queueworker threads" +msgstr "" + +#: ../../addon/queueworker/Mod_Queueworker.php:87 +msgid "Assume workers dead after ___ seconds" +msgstr "" + +#: ../../addon/queueworker/Mod_Queueworker.php:99 +msgid "Queueworker Settings" +msgstr "" + +#: ../../addon/ijpost/Mod_Ijpost.php:23 +msgid "Insane Journal Crosspost Connector Settings saved." +msgstr "" + +#: ../../addon/ijpost/Mod_Ijpost.php:35 +msgid "Insane Journal Crosspost Connector App" msgstr "" -#: ../../addon/ijpost/ijpost.php:73 -msgid "Enable InsaneJournal Post Plugin" +#: ../../addon/ijpost/Mod_Ijpost.php:36 +msgid "Relay public postings to Insane Journal" msgstr "" -#: ../../addon/ijpost/ijpost.php:77 +#: ../../addon/ijpost/Mod_Ijpost.php:53 msgid "InsaneJournal username" msgstr "" -#: ../../addon/ijpost/ijpost.php:81 +#: ../../addon/ijpost/Mod_Ijpost.php:57 msgid "InsaneJournal password" msgstr "" -#: ../../addon/ijpost/ijpost.php:85 +#: ../../addon/ijpost/Mod_Ijpost.php:61 msgid "Post to InsaneJournal by default" msgstr "" -#: ../../addon/ijpost/ijpost.php:89 -msgid "InsaneJournal Post Settings" +#: ../../addon/ijpost/Mod_Ijpost.php:69 +msgid "Insane Journal Crosspost Connector" msgstr "" -#: ../../addon/ijpost/ijpost.php:104 -msgid "Insane Journal Settings saved." +#: ../../addon/ijpost/ijpost.php:45 +msgid "Post to Insane Journal" msgstr "" -#: ../../addon/dwpost/dwpost.php:42 +#: ../../addon/dwpost/dwpost.php:48 msgid "Post to Dreamwidth" msgstr "" -#: ../../addon/dwpost/dwpost.php:73 -msgid "Enable Dreamwidth Post Plugin" +#: ../../addon/dwpost/Mod_Dwpost.php:24 +msgid "Dreamwidth Crosspost Connector Settings saved." +msgstr "" + +#: ../../addon/dwpost/Mod_Dwpost.php:36 +msgid "Dreamwidth Crosspost Connector App" +msgstr "" + +#: ../../addon/dwpost/Mod_Dwpost.php:37 +msgid "Relay public postings to Dreamwidth" msgstr "" -#: ../../addon/dwpost/dwpost.php:77 +#: ../../addon/dwpost/Mod_Dwpost.php:52 msgid "Dreamwidth username" msgstr "" -#: ../../addon/dwpost/dwpost.php:81 +#: ../../addon/dwpost/Mod_Dwpost.php:56 msgid "Dreamwidth password" msgstr "" -#: ../../addon/dwpost/dwpost.php:85 +#: ../../addon/dwpost/Mod_Dwpost.php:60 msgid "Post to Dreamwidth by default" msgstr "" -#: ../../addon/dwpost/dwpost.php:89 -msgid "Dreamwidth Post Settings" +#: ../../addon/dwpost/Mod_Dwpost.php:68 +msgid "Dreamwidth Crosspost Connector" msgstr "" #: ../../addon/notifyadmin/notifyadmin.php:34 @@ -10360,68 +10571,72 @@ msgstr "" msgid "0 or blank to import all available" msgstr "" -#: ../../addon/irc/irc.php:45 -msgid "Channels to auto connect" +#: ../../addon/irc/Mod_Irc.php:23 ../../addon/irc/irc.php:41 +msgid "Popular Channels" msgstr "" -#: ../../addon/irc/irc.php:45 ../../addon/irc/irc.php:49 -msgid "Comma separated list" +#: ../../addon/irc/irc.php:37 +msgid "Channels to auto connect" msgstr "" -#: ../../addon/irc/irc.php:49 ../../addon/irc/irc.php:96 -msgid "Popular Channels" +#: ../../addon/irc/irc.php:37 ../../addon/irc/irc.php:41 +msgid "Comma separated list" msgstr "" -#: ../../addon/irc/irc.php:53 +#: ../../addon/irc/irc.php:45 msgid "IRC Settings" msgstr "" -#: ../../addon/irc/irc.php:69 +#: ../../addon/irc/irc.php:54 msgid "IRC settings saved." msgstr "" -#: ../../addon/irc/irc.php:74 +#: ../../addon/irc/irc.php:58 msgid "IRC Chatroom" msgstr "" -#: ../../addon/gallery/gallery.php:47 ../../addon/gallery/Mod_Gallery.php:115 +#: ../../addon/gallery/gallery.php:38 ../../addon/gallery/Mod_Gallery.php:135 msgid "Gallery" msgstr "" -#: ../../addon/gallery/gallery.php:50 +#: ../../addon/gallery/gallery.php:41 msgid "Photo Gallery" msgstr "" -#: ../../addon/gallery/Mod_Gallery.php:57 +#: ../../addon/gallery/Mod_Gallery.php:58 +msgid "Gallery App" +msgstr "" + +#: ../../addon/gallery/Mod_Gallery.php:59 msgid "A simple gallery for your photo albums" msgstr "" -#: ../../addon/ljpost/ljpost.php:42 -msgid "Post to LiveJournal" +#: ../../addon/ljpost/Mod_Ljpost.php:36 +msgid "Livejournal Crosspost Connector App" msgstr "" -#: ../../addon/ljpost/ljpost.php:70 -msgid "Enable LiveJournal Post Plugin" +#: ../../addon/ljpost/Mod_Ljpost.php:37 +msgid "Relay public posts to Livejournal" msgstr "" -#: ../../addon/ljpost/ljpost.php:74 -msgid "LiveJournal username" +#: ../../addon/ljpost/Mod_Ljpost.php:54 +msgid "Livejournal username" msgstr "" -#: ../../addon/ljpost/ljpost.php:78 -msgid "LiveJournal password" +#: ../../addon/ljpost/Mod_Ljpost.php:58 +msgid "Livejournal password" msgstr "" -#: ../../addon/ljpost/ljpost.php:82 -msgid "Post to LiveJournal by default" +#: ../../addon/ljpost/Mod_Ljpost.php:62 +msgid "Post to Livejournal by default" msgstr "" -#: ../../addon/ljpost/ljpost.php:86 -msgid "LiveJournal Post Settings" +#: ../../addon/ljpost/Mod_Ljpost.php:70 +msgid "Livejournal Crosspost Connector" msgstr "" -#: ../../addon/ljpost/ljpost.php:101 -msgid "LiveJournal Settings saved." +#: ../../addon/ljpost/ljpost.php:45 +msgid "Post to Livejournal" msgstr "" #: ../../addon/openid/openid.php:49 @@ -10442,7 +10657,7 @@ msgstr "" msgid "Last Name" msgstr "" -#: ../../addon/openid/MysqlProvider.php:54 ../../addon/redred/redred.php:111 +#: ../../addon/openid/MysqlProvider.php:54 ../../addon/redred/Mod_Redred.php:75 msgid "Nickname" msgstr "" @@ -10503,12 +10718,12 @@ msgid "Login failed." msgstr "" #: ../../addon/openid/Mod_Id.php:85 ../../include/selectors.php:60 -#: ../../include/selectors.php:77 ../../include/channel.php:1487 +#: ../../include/selectors.php:77 ../../include/channel.php:1536 msgid "Male" msgstr "" #: ../../addon/openid/Mod_Id.php:87 ../../include/selectors.php:60 -#: ../../include/selectors.php:77 ../../include/channel.php:1485 +#: ../../include/selectors.php:77 ../../include/channel.php:1534 msgid "Female" msgstr "" @@ -10528,6 +10743,10 @@ msgstr "" msgid "<blush>" msgstr "" +#: ../../addon/startpage/Mod_Startpage.php:50 +msgid "Startpage App" +msgstr "" + #: ../../addon/startpage/Mod_Startpage.php:51 msgid "Set a preferred page to load on login from home page" msgstr "" @@ -10699,6 +10918,11 @@ msgstr "" msgid "declared undying love for" msgstr "" +#: ../../addon/diaspora/Receiver.php:1495 +#, php-format +msgid "%1$s dislikes %2$s's %3$s" +msgstr "" + #: ../../addon/diaspora/Mod_Diaspora.php:40 msgid "Diaspora Protocol Settings updated." msgstr "" @@ -10710,6 +10934,10 @@ msgid "" "locations." msgstr "" +#: ../../addon/diaspora/Mod_Diaspora.php:55 +msgid "Diaspora Protocol App" +msgstr "" + #: ../../addon/diaspora/Mod_Diaspora.php:74 msgid "Allow any Diaspora member to comment on your public posts" msgstr "" @@ -10734,10 +10962,36 @@ msgstr "" msgid "No username found in import file." msgstr "" -#: ../../addon/diaspora/import_diaspora.php:43 ../../include/import.php:72 +#: ../../addon/diaspora/import_diaspora.php:43 ../../include/import.php:73 msgid "Unable to create a unique channel address. Import failed." msgstr "" +#: ../../addon/photocache/Mod_Photocache.php:27 +msgid "Photo Cache settings saved." +msgstr "" + +#: ../../addon/photocache/Mod_Photocache.php:36 +msgid "" +"Photo Cache addon saves a copy of images from external sites locally to " +"increase your anonymity in the web." +msgstr "" + +#: ../../addon/photocache/Mod_Photocache.php:42 +msgid "Photo Cache App" +msgstr "" + +#: ../../addon/photocache/Mod_Photocache.php:53 +msgid "Minimal photo size for caching" +msgstr "" + +#: ../../addon/photocache/Mod_Photocache.php:55 +msgid "In pixels. From 1 up to 1024, 0 will be replaced with system default." +msgstr "" + +#: ../../addon/photocache/Mod_Photocache.php:64 +msgid "Photo Cache" +msgstr "" + #: ../../addon/testdrive/testdrive.php:104 #, php-format msgid "Your account on %s will expire in a few days." @@ -10751,6 +11005,11 @@ msgstr "" msgid "Add some colour to tag clouds" msgstr "" +#: ../../addon/rainbowtag/Mod_Rainbowtag.php:21 +#: ../../addon/rainbowtag/Mod_Rainbowtag.php:26 +msgid "Rainbow Tag App" +msgstr "" + #: ../../addon/rainbowtag/Mod_Rainbowtag.php:34 msgid "Rainbow Tag" msgstr "" @@ -10807,7 +11066,7 @@ msgid "" msgstr "" #: ../../addon/gravatar/gravatar.php:150 ../../addon/msgfooter/msgfooter.php:46 -#: ../../addon/xmpp/xmpp.php:91 +#: ../../addon/xmpp/xmpp.php:43 msgid "Save Settings" msgstr "" @@ -10851,45 +11110,25 @@ msgstr "" msgid "Until modified date yyyy-mm-dd" msgstr "" -#: ../../addon/visage/visage.php:93 -msgid "Recent Channel/Profile Viewers" -msgstr "" - -#: ../../addon/visage/visage.php:98 -msgid "This plugin/addon has not been configured." +#: ../../addon/visage/Mod_Visage.php:21 +msgid "Who viewed my channel/profile" msgstr "" -#: ../../addon/visage/visage.php:99 -#, php-format -msgid "Please visit the Visage settings on %s" -msgstr "" - -#: ../../addon/visage/visage.php:99 -msgid "your feature settings page" +#: ../../addon/visage/Mod_Visage.php:25 +msgid "Recent Channel/Profile Viewers" msgstr "" -#: ../../addon/visage/visage.php:112 +#: ../../addon/visage/Mod_Visage.php:36 msgid "No entries." msgstr "" -#: ../../addon/visage/visage.php:166 -msgid "Enable Visage Visitor Logging" -msgstr "" - -#: ../../addon/visage/visage.php:170 -msgid "Visage Settings" -msgstr "" - -#: ../../addon/nsabait/nsabait.php:125 -msgid "Nsabait Settings updated." -msgstr "" - -#: ../../addon/nsabait/nsabait.php:157 -msgid "Enable NSAbait Plugin" +#: ../../addon/nsabait/Mod_Nsabait.php:20 +#: ../../addon/nsabait/Mod_Nsabait.php:24 +msgid "NSA Bait App" msgstr "" -#: ../../addon/nsabait/nsabait.php:161 -msgid "NSAbait Settings" +#: ../../addon/nsabait/Mod_Nsabait.php:26 +msgid "Make yourself a political target" msgstr "" #: ../../addon/mailtest/mailtest.php:19 @@ -10924,40 +11163,40 @@ msgstr "" msgid "View Larger" msgstr "" -#: ../../addon/openstreetmap/openstreetmap.php:169 +#: ../../addon/openstreetmap/openstreetmap.php:170 msgid "Tile Server URL" msgstr "" -#: ../../addon/openstreetmap/openstreetmap.php:169 +#: ../../addon/openstreetmap/openstreetmap.php:170 msgid "" "A list of <a href=\"http://wiki.openstreetmap.org/wiki/TMS\" target=\"_blank" "\">public tile servers</a>" msgstr "" -#: ../../addon/openstreetmap/openstreetmap.php:170 +#: ../../addon/openstreetmap/openstreetmap.php:171 msgid "Nominatim (reverse geocoding) Server URL" msgstr "" -#: ../../addon/openstreetmap/openstreetmap.php:170 +#: ../../addon/openstreetmap/openstreetmap.php:171 msgid "" "A list of <a href=\"http://wiki.openstreetmap.org/wiki/Nominatim\" target=" "\"_blank\">Nominatim servers</a>" msgstr "" -#: ../../addon/openstreetmap/openstreetmap.php:171 +#: ../../addon/openstreetmap/openstreetmap.php:172 msgid "Default zoom" msgstr "" -#: ../../addon/openstreetmap/openstreetmap.php:171 +#: ../../addon/openstreetmap/openstreetmap.php:172 msgid "" "The default zoom level. (1:world, 18:highest, also depends on tile server)" msgstr "" -#: ../../addon/openstreetmap/openstreetmap.php:172 +#: ../../addon/openstreetmap/openstreetmap.php:173 msgid "Include marker on map" msgstr "" -#: ../../addon/openstreetmap/openstreetmap.php:172 +#: ../../addon/openstreetmap/openstreetmap.php:173 msgid "Include a marker on the map." msgstr "" @@ -10965,120 +11204,128 @@ msgstr "" msgid "text to include in all outgoing posts from this site" msgstr "" -#: ../../addon/fuzzloc/fuzzloc.php:148 +#: ../../addon/fuzzloc/Mod_Fuzzloc.php:22 msgid "Fuzzloc Settings updated." msgstr "" -#: ../../addon/fuzzloc/fuzzloc.php:175 -msgid "" -"Fuzzloc allows you to blur your precise location if your channel uses " -"browser location mapping." +#: ../../addon/fuzzloc/Mod_Fuzzloc.php:34 +msgid "Fuzzy Location App" msgstr "" -#: ../../addon/fuzzloc/fuzzloc.php:178 -msgid "Enable Fuzzloc Plugin" +#: ../../addon/fuzzloc/Mod_Fuzzloc.php:35 +msgid "" +"Blur your precise location if your channel uses browser location mapping" msgstr "" -#: ../../addon/fuzzloc/fuzzloc.php:182 +#: ../../addon/fuzzloc/Mod_Fuzzloc.php:40 msgid "Minimum offset in meters" msgstr "" -#: ../../addon/fuzzloc/fuzzloc.php:186 +#: ../../addon/fuzzloc/Mod_Fuzzloc.php:44 msgid "Maximum offset in meters" msgstr "" -#: ../../addon/fuzzloc/fuzzloc.php:191 -msgid "Fuzzloc Settings" +#: ../../addon/fuzzloc/Mod_Fuzzloc.php:53 +msgid "Fuzzy Location" msgstr "" -#: ../../addon/rtof/rtof.php:45 +#: ../../addon/rtof/rtof.php:51 msgid "Post to Friendica" msgstr "" -#: ../../addon/rtof/rtof.php:62 -msgid "rtof Settings saved." +#: ../../addon/rtof/Mod_Rtof.php:24 +msgid "Friendica Crosspost Connector Settings saved." +msgstr "" + +#: ../../addon/rtof/Mod_Rtof.php:36 +msgid "Friendica Crosspost Connector App" msgstr "" -#: ../../addon/rtof/rtof.php:81 -msgid "Allow posting to Friendica" +#: ../../addon/rtof/Mod_Rtof.php:37 +msgid "Relay public postings to a connected Friendica account" msgstr "" -#: ../../addon/rtof/rtof.php:85 +#: ../../addon/rtof/Mod_Rtof.php:49 msgid "Send public postings to Friendica by default" msgstr "" -#: ../../addon/rtof/rtof.php:89 +#: ../../addon/rtof/Mod_Rtof.php:53 msgid "Friendica API Path" msgstr "" -#: ../../addon/rtof/rtof.php:89 ../../addon/redred/redred.php:103 +#: ../../addon/rtof/Mod_Rtof.php:53 ../../addon/redred/Mod_Redred.php:67 msgid "https://{sitename}/api" msgstr "" -#: ../../addon/rtof/rtof.php:93 +#: ../../addon/rtof/Mod_Rtof.php:57 msgid "Friendica login name" msgstr "" -#: ../../addon/rtof/rtof.php:97 +#: ../../addon/rtof/Mod_Rtof.php:61 msgid "Friendica password" msgstr "" -#: ../../addon/rtof/rtof.php:101 -msgid "Hubzilla to Friendica Post Settings" +#: ../../addon/rtof/Mod_Rtof.php:69 +msgid "Friendica Crosspost Connector" msgstr "" -#: ../../addon/jappixmini/jappixmini.php:305 ../../include/channel.php:1403 -#: ../../include/channel.php:1574 -msgid "Status:" +#: ../../addon/jappixmini/Mod_Jappixmini.php:96 +msgid "Jappixmini App" +msgstr "" + +#: ../../addon/jappixmini/Mod_Jappixmini.php:97 +msgid "Provides a Facebook-like chat using Jappix Mini" msgstr "" -#: ../../addon/jappixmini/jappixmini.php:309 -msgid "Activate addon" +#: ../../addon/jappixmini/Mod_Jappixmini.php:157 ../../include/channel.php:1452 +#: ../../include/channel.php:1623 +msgid "Status:" msgstr "" -#: ../../addon/jappixmini/jappixmini.php:313 +#: ../../addon/jappixmini/Mod_Jappixmini.php:161 msgid "Hide Jappixmini Chat-Widget from the webinterface" msgstr "" -#: ../../addon/jappixmini/jappixmini.php:318 +#: ../../addon/jappixmini/Mod_Jappixmini.php:166 msgid "Jabber username" msgstr "" -#: ../../addon/jappixmini/jappixmini.php:324 +#: ../../addon/jappixmini/Mod_Jappixmini.php:172 msgid "Jabber server" msgstr "" -#: ../../addon/jappixmini/jappixmini.php:330 +#: ../../addon/jappixmini/Mod_Jappixmini.php:178 msgid "Jabber BOSH host URL" msgstr "" -#: ../../addon/jappixmini/jappixmini.php:337 +#: ../../addon/jappixmini/Mod_Jappixmini.php:185 msgid "Jabber password" msgstr "" -#: ../../addon/jappixmini/jappixmini.php:343 +#: ../../addon/jappixmini/Mod_Jappixmini.php:191 msgid "Encrypt Jabber password with Hubzilla password" msgstr "" -#: ../../addon/jappixmini/jappixmini.php:347 ../../addon/redred/redred.php:115 +#: ../../addon/jappixmini/Mod_Jappixmini.php:195 +#: ../../addon/redred/Mod_Redred.php:79 msgid "Hubzilla password" msgstr "" -#: ../../addon/jappixmini/jappixmini.php:351 -#: ../../addon/jappixmini/jappixmini.php:355 +#: ../../addon/jappixmini/Mod_Jappixmini.php:199 +#: ../../addon/jappixmini/Mod_Jappixmini.php:203 msgid "Approve subscription requests from Hubzilla contacts automatically" msgstr "" -#: ../../addon/jappixmini/jappixmini.php:359 +#: ../../addon/jappixmini/Mod_Jappixmini.php:207 msgid "Purge internal list of jabber addresses of contacts" msgstr "" -#: ../../addon/jappixmini/jappixmini.php:364 +#: ../../addon/jappixmini/Mod_Jappixmini.php:212 msgid "Configuration Help" msgstr "" -#: ../../addon/jappixmini/jappixmini.php:371 -msgid "Jappix Mini Settings" +#: ../../addon/jappixmini/Mod_Jappixmini.php:258 +msgid "Jappixmini Settings" msgstr "" #: ../../addon/upgrade_info/upgrade_info.php:43 @@ -11111,81 +11358,85 @@ msgstr "" msgid "Do not show this again" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:101 -#: ../../addon/channelreputation/channelreputation.php:102 +#: ../../addon/channelreputation/channelreputation.php:98 +#: ../../addon/channelreputation/channelreputation.php:99 #: ../../addon/cart/myshop.php:141 ../../addon/cart/myshop.php:177 #: ../../addon/cart/myshop.php:211 ../../addon/cart/myshop.php:259 #: ../../addon/cart/myshop.php:294 ../../addon/cart/myshop.php:317 msgid "Access Denied" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:109 +#: ../../addon/channelreputation/channelreputation.php:106 msgid "Enable Community Moderation" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:117 +#: ../../addon/channelreputation/channelreputation.php:114 msgid "Reputation automatically given to new members" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:118 +#: ../../addon/channelreputation/channelreputation.php:115 msgid "Reputation will never fall below this value" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:119 +#: ../../addon/channelreputation/channelreputation.php:116 msgid "Minimum reputation before posting is allowed" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:120 +#: ../../addon/channelreputation/channelreputation.php:117 msgid "Minimum reputation before commenting is allowed" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:121 +#: ../../addon/channelreputation/channelreputation.php:118 msgid "Minimum reputation before a member is able to moderate other posts" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:122 +#: ../../addon/channelreputation/channelreputation.php:119 msgid "" "Max ratio of moderator's reputation that can be added to/deducted from " "reputation of person being moderated" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:123 +#: ../../addon/channelreputation/channelreputation.php:120 msgid "Reputation \"cost\" to post" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:124 +#: ../../addon/channelreputation/channelreputation.php:121 msgid "Reputation \"cost\" to comment" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:125 +#: ../../addon/channelreputation/channelreputation.php:122 msgid "" "Reputation automatically recovers at this rate per hour until it reaches " "minimum_to_post" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:126 +#: ../../addon/channelreputation/channelreputation.php:123 msgid "" "When minimum_to_moderate > reputation > minimum_to_post reputation recovers " "at this rate per hour" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:138 +#: ../../addon/channelreputation/channelreputation.php:137 msgid "Community Moderation Settings" msgstr "" -#: ../../addon/channelreputation/channelreputation.php:359 +#: ../../addon/channelreputation/channelreputation.php:365 msgid "Can moderate reputation on my channel." msgstr "" -#: ../../addon/channelreputation/channelreputation.php:544 -#: ../../addon/channelreputation/channelreputation.php:547 +#: ../../addon/channelreputation/channelreputation.php:549 +#: ../../addon/channelreputation/channelreputation.php:552 msgid "Channel Reputation" msgstr "" -#: ../../addon/superblock/superblock.php:318 +#: ../../addon/superblock/superblock.php:337 msgid "Block Completely" msgstr "" +#: ../../addon/superblock/Mod_Superblock.php:20 +msgid "Superblock App" +msgstr "" + #: ../../addon/superblock/Mod_Superblock.php:21 msgid "Block channels" msgstr "" @@ -11202,60 +11453,71 @@ msgstr "" msgid "No channels currently blocked" msgstr "" -#: ../../addon/nofed/nofed.php:42 -msgid "Federate" +#: ../../addon/nofed/Mod_Nofed.php:21 +msgid "nofed Settings saved." msgstr "" -#: ../../addon/nofed/nofed.php:56 -msgid "nofed Settings saved." +#: ../../addon/nofed/Mod_Nofed.php:33 +msgid "No Federation App" msgstr "" -#: ../../addon/nofed/nofed.php:72 -msgid "Allow Federation Toggle" +#: ../../addon/nofed/Mod_Nofed.php:34 +msgid "" +"Prevent posting from being federated to anybody. It will exist only on your " +"channel page." msgstr "" -#: ../../addon/nofed/nofed.php:76 +#: ../../addon/nofed/Mod_Nofed.php:42 msgid "Federate posts by default" msgstr "" -#: ../../addon/nofed/nofed.php:80 -msgid "NoFed Settings" +#: ../../addon/nofed/Mod_Nofed.php:50 +msgid "No Federation" msgstr "" -#: ../../addon/redred/redred.php:45 -msgid "Post to Red" +#: ../../addon/nofed/nofed.php:47 +msgid "Federate" msgstr "" -#: ../../addon/redred/redred.php:60 +#: ../../addon/redred/Mod_Redred.php:24 msgid "Channel is required." msgstr "" -#: ../../addon/redred/redred.php:76 -msgid "redred Settings saved." +#: ../../addon/redred/Mod_Redred.php:38 +msgid "Hubzilla Crosspost Connector Settings saved." +msgstr "" + +#: ../../addon/redred/Mod_Redred.php:50 +#: ../../addon/statusnet/Mod_Statusnet.php:146 +msgid "Hubzilla Crosspost Connector App" msgstr "" -#: ../../addon/redred/redred.php:95 -msgid "Allow posting to another Hubzilla Channel" +#: ../../addon/redred/Mod_Redred.php:51 +msgid "Relay public postings to another Hubzilla channel" msgstr "" -#: ../../addon/redred/redred.php:99 +#: ../../addon/redred/Mod_Redred.php:63 msgid "Send public postings to Hubzilla channel by default" msgstr "" -#: ../../addon/redred/redred.php:103 +#: ../../addon/redred/Mod_Redred.php:67 msgid "Hubzilla API Path" msgstr "" -#: ../../addon/redred/redred.php:107 +#: ../../addon/redred/Mod_Redred.php:71 msgid "Hubzilla login name" msgstr "" -#: ../../addon/redred/redred.php:111 +#: ../../addon/redred/Mod_Redred.php:75 msgid "Hubzilla channel name" msgstr "" -#: ../../addon/redred/redred.php:119 -msgid "Hubzilla Crosspost Settings" +#: ../../addon/redred/Mod_Redred.php:87 +msgid "Hubzilla Crosspost Connector" +msgstr "" + +#: ../../addon/redred/redred.php:50 +msgid "Post to Hubzilla" msgstr "" #: ../../addon/logrot/logrot.php:36 @@ -11298,6 +11560,10 @@ msgstr "" msgid "WYSIWYG status editor" msgstr "" +#: ../../addon/hsse/Mod_Hsse.php:21 ../../addon/hsse/Mod_Hsse.php:26 +msgid "WYSIWYG Status App" +msgstr "" + #: ../../addon/hsse/Mod_Hsse.php:34 msgid "WYSIWYG Status" msgstr "" @@ -11334,35 +11600,35 @@ msgstr "" msgid "Comments disabled" msgstr "" -#: ../../addon/hsse/hsse.php:195 ../../include/conversation.php:1398 +#: ../../addon/hsse/hsse.php:195 ../../include/conversation.php:1401 msgid "Page link name" msgstr "" -#: ../../addon/hsse/hsse.php:198 ../../include/conversation.php:1401 +#: ../../addon/hsse/hsse.php:198 ../../include/conversation.php:1404 msgid "Post as" msgstr "" -#: ../../addon/hsse/hsse.php:212 ../../include/conversation.php:1415 +#: ../../addon/hsse/hsse.php:212 ../../include/conversation.php:1418 msgid "Toggle voting" msgstr "" -#: ../../addon/hsse/hsse.php:215 ../../include/conversation.php:1418 +#: ../../addon/hsse/hsse.php:215 ../../include/conversation.php:1421 msgid "Disable comments" msgstr "" -#: ../../addon/hsse/hsse.php:216 ../../include/conversation.php:1419 +#: ../../addon/hsse/hsse.php:216 ../../include/conversation.php:1422 msgid "Toggle comments" msgstr "" -#: ../../addon/hsse/hsse.php:224 ../../include/conversation.php:1427 +#: ../../addon/hsse/hsse.php:224 ../../include/conversation.php:1430 msgid "Categories (optional, comma-separated list)" msgstr "" -#: ../../addon/hsse/hsse.php:247 ../../include/conversation.php:1450 +#: ../../addon/hsse/hsse.php:247 ../../include/conversation.php:1453 msgid "Other networks and post services" msgstr "" -#: ../../addon/hsse/hsse.php:253 ../../include/conversation.php:1456 +#: ../../addon/hsse/hsse.php:253 ../../include/conversation.php:1459 msgid "Set publish date" msgstr "" @@ -11377,6 +11643,10 @@ msgid "" "locations." msgstr "" +#: ../../addon/pubcrawl/Mod_Pubcrawl.php:40 +msgid "Activitypub Protocol App" +msgstr "" + #: ../../addon/pubcrawl/Mod_Pubcrawl.php:48 msgid "Deliver to ActivityPub recipients in privacy groups" msgstr "" @@ -11407,72 +11677,68 @@ msgstr "" msgid "Project Creator and Tech Lead" msgstr "" -#: ../../addon/donate/donate.php:23 -msgid "Admin, developer, directorymin, support bloke" -msgstr "" - -#: ../../addon/donate/donate.php:50 +#: ../../addon/donate/donate.php:49 msgid "" "And the hundreds of other people and organisations who helped make the " "Hubzilla possible." msgstr "" -#: ../../addon/donate/donate.php:53 +#: ../../addon/donate/donate.php:52 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." msgstr "" -#: ../../addon/donate/donate.php:54 +#: ../../addon/donate/donate.php:53 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>.)" msgstr "" -#: ../../addon/donate/donate.php:55 +#: ../../addon/donate/donate.php:54 msgid "" "Help support our ground-breaking work in decentralisation, web identity, and " "privacy." msgstr "" -#: ../../addon/donate/donate.php:57 +#: ../../addon/donate/donate.php:56 msgid "" "Your donations keep servers and services running and also helps us to " "provide innovative new features and continued development." msgstr "" -#: ../../addon/donate/donate.php:60 +#: ../../addon/donate/donate.php:59 msgid "Donate" msgstr "" -#: ../../addon/donate/donate.php:62 +#: ../../addon/donate/donate.php:61 msgid "" "Choose a project, developer, or public hub to support with a one-time " "donation" msgstr "" -#: ../../addon/donate/donate.php:63 +#: ../../addon/donate/donate.php:62 msgid "Donate Now" msgstr "" -#: ../../addon/donate/donate.php:64 +#: ../../addon/donate/donate.php:63 msgid "" "<strong><em>Or</em></strong> become a project sponsor (Hubzilla Project only)" msgstr "" -#: ../../addon/donate/donate.php:65 +#: ../../addon/donate/donate.php:64 msgid "" "Please indicate if you would like your first name or full name (or nothing) " "to appear in our sponsor listing" msgstr "" -#: ../../addon/donate/donate.php:66 +#: ../../addon/donate/donate.php:65 msgid "Sponsor" msgstr "" -#: ../../addon/donate/donate.php:69 +#: ../../addon/donate/donate.php:68 msgid "Special thanks to: " msgstr "" @@ -11522,128 +11788,137 @@ msgstr "" msgid "Quick Reference" msgstr "" -#: ../../addon/libertree/libertree.php:38 +#: ../../addon/libertree/libertree.php:43 msgid "Post to Libertree" msgstr "" -#: ../../addon/libertree/libertree.php:69 -msgid "Enable Libertree Post Plugin" +#: ../../addon/libertree/Mod_Libertree.php:25 +msgid "Libertree Crosspost Connector Settings saved." +msgstr "" + +#: ../../addon/libertree/Mod_Libertree.php:35 +msgid "Libertree Crosspost Connector App" +msgstr "" + +#: ../../addon/libertree/Mod_Libertree.php:36 +msgid "Relay public posts to Libertree" msgstr "" -#: ../../addon/libertree/libertree.php:73 +#: ../../addon/libertree/Mod_Libertree.php:51 msgid "Libertree API token" msgstr "" -#: ../../addon/libertree/libertree.php:77 +#: ../../addon/libertree/Mod_Libertree.php:55 msgid "Libertree site URL" msgstr "" -#: ../../addon/libertree/libertree.php:81 +#: ../../addon/libertree/Mod_Libertree.php:59 msgid "Post to Libertree by default" msgstr "" -#: ../../addon/libertree/libertree.php:85 -msgid "Libertree Post Settings" +#: ../../addon/libertree/Mod_Libertree.php:67 +msgid "Libertree Crosspost Connector" msgstr "" -#: ../../addon/libertree/libertree.php:99 -msgid "Libertree Settings saved." +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:41 +msgid "Flattr widget settings updated." msgstr "" -#: ../../addon/flattrwidget/flattrwidget.php:45 -msgid "Flattr this!" +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:53 +msgid "Flattr Widget App" msgstr "" -#: ../../addon/flattrwidget/flattrwidget.php:83 -msgid "Flattr widget settings updated." +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:54 +msgid "Add a Flattr button to your channel page" msgstr "" -#: ../../addon/flattrwidget/flattrwidget.php:100 +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:65 msgid "Flattr user" msgstr "" -#: ../../addon/flattrwidget/flattrwidget.php:104 +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:69 msgid "URL of the Thing to flattr" msgstr "" -#: ../../addon/flattrwidget/flattrwidget.php:104 +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:69 msgid "If empty channel URL is used" msgstr "" -#: ../../addon/flattrwidget/flattrwidget.php:108 +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:73 msgid "Title of the Thing to flattr" msgstr "" -#: ../../addon/flattrwidget/flattrwidget.php:108 +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:73 msgid "If empty \"channel name on The Hubzilla\" will be used" msgstr "" -#: ../../addon/flattrwidget/flattrwidget.php:112 +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:77 msgid "Static or dynamic flattr button" msgstr "" -#: ../../addon/flattrwidget/flattrwidget.php:112 +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:77 msgid "static" msgstr "" -#: ../../addon/flattrwidget/flattrwidget.php:112 +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:77 msgid "dynamic" msgstr "" -#: ../../addon/flattrwidget/flattrwidget.php:116 +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:81 msgid "Alignment of the widget" msgstr "" -#: ../../addon/flattrwidget/flattrwidget.php:116 +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:81 msgid "left" msgstr "" -#: ../../addon/flattrwidget/flattrwidget.php:116 +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:81 msgid "right" msgstr "" -#: ../../addon/flattrwidget/flattrwidget.php:120 -msgid "Enable Flattr widget" +#: ../../addon/flattrwidget/Mod_Flattrwidget.php:89 +msgid "Flattr Widget" msgstr "" -#: ../../addon/flattrwidget/flattrwidget.php:124 -msgid "Flattr Widget Settings" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:143 -msgid "Post to GNU social" +#: ../../addon/flattrwidget/flattrwidget.php:50 +msgid "Flattr this!" msgstr "" -#: ../../addon/statusnet/statusnet.php:195 +#: ../../addon/statusnet/Mod_Statusnet.php:61 msgid "" "Please contact your site administrator.<br />The provided API URL is not " "valid." msgstr "" -#: ../../addon/statusnet/statusnet.php:232 +#: ../../addon/statusnet/Mod_Statusnet.php:98 msgid "We could not contact the GNU social API with the Path you entered." msgstr "" -#: ../../addon/statusnet/statusnet.php:266 +#: ../../addon/statusnet/Mod_Statusnet.php:130 msgid "GNU social settings updated." msgstr "" -#: ../../addon/statusnet/statusnet.php:310 +#: ../../addon/statusnet/Mod_Statusnet.php:147 +msgid "" +"Relay public postings to a connected GNU social account (formerly StatusNet)" +msgstr "" + +#: ../../addon/statusnet/Mod_Statusnet.php:181 msgid "Globally Available GNU social OAuthKeys" msgstr "" -#: ../../addon/statusnet/statusnet.php:312 +#: ../../addon/statusnet/Mod_Statusnet.php:183 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 "" -#: ../../addon/statusnet/statusnet.php:327 +#: ../../addon/statusnet/Mod_Statusnet.php:198 msgid "Provide your own OAuth Credentials" msgstr "" -#: ../../addon/statusnet/statusnet.php:329 +#: ../../addon/statusnet/Mod_Statusnet.php:200 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 " @@ -11652,27 +11927,27 @@ msgid "" "Hubzilla installation at your favourite GNU social installation." msgstr "" -#: ../../addon/statusnet/statusnet.php:333 +#: ../../addon/statusnet/Mod_Statusnet.php:204 msgid "OAuth Consumer Key" msgstr "" -#: ../../addon/statusnet/statusnet.php:337 +#: ../../addon/statusnet/Mod_Statusnet.php:208 msgid "OAuth Consumer Secret" msgstr "" -#: ../../addon/statusnet/statusnet.php:341 +#: ../../addon/statusnet/Mod_Statusnet.php:212 msgid "Base API Path" msgstr "" -#: ../../addon/statusnet/statusnet.php:341 +#: ../../addon/statusnet/Mod_Statusnet.php:212 msgid "Remember the trailing /" msgstr "" -#: ../../addon/statusnet/statusnet.php:345 +#: ../../addon/statusnet/Mod_Statusnet.php:216 msgid "GNU social application name" msgstr "" -#: ../../addon/statusnet/statusnet.php:368 +#: ../../addon/statusnet/Mod_Statusnet.php:239 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 " @@ -11680,31 +11955,32 @@ msgid "" "posted to GNU social." msgstr "" -#: ../../addon/statusnet/statusnet.php:370 +#: ../../addon/statusnet/Mod_Statusnet.php:241 msgid "Log in with GNU social" msgstr "" -#: ../../addon/statusnet/statusnet.php:373 +#: ../../addon/statusnet/Mod_Statusnet.php:244 msgid "Copy the security code from GNU social here" msgstr "" -#: ../../addon/statusnet/statusnet.php:383 +#: ../../addon/statusnet/Mod_Statusnet.php:254 msgid "Cancel Connection Process" msgstr "" -#: ../../addon/statusnet/statusnet.php:385 +#: ../../addon/statusnet/Mod_Statusnet.php:256 msgid "Current GNU social API is" msgstr "" -#: ../../addon/statusnet/statusnet.php:389 +#: ../../addon/statusnet/Mod_Statusnet.php:260 msgid "Cancel GNU social Connection" msgstr "" -#: ../../addon/statusnet/statusnet.php:401 ../../addon/twitter/twitter.php:236 +#: ../../addon/statusnet/Mod_Statusnet.php:272 +#: ../../addon/twitter/Mod_Twitter.php:147 msgid "Currently connected to: " msgstr "" -#: ../../addon/statusnet/statusnet.php:406 +#: ../../addon/statusnet/Mod_Statusnet.php:277 msgid "" "<strong>Note</strong>: Due your privacy settings (<em>Hide your profile " "details from unknown viewers?</em>) the link potentially included in public " @@ -11712,39 +11988,34 @@ msgid "" "informing the visitor that the access to your profile has been restricted." msgstr "" -#: ../../addon/statusnet/statusnet.php:411 -msgid "Allow posting to GNU social" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:411 -msgid "" -"If enabled your public postings can be posted to the associated GNU-social " -"account" -msgstr "" - -#: ../../addon/statusnet/statusnet.php:415 +#: ../../addon/statusnet/Mod_Statusnet.php:282 msgid "Post to GNU social by default" msgstr "" -#: ../../addon/statusnet/statusnet.php:415 +#: ../../addon/statusnet/Mod_Statusnet.php:282 msgid "" "If enabled your public postings will be posted to the associated GNU-social " "account by default" msgstr "" -#: ../../addon/statusnet/statusnet.php:424 ../../addon/twitter/twitter.php:264 +#: ../../addon/statusnet/Mod_Statusnet.php:291 +#: ../../addon/twitter/Mod_Twitter.php:171 msgid "Clear OAuth configuration" msgstr "" -#: ../../addon/statusnet/statusnet.php:432 -msgid "GNU social Post Settings" +#: ../../addon/statusnet/Mod_Statusnet.php:303 +msgid "GNU-Social Crosspost Connector" msgstr "" -#: ../../addon/statusnet/statusnet.php:892 +#: ../../addon/statusnet/statusnet.php:145 +msgid "Post to GNU social" +msgstr "" + +#: ../../addon/statusnet/statusnet.php:594 msgid "API URL" msgstr "" -#: ../../addon/statusnet/statusnet.php:895 +#: ../../addon/statusnet/statusnet.php:597 msgid "Application name" msgstr "" @@ -11760,57 +12031,65 @@ msgstr "" msgid "Enter some text" msgstr "" -#: ../../addon/chess/chess.php:353 ../../addon/chess/chess.php:542 +#: ../../addon/chess/Mod_Chess.php:180 ../../addon/chess/Mod_Chess.php:377 msgid "Invalid game." msgstr "" -#: ../../addon/chess/chess.php:359 ../../addon/chess/chess.php:582 +#: ../../addon/chess/Mod_Chess.php:186 ../../addon/chess/Mod_Chess.php:417 msgid "You are not a player in this game." msgstr "" -#: ../../addon/chess/chess.php:415 +#: ../../addon/chess/Mod_Chess.php:242 msgid "You must be a local channel to create a game." msgstr "" -#: ../../addon/chess/chess.php:433 +#: ../../addon/chess/Mod_Chess.php:260 msgid "You must select one opponent that is not yourself." msgstr "" -#: ../../addon/chess/chess.php:444 +#: ../../addon/chess/Mod_Chess.php:271 msgid "Random color chosen." msgstr "" -#: ../../addon/chess/chess.php:452 +#: ../../addon/chess/Mod_Chess.php:279 msgid "Error creating new game." msgstr "" -#: ../../addon/chess/chess.php:486 ../../include/channel.php:1158 +#: ../../addon/chess/Mod_Chess.php:306 ../../include/channel.php:1207 msgid "Requested channel is not available." msgstr "" -#: ../../addon/chess/chess.php:500 +#: ../../addon/chess/Mod_Chess.php:311 ../../addon/chess/Mod_Chess.php:333 +msgid "Chess not installed." +msgstr "" + +#: ../../addon/chess/Mod_Chess.php:326 msgid "You must select a local channel /chess/channelname" msgstr "" -#: ../../addon/chess/chess.php:1066 +#: ../../addon/chess/chess.php:642 msgid "Enable notifications" msgstr "" -#: ../../addon/twitter/twitter.php:102 -msgid "Post to Twitter" +#: ../../addon/twitter/Mod_Twitter.php:65 +msgid "Twitter settings updated." msgstr "" -#: ../../addon/twitter/twitter.php:158 -msgid "Twitter settings updated." +#: ../../addon/twitter/Mod_Twitter.php:78 +msgid "Twitter Crosspost Connector App" msgstr "" -#: ../../addon/twitter/twitter.php:187 +#: ../../addon/twitter/Mod_Twitter.php:79 +msgid "Relay public posts to Twitter" +msgstr "" + +#: ../../addon/twitter/Mod_Twitter.php:103 msgid "" "No consumer key pair for Twitter found. Please contact your site " "administrator." msgstr "" -#: ../../addon/twitter/twitter.php:209 +#: ../../addon/twitter/Mod_Twitter.php:125 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 " @@ -11819,15 +12098,15 @@ msgid "" "be posted to Twitter." msgstr "" -#: ../../addon/twitter/twitter.php:211 +#: ../../addon/twitter/Mod_Twitter.php:127 msgid "Log in with Twitter" msgstr "" -#: ../../addon/twitter/twitter.php:214 +#: ../../addon/twitter/Mod_Twitter.php:130 msgid "Copy the PIN from Twitter here" msgstr "" -#: ../../addon/twitter/twitter.php:241 +#: ../../addon/twitter/Mod_Twitter.php:152 msgid "" "<strong>Note:</strong> Due your privacy settings (<em>Hide your profile " "details from unknown viewers?</em>) the link potentially included in public " @@ -11835,47 +12114,45 @@ msgid "" "the visitor that the access to your profile has been restricted." msgstr "" -#: ../../addon/twitter/twitter.php:246 -msgid "Allow posting to Twitter" -msgstr "" - -#: ../../addon/twitter/twitter.php:246 -msgid "" -"If enabled your public postings can be posted to the associated Twitter " -"account" -msgstr "" - -#: ../../addon/twitter/twitter.php:250 +#: ../../addon/twitter/Mod_Twitter.php:157 msgid "Twitter post length" msgstr "" -#: ../../addon/twitter/twitter.php:250 +#: ../../addon/twitter/Mod_Twitter.php:157 msgid "Maximum tweet length" msgstr "" -#: ../../addon/twitter/twitter.php:255 +#: ../../addon/twitter/Mod_Twitter.php:162 msgid "Send public postings to Twitter by default" msgstr "" -#: ../../addon/twitter/twitter.php:255 +#: ../../addon/twitter/Mod_Twitter.php:162 msgid "" "If enabled your public postings will be posted to the associated Twitter " "account by default" msgstr "" -#: ../../addon/twitter/twitter.php:273 -msgid "Twitter Post Settings" +#: ../../addon/twitter/Mod_Twitter.php:181 +msgid "Twitter Crosspost Connector" +msgstr "" + +#: ../../addon/twitter/twitter.php:107 +msgid "Post to Twitter" +msgstr "" + +#: ../../addon/smileybutton/Mod_Smileybutton.php:35 +msgid "Smileybutton App" msgstr "" -#: ../../addon/smileybutton/smileybutton.php:211 -msgid "Deactivate the feature" +#: ../../addon/smileybutton/Mod_Smileybutton.php:36 +msgid "Adds a smileybutton to the jot editor" msgstr "" -#: ../../addon/smileybutton/smileybutton.php:215 +#: ../../addon/smileybutton/Mod_Smileybutton.php:44 msgid "Hide the button and show the smilies directly." msgstr "" -#: ../../addon/smileybutton/smileybutton.php:219 +#: ../../addon/smileybutton/Mod_Smileybutton.php:52 msgid "Smileybutton Settings" msgstr "" @@ -11891,7 +12168,7 @@ msgstr "" msgid "Base Merchant Currency" msgstr "" -#: ../../addon/cart/Settings/Cart.php:111 ../../addon/cart/cart.php:1262 +#: ../../addon/cart/Settings/Cart.php:111 ../../addon/cart/cart.php:1263 msgid "Cart Settings" msgstr "" @@ -11899,7 +12176,7 @@ msgstr "" msgid "Access Denied." msgstr "" -#: ../../addon/cart/myshop.php:111 ../../addon/cart/cart.php:1330 +#: ../../addon/cart/myshop.php:111 ../../addon/cart/cart.php:1334 msgid "Order Not Found" msgstr "" @@ -11912,53 +12189,53 @@ msgstr "" msgid "DB Cleanup Failure" msgstr "" -#: ../../addon/cart/cart.php:564 +#: ../../addon/cart/cart.php:565 msgid "[cart] Item Added" msgstr "" -#: ../../addon/cart/cart.php:952 +#: ../../addon/cart/cart.php:953 msgid "Order already checked out." msgstr "" -#: ../../addon/cart/cart.php:1255 +#: ../../addon/cart/cart.php:1256 msgid "Drop database tables when uninstalling." msgstr "" -#: ../../addon/cart/cart.php:1274 ../../addon/cart/cart.php:1277 +#: ../../addon/cart/cart.php:1275 ../../addon/cart/cart.php:1278 msgid "Shop" msgstr "" -#: ../../addon/cart/cart.php:1391 +#: ../../addon/cart/cart.php:1395 msgid "Cart utilities for orders and payments" msgstr "" -#: ../../addon/cart/cart.php:1429 +#: ../../addon/cart/cart.php:1433 msgid "You must be logged into the Grid to shop." msgstr "" -#: ../../addon/cart/cart.php:1462 +#: ../../addon/cart/cart.php:1466 #: ../../addon/cart/submodules/paypalbutton.php:392 #: ../../addon/cart/manual_payments.php:68 msgid "Order not found." msgstr "" -#: ../../addon/cart/cart.php:1470 +#: ../../addon/cart/cart.php:1474 msgid "Access denied." msgstr "" -#: ../../addon/cart/cart.php:1522 ../../addon/cart/cart.php:1665 +#: ../../addon/cart/cart.php:1526 ../../addon/cart/cart.php:1669 msgid "No Order Found" msgstr "" -#: ../../addon/cart/cart.php:1531 +#: ../../addon/cart/cart.php:1535 msgid "An unknown error has occurred Please start again." msgstr "" -#: ../../addon/cart/cart.php:1698 +#: ../../addon/cart/cart.php:1702 msgid "Invalid Payment Type. Please start again." msgstr "" -#: ../../addon/cart/cart.php:1705 +#: ../../addon/cart/cart.php:1709 msgid "Order not found" msgstr "" @@ -12332,6 +12609,10 @@ msgstr "" msgid "Send your identity to all websites" msgstr "" +#: ../../addon/sendzid/Mod_Sendzid.php:20 +msgid "Sendzid App" +msgstr "" + #: ../../addon/sendzid/Mod_Sendzid.php:32 msgid "Send ZID" msgstr "" @@ -12390,16 +12671,24 @@ msgstr "" msgid "I won!" msgstr "" -#: ../../addon/pageheader/pageheader.php:43 -msgid "Message to display on every page on this server" +#: ../../addon/pageheader/Mod_Pageheader.php:22 +msgid "pageheader Settings saved." msgstr "" -#: ../../addon/pageheader/pageheader.php:48 -msgid "Pageheader Settings" +#: ../../addon/pageheader/Mod_Pageheader.php:34 +msgid "Page Header App" msgstr "" -#: ../../addon/pageheader/pageheader.php:64 -msgid "pageheader Settings saved." +#: ../../addon/pageheader/Mod_Pageheader.php:35 +msgid "Inserts a page header" +msgstr "" + +#: ../../addon/pageheader/Mod_Pageheader.php:43 +msgid "Message to display on every page on this server" +msgstr "" + +#: ../../addon/pageheader/Mod_Pageheader.php:51 +msgid "Page Header" msgstr "" #: ../../addon/authchoose/Mod_Authchoose.php:22 @@ -12407,6 +12696,11 @@ msgid "" "Allow magic authentication only to websites of your immediate connections" msgstr "" +#: ../../addon/authchoose/Mod_Authchoose.php:28 +#: ../../addon/authchoose/Mod_Authchoose.php:33 +msgid "Authchoose App" +msgstr "" + #: ../../addon/authchoose/Mod_Authchoose.php:39 msgid "Authchoose" msgstr "" @@ -12499,35 +12793,39 @@ msgstr "" msgid "jealous" msgstr "" -#: ../../addon/xmpp/xmpp.php:31 +#: ../../addon/xmpp/Mod_Xmpp.php:23 msgid "XMPP settings updated." msgstr "" -#: ../../addon/xmpp/xmpp.php:53 -msgid "Enable Chat" +#: ../../addon/xmpp/Mod_Xmpp.php:35 +msgid "XMPP App" msgstr "" -#: ../../addon/xmpp/xmpp.php:58 +#: ../../addon/xmpp/Mod_Xmpp.php:36 +msgid "Embedded XMPP (Jabber) client" +msgstr "" + +#: ../../addon/xmpp/Mod_Xmpp.php:52 msgid "Individual credentials" msgstr "" -#: ../../addon/xmpp/xmpp.php:64 +#: ../../addon/xmpp/Mod_Xmpp.php:58 msgid "Jabber BOSH server" msgstr "" -#: ../../addon/xmpp/xmpp.php:69 +#: ../../addon/xmpp/Mod_Xmpp.php:67 msgid "XMPP Settings" msgstr "" -#: ../../addon/xmpp/xmpp.php:92 +#: ../../addon/xmpp/xmpp.php:44 msgid "Jabber BOSH host" msgstr "" -#: ../../addon/xmpp/xmpp.php:93 +#: ../../addon/xmpp/xmpp.php:45 msgid "Use central userbase" msgstr "" -#: ../../addon/xmpp/xmpp.php:93 +#: ../../addon/xmpp/xmpp.php:45 msgid "" "If enabled, members will automatically login to an ejabberd server that has " "to be installed on this machine with synchronized credentials via the " @@ -12538,64 +12836,68 @@ msgstr "" msgid "Who likes me?" msgstr "" -#: ../../addon/pumpio/pumpio.php:148 -msgid "You are now authenticated to pumpio." +#: ../../addon/pumpio/Mod_Pumpio.php:40 +msgid "Pump.io Settings saved." msgstr "" -#: ../../addon/pumpio/pumpio.php:149 -msgid "return to the featured settings page" +#: ../../addon/pumpio/Mod_Pumpio.php:53 +msgid "Pump.io Crosspost Connector App" msgstr "" -#: ../../addon/pumpio/pumpio.php:163 -msgid "Post to Pump.io" +#: ../../addon/pumpio/Mod_Pumpio.php:54 +msgid "Relay public posts to pump.io" msgstr "" -#: ../../addon/pumpio/pumpio.php:198 +#: ../../addon/pumpio/Mod_Pumpio.php:73 msgid "Pump.io servername" msgstr "" -#: ../../addon/pumpio/pumpio.php:198 +#: ../../addon/pumpio/Mod_Pumpio.php:73 msgid "Without \"http://\" or \"https://\"" msgstr "" -#: ../../addon/pumpio/pumpio.php:202 +#: ../../addon/pumpio/Mod_Pumpio.php:77 msgid "Pump.io username" msgstr "" -#: ../../addon/pumpio/pumpio.php:202 +#: ../../addon/pumpio/Mod_Pumpio.php:77 msgid "Without the servername" msgstr "" -#: ../../addon/pumpio/pumpio.php:213 +#: ../../addon/pumpio/Mod_Pumpio.php:88 msgid "You are not authenticated to pumpio" msgstr "" -#: ../../addon/pumpio/pumpio.php:215 +#: ../../addon/pumpio/Mod_Pumpio.php:90 msgid "(Re-)Authenticate your pump.io connection" msgstr "" -#: ../../addon/pumpio/pumpio.php:219 -msgid "Enable pump.io Post Plugin" -msgstr "" - -#: ../../addon/pumpio/pumpio.php:223 +#: ../../addon/pumpio/Mod_Pumpio.php:94 msgid "Post to pump.io by default" msgstr "" -#: ../../addon/pumpio/pumpio.php:227 +#: ../../addon/pumpio/Mod_Pumpio.php:98 msgid "Should posts be public" msgstr "" -#: ../../addon/pumpio/pumpio.php:231 +#: ../../addon/pumpio/Mod_Pumpio.php:102 msgid "Mirror all public posts" msgstr "" -#: ../../addon/pumpio/pumpio.php:237 -msgid "Pump.io Post Settings" +#: ../../addon/pumpio/Mod_Pumpio.php:112 +msgid "Pump.io Crosspost Connector" msgstr "" -#: ../../addon/pumpio/pumpio.php:266 -msgid "PumpIO Settings saved." +#: ../../addon/pumpio/pumpio.php:152 +msgid "You are now authenticated to pumpio." +msgstr "" + +#: ../../addon/pumpio/pumpio.php:153 +msgid "return to the featured settings page" +msgstr "" + +#: ../../addon/pumpio/pumpio.php:168 +msgid "Post to Pump.io" msgstr "" #: ../../addon/ldapauth/ldapauth.php:70 @@ -12714,11 +13016,11 @@ msgstr "" msgid "Hermaphrodite" msgstr "" -#: ../../include/selectors.php:60 ../../include/channel.php:1491 +#: ../../include/selectors.php:60 ../../include/channel.php:1540 msgid "Neuter" msgstr "" -#: ../../include/selectors.php:60 ../../include/channel.php:1493 +#: ../../include/selectors.php:60 ../../include/channel.php:1542 msgid "Non-specific" msgstr "" @@ -12918,8 +13220,8 @@ msgstr "" msgid "%1$s poked %2$s" msgstr "" -#: ../../include/conversation.php:251 ../../include/text.php:1146 -#: ../../include/text.php:1150 +#: ../../include/conversation.php:251 ../../include/text.php:1176 +#: ../../include/text.php:1180 msgid "poked" msgstr "" @@ -13017,42 +13319,42 @@ msgstr "" msgid "%s don't like this." msgstr "" -#: ../../include/conversation.php:1699 +#: ../../include/conversation.php:1708 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1702 +#: ../../include/conversation.php:1711 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1705 +#: ../../include/conversation.php:1714 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1708 +#: ../../include/conversation.php:1717 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1711 +#: ../../include/conversation.php:1720 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1714 +#: ../../include/conversation.php:1723 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" @@ -13064,11 +13366,11 @@ msgstr[1] "" msgid "%1$s's bookmarks" msgstr "" -#: ../../include/import.php:25 +#: ../../include/import.php:26 msgid "Unable to import a removed channel." msgstr "" -#: ../../include/import.php:51 +#: ../../include/import.php:52 msgid "" "Cannot create a duplicate channel identifier on this system. Import failed." msgstr "" @@ -13077,369 +13379,369 @@ msgstr "" msgid "Cloned channel not found. Import failed." msgstr "" -#: ../../include/text.php:498 +#: ../../include/text.php:501 msgid "prev" msgstr "" -#: ../../include/text.php:500 +#: ../../include/text.php:503 msgid "first" msgstr "" -#: ../../include/text.php:529 +#: ../../include/text.php:532 msgid "last" msgstr "" -#: ../../include/text.php:532 +#: ../../include/text.php:535 msgid "next" msgstr "" -#: ../../include/text.php:543 +#: ../../include/text.php:553 msgid "older" msgstr "" -#: ../../include/text.php:545 +#: ../../include/text.php:555 msgid "newer" msgstr "" -#: ../../include/text.php:969 +#: ../../include/text.php:979 msgid "No connections" msgstr "" -#: ../../include/text.php:1001 +#: ../../include/text.php:1011 #, php-format msgid "View all %s connections" msgstr "" -#: ../../include/text.php:1057 +#: ../../include/text.php:1073 #, php-format msgid "Network: %s" msgstr "" -#: ../../include/text.php:1146 ../../include/text.php:1150 +#: ../../include/text.php:1176 ../../include/text.php:1180 msgid "poke" msgstr "" -#: ../../include/text.php:1151 +#: ../../include/text.php:1181 msgid "ping" msgstr "" -#: ../../include/text.php:1151 +#: ../../include/text.php:1181 msgid "pinged" msgstr "" -#: ../../include/text.php:1152 +#: ../../include/text.php:1182 msgid "prod" msgstr "" -#: ../../include/text.php:1152 +#: ../../include/text.php:1182 msgid "prodded" msgstr "" -#: ../../include/text.php:1153 +#: ../../include/text.php:1183 msgid "slap" msgstr "" -#: ../../include/text.php:1153 +#: ../../include/text.php:1183 msgid "slapped" msgstr "" -#: ../../include/text.php:1154 +#: ../../include/text.php:1184 msgid "finger" msgstr "" -#: ../../include/text.php:1154 +#: ../../include/text.php:1184 msgid "fingered" msgstr "" -#: ../../include/text.php:1155 +#: ../../include/text.php:1185 msgid "rebuff" msgstr "" -#: ../../include/text.php:1155 +#: ../../include/text.php:1185 msgid "rebuffed" msgstr "" -#: ../../include/text.php:1178 +#: ../../include/text.php:1208 msgid "happy" msgstr "" -#: ../../include/text.php:1179 +#: ../../include/text.php:1209 msgid "sad" msgstr "" -#: ../../include/text.php:1180 +#: ../../include/text.php:1210 msgid "mellow" msgstr "" -#: ../../include/text.php:1181 +#: ../../include/text.php:1211 msgid "tired" msgstr "" -#: ../../include/text.php:1182 +#: ../../include/text.php:1212 msgid "perky" msgstr "" -#: ../../include/text.php:1183 +#: ../../include/text.php:1213 msgid "angry" msgstr "" -#: ../../include/text.php:1184 +#: ../../include/text.php:1214 msgid "stupefied" msgstr "" -#: ../../include/text.php:1185 +#: ../../include/text.php:1215 msgid "puzzled" msgstr "" -#: ../../include/text.php:1186 +#: ../../include/text.php:1216 msgid "interested" msgstr "" -#: ../../include/text.php:1187 +#: ../../include/text.php:1217 msgid "bitter" msgstr "" -#: ../../include/text.php:1188 +#: ../../include/text.php:1218 msgid "cheerful" msgstr "" -#: ../../include/text.php:1189 +#: ../../include/text.php:1219 msgid "alive" msgstr "" -#: ../../include/text.php:1190 +#: ../../include/text.php:1220 msgid "annoyed" msgstr "" -#: ../../include/text.php:1191 +#: ../../include/text.php:1221 msgid "anxious" msgstr "" -#: ../../include/text.php:1192 +#: ../../include/text.php:1222 msgid "cranky" msgstr "" -#: ../../include/text.php:1193 +#: ../../include/text.php:1223 msgid "disturbed" msgstr "" -#: ../../include/text.php:1194 +#: ../../include/text.php:1224 msgid "frustrated" msgstr "" -#: ../../include/text.php:1195 +#: ../../include/text.php:1225 msgid "depressed" msgstr "" -#: ../../include/text.php:1196 +#: ../../include/text.php:1226 msgid "motivated" msgstr "" -#: ../../include/text.php:1197 +#: ../../include/text.php:1227 msgid "relaxed" msgstr "" -#: ../../include/text.php:1198 +#: ../../include/text.php:1228 msgid "surprised" msgstr "" -#: ../../include/text.php:1377 ../../include/js_strings.php:95 +#: ../../include/text.php:1416 ../../include/js_strings.php:95 msgid "Monday" msgstr "" -#: ../../include/text.php:1377 ../../include/js_strings.php:96 +#: ../../include/text.php:1416 ../../include/js_strings.php:96 msgid "Tuesday" msgstr "" -#: ../../include/text.php:1377 ../../include/js_strings.php:97 +#: ../../include/text.php:1416 ../../include/js_strings.php:97 msgid "Wednesday" msgstr "" -#: ../../include/text.php:1377 ../../include/js_strings.php:98 +#: ../../include/text.php:1416 ../../include/js_strings.php:98 msgid "Thursday" msgstr "" -#: ../../include/text.php:1377 ../../include/js_strings.php:99 +#: ../../include/text.php:1416 ../../include/js_strings.php:99 msgid "Friday" msgstr "" -#: ../../include/text.php:1377 ../../include/js_strings.php:100 +#: ../../include/text.php:1416 ../../include/js_strings.php:100 msgid "Saturday" msgstr "" -#: ../../include/text.php:1377 ../../include/js_strings.php:94 +#: ../../include/text.php:1416 ../../include/js_strings.php:94 msgid "Sunday" msgstr "" -#: ../../include/text.php:1381 ../../include/js_strings.php:70 +#: ../../include/text.php:1420 ../../include/js_strings.php:70 msgid "January" msgstr "" -#: ../../include/text.php:1381 ../../include/js_strings.php:71 +#: ../../include/text.php:1420 ../../include/js_strings.php:71 msgid "February" msgstr "" -#: ../../include/text.php:1381 ../../include/js_strings.php:72 +#: ../../include/text.php:1420 ../../include/js_strings.php:72 msgid "March" msgstr "" -#: ../../include/text.php:1381 ../../include/js_strings.php:73 +#: ../../include/text.php:1420 ../../include/js_strings.php:73 msgid "April" msgstr "" -#: ../../include/text.php:1381 +#: ../../include/text.php:1420 msgid "May" msgstr "" -#: ../../include/text.php:1381 ../../include/js_strings.php:75 +#: ../../include/text.php:1420 ../../include/js_strings.php:75 msgid "June" msgstr "" -#: ../../include/text.php:1381 ../../include/js_strings.php:76 +#: ../../include/text.php:1420 ../../include/js_strings.php:76 msgid "July" msgstr "" -#: ../../include/text.php:1381 ../../include/js_strings.php:77 +#: ../../include/text.php:1420 ../../include/js_strings.php:77 msgid "August" msgstr "" -#: ../../include/text.php:1381 ../../include/js_strings.php:78 +#: ../../include/text.php:1420 ../../include/js_strings.php:78 msgid "September" msgstr "" -#: ../../include/text.php:1381 ../../include/js_strings.php:79 +#: ../../include/text.php:1420 ../../include/js_strings.php:79 msgid "October" msgstr "" -#: ../../include/text.php:1381 ../../include/js_strings.php:80 +#: ../../include/text.php:1420 ../../include/js_strings.php:80 msgid "November" msgstr "" -#: ../../include/text.php:1381 ../../include/js_strings.php:81 +#: ../../include/text.php:1420 ../../include/js_strings.php:81 msgid "December" msgstr "" -#: ../../include/text.php:1455 +#: ../../include/text.php:1494 msgid "Unknown Attachment" msgstr "" -#: ../../include/text.php:1457 ../../include/feedutils.php:860 +#: ../../include/text.php:1496 ../../include/feedutils.php:858 msgid "unknown" msgstr "" -#: ../../include/text.php:1493 +#: ../../include/text.php:1532 msgid "remove category" msgstr "" -#: ../../include/text.php:1567 +#: ../../include/text.php:1606 msgid "remove from file" msgstr "" -#: ../../include/text.php:1709 ../../include/message.php:13 +#: ../../include/text.php:1765 ../../include/message.php:13 msgid "Download binary/encrypted content" msgstr "" -#: ../../include/text.php:1872 ../../include/language.php:423 +#: ../../include/text.php:1935 ../../include/language.php:423 msgid "default" msgstr "" -#: ../../include/text.php:1880 +#: ../../include/text.php:1943 msgid "Page layout" msgstr "" -#: ../../include/text.php:1880 +#: ../../include/text.php:1943 msgid "You can create your own with the layouts tool" msgstr "" -#: ../../include/text.php:1891 +#: ../../include/text.php:1954 msgid "HTML" msgstr "" -#: ../../include/text.php:1894 +#: ../../include/text.php:1957 msgid "Comanche Layout" msgstr "" -#: ../../include/text.php:1899 +#: ../../include/text.php:1962 msgid "PHP" msgstr "" -#: ../../include/text.php:1908 +#: ../../include/text.php:1971 msgid "Page content type" msgstr "" -#: ../../include/text.php:2041 +#: ../../include/text.php:2104 msgid "activity" msgstr "" -#: ../../include/text.php:2142 +#: ../../include/text.php:2205 msgid "a-z, 0-9, -, and _ only" msgstr "" -#: ../../include/text.php:2462 +#: ../../include/text.php:2531 msgid "Design Tools" msgstr "" -#: ../../include/text.php:2468 +#: ../../include/text.php:2537 msgid "Pages" msgstr "" -#: ../../include/text.php:2490 +#: ../../include/text.php:2559 msgid "Import website..." msgstr "" -#: ../../include/text.php:2491 +#: ../../include/text.php:2560 msgid "Select folder to import" msgstr "" -#: ../../include/text.php:2492 +#: ../../include/text.php:2561 msgid "Import from a zipped folder:" msgstr "" -#: ../../include/text.php:2493 +#: ../../include/text.php:2562 msgid "Import from cloud files:" msgstr "" -#: ../../include/text.php:2494 +#: ../../include/text.php:2563 msgid "/cloud/channel/path/to/folder" msgstr "" -#: ../../include/text.php:2495 +#: ../../include/text.php:2564 msgid "Enter path to website files" msgstr "" -#: ../../include/text.php:2496 +#: ../../include/text.php:2565 msgid "Select folder" msgstr "" -#: ../../include/text.php:2497 +#: ../../include/text.php:2566 msgid "Export website..." msgstr "" -#: ../../include/text.php:2498 +#: ../../include/text.php:2567 msgid "Export to a zip file" msgstr "" -#: ../../include/text.php:2499 +#: ../../include/text.php:2568 msgid "website.zip" msgstr "" -#: ../../include/text.php:2500 +#: ../../include/text.php:2569 msgid "Enter a name for the zip file." msgstr "" -#: ../../include/text.php:2501 +#: ../../include/text.php:2570 msgid "Export to cloud files" msgstr "" -#: ../../include/text.php:2502 +#: ../../include/text.php:2571 msgid "/path/to/export/folder" msgstr "" -#: ../../include/text.php:2503 +#: ../../include/text.php:2572 msgid "Enter a path to a cloud files destination." msgstr "" -#: ../../include/text.php:2504 +#: ../../include/text.php:2573 msgid "Specify folder" msgstr "" @@ -13478,16 +13780,16 @@ msgstr "" msgid "Advanced example: name=fred and country=iceland" msgstr "" -#: ../../include/contact_widgets.php:223 +#: ../../include/contact_widgets.php:218 msgid "Common Connections" msgstr "" -#: ../../include/contact_widgets.php:228 +#: ../../include/contact_widgets.php:222 #, php-format msgid "View all %d common connections" msgstr "" -#: ../../include/markdown.php:200 ../../include/bbcode.php:358 +#: ../../include/markdown.php:198 ../../include/bbcode.php:347 #, php-format msgid "%1$s wrote the following %2$s %3$s" msgstr "" @@ -13843,92 +14145,92 @@ msgstr "" msgid "Stored post could not be verified." msgstr "" -#: ../../include/activities.php:41 +#: ../../include/activities.php:42 msgid " and " msgstr "" -#: ../../include/activities.php:49 +#: ../../include/activities.php:50 msgid "public profile" msgstr "" -#: ../../include/activities.php:58 +#: ../../include/activities.php:59 #, php-format msgid "%1$s changed %2$s to “%3$s”" msgstr "" -#: ../../include/activities.php:59 +#: ../../include/activities.php:60 #, php-format msgid "Visit %1$s's %2$s" msgstr "" -#: ../../include/activities.php:62 +#: ../../include/activities.php:63 #, php-format msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" -#: ../../include/attach.php:265 ../../include/attach.php:374 +#: ../../include/attach.php:267 ../../include/attach.php:376 msgid "Item was not found." msgstr "" -#: ../../include/attach.php:282 +#: ../../include/attach.php:284 msgid "Unknown error." msgstr "" -#: ../../include/attach.php:567 +#: ../../include/attach.php:569 msgid "No source file." msgstr "" -#: ../../include/attach.php:589 +#: ../../include/attach.php:591 msgid "Cannot locate file to replace" msgstr "" -#: ../../include/attach.php:608 +#: ../../include/attach.php:610 msgid "Cannot locate file to revise/update" msgstr "" -#: ../../include/attach.php:750 +#: ../../include/attach.php:752 #, php-format msgid "File exceeds size limit of %d" msgstr "" -#: ../../include/attach.php:771 +#: ../../include/attach.php:773 #, php-format msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "" -#: ../../include/attach.php:953 +#: ../../include/attach.php:955 msgid "File upload failed. Possible system limit or action terminated." msgstr "" -#: ../../include/attach.php:982 +#: ../../include/attach.php:984 msgid "Stored file could not be verified. Upload failed." msgstr "" -#: ../../include/attach.php:1056 ../../include/attach.php:1072 +#: ../../include/attach.php:1058 ../../include/attach.php:1074 msgid "Path not available." msgstr "" -#: ../../include/attach.php:1121 ../../include/attach.php:1286 +#: ../../include/attach.php:1123 ../../include/attach.php:1288 msgid "Empty pathname" msgstr "" -#: ../../include/attach.php:1147 +#: ../../include/attach.php:1149 msgid "duplicate filename or path" msgstr "" -#: ../../include/attach.php:1172 +#: ../../include/attach.php:1174 msgid "Path not found." msgstr "" -#: ../../include/attach.php:1240 +#: ../../include/attach.php:1242 msgid "mkdir failed." msgstr "" -#: ../../include/attach.php:1244 +#: ../../include/attach.php:1246 msgid "database storage failed." msgstr "" -#: ../../include/attach.php:1292 +#: ../../include/attach.php:1294 msgid "Empty path" msgstr "" @@ -13938,301 +14240,297 @@ msgid "" "form has been opened for too long (>3 hours) before submitting it." msgstr "" -#: ../../include/items.php:911 ../../include/items.php:971 +#: ../../include/items.php:955 ../../include/items.php:1015 msgid "(Unknown)" msgstr "" -#: ../../include/items.php:1157 +#: ../../include/items.php:1203 msgid "Visible to anybody on the internet." msgstr "" -#: ../../include/items.php:1159 +#: ../../include/items.php:1205 msgid "Visible to you only." msgstr "" -#: ../../include/items.php:1161 +#: ../../include/items.php:1207 msgid "Visible to anybody in this network." msgstr "" -#: ../../include/items.php:1163 +#: ../../include/items.php:1209 msgid "Visible to anybody authenticated." msgstr "" -#: ../../include/items.php:1165 +#: ../../include/items.php:1211 #, php-format msgid "Visible to anybody on %s." msgstr "" -#: ../../include/items.php:1167 +#: ../../include/items.php:1213 msgid "Visible to all connections." msgstr "" -#: ../../include/items.php:1169 +#: ../../include/items.php:1215 msgid "Visible to approved connections." msgstr "" -#: ../../include/items.php:1171 +#: ../../include/items.php:1217 msgid "Visible to specific connections." msgstr "" -#: ../../include/items.php:4183 +#: ../../include/items.php:4291 msgid "Privacy group is empty." msgstr "" -#: ../../include/items.php:4190 +#: ../../include/items.php:4298 #, php-format msgid "Privacy group: %s" msgstr "" -#: ../../include/items.php:4202 +#: ../../include/items.php:4310 msgid "Connection not found." msgstr "" -#: ../../include/items.php:4551 +#: ../../include/items.php:4659 msgid "profile photo" msgstr "" -#: ../../include/items.php:4742 +#: ../../include/items.php:4851 #, php-format msgid "[Edited %s]" msgstr "" -#: ../../include/items.php:4742 +#: ../../include/items.php:4851 msgctxt "edit_activity" msgid "Post" msgstr "" -#: ../../include/items.php:4742 +#: ../../include/items.php:4851 msgctxt "edit_activity" msgid "Comment" msgstr "" -#: ../../include/channel.php:42 +#: ../../include/channel.php:43 msgid "Unable to obtain identity information from database" msgstr "" -#: ../../include/channel.php:75 +#: ../../include/channel.php:76 msgid "Empty name" msgstr "" -#: ../../include/channel.php:78 +#: ../../include/channel.php:79 msgid "Name too long" msgstr "" -#: ../../include/channel.php:195 +#: ../../include/channel.php:196 msgid "No account identifier" msgstr "" -#: ../../include/channel.php:207 +#: ../../include/channel.php:208 msgid "Nickname is required." msgstr "" -#: ../../include/channel.php:284 +#: ../../include/channel.php:287 msgid "Unable to retrieve created identity" msgstr "" -#: ../../include/channel.php:380 +#: ../../include/channel.php:429 msgid "Default Profile" msgstr "" -#: ../../include/channel.php:539 ../../include/channel.php:628 +#: ../../include/channel.php:588 ../../include/channel.php:677 msgid "Unable to retrieve modified identity" msgstr "" -#: ../../include/channel.php:1304 +#: ../../include/channel.php:1353 msgid "Create New Profile" msgstr "" -#: ../../include/channel.php:1325 +#: ../../include/channel.php:1374 msgid "Visible to everybody" msgstr "" -#: ../../include/channel.php:1402 ../../include/channel.php:1530 +#: ../../include/channel.php:1451 ../../include/channel.php:1579 msgid "Gender:" msgstr "" -#: ../../include/channel.php:1404 ../../include/channel.php:1598 +#: ../../include/channel.php:1453 ../../include/channel.php:1647 msgid "Homepage:" msgstr "" -#: ../../include/channel.php:1405 +#: ../../include/channel.php:1454 msgid "Online Now" msgstr "" -#: ../../include/channel.php:1458 +#: ../../include/channel.php:1507 msgid "Change your profile photo" msgstr "" -#: ../../include/channel.php:1489 +#: ../../include/channel.php:1538 msgid "Trans" msgstr "" -#: ../../include/channel.php:1535 +#: ../../include/channel.php:1584 msgid "Like this channel" msgstr "" -#: ../../include/channel.php:1559 +#: ../../include/channel.php:1608 msgid "j F, Y" msgstr "" -#: ../../include/channel.php:1560 +#: ../../include/channel.php:1609 msgid "j F" msgstr "" -#: ../../include/channel.php:1567 +#: ../../include/channel.php:1616 msgid "Birthday:" msgstr "" -#: ../../include/channel.php:1580 +#: ../../include/channel.php:1629 #, php-format msgid "for %1$d %2$s" msgstr "" -#: ../../include/channel.php:1592 +#: ../../include/channel.php:1641 msgid "Tags:" msgstr "" -#: ../../include/channel.php:1596 +#: ../../include/channel.php:1645 msgid "Sexual Preference:" msgstr "" -#: ../../include/channel.php:1602 +#: ../../include/channel.php:1651 msgid "Political Views:" msgstr "" -#: ../../include/channel.php:1604 +#: ../../include/channel.php:1653 msgid "Religion:" msgstr "" -#: ../../include/channel.php:1608 +#: ../../include/channel.php:1657 msgid "Hobbies/Interests:" msgstr "" -#: ../../include/channel.php:1610 +#: ../../include/channel.php:1659 msgid "Likes:" msgstr "" -#: ../../include/channel.php:1612 +#: ../../include/channel.php:1661 msgid "Dislikes:" msgstr "" -#: ../../include/channel.php:1614 +#: ../../include/channel.php:1663 msgid "Contact information and Social Networks:" msgstr "" -#: ../../include/channel.php:1616 +#: ../../include/channel.php:1665 msgid "My other channels:" msgstr "" -#: ../../include/channel.php:1618 +#: ../../include/channel.php:1667 msgid "Musical interests:" msgstr "" -#: ../../include/channel.php:1620 +#: ../../include/channel.php:1669 msgid "Books, literature:" msgstr "" -#: ../../include/channel.php:1622 +#: ../../include/channel.php:1671 msgid "Television:" msgstr "" -#: ../../include/channel.php:1624 +#: ../../include/channel.php:1673 msgid "Film/dance/culture/entertainment:" msgstr "" -#: ../../include/channel.php:1626 +#: ../../include/channel.php:1675 msgid "Love/Romance:" msgstr "" -#: ../../include/channel.php:1628 +#: ../../include/channel.php:1677 msgid "Work/employment:" msgstr "" -#: ../../include/channel.php:1630 +#: ../../include/channel.php:1679 msgid "School/education:" msgstr "" -#: ../../include/channel.php:1653 +#: ../../include/channel.php:1702 msgid "Like this thing" msgstr "" -#: ../../include/event.php:24 ../../include/event.php:71 +#: ../../include/event.php:28 ../../include/event.php:75 msgid "l F d, Y \\@ g:i A" msgstr "" -#: ../../include/event.php:32 ../../include/event.php:75 +#: ../../include/event.php:36 ../../include/event.php:79 msgid "Starts:" msgstr "" -#: ../../include/event.php:42 ../../include/event.php:79 +#: ../../include/event.php:46 ../../include/event.php:83 msgid "Finishes:" msgstr "" -#: ../../include/event.php:1011 +#: ../../include/event.php:1020 msgid "This event has been added to your calendar." msgstr "" -#: ../../include/event.php:1227 +#: ../../include/event.php:1239 msgid "Not specified" msgstr "" -#: ../../include/event.php:1228 +#: ../../include/event.php:1240 msgid "Needs Action" msgstr "" -#: ../../include/event.php:1229 +#: ../../include/event.php:1241 msgid "Completed" msgstr "" -#: ../../include/event.php:1230 +#: ../../include/event.php:1242 msgid "In Process" msgstr "" -#: ../../include/event.php:1231 +#: ../../include/event.php:1243 msgid "Cancelled" msgstr "" -#: ../../include/event.php:1310 ../../include/connections.php:698 +#: ../../include/event.php:1322 ../../include/connections.php:698 msgid "Home, Voice" msgstr "" -#: ../../include/event.php:1311 ../../include/connections.php:699 +#: ../../include/event.php:1323 ../../include/connections.php:699 msgid "Home, Fax" msgstr "" -#: ../../include/event.php:1313 ../../include/connections.php:701 +#: ../../include/event.php:1325 ../../include/connections.php:701 msgid "Work, Voice" msgstr "" -#: ../../include/event.php:1314 ../../include/connections.php:702 +#: ../../include/event.php:1326 ../../include/connections.php:702 msgid "Work, Fax" msgstr "" -#: ../../include/network.php:770 -msgid "view full size" -msgstr "" - -#: ../../include/network.php:1776 +#: ../../include/network.php:1718 msgid "GNU-Social" msgstr "" -#: ../../include/network.php:1777 +#: ../../include/network.php:1719 msgid "RSS/Atom" msgstr "" -#: ../../include/network.php:1781 +#: ../../include/network.php:1723 msgid "Facebook" msgstr "" -#: ../../include/network.php:1783 +#: ../../include/network.php:1725 msgid "LinkedIn" msgstr "" -#: ../../include/network.php:1784 +#: ../../include/network.php:1726 msgid "XMPP/IM" msgstr "" -#: ../../include/network.php:1785 +#: ../../include/network.php:1727 msgid "MySpace" msgstr "" @@ -14269,22 +14567,17 @@ msgid "" "permissions set who is allowed to view the post." msgstr "" -#: ../../include/dba/dba_driver.php:178 -#, php-format -msgid "Cannot locate DNS info for database server '%s'" -msgstr "" - -#: ../../include/bbcode.php:200 ../../include/bbcode.php:1201 -#: ../../include/bbcode.php:1204 ../../include/bbcode.php:1209 -#: ../../include/bbcode.php:1212 ../../include/bbcode.php:1215 -#: ../../include/bbcode.php:1218 ../../include/bbcode.php:1223 -#: ../../include/bbcode.php:1226 ../../include/bbcode.php:1231 -#: ../../include/bbcode.php:1234 ../../include/bbcode.php:1237 -#: ../../include/bbcode.php:1240 +#: ../../include/bbcode.php:200 ../../include/bbcode.php:1190 +#: ../../include/bbcode.php:1193 ../../include/bbcode.php:1198 +#: ../../include/bbcode.php:1201 ../../include/bbcode.php:1204 +#: ../../include/bbcode.php:1207 ../../include/bbcode.php:1212 +#: ../../include/bbcode.php:1215 ../../include/bbcode.php:1220 +#: ../../include/bbcode.php:1223 ../../include/bbcode.php:1226 +#: ../../include/bbcode.php:1229 msgid "Image/photo" msgstr "" -#: ../../include/bbcode.php:239 ../../include/bbcode.php:1251 +#: ../../include/bbcode.php:239 ../../include/bbcode.php:1240 msgid "Encrypted content" msgstr "" @@ -14300,51 +14593,51 @@ msgid "" "to install it on this site." msgstr "" -#: ../../include/bbcode.php:350 +#: ../../include/bbcode.php:339 msgid "card" msgstr "" -#: ../../include/bbcode.php:352 +#: ../../include/bbcode.php:341 msgid "article" msgstr "" -#: ../../include/bbcode.php:435 ../../include/bbcode.php:443 +#: ../../include/bbcode.php:424 ../../include/bbcode.php:432 msgid "Click to open/close" msgstr "" -#: ../../include/bbcode.php:443 +#: ../../include/bbcode.php:432 msgid "spoiler" msgstr "" -#: ../../include/bbcode.php:456 +#: ../../include/bbcode.php:445 msgid "View article" msgstr "" -#: ../../include/bbcode.php:456 +#: ../../include/bbcode.php:445 msgid "View summary" msgstr "" -#: ../../include/bbcode.php:1189 +#: ../../include/bbcode.php:1178 msgid "$1 wrote:" msgstr "" -#: ../../include/oembed.php:224 +#: ../../include/oembed.php:226 msgid "View PDF" msgstr "" -#: ../../include/oembed.php:347 +#: ../../include/oembed.php:356 msgid " by " msgstr "" -#: ../../include/oembed.php:348 +#: ../../include/oembed.php:357 msgid " on " msgstr "" -#: ../../include/oembed.php:377 +#: ../../include/oembed.php:386 msgid "Embedded content" msgstr "" -#: ../../include/oembed.php:386 +#: ../../include/oembed.php:395 msgid "Embedding disabled" msgstr "" @@ -14377,11 +14670,11 @@ msgstr "" msgid "Provide a personal tag cloud on your channel page" msgstr "" -#: ../../include/features.php:116 ../../include/features.php:381 +#: ../../include/features.php:116 ../../include/features.php:373 msgid "Use blog/list mode" msgstr "" -#: ../../include/features.php:117 ../../include/features.php:382 +#: ../../include/features.php:117 ../../include/features.php:374 msgid "Comments will be displayed separately" msgstr "" @@ -14592,47 +14885,39 @@ msgstr "" msgid "Ability to display only posts that you've interacted on" msgstr "" -#: ../../include/features.php:365 -msgid "Affinity Tool" -msgstr "" - #: ../../include/features.php:366 -msgid "Filter stream activity by depth of relationships" -msgstr "" - -#: ../../include/features.php:374 msgid "Show friend and connection suggestions" msgstr "" -#: ../../include/features.php:395 +#: ../../include/features.php:387 msgid "Photo Location" msgstr "" -#: ../../include/features.php:396 +#: ../../include/features.php:388 msgid "If location data is available on uploaded photos, link this to a map." msgstr "" -#: ../../include/features.php:409 +#: ../../include/features.php:401 msgid "Advanced Profiles" msgstr "" -#: ../../include/features.php:410 +#: ../../include/features.php:402 msgid "Additional profile sections and selections" msgstr "" -#: ../../include/features.php:417 +#: ../../include/features.php:409 msgid "Profile Import/Export" msgstr "" -#: ../../include/features.php:418 +#: ../../include/features.php:410 msgid "Save and load profile details across sites/channels" msgstr "" -#: ../../include/features.php:425 +#: ../../include/features.php:417 msgid "Multiple Profiles" msgstr "" -#: ../../include/features.php:426 +#: ../../include/features.php:418 msgid "Ability to create multiple profiles" msgstr "" @@ -14877,55 +15162,55 @@ msgstr "" msgid "Site Setup and Configuration" msgstr "" -#: ../../include/nav.php:299 +#: ../../include/nav.php:329 msgid "@name, !forum, #tag, ?doc, content" msgstr "" -#: ../../include/nav.php:300 +#: ../../include/nav.php:330 msgid "Please wait..." msgstr "" -#: ../../include/nav.php:306 +#: ../../include/nav.php:336 msgid "Add Apps" msgstr "" -#: ../../include/nav.php:307 +#: ../../include/nav.php:337 msgid "Arrange Apps" msgstr "" -#: ../../include/nav.php:308 +#: ../../include/nav.php:338 msgid "Toggle System Apps" msgstr "" -#: ../../include/nav.php:394 +#: ../../include/nav.php:424 msgid "Status Messages and Posts" msgstr "" -#: ../../include/nav.php:407 +#: ../../include/nav.php:437 msgid "Profile Details" msgstr "" -#: ../../include/nav.php:417 ../../include/photos.php:667 +#: ../../include/nav.php:447 ../../include/photos.php:669 msgid "Photo Albums" msgstr "" -#: ../../include/nav.php:425 +#: ../../include/nav.php:455 msgid "Files and Storage" msgstr "" -#: ../../include/nav.php:463 +#: ../../include/nav.php:493 msgid "Saved Bookmarks" msgstr "" -#: ../../include/nav.php:474 +#: ../../include/nav.php:504 msgid "View Cards" msgstr "" -#: ../../include/nav.php:485 +#: ../../include/nav.php:515 msgid "View Articles" msgstr "" -#: ../../include/nav.php:497 +#: ../../include/nav.php:527 msgid "View Webpages" msgstr "" @@ -14952,15 +15237,15 @@ msgctxt "photo_upload" msgid "%1$s posted %2$s to %3$s" msgstr "" -#: ../../include/photos.php:672 +#: ../../include/photos.php:674 msgid "Upload New Photos" msgstr "" -#: ../../include/zot.php:773 +#: ../../include/zot.php:775 msgid "Invalid data packet" msgstr "" -#: ../../include/zot.php:4235 +#: ../../include/zot.php:4288 msgid "invalid target signature" msgstr "" diff --git a/util/udall b/util/udall index f1d52a1d1..44f37e86e 100755 --- a/util/udall +++ b/util/udall @@ -7,7 +7,7 @@ git pull if [ -d extend ] ; then for a in theme addon widget ; do - if [ -d $a ]; then + if [ -d extend/$a ]; then for b in `ls extend/$a` ; do echo Updating $b 'util/update_'$a'_repo' $b |