This commit is contained in:
redmatrix 2015-05-06 18:39:12 -07:00
commit 75b8bfc07a
10 changed files with 274 additions and 206 deletions

View File

@ -83,11 +83,14 @@ This places the menu called "mymenu" at this location on the page, which must be
This places the menu called "mymenu" at this location on the page, which must be inside a region. Additionally it adds the CSS class "horizontal-menu" to this menu. This *may* result in a menu that looks different than the default menu style, *if* the css for the current theme defines a "horizontal-menu" class. This places the menu called "mymenu" at this location on the page, which must be inside a region. Additionally it adds the CSS class "horizontal-menu" to this menu. This *may* result in a menu that looks different than the default menu style, *if* the css for the current theme defines a "horizontal-menu" class.
[block]contributors[/block] [block]contributors[/block]
This places a block named "contributors" in this region. This places a block named "contributors" in this region.
[block=someclass]contributors[/block]
This places a block named "contributors" in this region. Additionally it applies the "someclass" class to the block. This replaces the default block classes "bblock widget".
[block][var=wrap]none[/var]contributors[/block] [block][var=wrap]none[/var]contributors[/block]
The variable [var=wrap]none[/var] in a block removes the wrapping div element from the block. The variable [var=wrap]none[/var] in a block removes the wrapping div element from the block.

View File

@ -100,7 +100,7 @@ This places the menu called "mymenu" at this location on the page, whi
[code] [code]
[menu=horizontal]mymenu[/menu] [menu=horizontal]mymenu[/menu]
[/code] [/code]
This places the menu called "mymenu" at this location on the page, which must be inside a region. Additionally it applies the "horizontal" style to the menu. "horizontal" is defined in the redbasic theme. It may or may not be available in other themes. This places the menu called "mymenu" at this location on the page, which must be inside a region. Additionally it applies the "horizontal" class to the menu. "horizontal" is defined in the redbasic theme. It may or may not be available in other themes.
[code] [code]
@ -108,6 +108,11 @@ This places the menu called "mymenu" at this location on the page, whi
[/code] [/code]
This places a block named "contributors" in this region. This places a block named "contributors" in this region.
[code]
[block=someclass]contributors[/block]
[/code]
This places a block named "contributors" in this region. Additionally it applies the "someclass" class to the block. This replaces the default block classes "bblock widget".
[code] [code]
[block][var=wrap]none[/var]contributors[/block] [block][var=wrap]none[/var]contributors[/block]
[/code] [/code]

View File

@ -133,10 +133,11 @@ function comanche_get_channel_id() {
return $channel_id; return $channel_id;
} }
function comanche_block($s) { function comanche_block($s, $class = '') {
$var = array(); $var = array();
$matches = array(); $matches = array();
$name = $s; $name = $s;
$class = (($class) ? $class : 'bblock widget');
$cnt = preg_match_all("/\[var=(.*?)\](.*?)\[\/var\]/ism", $s, $matches, PREG_SET_ORDER); $cnt = preg_match_all("/\[var=(.*?)\](.*?)\[\/var\]/ism", $s, $matches, PREG_SET_ORDER);
if($cnt) { if($cnt) {
@ -155,7 +156,7 @@ function comanche_block($s) {
dbesc($name) dbesc($name)
); );
if($r) { if($r) {
$o .= (($var['wrap'] == 'none') ? '' : '<div class="bblock widget">'); $o .= (($var['wrap'] == 'none') ? '' : '<div class="' . $class . '">');
if($r[0]['title']) if($r[0]['title'])
$o .= '<h3>' . $r[0]['title'] . '</h3>'; $o .= '<h3>' . $r[0]['title'] . '</h3>';
@ -238,6 +239,13 @@ function comanche_region(&$a, $s) {
} }
} }
$cnt = preg_match_all("/\[block=(.*?)\](.*?)\[\/block\]/ism", $s, $matches, PREG_SET_ORDER);
if($cnt) {
foreach($matches as $mtch) {
$s = str_replace($mtch[0],comanche_block(trim($mtch[2]),trim($mtch[1])),$s);
}
}
// need to modify this to accept parameters // need to modify this to accept parameters
$cnt = preg_match_all("/\[widget=(.*?)\](.*?)\[\/widget\]/ism", $s, $matches, PREG_SET_ORDER); $cnt = preg_match_all("/\[widget=(.*?)\](.*?)\[\/widget\]/ism", $s, $matches, PREG_SET_ORDER);

View File

@ -2427,6 +2427,20 @@ function diaspora_send_status($item,$owner,$contact,$public_batch = false) {
} }
*/ */
if($item['item_flags'] & ITEM_CONSENSUS) {
$poll = replace_macros(get_markup_template('diaspora_consensus.tpl'), array(
'$guid_q' => random_string(),
'$question' => '',
'$guid_y' => random_string(),
'$agree' => t('Agree'),
'$guid_n' => random_string(),
'$disagree' => t('Disagree'),
'$guid_a' => random_string(),
'$abstain' => t('Abstain')
));
}
else
$poll = '';
$public = (($item['item_private']) ? 'false' : 'true'); $public = (($item['item_private']) ? 'false' : 'true');
@ -2451,6 +2465,7 @@ function diaspora_send_status($item,$owner,$contact,$public_batch = false) {
$msg = replace_macros($tpl, array( $msg = replace_macros($tpl, array(
'$body' => xmlify($body), '$body' => xmlify($body),
'$guid' => $item['mid'], '$guid' => $item['mid'],
'$poll' => $poll,
'$handle' => xmlify($myaddr), '$handle' => xmlify($myaddr),
'$public' => $public, '$public' => $public,
'$created' => $created, '$created' => $created,

View File

@ -130,7 +130,7 @@ function editlayout_content(&$a) {
// FIXME A return path with $_SESSION doesn't always work for observer - it may WSoD // FIXME A return path with $_SESSION doesn't always work for observer - it may WSoD
// instead of loading a sensible page. So, send folk to the webpage list. // instead of loading a sensible page. So, send folk to the webpage list.
$rp = '/layouts/' . $which; $rp = 'layouts/' . $which;
$o .= replace_macros($tpl,array( $o .= replace_macros($tpl,array(
'$return_path' => $rp, '$return_path' => $rp,

View File

@ -6,9 +6,9 @@
#, fuzzy #, fuzzy
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: 2015-04-24.1012\n" "Project-Id-Version: 2015-05-01.1019\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2015-04-24 00:03-0700\n" "POT-Creation-Date: 2015-05-01 00:03-0700\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"
@ -259,25 +259,25 @@ msgstr ""
#: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36 #: ../../include/page_widgets.php:8 ../../include/page_widgets.php:36
#: ../../include/RedDAV/RedBrowser.php:269 ../../include/ItemObject.php:100 #: ../../include/RedDAV/RedBrowser.php:269 ../../include/ItemObject.php:100
#: ../../include/apps.php:254 ../../include/menu.php:43 #: ../../include/apps.php:254 ../../include/menu.php:43
#: ../../mod/settings.php:644 ../../mod/thing.php:227 #: ../../mod/settings.php:644 ../../mod/webpages.php:179
#: ../../mod/connections.php:382 ../../mod/connections.php:395 #: ../../mod/thing.php:227 ../../mod/connections.php:382
#: ../../mod/connections.php:414 ../../mod/editlayout.php:139 #: ../../mod/connections.php:395 ../../mod/connections.php:414
#: ../../mod/blocks.php:152 ../../mod/editlayout.php:139
#: ../../mod/editwebpage.php:178 ../../mod/editpost.php:113 #: ../../mod/editwebpage.php:178 ../../mod/editpost.php:113
#: ../../mod/menu.php:100 ../../mod/webpages.php:179 #: ../../mod/menu.php:100 ../../mod/editblock.php:140
#: ../../mod/editblock.php:140 ../../mod/blocks.php:148 #: ../../mod/layouts.php:182
#: ../../mod/layouts.php:174
msgid "Edit" msgid "Edit"
msgstr "" msgstr ""
#: ../../include/page_widgets.php:39 ../../mod/webpages.php:185 #: ../../include/page_widgets.php:39 ../../mod/webpages.php:185
#: ../../mod/blocks.php:154 ../../mod/layouts.php:178 #: ../../mod/blocks.php:158 ../../mod/layouts.php:187
msgid "View" msgid "View"
msgstr "" msgstr ""
#: ../../include/page_widgets.php:40 ../../include/ItemObject.php:677 #: ../../include/page_widgets.php:40 ../../include/ItemObject.php:677
#: ../../include/conversation.php:1153 ../../mod/events.php:653 #: ../../include/conversation.php:1155 ../../mod/webpages.php:186
#: ../../mod/photos.php:970 ../../mod/editwebpage.php:214 #: ../../mod/events.php:653 ../../mod/photos.php:970
#: ../../mod/editpost.php:149 ../../mod/webpages.php:186 #: ../../mod/editwebpage.php:214 ../../mod/editpost.php:149
#: ../../mod/editblock.php:176 #: ../../mod/editblock.php:176
msgid "Preview" msgid "Preview"
msgstr "" msgstr ""
@ -295,12 +295,12 @@ msgid "Title"
msgstr "" msgstr ""
#: ../../include/page_widgets.php:44 ../../mod/webpages.php:190 #: ../../include/page_widgets.php:44 ../../mod/webpages.php:190
#: ../../mod/blocks.php:145 #: ../../mod/blocks.php:149 ../../mod/layouts.php:180
msgid "Created" msgid "Created"
msgstr "" msgstr ""
#: ../../include/page_widgets.php:45 ../../mod/webpages.php:191 #: ../../include/page_widgets.php:45 ../../mod/webpages.php:191
#: ../../mod/blocks.php:146 #: ../../mod/blocks.php:150 ../../mod/layouts.php:181
msgid "Edited" msgid "Edited"
msgstr "" msgstr ""
@ -549,7 +549,7 @@ msgstr ""
msgid "parent" msgid "parent"
msgstr "" msgstr ""
#: ../../include/RedDAV/RedBrowser.php:131 ../../include/text.php:2479 #: ../../include/RedDAV/RedBrowser.php:131 ../../include/text.php:2497
msgid "Collection" msgid "Collection"
msgstr "" msgstr ""
@ -590,7 +590,7 @@ msgid "%1$s used of %2$s (%3$s&#37;)"
msgstr "" msgstr ""
#: ../../include/RedDAV/RedBrowser.php:251 ../../include/nav.php:98 #: ../../include/RedDAV/RedBrowser.php:251 ../../include/nav.php:98
#: ../../include/conversation.php:1606 ../../include/apps.php:135 #: ../../include/conversation.php:1609 ../../include/apps.php:135
#: ../../mod/fbrowser.php:114 #: ../../mod/fbrowser.php:114
msgid "Files" msgid "Files"
msgstr "" msgstr ""
@ -604,9 +604,9 @@ msgid "Shared"
msgstr "" msgstr ""
#: ../../include/RedDAV/RedBrowser.php:256 #: ../../include/RedDAV/RedBrowser.php:256
#: ../../include/RedDAV/RedBrowser.php:306 ../../mod/menu.php:104 #: ../../include/RedDAV/RedBrowser.php:306 ../../mod/webpages.php:178
#: ../../mod/webpages.php:178 ../../mod/blocks.php:147 #: ../../mod/blocks.php:151 ../../mod/menu.php:104 ../../mod/layouts.php:174
#: ../../mod/layouts.php:170 ../../mod/new_channel.php:121 #: ../../mod/new_channel.php:121
msgid "Create" msgid "Create"
msgstr "" msgstr ""
@ -636,10 +636,11 @@ msgstr ""
#: ../../include/RedDAV/RedBrowser.php:270 ../../include/ItemObject.php:120 #: ../../include/RedDAV/RedBrowser.php:270 ../../include/ItemObject.php:120
#: ../../include/conversation.php:660 ../../include/apps.php:255 #: ../../include/conversation.php:660 ../../include/apps.php:255
#: ../../mod/settings.php:645 ../../mod/thing.php:228 ../../mod/group.php:176 #: ../../mod/settings.php:645 ../../mod/webpages.php:181
#: ../../mod/photos.php:1050 ../../mod/editwebpage.php:225 #: ../../mod/thing.php:228 ../../mod/group.php:176 ../../mod/blocks.php:154
#: ../../mod/webpages.php:181 ../../mod/admin.php:817 ../../mod/admin.php:948 #: ../../mod/photos.php:1050 ../../mod/editlayout.php:107
#: ../../mod/editblock.php:113 ../../mod/blocks.php:150 #: ../../mod/editwebpage.php:225 ../../mod/admin.php:817
#: ../../mod/admin.php:948 ../../mod/editblock.php:113
#: ../../mod/connedit.php:543 #: ../../mod/connedit.php:543
msgid "Delete" msgid "Delete"
msgstr "" msgstr ""
@ -922,7 +923,7 @@ msgstr ""
msgid "System" msgid "System"
msgstr "" msgstr ""
#: ../../include/widgets.php:94 ../../include/conversation.php:1501 #: ../../include/widgets.php:94 ../../include/conversation.php:1504
msgid "Personal" msgid "Personal"
msgstr "" msgstr ""
@ -1452,13 +1453,13 @@ msgid "I abstain"
msgstr "" msgstr ""
#: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187 #: ../../include/ItemObject.php:175 ../../include/ItemObject.php:187
#: ../../include/conversation.php:1674 ../../mod/photos.php:1003 #: ../../include/conversation.php:1677 ../../mod/photos.php:1003
#: ../../mod/photos.php:1015 #: ../../mod/photos.php:1015
msgid "View all" msgid "View all"
msgstr "" msgstr ""
#: ../../include/ItemObject.php:179 ../../include/taxonomy.php:396 #: ../../include/ItemObject.php:179 ../../include/taxonomy.php:396
#: ../../include/conversation.php:1698 ../../include/identity.php:1133 #: ../../include/conversation.php:1701 ../../include/identity.php:1133
#: ../../mod/photos.php:1007 #: ../../mod/photos.php:1007
msgctxt "noun" msgctxt "noun"
msgid "Like" msgid "Like"
@ -1466,7 +1467,7 @@ msgid_plural "Likes"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../include/ItemObject.php:184 ../../include/conversation.php:1701 #: ../../include/ItemObject.php:184 ../../include/conversation.php:1704
#: ../../mod/photos.php:1012 #: ../../mod/photos.php:1012
msgctxt "noun" msgctxt "noun"
msgid "Dislike" msgid "Dislike"
@ -1597,7 +1598,7 @@ msgid "Close"
msgstr "" msgstr ""
#: ../../include/ItemObject.php:364 ../../include/conversation.php:737 #: ../../include/ItemObject.php:364 ../../include/conversation.php:737
#: ../../include/conversation.php:1206 ../../mod/photos.php:950 #: ../../include/conversation.php:1209 ../../mod/photos.php:950
#: ../../mod/editlayout.php:153 ../../mod/editwebpage.php:192 #: ../../mod/editlayout.php:153 ../../mod/editwebpage.php:192
#: ../../mod/editpost.php:130 ../../mod/editblock.php:155 #: ../../mod/editpost.php:130 ../../mod/editblock.php:155
#: ../../mod/mail.php:241 ../../mod/mail.php:356 #: ../../mod/mail.php:241 ../../mod/mail.php:356
@ -1609,31 +1610,31 @@ msgstr ""
msgid "This is you" msgid "This is you"
msgstr "" msgstr ""
#: ../../include/ItemObject.php:669 ../../include/conversation.php:1179 #: ../../include/ItemObject.php:669 ../../include/conversation.php:1181
#: ../../mod/editlayout.php:140 ../../mod/editwebpage.php:179 #: ../../mod/editlayout.php:140 ../../mod/editwebpage.php:179
#: ../../mod/editpost.php:114 ../../mod/editblock.php:141 #: ../../mod/editpost.php:114 ../../mod/editblock.php:141
msgid "Bold" msgid "Bold"
msgstr "" msgstr ""
#: ../../include/ItemObject.php:670 ../../include/conversation.php:1180 #: ../../include/ItemObject.php:670 ../../include/conversation.php:1182
#: ../../mod/editlayout.php:141 ../../mod/editwebpage.php:180 #: ../../mod/editlayout.php:141 ../../mod/editwebpage.php:180
#: ../../mod/editpost.php:115 ../../mod/editblock.php:142 #: ../../mod/editpost.php:115 ../../mod/editblock.php:142
msgid "Italic" msgid "Italic"
msgstr "" msgstr ""
#: ../../include/ItemObject.php:671 ../../include/conversation.php:1181 #: ../../include/ItemObject.php:671 ../../include/conversation.php:1183
#: ../../mod/editlayout.php:142 ../../mod/editwebpage.php:181 #: ../../mod/editlayout.php:142 ../../mod/editwebpage.php:181
#: ../../mod/editpost.php:116 ../../mod/editblock.php:143 #: ../../mod/editpost.php:116 ../../mod/editblock.php:143
msgid "Underline" msgid "Underline"
msgstr "" msgstr ""
#: ../../include/ItemObject.php:672 ../../include/conversation.php:1182 #: ../../include/ItemObject.php:672 ../../include/conversation.php:1184
#: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:182 #: ../../mod/editlayout.php:143 ../../mod/editwebpage.php:182
#: ../../mod/editpost.php:117 ../../mod/editblock.php:144 #: ../../mod/editpost.php:117 ../../mod/editblock.php:144
msgid "Quote" msgid "Quote"
msgstr "" msgstr ""
#: ../../include/ItemObject.php:673 ../../include/conversation.php:1183 #: ../../include/ItemObject.php:673 ../../include/conversation.php:1185
#: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:183 #: ../../mod/editlayout.php:144 ../../mod/editwebpage.php:183
#: ../../mod/editpost.php:118 ../../mod/editblock.php:145 #: ../../mod/editpost.php:118 ../../mod/editblock.php:145
msgid "Code" msgid "Code"
@ -1651,7 +1652,7 @@ msgstr ""
msgid "Video" msgid "Video"
msgstr "" msgstr ""
#: ../../include/ItemObject.php:680 ../../include/conversation.php:1233 #: ../../include/ItemObject.php:680 ../../include/conversation.php:1236
#: ../../mod/editpost.php:157 ../../mod/mail.php:247 ../../mod/mail.php:361 #: ../../mod/editpost.php:157 ../../mod/mail.php:247 ../../mod/mail.php:361
msgid "Encrypt text" msgid "Encrypt text"
msgstr "" msgstr ""
@ -1930,96 +1931,96 @@ msgstr ""
msgid "December" msgid "December"
msgstr "" msgstr ""
#: ../../include/text.php:1236 #: ../../include/text.php:1244
msgid "unknown.???" msgid "unknown.???"
msgstr "" msgstr ""
#: ../../include/text.php:1237 #: ../../include/text.php:1245
msgid "bytes" msgid "bytes"
msgstr "" msgstr ""
#: ../../include/text.php:1273 #: ../../include/text.php:1281
msgid "remove category" msgid "remove category"
msgstr "" msgstr ""
#: ../../include/text.php:1348 #: ../../include/text.php:1356
msgid "remove from file" msgid "remove from file"
msgstr "" msgstr ""
#: ../../include/text.php:1424 ../../include/text.php:1435 #: ../../include/text.php:1436 ../../include/text.php:1447
#: ../../mod/connedit.php:661 #: ../../mod/connedit.php:661
msgid "Click to open/close" msgid "Click to open/close"
msgstr "" msgstr ""
#: ../../include/text.php:1591 ../../mod/events.php:444 #: ../../include/text.php:1609 ../../mod/events.php:444
msgid "Link to Source" msgid "Link to Source"
msgstr "" msgstr ""
#: ../../include/text.php:1612 ../../include/text.php:1683 #: ../../include/text.php:1630 ../../include/text.php:1701
msgid "default" msgid "default"
msgstr "" msgstr ""
#: ../../include/text.php:1620 #: ../../include/text.php:1638
msgid "Page layout" msgid "Page layout"
msgstr "" msgstr ""
#: ../../include/text.php:1620 #: ../../include/text.php:1638
msgid "You can create your own with the layouts tool" msgid "You can create your own with the layouts tool"
msgstr "" msgstr ""
#: ../../include/text.php:1661 #: ../../include/text.php:1679
msgid "Page content type" msgid "Page content type"
msgstr "" msgstr ""
#: ../../include/text.php:1695 #: ../../include/text.php:1713
msgid "Select an alternate language" msgid "Select an alternate language"
msgstr "" msgstr ""
#: ../../include/text.php:1814 ../../include/conversation.php:120 #: ../../include/text.php:1832 ../../include/conversation.php:120
#: ../../include/diaspora.php:2081 ../../mod/like.php:346 #: ../../include/diaspora.php:2081 ../../mod/like.php:346
#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 #: ../../mod/subthread.php:72 ../../mod/subthread.php:174
#: ../../mod/tagger.php:43 #: ../../mod/tagger.php:43
msgid "photo" msgid "photo"
msgstr "" msgstr ""
#: ../../include/text.php:1817 ../../include/conversation.php:123 #: ../../include/text.php:1835 ../../include/conversation.php:123
#: ../../mod/like.php:348 ../../mod/tagger.php:47 #: ../../mod/like.php:348 ../../mod/tagger.php:47
msgid "event" msgid "event"
msgstr "" msgstr ""
#: ../../include/text.php:1820 ../../include/conversation.php:148 #: ../../include/text.php:1838 ../../include/conversation.php:148
#: ../../include/diaspora.php:2081 ../../mod/like.php:346 #: ../../include/diaspora.php:2081 ../../mod/like.php:346
#: ../../mod/subthread.php:72 ../../mod/subthread.php:174 #: ../../mod/subthread.php:72 ../../mod/subthread.php:174
#: ../../mod/tagger.php:51 #: ../../mod/tagger.php:51
msgid "status" msgid "status"
msgstr "" msgstr ""
#: ../../include/text.php:1822 ../../include/conversation.php:150 #: ../../include/text.php:1840 ../../include/conversation.php:150
#: ../../mod/tagger.php:53 #: ../../mod/tagger.php:53
msgid "comment" msgid "comment"
msgstr "" msgstr ""
#: ../../include/text.php:1827 #: ../../include/text.php:1845
msgid "activity" msgid "activity"
msgstr "" msgstr ""
#: ../../include/text.php:2122 #: ../../include/text.php:2140
msgid "Design Tools" msgid "Design Tools"
msgstr "" msgstr ""
#: ../../include/text.php:2125 ../../mod/blocks.php:143 #: ../../include/text.php:2143 ../../mod/blocks.php:146
msgid "Blocks" msgid "Blocks"
msgstr "" msgstr ""
#: ../../include/text.php:2126 ../../mod/menu.php:95 #: ../../include/text.php:2144 ../../mod/menu.php:95
msgid "Menus" msgid "Menus"
msgstr "" msgstr ""
#: ../../include/text.php:2127 ../../mod/layouts.php:169 #: ../../include/text.php:2145 ../../mod/layouts.php:173
msgid "Layouts" msgid "Layouts"
msgstr "" msgstr ""
#: ../../include/text.php:2128 #: ../../include/text.php:2146
msgid "Pages" msgid "Pages"
msgstr "" msgstr ""
@ -2064,7 +2065,7 @@ msgstr ""
msgid "Edit your profile" msgid "Edit your profile"
msgstr "" msgstr ""
#: ../../include/nav.php:97 ../../include/conversation.php:1597 #: ../../include/nav.php:97 ../../include/conversation.php:1600
#: ../../include/apps.php:139 ../../mod/fbrowser.php:25 #: ../../include/apps.php:139 ../../mod/fbrowser.php:25
msgid "Photos" msgid "Photos"
msgstr "" msgstr ""
@ -2085,7 +2086,7 @@ msgstr ""
msgid "Your chatrooms" msgid "Your chatrooms"
msgstr "" msgstr ""
#: ../../include/nav.php:109 ../../include/conversation.php:1632 #: ../../include/nav.php:109 ../../include/conversation.php:1635
#: ../../include/apps.php:129 #: ../../include/apps.php:129
msgid "Bookmarks" msgid "Bookmarks"
msgstr "" msgstr ""
@ -2094,7 +2095,7 @@ msgstr ""
msgid "Your bookmarks" msgid "Your bookmarks"
msgstr "" msgstr ""
#: ../../include/nav.php:113 ../../include/conversation.php:1642 #: ../../include/nav.php:113 ../../include/conversation.php:1645
#: ../../include/apps.php:136 ../../mod/webpages.php:176 #: ../../include/apps.php:136 ../../mod/webpages.php:176
msgid "Webpages" msgid "Webpages"
msgstr "" msgstr ""
@ -2137,7 +2138,7 @@ msgid "Create an account"
msgstr "" msgstr ""
#: ../../include/nav.php:160 ../../include/apps.php:142 ../../mod/help.php:67 #: ../../include/nav.php:160 ../../include/apps.php:142 ../../mod/help.php:67
#: ../../mod/help.php:72 ../../mod/layouts.php:171 #: ../../mod/help.php:72 ../../mod/layouts.php:175
msgid "Help" msgid "Help"
msgstr "" msgstr ""
@ -2335,17 +2336,17 @@ msgstr ""
msgid "%1$s has an updated %2$s, changing %3$s." msgid "%1$s has an updated %2$s, changing %3$s."
msgstr "" msgstr ""
#: ../../include/bbcode.php:122 ../../include/bbcode.php:735 #: ../../include/bbcode.php:122 ../../include/bbcode.php:743
#: ../../include/bbcode.php:738 ../../include/bbcode.php:743 #: ../../include/bbcode.php:746 ../../include/bbcode.php:751
#: ../../include/bbcode.php:746 ../../include/bbcode.php:749 #: ../../include/bbcode.php:754 ../../include/bbcode.php:757
#: ../../include/bbcode.php:752 ../../include/bbcode.php:757
#: ../../include/bbcode.php:760 ../../include/bbcode.php:765 #: ../../include/bbcode.php:760 ../../include/bbcode.php:765
#: ../../include/bbcode.php:768 ../../include/bbcode.php:771 #: ../../include/bbcode.php:768 ../../include/bbcode.php:773
#: ../../include/bbcode.php:774 #: ../../include/bbcode.php:776 ../../include/bbcode.php:779
#: ../../include/bbcode.php:782
msgid "Image/photo" msgid "Image/photo"
msgstr "" msgstr ""
#: ../../include/bbcode.php:161 ../../include/bbcode.php:785 #: ../../include/bbcode.php:161 ../../include/bbcode.php:793
msgid "Encrypted content" msgid "Encrypted content"
msgstr "" msgstr ""
@ -2366,15 +2367,15 @@ msgstr ""
msgid "post" msgid "post"
msgstr "" msgstr ""
#: ../../include/bbcode.php:485 #: ../../include/bbcode.php:493
msgid "Different viewers will see this text differently" msgid "Different viewers will see this text differently"
msgstr "" msgstr ""
#: ../../include/bbcode.php:696 #: ../../include/bbcode.php:704
msgid "$1 spoiler" msgid "$1 spoiler"
msgstr "" msgstr ""
#: ../../include/bbcode.php:723 #: ../../include/bbcode.php:731
msgid "$1 wrote:" msgid "$1 wrote:"
msgstr "" msgstr ""
@ -2437,33 +2438,34 @@ msgstr ""
#: ../../mod/profile.php:64 ../../mod/profile.php:72 #: ../../mod/profile.php:64 ../../mod/profile.php:72
#: ../../mod/achievements.php:30 ../../mod/manage.php:6 #: ../../mod/achievements.php:30 ../../mod/manage.php:6
#: ../../mod/settings.php:564 ../../mod/api.php:26 ../../mod/api.php:31 #: ../../mod/settings.php:564 ../../mod/api.php:26 ../../mod/api.php:31
#: ../../mod/thing.php:241 ../../mod/thing.php:256 ../../mod/thing.php:290 #: ../../mod/webpages.php:69 ../../mod/thing.php:241 ../../mod/thing.php:256
#: ../../mod/profile_photo.php:264 ../../mod/profile_photo.php:277 #: ../../mod/thing.php:290 ../../mod/profile_photo.php:264
#: ../../mod/block.php:22 ../../mod/block.php:72 ../../mod/like.php:178 #: ../../mod/profile_photo.php:277 ../../mod/block.php:22
#: ../../mod/events.php:219 ../../mod/group.php:9 ../../mod/setup.php:207 #: ../../mod/block.php:72 ../../mod/like.php:178 ../../mod/events.php:219
#: ../../mod/common.php:35 ../../mod/connections.php:169 #: ../../mod/group.php:9 ../../mod/setup.php:207 ../../mod/common.php:35
#: ../../mod/photos.php:68 ../../mod/pdledit.php:21 ../../mod/authtest.php:13 #: ../../mod/connections.php:169 ../../mod/blocks.php:69
#: ../../mod/editlayout.php:64 ../../mod/editlayout.php:89 #: ../../mod/blocks.php:76 ../../mod/photos.php:68 ../../mod/pdledit.php:21
#: ../../mod/chat.php:90 ../../mod/chat.php:95 ../../mod/editwebpage.php:64 #: ../../mod/authtest.php:13 ../../mod/editlayout.php:63
#: ../../mod/editwebpage.php:86 ../../mod/editwebpage.php:101 #: ../../mod/editlayout.php:87 ../../mod/chat.php:90 ../../mod/chat.php:95
#: ../../mod/editwebpage.php:125 ../../mod/rate.php:110 #: ../../mod/editwebpage.php:64 ../../mod/editwebpage.php:86
#: ../../mod/editpost.php:13 ../../mod/invite.php:13 ../../mod/invite.php:104 #: ../../mod/editwebpage.php:101 ../../mod/editwebpage.php:125
#: ../../mod/locs.php:77 ../../mod/sources.php:66 ../../mod/menu.php:69 #: ../../mod/rate.php:110 ../../mod/editpost.php:13 ../../mod/invite.php:13
#: ../../mod/filestorage.php:18 ../../mod/filestorage.php:73 #: ../../mod/invite.php:104 ../../mod/locs.php:77 ../../mod/sources.php:66
#: ../../mod/filestorage.php:88 ../../mod/filestorage.php:115 #: ../../mod/menu.php:69 ../../mod/filestorage.php:18
#: ../../mod/fsuggest.php:78 ../../mod/poke.php:128 ../../mod/webpages.php:69 #: ../../mod/filestorage.php:73 ../../mod/filestorage.php:88
#: ../../mod/profiles.php:188 ../../mod/profiles.php:576 #: ../../mod/filestorage.php:115 ../../mod/fsuggest.php:78
#: ../../mod/viewsrc.php:14 ../../mod/mitem.php:115 #: ../../mod/poke.php:128 ../../mod/profiles.php:188
#: ../../mod/profiles.php:576 ../../mod/viewsrc.php:14 ../../mod/mitem.php:115
#: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27 #: ../../mod/viewconnections.php:22 ../../mod/viewconnections.php:27
#: ../../mod/editblock.php:65 ../../mod/register.php:72 ../../mod/item.php:206 #: ../../mod/editblock.php:65 ../../mod/register.php:72 ../../mod/item.php:206
#: ../../mod/item.php:214 ../../mod/item.php:962 ../../mod/blocks.php:69 #: ../../mod/item.php:214 ../../mod/item.php:962 ../../mod/layouts.php:69
#: ../../mod/blocks.php:76 ../../mod/id.php:71 ../../mod/message.php:16 #: ../../mod/layouts.php:76 ../../mod/layouts.php:87 ../../mod/id.php:71
#: ../../mod/layouts.php:69 ../../mod/layouts.php:76 ../../mod/layouts.php:87 #: ../../mod/message.php:16 ../../mod/mood.php:111 ../../mod/connedit.php:331
#: ../../mod/mood.php:111 ../../mod/connedit.php:331 ../../mod/mail.php:114 #: ../../mod/mail.php:114 ../../mod/notifications.php:66
#: ../../mod/notifications.php:66 ../../mod/regmod.php:17 #: ../../mod/regmod.php:17 ../../mod/new_channel.php:68
#: ../../mod/new_channel.php:68 ../../mod/new_channel.php:99 #: ../../mod/new_channel.php:99 ../../mod/appman.php:66
#: ../../mod/appman.php:66 ../../mod/network.php:12 ../../mod/page.php:28 #: ../../mod/network.php:12 ../../mod/page.php:28 ../../mod/page.php:79
#: ../../mod/page.php:79 ../../mod/bookmarks.php:46 ../../mod/channel.php:100 #: ../../mod/bookmarks.php:46 ../../mod/channel.php:100
#: ../../mod/channel.php:219 ../../mod/channel.php:262 #: ../../mod/channel.php:219 ../../mod/channel.php:262
#: ../../mod/suggest.php:26 ../../mod/service_limits.php:7 #: ../../mod/suggest.php:26 ../../mod/service_limits.php:7
#: ../../mod/sharedwithme.php:7 ../../index.php:190 ../../index.php:393 #: ../../mod/sharedwithme.php:7 ../../index.php:190 ../../index.php:393
@ -2803,301 +2805,299 @@ msgstr ""
msgid "%s don't like this." msgid "%s don't like this."
msgstr "" msgstr ""
#: ../../include/conversation.php:1138 #: ../../include/conversation.php:1140
msgid "Visible to <strong>everybody</strong>" msgid "Visible to <strong>everybody</strong>"
msgstr "" msgstr ""
#: ../../include/conversation.php:1139 ../../mod/mail.php:174 #: ../../include/conversation.php:1141 ../../mod/mail.php:174
#: ../../mod/mail.php:289 #: ../../mod/mail.php:289
msgid "Please enter a link URL:" msgid "Please enter a link URL:"
msgstr "" msgstr ""
#: ../../include/conversation.php:1140 #: ../../include/conversation.php:1142
msgid "Please enter a video link/URL:" msgid "Please enter a video link/URL:"
msgstr "" msgstr ""
#: ../../include/conversation.php:1141 #: ../../include/conversation.php:1143
msgid "Please enter an audio link/URL:" msgid "Please enter an audio link/URL:"
msgstr "" msgstr ""
#: ../../include/conversation.php:1142 #: ../../include/conversation.php:1144
msgid "Tag term:" msgid "Tag term:"
msgstr "" msgstr ""
#: ../../include/conversation.php:1143 ../../mod/filer.php:49 #: ../../include/conversation.php:1145 ../../mod/filer.php:49
msgid "Save to Folder:" msgid "Save to Folder:"
msgstr "" msgstr ""
#: ../../include/conversation.php:1144 #: ../../include/conversation.php:1146
msgid "Where are you right now?" msgid "Where are you right now?"
msgstr "" msgstr ""
#: ../../include/conversation.php:1145 ../../mod/editpost.php:52 #: ../../include/conversation.php:1147 ../../mod/editpost.php:52
#: ../../mod/mail.php:175 ../../mod/mail.php:290 #: ../../mod/mail.php:175 ../../mod/mail.php:290
msgid "Expires YYYY-MM-DD HH:MM" msgid "Expires YYYY-MM-DD HH:MM"
msgstr "" msgstr ""
#: ../../include/conversation.php:1172 ../../mod/photos.php:949 #: ../../include/conversation.php:1174 ../../mod/webpages.php:180
#: ../../mod/editlayout.php:197 ../../mod/webpages.php:180 #: ../../mod/blocks.php:153 ../../mod/photos.php:949 ../../mod/layouts.php:183
#: ../../mod/blocks.php:149 ../../mod/layouts.php:175
msgid "Share" msgid "Share"
msgstr "" msgstr ""
#: ../../include/conversation.php:1174 #: ../../include/conversation.php:1176
msgid "Page link name" msgid "Page link name"
msgstr "" msgstr ""
#: ../../include/conversation.php:1177 #: ../../include/conversation.php:1179
msgid "Post as" msgid "Post as"
msgstr "" msgstr ""
#: ../../include/conversation.php:1184 ../../mod/editlayout.php:145 #: ../../include/conversation.php:1186 ../../mod/editlayout.php:145
#: ../../mod/editwebpage.php:184 ../../mod/editpost.php:119 #: ../../mod/editwebpage.php:184 ../../mod/editpost.php:119
#: ../../mod/editblock.php:147 ../../mod/mail.php:238 ../../mod/mail.php:352 #: ../../mod/editblock.php:147 ../../mod/mail.php:238 ../../mod/mail.php:352
msgid "Upload photo" msgid "Upload photo"
msgstr "" msgstr ""
#: ../../include/conversation.php:1185 #: ../../include/conversation.php:1187
msgid "upload photo" msgid "upload photo"
msgstr "" msgstr ""
#: ../../include/conversation.php:1186 ../../mod/editlayout.php:146 #: ../../include/conversation.php:1188 ../../mod/editlayout.php:146
#: ../../mod/editwebpage.php:185 ../../mod/editpost.php:120 #: ../../mod/editwebpage.php:185 ../../mod/editpost.php:120
#: ../../mod/editblock.php:148 ../../mod/mail.php:239 ../../mod/mail.php:353 #: ../../mod/editblock.php:148 ../../mod/mail.php:239 ../../mod/mail.php:353
msgid "Attach file" msgid "Attach file"
msgstr "" msgstr ""
#: ../../include/conversation.php:1187 #: ../../include/conversation.php:1189
msgid "attach file" msgid "attach file"
msgstr "" msgstr ""
#: ../../include/conversation.php:1188 ../../mod/editlayout.php:147 #: ../../include/conversation.php:1190 ../../mod/editlayout.php:147
#: ../../mod/editwebpage.php:186 ../../mod/editpost.php:121 #: ../../mod/editwebpage.php:186 ../../mod/editpost.php:121
#: ../../mod/editblock.php:149 ../../mod/mail.php:240 ../../mod/mail.php:354 #: ../../mod/editblock.php:149 ../../mod/mail.php:240 ../../mod/mail.php:354
msgid "Insert web link" msgid "Insert web link"
msgstr "" msgstr ""
#: ../../include/conversation.php:1189 #: ../../include/conversation.php:1191
msgid "web link" msgid "web link"
msgstr "" msgstr ""
#: ../../include/conversation.php:1190 #: ../../include/conversation.php:1192
msgid "Insert video link" msgid "Insert video link"
msgstr "" msgstr ""
#: ../../include/conversation.php:1191 #: ../../include/conversation.php:1193
msgid "video link" msgid "video link"
msgstr "" msgstr ""
#: ../../include/conversation.php:1192 #: ../../include/conversation.php:1194
msgid "Insert audio link" msgid "Insert audio link"
msgstr "" msgstr ""
#: ../../include/conversation.php:1193 #: ../../include/conversation.php:1195
msgid "audio link" msgid "audio link"
msgstr "" msgstr ""
#: ../../include/conversation.php:1194 ../../mod/editlayout.php:151 #: ../../include/conversation.php:1196 ../../mod/editlayout.php:151
#: ../../mod/editwebpage.php:190 ../../mod/editpost.php:125 #: ../../mod/editwebpage.php:190 ../../mod/editpost.php:125
#: ../../mod/editblock.php:153 #: ../../mod/editblock.php:153
msgid "Set your location" msgid "Set your location"
msgstr "" msgstr ""
#: ../../include/conversation.php:1195 #: ../../include/conversation.php:1197
msgid "set location" msgid "set location"
msgstr "" msgstr ""
#: ../../include/conversation.php:1196 ../../mod/editpost.php:127 #: ../../include/conversation.php:1198 ../../mod/editpost.php:127
msgid "Toggle voting" msgid "Toggle voting"
msgstr "" msgstr ""
#: ../../include/conversation.php:1199 ../../mod/editlayout.php:152 #: ../../include/conversation.php:1201 ../../mod/editlayout.php:152
#: ../../mod/editwebpage.php:191 ../../mod/editpost.php:126 #: ../../mod/editwebpage.php:191 ../../mod/editpost.php:126
#: ../../mod/editblock.php:154 #: ../../mod/editblock.php:154
msgid "Clear browser location" msgid "Clear browser location"
msgstr "" msgstr ""
#: ../../include/conversation.php:1200 #: ../../include/conversation.php:1202
msgid "clear location" msgid "clear location"
msgstr "" msgstr ""
#: ../../include/conversation.php:1202 ../../mod/editlayout.php:164 #: ../../include/conversation.php:1204 ../../mod/editwebpage.php:207
#: ../../mod/editwebpage.php:207 ../../mod/editpost.php:141 #: ../../mod/editpost.php:141 ../../mod/editblock.php:167
#: ../../mod/editblock.php:167
msgid "Title (optional)" msgid "Title (optional)"
msgstr "" msgstr ""
#: ../../include/conversation.php:1205 ../../mod/editlayout.php:167 #: ../../include/conversation.php:1208 ../../mod/editlayout.php:168
#: ../../mod/editwebpage.php:209 ../../mod/editpost.php:143 #: ../../mod/editwebpage.php:209 ../../mod/editpost.php:143
#: ../../mod/editblock.php:170 #: ../../mod/editblock.php:170
msgid "Categories (optional, comma-separated list)" msgid "Categories (optional, comma-separated list)"
msgstr "" msgstr ""
#: ../../include/conversation.php:1207 ../../mod/editlayout.php:154 #: ../../include/conversation.php:1210 ../../mod/editlayout.php:154
#: ../../mod/editwebpage.php:193 ../../mod/editpost.php:131 #: ../../mod/editwebpage.php:193 ../../mod/editpost.php:131
#: ../../mod/editblock.php:156 #: ../../mod/editblock.php:156
msgid "Permission settings" msgid "Permission settings"
msgstr "" msgstr ""
#: ../../include/conversation.php:1208 #: ../../include/conversation.php:1211
msgid "permissions" msgid "permissions"
msgstr "" msgstr ""
#: ../../include/conversation.php:1216 ../../mod/editlayout.php:161 #: ../../include/conversation.php:1219 ../../mod/editlayout.php:161
#: ../../mod/editwebpage.php:202 ../../mod/editpost.php:138 #: ../../mod/editwebpage.php:202 ../../mod/editpost.php:138
#: ../../mod/editblock.php:164 #: ../../mod/editblock.php:164
msgid "Public post" msgid "Public post"
msgstr "" msgstr ""
#: ../../include/conversation.php:1218 ../../mod/editlayout.php:168 #: ../../include/conversation.php:1221 ../../mod/editlayout.php:169
#: ../../mod/editwebpage.php:210 ../../mod/editpost.php:144 #: ../../mod/editwebpage.php:210 ../../mod/editpost.php:144
#: ../../mod/editblock.php:171 #: ../../mod/editblock.php:171
msgid "Example: bob@example.com, mary@example.com" msgid "Example: bob@example.com, mary@example.com"
msgstr "" msgstr ""
#: ../../include/conversation.php:1231 ../../mod/editlayout.php:177 #: ../../include/conversation.php:1234 ../../mod/editlayout.php:178
#: ../../mod/editwebpage.php:219 ../../mod/editpost.php:155 #: ../../mod/editwebpage.php:219 ../../mod/editpost.php:155
#: ../../mod/editblock.php:181 ../../mod/mail.php:245 ../../mod/mail.php:359 #: ../../mod/editblock.php:181 ../../mod/mail.php:245 ../../mod/mail.php:359
msgid "Set expiration date" msgid "Set expiration date"
msgstr "" msgstr ""
#: ../../include/conversation.php:1235 ../../mod/events.php:637 #: ../../include/conversation.php:1238 ../../mod/events.php:637
#: ../../mod/editpost.php:159 #: ../../mod/editpost.php:159
msgid "OK" msgid "OK"
msgstr "" msgstr ""
#: ../../include/conversation.php:1236 ../../mod/settings.php:583 #: ../../include/conversation.php:1239 ../../mod/settings.php:583
#: ../../mod/settings.php:609 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134 #: ../../mod/settings.php:609 ../../mod/tagrm.php:11 ../../mod/tagrm.php:134
#: ../../mod/events.php:636 ../../mod/fbrowser.php:82 #: ../../mod/events.php:636 ../../mod/fbrowser.php:82
#: ../../mod/fbrowser.php:117 ../../mod/editpost.php:160 #: ../../mod/fbrowser.php:117 ../../mod/editpost.php:160
msgid "Cancel" msgid "Cancel"
msgstr "" msgstr ""
#: ../../include/conversation.php:1478 #: ../../include/conversation.php:1481
msgid "Discover" msgid "Discover"
msgstr "" msgstr ""
#: ../../include/conversation.php:1481 #: ../../include/conversation.php:1484
msgid "Imported public streams" msgid "Imported public streams"
msgstr "" msgstr ""
#: ../../include/conversation.php:1486 #: ../../include/conversation.php:1489
msgid "Commented Order" msgid "Commented Order"
msgstr "" msgstr ""
#: ../../include/conversation.php:1489 #: ../../include/conversation.php:1492
msgid "Sort by Comment Date" msgid "Sort by Comment Date"
msgstr "" msgstr ""
#: ../../include/conversation.php:1493 #: ../../include/conversation.php:1496
msgid "Posted Order" msgid "Posted Order"
msgstr "" msgstr ""
#: ../../include/conversation.php:1496 #: ../../include/conversation.php:1499
msgid "Sort by Post Date" msgid "Sort by Post Date"
msgstr "" msgstr ""
#: ../../include/conversation.php:1504 #: ../../include/conversation.php:1507
msgid "Posts that mention or involve you" msgid "Posts that mention or involve you"
msgstr "" msgstr ""
#: ../../include/conversation.php:1510 ../../mod/connections.php:212 #: ../../include/conversation.php:1513 ../../mod/connections.php:212
#: ../../mod/connections.php:225 ../../mod/menu.php:102 #: ../../mod/connections.php:225 ../../mod/menu.php:102
msgid "New" msgid "New"
msgstr "" msgstr ""
#: ../../include/conversation.php:1513 #: ../../include/conversation.php:1516
msgid "Activity Stream - by date" msgid "Activity Stream - by date"
msgstr "" msgstr ""
#: ../../include/conversation.php:1519 #: ../../include/conversation.php:1522
msgid "Starred" msgid "Starred"
msgstr "" msgstr ""
#: ../../include/conversation.php:1522 #: ../../include/conversation.php:1525
msgid "Favourite Posts" msgid "Favourite Posts"
msgstr "" msgstr ""
#: ../../include/conversation.php:1529 #: ../../include/conversation.php:1532
msgid "Spam" msgid "Spam"
msgstr "" msgstr ""
#: ../../include/conversation.php:1532 #: ../../include/conversation.php:1535
msgid "Posts flagged as SPAM" msgid "Posts flagged as SPAM"
msgstr "" msgstr ""
#: ../../include/conversation.php:1576 ../../mod/admin.php:952 #: ../../include/conversation.php:1579 ../../mod/admin.php:952
msgid "Channel" msgid "Channel"
msgstr "" msgstr ""
#: ../../include/conversation.php:1579 #: ../../include/conversation.php:1582
msgid "Status Messages and Posts" msgid "Status Messages and Posts"
msgstr "" msgstr ""
#: ../../include/conversation.php:1588 #: ../../include/conversation.php:1591
msgid "About" msgid "About"
msgstr "" msgstr ""
#: ../../include/conversation.php:1591 #: ../../include/conversation.php:1594
msgid "Profile Details" msgid "Profile Details"
msgstr "" msgstr ""
#: ../../include/conversation.php:1600 ../../include/photos.php:359 #: ../../include/conversation.php:1603 ../../include/photos.php:359
msgid "Photo Albums" msgid "Photo Albums"
msgstr "" msgstr ""
#: ../../include/conversation.php:1609 #: ../../include/conversation.php:1612
msgid "Files and Storage" msgid "Files and Storage"
msgstr "" msgstr ""
#: ../../include/conversation.php:1619 ../../include/conversation.php:1622 #: ../../include/conversation.php:1622 ../../include/conversation.php:1625
msgid "Chatrooms" msgid "Chatrooms"
msgstr "" msgstr ""
#: ../../include/conversation.php:1635 #: ../../include/conversation.php:1638
msgid "Saved Bookmarks" msgid "Saved Bookmarks"
msgstr "" msgstr ""
#: ../../include/conversation.php:1645 #: ../../include/conversation.php:1648
msgid "Manage Webpages" msgid "Manage Webpages"
msgstr "" msgstr ""
#: ../../include/conversation.php:1704 #: ../../include/conversation.php:1707
msgctxt "noun" msgctxt "noun"
msgid "Attending" msgid "Attending"
msgid_plural "Attending" msgid_plural "Attending"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../include/conversation.php:1707 #: ../../include/conversation.php:1710
msgctxt "noun" msgctxt "noun"
msgid "Not Attending" msgid "Not Attending"
msgid_plural "Not Attending" msgid_plural "Not Attending"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../include/conversation.php:1710 #: ../../include/conversation.php:1713
msgctxt "noun" msgctxt "noun"
msgid "Undecided" msgid "Undecided"
msgid_plural "Undecided" msgid_plural "Undecided"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../include/conversation.php:1713 #: ../../include/conversation.php:1716
msgctxt "noun" msgctxt "noun"
msgid "Agree" msgid "Agree"
msgid_plural "Agrees" msgid_plural "Agrees"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../include/conversation.php:1716 #: ../../include/conversation.php:1719
msgctxt "noun" msgctxt "noun"
msgid "Disagree" msgid "Disagree"
msgid_plural "Disagrees" msgid_plural "Disagrees"
msgstr[0] "" msgstr[0] ""
msgstr[1] "" msgstr[1] ""
#: ../../include/conversation.php:1719 #: ../../include/conversation.php:1722
msgctxt "noun" msgctxt "noun"
msgid "Abstain" msgid "Abstain"
msgid_plural "Abstains" msgid_plural "Abstains"
@ -3336,11 +3336,11 @@ msgid "Requested channel is not available."
msgstr "" msgstr ""
#: ../../include/identity.php:677 ../../mod/profile.php:16 #: ../../include/identity.php:677 ../../mod/profile.php:16
#: ../../mod/achievements.php:11 ../../mod/connect.php:13 #: ../../mod/achievements.php:11 ../../mod/webpages.php:29
#: ../../mod/hcard.php:8 ../../mod/editlayout.php:28 #: ../../mod/connect.php:13 ../../mod/hcard.php:8 ../../mod/blocks.php:29
#: ../../mod/editwebpage.php:28 ../../mod/filestorage.php:54 #: ../../mod/editlayout.php:27 ../../mod/editwebpage.php:28
#: ../../mod/webpages.php:29 ../../mod/editblock.php:29 #: ../../mod/filestorage.php:54 ../../mod/editblock.php:29
#: ../../mod/blocks.php:29 ../../mod/layouts.php:29 #: ../../mod/layouts.php:29
msgid "Requested profile is not available." msgid "Requested profile is not available."
msgstr "" msgstr ""
@ -4513,6 +4513,10 @@ msgid ""
"and/or create new posts for you?" "and/or create new posts for you?"
msgstr "" msgstr ""
#: ../../mod/webpages.php:189
msgid "Page Title"
msgstr ""
#: ../../mod/follow.php:25 #: ../../mod/follow.php:25
msgid "Channel added." msgid "Channel added."
msgstr "" msgstr ""
@ -5562,21 +5566,12 @@ msgstr ""
msgid "Finding: " msgid "Finding: "
msgstr "" msgstr ""
#: ../../mod/impel.php:33 #: ../../mod/blocks.php:95 ../../mod/blocks.php:147
msgid "webpage" msgid "Block Name"
msgstr "" msgstr ""
#: ../../mod/impel.php:38 #: ../../mod/blocks.php:148
msgid "block" msgid "Block Title"
msgstr ""
#: ../../mod/impel.php:43
msgid "layout"
msgstr ""
#: ../../mod/impel.php:117
#, php-format
msgid "%s element installed"
msgstr "" msgstr ""
#: ../../mod/tagger.php:96 #: ../../mod/tagger.php:96
@ -5809,7 +5804,7 @@ msgstr ""
msgid "Module Name:" msgid "Module Name:"
msgstr "" msgstr ""
#: ../../mod/pdledit.php:55 ../../mod/layouts.php:108 #: ../../mod/pdledit.php:55
msgid "Layout Help" msgid "Layout Help"
msgstr "" msgstr ""
@ -5907,13 +5902,13 @@ msgstr ""
msgid "Import existing posts if possible" msgid "Import existing posts if possible"
msgstr "" msgstr ""
#: ../../mod/editlayout.php:78 ../../mod/editwebpage.php:77 #: ../../mod/editlayout.php:76 ../../mod/editwebpage.php:77
#: ../../mod/editpost.php:20 ../../mod/editblock.php:78 #: ../../mod/editpost.php:20 ../../mod/editblock.php:78
#: ../../mod/editblock.php:94 #: ../../mod/editblock.php:94
msgid "Item not found" msgid "Item not found"
msgstr "" msgstr ""
#: ../../mod/editlayout.php:108 #: ../../mod/editlayout.php:106
msgid "Edit Layout" msgid "Edit Layout"
msgstr "" msgstr ""
@ -5936,8 +5931,13 @@ msgstr ""
msgid "Insert Vorbis [.ogg] audio" msgid "Insert Vorbis [.ogg] audio"
msgstr "" msgstr ""
#: ../../mod/editlayout.php:182 #: ../../mod/editlayout.php:164 ../../mod/layouts.php:124
msgid "Delete Layout" msgid "Layout Description (Optional)"
msgstr ""
#: ../../mod/editlayout.php:166 ../../mod/layouts.php:121
#: ../../mod/layouts.php:178
msgid "Layout Name"
msgstr "" msgstr ""
#: ../../mod/chat.php:19 ../../mod/channel.php:25 #: ../../mod/chat.php:19 ../../mod/channel.php:25
@ -6452,8 +6452,21 @@ msgstr ""
msgid "Visible To" msgid "Visible To"
msgstr "" msgstr ""
#: ../../mod/webpages.php:189 #: ../../mod/impel.php:33
msgid "Page Title" msgid "webpage"
msgstr ""
#: ../../mod/impel.php:38
msgid "block"
msgstr ""
#: ../../mod/impel.php:43
msgid "layout"
msgstr ""
#: ../../mod/impel.php:117
#, php-format
msgid "%s element installed"
msgstr "" msgstr ""
#: ../../mod/profiles.php:18 ../../mod/profiles.php:174 #: ../../mod/profiles.php:18 ../../mod/profiles.php:174
@ -7858,8 +7871,16 @@ msgstr ""
msgid "Visible to:" msgid "Visible to:"
msgstr "" msgstr ""
#: ../../mod/blocks.php:95 ../../mod/blocks.php:144 #: ../../mod/layouts.php:175
msgid "Block Name" msgid "Comanche page description language help"
msgstr ""
#: ../../mod/layouts.php:179
msgid "Layout Description"
msgstr ""
#: ../../mod/layouts.php:184
msgid "Download PDL file"
msgstr "" msgstr ""
#: ../../mod/id.php:11 #: ../../mod/id.php:11
@ -7942,18 +7963,6 @@ msgstr ""
msgid "D, d M Y - g:i A" msgid "D, d M Y - g:i A"
msgstr "" msgstr ""
#: ../../mod/layouts.php:111
msgid "Help with this feature"
msgstr ""
#: ../../mod/layouts.php:132
msgid "Layout Name"
msgstr ""
#: ../../mod/layouts.php:171
msgid "Comanche page description language help"
msgstr ""
#: ../../mod/mood.php:131 #: ../../mod/mood.php:131
msgid "Set your current mood and tell your friends" msgid "Set your current mood and tell your friends"
msgstr "" msgstr ""

View File

@ -1 +1 @@
2015-04-30.1018 2015-05-05.1023

10
view/php/zen.php Normal file
View File

@ -0,0 +1,10 @@
<!DOCTYPE html>
<html>
<head>
<title><?php if(x($page,'title')) echo $page['title'] ?></title>
<?php if(x($page,'htmlhead')) echo $page['htmlhead'] ?>
</head>
<body>
<?php if(x($page,'content')) echo $page['content']; ?>
</body>
</html>

View File

@ -0,0 +1,17 @@
<poll>
<guid>{{$guid_q}}</guid>
<question>{{$question}}</question>
<poll_answer>
<guid>{{$guid_y}}</guid>
<answer>{{$agree}}</answer>
</poll_answer>
<poll_answer>
<guid>{{$guid_n}}</guid>
<answer>{{$disagree}}</answer>
</poll_answer>
<poll_answer>
<guid>{{$guid_a}}</guid>
<answer>{{$abstain}}</answer>
</poll_answer>
</poll>

View File

@ -4,6 +4,7 @@
<raw_message>{{$body}}</raw_message> <raw_message>{{$body}}</raw_message>
<guid>{{$guid}}</guid> <guid>{{$guid}}</guid>
<diaspora_handle>{{$handle}}</diaspora_handle> <diaspora_handle>{{$handle}}</diaspora_handle>
{{$poll}}
<public>{{$public}}</public> <public>{{$public}}</public>
<created_at>{{$created}}</created_at> <created_at>{{$created}}</created_at>
<provider_display_name>{{$provider}}</provider_display_name> <provider_display_name>{{$provider}}</provider_display_name>