diff options
author | zotlabs <mike@macgirvin.com> | 2017-03-25 13:07:46 -0700 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-03-31 10:26:06 +0200 |
commit | 6e5a06421f7c841718196ac9e80d4b0c5221ce6a (patch) | |
tree | 4b9083bc70f3b52bd1e8ca39eb9ae4435a2f04b2 | |
parent | 5f0004b416b81f546546d719d8206da52efb1ac1 (diff) | |
download | volse-hubzilla-6e5a06421f7c841718196ac9e80d4b0c5221ce6a.tar.gz volse-hubzilla-6e5a06421f7c841718196ac9e80d4b0c5221ce6a.tar.bz2 volse-hubzilla-6e5a06421f7c841718196ac9e80d4b0c5221ce6a.zip |
get rid of 'davguest' and allow for project specific DB updates (currently db updates are common between all possible projects/subprojects/forks).
-rw-r--r-- | Zotlabs/Lib/DB_Upgrade.php | 24 | ||||
-rw-r--r-- | Zotlabs/Module/Cloud.php | 2 | ||||
-rw-r--r-- | Zotlabs/Module/Filestorage.php | 2 | ||||
-rw-r--r-- | util/hmessages.po | 4238 |
4 files changed, 2128 insertions, 2138 deletions
diff --git a/Zotlabs/Lib/DB_Upgrade.php b/Zotlabs/Lib/DB_Upgrade.php index 13adaced5..2ee29c314 100644 --- a/Zotlabs/Lib/DB_Upgrade.php +++ b/Zotlabs/Lib/DB_Upgrade.php @@ -8,9 +8,10 @@ class DB_Upgrade { function __construct($db_revision) { - $build = get_config('system','db_version',0); + + $build = get_config('system', PLATFORM_NAME . '_db_version', 0); if(! intval($build)) - $build = set_config('system','db_version',$db_revision); + $build = set_config('system', PLATFORM_NAME . '_db_version', $db_revision); if($build == $db_revision) { // Nothing to be done. @@ -24,14 +25,17 @@ class DB_Upgrade { } $current = intval($db_revision); - if(($stored < $current) && file_exists('install/update.php')) { + + $update_file = 'install/' . PLATFORM_NAME . '/update.php'; + + if(($stored < $current) && file_exists($update_file)) { Config::Load('database'); // We're reporting a different version than what is currently installed. // Run any existing update scripts to bring the database up to current. - require_once('install/update.php'); + require_once($update_file); // make sure that boot.php and update.php are the same release, we might be // updating from git right this very second and the correct version of the update.php @@ -39,7 +43,8 @@ class DB_Upgrade { if($db_revision == UPDATE_VERSION) { for($x = $stored; $x < $current; $x ++) { - if(function_exists('update_r' . $x)) { + $func = PLATFORM_NAME . '_update_' . $x; + if(function_exists($func)) { // There could be a lot of processes running or about to run. // We want exactly one process to run the update command. // So store the fact that we're taking responsibility @@ -48,12 +53,11 @@ class DB_Upgrade { // If the update fails or times-out completely you may need to // delete the config entry to try again. - if(get_config('database','update_r' . $x)) + if(get_config('database', $func)) break; - set_config('database','update_r' . $x, '1'); + set_config('database',$func, '1'); // call the specific update - $func = 'update_r' . $x; $retval = $func(); if($retval) { @@ -93,11 +97,11 @@ class DB_Upgrade { pop_lang(); } else { - set_config('database','update_r' . $x, 'success'); + set_config('database',$func, 'success'); } } } - set_config('system','db_version', $db_revision); + set_config('system', PLATFORM_NAME . '_db_version', $db_revision); } } } diff --git a/Zotlabs/Module/Cloud.php b/Zotlabs/Module/Cloud.php index 2b6d7bcbe..7370eeda3 100644 --- a/Zotlabs/Module/Cloud.php +++ b/Zotlabs/Module/Cloud.php @@ -60,11 +60,9 @@ class Cloud extends \Zotlabs\Web\Controller { $_SERVER['QUERY_STRING'] = str_replace(array('?f=', '&f='), array('', ''), $_SERVER['QUERY_STRING']); $_SERVER['QUERY_STRING'] = strip_zids($_SERVER['QUERY_STRING']); - $_SERVER['QUERY_STRING'] = preg_replace('/[\?&]davguest=(.*?)([\?&]|$)/ism', '', $_SERVER['QUERY_STRING']); $_SERVER['REQUEST_URI'] = str_replace(array('?f=', '&f='), array('', ''), $_SERVER['REQUEST_URI']); $_SERVER['REQUEST_URI'] = strip_zids($_SERVER['REQUEST_URI']); - $_SERVER['REQUEST_URI'] = preg_replace('/[\?&]davguest=(.*?)([\?&]|$)/ism', '', $_SERVER['REQUEST_URI']); $rootDirectory = new \Zotlabs\Storage\Directory('/', $auth); diff --git a/Zotlabs/Module/Filestorage.php b/Zotlabs/Module/Filestorage.php index 874445145..785dff394 100644 --- a/Zotlabs/Module/Filestorage.php +++ b/Zotlabs/Module/Filestorage.php @@ -130,7 +130,7 @@ class Filestorage extends \Zotlabs\Web\Controller { $f = $r[0]; $channel = \App::get_channel(); - $cloudpath = get_cloudpath($f) . (intval($f['is_dir']) ? '?f=&davguest=1' : ''); + $cloudpath = get_cloudpath($f); $parentpath = get_parent_cloudpath($channel['channel_id'], $channel['channel_address'], $f['hash']); $aclselect_e = populate_acl($f, false, \Zotlabs\Lib\PermissionDescription::fromGlobalPermission('view_storage')); diff --git a/util/hmessages.po b/util/hmessages.po index b2f18043c..e0b54d7c1 100644 --- a/util/hmessages.po +++ b/util/hmessages.po @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: 5.2\n" +"Project-Id-Version: 5.3\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2017-03-17 00:04-0700\n" +"POT-Creation-Date: 2017-03-24 00:04-0700\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" @@ -89,8 +89,8 @@ msgstr "" #: ../../Zotlabs/Access/PermissionRoles.php:270 #: ../../Zotlabs/Module/Register.php:213 ../../Zotlabs/Module/Profiles.php:798 -#: ../../Zotlabs/Module/Connedit.php:922 #: ../../Zotlabs/Module/New_channel.php:132 +#: ../../Zotlabs/Module/Connedit.php:922 #: ../../Zotlabs/Module/Settings/Channel.php:463 #: ../../extend/addon/addon/cdav/cdav.php:277 #: ../../extend/addon/addon/cdav/cdav.php:284 @@ -207,19 +207,19 @@ msgstr "" msgid "Schedule Outbox" msgstr "" -#: ../../Zotlabs/Storage/Browser.php:163 ../../Zotlabs/Module/Photos.php:784 -#: ../../Zotlabs/Module/Photos.php:1244 +#: ../../Zotlabs/Storage/Browser.php:163 ../../Zotlabs/Module/Photos.php:757 +#: ../../Zotlabs/Module/Photos.php:1213 #: ../../Zotlabs/Module/Embedphotos.php:145 ../../Zotlabs/Lib/Apps.php:561 #: ../../Zotlabs/Lib/Apps.php:639 ../../Zotlabs/Widget/Album.php:84 #: ../../extend/addon/addon/cdav/Mod_Cdav.php:745 #: ../../extend/addon/addon/cdav/Mod_Cdav.php:746 #: ../../extend/addon/addon/cdav/Mod_Cdav.php:753 -#: ../../include/conversation.php:1177 +#: ../../include/conversation.php:1083 msgid "Unknown" msgstr "" #: ../../Zotlabs/Storage/Browser.php:224 ../../Zotlabs/Module/Fbrowser.php:85 -#: ../../Zotlabs/Lib/Apps.php:224 ../../include/conversation.php:1843 +#: ../../Zotlabs/Lib/Apps.php:224 ../../include/conversation.php:1749 msgid "Files" msgstr "" @@ -233,9 +233,9 @@ msgstr "" #: ../../Zotlabs/Storage/Browser.php:228 ../../Zotlabs/Storage/Browser.php:330 #: ../../Zotlabs/Module/Profiles.php:801 ../../Zotlabs/Module/Webpages.php:243 -#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/Connedit.php:925 +#: ../../Zotlabs/Module/Menu.php:118 ../../Zotlabs/Module/Layouts.php:185 #: ../../Zotlabs/Module/New_channel.php:147 -#: ../../Zotlabs/Module/Blocks.php:159 ../../Zotlabs/Module/Layouts.php:185 +#: ../../Zotlabs/Module/Connedit.php:925 ../../Zotlabs/Module/Blocks.php:159 #: ../../extend/addon/addon/cdav/include/widgets.php:127 #: ../../extend/addon/addon/cdav/include/widgets.php:164 #: ../../extend/addon/addon/cdav/Mod_Cdav.php:1151 @@ -244,8 +244,8 @@ msgstr "" #: ../../Zotlabs/Storage/Browser.php:229 ../../Zotlabs/Storage/Browser.php:332 #: ../../Zotlabs/Module/Cover_photo.php:361 +#: ../../Zotlabs/Module/Photos.php:784 ../../Zotlabs/Module/Photos.php:1321 #: ../../Zotlabs/Module/Profile_photo.php:423 -#: ../../Zotlabs/Module/Photos.php:811 ../../Zotlabs/Module/Photos.php:1368 #: ../../Zotlabs/Module/Embedphotos.php:157 ../../Zotlabs/Widget/Album.php:97 #: ../../extend/addon/addon/cdav/include/widgets.php:132 #: ../../extend/addon/addon/cdav/include/widgets.php:168 @@ -258,15 +258,16 @@ msgstr "" #: ../../Zotlabs/Module/Sharedwithme.php:99 #: ../../Zotlabs/Module/Settings/Oauth.php:89 #: ../../Zotlabs/Module/Settings/Oauth.php:115 +#: ../../Zotlabs/Lib/NativeWikiPage.php:528 #: ../../Zotlabs/Widget/Wiki_page_history.php:22 #: ../../extend/addon/addon/cdav/Mod_Cdav.php:1136 #: ../../extend/addon/addon/rendezvous/rendezvous.php:172 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:156 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:158 msgid "Name" msgstr "" #: ../../Zotlabs/Storage/Browser.php:234 ../../Zotlabs/Module/Wiki.php:172 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:157 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:159 msgid "Type" msgstr "" @@ -281,31 +282,29 @@ msgid "Last Modified" msgstr "" #: ../../Zotlabs/Storage/Browser.php:238 -#: ../../Zotlabs/Module/Editblock.php:114 #: ../../Zotlabs/Module/Connections.php:296 #: ../../Zotlabs/Module/Connections.php:316 #: ../../Zotlabs/Module/Admin/Profs.php:154 #: ../../Zotlabs/Module/Webpages.php:244 #: ../../Zotlabs/Module/Editlayout.php:114 #: ../../Zotlabs/Module/Editwebpage.php:147 ../../Zotlabs/Module/Menu.php:112 -#: ../../Zotlabs/Module/Editpost.php:85 ../../Zotlabs/Module/Wiki.php:164 -#: ../../Zotlabs/Module/Wiki.php:280 ../../Zotlabs/Module/Blocks.php:160 -#: ../../Zotlabs/Module/Layouts.php:193 +#: ../../Zotlabs/Module/Editpost.php:85 ../../Zotlabs/Module/Layouts.php:193 +#: ../../Zotlabs/Module/Wiki.php:164 ../../Zotlabs/Module/Wiki.php:275 +#: ../../Zotlabs/Module/Blocks.php:160 ../../Zotlabs/Module/Editblock.php:114 #: ../../Zotlabs/Module/Settings/Oauth.php:149 #: ../../Zotlabs/Module/Thing.php:260 ../../Zotlabs/Lib/ThreadItem.php:106 #: ../../Zotlabs/Lib/Apps.php:357 #: ../../extend/addon/addon/cdav/include/widgets.php:125 #: ../../extend/addon/addon/cdav/include/widgets.php:161 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:149 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:251 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:151 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:252 +#: ../../include/channel.php:1042 ../../include/channel.php:1046 #: ../../include/page_widgets.php:9 ../../include/page_widgets.php:39 -#: ../../include/menu.php:113 ../../include/channel.php:1044 -#: ../../include/channel.php:1048 +#: ../../include/menu.php:113 msgid "Edit" msgstr "" #: ../../Zotlabs/Storage/Browser.php:239 ../../Zotlabs/Module/Profiles.php:803 -#: ../../Zotlabs/Module/Editblock.php:139 #: ../../Zotlabs/Module/Connections.php:267 #: ../../Zotlabs/Module/Admin/Profs.php:155 #: ../../Zotlabs/Module/Admin/Accounts.php:173 @@ -313,14 +312,15 @@ msgstr "" #: ../../Zotlabs/Module/Webpages.php:246 #: ../../Zotlabs/Module/Editlayout.php:138 #: ../../Zotlabs/Module/Editwebpage.php:172 ../../Zotlabs/Module/Group.php:177 -#: ../../Zotlabs/Module/Connedit.php:658 ../../Zotlabs/Module/Connedit.php:927 -#: ../../Zotlabs/Module/Blocks.php:162 +#: ../../Zotlabs/Module/Photos.php:1143 ../../Zotlabs/Module/Connedit.php:658 +#: ../../Zotlabs/Module/Connedit.php:927 ../../Zotlabs/Module/Blocks.php:162 +#: ../../Zotlabs/Module/Editblock.php:139 #: ../../Zotlabs/Module/Settings/Oauth.php:150 -#: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Module/Photos.php:1174 -#: ../../Zotlabs/Lib/ThreadItem.php:126 ../../Zotlabs/Lib/Apps.php:358 +#: ../../Zotlabs/Module/Thing.php:261 ../../Zotlabs/Lib/ThreadItem.php:126 +#: ../../Zotlabs/Lib/Apps.php:358 #: ../../extend/addon/addon/cdav/Mod_Cdav.php:864 #: ../../extend/addon/addon/cdav/Mod_Cdav.php:1153 -#: ../../include/conversation.php:656 +#: ../../include/conversation.php:653 msgid "Delete" msgstr "" @@ -357,7 +357,7 @@ msgstr "" msgid "Drop files here to immediately upload" msgstr "" -#: ../../Zotlabs/Web/WebServer.php:127 ../../Zotlabs/Module/Group.php:72 +#: ../../Zotlabs/Web/WebServer.php:130 ../../Zotlabs/Module/Group.php:72 #: ../../Zotlabs/Module/Dreport.php:10 ../../Zotlabs/Module/Dreport.php:68 #: ../../Zotlabs/Module/Import_items.php:114 ../../Zotlabs/Module/Like.php:283 #: ../../Zotlabs/Module/Subthread.php:62 ../../Zotlabs/Module/Profperm.php:28 @@ -368,14 +368,12 @@ msgstr "" msgid "Permission denied" msgstr "" -#: ../../Zotlabs/Web/WebServer.php:128 +#: ../../Zotlabs/Web/WebServer.php:131 #: ../../Zotlabs/Module/Achievements.php:34 ../../Zotlabs/Module/Chat.php:98 #: ../../Zotlabs/Module/Chat.php:103 ../../Zotlabs/Module/Register.php:77 -#: ../../Zotlabs/Module/Item.php:220 ../../Zotlabs/Module/Item.php:230 -#: ../../Zotlabs/Module/Item.php:1037 ../../Zotlabs/Module/Message.php:18 -#: ../../Zotlabs/Module/Profiles.php:198 ../../Zotlabs/Module/Profiles.php:635 -#: ../../Zotlabs/Module/Authtest.php:16 ../../Zotlabs/Module/Bookmarks.php:61 -#: ../../Zotlabs/Module/Editblock.php:67 ../../Zotlabs/Module/Page.php:35 +#: ../../Zotlabs/Module/Message.php:18 ../../Zotlabs/Module/Profiles.php:198 +#: ../../Zotlabs/Module/Profiles.php:635 ../../Zotlabs/Module/Authtest.php:16 +#: ../../Zotlabs/Module/Bookmarks.php:61 ../../Zotlabs/Module/Page.php:35 #: ../../Zotlabs/Module/Page.php:91 ../../Zotlabs/Module/Connections.php:29 #: ../../Zotlabs/Module/Cover_photo.php:281 #: ../../Zotlabs/Module/Cover_photo.php:294 @@ -388,31 +386,32 @@ msgstr "" #: ../../Zotlabs/Module/Editwebpage.php:126 #: ../../Zotlabs/Module/Network.php:15 ../../Zotlabs/Module/Menu.php:78 #: ../../Zotlabs/Module/Editpost.php:17 ../../Zotlabs/Module/Locs.php:87 -#: ../../Zotlabs/Module/Setup.php:212 ../../Zotlabs/Module/Filestorage.php:23 +#: ../../Zotlabs/Module/Layouts.php:71 ../../Zotlabs/Module/Layouts.php:78 +#: ../../Zotlabs/Module/Layouts.php:89 ../../Zotlabs/Module/Filestorage.php:23 #: ../../Zotlabs/Module/Filestorage.php:78 #: ../../Zotlabs/Module/Filestorage.php:93 #: ../../Zotlabs/Module/Filestorage.php:120 #: ../../Zotlabs/Module/Settings.php:59 ../../Zotlabs/Module/Group.php:13 #: ../../Zotlabs/Module/Block.php:26 ../../Zotlabs/Module/Block.php:76 -#: ../../Zotlabs/Module/Wiki.php:50 ../../Zotlabs/Module/Wiki.php:215 -#: ../../Zotlabs/Module/Wiki.php:320 ../../Zotlabs/Module/Manage.php:10 -#: ../../Zotlabs/Module/Connedit.php:385 ../../Zotlabs/Module/Mitem.php:115 -#: ../../Zotlabs/Module/Api.php:24 ../../Zotlabs/Module/Invite.php:17 -#: ../../Zotlabs/Module/Invite.php:94 ../../Zotlabs/Module/New_channel.php:77 -#: ../../Zotlabs/Module/New_channel.php:104 +#: ../../Zotlabs/Module/Photos.php:69 ../../Zotlabs/Module/Manage.php:10 +#: ../../Zotlabs/Module/Mitem.php:115 ../../Zotlabs/Module/Api.php:24 +#: ../../Zotlabs/Module/Invite.php:17 ../../Zotlabs/Module/Invite.php:94 +#: ../../Zotlabs/Module/New_channel.php:77 +#: ../../Zotlabs/Module/New_channel.php:104 ../../Zotlabs/Module/Wiki.php:50 +#: ../../Zotlabs/Module/Wiki.php:215 ../../Zotlabs/Module/Wiki.php:315 #: ../../Zotlabs/Module/Notifications.php:11 ../../Zotlabs/Module/Poke.php:137 -#: ../../Zotlabs/Module/Like.php:181 ../../Zotlabs/Module/Mood.php:116 -#: ../../Zotlabs/Module/Mail.php:164 ../../Zotlabs/Module/Blocks.php:73 -#: ../../Zotlabs/Module/Blocks.php:80 ../../Zotlabs/Module/Layouts.php:71 -#: ../../Zotlabs/Module/Layouts.php:78 ../../Zotlabs/Module/Layouts.php:89 -#: ../../Zotlabs/Module/Rate.php:113 +#: ../../Zotlabs/Module/Connedit.php:385 ../../Zotlabs/Module/Like.php:181 +#: ../../Zotlabs/Module/Mood.php:116 ../../Zotlabs/Module/Mail.php:164 +#: ../../Zotlabs/Module/Blocks.php:73 ../../Zotlabs/Module/Blocks.php:80 +#: ../../Zotlabs/Module/Item.php:220 ../../Zotlabs/Module/Item.php:230 +#: ../../Zotlabs/Module/Item.php:1037 ../../Zotlabs/Module/Rate.php:113 #: ../../Zotlabs/Module/Profile_photo.php:280 #: ../../Zotlabs/Module/Profile_photo.php:293 #: ../../Zotlabs/Module/Appman.php:82 ../../Zotlabs/Module/Common.php:39 -#: ../../Zotlabs/Module/Regmod.php:21 ../../Zotlabs/Module/Pdledit.php:29 -#: ../../Zotlabs/Module/Events.php:271 +#: ../../Zotlabs/Module/Editblock.php:67 ../../Zotlabs/Module/Regmod.php:21 +#: ../../Zotlabs/Module/Pdledit.php:29 ../../Zotlabs/Module/Events.php:271 #: ../../Zotlabs/Module/Service_limits.php:11 -#: ../../Zotlabs/Module/Sharedwithme.php:11 +#: ../../Zotlabs/Module/Setup.php:212 ../../Zotlabs/Module/Sharedwithme.php:11 #: ../../Zotlabs/Module/Viewsrc.php:18 ../../Zotlabs/Module/Sources.php:74 #: ../../Zotlabs/Module/Channel.php:115 ../../Zotlabs/Module/Channel.php:245 #: ../../Zotlabs/Module/Channel.php:285 ../../Zotlabs/Module/Suggest.php:28 @@ -420,20 +419,20 @@ msgstr "" #: ../../Zotlabs/Module/Thing.php:335 #: ../../Zotlabs/Module/Viewconnections.php:28 #: ../../Zotlabs/Module/Viewconnections.php:33 -#: ../../Zotlabs/Module/Photos.php:73 ../../Zotlabs/Module/Profile.php:83 -#: ../../Zotlabs/Module/Profile.php:100 ../../Zotlabs/Lib/Chatroom.php:137 +#: ../../Zotlabs/Module/Profile.php:83 ../../Zotlabs/Module/Profile.php:100 +#: ../../Zotlabs/Lib/Chatroom.php:137 #: ../../extend/addon/addon/keepout/keepout.php:36 #: ../../extend/addon/addon/pumpio/pumpio.php:40 #: ../../extend/addon/addon/openid/Mod_Id.php:53 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:194 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:291 -#: ../../include/photos.php:28 ../../include/items.php:3360 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:196 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:292 +#: ../../include/photos.php:28 ../../include/items.php:3358 #: ../../include/attach.php:144 ../../include/attach.php:191 #: ../../include/attach.php:255 ../../include/attach.php:269 -#: ../../include/attach.php:276 ../../include/attach.php:343 -#: ../../include/attach.php:357 ../../include/attach.php:364 -#: ../../include/attach.php:441 ../../include/attach.php:908 -#: ../../include/attach.php:979 ../../include/attach.php:1137 +#: ../../include/attach.php:276 ../../include/attach.php:344 +#: ../../include/attach.php:358 ../../include/attach.php:365 +#: ../../include/attach.php:442 ../../include/attach.php:909 +#: ../../include/attach.php:983 ../../include/attach.php:1148 msgid "Permission denied." msgstr "" @@ -457,12 +456,12 @@ msgid "Welcome %s. Remote authentication successful." msgstr "" #: ../../Zotlabs/Module/Achievements.php:15 -#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Editblock.php:31 -#: ../../Zotlabs/Module/Webpages.php:33 ../../Zotlabs/Module/Editlayout.php:31 -#: ../../Zotlabs/Module/Editwebpage.php:32 -#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Blocks.php:33 -#: ../../Zotlabs/Module/Layouts.php:31 ../../Zotlabs/Module/Hcard.php:12 -#: ../../Zotlabs/Module/Profile.php:20 ../../include/channel.php:945 +#: ../../Zotlabs/Module/Connect.php:17 ../../Zotlabs/Module/Webpages.php:33 +#: ../../Zotlabs/Module/Editlayout.php:31 +#: ../../Zotlabs/Module/Editwebpage.php:32 ../../Zotlabs/Module/Layouts.php:31 +#: ../../Zotlabs/Module/Filestorage.php:59 ../../Zotlabs/Module/Hcard.php:12 +#: ../../Zotlabs/Module/Blocks.php:33 ../../Zotlabs/Module/Editblock.php:31 +#: ../../Zotlabs/Module/Profile.php:20 ../../include/channel.php:943 msgid "Requested profile is not available." msgstr "" @@ -472,7 +471,7 @@ msgstr "" #: ../../Zotlabs/Module/Chat.php:25 ../../Zotlabs/Module/Channel.php:32 #: ../../extend/addon/addon/chess/chess.php:403 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:26 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:28 msgid "You must be logged in to see this page." msgstr "" @@ -489,33 +488,33 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Account_edit.php:74 #: ../../Zotlabs/Module/Admin/Accounts.php:166 #: ../../Zotlabs/Module/Admin/Channels.php:147 -#: ../../Zotlabs/Module/Admin/Site.php:268 +#: ../../Zotlabs/Module/Admin/Site.php:279 #: ../../Zotlabs/Module/Admin/Plugins.php:438 #: ../../Zotlabs/Module/Admin/Themes.php:158 ../../Zotlabs/Module/Locs.php:121 -#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:350 #: ../../Zotlabs/Module/Filestorage.php:165 ../../Zotlabs/Module/Group.php:85 -#: ../../Zotlabs/Module/Cal.php:342 ../../Zotlabs/Module/Wiki.php:168 +#: ../../Zotlabs/Module/Cal.php:342 ../../Zotlabs/Module/Photos.php:657 +#: ../../Zotlabs/Module/Photos.php:1022 ../../Zotlabs/Module/Photos.php:1062 +#: ../../Zotlabs/Module/Photos.php:1180 #: ../../Zotlabs/Module/Import_items.php:122 -#: ../../Zotlabs/Module/Connedit.php:890 ../../Zotlabs/Module/Mitem.php:243 -#: ../../Zotlabs/Module/Invite.php:149 ../../Zotlabs/Module/Poke.php:186 -#: ../../Zotlabs/Module/Pconfig.php:107 ../../Zotlabs/Module/Mood.php:139 -#: ../../Zotlabs/Module/Mail.php:413 ../../Zotlabs/Module/Rate.php:166 -#: ../../Zotlabs/Module/Appman.php:134 ../../Zotlabs/Module/Pdledit.php:74 -#: ../../Zotlabs/Module/Events.php:493 ../../Zotlabs/Module/Sources.php:114 -#: ../../Zotlabs/Module/Sources.php:149 +#: ../../Zotlabs/Module/Mitem.php:243 ../../Zotlabs/Module/Invite.php:149 +#: ../../Zotlabs/Module/Wiki.php:168 ../../Zotlabs/Module/Poke.php:186 +#: ../../Zotlabs/Module/Connedit.php:890 ../../Zotlabs/Module/Pconfig.php:107 +#: ../../Zotlabs/Module/Mood.php:139 ../../Zotlabs/Module/Mail.php:413 +#: ../../Zotlabs/Module/Rate.php:166 ../../Zotlabs/Module/Appman.php:134 +#: ../../Zotlabs/Module/Pdledit.php:74 ../../Zotlabs/Module/Events.php:493 +#: ../../Zotlabs/Module/Setup.php:309 ../../Zotlabs/Module/Setup.php:350 +#: ../../Zotlabs/Module/Sources.php:114 ../../Zotlabs/Module/Sources.php:149 #: ../../Zotlabs/Module/Settings/Features.php:47 #: ../../Zotlabs/Module/Settings/Oauth.php:87 #: ../../Zotlabs/Module/Settings/Account.php:118 #: ../../Zotlabs/Module/Settings/Display.php:203 #: ../../Zotlabs/Module/Settings/Featured.php:50 -#: ../../Zotlabs/Module/Settings/Permcats.php:112 #: ../../Zotlabs/Module/Settings/Tokens.php:168 #: ../../Zotlabs/Module/Settings/Channel.php:476 +#: ../../Zotlabs/Module/Settings/Permcats.php:110 #: ../../Zotlabs/Module/Thing.php:320 ../../Zotlabs/Module/Thing.php:370 -#: ../../Zotlabs/Module/Import.php:507 ../../Zotlabs/Module/Photos.php:667 -#: ../../Zotlabs/Module/Photos.php:1053 ../../Zotlabs/Module/Photos.php:1093 -#: ../../Zotlabs/Module/Photos.php:1211 ../../Zotlabs/Module/Xchan.php:15 -#: ../../Zotlabs/Lib/ThreadItem.php:731 +#: ../../Zotlabs/Module/Import.php:507 ../../Zotlabs/Module/Xchan.php:15 +#: ../../Zotlabs/Lib/ThreadItem.php:730 #: ../../Zotlabs/Widget/Eventstools.php:16 #: ../../extend/addon/addon/chords/Mod_Chords.php:60 #: ../../extend/addon/addon/dwpost/dwpost.php:89 @@ -559,7 +558,7 @@ msgstr "" #: ../../extend/addon/addon/cdav/cdav.php:246 #: ../../extend/addon/addon/likebanner/likebanner.php:57 #: ../../extend/addon/addon/mailtest/mailtest.php:100 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:153 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:155 #: ../../include/js_strings.php:22 #: ../../view/theme/redbasic/php/config.php:106 msgid "Submit" @@ -586,19 +585,19 @@ msgid "Bookmark this room" msgstr "" #: ../../Zotlabs/Module/Chat.php:203 ../../Zotlabs/Module/Mail.php:240 -#: ../../Zotlabs/Module/Mail.php:349 ../../include/conversation.php:1330 +#: ../../Zotlabs/Module/Mail.php:349 ../../include/conversation.php:1236 msgid "Please enter a link URL:" msgstr "" #: ../../Zotlabs/Module/Chat.php:204 ../../Zotlabs/Module/Mail.php:293 -#: ../../Zotlabs/Module/Mail.php:418 ../../Zotlabs/Lib/ThreadItem.php:743 -#: ../../include/conversation.php:1440 +#: ../../Zotlabs/Module/Mail.php:418 ../../Zotlabs/Lib/ThreadItem.php:742 +#: ../../include/conversation.php:1346 msgid "Encrypt text" msgstr "" -#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Editblock.php:116 -#: ../../Zotlabs/Module/Editwebpage.php:148 ../../Zotlabs/Module/Mail.php:287 -#: ../../Zotlabs/Module/Mail.php:412 ../../include/conversation.php:1295 +#: ../../Zotlabs/Module/Chat.php:205 ../../Zotlabs/Module/Editwebpage.php:148 +#: ../../Zotlabs/Module/Mail.php:287 ../../Zotlabs/Module/Mail.php:412 +#: ../../Zotlabs/Module/Editblock.php:116 ../../include/conversation.php:1201 msgid "Insert web link" msgstr "" @@ -619,9 +618,9 @@ msgid "Expiration of chats (minutes)" msgstr "" #: ../../Zotlabs/Module/Chat.php:232 ../../Zotlabs/Module/Filestorage.php:152 +#: ../../Zotlabs/Module/Photos.php:647 ../../Zotlabs/Module/Photos.php:1011 #: ../../Zotlabs/Module/Connedit.php:680 ../../Zotlabs/Module/Thing.php:313 -#: ../../Zotlabs/Module/Thing.php:363 ../../Zotlabs/Module/Photos.php:657 -#: ../../Zotlabs/Module/Photos.php:1042 ../../include/acl_selectors.php:218 +#: ../../Zotlabs/Module/Thing.php:363 ../../include/acl_selectors.php:218 msgid "Permissions" msgstr "" @@ -635,8 +634,8 @@ msgid "No chatrooms available" msgstr "" #: ../../Zotlabs/Module/Chat.php:253 ../../Zotlabs/Module/Profiles.php:834 -#: ../../Zotlabs/Module/Wiki.php:167 ../../Zotlabs/Module/Manage.php:143 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:152 +#: ../../Zotlabs/Module/Manage.php:143 ../../Zotlabs/Module/Wiki.php:167 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:154 msgid "Create New" msgstr "" @@ -771,7 +770,7 @@ msgid "yes" msgstr "" #: ../../Zotlabs/Module/Register.php:253 -#: ../../Zotlabs/Module/Admin/Site.php:269 +#: ../../Zotlabs/Module/Admin/Site.php:280 msgid "Registration" msgstr "" @@ -780,7 +779,7 @@ msgid "Membership on this site is by invitation only." msgstr "" #: ../../Zotlabs/Module/Register.php:270 ../../include/nav.php:162 -#: ../../boot.php:1671 +#: ../../boot.php:1587 msgid "Register" msgstr "" @@ -795,34 +794,30 @@ msgstr "" msgid "Fetching URL returns error: %1$s" msgstr "" -#: ../../Zotlabs/Module/Item.php:184 -msgid "Unable to locate original post." -msgstr "" - -#: ../../Zotlabs/Module/Item.php:450 -msgid "Empty post discarded." +#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:203 +msgid "webpage" msgstr "" -#: ../../Zotlabs/Module/Item.php:824 -msgid "Duplicate post suppressed." +#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:209 +msgid "block" msgstr "" -#: ../../Zotlabs/Module/Item.php:954 -msgid "System error. Post not saved." +#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:206 +msgid "layout" msgstr "" -#: ../../Zotlabs/Module/Item.php:1084 -msgid "Unable to obtain post information from database." +#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:212 +msgid "menu" msgstr "" -#: ../../Zotlabs/Module/Item.php:1091 +#: ../../Zotlabs/Module/Impel.php:181 #, php-format -msgid "You have reached your limit of %1$.0f top level posts." +msgid "%s element installed" msgstr "" -#: ../../Zotlabs/Module/Item.php:1098 +#: ../../Zotlabs/Module/Impel.php:184 #, php-format -msgid "You have reached your limit of %1$.0f webpages." +msgid "%s element installation failed" msgstr "" #: ../../Zotlabs/Module/Profiles.php:24 ../../Zotlabs/Module/Profiles.php:184 @@ -923,17 +918,17 @@ msgid "Hide your connections list from viewers of this profile" msgstr "" #: ../../Zotlabs/Module/Profiles.php:681 -#: ../../Zotlabs/Module/Admin/Site.php:226 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Admin/Site.php:237 ../../Zotlabs/Module/Menu.php:100 #: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 ../../Zotlabs/Module/Wiki.php:179 -#: ../../Zotlabs/Module/Connedit.php:399 ../../Zotlabs/Module/Connedit.php:783 -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:163 -#: ../../Zotlabs/Module/Mitem.php:240 ../../Zotlabs/Module/Mitem.php:241 -#: ../../Zotlabs/Module/Api.php:97 ../../Zotlabs/Module/Events.php:470 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Photos.php:642 ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 +#: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Api.php:97 +#: ../../Zotlabs/Module/Wiki.php:179 ../../Zotlabs/Module/Connedit.php:399 +#: ../../Zotlabs/Module/Connedit.php:783 ../../Zotlabs/Module/Events.php:470 #: ../../Zotlabs/Module/Events.php:471 ../../Zotlabs/Module/Removeme.php:63 #: ../../Zotlabs/Module/Settings/Display.php:103 #: ../../Zotlabs/Module/Settings/Channel.php:294 -#: ../../Zotlabs/Module/Photos.php:652 #: ../../extend/addon/addon/dwpost/dwpost.php:73 #: ../../extend/addon/addon/dwpost/dwpost.php:85 #: ../../extend/addon/addon/flattrwidget/flattrwidget.php:120 @@ -978,25 +973,25 @@ msgstr "" #: ../../extend/addon/addon/wppost/wppost.php:109 #: ../../extend/addon/addon/xmpp/xmpp.php:53 #: ../../extend/addon/addon/cdav/cdav.php:234 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:164 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:166 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1694 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1610 msgid "No" msgstr "" #: ../../Zotlabs/Module/Profiles.php:681 -#: ../../Zotlabs/Module/Admin/Site.php:228 ../../Zotlabs/Module/Menu.php:100 +#: ../../Zotlabs/Module/Admin/Site.php:239 ../../Zotlabs/Module/Menu.php:100 #: ../../Zotlabs/Module/Menu.php:157 ../../Zotlabs/Module/Filestorage.php:160 -#: ../../Zotlabs/Module/Filestorage.php:168 ../../Zotlabs/Module/Wiki.php:179 -#: ../../Zotlabs/Module/Connedit.php:399 ../../Zotlabs/Module/Mitem.php:162 +#: ../../Zotlabs/Module/Filestorage.php:168 +#: ../../Zotlabs/Module/Photos.php:642 ../../Zotlabs/Module/Mitem.php:162 #: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:240 #: ../../Zotlabs/Module/Mitem.php:241 ../../Zotlabs/Module/Api.php:96 +#: ../../Zotlabs/Module/Wiki.php:179 ../../Zotlabs/Module/Connedit.php:399 #: ../../Zotlabs/Module/Events.php:470 ../../Zotlabs/Module/Events.php:471 #: ../../Zotlabs/Module/Removeme.php:63 #: ../../Zotlabs/Module/Settings/Display.php:103 #: ../../Zotlabs/Module/Settings/Channel.php:294 -#: ../../Zotlabs/Module/Photos.php:652 #: ../../extend/addon/addon/dwpost/dwpost.php:73 #: ../../extend/addon/addon/dwpost/dwpost.php:85 #: ../../extend/addon/addon/flattrwidget/flattrwidget.php:120 @@ -1041,10 +1036,10 @@ msgstr "" #: ../../extend/addon/addon/wppost/wppost.php:109 #: ../../extend/addon/addon/xmpp/xmpp.php:53 #: ../../extend/addon/addon/cdav/cdav.php:234 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:164 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:166 #: ../../include/dir_fns.php:143 ../../include/dir_fns.php:144 #: ../../include/dir_fns.php:145 ../../view/theme/redbasic/php/config.php:111 -#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1694 +#: ../../view/theme/redbasic/php/config.php:136 ../../boot.php:1610 msgid "Yes" msgstr "" @@ -1057,7 +1052,7 @@ msgid "View this profile" msgstr "" #: ../../Zotlabs/Module/Profiles.php:728 ../../Zotlabs/Module/Profiles.php:827 -#: ../../include/channel.php:1066 +#: ../../include/channel.php:1064 msgid "Edit visibility" msgstr "" @@ -1069,7 +1064,7 @@ msgstr "" msgid "Change cover photo" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:731 ../../include/channel.php:1037 +#: ../../Zotlabs/Module/Profiles.php:731 ../../include/channel.php:1035 msgid "Change profile photo" msgstr "" @@ -1089,7 +1084,7 @@ msgstr "" msgid "Add profile things" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:736 ../../include/conversation.php:1715 +#: ../../Zotlabs/Module/Profiles.php:736 ../../include/conversation.php:1621 msgid "Personal" msgstr "" @@ -1323,7 +1318,7 @@ msgstr "" #: ../../Zotlabs/Module/Profiles.php:804 #: ../../Zotlabs/Module/Admin/Plugins.php:423 #: ../../Zotlabs/Module/Fbrowser.php:66 ../../Zotlabs/Module/Fbrowser.php:88 -#: ../../Zotlabs/Module/Wiki.php:270 ../../Zotlabs/Module/Wiki.php:295 +#: ../../Zotlabs/Module/Wiki.php:265 ../../Zotlabs/Module/Wiki.php:290 #: ../../Zotlabs/Module/Connedit.php:928 #: ../../Zotlabs/Module/Settings/Oauth.php:88 #: ../../Zotlabs/Module/Settings/Oauth.php:114 @@ -1331,18 +1326,18 @@ msgstr "" #: ../../extend/addon/addon/js_upload/js_upload.php:46 #: ../../extend/addon/addon/cdav/Mod_Cdav.php:866 #: ../../extend/addon/addon/cdav/Mod_Cdav.php:1154 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:243 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:266 -#: ../../include/conversation.php:1394 ../../include/conversation.php:1443 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:244 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:267 +#: ../../include/conversation.php:1300 ../../include/conversation.php:1349 msgid "Cancel" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:823 ../../include/channel.php:1062 +#: ../../Zotlabs/Module/Profiles.php:823 ../../include/channel.php:1060 msgid "Profile Image" msgstr "" -#: ../../Zotlabs/Module/Profiles.php:833 ../../include/nav.php:105 -#: ../../include/channel.php:1044 +#: ../../Zotlabs/Module/Profiles.php:833 ../../include/channel.php:1042 +#: ../../include/nav.php:105 msgid "Edit Profiles" msgstr "" @@ -1350,7 +1345,7 @@ msgstr "" msgid "Documentation Search" msgstr "" -#: ../../Zotlabs/Module/Help.php:80 ../../include/conversation.php:1827 +#: ../../Zotlabs/Module/Help.php:80 ../../include/conversation.php:1733 msgid "About" msgstr "" @@ -1438,7 +1433,7 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Themes.php:72 #: ../../Zotlabs/Module/Filestorage.php:32 ../../Zotlabs/Module/Display.php:35 #: ../../Zotlabs/Module/Viewsrc.php:24 ../../Zotlabs/Module/Thing.php:89 -#: ../../include/items.php:3281 +#: ../../include/items.php:3279 msgid "Item not found." msgstr "" @@ -1482,7 +1477,7 @@ msgstr "" #: ../../Zotlabs/Module/Admin/Security.php:86 #: ../../Zotlabs/Module/Admin/Accounts.php:164 #: ../../Zotlabs/Module/Admin/Channels.php:145 -#: ../../Zotlabs/Module/Admin/Site.php:266 +#: ../../Zotlabs/Module/Admin/Site.php:277 #: ../../Zotlabs/Module/Admin/Plugins.php:341 #: ../../Zotlabs/Module/Admin/Plugins.php:436 #: ../../Zotlabs/Module/Admin/Themes.php:122 @@ -1522,24 +1517,130 @@ msgstr "" msgid "Repository version (dev)" msgstr "" -#: ../../Zotlabs/Module/Editblock.php:79 ../../Zotlabs/Module/Editblock.php:95 -#: ../../Zotlabs/Module/Editlayout.php:79 -#: ../../Zotlabs/Module/Editwebpage.php:80 -#: ../../Zotlabs/Module/Editpost.php:24 -msgid "Item not found" +#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Photos.php:490 +#: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Search.php:17 +#: ../../Zotlabs/Module/Display.php:22 +#: ../../Zotlabs/Module/Viewconnections.php:23 +msgid "Public access denied." msgstr "" -#: ../../Zotlabs/Module/Editblock.php:113 ../../Zotlabs/Module/Blocks.php:97 -#: ../../Zotlabs/Module/Blocks.php:155 -msgid "Block Name" +#: ../../Zotlabs/Module/Directory.php:245 +#, php-format +msgid "%d rating" +msgid_plural "%d ratings" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Directory.php:256 +msgid "Gender: " msgstr "" -#: ../../Zotlabs/Module/Editblock.php:129 ../../include/conversation.php:1406 -msgid "Title (optional)" +#: ../../Zotlabs/Module/Directory.php:258 +msgid "Status: " msgstr "" -#: ../../Zotlabs/Module/Editblock.php:138 -msgid "Edit Block" +#: ../../Zotlabs/Module/Directory.php:260 +msgid "Homepage: " +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:309 ../../include/channel.php:1271 +msgid "Age:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:314 ../../include/channel.php:1132 +#: ../../include/event.php:52 ../../include/event.php:84 +msgid "Location:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:320 +msgid "Description:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:325 ../../include/channel.php:1287 +msgid "Hometown:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:327 ../../include/channel.php:1295 +msgid "About:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:328 ../../Zotlabs/Module/Suggest.php:54 +#: ../../Zotlabs/Widget/Follow.php:32 ../../Zotlabs/Widget/Suggestions.php:44 +#: ../../include/connections.php:110 ../../include/channel.php:1117 +#: ../../include/conversation.php:975 +msgid "Connect" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:329 +msgid "Public Forum:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:332 +msgid "Keywords: " +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:335 +msgid "Don't suggest" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:337 +msgid "Common connections:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:386 +msgid "Global Directory" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:386 +msgid "Local Directory" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:391 +#: ../../Zotlabs/Module/Directory.php:396 +#: ../../Zotlabs/Module/Connections.php:315 +#: ../../include/contact_widgets.php:23 +msgid "Find" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:392 +msgid "Finding:" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:395 ../../Zotlabs/Module/Suggest.php:62 +#: ../../include/contact_widgets.php:24 +msgid "Channel Suggestions" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:397 +msgid "next page" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:397 +msgid "previous page" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:398 +msgid "Sort options" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:399 +msgid "Alphabetic" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:400 +msgid "Reverse Alphabetic" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:401 +msgid "Newest to Oldest" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:402 +msgid "Oldest to Newest" +msgstr "" + +#: ../../Zotlabs/Module/Directory.php:419 +msgid "No entries (some entries may be hidden)." msgstr "" #: ../../Zotlabs/Module/Page.php:40 ../../Zotlabs/Module/Block.php:31 @@ -1623,7 +1724,7 @@ msgstr "" #: ../../Zotlabs/Module/Connections.php:72 #: ../../Zotlabs/Module/Connections.php:82 ../../Zotlabs/Module/Menu.php:116 -#: ../../include/conversation.php:1724 +#: ../../include/conversation.php:1630 msgid "New" msgstr "" @@ -1745,12 +1846,6 @@ msgstr "" msgid "Connections search" msgstr "" -#: ../../Zotlabs/Module/Connections.php:315 -#: ../../Zotlabs/Module/Directory.php:391 -#: ../../Zotlabs/Module/Directory.php:396 ../../include/contact_widgets.php:23 -msgid "Find" -msgstr "" - #: ../../Zotlabs/Module/Cover_photo.php:56 #: ../../Zotlabs/Module/Profile_photo.php:61 msgid "Image uploaded but image cropping failed." @@ -1781,30 +1876,30 @@ msgstr "" msgid "Unable to process image." msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4189 +#: ../../Zotlabs/Module/Cover_photo.php:237 ../../include/items.php:4187 msgid "female" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4190 +#: ../../Zotlabs/Module/Cover_photo.php:238 ../../include/items.php:4188 #, php-format msgid "%1$s updated her %2$s" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4191 +#: ../../Zotlabs/Module/Cover_photo.php:239 ../../include/items.php:4189 msgid "male" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4192 +#: ../../Zotlabs/Module/Cover_photo.php:240 ../../include/items.php:4190 #, php-format msgid "%1$s updated his %2$s" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:242 ../../include/items.php:4194 +#: ../../Zotlabs/Module/Cover_photo.php:242 ../../include/items.php:4192 #, php-format msgid "%1$s updated their %2$s" msgstr "" -#: ../../Zotlabs/Module/Cover_photo.php:244 ../../include/channel.php:1759 +#: ../../Zotlabs/Module/Cover_photo.php:244 ../../include/channel.php:1737 msgid "cover photo" msgstr "" @@ -2314,7 +2409,7 @@ msgid "Disallow Code" msgstr "" #: ../../Zotlabs/Module/Admin/Channels.php:154 -#: ../../include/conversation.php:1815 +#: ../../include/conversation.php:1721 msgid "Channel" msgstr "" @@ -2402,379 +2497,391 @@ msgstr "" msgid "Last known contact" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:133 +#: ../../Zotlabs/Module/Admin/Site.php:144 msgid "Site settings updated." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:159 ../../include/text.php:2906 +#: ../../Zotlabs/Module/Admin/Site.php:170 ../../include/text.php:2906 msgid "Default" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:170 +#: ../../Zotlabs/Module/Admin/Site.php:181 #: ../../Zotlabs/Module/Settings/Display.php:137 #, php-format msgid "%s - (Incompatible)" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:177 +#: ../../Zotlabs/Module/Admin/Site.php:188 #: ../../Zotlabs/Module/Settings/Display.php:151 msgid "mobile" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:179 +#: ../../Zotlabs/Module/Admin/Site.php:190 msgid "experimental" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:181 +#: ../../Zotlabs/Module/Admin/Site.php:192 msgid "unsupported" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:227 +#: ../../Zotlabs/Module/Admin/Site.php:238 msgid "Yes - with approval" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:233 +#: ../../Zotlabs/Module/Admin/Site.php:244 msgid "My site is not a public server" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:234 +#: ../../Zotlabs/Module/Admin/Site.php:245 msgid "My site has paid access only" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:235 +#: ../../Zotlabs/Module/Admin/Site.php:246 msgid "My site has free access only" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:236 +#: ../../Zotlabs/Module/Admin/Site.php:247 msgid "My site offers free accounts with optional paid upgrades" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:247 +#: ../../Zotlabs/Module/Admin/Site.php:258 msgid "Basic/Minimal Social Networking" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:248 +#: ../../Zotlabs/Module/Admin/Site.php:259 msgid "Standard Configuration (default)" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:249 +#: ../../Zotlabs/Module/Admin/Site.php:260 msgid "Professional" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:253 ../../Zotlabs/Lib/Techlevels.php:10 +#: ../../Zotlabs/Module/Admin/Site.php:264 ../../Zotlabs/Lib/Techlevels.php:10 msgid "Beginner/Basic" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:254 ../../Zotlabs/Lib/Techlevels.php:11 +#: ../../Zotlabs/Module/Admin/Site.php:265 ../../Zotlabs/Lib/Techlevels.php:11 msgid "Novice - not skilled but willing to learn" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:255 ../../Zotlabs/Lib/Techlevels.php:12 +#: ../../Zotlabs/Module/Admin/Site.php:266 ../../Zotlabs/Lib/Techlevels.php:12 msgid "Intermediate - somewhat comfortable" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:256 ../../Zotlabs/Lib/Techlevels.php:13 +#: ../../Zotlabs/Module/Admin/Site.php:267 ../../Zotlabs/Lib/Techlevels.php:13 msgid "Advanced - very comfortable" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:257 ../../Zotlabs/Lib/Techlevels.php:14 +#: ../../Zotlabs/Module/Admin/Site.php:268 ../../Zotlabs/Lib/Techlevels.php:14 msgid "Expert - I can write computer code" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:258 ../../Zotlabs/Lib/Techlevels.php:15 +#: ../../Zotlabs/Module/Admin/Site.php:269 ../../Zotlabs/Lib/Techlevels.php:15 msgid "Wizard - I probably know more than you do" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:267 ../../Zotlabs/Widget/Admin.php:22 +#: ../../Zotlabs/Module/Admin/Site.php:278 ../../Zotlabs/Widget/Admin.php:22 msgid "Site" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:270 +#: ../../Zotlabs/Module/Admin/Site.php:281 msgid "File upload" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:271 +#: ../../Zotlabs/Module/Admin/Site.php:282 msgid "Policies" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:272 +#: ../../Zotlabs/Module/Admin/Site.php:283 #: ../../include/contact_widgets.php:16 msgid "Advanced" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:276 +#: ../../Zotlabs/Module/Admin/Site.php:287 #: ../../extend/addon/addon/statusnet/statusnet.php:890 msgid "Site name" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:278 +#: ../../Zotlabs/Module/Admin/Site.php:289 msgid "Server Configuration/Role" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:280 +#: ../../Zotlabs/Module/Admin/Site.php:291 msgid "Site default technical skill level" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:280 +#: ../../Zotlabs/Module/Admin/Site.php:291 msgid "Used to provide a member experience matched to technical comfort level" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:282 +#: ../../Zotlabs/Module/Admin/Site.php:293 msgid "Lock the technical skill level setting" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:282 +#: ../../Zotlabs/Module/Admin/Site.php:293 msgid "Members can set their own technical comfort level by default" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:284 +#: ../../Zotlabs/Module/Admin/Site.php:295 msgid "Banner/Logo" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:285 +#: ../../Zotlabs/Module/Admin/Site.php:296 msgid "Administrator Information" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:285 +#: ../../Zotlabs/Module/Admin/Site.php:296 msgid "" "Contact information for site administrators. Displayed on siteinfo page. " "BBCode can be used here" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:286 +#: ../../Zotlabs/Module/Admin/Site.php:297 #: ../../Zotlabs/Module/Siteinfo.php:23 msgid "Site Information" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:286 +#: ../../Zotlabs/Module/Admin/Site.php:297 msgid "" "Publicly visible description of this site. Displayed on siteinfo page. " "BBCode can be used here" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:287 +#: ../../Zotlabs/Module/Admin/Site.php:298 msgid "System language" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:288 +#: ../../Zotlabs/Module/Admin/Site.php:299 msgid "System theme" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:288 +#: ../../Zotlabs/Module/Admin/Site.php:299 msgid "" "Default system theme - may be over-ridden by user profiles - <a href='#' " "id='cnftheme'>change theme settings</a>" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:289 +#: ../../Zotlabs/Module/Admin/Site.php:300 msgid "Mobile system theme" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:289 +#: ../../Zotlabs/Module/Admin/Site.php:300 msgid "Theme for mobile devices" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:291 +#: ../../Zotlabs/Module/Admin/Site.php:302 msgid "Allow Feeds as Connections" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:291 +#: ../../Zotlabs/Module/Admin/Site.php:302 msgid "(Heavy system resource usage)" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:292 +#: ../../Zotlabs/Module/Admin/Site.php:303 msgid "Maximum image size" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:292 +#: ../../Zotlabs/Module/Admin/Site.php:303 msgid "" "Maximum size in bytes of uploaded images. Default is 0, which means no " "limits." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:293 +#: ../../Zotlabs/Module/Admin/Site.php:304 msgid "Does this site allow new member registration?" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:294 +#: ../../Zotlabs/Module/Admin/Site.php:305 msgid "Invitation only" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:294 +#: ../../Zotlabs/Module/Admin/Site.php:305 msgid "" "Only allow new member registrations with an invitation code. Above register " "policy must be set to Yes." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:295 +#: ../../Zotlabs/Module/Admin/Site.php:306 msgid "Which best describes the types of account offered by this hub?" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:296 +#: ../../Zotlabs/Module/Admin/Site.php:307 msgid "Register text" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:296 +#: ../../Zotlabs/Module/Admin/Site.php:307 msgid "Will be displayed prominently on the registration page." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:297 +#: ../../Zotlabs/Module/Admin/Site.php:308 msgid "Site homepage to show visitors (default: login box)" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:297 +#: ../../Zotlabs/Module/Admin/Site.php:308 msgid "" "example: 'public' to show public stream, 'page/sys/home' to show a system " "webpage called 'home' or 'include:home.html' to include a file." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:298 +#: ../../Zotlabs/Module/Admin/Site.php:309 msgid "Preserve site homepage URL" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:298 +#: ../../Zotlabs/Module/Admin/Site.php:309 msgid "" "Present the site homepage in a frame at the original location instead of " "redirecting" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:299 +#: ../../Zotlabs/Module/Admin/Site.php:310 msgid "Accounts abandoned after x days" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:299 +#: ../../Zotlabs/Module/Admin/Site.php:310 msgid "" "Will not waste system resources polling external sites for abandonded " "accounts. Enter 0 for no time limit." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:300 +#: ../../Zotlabs/Module/Admin/Site.php:311 msgid "Allowed friend domains" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:300 +#: ../../Zotlabs/Module/Admin/Site.php:311 msgid "" "Comma separated list of domains which are allowed to establish friendships " "with this site. Wildcards are accepted. Empty to allow any domains" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:301 +#: ../../Zotlabs/Module/Admin/Site.php:312 msgid "Verify Email Addresses" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:301 +#: ../../Zotlabs/Module/Admin/Site.php:312 msgid "" "Check to verify email addresses used in account registration (recommended)." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:302 +#: ../../Zotlabs/Module/Admin/Site.php:313 msgid "Force publish" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:302 +#: ../../Zotlabs/Module/Admin/Site.php:313 msgid "" "Check to force all profiles on this site to be listed in the site directory." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:303 +#: ../../Zotlabs/Module/Admin/Site.php:314 msgid "Import Public Streams" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:303 +#: ../../Zotlabs/Module/Admin/Site.php:314 msgid "" "Import and allow access to public content pulled from other sites. Warning: " "this content is unmoderated." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:304 +#: ../../Zotlabs/Module/Admin/Site.php:315 msgid "Login on Homepage" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:304 +#: ../../Zotlabs/Module/Admin/Site.php:315 msgid "" "Present a login box to visitors on the home page if no other content has " "been configured." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:305 +#: ../../Zotlabs/Module/Admin/Site.php:316 msgid "Enable context help" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:305 +#: ../../Zotlabs/Module/Admin/Site.php:316 msgid "" "Display contextual help for the current page when the help button is pressed." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:307 +#: ../../Zotlabs/Module/Admin/Site.php:318 +msgid "Reply-to email address for system generated email." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:319 +msgid "Sender (From) email address for system generated email." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:320 +msgid "Name of email sender for system generated email." +msgstr "" + +#: ../../Zotlabs/Module/Admin/Site.php:322 msgid "Directory Server URL" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:307 +#: ../../Zotlabs/Module/Admin/Site.php:322 msgid "Default directory server" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:309 +#: ../../Zotlabs/Module/Admin/Site.php:324 msgid "Proxy user" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:310 +#: ../../Zotlabs/Module/Admin/Site.php:325 msgid "Proxy URL" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:311 +#: ../../Zotlabs/Module/Admin/Site.php:326 msgid "Network timeout" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:311 +#: ../../Zotlabs/Module/Admin/Site.php:326 msgid "Value is in seconds. Set to 0 for unlimited (not recommended)." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:312 +#: ../../Zotlabs/Module/Admin/Site.php:327 msgid "Delivery interval" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:312 +#: ../../Zotlabs/Module/Admin/Site.php:327 msgid "" "Delay background delivery processes by this many seconds to reduce system " "load. Recommend: 4-5 for shared hosts, 2-3 for virtual private servers. 0-1 " "for large dedicated servers." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:313 +#: ../../Zotlabs/Module/Admin/Site.php:328 msgid "Deliveries per process" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:313 +#: ../../Zotlabs/Module/Admin/Site.php:328 msgid "" "Number of deliveries to attempt in a single operating system process. Adjust " "if necessary to tune system performance. Recommend: 1-5." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:314 +#: ../../Zotlabs/Module/Admin/Site.php:329 msgid "Poll interval" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:314 +#: ../../Zotlabs/Module/Admin/Site.php:329 msgid "" "Delay background polling processes by this many seconds to reduce system " "load. If 0, use delivery interval." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:315 +#: ../../Zotlabs/Module/Admin/Site.php:330 msgid "Maximum Load Average" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:315 +#: ../../Zotlabs/Module/Admin/Site.php:330 msgid "" "Maximum system load before delivery and poll processes are deferred - " "default 50." msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:316 +#: ../../Zotlabs/Module/Admin/Site.php:331 msgid "Expiration period in days for imported (grid/network) content" msgstr "" -#: ../../Zotlabs/Module/Admin/Site.php:316 +#: ../../Zotlabs/Module/Admin/Site.php:331 msgid "0 for no expiration of imported content" msgstr "" @@ -2895,7 +3002,7 @@ msgid "Switch branch" msgstr "" #: ../../Zotlabs/Module/Admin/Plugins.php:455 -#: ../../Zotlabs/Module/Tagrm.php:137 ../../Zotlabs/Module/Photos.php:984 +#: ../../Zotlabs/Module/Photos.php:960 ../../Zotlabs/Module/Tagrm.php:137 #: ../../extend/addon/addon/superblock/superblock.php:116 msgid "Remove" msgstr "" @@ -2942,28 +3049,28 @@ msgid "Export selected" msgstr "" #: ../../Zotlabs/Module/Webpages.php:241 ../../Zotlabs/Lib/Apps.php:225 -#: ../../include/conversation.php:1889 +#: ../../include/conversation.php:1795 msgid "Webpages" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:245 ../../Zotlabs/Module/Blocks.php:161 -#: ../../Zotlabs/Module/Layouts.php:194 ../../Zotlabs/Module/Photos.php:1073 +#: ../../Zotlabs/Module/Webpages.php:245 ../../Zotlabs/Module/Layouts.php:194 +#: ../../Zotlabs/Module/Photos.php:1042 ../../Zotlabs/Module/Blocks.php:161 #: ../../extend/addon/addon/cdav/include/widgets.php:123 -#: ../../include/conversation.php:1378 +#: ../../include/conversation.php:1284 msgid "Share" msgstr "" #: ../../Zotlabs/Module/Webpages.php:250 ../../Zotlabs/Module/Pubsites.php:59 -#: ../../Zotlabs/Module/Wiki.php:166 ../../Zotlabs/Module/Blocks.php:166 -#: ../../Zotlabs/Module/Layouts.php:198 ../../Zotlabs/Module/Events.php:694 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:151 +#: ../../Zotlabs/Module/Layouts.php:198 ../../Zotlabs/Module/Wiki.php:166 +#: ../../Zotlabs/Module/Blocks.php:166 ../../Zotlabs/Module/Events.php:694 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:153 #: ../../include/page_widgets.php:42 msgid "View" msgstr "" -#: ../../Zotlabs/Module/Webpages.php:251 ../../Zotlabs/Module/Events.php:478 -#: ../../Zotlabs/Module/Photos.php:1094 ../../Zotlabs/Lib/ThreadItem.php:740 -#: ../../include/conversation.php:1347 ../../include/page_widgets.php:43 +#: ../../Zotlabs/Module/Webpages.php:251 ../../Zotlabs/Module/Photos.php:1063 +#: ../../Zotlabs/Module/Events.php:478 ../../Zotlabs/Lib/ThreadItem.php:739 +#: ../../include/conversation.php:1253 ../../include/page_widgets.php:43 msgid "Preview" msgstr "" @@ -2980,13 +3087,13 @@ msgid "Page Title" msgstr "" #: ../../Zotlabs/Module/Webpages.php:255 ../../Zotlabs/Module/Menu.php:114 -#: ../../Zotlabs/Module/Blocks.php:157 ../../Zotlabs/Module/Layouts.php:191 +#: ../../Zotlabs/Module/Layouts.php:191 ../../Zotlabs/Module/Blocks.php:157 #: ../../include/page_widgets.php:47 msgid "Created" msgstr "" #: ../../Zotlabs/Module/Webpages.php:256 ../../Zotlabs/Module/Menu.php:115 -#: ../../Zotlabs/Module/Blocks.php:158 ../../Zotlabs/Module/Layouts.php:192 +#: ../../Zotlabs/Module/Layouts.php:192 ../../Zotlabs/Module/Blocks.php:158 #: ../../include/page_widgets.php:48 msgid "Edited" msgstr "" @@ -3011,6 +3118,13 @@ msgstr "" msgid "Import complete." msgstr "" +#: ../../Zotlabs/Module/Editlayout.php:79 +#: ../../Zotlabs/Module/Editwebpage.php:80 +#: ../../Zotlabs/Module/Editpost.php:24 ../../Zotlabs/Module/Editblock.php:79 +#: ../../Zotlabs/Module/Editblock.php:95 +msgid "Item not found" +msgstr "" + #: ../../Zotlabs/Module/Editlayout.php:128 #: ../../Zotlabs/Module/Layouts.php:129 ../../Zotlabs/Module/Layouts.php:189 msgid "Layout Name" @@ -3273,7 +3387,7 @@ msgid "Software" msgstr "" #: ../../Zotlabs/Module/Pubsites.php:35 ../../Zotlabs/Module/Ratings.php:97 -#: ../../include/conversation.php:941 ../../include/conversation.php:1099 +#: ../../include/conversation.php:1005 msgid "Ratings" msgstr "" @@ -3281,685 +3395,923 @@ msgstr "" msgid "Rate" msgstr "" -#: ../../Zotlabs/Module/Setup.php:176 -msgid "$Projectname Server - Setup" +#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2260 +msgid "Layouts" msgstr "" -#: ../../Zotlabs/Module/Setup.php:180 -msgid "Could not connect to database." +#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:232 +#: ../../include/help.php:55 ../../include/help.php:61 +#: ../../include/nav.php:174 ../../include/nav.php:288 +msgid "Help" msgstr "" -#: ../../Zotlabs/Module/Setup.php:184 -msgid "" -"Could not connect to specified site URL. Possible SSL certificate or DNS " -"issue." +#: ../../Zotlabs/Module/Layouts.php:186 +msgid "Comanche page description language help" msgstr "" -#: ../../Zotlabs/Module/Setup.php:191 -msgid "Could not create table." +#: ../../Zotlabs/Module/Layouts.php:190 +msgid "Layout Description" msgstr "" -#: ../../Zotlabs/Module/Setup.php:196 -msgid "Your site database has been installed." +#: ../../Zotlabs/Module/Layouts.php:195 +msgid "Download PDL file" msgstr "" -#: ../../Zotlabs/Module/Setup.php:200 -msgid "" -"You may need to import the file \"install/schema_xxx.sql\" manually using a " -"database client." +#: ../../Zotlabs/Module/Apps.php:45 ../../include/nav.php:178 +msgid "Apps" msgstr "" -#: ../../Zotlabs/Module/Setup.php:201 ../../Zotlabs/Module/Setup.php:263 -#: ../../Zotlabs/Module/Setup.php:743 -msgid "Please see the file \"install/INSTALL.txt\"." +#: ../../Zotlabs/Module/Apps.php:48 +msgid "Manage apps" msgstr "" -#: ../../Zotlabs/Module/Setup.php:260 -msgid "System check" +#: ../../Zotlabs/Module/Apps.php:49 +msgid "Create new app" +msgstr "" + +#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 +#: ../../extend/addon/addon/opensearch/opensearch.php:42 +msgid "$Projectname" +msgstr "" + +#: ../../Zotlabs/Module/Home.php:92 +#, php-format +msgid "Welcome to %s" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:87 +msgid "Permission Denied." +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:103 +msgid "File not found." +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:146 +msgid "Edit file permissions" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:159 +msgid "Set/edit permissions" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:160 +msgid "Include all files and sub folders" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:161 +msgid "Return to file list" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:163 +msgid "Copy/paste this code to attach file to a post" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:164 +msgid "Copy/paste this URL to link file from a web page" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:166 +msgid "Share this file" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:167 +msgid "Show URL to this file" +msgstr "" + +#: ../../Zotlabs/Module/Filestorage.php:168 +msgid "Notify your contacts about this file" +msgstr "" + +#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:229 +#: ../../include/conversation.php:1742 +msgid "Photos" +msgstr "" + +#: ../../Zotlabs/Module/Acl.php:117 ../../Zotlabs/Module/Lockview.php:117 +#: ../../Zotlabs/Module/Lockview.php:153 ../../include/acl_selectors.php:183 +msgctxt "acl" +msgid "Profile" msgstr "" -#: ../../Zotlabs/Module/Setup.php:264 ../../Zotlabs/Module/Cal.php:337 -#: ../../Zotlabs/Module/Cal.php:344 ../../Zotlabs/Module/Events.php:690 -#: ../../Zotlabs/Module/Events.php:699 ../../Zotlabs/Module/Photos.php:944 +#: ../../Zotlabs/Module/Acl.php:344 +msgid "network" +msgstr "" + +#: ../../Zotlabs/Module/Acl.php:354 +msgid "RSS" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:24 +msgid "Privacy group created." +msgstr "" + +#: ../../Zotlabs/Module/Group.php:30 +msgid "Could not create privacy group." +msgstr "" + +#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 +#: ../../include/items.php:3810 +msgid "Privacy group not found." +msgstr "" + +#: ../../Zotlabs/Module/Group.php:58 +msgid "Privacy group updated." +msgstr "" + +#: ../../Zotlabs/Module/Group.php:90 +msgid "Create a group of channels." +msgstr "" + +#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 +msgid "Privacy group name: " +msgstr "" + +#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 +msgid "Members are visible to other channels" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:111 +msgid "Privacy group removed." +msgstr "" + +#: ../../Zotlabs/Module/Group.php:113 +msgid "Unable to remove privacy group." +msgstr "" + +#: ../../Zotlabs/Module/Group.php:183 +msgid "Privacy group editor" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:199 +msgid "All Connected Channels" +msgstr "" + +#: ../../Zotlabs/Module/Group.php:231 +msgid "Click on a channel to add or remove." +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:45 +msgid "Invalid message" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:78 +msgid "no results" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:93 +msgid "channel sync processed" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:97 +msgid "queued" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:101 +msgid "posted" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:105 +msgid "accepted for delivery" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:109 +msgid "updated" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:112 +msgid "update ignored" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:115 +msgid "permission denied" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:119 +msgid "recipient not found" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:122 +msgid "mail recalled" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:125 +msgid "duplicate mail received" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:128 +msgid "mail delivered" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:148 +#, php-format +msgid "Delivery report for %1$s" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:151 +msgid "Options" +msgstr "" + +#: ../../Zotlabs/Module/Dreport.php:152 +msgid "Redeliver" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:69 +msgid "Permissions denied." +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:263 ../../Zotlabs/Module/Events.php:605 +msgid "l, F j" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:312 ../../Zotlabs/Module/Events.php:660 +#: ../../include/text.php:1750 +msgid "Link to Source" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:335 ../../Zotlabs/Module/Events.php:688 +msgid "Edit Event" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:335 ../../Zotlabs/Module/Events.php:688 +msgid "Create Event" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:336 ../../Zotlabs/Module/Cal.php:343 +#: ../../Zotlabs/Module/Photos.php:911 ../../Zotlabs/Module/Events.php:689 +#: ../../Zotlabs/Module/Events.php:698 +#: ../../extend/addon/addon/cdav/Mod_Cdav.php:846 +msgid "Previous" +msgstr "" + +#: ../../Zotlabs/Module/Cal.php:337 ../../Zotlabs/Module/Cal.php:344 +#: ../../Zotlabs/Module/Photos.php:920 ../../Zotlabs/Module/Events.php:690 +#: ../../Zotlabs/Module/Events.php:699 ../../Zotlabs/Module/Setup.php:264 #: ../../extend/addon/addon/cdav/Mod_Cdav.php:847 msgid "Next" msgstr "" -#: ../../Zotlabs/Module/Setup.php:265 -msgid "Check again" +#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Events.php:691 +#: ../../include/channel.php:1343 +msgid "Export" msgstr "" -#: ../../Zotlabs/Module/Setup.php:287 -msgid "Database connection" +#: ../../Zotlabs/Module/Cal.php:341 ../../include/text.php:2282 +msgid "Import" msgstr "" -#: ../../Zotlabs/Module/Setup.php:288 -msgid "" -"In order to install $Projectname we need to know how to connect to your " -"database." +#: ../../Zotlabs/Module/Cal.php:345 ../../Zotlabs/Module/Events.php:700 +#: ../../extend/addon/addon/cdav/Mod_Cdav.php:848 +msgid "Today" msgstr "" -#: ../../Zotlabs/Module/Setup.php:289 -msgid "" -"Please contact your hosting provider or site administrator if you have " -"questions about these settings." +#: ../../Zotlabs/Module/Photos.php:78 +msgid "Page owner information could not be retrieved." msgstr "" -#: ../../Zotlabs/Module/Setup.php:290 -msgid "" -"The database you specify below should already exist. If it does not, please " -"create it before continuing." +#: ../../Zotlabs/Module/Photos.php:94 ../../Zotlabs/Module/Photos.php:120 +msgid "Album not found." msgstr "" -#: ../../Zotlabs/Module/Setup.php:294 -msgid "Database Server Name" +#: ../../Zotlabs/Module/Photos.php:103 +msgid "Delete Album" msgstr "" -#: ../../Zotlabs/Module/Setup.php:294 -msgid "Default is 127.0.0.1" +#: ../../Zotlabs/Module/Photos.php:174 ../../Zotlabs/Module/Photos.php:1023 +msgid "Delete Photo" msgstr "" -#: ../../Zotlabs/Module/Setup.php:295 -msgid "Database Port" +#: ../../Zotlabs/Module/Photos.php:501 +msgid "No photos selected" msgstr "" -#: ../../Zotlabs/Module/Setup.php:295 -msgid "Communication port number - use 0 for default" +#: ../../Zotlabs/Module/Photos.php:550 +msgid "Access to this item is restricted." msgstr "" -#: ../../Zotlabs/Module/Setup.php:296 -msgid "Database Login Name" +#: ../../Zotlabs/Module/Photos.php:591 +#, php-format +msgid "%1$.2f MB of %2$.2f MB photo storage used." msgstr "" -#: ../../Zotlabs/Module/Setup.php:297 -msgid "Database Login Password" +#: ../../Zotlabs/Module/Photos.php:594 +#, php-format +msgid "%1$.2f MB photo storage used." msgstr "" -#: ../../Zotlabs/Module/Setup.php:298 -msgid "Database Name" +#: ../../Zotlabs/Module/Photos.php:636 +msgid "Upload Photos" msgstr "" -#: ../../Zotlabs/Module/Setup.php:299 -msgid "Database Type" +#: ../../Zotlabs/Module/Photos.php:640 +msgid "Enter an album name" msgstr "" -#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:342 -msgid "Site administrator email address" +#: ../../Zotlabs/Module/Photos.php:641 +msgid "or select an existing album (doubleclick)" msgstr "" -#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:342 -msgid "" -"Your account email address must match this in order to use the web admin " -"panel." +#: ../../Zotlabs/Module/Photos.php:642 +msgid "Create a status post for this upload" msgstr "" -#: ../../Zotlabs/Module/Setup.php:302 ../../Zotlabs/Module/Setup.php:344 -msgid "Website URL" +#: ../../Zotlabs/Module/Photos.php:643 +msgid "Caption (optional):" msgstr "" -#: ../../Zotlabs/Module/Setup.php:302 ../../Zotlabs/Module/Setup.php:344 -msgid "Please use SSL (https) URL if available." +#: ../../Zotlabs/Module/Photos.php:644 +msgid "Description (optional):" msgstr "" -#: ../../Zotlabs/Module/Setup.php:303 ../../Zotlabs/Module/Setup.php:346 -msgid "Please select a default timezone for your website" +#: ../../Zotlabs/Module/Photos.php:725 +msgid "Show Newest First" msgstr "" -#: ../../Zotlabs/Module/Setup.php:331 -msgid "Site settings" +#: ../../Zotlabs/Module/Photos.php:727 +msgid "Show Oldest First" msgstr "" -#: ../../Zotlabs/Module/Setup.php:385 -msgid "PHP version 5.5 or greater is required." +#: ../../Zotlabs/Module/Photos.php:751 ../../Zotlabs/Module/Photos.php:1290 +#: ../../Zotlabs/Module/Embedphotos.php:139 ../../Zotlabs/Widget/Album.php:78 +msgid "View Photo" msgstr "" -#: ../../Zotlabs/Module/Setup.php:386 -msgid "PHP version" +#: ../../Zotlabs/Module/Photos.php:782 +#: ../../Zotlabs/Module/Embedphotos.php:155 ../../Zotlabs/Widget/Album.php:95 +msgid "Edit Album" msgstr "" -#: ../../Zotlabs/Module/Setup.php:402 -msgid "Could not find a command line version of PHP in the web server PATH." +#: ../../Zotlabs/Module/Photos.php:832 +msgid "Permission denied. Access to this item may be restricted." msgstr "" -#: ../../Zotlabs/Module/Setup.php:403 -msgid "" -"If you don't have a command line version of PHP installed on server, you " -"will not be able to run background polling via cron." +#: ../../Zotlabs/Module/Photos.php:834 +msgid "Photo not available" msgstr "" -#: ../../Zotlabs/Module/Setup.php:407 -msgid "PHP executable path" +#: ../../Zotlabs/Module/Photos.php:892 +msgid "Use as profile photo" msgstr "" -#: ../../Zotlabs/Module/Setup.php:407 -msgid "" -"Enter full path to php executable. You can leave this blank to continue the " -"installation." +#: ../../Zotlabs/Module/Photos.php:893 +msgid "Use as cover photo" msgstr "" -#: ../../Zotlabs/Module/Setup.php:412 -msgid "Command line PHP" +#: ../../Zotlabs/Module/Photos.php:900 +msgid "Private Photo" msgstr "" -#: ../../Zotlabs/Module/Setup.php:422 -msgid "" -"Unable to check command line PHP, as shell_exec() is disabled. This is " -"required." +#: ../../Zotlabs/Module/Photos.php:915 +msgid "View Full Size" msgstr "" -#: ../../Zotlabs/Module/Setup.php:425 -msgid "" -"The command line version of PHP on your system does not have " -"\"register_argc_argv\" enabled." +#: ../../Zotlabs/Module/Photos.php:997 +msgid "Edit photo" msgstr "" -#: ../../Zotlabs/Module/Setup.php:426 -msgid "This is required for message delivery to work." +#: ../../Zotlabs/Module/Photos.php:999 +msgid "Rotate CW (right)" msgstr "" -#: ../../Zotlabs/Module/Setup.php:429 -msgid "PHP register_argc_argv" +#: ../../Zotlabs/Module/Photos.php:1000 +msgid "Rotate CCW (left)" msgstr "" -#: ../../Zotlabs/Module/Setup.php:447 -#, php-format -msgid "" -"Your max allowed total upload size is set to %s. Maximum size of one file to " -"upload is set to %s. You are allowed to upload up to %d files at once." +#: ../../Zotlabs/Module/Photos.php:1003 +msgid "Move photo to album" msgstr "" -#: ../../Zotlabs/Module/Setup.php:452 -msgid "You can adjust these settings in the server php.ini file." +#: ../../Zotlabs/Module/Photos.php:1004 +msgid "Enter a new album name" msgstr "" -#: ../../Zotlabs/Module/Setup.php:454 -msgid "PHP upload limits" +#: ../../Zotlabs/Module/Photos.php:1005 +msgid "or select an existing one (doubleclick)" msgstr "" -#: ../../Zotlabs/Module/Setup.php:477 -msgid "" -"Error: the \"openssl_pkey_new\" function on this system is not able to " -"generate encryption keys" +#: ../../Zotlabs/Module/Photos.php:1008 +msgid "Caption" msgstr "" -#: ../../Zotlabs/Module/Setup.php:478 -msgid "" -"If running under Windows, please see \"http://www.php.net/manual/en/openssl." -"installation.php\"." +#: ../../Zotlabs/Module/Photos.php:1010 +msgid "Add a Tag" msgstr "" -#: ../../Zotlabs/Module/Setup.php:481 -msgid "Generate encryption keys" +#: ../../Zotlabs/Module/Photos.php:1018 +msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" msgstr "" -#: ../../Zotlabs/Module/Setup.php:498 -msgid "libCurl PHP module" +#: ../../Zotlabs/Module/Photos.php:1021 +msgid "Flag as adult in album view" msgstr "" -#: ../../Zotlabs/Module/Setup.php:499 -msgid "GD graphics PHP module" +#: ../../Zotlabs/Module/Photos.php:1040 ../../Zotlabs/Lib/ThreadItem.php:268 +msgid "I like this (toggle)" msgstr "" -#: ../../Zotlabs/Module/Setup.php:500 -msgid "OpenSSL PHP module" +#: ../../Zotlabs/Module/Photos.php:1041 ../../Zotlabs/Lib/ThreadItem.php:269 +msgid "I don't like this (toggle)" msgstr "" -#: ../../Zotlabs/Module/Setup.php:501 -msgid "PDO database PHP module" +#: ../../Zotlabs/Module/Photos.php:1043 ../../Zotlabs/Lib/ThreadItem.php:410 +#: ../../include/conversation.php:735 +msgid "Please wait" msgstr "" -#: ../../Zotlabs/Module/Setup.php:502 -msgid "mb_string PHP module" +#: ../../Zotlabs/Module/Photos.php:1059 ../../Zotlabs/Module/Photos.php:1177 +#: ../../Zotlabs/Lib/ThreadItem.php:727 +msgid "This is you" msgstr "" -#: ../../Zotlabs/Module/Setup.php:503 -msgid "xml PHP module" +#: ../../Zotlabs/Module/Photos.php:1061 ../../Zotlabs/Module/Photos.php:1179 +#: ../../Zotlabs/Lib/ThreadItem.php:729 ../../include/js_strings.php:6 +msgid "Comment" msgstr "" -#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:509 -msgid "Apache mod_rewrite module" +#: ../../Zotlabs/Module/Photos.php:1077 ../../include/conversation.php:574 +msgctxt "title" +msgid "Likes" msgstr "" -#: ../../Zotlabs/Module/Setup.php:507 -msgid "" -"Error: Apache webserver mod-rewrite module is required but not installed." +#: ../../Zotlabs/Module/Photos.php:1077 ../../include/conversation.php:574 +msgctxt "title" +msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Setup.php:513 ../../Zotlabs/Module/Setup.php:516 -msgid "exec" +#: ../../Zotlabs/Module/Photos.php:1078 ../../include/conversation.php:575 +msgctxt "title" +msgid "Agree" msgstr "" -#: ../../Zotlabs/Module/Setup.php:513 -msgid "" -"Error: exec is required but is either not installed or has been disabled in " -"php.ini" +#: ../../Zotlabs/Module/Photos.php:1078 ../../include/conversation.php:575 +msgctxt "title" +msgid "Disagree" msgstr "" -#: ../../Zotlabs/Module/Setup.php:519 ../../Zotlabs/Module/Setup.php:522 -msgid "shell_exec" +#: ../../Zotlabs/Module/Photos.php:1078 ../../include/conversation.php:575 +msgctxt "title" +msgid "Abstain" msgstr "" -#: ../../Zotlabs/Module/Setup.php:519 -msgid "" -"Error: shell_exec is required but is either not installed or has been " -"disabled in php.ini" +#: ../../Zotlabs/Module/Photos.php:1079 ../../include/conversation.php:576 +msgctxt "title" +msgid "Attending" msgstr "" -#: ../../Zotlabs/Module/Setup.php:527 -msgid "Error: libCURL PHP module required but not installed." +#: ../../Zotlabs/Module/Photos.php:1079 ../../include/conversation.php:576 +msgctxt "title" +msgid "Not attending" msgstr "" -#: ../../Zotlabs/Module/Setup.php:531 -msgid "" -"Error: GD graphics PHP module with JPEG support required but not installed." +#: ../../Zotlabs/Module/Photos.php:1079 ../../include/conversation.php:576 +msgctxt "title" +msgid "Might attend" msgstr "" -#: ../../Zotlabs/Module/Setup.php:535 -msgid "Error: openssl PHP module required but not installed." +#: ../../Zotlabs/Module/Photos.php:1096 ../../Zotlabs/Module/Photos.php:1108 +#: ../../Zotlabs/Lib/ThreadItem.php:186 ../../Zotlabs/Lib/ThreadItem.php:198 +#: ../../include/conversation.php:1834 +msgid "View all" msgstr "" -#: ../../Zotlabs/Module/Setup.php:539 -msgid "Error: PDO database PHP module required but not installed." +#: ../../Zotlabs/Module/Photos.php:1100 ../../Zotlabs/Lib/ThreadItem.php:190 +#: ../../include/taxonomy.php:403 ../../include/channel.php:1246 +#: ../../include/conversation.php:1858 +msgctxt "noun" +msgid "Like" +msgid_plural "Likes" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Photos.php:1105 ../../Zotlabs/Lib/ThreadItem.php:195 +#: ../../include/conversation.php:1861 +msgctxt "noun" +msgid "Dislike" +msgid_plural "Dislikes" +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Photos.php:1205 +msgid "Photo Tools" msgstr "" -#: ../../Zotlabs/Module/Setup.php:543 -msgid "Error: mb_string PHP module required but not installed." +#: ../../Zotlabs/Module/Photos.php:1214 +msgid "In This Photo:" msgstr "" -#: ../../Zotlabs/Module/Setup.php:547 -msgid "Error: xml PHP module required for DAV but not installed." +#: ../../Zotlabs/Module/Photos.php:1219 +msgid "Map" msgstr "" -#: ../../Zotlabs/Module/Setup.php:565 -msgid "" -"The web installer needs to be able to create a file called \".htconfig.php\" " -"in the top folder of your web server and it is unable to do so." +#: ../../Zotlabs/Module/Photos.php:1227 ../../Zotlabs/Lib/ThreadItem.php:399 +msgctxt "noun" +msgid "Likes" msgstr "" -#: ../../Zotlabs/Module/Setup.php:566 -msgid "" -"This is most often a permission setting, as the web server may not be able " -"to write files in your folder - even if you can." +#: ../../Zotlabs/Module/Photos.php:1228 ../../Zotlabs/Lib/ThreadItem.php:400 +msgctxt "noun" +msgid "Dislikes" msgstr "" -#: ../../Zotlabs/Module/Setup.php:567 -msgid "" -"At the end of this procedure, we will give you a text to save in a file " -"named .htconfig.php in your Red top folder." +#: ../../Zotlabs/Module/Photos.php:1233 ../../Zotlabs/Lib/ThreadItem.php:405 +#: ../../include/acl_selectors.php:220 +msgid "Close" msgstr "" -#: ../../Zotlabs/Module/Setup.php:568 -msgid "" -"You can alternatively skip this procedure and perform a manual installation. " -"Please see the file \"install/INSTALL.txt\" for instructions." +#: ../../Zotlabs/Module/Photos.php:1305 ../../Zotlabs/Module/Photos.php:1318 +#: ../../Zotlabs/Module/Photos.php:1319 ../../include/photos.php:525 +msgid "Recent Photos" msgstr "" -#: ../../Zotlabs/Module/Setup.php:571 -msgid ".htconfig.php is writable" +#: ../../Zotlabs/Module/Import_items.php:42 ../../Zotlabs/Module/Import.php:57 +msgid "Nothing to import." msgstr "" -#: ../../Zotlabs/Module/Setup.php:585 -msgid "" -"This software uses the Smarty3 template engine to render its web views. " -"Smarty3 compiles templates to PHP to speed up rendering." +#: ../../Zotlabs/Module/Import_items.php:66 ../../Zotlabs/Module/Import.php:69 +#: ../../Zotlabs/Module/Import.php:84 +msgid "Unable to download data from old server" msgstr "" -#: ../../Zotlabs/Module/Setup.php:586 +#: ../../Zotlabs/Module/Import_items.php:72 ../../Zotlabs/Module/Import.php:91 +msgid "Imported file is empty." +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:88 +#: ../../Zotlabs/Module/Import.php:111 #, 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." +msgid "Warning: Database versions differ by %1$d updates." msgstr "" -#: ../../Zotlabs/Module/Setup.php:587 ../../Zotlabs/Module/Setup.php:608 -msgid "" -"Please ensure that the user that your web server runs as (e.g. www-data) has " -"write access to this folder." +#: ../../Zotlabs/Module/Import_items.php:104 +msgid "Import completed" msgstr "" -#: ../../Zotlabs/Module/Setup.php:588 +#: ../../Zotlabs/Module/Import_items.php:119 +msgid "Import Items" +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:120 +msgid "Use this form to import existing posts and content from an export file." +msgstr "" + +#: ../../Zotlabs/Module/Import_items.php:121 +#: ../../Zotlabs/Module/Import.php:495 +msgid "File to Upload" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:136 +#: ../../Zotlabs/Module/New_channel.php:121 #, 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." +msgid "You have created %1$.0f of %2$.0f allowed channels." msgstr "" -#: ../../Zotlabs/Module/Setup.php:591 +#: ../../Zotlabs/Module/Manage.php:143 +msgid "Create a new channel" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:221 +#: ../../include/nav.php:223 +msgid "Channel Manager" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:165 +msgid "Current Channel" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:167 +msgid "Switch to one of your channels by selecting it." +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:168 +msgid "Default Channel" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:169 +msgid "Make Default" +msgstr "" + +#: ../../Zotlabs/Module/Manage.php:172 #, php-format -msgid "%s is writable" +msgid "%d new messages" msgstr "" -#: ../../Zotlabs/Module/Setup.php:607 -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" +#: ../../Zotlabs/Module/Manage.php:173 +#, php-format +msgid "%d new introductions" msgstr "" -#: ../../Zotlabs/Module/Setup.php:611 -msgid "store is writable" +#: ../../Zotlabs/Module/Manage.php:175 +msgid "Delegated Channel" msgstr "" -#: ../../Zotlabs/Module/Setup.php:644 -msgid "" -"SSL certificate cannot be validated. Fix certificate or disable https access " -"to this site." +#: ../../Zotlabs/Module/Oexchange.php:27 +msgid "Unable to find your hub." msgstr "" -#: ../../Zotlabs/Module/Setup.php:645 -msgid "" -"If you have https access to your website or allow connections to TCP port " -"443 (the https: port), you MUST use a browser-valid certificate. You MUST " -"NOT use self-signed certificates!" +#: ../../Zotlabs/Module/Oexchange.php:41 +msgid "Post successful." msgstr "" -#: ../../Zotlabs/Module/Setup.php:646 -msgid "" -"This restriction is incorporated because public posts from you may for " -"example contain references to images on your own hub." +#: ../../Zotlabs/Module/Magic.php:71 +msgid "Hub not found." msgstr "" -#: ../../Zotlabs/Module/Setup.php:647 -msgid "" -"If your certificate is not recognized, members of other sites (who may " -"themselves have valid certificates) will get a warning message on their own " -"site complaining about security issues." +#: ../../Zotlabs/Module/Mitem.php:52 +msgid "Unable to create element." msgstr "" -#: ../../Zotlabs/Module/Setup.php:648 -msgid "" -"This can cause usability issues elsewhere (not just on your own site) so we " -"must insist on this requirement." +#: ../../Zotlabs/Module/Mitem.php:76 +msgid "Unable to update menu element." msgstr "" -#: ../../Zotlabs/Module/Setup.php:649 -msgid "" -"Providers are available that issue free certificates which are browser-valid." +#: ../../Zotlabs/Module/Mitem.php:92 +msgid "Unable to add menu element." msgstr "" -#: ../../Zotlabs/Module/Setup.php:651 -msgid "" -"If you are confident that the certificate is valid and signed by a trusted " -"authority, check to see if you have failed to install an intermediate cert. " -"These are not normally required by browsers, but are required for server-to-" -"server communications." +#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 +msgid "Menu Item Permissions" msgstr "" -#: ../../Zotlabs/Module/Setup.php:653 -msgid "SSL certificate validation" +#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 +#: ../../Zotlabs/Module/Settings/Channel.php:510 +msgid "(click to open/close)" msgstr "" -#: ../../Zotlabs/Module/Setup.php:659 -msgid "" -"Url rewrite in .htaccess is not working. Check your server configuration." -"Test: " +#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 +msgid "Link Name" msgstr "" -#: ../../Zotlabs/Module/Setup.php:662 -msgid "Url rewrite is working" +#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 +msgid "Link or Submenu Target" msgstr "" -#: ../../Zotlabs/Module/Setup.php:676 -msgid "" -"The database configuration file \".htconfig.php\" could not be written. " -"Please use the enclosed text to create a configuration file in your web " -"server root." +#: ../../Zotlabs/Module/Mitem.php:161 +msgid "Enter URL of the link or select a menu name to create a submenu" msgstr "" -#: ../../Zotlabs/Module/Setup.php:700 -#: ../../extend/addon/addon/cdav/cdav.php:41 -#: ../../extend/addon/addon/rendezvous/rendezvous.php:401 -msgid "Errors encountered creating database tables." +#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 +msgid "Use magic-auth if available" msgstr "" -#: ../../Zotlabs/Module/Setup.php:741 -msgid "<h1>What next</h1>" +#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 +msgid "Open link in new window" msgstr "" -#: ../../Zotlabs/Module/Setup.php:742 -msgid "" -"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Order in list" msgstr "" -#: ../../Zotlabs/Module/Apps.php:45 ../../include/nav.php:178 -msgid "Apps" +#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 +msgid "Higher numbers will sink to bottom of listing" msgstr "" -#: ../../Zotlabs/Module/Apps.php:48 -msgid "Manage apps" +#: ../../Zotlabs/Module/Mitem.php:165 +msgid "Submit and finish" msgstr "" -#: ../../Zotlabs/Module/Apps.php:49 -msgid "Create new app" +#: ../../Zotlabs/Module/Mitem.php:166 +msgid "Submit and continue" msgstr "" -#: ../../Zotlabs/Module/Home.php:74 ../../Zotlabs/Module/Home.php:82 -#: ../../extend/addon/addon/opensearch/opensearch.php:42 -msgid "$Projectname" +#: ../../Zotlabs/Module/Mitem.php:174 +msgid "Menu:" msgstr "" -#: ../../Zotlabs/Module/Home.php:92 -#, php-format -msgid "Welcome to %s" +#: ../../Zotlabs/Module/Mitem.php:177 +msgid "Link Target" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:87 -msgid "Permission Denied." +#: ../../Zotlabs/Module/Mitem.php:180 +msgid "Edit menu" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:103 -msgid "File not found." +#: ../../Zotlabs/Module/Mitem.php:183 +msgid "Edit element" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:146 -msgid "Edit file permissions" +#: ../../Zotlabs/Module/Mitem.php:184 +msgid "Drop element" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:159 -msgid "Set/edit permissions" +#: ../../Zotlabs/Module/Mitem.php:185 +msgid "New element" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:160 -msgid "Include all files and sub folders" +#: ../../Zotlabs/Module/Mitem.php:186 +msgid "Edit this menu container" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:161 -msgid "Return to file list" +#: ../../Zotlabs/Module/Mitem.php:187 +msgid "Add menu element" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:163 -msgid "Copy/paste this code to attach file to a post" +#: ../../Zotlabs/Module/Mitem.php:188 +msgid "Delete this menu item" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:164 -msgid "Copy/paste this URL to link file from a web page" +#: ../../Zotlabs/Module/Mitem.php:189 +msgid "Edit this menu item" msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:166 -msgid "Share this file" +#: ../../Zotlabs/Module/Mitem.php:206 +msgid "Menu item not found." msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:167 -msgid "Show URL to this file" +#: ../../Zotlabs/Module/Mitem.php:219 +msgid "Menu item deleted." msgstr "" -#: ../../Zotlabs/Module/Filestorage.php:168 -msgid "Notify your contacts about this file" +#: ../../Zotlabs/Module/Mitem.php:221 +msgid "Menu item could not be deleted." msgstr "" -#: ../../Zotlabs/Module/Fbrowser.php:29 ../../Zotlabs/Lib/Apps.php:229 -#: ../../include/conversation.php:1836 -msgid "Photos" +#: ../../Zotlabs/Module/Mitem.php:228 +msgid "Edit Menu Element" msgstr "" -#: ../../Zotlabs/Module/Acl.php:117 ../../Zotlabs/Module/Lockview.php:117 -#: ../../Zotlabs/Module/Lockview.php:153 ../../include/acl_selectors.php:183 -msgctxt "acl" -msgid "Profile" +#: ../../Zotlabs/Module/Mitem.php:238 +msgid "Link text" msgstr "" -#: ../../Zotlabs/Module/Acl.php:344 -msgid "network" +#: ../../Zotlabs/Module/Ratings.php:70 +msgid "No ratings" msgstr "" -#: ../../Zotlabs/Module/Acl.php:354 -msgid "RSS" +#: ../../Zotlabs/Module/Ratings.php:98 +msgid "Rating: " msgstr "" -#: ../../Zotlabs/Module/Group.php:24 -msgid "Privacy group created." +#: ../../Zotlabs/Module/Ratings.php:99 +msgid "Website: " msgstr "" -#: ../../Zotlabs/Module/Group.php:30 -msgid "Could not create privacy group." +#: ../../Zotlabs/Module/Ratings.php:101 +msgid "Description: " msgstr "" -#: ../../Zotlabs/Module/Group.php:42 ../../Zotlabs/Module/Group.php:141 -#: ../../include/items.php:3812 -msgid "Privacy group not found." +#: ../../Zotlabs/Module/Attach.php:13 +msgid "Item not available." msgstr "" -#: ../../Zotlabs/Module/Group.php:58 -msgid "Privacy group updated." +#: ../../Zotlabs/Module/Notify.php:57 +#: ../../Zotlabs/Module/Notifications.php:38 +msgid "No more system notifications." msgstr "" -#: ../../Zotlabs/Module/Group.php:90 -msgid "Create a group of channels." +#: ../../Zotlabs/Module/Notify.php:61 +#: ../../Zotlabs/Module/Notifications.php:42 +msgid "System Notifications" msgstr "" -#: ../../Zotlabs/Module/Group.php:91 ../../Zotlabs/Module/Group.php:184 -msgid "Privacy group name: " +#: ../../Zotlabs/Module/Hcard.php:35 ../../Zotlabs/Module/Channel.php:47 +#: ../../Zotlabs/Module/Profile.php:43 +msgid "Posts and comments" msgstr "" -#: ../../Zotlabs/Module/Group.php:93 ../../Zotlabs/Module/Group.php:187 -msgid "Members are visible to other channels" +#: ../../Zotlabs/Module/Hcard.php:42 ../../Zotlabs/Module/Channel.php:54 +#: ../../Zotlabs/Module/Profile.php:50 +msgid "Only posts" msgstr "" -#: ../../Zotlabs/Module/Group.php:111 -msgid "Privacy group removed." +#: ../../Zotlabs/Module/Api.php:72 ../../Zotlabs/Module/Api.php:93 +msgid "Authorize application connection" msgstr "" -#: ../../Zotlabs/Module/Group.php:113 -msgid "Unable to remove privacy group." +#: ../../Zotlabs/Module/Api.php:73 +msgid "Return to your app and insert this Security Code:" msgstr "" -#: ../../Zotlabs/Module/Group.php:183 -msgid "Privacy group editor" +#: ../../Zotlabs/Module/Api.php:83 +msgid "Please login to continue." msgstr "" -#: ../../Zotlabs/Module/Group.php:199 -msgid "All Connected Channels" +#: ../../Zotlabs/Module/Api.php:95 +msgid "" +"Do you want to authorize this application to access your posts and contacts, " +"and/or create new posts for you?" msgstr "" -#: ../../Zotlabs/Module/Group.php:231 -msgid "Click on a channel to add or remove." +#: ../../Zotlabs/Module/Invite.php:29 +msgid "Total invitation limit exceeded." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:45 -msgid "Invalid message" +#: ../../Zotlabs/Module/Invite.php:53 +#, php-format +msgid "%s : Not a valid email address." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:78 -msgid "no results" +#: ../../Zotlabs/Module/Invite.php:67 +msgid "Please join us on $Projectname" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:93 -msgid "channel sync processed" +#: ../../Zotlabs/Module/Invite.php:77 +msgid "Invitation limit exceeded. Please contact your site administrator." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:97 -msgid "queued" +#: ../../Zotlabs/Module/Invite.php:82 +#, php-format +msgid "%s : Message delivery failed." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:101 -msgid "posted" +#: ../../Zotlabs/Module/Invite.php:86 +#, php-format +msgid "%d message sent." +msgid_plural "%d messages sent." +msgstr[0] "" +msgstr[1] "" + +#: ../../Zotlabs/Module/Invite.php:105 +msgid "You have no more invitations available" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:105 -msgid "accepted for delivery" +#: ../../Zotlabs/Module/Invite.php:136 +msgid "Send invitations" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:109 -msgid "updated" +#: ../../Zotlabs/Module/Invite.php:137 +msgid "Enter email addresses, one per line:" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:112 -msgid "update ignored" +#: ../../Zotlabs/Module/Invite.php:138 ../../Zotlabs/Module/Mail.php:284 +msgid "Your message:" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:115 -msgid "permission denied" +#: ../../Zotlabs/Module/Invite.php:139 +msgid "Please join my community on $Projectname." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:119 -msgid "recipient not found" +#: ../../Zotlabs/Module/Invite.php:141 +msgid "You will need to supply this invitation code:" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:122 -msgid "mail recalled" +#: ../../Zotlabs/Module/Invite.php:142 +msgid "1. Register at any $Projectname location (they are all inter-connected)" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:125 -msgid "duplicate mail received" +#: ../../Zotlabs/Module/Invite.php:144 +msgid "2. Enter my $Projectname network address into the site searchbar." msgstr "" -#: ../../Zotlabs/Module/Dreport.php:128 -msgid "mail delivered" +#: ../../Zotlabs/Module/Invite.php:145 +msgid "or visit" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:148 -#, php-format -msgid "Delivery report for %1$s" +#: ../../Zotlabs/Module/Invite.php:147 +msgid "3. Click [Connect]" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:151 -msgid "Options" +#: ../../Zotlabs/Module/Siteinfo.php:20 +msgid "About this site" msgstr "" -#: ../../Zotlabs/Module/Dreport.php:152 -msgid "Redeliver" +#: ../../Zotlabs/Module/Siteinfo.php:21 +msgid "Site Name" msgstr "" -#: ../../Zotlabs/Module/Cal.php:69 -msgid "Permissions denied." +#: ../../Zotlabs/Module/Siteinfo.php:25 ../../include/network.php:1474 +msgid "Administrator" msgstr "" -#: ../../Zotlabs/Module/Cal.php:263 ../../Zotlabs/Module/Events.php:605 -msgid "l, F j" +#: ../../Zotlabs/Module/Siteinfo.php:28 +msgid "Software and Project information" msgstr "" -#: ../../Zotlabs/Module/Cal.php:312 ../../Zotlabs/Module/Events.php:660 -#: ../../include/text.php:1750 -msgid "Link to Source" +#: ../../Zotlabs/Module/Siteinfo.php:29 +msgid "This site is powered by $Projectname" msgstr "" -#: ../../Zotlabs/Module/Cal.php:335 ../../Zotlabs/Module/Events.php:688 -msgid "Edit Event" +#: ../../Zotlabs/Module/Siteinfo.php:30 +msgid "" +"Federated and decentralised networking and identity services provided by Zot" msgstr "" -#: ../../Zotlabs/Module/Cal.php:335 ../../Zotlabs/Module/Events.php:688 -msgid "Create Event" +#: ../../Zotlabs/Module/Siteinfo.php:32 +#, php-format +msgid "Version %s" msgstr "" -#: ../../Zotlabs/Module/Cal.php:336 ../../Zotlabs/Module/Cal.php:343 -#: ../../Zotlabs/Module/Events.php:689 ../../Zotlabs/Module/Events.php:698 -#: ../../Zotlabs/Module/Photos.php:935 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:846 -msgid "Previous" +#: ../../Zotlabs/Module/Siteinfo.php:33 +msgid "Project homepage" msgstr "" -#: ../../Zotlabs/Module/Cal.php:338 ../../Zotlabs/Module/Events.php:691 -#: ../../include/channel.php:1365 -msgid "Export" +#: ../../Zotlabs/Module/Siteinfo.php:34 +msgid "Developer homepage" msgstr "" -#: ../../Zotlabs/Module/Cal.php:341 ../../include/text.php:2282 -msgid "Import" +#: ../../Zotlabs/Module/New_channel.php:140 +msgid "Create Channel" msgstr "" -#: ../../Zotlabs/Module/Cal.php:345 ../../Zotlabs/Module/Events.php:700 -#: ../../extend/addon/addon/cdav/Mod_Cdav.php:848 -msgid "Today" +#: ../../Zotlabs/Module/New_channel.php:141 +msgid "" +"A channel is your identity on this network. It can represent a person, a " +"blog, or a forum to name a few. Channels can make connections with other " +"channels to share information with highly detailed permissions." +msgstr "" + +#: ../../Zotlabs/Module/New_channel.php:142 +msgid "" +"or <a href=\"import\">import an existing channel</a> from another location." msgstr "" #: ../../Zotlabs/Module/Wiki.php:30 @@ -3967,264 +4319,218 @@ msgid "Profile Unavailable." msgstr "" #: ../../Zotlabs/Module/Wiki.php:44 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:40 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:42 msgid "Not found" msgstr "" #: ../../Zotlabs/Module/Wiki.php:68 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:60 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:62 msgid "Invalid channel" msgstr "" #: ../../Zotlabs/Module/Wiki.php:159 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:144 -#: ../../include/conversation.php:1900 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:146 +#: ../../include/conversation.php:1806 msgid "Wikis" msgstr "" #: ../../Zotlabs/Module/Wiki.php:165 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:150 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:152 msgid "Download" msgstr "" #: ../../Zotlabs/Module/Wiki.php:169 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:154 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:156 msgid "Wiki name" msgstr "" #: ../../Zotlabs/Module/Wiki.php:170 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:155 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:157 msgid "Content type" msgstr "" #: ../../Zotlabs/Module/Wiki.php:179 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:164 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:166 msgid "Create a status post for this wiki" msgstr "" #: ../../Zotlabs/Module/Wiki.php:204 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:183 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:185 msgid "Wiki not found" msgstr "" #: ../../Zotlabs/Module/Wiki.php:228 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:208 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:210 msgid "Rename page" msgstr "" #: ../../Zotlabs/Module/Wiki.php:232 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:212 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:214 msgid "Error retrieving page content" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:268 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:241 +#: ../../Zotlabs/Module/Wiki.php:263 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:242 msgid "Revision Comparison" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:269 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:242 +#: ../../Zotlabs/Module/Wiki.php:264 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:243 msgid "Revert" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:273 +#: ../../Zotlabs/Module/Wiki.php:268 msgid "Short description of your changes (optional)" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:280 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:251 +#: ../../Zotlabs/Module/Wiki.php:275 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:252 msgid "Source" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:288 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:259 +#: ../../Zotlabs/Module/Wiki.php:283 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:260 msgid "New page name" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:293 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:264 -#: ../../include/conversation.php:1299 +#: ../../Zotlabs/Module/Wiki.php:288 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:265 +#: ../../include/conversation.php:1205 msgid "Embed image from photo albums" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:294 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:265 -#: ../../include/conversation.php:1393 +#: ../../Zotlabs/Module/Wiki.php:289 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:266 +#: ../../include/conversation.php:1299 msgid "Embed an image from your albums" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:296 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:267 -#: ../../include/conversation.php:1395 ../../include/conversation.php:1442 +#: ../../Zotlabs/Module/Wiki.php:291 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:268 +#: ../../include/conversation.php:1301 ../../include/conversation.php:1348 msgid "OK" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:297 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:268 -#: ../../include/conversation.php:1335 +#: ../../Zotlabs/Module/Wiki.php:292 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:269 +#: ../../include/conversation.php:1241 msgid "Choose images to embed" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:298 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:269 -#: ../../include/conversation.php:1336 +#: ../../Zotlabs/Module/Wiki.php:293 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:270 +#: ../../include/conversation.php:1242 msgid "Choose an album" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:299 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:270 +#: ../../Zotlabs/Module/Wiki.php:294 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:271 msgid "Choose a different album" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:300 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:271 -#: ../../include/conversation.php:1338 +#: ../../Zotlabs/Module/Wiki.php:295 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:272 +#: ../../include/conversation.php:1244 msgid "Error getting album list" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:301 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:272 -#: ../../include/conversation.php:1339 +#: ../../Zotlabs/Module/Wiki.php:296 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:273 +#: ../../include/conversation.php:1245 msgid "Error getting photo link" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:302 -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:273 -#: ../../include/conversation.php:1340 +#: ../../Zotlabs/Module/Wiki.php:297 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:274 +#: ../../include/conversation.php:1246 msgid "Error getting album" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:369 +#: ../../Zotlabs/Module/Wiki.php:365 #: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:337 msgid "Error creating wiki. Invalid name." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:381 +#: ../../Zotlabs/Module/Wiki.php:377 #: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:348 msgid "Wiki created, but error creating Home page." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:388 +#: ../../Zotlabs/Module/Wiki.php:384 #: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:353 msgid "Error creating wiki" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:400 +#: ../../Zotlabs/Module/Wiki.php:396 msgid "Wiki delete permission denied." msgstr "" -#: ../../Zotlabs/Module/Wiki.php:410 +#: ../../Zotlabs/Module/Wiki.php:406 msgid "Error deleting wiki" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:436 +#: ../../Zotlabs/Module/Wiki.php:432 #: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:400 msgid "New page created" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:555 +#: ../../Zotlabs/Module/Wiki.php:551 msgid "Cannot delete Home" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:619 +#: ../../Zotlabs/Module/Wiki.php:615 msgid "Current Revision" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:619 +#: ../../Zotlabs/Module/Wiki.php:615 msgid "Selected Revision" msgstr "" -#: ../../Zotlabs/Module/Wiki.php:669 +#: ../../Zotlabs/Module/Wiki.php:665 msgid "You must be authenticated." msgstr "" -#: ../../Zotlabs/Module/Import_items.php:42 ../../Zotlabs/Module/Import.php:57 -msgid "Nothing to import." -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:66 ../../Zotlabs/Module/Import.php:69 -#: ../../Zotlabs/Module/Import.php:84 -msgid "Unable to download data from old server" -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:72 ../../Zotlabs/Module/Import.php:91 -msgid "Imported file is empty." -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:88 -#: ../../Zotlabs/Module/Import.php:111 -#, php-format -msgid "Warning: Database versions differ by %1$d updates." -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:104 -msgid "Import completed" -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:119 -msgid "Import Items" -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:120 -msgid "Use this form to import existing posts and content from an export file." -msgstr "" - -#: ../../Zotlabs/Module/Import_items.php:121 -#: ../../Zotlabs/Module/Import.php:495 -msgid "File to Upload" +#: ../../Zotlabs/Module/Notifications.php:43 ../../include/nav.php:208 +msgid "Mark all system notifications seen" msgstr "" -#: ../../Zotlabs/Module/Manage.php:136 -#: ../../Zotlabs/Module/New_channel.php:121 -#, php-format -msgid "You have created %1$.0f of %2$.0f allowed channels." +#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:235 +#: ../../include/conversation.php:1015 +msgid "Poke" msgstr "" -#: ../../Zotlabs/Module/Manage.php:143 -msgid "Create a new channel" +#: ../../Zotlabs/Module/Poke.php:169 +msgid "Poke somebody" msgstr "" -#: ../../Zotlabs/Module/Manage.php:164 ../../Zotlabs/Lib/Apps.php:221 -#: ../../include/nav.php:223 -msgid "Channel Manager" +#: ../../Zotlabs/Module/Poke.php:172 +msgid "Poke/Prod" msgstr "" -#: ../../Zotlabs/Module/Manage.php:165 -msgid "Current Channel" +#: ../../Zotlabs/Module/Poke.php:173 +msgid "Poke, prod or do other things to somebody" msgstr "" -#: ../../Zotlabs/Module/Manage.php:167 -msgid "Switch to one of your channels by selecting it." +#: ../../Zotlabs/Module/Poke.php:180 +msgid "Recipient" msgstr "" -#: ../../Zotlabs/Module/Manage.php:168 -msgid "Default Channel" +#: ../../Zotlabs/Module/Poke.php:181 +msgid "Choose what you wish to do to recipient" msgstr "" -#: ../../Zotlabs/Module/Manage.php:169 -msgid "Make Default" +#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 +msgid "Make this post private" msgstr "" -#: ../../Zotlabs/Module/Manage.php:172 +#: ../../Zotlabs/Module/Search.php:224 #, php-format -msgid "%d new messages" +msgid "Items tagged with: %s" msgstr "" -#: ../../Zotlabs/Module/Manage.php:173 +#: ../../Zotlabs/Module/Search.php:226 #, php-format -msgid "%d new introductions" -msgstr "" - -#: ../../Zotlabs/Module/Manage.php:175 -msgid "Delegated Channel" -msgstr "" - -#: ../../Zotlabs/Module/Oexchange.php:27 -msgid "Unable to find your hub." -msgstr "" - -#: ../../Zotlabs/Module/Oexchange.php:41 -msgid "Post successful." +msgid "Search results for: %s" msgstr "" #: ../../Zotlabs/Module/Connedit.php:79 @@ -4267,8 +4573,7 @@ msgstr "" #: ../../Zotlabs/Module/Connedit.php:598 ../../Zotlabs/Lib/Apps.php:228 #: ../../extend/addon/addon/openclipatar/openclipatar.php:57 -#: ../../include/conversation.php:936 ../../include/conversation.php:1049 -#: ../../include/nav.php:103 +#: ../../include/conversation.php:955 ../../include/nav.php:103 msgid "View Profile" msgstr "" @@ -4392,9 +4697,9 @@ msgstr "" #: ../../Zotlabs/Module/Settings/Channel.php:67 #: ../../Zotlabs/Module/Settings/Channel.php:70 #: ../../Zotlabs/Module/Settings/Channel.php:81 -#: ../../Zotlabs/Widget/Affinity.php:28 ../../include/selectors.php:123 -#: ../../include/channel.php:408 ../../include/channel.php:409 -#: ../../include/channel.php:416 +#: ../../Zotlabs/Widget/Affinity.php:28 ../../include/channel.php:406 +#: ../../include/channel.php:407 ../../include/channel.php:414 +#: ../../include/selectors.php:123 msgid "Friends" msgstr "" @@ -4439,7 +4744,7 @@ msgstr "" msgid "Connection Default Permissions" msgstr "" -#: ../../Zotlabs/Module/Connedit.php:855 ../../include/items.php:3845 +#: ../../Zotlabs/Module/Connedit.php:855 ../../include/items.php:3843 #, php-format msgid "Connection: %s" msgstr "" @@ -4522,8 +4827,8 @@ msgid "Connection Pending Approval" msgstr "" #: ../../Zotlabs/Module/Connedit.php:889 -#: ../../Zotlabs/Module/Settings/Permcats.php:107 #: ../../Zotlabs/Module/Settings/Tokens.php:163 +#: ../../Zotlabs/Module/Settings/Permcats.php:105 msgid "inherited" msgstr "" @@ -4540,20 +4845,20 @@ msgid "Their Settings" msgstr "" #: ../../Zotlabs/Module/Connedit.php:894 -#: ../../Zotlabs/Module/Settings/Permcats.php:105 #: ../../Zotlabs/Module/Settings/Tokens.php:161 +#: ../../Zotlabs/Module/Settings/Permcats.php:103 msgid "My Settings" msgstr "" #: ../../Zotlabs/Module/Connedit.php:896 -#: ../../Zotlabs/Module/Settings/Permcats.php:110 #: ../../Zotlabs/Module/Settings/Tokens.php:166 +#: ../../Zotlabs/Module/Settings/Permcats.php:108 msgid "Individual Permissions" msgstr "" #: ../../Zotlabs/Module/Connedit.php:897 -#: ../../Zotlabs/Module/Settings/Permcats.php:111 #: ../../Zotlabs/Module/Settings/Tokens.php:167 +#: ../../Zotlabs/Module/Settings/Permcats.php:109 msgid "" "Some permissions may be inherited from your channel's <a href=\"settings" "\"><strong>privacy settings</strong></a>, which have higher priority than " @@ -4617,374 +4922,6 @@ msgstr "" msgid "ZIP Code" msgstr "" -#: ../../Zotlabs/Module/Magic.php:71 -msgid "Hub not found." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:52 -msgid "Unable to create element." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:76 -msgid "Unable to update menu element." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:92 -msgid "Unable to add menu element." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:153 ../../Zotlabs/Module/Mitem.php:230 -msgid "Menu Item Permissions" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:154 ../../Zotlabs/Module/Mitem.php:231 -#: ../../Zotlabs/Module/Settings/Channel.php:510 -msgid "(click to open/close)" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:160 ../../Zotlabs/Module/Mitem.php:176 -msgid "Link Name" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:161 ../../Zotlabs/Module/Mitem.php:239 -msgid "Link or Submenu Target" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:161 -msgid "Enter URL of the link or select a menu name to create a submenu" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:162 ../../Zotlabs/Module/Mitem.php:240 -msgid "Use magic-auth if available" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:163 ../../Zotlabs/Module/Mitem.php:241 -msgid "Open link in new window" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Order in list" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:164 ../../Zotlabs/Module/Mitem.php:242 -msgid "Higher numbers will sink to bottom of listing" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:165 -msgid "Submit and finish" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:166 -msgid "Submit and continue" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:174 -msgid "Menu:" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:177 -msgid "Link Target" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:180 -msgid "Edit menu" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:183 -msgid "Edit element" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:184 -msgid "Drop element" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:185 -msgid "New element" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:186 -msgid "Edit this menu container" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:187 -msgid "Add menu element" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:188 -msgid "Delete this menu item" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:189 -msgid "Edit this menu item" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:206 -msgid "Menu item not found." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:219 -msgid "Menu item deleted." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:221 -msgid "Menu item could not be deleted." -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:228 -msgid "Edit Menu Element" -msgstr "" - -#: ../../Zotlabs/Module/Mitem.php:238 -msgid "Link text" -msgstr "" - -#: ../../Zotlabs/Module/Ratings.php:70 -msgid "No ratings" -msgstr "" - -#: ../../Zotlabs/Module/Ratings.php:83 ../../Zotlabs/Module/Search.php:17 -#: ../../Zotlabs/Module/Directory.php:63 ../../Zotlabs/Module/Display.php:22 -#: ../../Zotlabs/Module/Viewconnections.php:23 -#: ../../Zotlabs/Module/Photos.php:508 -msgid "Public access denied." -msgstr "" - -#: ../../Zotlabs/Module/Ratings.php:98 -msgid "Rating: " -msgstr "" - -#: ../../Zotlabs/Module/Ratings.php:99 -msgid "Website: " -msgstr "" - -#: ../../Zotlabs/Module/Ratings.php:101 -msgid "Description: " -msgstr "" - -#: ../../Zotlabs/Module/Attach.php:13 -msgid "Item not available." -msgstr "" - -#: ../../Zotlabs/Module/Notify.php:57 -#: ../../Zotlabs/Module/Notifications.php:38 -msgid "No more system notifications." -msgstr "" - -#: ../../Zotlabs/Module/Notify.php:61 -#: ../../Zotlabs/Module/Notifications.php:42 -msgid "System Notifications" -msgstr "" - -#: ../../Zotlabs/Module/Impel.php:41 ../../include/bbcode.php:203 -msgid "webpage" -msgstr "" - -#: ../../Zotlabs/Module/Impel.php:46 ../../include/bbcode.php:209 -msgid "block" -msgstr "" - -#: ../../Zotlabs/Module/Impel.php:51 ../../include/bbcode.php:206 -msgid "layout" -msgstr "" - -#: ../../Zotlabs/Module/Impel.php:58 ../../include/bbcode.php:212 -msgid "menu" -msgstr "" - -#: ../../Zotlabs/Module/Impel.php:181 -#, php-format -msgid "%s element installed" -msgstr "" - -#: ../../Zotlabs/Module/Impel.php:184 -#, php-format -msgid "%s element installation failed" -msgstr "" - -#: ../../Zotlabs/Module/Api.php:72 ../../Zotlabs/Module/Api.php:93 -msgid "Authorize application connection" -msgstr "" - -#: ../../Zotlabs/Module/Api.php:73 -msgid "Return to your app and insert this Security Code:" -msgstr "" - -#: ../../Zotlabs/Module/Api.php:83 -msgid "Please login to continue." -msgstr "" - -#: ../../Zotlabs/Module/Api.php:95 -msgid "" -"Do you want to authorize this application to access your posts and contacts, " -"and/or create new posts for you?" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:29 -msgid "Total invitation limit exceeded." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:53 -#, php-format -msgid "%s : Not a valid email address." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:67 -msgid "Please join us on $Projectname" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:77 -msgid "Invitation limit exceeded. Please contact your site administrator." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:82 -#, php-format -msgid "%s : Message delivery failed." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:86 -#, php-format -msgid "%d message sent." -msgid_plural "%d messages sent." -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Invite.php:105 -msgid "You have no more invitations available" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:136 -msgid "Send invitations" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:137 -msgid "Enter email addresses, one per line:" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:138 ../../Zotlabs/Module/Mail.php:284 -msgid "Your message:" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:139 -msgid "Please join my community on $Projectname." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:141 -msgid "You will need to supply this invitation code:" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:142 -msgid "1. Register at any $Projectname location (they are all inter-connected)" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:144 -msgid "2. Enter my $Projectname network address into the site searchbar." -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:145 -msgid "or visit" -msgstr "" - -#: ../../Zotlabs/Module/Invite.php:147 -msgid "3. Click [Connect]" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:20 -msgid "About this site" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:21 -msgid "Site Name" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:25 ../../include/network.php:1474 -msgid "Administrator" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:28 -msgid "Software and Project information" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:29 -msgid "This site is powered by $Projectname" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:30 -msgid "" -"Federated and decentralised networking and identity services provided by Zot" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:32 -#, php-format -msgid "Version %s" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:33 -msgid "Project homepage" -msgstr "" - -#: ../../Zotlabs/Module/Siteinfo.php:34 -msgid "Developer homepage" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:140 -msgid "Create Channel" -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:141 -msgid "" -"A channel is your identity on this network. It can represent a person, a " -"blog, or a forum to name a few. Channels can make connections with other " -"channels to share information with highly detailed permissions." -msgstr "" - -#: ../../Zotlabs/Module/New_channel.php:142 -msgid "" -"or <a href=\"import\">import an existing channel</a> from another location." -msgstr "" - -#: ../../Zotlabs/Module/Notifications.php:43 ../../include/nav.php:208 -msgid "Mark all system notifications seen" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:168 ../../Zotlabs/Lib/Apps.php:235 -#: ../../include/conversation.php:942 ../../include/conversation.php:1109 -msgid "Poke" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:169 -msgid "Poke somebody" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:172 -msgid "Poke/Prod" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:173 -msgid "Poke, prod or do other things to somebody" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:180 -msgid "Recipient" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:181 -msgid "Choose what you wish to do to recipient" -msgstr "" - -#: ../../Zotlabs/Module/Poke.php:184 ../../Zotlabs/Module/Poke.php:185 -msgid "Make this post private" -msgstr "" - -#: ../../Zotlabs/Module/Search.php:224 -#, php-format -msgid "Items tagged with: %s" -msgstr "" - -#: ../../Zotlabs/Module/Search.php:226 -#, php-format -msgid "Search results for: %s" -msgstr "" - #: ../../Zotlabs/Module/Like.php:19 msgid "Like/Dislike" msgstr "" @@ -5004,7 +4941,7 @@ msgstr "" msgid "Invalid request." msgstr "" -#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:126 +#: ../../Zotlabs/Module/Like.php:117 ../../include/conversation.php:122 msgid "channel" msgstr "" @@ -5023,27 +4960,27 @@ msgstr "" #: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 #: ../../Zotlabs/Module/Tagger.php:47 #: ../../extend/addon/addon/redphotos/redphotohelper.php:74 -#: ../../include/conversation.php:120 ../../include/text.php:1928 +#: ../../include/conversation.php:116 ../../include/text.php:1928 msgid "photo" msgstr "" #: ../../Zotlabs/Module/Like.php:370 ../../Zotlabs/Module/Subthread.php:87 -#: ../../include/conversation.php:148 ../../include/text.php:1934 +#: ../../include/conversation.php:144 ../../include/text.php:1934 msgid "status" msgstr "" #: ../../Zotlabs/Module/Like.php:372 ../../Zotlabs/Module/Events.php:260 #: ../../Zotlabs/Module/Tagger.php:51 ../../include/event.php:1145 -#: ../../include/conversation.php:123 ../../include/text.php:1931 +#: ../../include/conversation.php:119 ../../include/text.php:1931 msgid "event" msgstr "" -#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:164 +#: ../../Zotlabs/Module/Like.php:419 ../../include/conversation.php:160 #, php-format msgid "%1$s likes %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:167 +#: ../../Zotlabs/Module/Like.php:421 ../../include/conversation.php:163 #, php-format msgid "%1$s doesn't like %2$s's %3$s" msgstr "" @@ -5119,7 +5056,7 @@ msgstr "" msgid "%1$s stopped following %2$s's %3$s" msgstr "" -#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:260 +#: ../../Zotlabs/Module/Mood.php:67 ../../include/conversation.php:256 #, php-format msgctxt "mood" msgid "%1$s is %2$s" @@ -5182,7 +5119,7 @@ msgid "Subject:" msgstr "" #: ../../Zotlabs/Module/Mail.php:286 ../../Zotlabs/Module/Mail.php:411 -#: ../../include/conversation.php:1390 +#: ../../include/conversation.php:1296 msgid "Attach file" msgstr "" @@ -5191,7 +5128,7 @@ msgid "Send" msgstr "" #: ../../Zotlabs/Module/Mail.php:291 ../../Zotlabs/Module/Mail.php:416 -#: ../../include/conversation.php:1435 +#: ../../include/conversation.php:1341 msgid "Set expiration date" msgstr "" @@ -5230,6 +5167,11 @@ msgstr "" msgid "Your message for %s (%s):" msgstr "" +#: ../../Zotlabs/Module/Blocks.php:97 ../../Zotlabs/Module/Blocks.php:155 +#: ../../Zotlabs/Module/Editblock.php:113 +msgid "Block Name" +msgstr "" + #: ../../Zotlabs/Module/Blocks.php:154 ../../include/text.php:2258 msgid "Blocks" msgstr "" @@ -5238,26 +5180,34 @@ msgstr "" msgid "Block Title" msgstr "" -#: ../../Zotlabs/Module/Layouts.php:184 ../../include/text.php:2260 -msgid "Layouts" +#: ../../Zotlabs/Module/Item.php:184 +msgid "Unable to locate original post." msgstr "" -#: ../../Zotlabs/Module/Layouts.php:186 ../../Zotlabs/Lib/Apps.php:232 -#: ../../include/help.php:55 ../../include/help.php:61 -#: ../../include/nav.php:174 ../../include/nav.php:288 -msgid "Help" +#: ../../Zotlabs/Module/Item.php:450 +msgid "Empty post discarded." msgstr "" -#: ../../Zotlabs/Module/Layouts.php:186 -msgid "Comanche page description language help" +#: ../../Zotlabs/Module/Item.php:824 +msgid "Duplicate post suppressed." msgstr "" -#: ../../Zotlabs/Module/Layouts.php:190 -msgid "Layout Description" +#: ../../Zotlabs/Module/Item.php:954 +msgid "System error. Post not saved." msgstr "" -#: ../../Zotlabs/Module/Layouts.php:195 -msgid "Download PDL file" +#: ../../Zotlabs/Module/Item.php:1084 +msgid "Unable to obtain post information from database." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1091 +#, php-format +msgid "You have reached your limit of %1$.0f top level posts." +msgstr "" + +#: ../../Zotlabs/Module/Item.php:1098 +#, php-format +msgid "You have reached your limit of %1$.0f webpages." msgstr "" #: ../../Zotlabs/Module/Rate.php:156 @@ -5279,7 +5229,6 @@ msgstr "" #: ../../Zotlabs/Module/Profile_photo.php:115 #: ../../Zotlabs/Module/Profile_photo.php:226 -#: ../../Zotlabs/Module/Photos.php:97 ../../Zotlabs/Module/Photos.php:729 #: ../../include/photo/photo_driver.php:646 msgid "Profile Photos" msgstr "" @@ -5438,116 +5387,12 @@ msgid "" "or restore these in date order (oldest first)." msgstr "" -#: ../../Zotlabs/Module/Directory.php:245 -#, php-format -msgid "%d rating" -msgid_plural "%d ratings" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Directory.php:256 -msgid "Gender: " -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:258 -msgid "Status: " -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:260 -msgid "Homepage: " -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:309 ../../include/channel.php:1293 -msgid "Age:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:314 ../../include/event.php:52 -#: ../../include/event.php:84 ../../include/channel.php:1134 -msgid "Location:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:320 -msgid "Description:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:325 ../../include/channel.php:1309 -msgid "Hometown:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:327 ../../include/channel.php:1317 -msgid "About:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:328 ../../Zotlabs/Module/Suggest.php:54 -#: ../../Zotlabs/Widget/Suggestions.php:44 ../../Zotlabs/Widget/Follow.php:32 -#: ../../include/connections.php:110 ../../include/conversation.php:938 -#: ../../include/conversation.php:1069 ../../include/channel.php:1119 -msgid "Connect" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:329 -msgid "Public Forum:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:332 -msgid "Keywords: " -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:335 -msgid "Don't suggest" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:337 -msgid "Common connections:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:386 -msgid "Global Directory" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:386 -msgid "Local Directory" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:392 -msgid "Finding:" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:395 ../../Zotlabs/Module/Suggest.php:62 -#: ../../include/contact_widgets.php:24 -msgid "Channel Suggestions" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:397 -msgid "next page" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:397 -msgid "previous page" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:398 -msgid "Sort options" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:399 -msgid "Alphabetic" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:400 -msgid "Reverse Alphabetic" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:401 -msgid "Newest to Oldest" -msgstr "" - -#: ../../Zotlabs/Module/Directory.php:402 -msgid "Oldest to Newest" +#: ../../Zotlabs/Module/Editblock.php:129 ../../include/conversation.php:1312 +msgid "Title (optional)" msgstr "" -#: ../../Zotlabs/Module/Directory.php:419 -msgid "No entries (some entries may be hidden)." +#: ../../Zotlabs/Module/Editblock.php:138 +msgid "Edit Block" msgstr "" #: ../../Zotlabs/Module/Lostpass.php:19 @@ -5574,7 +5419,7 @@ msgid "" "Password reset failed." msgstr "" -#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1698 +#: ../../Zotlabs/Module/Lostpass.php:91 ../../boot.php:1614 msgid "Password Reset" msgstr "" @@ -5723,7 +5568,7 @@ msgstr "" msgid "Profile Visibility Editor" msgstr "" -#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1362 +#: ../../Zotlabs/Module/Profperm.php:113 ../../include/channel.php:1340 msgid "Profile" msgstr "" @@ -5820,7 +5665,7 @@ msgstr "" msgid "Edit Location" msgstr "" -#: ../../Zotlabs/Module/Events.php:479 ../../include/conversation.php:1410 +#: ../../Zotlabs/Module/Events.php:479 ../../include/conversation.php:1316 msgid "Permission settings" msgstr "" @@ -5871,14 +5716,437 @@ msgstr "" msgid "No service class restrictions found." msgstr "" -#: ../../Zotlabs/Module/Hcard.php:35 ../../Zotlabs/Module/Channel.php:47 -#: ../../Zotlabs/Module/Profile.php:43 -msgid "Posts and comments" +#: ../../Zotlabs/Module/Setup.php:176 +msgid "$Projectname Server - Setup" msgstr "" -#: ../../Zotlabs/Module/Hcard.php:42 ../../Zotlabs/Module/Channel.php:54 -#: ../../Zotlabs/Module/Profile.php:50 -msgid "Only posts" +#: ../../Zotlabs/Module/Setup.php:180 +msgid "Could not connect to database." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:184 +msgid "" +"Could not connect to specified site URL. Possible SSL certificate or DNS " +"issue." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:191 +msgid "Could not create table." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:196 +msgid "Your site database has been installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:200 +msgid "" +"You may need to import the file \"install/schema_xxx.sql\" manually using a " +"database client." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:201 ../../Zotlabs/Module/Setup.php:263 +#: ../../Zotlabs/Module/Setup.php:743 +msgid "Please see the file \"install/INSTALL.txt\"." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:260 +msgid "System check" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:265 +msgid "Check again" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:287 +msgid "Database connection" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:288 +msgid "" +"In order to install $Projectname we need to know how to connect to your " +"database." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:289 +msgid "" +"Please contact your hosting provider or site administrator if you have " +"questions about these settings." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:290 +msgid "" +"The database you specify below should already exist. If it does not, please " +"create it before continuing." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:294 +msgid "Database Server Name" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:294 +msgid "Default is 127.0.0.1" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:295 +msgid "Database Port" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:295 +msgid "Communication port number - use 0 for default" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:296 +msgid "Database Login Name" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:297 +msgid "Database Login Password" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:298 +msgid "Database Name" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:299 +msgid "Database Type" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:342 +msgid "Site administrator email address" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:301 ../../Zotlabs/Module/Setup.php:342 +msgid "" +"Your account email address must match this in order to use the web admin " +"panel." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:302 ../../Zotlabs/Module/Setup.php:344 +msgid "Website URL" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:302 ../../Zotlabs/Module/Setup.php:344 +msgid "Please use SSL (https) URL if available." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:303 ../../Zotlabs/Module/Setup.php:346 +msgid "Please select a default timezone for your website" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:331 +msgid "Site settings" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:385 +msgid "PHP version 5.5 or greater is required." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:386 +msgid "PHP version" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:402 +msgid "Could not find a command line version of PHP in the web server PATH." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:403 +msgid "" +"If you don't have a command line version of PHP installed on server, you " +"will not be able to run background polling via cron." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:407 +msgid "PHP executable path" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:407 +msgid "" +"Enter full path to php executable. You can leave this blank to continue the " +"installation." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:412 +msgid "Command line PHP" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:422 +msgid "" +"Unable to check command line PHP, as shell_exec() is disabled. This is " +"required." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:425 +msgid "" +"The command line version of PHP on your system does not have " +"\"register_argc_argv\" enabled." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:426 +msgid "This is required for message delivery to work." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:429 +msgid "PHP register_argc_argv" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:447 +#, 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:452 +msgid "You can adjust these settings in the server php.ini file." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:454 +msgid "PHP upload limits" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:477 +msgid "" +"Error: the \"openssl_pkey_new\" function on this system is not able to " +"generate encryption keys" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:478 +msgid "" +"If running under Windows, please see \"http://www.php.net/manual/en/openssl." +"installation.php\"." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:481 +msgid "Generate encryption keys" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:498 +msgid "libCurl PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:499 +msgid "GD graphics PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:500 +msgid "OpenSSL PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:501 +msgid "PDO database PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:502 +msgid "mb_string PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:503 +msgid "xml PHP module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:507 ../../Zotlabs/Module/Setup.php:509 +msgid "Apache mod_rewrite module" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:507 +msgid "" +"Error: Apache webserver mod-rewrite module is required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:513 ../../Zotlabs/Module/Setup.php:516 +msgid "exec" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:513 +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 +msgid "shell_exec" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:519 +msgid "" +"Error: shell_exec is required but is either not installed or has been " +"disabled in php.ini" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:527 +msgid "Error: libCURL PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:531 +msgid "" +"Error: GD graphics PHP module with JPEG support required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:535 +msgid "Error: openssl PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:539 +msgid "Error: PDO database PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:543 +msgid "Error: mb_string PHP module required but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:547 +msgid "Error: xml PHP module required for DAV but not installed." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:565 +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:566 +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:567 +msgid "" +"At the end of this procedure, we will give you a text to save in a file " +"named .htconfig.php in your Red top folder." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:568 +msgid "" +"You can alternatively skip this procedure and perform a manual installation. " +"Please see the file \"install/INSTALL.txt\" for instructions." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:571 +msgid ".htconfig.php is writable" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:585 +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:586 +#, 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:587 ../../Zotlabs/Module/Setup.php:608 +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:588 +#, 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:591 +#, php-format +msgid "%s is writable" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:607 +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:611 +msgid "store is writable" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:644 +msgid "" +"SSL certificate cannot be validated. Fix certificate or disable https access " +"to this site." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:645 +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:646 +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:647 +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:648 +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:649 +msgid "" +"Providers are available that issue free certificates which are browser-valid." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:651 +msgid "" +"If you are confident that the certificate is valid and signed by a trusted " +"authority, check to see if you have failed to install an intermediate cert. " +"These are not normally required by browsers, but are required for server-to-" +"server communications." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:653 +msgid "SSL certificate validation" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:659 +msgid "" +"Url rewrite in .htaccess is not working. Check your server configuration." +"Test: " +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:662 +msgid "Url rewrite is working" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:676 +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:700 +#: ../../extend/addon/addon/cdav/cdav.php:41 +#: ../../extend/addon/addon/rendezvous/rendezvous.php:401 +msgid "Errors encountered creating database tables." +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:741 +msgid "<h1>What next</h1>" +msgstr "" + +#: ../../Zotlabs/Module/Setup.php:742 +msgid "" +"IMPORTANT: You will need to [manually] setup a scheduled task for the poller." msgstr "" #: ../../Zotlabs/Module/Removeme.php:35 @@ -6026,15 +6294,15 @@ msgstr "" msgid "Authentication failed." msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:75 ../../include/channel.php:1984 +#: ../../Zotlabs/Module/Rmagic.php:75 ../../include/channel.php:1962 msgid "Remote Authentication" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:1985 +#: ../../Zotlabs/Module/Rmagic.php:76 ../../include/channel.php:1963 msgid "Enter your channel address (e.g. channel@example.com)" msgstr "" -#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:1986 +#: ../../Zotlabs/Module/Rmagic.php:77 ../../include/channel.php:1964 msgid "Authenticate" msgstr "" @@ -6324,24 +6592,6 @@ msgstr "" msgid "Feature/Addon Settings" msgstr "" -#: ../../Zotlabs/Module/Settings/Permcats.php:37 -msgid "Permission category saved." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Permcats.php:63 -msgid "" -"Use this form to create permission rules for various classes of people or " -"connections." -msgstr "" - -#: ../../Zotlabs/Module/Settings/Permcats.php:96 -msgid "Permission Categories" -msgstr "" - -#: ../../Zotlabs/Module/Settings/Permcats.php:104 -msgid "Permission Name" -msgstr "" - #: ../../Zotlabs/Module/Settings/Tokens.php:31 #, php-format msgid "This channel is limited to %d tokens" @@ -6454,7 +6704,7 @@ msgid "Basic Settings" msgstr "" #: ../../Zotlabs/Module/Settings/Channel.php:482 -#: ../../include/channel.php:1250 +#: ../../include/channel.php:1228 msgid "Full Name:" msgstr "" @@ -6763,6 +7013,24 @@ msgstr "" msgid "Start calendar week on Monday" msgstr "" +#: ../../Zotlabs/Module/Settings/Permcats.php:37 +msgid "Permission category saved." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Permcats.php:61 +msgid "" +"Use this form to create permission rules for various classes of people or " +"connections." +msgstr "" + +#: ../../Zotlabs/Module/Settings/Permcats.php:94 +msgid "Permission Categories" +msgstr "" + +#: ../../Zotlabs/Module/Settings/Permcats.php:102 +msgid "Permission Name" +msgstr "" + #: ../../Zotlabs/Module/Tagrm.php:48 ../../Zotlabs/Module/Tagrm.php:98 msgid "Tag removed" msgstr "" @@ -6836,7 +7104,7 @@ msgstr "" msgid "post" msgstr "" -#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:150 +#: ../../Zotlabs/Module/Tagger.php:57 ../../include/conversation.php:146 #: ../../include/text.php:1936 msgid "comment" msgstr "" @@ -6929,283 +7197,6 @@ msgid "" "only once and leave this page open until finished." msgstr "" -#: ../../Zotlabs/Module/Photos.php:82 -msgid "Page owner information could not be retrieved." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:103 ../../Zotlabs/Module/Photos.php:129 -msgid "Album not found." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:112 -msgid "Delete Album" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:133 -msgid "" -"Multiple storage folders exist with this album name, but within different " -"directories. Please remove the desired folder or folders using the Files " -"manager" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:190 ../../Zotlabs/Module/Photos.php:1054 -msgid "Delete Photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:519 -msgid "No photos selected" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:568 -msgid "Access to this item is restricted." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:607 -#, php-format -msgid "%1$.2f MB of %2$.2f MB photo storage used." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:610 -#, php-format -msgid "%1$.2f MB photo storage used." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:646 -msgid "Upload Photos" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:650 -msgid "Enter an album name" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:651 -msgid "or select an existing album (doubleclick)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:652 -msgid "Create a status post for this upload" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:653 -msgid "Caption (optional):" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:654 -msgid "Description (optional):" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:685 -msgid "Album name could not be decoded" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:729 -msgid "Contact Photos" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:752 -msgid "Show Newest First" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:754 -msgid "Show Oldest First" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:778 ../../Zotlabs/Module/Photos.php:1335 -#: ../../Zotlabs/Module/Embedphotos.php:139 ../../Zotlabs/Widget/Album.php:78 -msgid "View Photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:809 -#: ../../Zotlabs/Module/Embedphotos.php:155 ../../Zotlabs/Widget/Album.php:95 -msgid "Edit Album" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:856 -msgid "Permission denied. Access to this item may be restricted." -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:858 -msgid "Photo not available" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:916 -msgid "Use as profile photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:917 -msgid "Use as cover photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:924 -msgid "Private Photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:939 -msgid "View Full Size" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1028 -msgid "Edit photo" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1030 -msgid "Rotate CW (right)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1031 -msgid "Rotate CCW (left)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1034 -msgid "Move photo to album" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1035 -msgid "Enter a new album name" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1036 -msgid "or select an existing one (doubleclick)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1039 -msgid "Caption" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1041 -msgid "Add a Tag" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1049 -msgid "Example: @bob, @Barbara_Jensen, @jim@example.com" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1052 -msgid "Flag as adult in album view" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1071 ../../Zotlabs/Lib/ThreadItem.php:268 -msgid "I like this (toggle)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1072 ../../Zotlabs/Lib/ThreadItem.php:269 -msgid "I don't like this (toggle)" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1074 ../../Zotlabs/Lib/ThreadItem.php:411 -#: ../../include/conversation.php:738 -msgid "Please wait" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1090 ../../Zotlabs/Module/Photos.php:1208 -#: ../../Zotlabs/Lib/ThreadItem.php:728 -msgid "This is you" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1092 ../../Zotlabs/Module/Photos.php:1210 -#: ../../Zotlabs/Lib/ThreadItem.php:730 ../../include/js_strings.php:6 -msgid "Comment" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:577 -msgctxt "title" -msgid "Likes" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1108 ../../include/conversation.php:577 -msgctxt "title" -msgid "Dislikes" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:578 -msgctxt "title" -msgid "Agree" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:578 -msgctxt "title" -msgid "Disagree" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1109 ../../include/conversation.php:578 -msgctxt "title" -msgid "Abstain" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1110 ../../include/conversation.php:579 -msgctxt "title" -msgid "Attending" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1110 ../../include/conversation.php:579 -msgctxt "title" -msgid "Not attending" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1110 ../../include/conversation.php:579 -msgctxt "title" -msgid "Might attend" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1127 ../../Zotlabs/Module/Photos.php:1139 -#: ../../Zotlabs/Lib/ThreadItem.php:186 ../../Zotlabs/Lib/ThreadItem.php:198 -#: ../../include/conversation.php:1928 -msgid "View all" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1131 ../../Zotlabs/Lib/ThreadItem.php:190 -#: ../../include/taxonomy.php:403 ../../include/conversation.php:1952 -#: ../../include/channel.php:1268 -msgctxt "noun" -msgid "Like" -msgid_plural "Likes" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Photos.php:1136 ../../Zotlabs/Lib/ThreadItem.php:195 -#: ../../include/conversation.php:1955 -msgctxt "noun" -msgid "Dislike" -msgid_plural "Dislikes" -msgstr[0] "" -msgstr[1] "" - -#: ../../Zotlabs/Module/Photos.php:1236 -msgid "Photo Tools" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1245 -msgid "In This Photo:" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1250 -msgid "Map" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1258 ../../Zotlabs/Lib/ThreadItem.php:400 -msgctxt "noun" -msgid "Likes" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1259 ../../Zotlabs/Lib/ThreadItem.php:401 -msgctxt "noun" -msgid "Dislikes" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1264 ../../Zotlabs/Lib/ThreadItem.php:406 -#: ../../include/acl_selectors.php:220 -msgid "Close" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1341 -msgid "View Album" -msgstr "" - -#: ../../Zotlabs/Module/Photos.php:1352 ../../Zotlabs/Module/Photos.php:1365 -#: ../../Zotlabs/Module/Photos.php:1366 -msgid "Recent Photos" -msgstr "" - #: ../../Zotlabs/Module/Xchan.php:10 msgid "Xchan Lookup" msgstr "" @@ -7520,11 +7511,11 @@ msgstr "" msgid "This is your default setting for the audience of your webpages" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:663 +#: ../../Zotlabs/Lib/ThreadItem.php:95 ../../include/conversation.php:660 msgid "Private Message" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:655 +#: ../../Zotlabs/Lib/ThreadItem.php:132 ../../include/conversation.php:652 msgid "Select" msgstr "" @@ -7572,11 +7563,11 @@ msgstr "" msgid "starred" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:239 ../../include/conversation.php:670 +#: ../../Zotlabs/Lib/ThreadItem.php:239 ../../include/conversation.php:667 msgid "Message signature validated" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:240 ../../include/conversation.php:671 +#: ../../Zotlabs/Lib/ThreadItem.php:240 ../../include/conversation.php:668 msgid "Message signature incorrect" msgstr "" @@ -7632,87 +7623,166 @@ msgstr "" msgid "via Wall-To-Wall:" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:350 ../../include/conversation.php:717 +#: ../../Zotlabs/Lib/ThreadItem.php:349 ../../include/conversation.php:714 #, php-format msgid "from %s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:353 ../../include/conversation.php:720 +#: ../../Zotlabs/Lib/ThreadItem.php:352 ../../include/conversation.php:717 #, php-format msgid "last edited: %s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:354 ../../include/conversation.php:721 +#: ../../Zotlabs/Lib/ThreadItem.php:353 ../../include/conversation.php:718 #, php-format msgid "Expires: %s" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:360 +#: ../../Zotlabs/Lib/ThreadItem.php:359 msgid "Attend" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:361 +#: ../../Zotlabs/Lib/ThreadItem.php:360 msgid "Attendance Options" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:362 +#: ../../Zotlabs/Lib/ThreadItem.php:361 msgid "Vote" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:363 +#: ../../Zotlabs/Lib/ThreadItem.php:362 msgid "Voting Options" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:383 +#: ../../Zotlabs/Lib/ThreadItem.php:382 #: ../../extend/addon/addon/bookmarker/bookmarker.php:38 msgid "Save Bookmarks" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:384 +#: ../../Zotlabs/Lib/ThreadItem.php:383 msgid "Add to Calendar" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:393 +#: ../../Zotlabs/Lib/ThreadItem.php:392 msgid "Mark all seen" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:442 ../../include/js_strings.php:7 +#: ../../Zotlabs/Lib/ThreadItem.php:441 ../../include/js_strings.php:7 #, php-format msgid "%s show all" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:732 ../../include/conversation.php:1385 +#: ../../Zotlabs/Lib/ThreadItem.php:731 ../../include/conversation.php:1291 msgid "Bold" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:733 ../../include/conversation.php:1386 +#: ../../Zotlabs/Lib/ThreadItem.php:732 ../../include/conversation.php:1292 msgid "Italic" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:734 ../../include/conversation.php:1387 +#: ../../Zotlabs/Lib/ThreadItem.php:733 ../../include/conversation.php:1293 msgid "Underline" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:735 ../../include/conversation.php:1388 +#: ../../Zotlabs/Lib/ThreadItem.php:734 ../../include/conversation.php:1294 msgid "Quote" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:736 ../../include/conversation.php:1389 +#: ../../Zotlabs/Lib/ThreadItem.php:735 ../../include/conversation.php:1295 msgid "Code" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:737 +#: ../../Zotlabs/Lib/ThreadItem.php:736 msgid "Image" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:738 +#: ../../Zotlabs/Lib/ThreadItem.php:737 msgid "Insert Link" msgstr "" -#: ../../Zotlabs/Lib/ThreadItem.php:739 +#: ../../Zotlabs/Lib/ThreadItem.php:738 msgid "Video" msgstr "" +#: ../../Zotlabs/Lib/NativeWikiPage.php:31 +#: ../../Zotlabs/Lib/NativeWikiPage.php:72 +msgid "(No Title)" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:86 +msgid "Wiki page create failed." +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:99 +msgid "Wiki not found." +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:110 +msgid "Destination name already exists" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:136 +#: ../../Zotlabs/Lib/NativeWikiPage.php:331 +msgid "Page not found" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:166 +msgid "Error reading page content" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:322 +#: ../../Zotlabs/Lib/NativeWikiPage.php:370 +#: ../../Zotlabs/Lib/NativeWikiPage.php:437 +#: ../../Zotlabs/Lib/NativeWikiPage.php:478 +msgid "Error reading wiki" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:358 +msgid "Page update failed." +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:392 +msgid "Nothing deleted" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:458 +msgid "Compare: object not found." +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:464 +msgid "Page updated" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:467 +msgid "Untitled" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:473 +msgid "Wiki resource_id required for git commit" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:529 +#: ../../Zotlabs/Widget/Wiki_page_history.php:23 +msgctxt "wiki_history" +msgid "Message" +msgstr "" + +#: ../../Zotlabs/Lib/NativeWikiPage.php:567 +#: ../../extend/addon/addon/gitwiki/gitwiki_backend.php:579 +#: ../../include/bbcode.php:610 ../../include/bbcode.php:756 +msgid "Different viewers will see this text differently" +msgstr "" + +#: ../../Zotlabs/Lib/DB_Upgrade.php:79 +#, php-format +msgid "Update Error at %s" +msgstr "" + +#: ../../Zotlabs/Lib/DB_Upgrade.php:85 +#, php-format +msgid "Update %s failed. See error logs." +msgstr "" + #: ../../Zotlabs/Lib/Permcat.php:58 msgctxt "permcat" msgid "default" @@ -7763,7 +7833,7 @@ msgid "Suggest Channels" msgstr "" #: ../../Zotlabs/Lib/Apps.php:220 ../../include/nav.php:130 -#: ../../boot.php:1690 +#: ../../boot.php:1606 msgid "Login" msgstr "" @@ -7771,7 +7841,7 @@ msgstr "" msgid "Grid" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:226 ../../include/conversation.php:1903 +#: ../../Zotlabs/Lib/Apps.php:226 ../../include/conversation.php:1809 #: ../../include/features.php:99 msgid "Wiki" msgstr "" @@ -7780,8 +7850,8 @@ msgstr "" msgid "Channel Home" msgstr "" -#: ../../Zotlabs/Lib/Apps.php:230 ../../include/conversation.php:1853 -#: ../../include/conversation.php:1856 ../../include/nav.php:218 +#: ../../Zotlabs/Lib/Apps.php:230 ../../include/conversation.php:1759 +#: ../../include/conversation.php:1762 ../../include/nav.php:218 msgid "Events" msgstr "" @@ -7849,97 +7919,111 @@ msgstr "" msgid "Remove from app-tray" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:31 -#: ../../Zotlabs/Lib/NativeWikiPage.php:72 -msgid "(No Title)" +#: ../../Zotlabs/Lib/NativeWiki.php:128 +msgid "Wiki files deleted successfully" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:86 -msgid "Wiki page create failed." +#: ../../Zotlabs/Widget/Activity.php:50 +msgctxt "widget" +msgid "Activity" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:99 -msgid "Wiki not found." +#: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 +msgid "Member registrations waiting for confirmation" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:110 -msgid "Destination name already exists" +#: ../../Zotlabs/Widget/Admin.php:29 +msgid "Inspect queue" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:136 -#: ../../Zotlabs/Lib/NativeWikiPage.php:331 -msgid "Page not found" +#: ../../Zotlabs/Widget/Admin.php:31 +msgid "DB updates" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:166 -msgid "Error reading page content" +#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:233 +msgid "Admin" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:322 -#: ../../Zotlabs/Lib/NativeWikiPage.php:370 -#: ../../Zotlabs/Lib/NativeWikiPage.php:437 -#: ../../Zotlabs/Lib/NativeWikiPage.php:478 -msgid "Error reading wiki" +#: ../../Zotlabs/Widget/Admin.php:56 +msgid "Plugin Features" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:358 -msgid "Page update failed." +#: ../../Zotlabs/Widget/Affinity.php:49 +msgid "Refresh" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:392 -msgid "Nothing deleted" +#: ../../Zotlabs/Widget/Appcategories.php:39 +#: ../../Zotlabs/Widget/Tagcloud.php:25 ../../include/taxonomy.php:188 +#: ../../include/taxonomy.php:270 ../../include/contact_widgets.php:91 +msgid "Categories" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:458 -msgid "Compare: object not found." +#: ../../Zotlabs/Widget/Appcategories.php:42 ../../Zotlabs/Widget/Filer.php:31 +#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 +msgid "Everything" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:464 -msgid "Page updated" +#: ../../Zotlabs/Widget/Archive.php:43 +msgid "Archives" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:467 -msgid "Untitled" +#: ../../Zotlabs/Widget/Bookmarkedchats.php:24 +msgid "Bookmarked Chatrooms" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:473 -msgid "Wiki resource_id required for git commit" +#: ../../Zotlabs/Widget/Chatroom_list.php:16 +#: ../../include/conversation.php:1772 ../../include/conversation.php:1775 +msgid "Chatrooms" msgstr "" -#: ../../Zotlabs/Lib/NativeWikiPage.php:544 -#: ../../extend/addon/addon/gitwiki/gitwiki_backend.php:579 -#: ../../include/bbcode.php:610 ../../include/bbcode.php:756 -msgid "Different viewers will see this text differently" +#: ../../Zotlabs/Widget/Chatroom_list.php:20 +msgid "Overview" msgstr "" -#: ../../Zotlabs/Lib/NativeWiki.php:128 -msgid "Wiki files deleted successfully" +#: ../../Zotlabs/Widget/Chatroom_members.php:11 +msgid "Chat Members" msgstr "" -#: ../../Zotlabs/Widget/Notes.php:16 -msgid "Notes" +#: ../../Zotlabs/Widget/Conversations.php:17 +#: ../../Zotlabs/Widget/Conversations.php:29 +msgid "Conversations" +msgstr "" + +#: ../../Zotlabs/Widget/Conversations.php:21 +msgid "Received Messages" +msgstr "" + +#: ../../Zotlabs/Widget/Conversations.php:25 +msgid "Sent Messages" +msgstr "" + +#: ../../Zotlabs/Widget/Conversations.php:39 +msgid "No messages." +msgstr "" + +#: ../../Zotlabs/Widget/Conversations.php:57 +msgid "Delete conversation" msgstr "" #: ../../Zotlabs/Widget/Cover_photo.php:54 msgid "Click to show more" msgstr "" -#: ../../Zotlabs/Widget/Tagcloud.php:25 -#: ../../Zotlabs/Widget/Appcategories.php:39 ../../include/taxonomy.php:188 -#: ../../include/taxonomy.php:270 ../../include/contact_widgets.php:91 -msgid "Categories" +#: ../../Zotlabs/Widget/Eventstools.php:13 +msgid "Events Tools" msgstr "" -#: ../../Zotlabs/Widget/Photo_rand.php:58 ../../Zotlabs/Widget/Photo.php:48 -msgid "photo/image" +#: ../../Zotlabs/Widget/Eventstools.php:14 +msgid "Export Calendar" msgstr "" -#: ../../Zotlabs/Widget/Suggestions.php:51 -msgid "Suggestions" +#: ../../Zotlabs/Widget/Eventstools.php:15 +msgid "Import Calendar" msgstr "" -#: ../../Zotlabs/Widget/Suggestions.php:52 -msgid "See more..." +#: ../../Zotlabs/Widget/Filer.php:28 ../../include/contact_widgets.php:53 +#: ../../include/features.php:390 +msgid "Saved Folders" msgstr "" #: ../../Zotlabs/Widget/Follow.php:22 @@ -7959,30 +8043,36 @@ msgstr "" msgid "Examples: bob@example.com, https://example.com/barbara" msgstr "" -#: ../../Zotlabs/Widget/Savedsearch.php:75 -msgid "Remove term" +#: ../../Zotlabs/Widget/Forums.php:85 +msgid "Forums" msgstr "" -#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:301 -msgid "Saved Searches" +#: ../../Zotlabs/Widget/Mailmenu.php:13 +msgid "Private Mail Menu" msgstr "" -#: ../../Zotlabs/Widget/Savedsearch.php:84 ../../include/group.php:336 -msgid "add" +#: ../../Zotlabs/Widget/Mailmenu.php:15 +msgid "Combined View" msgstr "" -#: ../../Zotlabs/Widget/Filer.php:28 ../../include/contact_widgets.php:53 -#: ../../include/features.php:390 -msgid "Saved Folders" +#: ../../Zotlabs/Widget/Mailmenu.php:20 ../../include/nav.php:213 +msgid "Inbox" msgstr "" -#: ../../Zotlabs/Widget/Filer.php:31 ../../Zotlabs/Widget/Appcategories.php:42 -#: ../../include/contact_widgets.php:56 ../../include/contact_widgets.php:94 -msgid "Everything" +#: ../../Zotlabs/Widget/Mailmenu.php:25 ../../include/nav.php:214 +msgid "Outbox" msgstr "" -#: ../../Zotlabs/Widget/Archive.php:43 -msgid "Archives" +#: ../../Zotlabs/Widget/Mailmenu.php:30 ../../include/nav.php:215 +msgid "New Message" +msgstr "" + +#: ../../Zotlabs/Widget/Notes.php:16 +msgid "Notes" +msgstr "" + +#: ../../Zotlabs/Widget/Photo.php:48 ../../Zotlabs/Widget/Photo_rand.php:58 +msgid "photo/image" msgstr "" #: ../../Zotlabs/Widget/Rating.php:51 @@ -7997,16 +8087,16 @@ msgstr "" msgid "View Ratings" msgstr "" -#: ../../Zotlabs/Widget/Bookmarkedchats.php:24 -msgid "Bookmarked Chatrooms" +#: ../../Zotlabs/Widget/Savedsearch.php:75 +msgid "Remove term" msgstr "" -#: ../../Zotlabs/Widget/Suggestedchats.php:32 -msgid "Suggested Chatrooms" +#: ../../Zotlabs/Widget/Savedsearch.php:83 ../../include/features.php:301 +msgid "Saved Searches" msgstr "" -#: ../../Zotlabs/Widget/Affinity.php:49 -msgid "Refresh" +#: ../../Zotlabs/Widget/Savedsearch.php:84 ../../include/group.php:336 +msgid "add" msgstr "" #: ../../Zotlabs/Widget/Settings_menu.php:35 @@ -8049,70 +8139,20 @@ msgstr "" msgid "Premium Channel Settings" msgstr "" -#: ../../Zotlabs/Widget/Mailmenu.php:13 -msgid "Private Mail Menu" -msgstr "" - -#: ../../Zotlabs/Widget/Mailmenu.php:15 -msgid "Combined View" -msgstr "" - -#: ../../Zotlabs/Widget/Mailmenu.php:20 ../../include/nav.php:213 -msgid "Inbox" -msgstr "" - -#: ../../Zotlabs/Widget/Mailmenu.php:25 ../../include/nav.php:214 -msgid "Outbox" -msgstr "" - -#: ../../Zotlabs/Widget/Mailmenu.php:30 ../../include/nav.php:215 -msgid "New Message" -msgstr "" - -#: ../../Zotlabs/Widget/Conversations.php:17 -#: ../../Zotlabs/Widget/Conversations.php:29 -msgid "Conversations" -msgstr "" - -#: ../../Zotlabs/Widget/Conversations.php:21 -msgid "Received Messages" -msgstr "" - -#: ../../Zotlabs/Widget/Conversations.php:25 -msgid "Sent Messages" -msgstr "" - -#: ../../Zotlabs/Widget/Conversations.php:39 -msgid "No messages." -msgstr "" - -#: ../../Zotlabs/Widget/Conversations.php:57 -msgid "Delete conversation" -msgstr "" - -#: ../../Zotlabs/Widget/Eventstools.php:13 -msgid "Events Tools" -msgstr "" - -#: ../../Zotlabs/Widget/Eventstools.php:14 -msgid "Export Calendar" -msgstr "" - -#: ../../Zotlabs/Widget/Eventstools.php:15 -msgid "Import Calendar" +#: ../../Zotlabs/Widget/Suggestedchats.php:32 +msgid "Suggested Chatrooms" msgstr "" -#: ../../Zotlabs/Widget/Chatroom_list.php:16 -#: ../../include/conversation.php:1866 ../../include/conversation.php:1869 -msgid "Chatrooms" +#: ../../Zotlabs/Widget/Suggestions.php:51 +msgid "Suggestions" msgstr "" -#: ../../Zotlabs/Widget/Chatroom_list.php:20 -msgid "Overview" +#: ../../Zotlabs/Widget/Suggestions.php:52 +msgid "See more..." msgstr "" -#: ../../Zotlabs/Widget/Chatroom_members.php:11 -msgid "Chat Members" +#: ../../Zotlabs/Widget/Tasklist.php:23 +msgid "Tasks" msgstr "" #: ../../Zotlabs/Widget/Wiki_list.php:15 @@ -8120,59 +8160,21 @@ msgstr "" msgid "Wiki List" msgstr "" -#: ../../Zotlabs/Widget/Wiki_pages.php:55 +#: ../../Zotlabs/Widget/Wiki_pages.php:54 #: ../../extend/addon/addon/gitwiki/gitwiki.php:76 msgid "Wiki Pages" msgstr "" -#: ../../Zotlabs/Widget/Wiki_pages.php:61 +#: ../../Zotlabs/Widget/Wiki_pages.php:60 #: ../../extend/addon/addon/gitwiki/gitwiki.php:81 msgid "Add new page" msgstr "" -#: ../../Zotlabs/Widget/Wiki_pages.php:62 +#: ../../Zotlabs/Widget/Wiki_pages.php:61 #: ../../extend/addon/addon/gitwiki/gitwiki.php:82 msgid "Page name" msgstr "" -#: ../../Zotlabs/Widget/Activity.php:50 -msgctxt "widget" -msgid "Activity" -msgstr "" - -#: ../../Zotlabs/Widget/Wiki_page_history.php:23 -msgctxt "wiki_history" -msgid "Message" -msgstr "" - -#: ../../Zotlabs/Widget/Tasklist.php:23 -msgid "Tasks" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:23 ../../Zotlabs/Widget/Admin.php:60 -msgid "Member registrations waiting for confirmation" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:29 -msgid "Inspect queue" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:31 -msgid "DB updates" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:55 ../../include/nav.php:233 -msgid "Admin" -msgstr "" - -#: ../../Zotlabs/Widget/Admin.php:56 -msgid "Plugin Features" -msgstr "" - -#: ../../Zotlabs/Widget/Forums.php:85 -msgid "Forums" -msgstr "" - #: ../../extend/addon/addon/adultphotoflag/adultphotoflag.php:24 msgid "Flag Adult Photos" msgstr "" @@ -8560,7 +8562,7 @@ msgid "IRC Chatroom" msgstr "" #: ../../extend/addon/addon/jappixmini/jappixmini.php:305 -#: ../../include/channel.php:1139 ../../include/channel.php:1296 +#: ../../include/channel.php:1137 ../../include/channel.php:1274 msgid "Status:" msgstr "" @@ -9096,7 +9098,7 @@ msgid "Page to load after image selection." msgstr "" #: ../../extend/addon/addon/openclipatar/openclipatar.php:58 -#: ../../include/nav.php:107 ../../include/channel.php:1048 +#: ../../include/channel.php:1046 ../../include/nav.php:107 msgid "Edit Profile" msgstr "" @@ -10374,7 +10376,7 @@ msgstr "" msgid "Error creating new game." msgstr "" -#: ../../extend/addon/addon/chess/chess.php:381 ../../include/channel.php:899 +#: ../../extend/addon/addon/chess/chess.php:381 ../../include/channel.php:897 msgid "Requested channel is not available." msgstr "" @@ -10640,15 +10642,15 @@ msgstr "" msgid "Install Firefox Sharing Tools to this web browser" msgstr "" -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:105 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:107 msgid "Error retrieving wiki" msgstr "" -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:112 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:114 msgid "Error creating zip file export folder" msgstr "" -#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:130 +#: ../../extend/addon/addon/gitwiki/Mod_Gitwiki.php:132 msgid "Error downloading wiki: " msgstr "" @@ -10805,40 +10807,155 @@ msgstr "" msgid "Open the selected location in a different window or browser tab" msgstr "" -#: ../../include/event.php:22 ../../include/event.php:69 -msgid "l F d, Y \\@ g:i A" +#: ../../include/channel.php:33 +msgid "Unable to obtain identity information from database" msgstr "" -#: ../../include/event.php:30 ../../include/event.php:73 -msgid "Starts:" +#: ../../include/channel.php:67 +msgid "Empty name" msgstr "" -#: ../../include/event.php:40 ../../include/event.php:77 -msgid "Finishes:" +#: ../../include/channel.php:70 +msgid "Name too long" msgstr "" -#: ../../include/event.php:1008 -msgid "This event has been added to your calendar." +#: ../../include/channel.php:181 +msgid "No account identifier" msgstr "" -#: ../../include/event.php:1208 -msgid "Not specified" +#: ../../include/channel.php:193 +msgid "Nickname is required." msgstr "" -#: ../../include/event.php:1209 -msgid "Needs Action" +#: ../../include/channel.php:207 +msgid "Reserved nickname. Please choose another." msgstr "" -#: ../../include/event.php:1210 -msgid "Completed" +#: ../../include/channel.php:212 +msgid "" +"Nickname has unsupported characters or is already being used on this site." msgstr "" -#: ../../include/event.php:1211 -msgid "In Process" +#: ../../include/channel.php:270 +msgid "Unable to retrieve created identity" msgstr "" -#: ../../include/event.php:1212 -msgid "Cancelled" +#: ../../include/channel.php:342 +msgid "Default Profile" +msgstr "" + +#: ../../include/channel.php:1043 +msgid "Create New Profile" +msgstr "" + +#: ../../include/channel.php:1063 +msgid "Visible to everybody" +msgstr "" + +#: ../../include/channel.php:1136 ../../include/channel.php:1230 +msgid "Gender:" +msgstr "" + +#: ../../include/channel.php:1138 ../../include/channel.php:1285 +msgid "Homepage:" +msgstr "" + +#: ../../include/channel.php:1139 +msgid "Online Now" +msgstr "" + +#: ../../include/channel.php:1235 +msgid "Like this channel" +msgstr "" + +#: ../../include/channel.php:1259 +msgid "j F, Y" +msgstr "" + +#: ../../include/channel.php:1260 +msgid "j F" +msgstr "" + +#: ../../include/channel.php:1267 +msgid "Birthday:" +msgstr "" + +#: ../../include/channel.php:1280 +#, php-format +msgid "for %1$d %2$s" +msgstr "" + +#: ../../include/channel.php:1283 +msgid "Sexual Preference:" +msgstr "" + +#: ../../include/channel.php:1289 +msgid "Tags:" +msgstr "" + +#: ../../include/channel.php:1291 +msgid "Political Views:" +msgstr "" + +#: ../../include/channel.php:1293 +msgid "Religion:" +msgstr "" + +#: ../../include/channel.php:1297 +msgid "Hobbies/Interests:" +msgstr "" + +#: ../../include/channel.php:1299 +msgid "Likes:" +msgstr "" + +#: ../../include/channel.php:1301 +msgid "Dislikes:" +msgstr "" + +#: ../../include/channel.php:1303 +msgid "Contact information and Social Networks:" +msgstr "" + +#: ../../include/channel.php:1305 +msgid "My other channels:" +msgstr "" + +#: ../../include/channel.php:1307 +msgid "Musical interests:" +msgstr "" + +#: ../../include/channel.php:1309 +msgid "Books, literature:" +msgstr "" + +#: ../../include/channel.php:1311 +msgid "Television:" +msgstr "" + +#: ../../include/channel.php:1313 +msgid "Film/dance/culture/entertainment:" +msgstr "" + +#: ../../include/channel.php:1315 +msgid "Love/Romance:" +msgstr "" + +#: ../../include/channel.php:1317 +msgid "Work/employment:" +msgstr "" + +#: ../../include/channel.php:1319 +msgid "School/education:" +msgstr "" + +#: ../../include/channel.php:1342 +msgid "Like this thing" +msgstr "" + +#: ../../include/channel.php:2115 +#, php-format +msgid "User '%s' deleted" msgstr "" #: ../../include/datetime.php:147 @@ -10853,7 +10970,7 @@ msgstr "" msgid "YYYY-MM-DD or MM-DD" msgstr "" -#: ../../include/datetime.php:286 ../../boot.php:2515 +#: ../../include/datetime.php:286 ../../boot.php:2431 msgid "never" msgstr "" @@ -11179,316 +11296,335 @@ msgstr "" msgid "%1$s's bookmarks" msgstr "" -#: ../../include/help.php:33 -msgid "Help:" +#: ../../include/event.php:22 ../../include/event.php:69 +msgid "l F d, Y \\@ g:i A" msgstr "" -#: ../../include/help.php:65 -msgid "Not Found" +#: ../../include/event.php:30 ../../include/event.php:73 +msgid "Starts:" msgstr "" -#: ../../include/import.php:30 -msgid "" -"Cannot create a duplicate channel identifier on this system. Import failed." +#: ../../include/event.php:40 ../../include/event.php:77 +msgid "Finishes:" msgstr "" -#: ../../include/import.php:51 -msgid "Unable to create a unique channel address. Import failed." +#: ../../include/event.php:1008 +msgid "This event has been added to your calendar." msgstr "" -#: ../../include/import.php:90 -msgid "Channel clone failed. Import failed." +#: ../../include/event.php:1208 +msgid "Not specified" msgstr "" -#: ../../include/import.php:100 -msgid "Cloned channel not found. Import failed." +#: ../../include/event.php:1209 +msgid "Needs Action" +msgstr "" + +#: ../../include/event.php:1210 +msgid "Completed" +msgstr "" + +#: ../../include/event.php:1211 +msgid "In Process" +msgstr "" + +#: ../../include/event.php:1212 +msgid "Cancelled" +msgstr "" + +#: ../../include/help.php:33 +msgid "Help:" +msgstr "" + +#: ../../include/help.php:65 +msgid "Not Found" msgstr "" -#: ../../include/conversation.php:204 +#: ../../include/conversation.php:200 #, php-format msgid "%1$s is now connected with %2$s" msgstr "" -#: ../../include/conversation.php:239 +#: ../../include/conversation.php:235 #, php-format msgid "%1$s poked %2$s" msgstr "" -#: ../../include/conversation.php:243 ../../include/text.php:1097 +#: ../../include/conversation.php:239 ../../include/text.php:1097 #: ../../include/text.php:1102 msgid "poked" msgstr "" -#: ../../include/conversation.php:690 +#: ../../include/conversation.php:687 #, php-format msgid "View %s's profile @ %s" msgstr "" -#: ../../include/conversation.php:710 +#: ../../include/conversation.php:707 msgid "Categories:" msgstr "" -#: ../../include/conversation.php:711 +#: ../../include/conversation.php:708 msgid "Filed under:" msgstr "" -#: ../../include/conversation.php:736 +#: ../../include/conversation.php:733 msgid "View in context" msgstr "" -#: ../../include/conversation.php:832 +#: ../../include/conversation.php:829 msgid "remove" msgstr "" -#: ../../include/conversation.php:836 ../../include/nav.php:292 +#: ../../include/conversation.php:833 ../../include/nav.php:292 msgid "Loading..." msgstr "" -#: ../../include/conversation.php:837 +#: ../../include/conversation.php:834 msgid "Delete Selected Items" msgstr "" -#: ../../include/conversation.php:930 ../../include/conversation.php:972 +#: ../../include/conversation.php:877 msgid "View Source" msgstr "" -#: ../../include/conversation.php:931 ../../include/conversation.php:982 +#: ../../include/conversation.php:887 msgid "Follow Thread" msgstr "" -#: ../../include/conversation.php:932 ../../include/conversation.php:991 +#: ../../include/conversation.php:896 msgid "Unfollow Thread" msgstr "" -#: ../../include/conversation.php:937 ../../include/conversation.php:1059 +#: ../../include/conversation.php:965 msgid "Activity/Posts" msgstr "" -#: ../../include/conversation.php:939 ../../include/conversation.php:1079 +#: ../../include/conversation.php:985 msgid "Edit Connection" msgstr "" -#: ../../include/conversation.php:940 ../../include/conversation.php:1089 +#: ../../include/conversation.php:995 msgid "Message" msgstr "" -#: ../../include/conversation.php:1223 +#: ../../include/conversation.php:1129 #, php-format msgid "%s likes this." msgstr "" -#: ../../include/conversation.php:1223 +#: ../../include/conversation.php:1129 #, php-format msgid "%s doesn't like this." msgstr "" -#: ../../include/conversation.php:1227 +#: ../../include/conversation.php:1133 #, php-format msgid "<span %1$s>%2$d people</span> like this." msgid_plural "<span %1$s>%2$d people</span> like this." msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1229 +#: ../../include/conversation.php:1135 #, php-format msgid "<span %1$s>%2$d people</span> don't like this." msgid_plural "<span %1$s>%2$d people</span> don't like this." msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1235 +#: ../../include/conversation.php:1141 msgid "and" msgstr "" -#: ../../include/conversation.php:1238 +#: ../../include/conversation.php:1144 #, php-format msgid ", and %d other people" msgid_plural ", and %d other people" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1239 +#: ../../include/conversation.php:1145 #, php-format msgid "%s like this." msgstr "" -#: ../../include/conversation.php:1239 +#: ../../include/conversation.php:1145 #, php-format msgid "%s don't like this." msgstr "" -#: ../../include/conversation.php:1282 +#: ../../include/conversation.php:1188 msgid "Set your location" msgstr "" -#: ../../include/conversation.php:1283 +#: ../../include/conversation.php:1189 msgid "Clear browser location" msgstr "" -#: ../../include/conversation.php:1331 +#: ../../include/conversation.php:1237 msgid "Tag term:" msgstr "" -#: ../../include/conversation.php:1332 +#: ../../include/conversation.php:1238 msgid "Where are you right now?" msgstr "" -#: ../../include/conversation.php:1337 +#: ../../include/conversation.php:1243 msgid "Choose a different album..." msgstr "" -#: ../../include/conversation.php:1341 +#: ../../include/conversation.php:1247 msgid "Comments enabled" msgstr "" -#: ../../include/conversation.php:1342 +#: ../../include/conversation.php:1248 msgid "Comments disabled" msgstr "" -#: ../../include/conversation.php:1380 +#: ../../include/conversation.php:1286 msgid "Page link name" msgstr "" -#: ../../include/conversation.php:1383 +#: ../../include/conversation.php:1289 msgid "Post as" msgstr "" -#: ../../include/conversation.php:1397 +#: ../../include/conversation.php:1303 msgid "Toggle voting" msgstr "" -#: ../../include/conversation.php:1400 +#: ../../include/conversation.php:1306 msgid "Disable comments" msgstr "" -#: ../../include/conversation.php:1401 +#: ../../include/conversation.php:1307 msgid "Toggle comments" msgstr "" -#: ../../include/conversation.php:1409 +#: ../../include/conversation.php:1315 msgid "Categories (optional, comma-separated list)" msgstr "" -#: ../../include/conversation.php:1432 +#: ../../include/conversation.php:1338 msgid "Other networks and post services" msgstr "" -#: ../../include/conversation.php:1438 +#: ../../include/conversation.php:1344 msgid "Set publish date" msgstr "" -#: ../../include/conversation.php:1692 +#: ../../include/conversation.php:1598 msgid "Discover" msgstr "" -#: ../../include/conversation.php:1695 +#: ../../include/conversation.php:1601 msgid "Imported public streams" msgstr "" -#: ../../include/conversation.php:1700 +#: ../../include/conversation.php:1606 msgid "Commented Order" msgstr "" -#: ../../include/conversation.php:1703 +#: ../../include/conversation.php:1609 msgid "Sort by Comment Date" msgstr "" -#: ../../include/conversation.php:1707 +#: ../../include/conversation.php:1613 msgid "Posted Order" msgstr "" -#: ../../include/conversation.php:1710 +#: ../../include/conversation.php:1616 msgid "Sort by Post Date" msgstr "" -#: ../../include/conversation.php:1718 +#: ../../include/conversation.php:1624 msgid "Posts that mention or involve you" msgstr "" -#: ../../include/conversation.php:1727 +#: ../../include/conversation.php:1633 msgid "Activity Stream - by date" msgstr "" -#: ../../include/conversation.php:1733 +#: ../../include/conversation.php:1639 msgid "Starred" msgstr "" -#: ../../include/conversation.php:1736 +#: ../../include/conversation.php:1642 msgid "Favourite Posts" msgstr "" -#: ../../include/conversation.php:1743 +#: ../../include/conversation.php:1649 msgid "Spam" msgstr "" -#: ../../include/conversation.php:1746 +#: ../../include/conversation.php:1652 msgid "Posts flagged as SPAM" msgstr "" -#: ../../include/conversation.php:1818 +#: ../../include/conversation.php:1724 msgid "Status Messages and Posts" msgstr "" -#: ../../include/conversation.php:1830 +#: ../../include/conversation.php:1736 msgid "Profile Details" msgstr "" -#: ../../include/conversation.php:1839 ../../include/photos.php:507 +#: ../../include/conversation.php:1745 ../../include/photos.php:524 msgid "Photo Albums" msgstr "" -#: ../../include/conversation.php:1846 +#: ../../include/conversation.php:1752 msgid "Files and Storage" msgstr "" -#: ../../include/conversation.php:1879 +#: ../../include/conversation.php:1785 msgid "Bookmarks" msgstr "" -#: ../../include/conversation.php:1882 +#: ../../include/conversation.php:1788 msgid "Saved Bookmarks" msgstr "" -#: ../../include/conversation.php:1892 +#: ../../include/conversation.php:1798 msgid "View Webpages" msgstr "" -#: ../../include/conversation.php:1958 +#: ../../include/conversation.php:1864 msgctxt "noun" msgid "Attending" msgid_plural "Attending" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1961 +#: ../../include/conversation.php:1867 msgctxt "noun" msgid "Not Attending" msgid_plural "Not Attending" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1964 +#: ../../include/conversation.php:1870 msgctxt "noun" msgid "Undecided" msgid_plural "Undecided" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1967 +#: ../../include/conversation.php:1873 msgctxt "noun" msgid "Agree" msgid_plural "Agrees" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1970 +#: ../../include/conversation.php:1876 msgctxt "noun" msgid "Disagree" msgid_plural "Disagrees" msgstr[0] "" msgstr[1] "" -#: ../../include/conversation.php:1973 +#: ../../include/conversation.php:1879 msgctxt "noun" msgid "Abstain" msgid_plural "Abstains" @@ -11553,7 +11689,7 @@ msgstr "" msgid "Click to authenticate to your home hub" msgstr "" -#: ../../include/nav.php:99 ../../include/nav.php:140 ../../boot.php:1689 +#: ../../include/nav.php:99 ../../include/nav.php:140 ../../boot.php:1605 msgid "Logout" msgstr "" @@ -12024,54 +12160,6 @@ msgstr "" msgid "This Website Only" msgstr "" -#: ../../include/network.php:756 -msgid "view full size" -msgstr "" - -#: ../../include/network.php:1490 -msgid "No Subject" -msgstr "" - -#: ../../include/network.php:1744 ../../include/network.php:1745 -msgid "Friendica" -msgstr "" - -#: ../../include/network.php:1746 -msgid "OStatus" -msgstr "" - -#: ../../include/network.php:1747 -msgid "GNU-Social" -msgstr "" - -#: ../../include/network.php:1748 -msgid "RSS/Atom" -msgstr "" - -#: ../../include/network.php:1750 -msgid "Diaspora" -msgstr "" - -#: ../../include/network.php:1751 -msgid "Facebook" -msgstr "" - -#: ../../include/network.php:1752 -msgid "Zot" -msgstr "" - -#: ../../include/network.php:1753 -msgid "LinkedIn" -msgstr "" - -#: ../../include/network.php:1754 -msgid "XMPP/IM" -msgstr "" - -#: ../../include/network.php:1755 -msgid "MySpace" -msgstr "" - #: ../../include/group.php:26 msgid "" "A deleted group with this name was revived. Existing item permissions " @@ -12368,31 +12456,52 @@ msgstr "" msgid "Specify folder" msgstr "" -#: ../../include/photos.php:111 -#, php-format -msgid "Image exceeds website size limit of %lu bytes" +#: ../../include/network.php:756 +msgid "view full size" msgstr "" -#: ../../include/photos.php:118 -msgid "Image file is empty." +#: ../../include/network.php:1490 +msgid "No Subject" msgstr "" -#: ../../include/photos.php:257 -msgid "Photo storage failed." +#: ../../include/network.php:1744 ../../include/network.php:1745 +msgid "Friendica" msgstr "" -#: ../../include/photos.php:297 -msgid "a new photo" +#: ../../include/network.php:1746 +msgid "OStatus" msgstr "" -#: ../../include/photos.php:301 -#, php-format -msgctxt "photo_upload" -msgid "%1$s posted %2$s to %3$s" +#: ../../include/network.php:1747 +msgid "GNU-Social" msgstr "" -#: ../../include/photos.php:511 -msgid "Upload New Photos" +#: ../../include/network.php:1748 +msgid "RSS/Atom" +msgstr "" + +#: ../../include/network.php:1750 +msgid "Diaspora" +msgstr "" + +#: ../../include/network.php:1751 +msgid "Facebook" +msgstr "" + +#: ../../include/network.php:1752 +msgid "Zot" +msgstr "" + +#: ../../include/network.php:1753 +msgid "LinkedIn" +msgstr "" + +#: ../../include/network.php:1754 +msgid "XMPP/IM" +msgstr "" + +#: ../../include/network.php:1755 +msgid "MySpace" msgstr "" #: ../../include/bbcode.php:134 ../../include/bbcode.php:1040 @@ -12438,155 +12547,31 @@ msgstr "" msgid "$1 wrote:" msgstr "" -#: ../../include/channel.php:33 -msgid "Unable to obtain identity information from database" -msgstr "" - -#: ../../include/channel.php:67 -msgid "Empty name" -msgstr "" - -#: ../../include/channel.php:70 -msgid "Name too long" -msgstr "" - -#: ../../include/channel.php:181 -msgid "No account identifier" -msgstr "" - -#: ../../include/channel.php:193 -msgid "Nickname is required." -msgstr "" - -#: ../../include/channel.php:207 -msgid "Reserved nickname. Please choose another." -msgstr "" - -#: ../../include/channel.php:212 -msgid "" -"Nickname has unsupported characters or is already being used on this site." -msgstr "" - -#: ../../include/channel.php:272 -msgid "Unable to retrieve created identity" -msgstr "" - -#: ../../include/channel.php:344 -msgid "Default Profile" -msgstr "" - -#: ../../include/channel.php:1045 -msgid "Create New Profile" -msgstr "" - -#: ../../include/channel.php:1065 -msgid "Visible to everybody" -msgstr "" - -#: ../../include/channel.php:1138 ../../include/channel.php:1252 -msgid "Gender:" -msgstr "" - -#: ../../include/channel.php:1140 ../../include/channel.php:1307 -msgid "Homepage:" -msgstr "" - -#: ../../include/channel.php:1141 -msgid "Online Now" -msgstr "" - -#: ../../include/channel.php:1257 -msgid "Like this channel" -msgstr "" - -#: ../../include/channel.php:1281 -msgid "j F, Y" -msgstr "" - -#: ../../include/channel.php:1282 -msgid "j F" -msgstr "" - -#: ../../include/channel.php:1289 -msgid "Birthday:" -msgstr "" - -#: ../../include/channel.php:1302 +#: ../../include/photos.php:111 #, php-format -msgid "for %1$d %2$s" -msgstr "" - -#: ../../include/channel.php:1305 -msgid "Sexual Preference:" -msgstr "" - -#: ../../include/channel.php:1311 -msgid "Tags:" -msgstr "" - -#: ../../include/channel.php:1313 -msgid "Political Views:" -msgstr "" - -#: ../../include/channel.php:1315 -msgid "Religion:" -msgstr "" - -#: ../../include/channel.php:1319 -msgid "Hobbies/Interests:" -msgstr "" - -#: ../../include/channel.php:1321 -msgid "Likes:" -msgstr "" - -#: ../../include/channel.php:1323 -msgid "Dislikes:" -msgstr "" - -#: ../../include/channel.php:1325 -msgid "Contact information and Social Networks:" -msgstr "" - -#: ../../include/channel.php:1327 -msgid "My other channels:" -msgstr "" - -#: ../../include/channel.php:1329 -msgid "Musical interests:" -msgstr "" - -#: ../../include/channel.php:1331 -msgid "Books, literature:" -msgstr "" - -#: ../../include/channel.php:1333 -msgid "Television:" -msgstr "" - -#: ../../include/channel.php:1335 -msgid "Film/dance/culture/entertainment:" +msgid "Image exceeds website size limit of %lu bytes" msgstr "" -#: ../../include/channel.php:1337 -msgid "Love/Romance:" +#: ../../include/photos.php:118 +msgid "Image file is empty." msgstr "" -#: ../../include/channel.php:1339 -msgid "Work/employment:" +#: ../../include/photos.php:257 +msgid "Photo storage failed." msgstr "" -#: ../../include/channel.php:1341 -msgid "School/education:" +#: ../../include/photos.php:297 +msgid "a new photo" msgstr "" -#: ../../include/channel.php:1364 -msgid "Like this thing" +#: ../../include/photos.php:301 +#, php-format +msgctxt "photo_upload" +msgid "%1$s posted %2$s to %3$s" msgstr "" -#: ../../include/channel.php:2098 -#, php-format -msgid "User '%s' deleted" +#: ../../include/photos.php:529 +msgid "Upload New Photos" msgstr "" #: ../../include/message.php:32 @@ -12615,6 +12600,19 @@ msgid "" "form has been opened for too long (>3 hours) before submitting it." msgstr "" +#: ../../include/import.php:30 +msgid "" +"Cannot create a duplicate channel identifier on this system. Import failed." +msgstr "" + +#: ../../include/import.php:51 +msgid "Unable to create a unique channel address. Import failed." +msgstr "" + +#: ../../include/import.php:94 +msgid "Cloned channel not found. Import failed." +msgstr "" + #: ../../include/items.php:808 ../../include/items.php:855 msgid "(Unknown)" msgstr "" @@ -12652,34 +12650,34 @@ msgstr "" msgid "Visible to specific connections." msgstr "" -#: ../../include/items.php:3828 +#: ../../include/items.php:3826 msgid "Privacy group is empty." msgstr "" -#: ../../include/items.php:3835 +#: ../../include/items.php:3833 #, php-format msgid "Privacy group: %s" msgstr "" -#: ../../include/items.php:3847 +#: ../../include/items.php:3845 msgid "Connection not found." msgstr "" -#: ../../include/items.php:4196 +#: ../../include/items.php:4194 msgid "profile photo" msgstr "" -#: ../../include/items.php:4392 +#: ../../include/items.php:4390 #, php-format msgid "[Edited %s]" msgstr "" -#: ../../include/items.php:4392 +#: ../../include/items.php:4390 msgctxt "edit_activity" msgid "Post" msgstr "" -#: ../../include/items.php:4392 +#: ../../include/items.php:4390 msgctxt "edit_activity" msgid "Comment" msgstr "" @@ -12736,65 +12734,65 @@ msgstr "" msgid "%1$s has an updated %2$s, changing %3$s." msgstr "" -#: ../../include/attach.php:250 ../../include/attach.php:338 +#: ../../include/attach.php:250 ../../include/attach.php:339 msgid "Item was not found." msgstr "" -#: ../../include/attach.php:499 +#: ../../include/attach.php:500 msgid "No source file." msgstr "" -#: ../../include/attach.php:521 +#: ../../include/attach.php:522 msgid "Cannot locate file to replace" msgstr "" -#: ../../include/attach.php:539 +#: ../../include/attach.php:540 msgid "Cannot locate file to revise/update" msgstr "" -#: ../../include/attach.php:670 +#: ../../include/attach.php:671 #, php-format msgid "File exceeds size limit of %d" msgstr "" -#: ../../include/attach.php:684 +#: ../../include/attach.php:685 #, php-format msgid "You have reached your limit of %1$.0f Mbytes attachment storage." msgstr "" -#: ../../include/attach.php:854 +#: ../../include/attach.php:855 msgid "File upload failed. Possible system limit or action terminated." msgstr "" -#: ../../include/attach.php:867 +#: ../../include/attach.php:868 msgid "Stored file could not be verified. Upload failed." msgstr "" -#: ../../include/attach.php:922 ../../include/attach.php:938 +#: ../../include/attach.php:923 ../../include/attach.php:939 msgid "Path not available." msgstr "" -#: ../../include/attach.php:984 ../../include/attach.php:1142 +#: ../../include/attach.php:988 ../../include/attach.php:1153 msgid "Empty pathname" msgstr "" -#: ../../include/attach.php:1010 +#: ../../include/attach.php:1014 msgid "duplicate filename or path" msgstr "" -#: ../../include/attach.php:1032 +#: ../../include/attach.php:1039 msgid "Path not found." msgstr "" -#: ../../include/attach.php:1096 +#: ../../include/attach.php:1107 msgid "mkdir failed." msgstr "" -#: ../../include/attach.php:1100 +#: ../../include/attach.php:1111 msgid "database storage failed." msgstr "" -#: ../../include/attach.php:1148 +#: ../../include/attach.php:1159 msgid "Empty path" msgstr "" @@ -13331,54 +13329,44 @@ msgstr "" msgid "Set size of followup author photos" msgstr "" -#: ../../boot.php:1463 -#, php-format -msgid "Update %s failed. See error logs." -msgstr "" - -#: ../../boot.php:1466 -#, php-format -msgid "Update Error at %s" -msgstr "" - -#: ../../boot.php:1670 +#: ../../boot.php:1586 msgid "Create an account to access services and applications" msgstr "" -#: ../../boot.php:1692 +#: ../../boot.php:1608 msgid "Login/Email" msgstr "" -#: ../../boot.php:1693 +#: ../../boot.php:1609 msgid "Password" msgstr "" -#: ../../boot.php:1694 +#: ../../boot.php:1610 msgid "Remember me" msgstr "" -#: ../../boot.php:1697 +#: ../../boot.php:1613 msgid "Forgot your password?" msgstr "" -#: ../../boot.php:2237 +#: ../../boot.php:2153 msgid "toggle mobile" msgstr "" -#: ../../boot.php:2392 +#: ../../boot.php:2308 msgid "Website SSL certificate is not valid. Please correct." msgstr "" -#: ../../boot.php:2395 +#: ../../boot.php:2311 #, php-format msgid "[$Projectname] Website SSL error for %s" msgstr "" -#: ../../boot.php:2514 +#: ../../boot.php:2430 msgid "Cron/Scheduled tasks not running." msgstr "" -#: ../../boot.php:2518 +#: ../../boot.php:2434 #, php-format msgid "[$Projectname] Cron tasks not running on %s" msgstr "" |