diff --git a/boot.php b/boot.php
index 6864e533d..cd7fa03b5 100644
--- a/boot.php
+++ b/boot.php
@@ -12,10 +12,9 @@ require_once('library/Mobile_Detect/Mobile_Detect.php');
require_once('include/features.php');
define ( 'FRIENDICA_PLATFORM', 'Friendica');
-define ( 'FRIENDICA_VERSION', '3.1.1572' );
+define ( 'FRIENDICA_VERSION', '3.1.1589' );
define ( 'DFRN_PROTOCOL_VERSION', '2.23' );
define ( 'DB_UPDATE_VERSION', 1159 );
-
define ( 'EOL', " \r\n" );
define ( 'ATOM_TIME', 'Y-m-d\TH:i:s\Z' );
@@ -385,8 +384,14 @@ if(! class_exists('App')) {
'template_engine' => 'internal',
);
- public $smarty3_ldelim = '{{';
- public $smarty3_rdelim = '}}';
+ private $ldelim = array(
+ 'internal' => '',
+ 'smarty3' => '{{'
+ );
+ private $rdelim = array(
+ 'internal' => '',
+ 'smarty3' => '}}'
+ );
private $scheme;
private $hostname;
@@ -617,17 +622,17 @@ if(! class_exists('App')) {
*/
if(!isset($this->page['htmlhead']))
$this->page['htmlhead'] = '';
- $tpl = get_markup_template('head.tpl');
// If we're using Smarty, then doing replace_macros() will replace
// any unrecognized variables with a blank string. Since we delay
// replacing $stylesheet until later, we need to replace it now
// with another variable name
if($this->theme['template_engine'] === 'smarty3')
- $stylesheet = $this->smarty3_ldelim . '$stylesheet' . $this->smarty3_rdelim;
+ $stylesheet = $this->get_template_ldelim('smarty3') . '$stylesheet' . $this->get_template_rdelim('smarty3');
else
$stylesheet = '$stylesheet';
+ $tpl = get_markup_template('head.tpl');
$this->page['htmlhead'] = replace_macros($tpl,array(
'$baseurl' => $this->get_baseurl(), // FIXME for z_path!!!!
'$local_user' => local_user(),
@@ -688,6 +693,31 @@ if(! class_exists('App')) {
return $this->cached_profile_image[$avatar_image];
}
+ function get_template_engine() {
+ return $this->theme['template_engine'];
+ }
+
+ function set_template_engine($engine = 'internal') {
+
+ $this->theme['template_engine'] = 'internal';
+
+ switch($engine) {
+ case 'smarty3':
+ if(is_writable('view/smarty3/'))
+ $this->theme['template_engine'] = 'smarty3';
+ break;
+ default:
+ break;
+ }
+ }
+
+ function get_template_ldelim($engine = 'internal') {
+ return $this->ldelim[$engine];
+ }
+
+ function get_template_rdelim($engine = 'internal') {
+ return $this->rdelim[$engine];
+ }
}
}
@@ -776,16 +806,12 @@ function is_ajax() {
// Primarily involved with database upgrade, but also sets the
// base url for use in cmdline programs which don't have
-// $_SERVER variables, and synchronising the state of installed plugins.
+// $_SERVER variables
if(! function_exists('check_config')) {
function check_config(&$a) {
- $build = get_config('system','build');
- if(! x($build))
- $build = set_config('system','build',DB_UPDATE_VERSION);
-
$url = get_config('system','url');
// if the url isn't set or the stored url is radically different
@@ -800,6 +826,10 @@ if(! function_exists('check_config')) {
$url = set_config('system','url',$a->get_baseurl());
+ $build = get_config('system','build');
+ if(! x($build))
+ $build = set_config('system','build',DB_UPDATE_VERSION);
+
if($build != DB_UPDATE_VERSION) {
$stored = intval($build);
$current = intval(DB_UPDATE_VERSION);
@@ -848,9 +878,10 @@ if(! function_exists('check_config')) {
'$error' => sprintf( t('Update %s failed. See error logs.'), $x)
));
$subject=sprintf(t('Update Error at %s'), $a->get_baseurl());
-
+ require_once('include/email.php');
+ $subject = email_header_encode($subject,'UTF-8');
mail($a->config['admin_email'], $subject, $email_msg,
- 'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"
+ 'From: ' . 'Administrator' . '@' . $_SERVER['SERVER_NAME'] . "\n"
. 'Content-type: text/plain; charset=UTF-8' . "\n"
. 'Content-transfer-encoding: 8bit' );
//try the logger
@@ -867,6 +898,14 @@ if(! function_exists('check_config')) {
}
}
+ return;
+ }
+}
+
+
+if(! function_exists('check_plugins')) {
+ function check_plugins(&$a) {
+
/**
*
* Synchronise plugins:
@@ -1108,6 +1147,10 @@ if(! function_exists('get_max_import_size')) {
* Profile information is placed in the App structure for later retrieval.
* Honours the owner's chosen theme for display.
*
+ * IMPORTANT: Should only be run in the _init() functions of a module. That ensures that
+ * the theme is chosen before the _init() function of a theme is run, which will usually
+ * load a lot of theme-specific content
+ *
*/
if(! function_exists('profile_load')) {
@@ -1167,7 +1210,7 @@ if(! function_exists('profile_load')) {
if(! $r[0]['is-default']) {
$x = q("select `pub_keywords` from `profile` where uid = %d and `is-default` = 1 limit 1",
- intval($profile_uid)
+ intval($r[0]['profile_uid'])
);
if($x && count($x))
$r[0]['pub_keywords'] = $x[0]['pub_keywords'];
@@ -1175,7 +1218,7 @@ if(! function_exists('profile_load')) {
$a->profile = $r[0];
- $a->profile['mobile-theme'] = get_pconfig($profile_uid, 'system', 'mobile_theme');
+ $a->profile['mobile-theme'] = get_pconfig($a->profile['profile_uid'], 'system', 'mobile_theme');
$a->page['title'] = $a->profile['name'] . " @ " . $a->config['sitename'];
@@ -1186,6 +1229,8 @@ if(! function_exists('profile_load')) {
* load/reload current theme info
*/
+ $a->set_template_engine(); // reset the template engine to the default in case the user's theme doesn't specify one
+
$theme_info_file = "view/theme/".current_theme()."/theme.php";
if (file_exists($theme_info_file)){
require_once($theme_info_file);
@@ -1344,8 +1389,6 @@ if(! function_exists('profile_sidebar')) {
}
- $tpl = get_markup_template('profile_vcard.tpl');
-
$p = array();
foreach($profile as $k => $v) {
$k = str_replace('-','_',$k);
@@ -1355,6 +1398,7 @@ if(! function_exists('profile_sidebar')) {
if($a->theme['template_engine'] === 'internal')
$location = template_escape($location);
+ $tpl = get_markup_template('profile_vcard.tpl');
$o .= replace_macros($tpl, array(
'$profile' => $p,
'$connect' => $connect,
@@ -1612,7 +1656,7 @@ if(! function_exists('current_theme')) {
// $mobile_detect = new Mobile_Detect();
// $is_mobile = $mobile_detect->isMobile() || $mobile_detect->isTablet();
$is_mobile = $a->is_mobile || $a->is_tablet;
-
+
if($is_mobile) {
if(isset($_SESSION['show-mobile']) && !$_SESSION['show-mobile']) {
$system_theme = '';
@@ -1947,16 +1991,9 @@ function clear_cache($basepath = "", $path = "") {
}
function set_template_engine(&$a, $engine = 'internal') {
+// This function is no longer necessary, but keep it as a wrapper to the class method
+// to avoid breaking themes again unnecessarily
- $a->theme['template_engine'] = 'internal';
-
- if(is_writable('view/smarty3/')) {
- switch($engine) {
- case 'smarty3':
- $a->theme['template_engine'] = 'smarty3';
- break;
- default:
- break;
- }
- }
+ $a->set_template_engine($engine);
}
+
diff --git a/database.sql b/database.sql
index 99d60429a..cf060ebf4 100644
--- a/database.sql
+++ b/database.sql
@@ -241,6 +241,20 @@ CREATE TABLE IF NOT EXISTS `deliverq` (
-- --------------------------------------------------------
+--
+-- Table structure for table `dsprphotoq`
+--
+
+CREATE TABLE `dsprphotoq` (
+ `id` int(10) unsigned NOT NULL AUTO_INCREMENT,
+ `uid` int(11) NOT NULL,
+ `msg` mediumtext NOT NULL,
+ `attempt` tinyint(4) NOT NULL,
+ PRIMARY KEY (`id`)
+) ENGINE=MyISAM DEFAULT CHARSET=utf8;
+
+-- --------------------------------------------------------
+
--
-- Table structure for table `event`
--
diff --git a/include/attach.php b/include/attach.php
index 6d611cec0..079911ffa 100644
--- a/include/attach.php
+++ b/include/attach.php
@@ -42,6 +42,10 @@ function z_mime_content_type($filename) {
'qt' => 'video/quicktime',
'mov' => 'video/quicktime',
'ogg' => 'application/ogg',
+ 'mp4' => 'video/mp4',
+ 'avi' => 'video/x-msvideo',
+ 'wmv' => 'video/x-ms-wmv',
+ 'wma' => 'audio/x-ms-wma',
// adobe
'pdf' => 'application/pdf',
diff --git a/include/bbcode.php b/include/bbcode.php
index a7cfa079d..613c2b7db 100644
--- a/include/bbcode.php
+++ b/include/bbcode.php
@@ -254,12 +254,22 @@ function bb_ShareAttributes($match) {
if ($matches[1] != "")
$profile = $matches[1];
+ $posted = "";
+ preg_match("/posted='(.*?)'/ism", $attributes, $matches);
+ if ($matches[1] != "")
+ $posted = $matches[1];
+
+ preg_match('/posted="(.*?)"/ism', $attributes, $matches);
+ if ($matches[1] != "")
+ $posted = $matches[1];
+ $reldate = (($posted) ? " " . relative_date($posted) : '');
+
$headline = '
';
if ($avatar != "")
$headline .= '';
- $headline .= sprintf(t('%s wrote the following post:'), $profile, $author, $link);
+ $headline .= sprintf(t('%s wrote the following post'.$reldate.':'), $profile, $author, $link);
$headline .= "
";
@@ -312,6 +322,9 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true) {
$Text = preg_replace("/\s?\[share(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism","[share$1]$2[/share]",$Text);
$Text = preg_replace("/\s?\[quote(.*?)\]\s?(.*?)\s?\[\/quote\]\s?/ism","[quote$1]$2[/quote]",$Text);
+ $Text = preg_replace("/\n\[code\]/ism", "[code]", $Text);
+ $Text = preg_replace("/\[\/code\]\n/ism", "[/code]", $Text);
+
// when the content is meant exporting to other systems then remove the avatar picture since this doesn't really look good on these systems
if (!$tryoembed)
$Text = preg_replace("/\[share(.*?)avatar\s?=\s?'.*?'\s?(.*?)\]\s?(.*?)\s?\[\/share\]\s?/ism","\n[share$1$2]$3[/share]",$Text);
@@ -327,12 +340,13 @@ function bbcode($Text,$preserve_nl = false, $tryoembed = true) {
$Text = str_replace("\r\n","\n", $Text);
// removing multiplicated newlines
- $search = array("\n\n\n", "\n ", " \n", "[/quote]\n\n", "\n[/quote]");
- $replace = array("\n\n", "\n", "\n", "[/quote]\n", "[/quote]");
- do {
- $oldtext = $Text;
- $Text = str_replace($search, $replace, $Text);
- } while ($oldtext != $Text);
+// $search = array("\n\n\n", "\n ", " \n", "[/quote]\n\n", "\n[/quote]");
+// $replace = array("\n\n", "\n", "\n", "[/quote]\n", "[/quote]");
+// do {
+// $oldtext = $Text;
+// $Text = str_replace($search, $replace, $Text);
+// } while ($oldtext != $Text);
+
$Text = str_replace(array("\r","\n"), array(' ',' '), $Text);
diff --git a/include/conversation.php b/include/conversation.php
index 766534273..cc66d380b 100644
--- a/include/conversation.php
+++ b/include/conversation.php
@@ -524,7 +524,7 @@ function conversation(&$a, $items, $mode, $update, $preview = false) {
$hashtags = array();
$mentions = array();
- $taglist = q("SELECT `type`, `term`, `url` FROM `term` WHERE `otype` = %d AND `oid` = %d AND `type` IN (%d, %d)",
+ $taglist = q("SELECT `type`, `term`, `url` FROM `term` WHERE `otype` = %d AND `oid` = %d AND `type` IN (%d, %d) ORDER BY `tid`",
intval(TERM_OBJ_POST), intval($item['id']), intval(TERM_HASHTAG), intval(TERM_MENTION));
foreach($taglist as $tag) {
@@ -896,26 +896,21 @@ function format_like($cnt,$arr,$type,$id) {
if($cnt == 1)
$o .= (($type === 'like') ? sprintf( t('%s likes this.'), $arr[0]) : sprintf( t('%s doesn\'t like this.'), $arr[0])) . EOL ;
else {
- //$spanatts = 'class="fakelink" onclick="openClose(\'' . $type . 'list-' . $id . '\');"';
+ $spanatts = "class=\"fakelink\" onclick=\"openClose('{$type}list-$id');\"";
switch($type) {
case 'like':
-// $phrase = sprintf( t('%2$d people like this.'), $spanatts, $cnt);
- $mood = t('like this');
+ $phrase = sprintf( t('%2$d people like this'), $spanatts, $cnt);
break;
case 'dislike':
-// $phrase = sprintf( t('%2$d people don\'t like this.'), $spanatts, $cnt);
- $mood = t('don\'t like this');
+ $phrase = sprintf( t('%2$d people don\'t like this'), $spanatts, $cnt);
break;
}
- $tpl = get_markup_template("voting_fakelink.tpl");
- $phrase = replace_macros($tpl, array(
- '$vote_id' => $type . 'list-' . $id,
- '$count' => $cnt,
- '$people' => t('people'),
- '$vote_mood' => $mood
+ $phrase .= EOL ;
+ $o .= replace_macros(get_markup_template('voting_fakelink.tpl'), array(
+ '$phrase' => $phrase,
+ '$type' => $type,
+ '$id' => $id
));
- $o .= $phrase;
-// $o .= EOL ;
$total = count($arr);
if($total >= MAX_LIKERS)
diff --git a/include/dbupdate.php b/include/dbupdate.php
new file mode 100644
index 000000000..6ae1bf10e
--- /dev/null
+++ b/include/dbupdate.php
@@ -0,0 +1,29 @@
+relayable_retraction,$msg);
}
elseif($xmlbase->photo) {
- $ret = diaspora_photo($importer,$xmlbase->photo,$msg);
+ $ret = diaspora_photo($importer,$xmlbase->photo,$msg,$attempt);
}
elseif($xmlbase->conversation) {
$ret = diaspora_conversation($importer,$xmlbase->conversation,$msg);
@@ -1669,7 +1671,7 @@ function diaspora_message($importer,$xml,$msg) {
}
-function diaspora_photo($importer,$xml,$msg) {
+function diaspora_photo($importer,$xml,$msg,$attempt=1) {
$a = get_app();
@@ -1707,7 +1709,14 @@ function diaspora_photo($importer,$xml,$msg) {
dbesc($status_message_guid)
);
if(! count($r)) {
- logger('diaspora_photo: parent item not found: parent: ' . $parent_guid . ' item: ' . $guid);
+ if($attempt <= 3) {
+ q("INSERT INTO dsprphotoq (uid, msg, attempt) VALUES (%d, '%s', %d)",
+ intval($importer['uid']),
+ dbesc(serialize($msg)),
+ intval($attempt + 1)
+ );
+ }
+ logger('diaspora_photo: attempt = ' . $attempt . '; status message not found: ' . $status_message_guid . ' for photo: ' . $guid);
return;
}
@@ -2333,13 +2342,15 @@ function diaspora_send_followup($item,$owner,$contact,$public_batch = false) {
$myaddr = $owner['nickname'] . '@' . substr($a->get_baseurl(), strpos($a->get_baseurl(),'://') + 3);
// $theiraddr = $contact['addr'];
- // Diaspora doesn't support threaded comments
- /*if($item['thr-parent']) {
+ // Diaspora doesn't support threaded comments, but some
+ // versions of Diaspora (i.e. Diaspora-pistos) support
+ // likes on comments
+ if($item['verb'] === ACTIVITY_LIKE && $item['thr-parent']) {
$p = q("select guid, type, uri, `parent-uri` from item where uri = '%s' limit 1",
dbesc($item['thr-parent'])
);
}
- else {*/
+ else {
// The first item in the `item` table with the parent id is the parent. However, MySQL doesn't always
// return the items ordered by `item`.`id`, in which case the wrong item is chosen as the parent.
// The only item with `parent` and `id` as the parent id is the parent item.
@@ -2347,7 +2358,7 @@ function diaspora_send_followup($item,$owner,$contact,$public_batch = false) {
intval($item['parent']),
intval($item['parent'])
);
- //}
+ }
if(count($p))
$parent = $p[0];
else
@@ -2409,13 +2420,15 @@ function diaspora_send_relay($item,$owner,$contact,$public_batch = false) {
$body = $item['body'];
$text = html_entity_decode(bb2diaspora($body));
- // Diaspora doesn't support threaded comments
- /*if($item['thr-parent']) {
+ // Diaspora doesn't support threaded comments, but some
+ // versions of Diaspora (i.e. Diaspora-pistos) support
+ // likes on comments
+ if($item['verb'] === ACTIVITY_LIKE && $item['thr-parent']) {
$p = q("select guid, type, uri, `parent-uri` from item where uri = '%s' limit 1",
dbesc($item['thr-parent'])
);
}
- else {*/
+ else {
// The first item in the `item` table with the parent id is the parent. However, MySQL doesn't always
// return the items ordered by `item`.`id`, in which case the wrong item is chosen as the parent.
// The only item with `parent` and `id` as the parent id is the parent item.
@@ -2423,7 +2436,7 @@ function diaspora_send_relay($item,$owner,$contact,$public_batch = false) {
intval($item['parent']),
intval($item['parent'])
);
- //}
+ }
if(count($p))
$parent = $p[0];
else
diff --git a/include/dsprphotoq.php b/include/dsprphotoq.php
new file mode 100644
index 000000000..06e733d79
--- /dev/null
+++ b/include/dsprphotoq.php
@@ -0,0 +1,50 @@
+\n" .
- "Reply-To: {$params['fromName']} <{$params['replyTo']}>\n" .
+ "From: $fromName <{$params['fromEmail']}>\n" .
+ "Reply-To: $fromName <{$params['replyTo']}>\n" .
"MIME-Version: 1.0\n" .
"Content-Type: multipart/alternative; boundary=\"{$mimeBoundary}\"";
@@ -493,7 +493,7 @@ class enotify {
// send the message
$res = mail(
$params['toEmail'], // send to address
- $params['messageSubject'], // subject
+ $messageSubject, // subject
$multipartMessageBody, // message body
$messageHeader // message headers
);
diff --git a/include/friendica_smarty.php b/include/friendica_smarty.php
index 9ad14ad8a..b3f0d18a0 100644
--- a/include/friendica_smarty.php
+++ b/include/friendica_smarty.php
@@ -24,8 +24,11 @@ class FriendicaSmarty extends Smarty {
$this->setConfigDir('view/smarty3/config/');
$this->setCacheDir('view/smarty3/cache/');
- $this->left_delimiter = $a->smarty3_ldelim;
- $this->right_delimiter = $a->smarty3_rdelim;
+ $this->left_delimiter = $a->get_template_ldelim('smarty3');
+ $this->right_delimiter = $a->get_template_rdelim('smarty3');
+
+ // Don't report errors so verbosely
+ $this->error_reporting = E_ALL & ~E_NOTICE;
}
function parsed($template = '') {
diff --git a/include/html2plain.php b/include/html2plain.php
index bafaadd8d..572f9714a 100644
--- a/include/html2plain.php
+++ b/include/html2plain.php
@@ -209,7 +209,7 @@ function html2plain($html, $wraplength = 75, $compact = false)
if (!$compact) {
$counter = 1;
foreach ($urls as $id=>$url)
- if (strpos($message, $url) == false)
+ if (strpos($message, $url) === false)
$message .= "\n".$url." ";
//$message .= "\n[".($counter++)."] ".$url;
}
diff --git a/include/items.php b/include/items.php
index b93f56e17..54b392b38 100755
--- a/include/items.php
+++ b/include/items.php
@@ -6,6 +6,8 @@ require_once('include/salmon.php');
require_once('include/crypto.php');
require_once('include/Photo.php');
require_once('include/tags.php');
+require_once('include/text.php');
+require_once('include/email.php');
function get_feed_for(&$a, $dfrn_id, $owner_nick, $last_update, $direction = 0) {
@@ -238,7 +240,7 @@ function construct_activity_object($item) {
$r->link = str_replace('&','&', $r->link);
$r->link = preg_replace('/\/','',$r->link);
$o .= $r->link;
- }
+ }
else
$o .= '' . "\r\n";
}
@@ -270,7 +272,7 @@ function construct_activity_target($item) {
$r->link = str_replace('&','&', $r->link);
$r->link = preg_replace('/\/','',$r->link);
$o .= $r->link;
- }
+ }
else
$o .= '' . "\r\n";
}
@@ -882,7 +884,7 @@ function item_store($arr,$force_parent = false) {
$arr['gravity'] = 0;
elseif(activity_match($arr['verb'],ACTIVITY_POST))
$arr['gravity'] = 6;
- else
+ else
$arr['gravity'] = 6; // extensible catchall
if(! x($arr,'type'))
@@ -1072,10 +1074,9 @@ function item_store($arr,$force_parent = false) {
if(count($r)) {
$current_post = $r[0]['id'];
- create_tags_from_item($r[0]['id']);
logger('item_store: created item ' . $current_post);
- }
- else {
+ create_tags_from_item($r[0]['id']);
+ } else {
logger('item_store: could not locate created item');
return 0;
}
@@ -1153,6 +1154,15 @@ function item_store($arr,$force_parent = false) {
tag_deliver($arr['uid'],$current_post);
+ // Store the fresh generated item into the cache
+ $cachefile = get_cachefile($arr["guid"]."-".hash("md5", $arr['body']));
+
+ if (($cachefile != '') AND !file_exists($cachefile)) {
+ $s = prepare_text($arr['body']);
+ file_put_contents($cachefile, $s);
+ logger('item_store: put item '.$current_post.' into cachefile '.$cachefile);
+ }
+
return $current_post;
}
@@ -3401,9 +3411,9 @@ function new_follower($importer,$contact,$datarray,$item,$sharing = false) {
'$sitename' => $a->config['sitename']
));
$res = mail($r[0]['email'],
- (($sharing) ? t('A new person is sharing with you at ') : t("You have a new follower at ")) . $a->config['sitename'],
+ email_header_encode((($sharing) ? t('A new person is sharing with you at ') : t("You have a new follower at ")) . $a->config['sitename'],'UTF-8'),
$email,
- 'From: ' . t('Administrator') . '@' . $_SERVER['SERVER_NAME'] . "\n"
+ 'From: ' . 'Administrator' . '@' . $_SERVER['SERVER_NAME'] . "\n"
. 'Content-type: text/plain; charset=UTF-8' . "\n"
. 'Content-transfer-encoding: 8bit' );
@@ -3763,11 +3773,11 @@ function item_getfeedtags($item) {
function item_getfeedattach($item) {
$ret = '';
- $arr = explode(',',$item['attach']);
+ $arr = explode('[/attach],',$item['attach']);
if(count($arr)) {
foreach($arr as $r) {
$matches = false;
- $cnt = preg_match('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"\[\/attach\]|',$r,$matches);
+ $cnt = preg_match('|\[attach\]href=\"(.*?)\" length=\"(.*?)\" type=\"(.*?)\" title=\"(.*?)\"|',$r,$matches);
if($cnt) {
$ret .= 'get_baseurl()."/search?tag=";
- $messages = q("SELECT `uri`, `uid`, `id`, `created`, `edited`, `commented`, `received`, `changed`, `deleted`, `title`, `body`, `tag` FROM `item` WHERE `id` = %d LIMIT 1", intval($itemid));
+ $messages = q("SELECT `guid`, `uid`, `id`, `edited`, `deleted`, `title`, `body`, `tag` FROM `item` WHERE `id` = %d LIMIT 1", intval($itemid));
if (!$messages)
return;
@@ -42,6 +42,14 @@ function create_tags_from_item($itemid) {
if ($message["deleted"])
return;
+ $cachefile = get_cachefile($message["guid"]."-".hash("md5", $message['body']));
+
+ if (($cachefile != '') AND !file_exists($cachefile)) {
+ $s = prepare_text($message['body']);
+ file_put_contents($cachefile, $s);
+ logger('create_tags_from_item: put item '.$message["id"].' into cachefile '.$cachefile);
+ }
+
$taglist = explode(",", $message["tag"]);
$tags = "";
diff --git a/include/text.php b/include/text.php
index 5b64ef2f9..53dd06d1f 100644
--- a/include/text.php
+++ b/include/text.php
@@ -23,7 +23,6 @@ function replace_macros($s,$r) {
if(gettype($s) === 'string') {
$template = $s;
$s = new FriendicaSmarty();
- $s->error_reporting = E_ALL & ~E_NOTICE;
}
foreach($r as $key=>$value) {
if($key[0] === '$') {
@@ -490,12 +489,12 @@ function get_template_file($a, $filename, $root = '') {
if($root !== '' && $root[strlen($root)-1] !== '/')
$root = $root . '/';
- if(file_exists($root . "view/theme/$theme/$filename"))
- $template_file = $root . "view/theme/$theme/$filename";
- elseif (x($a->theme_info,"extends") && file_exists($root . "view/theme/".$a->theme_info["extends"]."/$filename"))
- $template_file = $root . "view/theme/".$a->theme_info["extends"]."/$filename";
+ if(file_exists("{$root}view/theme/$theme/$filename"))
+ $template_file = "{$root}view/theme/$theme/$filename";
+ elseif (x($a->theme_info,"extends") && file_exists("{$root}view/theme/{$a->theme_info["extends"]}/$filename"))
+ $template_file = "{$root}view/theme/{$a->theme_info["extends"]}/$filename";
else
- $template_file = $root . "view/$filename";
+ $template_file = "{$root}view/$filename";
return $template_file;
}}
@@ -1019,7 +1018,8 @@ function prepare_body($item,$attach = false) {
$a = get_app();
call_hooks('prepare_body_init', $item);
- $cachefile = get_cachefile($item["guid"]."-".strtotime($item["edited"])."-".hash("crc32", $item['body']));
+ //$cachefile = get_cachefile($item["guid"]."-".strtotime($item["edited"])."-".hash("crc32", $item['body']));
+ $cachefile = get_cachefile($item["guid"]."-".hash("md5", $item['body']));
if (($cachefile != '')) {
if (file_exists($cachefile))
@@ -1027,6 +1027,7 @@ function prepare_body($item,$attach = false) {
else {
$s = prepare_text($item['body']);
file_put_contents($cachefile, $s);
+ logger('prepare_body: put item '.$item["id"].' into cachefile '.$cachefile);
}
} else
$s = prepare_text($item['body']);
@@ -1043,13 +1044,13 @@ function prepare_body($item,$attach = false) {
return $s;
}
- $arr = explode(',',$item['attach']);
+ $arr = explode('[/attach],',$item['attach']);
if(count($arr)) {
$s .= '
{{ endif }}
diff --git a/view/is/smarty3/follow_notify_eml.tpl b/view/is/smarty3/follow_notify_eml.tpl
index 127f05a45..e96380112 100644
--- a/view/is/smarty3/follow_notify_eml.tpl
+++ b/view/is/smarty3/follow_notify_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Góðan daginn {{$myname}},
diff --git a/view/is/smarty3/friend_complete_eml.tpl b/view/is/smarty3/friend_complete_eml.tpl
index 1bc440269..5bdbeff51 100644
--- a/view/is/smarty3/friend_complete_eml.tpl
+++ b/view/is/smarty3/friend_complete_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Góðan daginn {{$username}},
diff --git a/view/is/smarty3/intro_complete_eml.tpl b/view/is/smarty3/intro_complete_eml.tpl
index bbf86cf15..11b6bbd46 100644
--- a/view/is/smarty3/intro_complete_eml.tpl
+++ b/view/is/smarty3/intro_complete_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Góðan daginn {{$username}},
diff --git a/view/is/smarty3/lostpass_eml.tpl b/view/is/smarty3/lostpass_eml.tpl
index d2010ac8f..a6f83ed51 100644
--- a/view/is/smarty3/lostpass_eml.tpl
+++ b/view/is/smarty3/lostpass_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Góðan dag {{$username}},
Beiðni barst á {{$sitename}} um að endursetja
diff --git a/view/is/smarty3/passchanged_eml.tpl b/view/is/smarty3/passchanged_eml.tpl
index c19551208..6d08a0763 100644
--- a/view/is/smarty3/passchanged_eml.tpl
+++ b/view/is/smarty3/passchanged_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Góðan daginn {{$username}},
Lykilorð þínu hefur verið breytt einsog umbeðið var. Endilega geyma þessar
diff --git a/view/is/smarty3/register_open_eml.tpl b/view/is/smarty3/register_open_eml.tpl
index 0673224d1..8ab04b3ae 100644
--- a/view/is/smarty3/register_open_eml.tpl
+++ b/view/is/smarty3/register_open_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Góðan daginn {{$username}},
Takk fyrir að skrá þig á {{$sitename}}. Notandinn þinn hefur verið stofnaður.
diff --git a/view/is/smarty3/register_verify_eml.tpl b/view/is/smarty3/register_verify_eml.tpl
index cf6362c4b..1e6060df9 100644
--- a/view/is/smarty3/register_verify_eml.tpl
+++ b/view/is/smarty3/register_verify_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Beiðni um nýjan notanda barst {{$sitename}} sem krefst
þíns samþykkis.
diff --git a/view/is/smarty3/request_notify_eml.tpl b/view/is/smarty3/request_notify_eml.tpl
index 36d8f217a..6ecec12f3 100644
--- a/view/is/smarty3/request_notify_eml.tpl
+++ b/view/is/smarty3/request_notify_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Góðan dag {{$myname}},
diff --git a/view/is/smarty3/update_fail_eml.tpl b/view/is/smarty3/update_fail_eml.tpl
index 201f87131..227ee288b 100644
--- a/view/is/smarty3/update_fail_eml.tpl
+++ b/view/is/smarty3/update_fail_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Hæ,
Ég er {{$sitename}}.
Þróunarteymi friendica gáfu nýlega út uppfærslu {{$update}},
diff --git a/view/it/smarty3/cmnt_received_eml.tpl b/view/it/smarty3/cmnt_received_eml.tpl
index f35dc3dc9..479c566de 100644
--- a/view/it/smarty3/cmnt_received_eml.tpl
+++ b/view/it/smarty3/cmnt_received_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Caro/a {{$username}},
diff --git a/view/it/smarty3/cmnt_received_html_body_eml.tpl b/view/it/smarty3/cmnt_received_html_body_eml.tpl
index 80d611807..356e3bc48 100644
--- a/view/it/smarty3/cmnt_received_html_body_eml.tpl
+++ b/view/it/smarty3/cmnt_received_html_body_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
diff --git a/view/it/smarty3/cmnt_received_text_body_eml.tpl b/view/it/smarty3/cmnt_received_text_body_eml.tpl
index f35dc3dc9..479c566de 100644
--- a/view/it/smarty3/cmnt_received_text_body_eml.tpl
+++ b/view/it/smarty3/cmnt_received_text_body_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Caro/a {{$username}},
diff --git a/view/it/smarty3/follow_notify_eml.tpl b/view/it/smarty3/follow_notify_eml.tpl
index 0bfc37552..925d5b2d0 100644
--- a/view/it/smarty3/follow_notify_eml.tpl
+++ b/view/it/smarty3/follow_notify_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Ciao {{$myname}},
diff --git a/view/it/smarty3/friend_complete_eml.tpl b/view/it/smarty3/friend_complete_eml.tpl
index daeaae901..667a1f445 100644
--- a/view/it/smarty3/friend_complete_eml.tpl
+++ b/view/it/smarty3/friend_complete_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Ciao {{$username}},
diff --git a/view/it/smarty3/htconfig.tpl b/view/it/smarty3/htconfig.tpl
index 5696245c7..f5796445b 100644
--- a/view/it/smarty3/htconfig.tpl
+++ b/view/it/smarty3/htconfig.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
diff --git a/view/it/smarty3/mail_received_text_body_eml.tpl b/view/it/smarty3/mail_received_text_body_eml.tpl
index 79e133fce..3cb7b82d4 100644
--- a/view/it/smarty3/mail_received_text_body_eml.tpl
+++ b/view/it/smarty3/mail_received_text_body_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Hai ricevuto un nuovo messsaggio privato su {{$siteName}} da '{{$from}}'.
{{$title}}
diff --git a/view/it/smarty3/passchanged_eml.tpl b/view/it/smarty3/passchanged_eml.tpl
index 046588e1f..32970c9cb 100644
--- a/view/it/smarty3/passchanged_eml.tpl
+++ b/view/it/smarty3/passchanged_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Ciao {{$username}},
La tua password è cambiata come hai richiesto. Conserva queste
diff --git a/view/it/smarty3/register_open_eml.tpl b/view/it/smarty3/register_open_eml.tpl
index 23dcaf2c8..e5f909af5 100644
--- a/view/it/smarty3/register_open_eml.tpl
+++ b/view/it/smarty3/register_open_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Ciao {{$username}},
Grazie per aver effettuato la registrazione a {{$sitename}}. Il tuo account è stato creato.
diff --git a/view/it/smarty3/register_verify_eml.tpl b/view/it/smarty3/register_verify_eml.tpl
index 743370b3d..9ce1f8f00 100644
--- a/view/it/smarty3/register_verify_eml.tpl
+++ b/view/it/smarty3/register_verify_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Su {{$sitename}} è stata ricevuta una nuova richiesta di registrazione da parte di un utente che richiede
la tua approvazione.
diff --git a/view/it/smarty3/request_notify_eml.tpl b/view/it/smarty3/request_notify_eml.tpl
index df3a7323c..47240c5a3 100644
--- a/view/it/smarty3/request_notify_eml.tpl
+++ b/view/it/smarty3/request_notify_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Ciao {{$myname}},
diff --git a/view/it/smarty3/wall_received_eml.tpl b/view/it/smarty3/wall_received_eml.tpl
index 909ec86d4..30b53d11e 100644
--- a/view/it/smarty3/wall_received_eml.tpl
+++ b/view/it/smarty3/wall_received_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Caro/a {{$username}},
diff --git a/view/it/smarty3/wall_received_html_body_eml.tpl b/view/it/smarty3/wall_received_html_body_eml.tpl
index 3fa724c3b..8096fed22 100644
--- a/view/it/smarty3/wall_received_html_body_eml.tpl
+++ b/view/it/smarty3/wall_received_html_body_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
diff --git a/view/it/smarty3/wall_received_text_body_eml.tpl b/view/it/smarty3/wall_received_text_body_eml.tpl
index ad7f83abc..2031744a6 100644
--- a/view/it/smarty3/wall_received_text_body_eml.tpl
+++ b/view/it/smarty3/wall_received_text_body_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Caro {{$username}},
diff --git a/view/mail_display.tpl b/view/mail_display.tpl
index 396aa46c0..b328d32a2 100644
--- a/view/mail_display.tpl
+++ b/view/mail_display.tpl
@@ -1,6 +1,6 @@
-{{ for $mails as $mail_item }}
- {{ inc mail_conv.tpl with $mail=$mail_item }}{{endinc}}
+{{ for $mails as $mail }}
+ {{ inc mail_conv.tpl }}{{endinc}}
{{ endfor }}
{{ if $canreply }}
diff --git a/view/maintenance.tpl b/view/maintenance.tpl
new file mode 100644
index 000000000..bbe15d46a
--- /dev/null
+++ b/view/maintenance.tpl
@@ -0,0 +1 @@
+
$sysdown
diff --git a/view/nb-no/smarty3/follow_notify_eml.tpl b/view/nb-no/smarty3/follow_notify_eml.tpl
index 094539cf5..eedeef85d 100644
--- a/view/nb-no/smarty3/follow_notify_eml.tpl
+++ b/view/nb-no/smarty3/follow_notify_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Kjære {{$myname}},
diff --git a/view/nb-no/smarty3/friend_complete_eml.tpl b/view/nb-no/smarty3/friend_complete_eml.tpl
index 17cc38a8c..f8348c51d 100644
--- a/view/nb-no/smarty3/friend_complete_eml.tpl
+++ b/view/nb-no/smarty3/friend_complete_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Kjære {{$username}},
diff --git a/view/nb-no/smarty3/intro_complete_eml.tpl b/view/nb-no/smarty3/intro_complete_eml.tpl
index edf699936..e00d99f8b 100644
--- a/view/nb-no/smarty3/intro_complete_eml.tpl
+++ b/view/nb-no/smarty3/intro_complete_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Kjære {{$username}},
diff --git a/view/nb-no/smarty3/lostpass_eml.tpl b/view/nb-no/smarty3/lostpass_eml.tpl
index e0f335ff1..11ef4aab7 100644
--- a/view/nb-no/smarty3/lostpass_eml.tpl
+++ b/view/nb-no/smarty3/lostpass_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Kjære {{$username}},
En forespørsel ble nylig mottatt hos {{$sitename}} om å tilbakestille din kontos
diff --git a/view/nb-no/smarty3/passchanged_eml.tpl b/view/nb-no/smarty3/passchanged_eml.tpl
index 2d3144bc5..d5137fc47 100644
--- a/view/nb-no/smarty3/passchanged_eml.tpl
+++ b/view/nb-no/smarty3/passchanged_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Kjære {{$username}},
Ditt passord har blitt endret som forespurt. Vennligst ta vare på denne
diff --git a/view/nb-no/smarty3/register_open_eml.tpl b/view/nb-no/smarty3/register_open_eml.tpl
index 7fe8e5983..43b150da8 100644
--- a/view/nb-no/smarty3/register_open_eml.tpl
+++ b/view/nb-no/smarty3/register_open_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Kjære {{$username}},
Takk for at du registrerte deg hos {{$sitename}}. Kontoen din er opprettet.
diff --git a/view/nb-no/smarty3/register_verify_eml.tpl b/view/nb-no/smarty3/register_verify_eml.tpl
index 9efb9b08b..4b765885e 100644
--- a/view/nb-no/smarty3/register_verify_eml.tpl
+++ b/view/nb-no/smarty3/register_verify_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
En ny forespørsel om brukerregistering ble mottatt hos {{$sitename}} og krever
din godkjenning.
diff --git a/view/nb-no/smarty3/request_notify_eml.tpl b/view/nb-no/smarty3/request_notify_eml.tpl
index ae89c6141..9851b4f17 100644
--- a/view/nb-no/smarty3/request_notify_eml.tpl
+++ b/view/nb-no/smarty3/request_notify_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Kjære {{$myname}},
diff --git a/view/nb-no/smarty3/update_fail_eml.tpl b/view/nb-no/smarty3/update_fail_eml.tpl
index 1116f2cd7..771d4b97f 100644
--- a/view/nb-no/smarty3/update_fail_eml.tpl
+++ b/view/nb-no/smarty3/update_fail_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Hei,
jeg er {{$sitename}}.
Friendica-utviklerne slapp nylig oppdateringen {{$update}},
diff --git a/view/nogroup-template.tpl b/view/nogroup-template.tpl
index f27f158f5..dd00ed097 100644
--- a/view/nogroup-template.tpl
+++ b/view/nogroup-template.tpl
@@ -1,7 +1,7 @@
$header
-{{ for $contacts as $c }}
- {{ inc contact_template.tpl with $contact=$c }}{{ endinc }}
+{{ for $contacts as $contact }}
+ {{ inc contact_template.tpl }}{{ endinc }}
{{ endfor }}
diff --git a/view/photos_recent.tpl b/view/photos_recent.tpl
index 7ae354024..1df78cb7b 100644
--- a/view/photos_recent.tpl
+++ b/view/photos_recent.tpl
@@ -4,8 +4,8 @@
{{ endif }}
-{{ for $photos as $ph }}
- {{ inc photo_top.tpl with $photo=$ph }}{{ endinc }}
+{{ for $photos as $photo }}
+ {{ inc photo_top.tpl }}{{ endinc }}
{{ endfor }}
diff --git a/view/pl/messages.po b/view/pl/messages.po
index 5f27256b0..adfcfb8c6 100644
--- a/view/pl/messages.po
+++ b/view/pl/messages.po
@@ -20,14 +20,14 @@
# , 2012.
# , 2012.
# , 2012.
-# , 2012.
+# , 2012-2013.
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
-"POT-Creation-Date: 2012-12-16 10:00-0800\n"
-"PO-Revision-Date: 2012-12-16 21:36+0000\n"
-"Last-Translator: abix_adamj \n"
+"POT-Creation-Date: 2013-01-01 10:00-0800\n"
+"PO-Revision-Date: 2013-01-03 18:25+0000\n"
+"Last-Translator: rcmaniac \n"
"Language-Team: Polish (http://www.transifex.com/projects/p/friendica/language/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@@ -58,8 +58,8 @@ msgstr "Nie udało się zaktualizować kontaktu."
#: ../../mod/api.php:31 ../../mod/photos.php:133 ../../mod/photos.php:995
#: ../../mod/editpost.php:10 ../../mod/install.php:151 ../../mod/poke.php:135
#: ../../mod/notifications.php:66 ../../mod/contacts.php:147
-#: ../../mod/settings.php:91 ../../mod/settings.php:541
-#: ../../mod/settings.php:546 ../../mod/manage.php:90 ../../mod/network.php:6
+#: ../../mod/settings.php:91 ../../mod/settings.php:542
+#: ../../mod/settings.php:547 ../../mod/manage.php:90 ../../mod/network.php:6
#: ../../mod/notes.php:20 ../../mod/uimport.php:23 ../../mod/wallmessage.php:9
#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
#: ../../mod/wallmessage.php:103 ../../mod/attach.php:33
@@ -78,7 +78,7 @@ msgstr "Nie udało się zaktualizować kontaktu."
#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:166
#: ../../addon/fbpost/fbpost.php:172
#: ../../addon/dav/friendica/layout.fnk.php:354
-#: ../../addon/tumblr/tumblr.php:34 ../../include/items.php:3977
+#: ../../addon/tumblr/tumblr.php:34 ../../include/items.php:3987
#: ../../index.php:333 ../../addon.old/facebook/facebook.php:510
#: ../../addon.old/facebook/facebook.php:516
#: ../../addon.old/fbpost/fbpost.php:159 ../../addon.old/fbpost/fbpost.php:165
@@ -111,8 +111,8 @@ msgstr "Jeśli nie jesteś pewien, co zrobić na tej stronie, użyj tera
msgid "Return to contact editor"
msgstr "Wróć do edytora kontaktów"
-#: ../../mod/crepair.php:148 ../../mod/settings.php:561
-#: ../../mod/settings.php:587 ../../mod/admin.php:695 ../../mod/admin.php:705
+#: ../../mod/crepair.php:148 ../../mod/settings.php:562
+#: ../../mod/settings.php:588 ../../mod/admin.php:731 ../../mod/admin.php:741
msgid "Name"
msgstr "Imię"
@@ -149,18 +149,18 @@ msgid "New photo from this URL"
msgstr "Nowe zdjęcie z tej ścieżki"
#: ../../mod/crepair.php:166 ../../mod/fsuggest.php:107
-#: ../../mod/events.php:455 ../../mod/photos.php:1028
-#: ../../mod/photos.php:1100 ../../mod/photos.php:1363
-#: ../../mod/photos.php:1403 ../../mod/photos.php:1447
-#: ../../mod/photos.php:1519 ../../mod/install.php:246
-#: ../../mod/install.php:284 ../../mod/localtime.php:45 ../../mod/poke.php:199
-#: ../../mod/content.php:693 ../../mod/contacts.php:352
-#: ../../mod/settings.php:559 ../../mod/settings.php:669
-#: ../../mod/settings.php:738 ../../mod/settings.php:810
-#: ../../mod/settings.php:1017 ../../mod/group.php:85 ../../mod/mood.php:137
-#: ../../mod/message.php:301 ../../mod/message.php:487 ../../mod/admin.php:445
-#: ../../mod/admin.php:692 ../../mod/admin.php:829 ../../mod/admin.php:1028
-#: ../../mod/admin.php:1115 ../../mod/profiles.php:604
+#: ../../mod/events.php:466 ../../mod/photos.php:1028
+#: ../../mod/photos.php:1118 ../../mod/photos.php:1402
+#: ../../mod/photos.php:1442 ../../mod/photos.php:1486
+#: ../../mod/photos.php:1569 ../../mod/install.php:248
+#: ../../mod/install.php:286 ../../mod/localtime.php:45 ../../mod/poke.php:199
+#: ../../mod/content.php:710 ../../mod/contacts.php:352
+#: ../../mod/settings.php:560 ../../mod/settings.php:670
+#: ../../mod/settings.php:739 ../../mod/settings.php:811
+#: ../../mod/settings.php:1018 ../../mod/group.php:87 ../../mod/mood.php:137
+#: ../../mod/message.php:301 ../../mod/message.php:527 ../../mod/admin.php:461
+#: ../../mod/admin.php:728 ../../mod/admin.php:865 ../../mod/admin.php:1064
+#: ../../mod/admin.php:1151 ../../mod/profiles.php:604
#: ../../mod/invite.php:119 ../../addon/fromgplus/fromgplus.php:44
#: ../../addon/facebook/facebook.php:619
#: ../../addon/snautofollow/snautofollow.php:64
@@ -169,8 +169,8 @@ msgstr "Nowe zdjęcie z tej ścieżki"
#: ../../addon/page/page.php:211 ../../addon/planets/planets.php:158
#: ../../addon/uhremotestorage/uhremotestorage.php:89
#: ../../addon/randplace/randplace.php:177 ../../addon/dwpost/dwpost.php:93
-#: ../../addon/remote_permissions/remote_permissions.php:47
-#: ../../addon/remote_permissions/remote_permissions.php:195
+#: ../../addon/remote_permissions/remote_permissions.php:48
+#: ../../addon/remote_permissions/remote_permissions.php:196
#: ../../addon/startpage/startpage.php:92
#: ../../addon/geonames/geonames.php:187
#: ../../addon/forumlist/forumlist.php:178
@@ -182,7 +182,7 @@ msgstr "Nowe zdjęcie z tej ścieżki"
#: ../../addon/libravatar/libravatar.php:99
#: ../../addon/libertree/libertree.php:90 ../../addon/altpager/altpager.php:91
#: ../../addon/altpager/altpager.php:98 ../../addon/mathjax/mathjax.php:42
-#: ../../addon/editplain/editplain.php:84 ../../addon/blackout/blackout.php:98
+#: ../../addon/editplain/editplain.php:84 ../../addon/blackout/blackout.php:99
#: ../../addon/gravatar/gravatar.php:95
#: ../../addon/pageheader/pageheader.php:55 ../../addon/ijpost/ijpost.php:93
#: ../../addon/jappixmini/jappixmini.php:307
@@ -191,18 +191,18 @@ msgstr "Nowe zdjęcie z tej ścieżki"
#: ../../addon/statusnet/statusnet.php:318
#: ../../addon/statusnet/statusnet.php:325
#: ../../addon/statusnet/statusnet.php:353
-#: ../../addon/statusnet/statusnet.php:700 ../../addon/tumblr/tumblr.php:233
+#: ../../addon/statusnet/statusnet.php:703 ../../addon/tumblr/tumblr.php:233
#: ../../addon/numfriends/numfriends.php:85 ../../addon/gnot/gnot.php:88
#: ../../addon/wppost/wppost.php:110 ../../addon/showmore/showmore.php:48
#: ../../addon/piwik/piwik.php:89 ../../addon/twitter/twitter.php:180
-#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:506
+#: ../../addon/twitter/twitter.php:209 ../../addon/twitter/twitter.php:515
#: ../../addon/irc/irc.php:55 ../../addon/fromapp/fromapp.php:77
#: ../../addon/blogger/blogger.php:102 ../../addon/posterous/posterous.php:103
#: ../../view/theme/cleanzero/config.php:80
-#: ../../view/theme/diabook/theme.php:642
+#: ../../view/theme/diabook/theme.php:643
#: ../../view/theme/diabook/config.php:152
#: ../../view/theme/quattro/config.php:64 ../../view/theme/dispy/config.php:70
-#: ../../object/Item.php:577 ../../addon.old/fromgplus/fromgplus.php:40
+#: ../../object/Item.php:603 ../../addon.old/fromgplus/fromgplus.php:40
#: ../../addon.old/facebook/facebook.php:619
#: ../../addon.old/snautofollow/snautofollow.php:64
#: ../../addon.old/bg/bg.php:90 ../../addon.old/fbpost/fbpost.php:226
@@ -302,86 +302,87 @@ msgstr "d, M d "
msgid "Edit event"
msgstr "Edytuj wydarzenie"
-#: ../../mod/events.php:323 ../../include/text.php:1190
+#: ../../mod/events.php:323 ../../include/text.php:1247
msgid "link to source"
msgstr "link do źródła"
-#: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:91
-#: ../../include/nav.php:52 ../../boot.php:1748
+#: ../../mod/events.php:358 ../../view/theme/diabook/theme.php:92
+#: ../../include/nav.php:52 ../../boot.php:1791
msgid "Events"
msgstr "Wydarzenia"
-#: ../../mod/events.php:348
+#: ../../mod/events.php:359
msgid "Create New Event"
msgstr "Stwórz nowe wydarzenie"
-#: ../../mod/events.php:349 ../../addon/dav/friendica/layout.fnk.php:263
+#: ../../mod/events.php:360 ../../addon/dav/friendica/layout.fnk.php:263
#: ../../addon.old/dav/friendica/layout.fnk.php:263
msgid "Previous"
msgstr "Poprzedni"
-#: ../../mod/events.php:350 ../../mod/install.php:205
+#: ../../mod/events.php:361 ../../mod/install.php:207
#: ../../addon/dav/friendica/layout.fnk.php:266
#: ../../addon.old/dav/friendica/layout.fnk.php:266
msgid "Next"
msgstr "Następny"
-#: ../../mod/events.php:423
+#: ../../mod/events.php:434
msgid "hour:minute"
msgstr "godzina:minuta"
-#: ../../mod/events.php:433
+#: ../../mod/events.php:444
msgid "Event details"
msgstr "Szczegóły wydarzenia"
-#: ../../mod/events.php:434
+#: ../../mod/events.php:445
#, php-format
msgid "Format is %s %s. Starting date and Title are required."
msgstr ""
-#: ../../mod/events.php:436
+#: ../../mod/events.php:447
msgid "Event Starts:"
msgstr "Rozpoczęcie wydarzenia:"
-#: ../../mod/events.php:436 ../../mod/events.php:450
+#: ../../mod/events.php:447 ../../mod/events.php:461
msgid "Required"
msgstr "Wymagany"
-#: ../../mod/events.php:439
+#: ../../mod/events.php:450
msgid "Finish date/time is not known or not relevant"
msgstr "Data/czas zakończenia nie jest znana lub jest nieistotna"
-#: ../../mod/events.php:441
+#: ../../mod/events.php:452
msgid "Event Finishes:"
msgstr "Zakończenie wydarzenia:"
-#: ../../mod/events.php:444
+#: ../../mod/events.php:455
msgid "Adjust for viewer timezone"
msgstr ""
-#: ../../mod/events.php:446
+#: ../../mod/events.php:457
msgid "Description:"
msgstr "Opis:"
-#: ../../mod/events.php:448 ../../mod/directory.php:134
+#: ../../mod/events.php:459 ../../mod/directory.php:134
#: ../../addon/forumdirectory/forumdirectory.php:156
-#: ../../include/event.php:40 ../../include/bb2diaspora.php:412
-#: ../../boot.php:1278
+#: ../../include/event.php:40 ../../include/bb2diaspora.php:415
+#: ../../boot.php:1312
msgid "Location:"
msgstr "Lokalizacja"
-#: ../../mod/events.php:450
+#: ../../mod/events.php:461
msgid "Title:"
msgstr "Tytuł:"
-#: ../../mod/events.php:452
+#: ../../mod/events.php:463
msgid "Share this event"
msgstr "Udostępnij te wydarzenie"
#: ../../mod/tagrm.php:11 ../../mod/tagrm.php:94 ../../mod/editpost.php:145
-#: ../../mod/dfrn_request.php:847 ../../mod/settings.php:560
-#: ../../mod/settings.php:586 ../../addon/js_upload/js_upload.php:45
-#: ../../include/conversation.php:1009
+#: ../../mod/dfrn_request.php:848 ../../mod/settings.php:561
+#: ../../mod/settings.php:587 ../../mod/fbrowser.php:81
+#: ../../mod/fbrowser.php:116 ../../addon/js_upload/js_upload.php:45
+#: ../../include/conversation.php:1045
#: ../../addon.old/js_upload/js_upload.php:45
msgid "Cancel"
msgstr "Anuluj"
@@ -427,44 +428,44 @@ msgid ""
" and/or create new posts for you?"
msgstr "Czy chcesz umożliwić tej aplikacji dostęp do Twoich wpisów, kontaktów oraz pozwolić jej na pisanie za Ciebie postów?"
-#: ../../mod/api.php:105 ../../mod/dfrn_request.php:835
-#: ../../mod/settings.php:933 ../../mod/settings.php:939
-#: ../../mod/settings.php:947 ../../mod/settings.php:951
-#: ../../mod/settings.php:956 ../../mod/settings.php:962
-#: ../../mod/settings.php:968 ../../mod/settings.php:974
-#: ../../mod/settings.php:1004 ../../mod/settings.php:1005
-#: ../../mod/settings.php:1006 ../../mod/settings.php:1007
-#: ../../mod/settings.php:1008 ../../mod/register.php:237
+#: ../../mod/api.php:105 ../../mod/dfrn_request.php:836
+#: ../../mod/settings.php:934 ../../mod/settings.php:940
+#: ../../mod/settings.php:948 ../../mod/settings.php:952
+#: ../../mod/settings.php:957 ../../mod/settings.php:963
+#: ../../mod/settings.php:969 ../../mod/settings.php:975
+#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
+#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
+#: ../../mod/settings.php:1009 ../../mod/register.php:237
#: ../../mod/profiles.php:584
msgid "Yes"
msgstr "Tak"
-#: ../../mod/api.php:106 ../../mod/dfrn_request.php:836
-#: ../../mod/settings.php:933 ../../mod/settings.php:939
-#: ../../mod/settings.php:947 ../../mod/settings.php:951
-#: ../../mod/settings.php:956 ../../mod/settings.php:962
-#: ../../mod/settings.php:968 ../../mod/settings.php:974
-#: ../../mod/settings.php:1004 ../../mod/settings.php:1005
-#: ../../mod/settings.php:1006 ../../mod/settings.php:1007
-#: ../../mod/settings.php:1008 ../../mod/register.php:238
+#: ../../mod/api.php:106 ../../mod/dfrn_request.php:837
+#: ../../mod/settings.php:934 ../../mod/settings.php:940
+#: ../../mod/settings.php:948 ../../mod/settings.php:952
+#: ../../mod/settings.php:957 ../../mod/settings.php:963
+#: ../../mod/settings.php:969 ../../mod/settings.php:975
+#: ../../mod/settings.php:1005 ../../mod/settings.php:1006
+#: ../../mod/settings.php:1007 ../../mod/settings.php:1008
+#: ../../mod/settings.php:1009 ../../mod/register.php:238
#: ../../mod/profiles.php:585
msgid "No"
msgstr "Nie"
-#: ../../mod/photos.php:51 ../../boot.php:1741
+#: ../../mod/photos.php:51 ../../boot.php:1784
msgid "Photo Albums"
msgstr "Albumy zdjęć"
#: ../../mod/photos.php:59 ../../mod/photos.php:154 ../../mod/photos.php:1009
-#: ../../mod/photos.php:1092 ../../mod/photos.php:1107
-#: ../../mod/photos.php:1562 ../../mod/photos.php:1574
-#: ../../addon/communityhome/communityhome.php:110
-#: ../../view/theme/diabook/theme.php:492
+#: ../../mod/photos.php:1102 ../../mod/photos.php:1125
+#: ../../mod/photos.php:1626 ../../mod/photos.php:1638
+#: ../../addon/communityhome/communityhome.php:112
+#: ../../view/theme/diabook/theme.php:493
#: ../../addon.old/communityhome/communityhome.php:110
msgid "Contact Photos"
msgstr "Zdjęcia kontaktu"
-#: ../../mod/photos.php:66 ../../mod/photos.php:1123 ../../mod/photos.php:1612
+#: ../../mod/photos.php:66 ../../mod/photos.php:1141 ../../mod/photos.php:1685
msgid "Upload New Photos"
msgstr "Wyślij nowe zdjęcie"
@@ -476,13 +477,13 @@ msgstr "wszyscy"
msgid "Contact information unavailable"
msgstr "Informacje o kontakcie nie dostępne."
-#: ../../mod/photos.php:154 ../../mod/photos.php:676 ../../mod/photos.php:1092
-#: ../../mod/photos.php:1107 ../../mod/profile_photo.php:74
+#: ../../mod/photos.php:154 ../../mod/photos.php:676 ../../mod/photos.php:1102
+#: ../../mod/photos.php:1125 ../../mod/profile_photo.php:74
#: ../../mod/profile_photo.php:81 ../../mod/profile_photo.php:88
#: ../../mod/profile_photo.php:204 ../../mod/profile_photo.php:296
#: ../../mod/profile_photo.php:305
-#: ../../addon/communityhome/communityhome.php:111
-#: ../../view/theme/diabook/theme.php:493 ../../include/user.php:324
+#: ../../addon/communityhome/communityhome.php:113
+#: ../../view/theme/diabook/theme.php:494 ../../include/user.php:324
#: ../../include/user.php:331 ../../include/user.php:338
#: ../../addon.old/communityhome/communityhome.php:111
msgid "Profile Photos"
@@ -492,11 +493,11 @@ msgstr "Zdjęcia profilowe"
msgid "Album not found."
msgstr "Album nie znaleziony"
-#: ../../mod/photos.php:182 ../../mod/photos.php:1101
+#: ../../mod/photos.php:182 ../../mod/photos.php:1119
msgid "Delete Album"
msgstr "Usuń album"
-#: ../../mod/photos.php:245 ../../mod/photos.php:1364
+#: ../../mod/photos.php:245 ../../mod/photos.php:1403
msgid "Delete Photo"
msgstr "Usuń zdjęcie"
@@ -529,7 +530,7 @@ msgid "Image upload failed."
msgstr "Przesyłanie obrazu nie powiodło się"
#: ../../mod/photos.php:865 ../../mod/community.php:18
-#: ../../mod/dfrn_request.php:760 ../../mod/viewcontacts.php:17
+#: ../../mod/dfrn_request.php:761 ../../mod/viewcontacts.php:17
#: ../../mod/display.php:7 ../../mod/search.php:89 ../../mod/directory.php:31
#: ../../addon/forumdirectory/forumdirectory.php:53
msgid "Public access denied."
@@ -548,157 +549,157 @@ msgstr "Dostęp do tego obiektu jest ograniczony."
msgid "You have used %1$.2f Mbytes of %2$.2f Mbytes photo storage."
msgstr ""
-#: ../../mod/photos.php:1043
+#: ../../mod/photos.php:1053
msgid "Upload Photos"
msgstr "Prześlij zdjęcia"
-#: ../../mod/photos.php:1047 ../../mod/photos.php:1096
+#: ../../mod/photos.php:1057 ../../mod/photos.php:1114
msgid "New album name: "
msgstr "Nazwa nowego albumu:"
-#: ../../mod/photos.php:1048
+#: ../../mod/photos.php:1058
msgid "or existing album name: "
msgstr "lub istniejąca nazwa albumu:"
-#: ../../mod/photos.php:1049
+#: ../../mod/photos.php:1059
msgid "Do not show a status post for this upload"
msgstr ""
-#: ../../mod/photos.php:1051 ../../mod/photos.php:1359
+#: ../../mod/photos.php:1061 ../../mod/photos.php:1398
msgid "Permissions"
msgstr "Uprawnienia"
-#: ../../mod/photos.php:1111
+#: ../../mod/photos.php:1129
msgid "Edit Album"
msgstr "Edytuj album"
-#: ../../mod/photos.php:1117
+#: ../../mod/photos.php:1135
msgid "Show Newest First"
msgstr "Najpierw pokaż najnowsze"
-#: ../../mod/photos.php:1119
+#: ../../mod/photos.php:1137
msgid "Show Oldest First"
msgstr "Najpierw pokaż najstarsze"
-#: ../../mod/photos.php:1143 ../../mod/photos.php:1595
+#: ../../mod/photos.php:1170 ../../mod/photos.php:1668
msgid "View Photo"
msgstr "Zobacz zdjęcie"
-#: ../../mod/photos.php:1178
+#: ../../mod/photos.php:1205
msgid "Permission denied. Access to this item may be restricted."
msgstr "Odmowa dostępu. Dostęp do tych danych może być ograniczony."
-#: ../../mod/photos.php:1180
+#: ../../mod/photos.php:1207
msgid "Photo not available"
msgstr "Zdjęcie niedostępne"
-#: ../../mod/photos.php:1236
+#: ../../mod/photos.php:1263
msgid "View photo"
msgstr "Zobacz zdjęcie"
-#: ../../mod/photos.php:1236
+#: ../../mod/photos.php:1263
msgid "Edit photo"
msgstr "Edytuj zdjęcie"
-#: ../../mod/photos.php:1237
+#: ../../mod/photos.php:1264
msgid "Use as profile photo"
msgstr "Ustaw jako zdjęcie profilowe"
-#: ../../mod/photos.php:1243 ../../mod/content.php:603
+#: ../../mod/photos.php:1270 ../../mod/content.php:620
#: ../../object/Item.php:105
msgid "Private Message"
msgstr "Wiadomość prywatna"
-#: ../../mod/photos.php:1262
+#: ../../mod/photos.php:1289
msgid "View Full Size"
msgstr "Zobacz w pełnym rozmiarze"
-#: ../../mod/photos.php:1336
+#: ../../mod/photos.php:1363
msgid "Tags: "
msgstr "Tagi:"
-#: ../../mod/photos.php:1339
+#: ../../mod/photos.php:1366
msgid "[Remove any tag]"
msgstr "[Usunąć znacznik]"
-#: ../../mod/photos.php:1349
+#: ../../mod/photos.php:1388
msgid "Rotate CW (right)"
msgstr ""
-#: ../../mod/photos.php:1350
+#: ../../mod/photos.php:1389
msgid "Rotate CCW (left)"
msgstr ""
-#: ../../mod/photos.php:1352
+#: ../../mod/photos.php:1391
msgid "New album name"
msgstr "Nazwa nowego albumu"
-#: ../../mod/photos.php:1355
+#: ../../mod/photos.php:1394
msgid "Caption"
msgstr "Zawartość"
-#: ../../mod/photos.php:1357
+#: ../../mod/photos.php:1396
msgid "Add a Tag"
msgstr "Dodaj tag"
-#: ../../mod/photos.php:1361
+#: ../../mod/photos.php:1400
msgid ""
"Example: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
msgstr "Przykładowo: @bob, @Barbara_Jensen, @jim@example.com, #California, #camping"
-#: ../../mod/photos.php:1381 ../../mod/content.php:667
+#: ../../mod/photos.php:1420 ../../mod/content.php:684
#: ../../object/Item.php:203
msgid "I like this (toggle)"
msgstr "Lubię to (zmień)"
-#: ../../mod/photos.php:1382 ../../mod/content.php:668
+#: ../../mod/photos.php:1421 ../../mod/content.php:685
#: ../../object/Item.php:204
msgid "I don't like this (toggle)"
msgstr "Nie lubię (zmień)"
-#: ../../mod/photos.php:1383 ../../include/conversation.php:969
+#: ../../mod/photos.php:1422 ../../include/conversation.php:1005
msgid "Share"
msgstr "Podziel się"
-#: ../../mod/photos.php:1384 ../../mod/editpost.php:121
-#: ../../mod/content.php:482 ../../mod/content.php:848
+#: ../../mod/photos.php:1423 ../../mod/editpost.php:121
+#: ../../mod/content.php:499 ../../mod/content.php:883
#: ../../mod/wallmessage.php:152 ../../mod/message.php:300
-#: ../../mod/message.php:488 ../../include/conversation.php:624
-#: ../../include/conversation.php:988 ../../object/Item.php:270
+#: ../../mod/message.php:528 ../../include/conversation.php:645
+#: ../../include/conversation.php:1024 ../../object/Item.php:287
msgid "Please wait"
msgstr "Proszę czekać"
-#: ../../mod/photos.php:1400 ../../mod/photos.php:1444
-#: ../../mod/photos.php:1516 ../../mod/content.php:690
-#: ../../object/Item.php:574
+#: ../../mod/photos.php:1439 ../../mod/photos.php:1483
+#: ../../mod/photos.php:1566 ../../mod/content.php:707
+#: ../../object/Item.php:600
msgid "This is you"
msgstr "To jesteś ty"
-#: ../../mod/photos.php:1402 ../../mod/photos.php:1446
-#: ../../mod/photos.php:1518 ../../mod/content.php:692 ../../boot.php:608
-#: ../../object/Item.php:267 ../../object/Item.php:576
+#: ../../mod/photos.php:1441 ../../mod/photos.php:1485
+#: ../../mod/photos.php:1568 ../../mod/content.php:709 ../../boot.php:635
+#: ../../object/Item.php:284 ../../object/Item.php:602
msgid "Comment"
msgstr "Komentarz"
-#: ../../mod/photos.php:1404 ../../mod/photos.php:1448
-#: ../../mod/photos.php:1520 ../../mod/editpost.php:142
-#: ../../mod/content.php:702 ../../include/conversation.php:1006
-#: ../../object/Item.php:586
+#: ../../mod/photos.php:1443 ../../mod/photos.php:1487
+#: ../../mod/photos.php:1570 ../../mod/editpost.php:142
+#: ../../mod/content.php:719 ../../include/conversation.php:1042
+#: ../../object/Item.php:612
msgid "Preview"
msgstr "Podgląd"
-#: ../../mod/photos.php:1488 ../../mod/content.php:439
-#: ../../mod/content.php:724 ../../mod/settings.php:622
-#: ../../mod/group.php:168 ../../mod/admin.php:699
+#: ../../mod/photos.php:1527 ../../mod/content.php:439
+#: ../../mod/content.php:741 ../../mod/settings.php:623
+#: ../../mod/group.php:171 ../../mod/admin.php:735
#: ../../include/conversation.php:569 ../../object/Item.php:119
msgid "Delete"
msgstr "Usuń"
-#: ../../mod/photos.php:1601
+#: ../../mod/photos.php:1674
msgid "View Album"
msgstr "Zobacz album"
-#: ../../mod/photos.php:1610
+#: ../../mod/photos.php:1683
msgid "Recent Photos"
msgstr "Ostatnio dodane zdjęcia"
@@ -706,7 +707,7 @@ msgstr "Ostatnio dodane zdjęcia"
msgid "Not available."
msgstr "Niedostępne."
-#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:93
+#: ../../mod/community.php:32 ../../view/theme/diabook/theme.php:94
#: ../../include/nav.php:101
msgid "Community"
msgstr "Społeczność"
@@ -756,96 +757,96 @@ msgstr "Artykuł nie znaleziony"
msgid "Edit post"
msgstr "Edytuj post"
-#: ../../mod/editpost.php:91 ../../include/conversation.php:955
+#: ../../mod/editpost.php:91 ../../include/conversation.php:991
msgid "Post to Email"
msgstr "Wyślij poprzez email"
-#: ../../mod/editpost.php:106 ../../mod/content.php:711
-#: ../../mod/settings.php:621 ../../object/Item.php:109
+#: ../../mod/editpost.php:106 ../../mod/content.php:728
+#: ../../mod/settings.php:622 ../../object/Item.php:109
msgid "Edit"
msgstr "Edytuj"
#: ../../mod/editpost.php:107 ../../mod/wallmessage.php:150
-#: ../../mod/message.php:298 ../../mod/message.php:485
-#: ../../include/conversation.php:970
+#: ../../mod/message.php:298 ../../mod/message.php:525
+#: ../../include/conversation.php:1006
msgid "Upload photo"
msgstr "Wyślij zdjęcie"
-#: ../../mod/editpost.php:108 ../../include/conversation.php:971
+#: ../../mod/editpost.php:108 ../../include/conversation.php:1007
msgid "upload photo"
msgstr "dodaj zdjęcie"
-#: ../../mod/editpost.php:109 ../../include/conversation.php:972
+#: ../../mod/editpost.php:109 ../../include/conversation.php:1008
msgid "Attach file"
msgstr "Przyłącz plik"
-#: ../../mod/editpost.php:110 ../../include/conversation.php:973
+#: ../../mod/editpost.php:110 ../../include/conversation.php:1009
msgid "attach file"
msgstr "załącz plik"
#: ../../mod/editpost.php:111 ../../mod/wallmessage.php:151
-#: ../../mod/message.php:299 ../../mod/message.php:486
-#: ../../include/conversation.php:974
+#: ../../mod/message.php:299 ../../mod/message.php:526
+#: ../../include/conversation.php:1010
msgid "Insert web link"
msgstr "Wstaw link"
-#: ../../mod/editpost.php:112 ../../include/conversation.php:975
+#: ../../mod/editpost.php:112 ../../include/conversation.php:1011
msgid "web link"
msgstr ""
-#: ../../mod/editpost.php:113 ../../include/conversation.php:976
+#: ../../mod/editpost.php:113 ../../include/conversation.php:1012
msgid "Insert video link"
msgstr "Wstaw link wideo"
-#: ../../mod/editpost.php:114 ../../include/conversation.php:977
+#: ../../mod/editpost.php:114 ../../include/conversation.php:1013
msgid "video link"
msgstr "link do filmu"
-#: ../../mod/editpost.php:115 ../../include/conversation.php:978
+#: ../../mod/editpost.php:115 ../../include/conversation.php:1014
msgid "Insert audio link"
msgstr "Wstaw link audio"
-#: ../../mod/editpost.php:116 ../../include/conversation.php:979
+#: ../../mod/editpost.php:116 ../../include/conversation.php:1015
msgid "audio link"
msgstr "Link audio"
-#: ../../mod/editpost.php:117 ../../include/conversation.php:980
+#: ../../mod/editpost.php:117 ../../include/conversation.php:1016
msgid "Set your location"
msgstr "Ustaw swoje położenie"
-#: ../../mod/editpost.php:118 ../../include/conversation.php:981
+#: ../../mod/editpost.php:118 ../../include/conversation.php:1017
msgid "set location"
msgstr "wybierz lokalizację"
-#: ../../mod/editpost.php:119 ../../include/conversation.php:982
+#: ../../mod/editpost.php:119 ../../include/conversation.php:1018
msgid "Clear browser location"
msgstr "Wyczyść położenie przeglądarki"
-#: ../../mod/editpost.php:120 ../../include/conversation.php:983
+#: ../../mod/editpost.php:120 ../../include/conversation.php:1019
msgid "clear location"
msgstr "wyczyść lokalizację"
-#: ../../mod/editpost.php:122 ../../include/conversation.php:989
+#: ../../mod/editpost.php:122 ../../include/conversation.php:1025
msgid "Permission settings"
msgstr "Ustawienia uprawnień"
-#: ../../mod/editpost.php:130 ../../include/conversation.php:998
+#: ../../mod/editpost.php:130 ../../include/conversation.php:1034
msgid "CC: email addresses"
msgstr "CC: adresy e-mail"
-#: ../../mod/editpost.php:131 ../../include/conversation.php:999
+#: ../../mod/editpost.php:131 ../../include/conversation.php:1035
msgid "Public post"
msgstr "Publiczny post"
-#: ../../mod/editpost.php:134 ../../include/conversation.php:985
+#: ../../mod/editpost.php:134 ../../include/conversation.php:1021
msgid "Set title"
msgstr "Ustaw tytuł"
-#: ../../mod/editpost.php:136 ../../include/conversation.php:987
+#: ../../mod/editpost.php:136 ../../include/conversation.php:1023
msgid "Categories (comma-separated list)"
msgstr ""
-#: ../../mod/editpost.php:137 ../../include/conversation.php:1001
+#: ../../mod/editpost.php:137 ../../include/conversation.php:1037
msgid "Example: bob@example.com, mary@example.com"
msgstr "Przykład: bob@example.com, mary@example.com"
@@ -853,19 +854,19 @@ msgstr "Przykład: bob@example.com, mary@example.com"
msgid "This introduction has already been accepted."
msgstr "To wprowadzenie zostało już zaakceptowane."
-#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:512
+#: ../../mod/dfrn_request.php:118 ../../mod/dfrn_request.php:513
msgid "Profile location is not valid or does not contain profile information."
msgstr "Położenie profilu jest niepoprawne lub nie zawiera żadnych informacji."
-#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:517
+#: ../../mod/dfrn_request.php:123 ../../mod/dfrn_request.php:518
msgid "Warning: profile location has no identifiable owner name."
msgstr "Ostrzeżenie: położenie profilu ma taką samą nazwę jak użytkownik."
-#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:519
+#: ../../mod/dfrn_request.php:125 ../../mod/dfrn_request.php:520
msgid "Warning: profile location has no profile photo."
msgstr "Ostrzeżenie: położenie profilu nie zawiera zdjęcia."
-#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:522
+#: ../../mod/dfrn_request.php:128 ../../mod/dfrn_request.php:523
#, php-format
msgid "%d required parameter was not found at the given location"
msgid_plural "%d required parameters were not found at the given location"
@@ -906,140 +907,140 @@ msgstr "Niewłaściwy lokalizator "
msgid "Invalid email address."
msgstr "Nieprawidłowy adres email."
-#: ../../mod/dfrn_request.php:361
+#: ../../mod/dfrn_request.php:362
msgid "This account has not been configured for email. Request failed."
msgstr ""
-#: ../../mod/dfrn_request.php:457
+#: ../../mod/dfrn_request.php:458
msgid "Unable to resolve your name at the provided location."
msgstr "Nie można rozpoznać twojej nazwy w przewidzianym miejscu."
-#: ../../mod/dfrn_request.php:470
+#: ../../mod/dfrn_request.php:471
msgid "You have already introduced yourself here."
msgstr "Już się tu przedstawiłeś."
-#: ../../mod/dfrn_request.php:474
+#: ../../mod/dfrn_request.php:475
#, php-format
msgid "Apparently you are already friends with %s."
msgstr "Widocznie jesteście już znajomymi z %s"
-#: ../../mod/dfrn_request.php:495
+#: ../../mod/dfrn_request.php:496
msgid "Invalid profile URL."
msgstr "Zły adres URL profilu."
-#: ../../mod/dfrn_request.php:501 ../../include/follow.php:27
+#: ../../mod/dfrn_request.php:502 ../../include/follow.php:27
msgid "Disallowed profile URL."
msgstr "Nie dozwolony adres URL profilu."
-#: ../../mod/dfrn_request.php:570 ../../mod/contacts.php:124
+#: ../../mod/dfrn_request.php:571 ../../mod/contacts.php:124
msgid "Failed to update contact record."
msgstr "Aktualizacja nagrania kontaktu nie powiodła się."
-#: ../../mod/dfrn_request.php:591
+#: ../../mod/dfrn_request.php:592
msgid "Your introduction has been sent."
msgstr "Twoje dane zostały wysłane."
-#: ../../mod/dfrn_request.php:644
+#: ../../mod/dfrn_request.php:645
msgid "Please login to confirm introduction."
msgstr "Proszę zalogować się do potwierdzenia wstępu."
-#: ../../mod/dfrn_request.php:658
+#: ../../mod/dfrn_request.php:659
msgid ""
"Incorrect identity currently logged in. Please login to "
"this profile."
msgstr "Niepoprawna tożsamość obecnego użytkownika. Proszę zalogować się na tego użytkownika. "
-#: ../../mod/dfrn_request.php:669
+#: ../../mod/dfrn_request.php:670
msgid "Hide this contact"
msgstr "Ukryj kontakt"
-#: ../../mod/dfrn_request.php:672
+#: ../../mod/dfrn_request.php:673
#, php-format
msgid "Welcome home %s."
msgstr "Welcome home %s."
-#: ../../mod/dfrn_request.php:673
+#: ../../mod/dfrn_request.php:674
#, php-format
msgid "Please confirm your introduction/connection request to %s."
msgstr "Proszę potwierdzić swój wstęp/prośbę o połączenie do %s."
-#: ../../mod/dfrn_request.php:674
+#: ../../mod/dfrn_request.php:675
msgid "Confirm"
msgstr "Potwierdź"
-#: ../../mod/dfrn_request.php:715 ../../include/items.php:3356
+#: ../../mod/dfrn_request.php:716 ../../include/items.php:3366
msgid "[Name Withheld]"
msgstr "[Nazwa wstrzymana]"
-#: ../../mod/dfrn_request.php:810
+#: ../../mod/dfrn_request.php:811
msgid ""
"Please enter your 'Identity Address' from one of the following supported "
"communications networks:"
msgstr ""
-#: ../../mod/dfrn_request.php:826
+#: ../../mod/dfrn_request.php:827
msgid "Connect as an email follower (Coming soon)"
msgstr ""
-#: ../../mod/dfrn_request.php:828
+#: ../../mod/dfrn_request.php:829
msgid ""
"If you are not yet a member of the free social web, follow this link to find a public"
" Friendica site and join us today."
msgstr ""
-#: ../../mod/dfrn_request.php:831
+#: ../../mod/dfrn_request.php:832
msgid "Friend/Connection Request"
msgstr "Przyjaciel/Prośba o połączenie"
-#: ../../mod/dfrn_request.php:832
+#: ../../mod/dfrn_request.php:833
msgid ""
"Examples: jojo@demo.friendica.com, http://demo.friendica.com/profile/jojo, "
"testuser@identi.ca"
msgstr ""
-#: ../../mod/dfrn_request.php:833
+#: ../../mod/dfrn_request.php:834
msgid "Please answer the following:"
msgstr "Proszę odpowiedzieć na poniższe:"
-#: ../../mod/dfrn_request.php:834
+#: ../../mod/dfrn_request.php:835
#, php-format
msgid "Does %s know you?"
msgstr "Czy %s Cię zna?"
-#: ../../mod/dfrn_request.php:837
+#: ../../mod/dfrn_request.php:838
msgid "Add a personal note:"
msgstr "Dodaj osobistą notkę:"
-#: ../../mod/dfrn_request.php:839 ../../include/contact_selectors.php:76
+#: ../../mod/dfrn_request.php:840 ../../include/contact_selectors.php:76
msgid "Friendica"
msgstr "Friendica"
-#: ../../mod/dfrn_request.php:840
+#: ../../mod/dfrn_request.php:841
msgid "StatusNet/Federated Social Web"
msgstr ""
-#: ../../mod/dfrn_request.php:841 ../../mod/settings.php:681
+#: ../../mod/dfrn_request.php:842 ../../mod/settings.php:681
#: ../../include/contact_selectors.php:80
msgid "Diaspora"
msgstr ""
-#: ../../mod/dfrn_request.php:842
+#: ../../mod/dfrn_request.php:843
#, php-format
msgid ""
" - please do not use this form. Instead, enter %s into your Diaspora search"
" bar."
msgstr ""
-#: ../../mod/dfrn_request.php:843
+#: ../../mod/dfrn_request.php:844
msgid "Your Identity Address:"
msgstr "Twój zidentyfikowany adres:"
-#: ../../mod/dfrn_request.php:846
+#: ../../mod/dfrn_request.php:847
msgid "Submit Request"
msgstr "Wyślij zgłoszenie"
-#: ../../mod/uexport.php:9 ../../mod/settings.php:30 ../../include/nav.php:138
+#: ../../mod/uexport.php:9 ../../mod/settings.php:30 ../../include/nav.php:140
msgid "Account settings"
msgstr "Ustawienia konta"
@@ -1068,10 +1069,10 @@ msgid "Remove account"
msgstr "Usuń konto"
#: ../../mod/uexport.php:48 ../../mod/settings.php:74
-#: ../../mod/newmember.php:22 ../../mod/admin.php:788 ../../mod/admin.php:993
+#: ../../mod/newmember.php:22 ../../mod/admin.php:824 ../../mod/admin.php:1029
#: ../../addon/dav/friendica/layout.fnk.php:225
-#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:537
-#: ../../view/theme/diabook/theme.php:658 ../../include/nav.php:138
+#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:538
+#: ../../view/theme/diabook/theme.php:659 ../../include/nav.php:140
#: ../../addon.old/dav/friendica/layout.fnk.php:225
#: ../../addon.old/mathjax/mathjax.php:36
msgid "Settings"
@@ -1120,240 +1121,269 @@ msgid ""
"or mysql."
msgstr "Może być konieczne zaimportowanie pliku \"database.sql\" ręcznie, używając phpmyadmin lub mysql."
-#: ../../mod/install.php:139 ../../mod/install.php:204
-#: ../../mod/install.php:488
+#: ../../mod/install.php:139 ../../mod/install.php:206
+#: ../../mod/install.php:506
msgid "Please see the file \"INSTALL.txt\"."
msgstr "Proszę przejrzeć plik \"INSTALL.txt\"."
-#: ../../mod/install.php:201
+#: ../../mod/install.php:203
msgid "System check"
msgstr "Sprawdzanie systemu"
-#: ../../mod/install.php:206
+#: ../../mod/install.php:208
msgid "Check again"
msgstr "Sprawdź ponownie"
-#: ../../mod/install.php:225
+#: ../../mod/install.php:227
msgid "Database connection"
msgstr "Połączenie z bazą danych"
-#: ../../mod/install.php:226
+#: ../../mod/install.php:228
msgid ""
"In order to install Friendica we need to know how to connect to your "
"database."
msgstr "W celu zainstalowania Friendica musimy wiedzieć jak połączyć się z twoją bazą danych."
-#: ../../mod/install.php:227
+#: ../../mod/install.php:229
msgid ""
"Please contact your hosting provider or site administrator if you have "
"questions about these settings."
msgstr "Proszę skontaktuj się ze swoim dostawcą usług hostingowych bądź administratorem strony jeśli masz pytania co do tych ustawień ."
-#: ../../mod/install.php:228
+#: ../../mod/install.php:230
msgid ""
"The database you specify below should already exist. If it does not, please "
"create it before continuing."
msgstr "Wymieniona przez Ciebie baza danych powinna już istnieć. Jeżeli nie, utwórz ją przed kontynuacją."
-#: ../../mod/install.php:232
+#: ../../mod/install.php:234
msgid "Database Server Name"
msgstr "Baza danych - Nazwa serwera"
-#: ../../mod/install.php:233
+#: ../../mod/install.php:235
msgid "Database Login Name"
msgstr "Baza danych - Nazwa loginu"
-#: ../../mod/install.php:234
+#: ../../mod/install.php:236
msgid "Database Login Password"
msgstr "Baza danych - Hasło loginu"
-#: ../../mod/install.php:235
+#: ../../mod/install.php:237
msgid "Database Name"
msgstr "Baza danych - Nazwa"
-#: ../../mod/install.php:236 ../../mod/install.php:275
+#: ../../mod/install.php:238 ../../mod/install.php:277
msgid "Site administrator email address"
msgstr "Adres e-mail administratora strony"
-#: ../../mod/install.php:236 ../../mod/install.php:275
+#: ../../mod/install.php:238 ../../mod/install.php:277
msgid ""
"Your account email address must match this in order to use the web admin "
"panel."
msgstr ""
-#: ../../mod/install.php:240 ../../mod/install.php:278
+#: ../../mod/install.php:242 ../../mod/install.php:280
msgid "Please select a default timezone for your website"
msgstr "Proszę wybrać domyślną strefę czasową dla swojej strony"
-#: ../../mod/install.php:265
+#: ../../mod/install.php:267
msgid "Site settings"
msgstr "Ustawienia strony"
-#: ../../mod/install.php:318
+#: ../../mod/install.php:320
msgid "Could not find a command line version of PHP in the web server PATH."
msgstr "Nie można znaleźć wersji PHP komendy w serwerze PATH"
-#: ../../mod/install.php:319
+#: ../../mod/install.php:321
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. See 'Activating scheduled tasks'"
msgstr ""
-#: ../../mod/install.php:323
+#: ../../mod/install.php:325
msgid "PHP executable path"
msgstr ""
-#: ../../mod/install.php:323
+#: ../../mod/install.php:325
msgid ""
"Enter full path to php executable. You can leave this blank to continue the "
"installation."
msgstr ""
-#: ../../mod/install.php:328
+#: ../../mod/install.php:330
msgid "Command line PHP"
msgstr ""
-#: ../../mod/install.php:337
+#: ../../mod/install.php:339
msgid ""
"The command line version of PHP on your system does not have "
"\"register_argc_argv\" enabled."
msgstr "Wersja linii poleceń PHP w twoim systemie nie ma aktywowanego \"register_argc_argv\"."
-#: ../../mod/install.php:338
+#: ../../mod/install.php:340
msgid "This is required for message delivery to work."
msgstr "To jest wymagane do dostarczenia wiadomości do pracy."
-#: ../../mod/install.php:340
+#: ../../mod/install.php:342
msgid "PHP register_argc_argv"
msgstr ""
-#: ../../mod/install.php:361
+#: ../../mod/install.php:363
msgid ""
"Error: the \"openssl_pkey_new\" function on this system is not able to "
"generate encryption keys"
msgstr "Błąd : funkcja systemu \"openssl_pkey_new\" nie jest w stanie wygenerować klucza szyfrującego ."
-#: ../../mod/install.php:362
+#: ../../mod/install.php:364
msgid ""
"If running under Windows, please see "
"\"http://www.php.net/manual/en/openssl.installation.php\"."
msgstr "Jeśli korzystasz z Windowsa, proszę odwiedzić \"http://www.php.net/manual/en/openssl.installation.php\"."
-#: ../../mod/install.php:364
+#: ../../mod/install.php:366
msgid "Generate encryption keys"
msgstr ""
-#: ../../mod/install.php:371
+#: ../../mod/install.php:373
msgid "libCurl PHP module"
msgstr ""
-#: ../../mod/install.php:372
+#: ../../mod/install.php:374
msgid "GD graphics PHP module"
msgstr ""
-#: ../../mod/install.php:373
+#: ../../mod/install.php:375
msgid "OpenSSL PHP module"
msgstr ""
-#: ../../mod/install.php:374
+#: ../../mod/install.php:376
msgid "mysqli PHP module"
msgstr ""
-#: ../../mod/install.php:375
+#: ../../mod/install.php:377
msgid "mb_string PHP module"
msgstr ""
-#: ../../mod/install.php:380 ../../mod/install.php:382
+#: ../../mod/install.php:382 ../../mod/install.php:384
msgid "Apache mod_rewrite module"
msgstr ""
-#: ../../mod/install.php:380
+#: ../../mod/install.php:382
msgid ""
"Error: Apache webserver mod-rewrite module is required but not installed."
msgstr "Błąd: moduł Apache webserver mod-rewrite jest potrzebny, jednakże nie jest zainstalowany."
-#: ../../mod/install.php:388
+#: ../../mod/install.php:390
msgid "Error: libCURL PHP module required but not installed."
msgstr "Błąd: libCURL PHP wymagany moduł, lecz nie zainstalowany."
-#: ../../mod/install.php:392
+#: ../../mod/install.php:394
msgid ""
"Error: GD graphics PHP module with JPEG support required but not installed."
msgstr "Błąd: moduł graficzny GD z PHP potrzebuje wsparcia technicznego JPEG, jednakże on nie jest zainstalowany."
-#: ../../mod/install.php:396
+#: ../../mod/install.php:398
msgid "Error: openssl PHP module required but not installed."
msgstr "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany."
-#: ../../mod/install.php:400
+#: ../../mod/install.php:402
msgid "Error: mysqli PHP module required but not installed."
msgstr "Błąd: mysqli PHP wymagany moduł, lecz nie zainstalowany."
-#: ../../mod/install.php:404
+#: ../../mod/install.php:406
msgid "Error: mb_string PHP module required but not installed."
msgstr "Błąd: moduł PHP mb_string jest wymagany ale nie jest zainstalowany"
-#: ../../mod/install.php:421
+#: ../../mod/install.php:423
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 ""
-#: ../../mod/install.php:422
+#: ../../mod/install.php:424
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 ""
-#: ../../mod/install.php:423
+#: ../../mod/install.php:425
msgid ""
"At the end of this procedure, we will give you a text to save in a file "
"named .htconfig.php in your Friendica top folder."
msgstr ""
-#: ../../mod/install.php:424
+#: ../../mod/install.php:426
msgid ""
"You can alternatively skip this procedure and perform a manual installation."
" Please see the file \"INSTALL.txt\" for instructions."
msgstr ""
-#: ../../mod/install.php:427
+#: ../../mod/install.php:429
msgid ".htconfig.php is writable"
msgstr ""
#: ../../mod/install.php:439
msgid ""
-"Url rewrite in .htaccess is not working. Check your server configuration."
+"Friendica uses the Smarty3 template engine to render its web views. Smarty3 "
+"compiles templates to PHP to speed up rendering."
+msgstr ""
+
+#: ../../mod/install.php:440
+msgid ""
+"In order to store these compiled templates, the web server needs to have "
+"write access to the directory view/smarty3/ under the Friendica top level "
+"folder."
msgstr ""
#: ../../mod/install.php:441
+msgid ""
+"Please ensure that the user that your web server runs as (e.g. www-data) has"
+" write access to this folder."
+msgstr ""
+
+#: ../../mod/install.php:442
+msgid ""
+"Note: as a security measure, you should give the web server write access to "
+"view/smarty3/ only--not the template files (.tpl) that it contains."
+msgstr ""
+
+#: ../../mod/install.php:445
+msgid "view/smarty3 is writable"
+msgstr ""
+
+#: ../../mod/install.php:457
+msgid ""
+"Url rewrite in .htaccess is not working. Check your server configuration."
+msgstr ""
+
+#: ../../mod/install.php:459
msgid "Url rewrite is working"
msgstr ""
-#: ../../mod/install.php:451
+#: ../../mod/install.php:469
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 ""
+msgstr "Konfiguracja bazy danych pliku \".htconfig.php\" nie mogła zostać zapisana. Proszę użyć załączonego tekstu, aby utworzyć folder konfiguracyjny w sieci serwera."
-#: ../../mod/install.php:475
+#: ../../mod/install.php:493
msgid "Errors encountered creating database tables."
msgstr "Zostały napotkane błędy przy tworzeniu tabeli bazy danych."
-#: ../../mod/install.php:486
+#: ../../mod/install.php:504
msgid "
What next
"
msgstr ""
-#: ../../mod/install.php:487
+#: ../../mod/install.php:505
msgid ""
"IMPORTANT: You will need to [manually] setup a scheduled task for the "
"poller."
msgstr ""
#: ../../mod/localtime.php:12 ../../include/event.php:11
-#: ../../include/bb2diaspora.php:390
+#: ../../include/bb2diaspora.php:393
msgid "l F d, Y \\@ g:i A"
msgstr ""
@@ -1419,7 +1449,7 @@ msgid "is interested in:"
msgstr "interesuje się:"
#: ../../mod/match.php:58 ../../mod/suggest.php:59
-#: ../../include/contact_widgets.php:9 ../../boot.php:1216
+#: ../../include/contact_widgets.php:9 ../../boot.php:1250
msgid "Connect"
msgstr "Połącz"
@@ -1432,7 +1462,7 @@ msgid "Remote privacy information not available."
msgstr "Dane prywatne nie są dostępne zdalnie "
#: ../../mod/lockview.php:48
-#: ../../addon/remote_permissions/remote_permissions.php:123
+#: ../../addon/remote_permissions/remote_permissions.php:124
msgid "Visible to:"
msgstr "Widoczne dla:"
@@ -1448,29 +1478,29 @@ msgstr "Grupa jest pusta"
msgid "Group: "
msgstr "Grupa:"
-#: ../../mod/content.php:438 ../../mod/content.php:723
+#: ../../mod/content.php:438 ../../mod/content.php:740
#: ../../include/conversation.php:568 ../../object/Item.php:118
msgid "Select"
msgstr "Wybierz"
-#: ../../mod/content.php:455 ../../mod/content.php:817
-#: ../../mod/content.php:818 ../../include/conversation.php:587
-#: ../../object/Item.php:235 ../../object/Item.php:236
+#: ../../mod/content.php:472 ../../mod/content.php:852
+#: ../../mod/content.php:853 ../../include/conversation.php:608
+#: ../../object/Item.php:252 ../../object/Item.php:253
#, php-format
msgid "View %s's profile @ %s"
msgstr "Pokaż %s's profil @ %s"
-#: ../../mod/content.php:465 ../../mod/content.php:829
-#: ../../include/conversation.php:607 ../../object/Item.php:249
+#: ../../mod/content.php:482 ../../mod/content.php:864
+#: ../../include/conversation.php:628 ../../object/Item.php:266
#, php-format
msgid "%s from %s"
msgstr "%s od %s"
-#: ../../mod/content.php:480 ../../include/conversation.php:622
+#: ../../mod/content.php:497 ../../include/conversation.php:643
msgid "View in context"
msgstr "Zobacz w kontekście"
-#: ../../mod/content.php:586 ../../object/Item.php:289
+#: ../../mod/content.php:603 ../../object/Item.php:306
#, php-format
msgid "%d comment"
msgid_plural "%d comments"
@@ -1478,107 +1508,107 @@ msgstr[0] " %d komentarz"
msgstr[1] " %d komentarzy"
msgstr[2] " %d komentarzy"
-#: ../../mod/content.php:588 ../../include/text.php:1446
-#: ../../object/Item.php:291 ../../object/Item.php:304
+#: ../../mod/content.php:605 ../../include/text.php:1503
+#: ../../object/Item.php:308 ../../object/Item.php:321
msgid "comment"
msgid_plural "comments"
msgstr[0] ""
msgstr[1] ""
msgstr[2] "komentarz"
-#: ../../mod/content.php:589 ../../addon/page/page.php:77
+#: ../../mod/content.php:606 ../../addon/page/page.php:77
#: ../../addon/page/page.php:111 ../../addon/showmore/showmore.php:119
-#: ../../include/contact_widgets.php:204 ../../boot.php:609
-#: ../../object/Item.php:292 ../../addon.old/page/page.php:77
+#: ../../include/contact_widgets.php:204 ../../boot.php:636
+#: ../../object/Item.php:309 ../../addon.old/page/page.php:77
#: ../../addon.old/page/page.php:111 ../../addon.old/showmore/showmore.php:119
msgid "show more"
msgstr "Pokaż więcej"
-#: ../../mod/content.php:667 ../../object/Item.php:203
+#: ../../mod/content.php:684 ../../object/Item.php:203
msgid "like"
msgstr "polub"
-#: ../../mod/content.php:668 ../../object/Item.php:204
+#: ../../mod/content.php:685 ../../object/Item.php:204
msgid "dislike"
msgstr "Nie lubię"
-#: ../../mod/content.php:670 ../../object/Item.php:206
+#: ../../mod/content.php:687 ../../object/Item.php:206
msgid "Share this"
msgstr "Udostępnij to"
-#: ../../mod/content.php:670 ../../object/Item.php:206
+#: ../../mod/content.php:687 ../../object/Item.php:206
msgid "share"
msgstr "udostępnij"
-#: ../../mod/content.php:694 ../../object/Item.php:578
+#: ../../mod/content.php:711 ../../object/Item.php:604
msgid "Bold"
msgstr "Pogrubienie"
-#: ../../mod/content.php:695 ../../object/Item.php:579
+#: ../../mod/content.php:712 ../../object/Item.php:605
msgid "Italic"
msgstr "Kursywa"
-#: ../../mod/content.php:696 ../../object/Item.php:580
+#: ../../mod/content.php:713 ../../object/Item.php:606
msgid "Underline"
msgstr "Podkreślenie"
-#: ../../mod/content.php:697 ../../object/Item.php:581
+#: ../../mod/content.php:714 ../../object/Item.php:607
msgid "Quote"
msgstr "Cytat"
-#: ../../mod/content.php:698 ../../object/Item.php:582
+#: ../../mod/content.php:715 ../../object/Item.php:608
msgid "Code"
msgstr "Kod"
-#: ../../mod/content.php:699 ../../object/Item.php:583
+#: ../../mod/content.php:716 ../../object/Item.php:609
msgid "Image"
msgstr "Obraz"
-#: ../../mod/content.php:700 ../../object/Item.php:584
+#: ../../mod/content.php:717 ../../object/Item.php:610
msgid "Link"
msgstr "Link"
-#: ../../mod/content.php:701 ../../object/Item.php:585
+#: ../../mod/content.php:718 ../../object/Item.php:611
msgid "Video"
msgstr "Video"
-#: ../../mod/content.php:736 ../../object/Item.php:182
+#: ../../mod/content.php:753 ../../object/Item.php:182
msgid "add star"
msgstr "dodaj gwiazdkę"
-#: ../../mod/content.php:737 ../../object/Item.php:183
+#: ../../mod/content.php:754 ../../object/Item.php:183
msgid "remove star"
msgstr "anuluj gwiazdkę"
-#: ../../mod/content.php:738 ../../object/Item.php:184
+#: ../../mod/content.php:755 ../../object/Item.php:184
msgid "toggle star status"
msgstr "włącz status gwiazdy"
-#: ../../mod/content.php:741 ../../object/Item.php:187
+#: ../../mod/content.php:758 ../../object/Item.php:187
msgid "starred"
msgstr ""
-#: ../../mod/content.php:742 ../../object/Item.php:192
+#: ../../mod/content.php:759 ../../object/Item.php:192
msgid "add tag"
msgstr "dodaj tag"
-#: ../../mod/content.php:746 ../../object/Item.php:122
+#: ../../mod/content.php:763 ../../object/Item.php:122
msgid "save to folder"
msgstr "zapisz w folderze"
-#: ../../mod/content.php:819 ../../object/Item.php:237
+#: ../../mod/content.php:854 ../../object/Item.php:254
msgid "to"
msgstr "do"
-#: ../../mod/content.php:820 ../../object/Item.php:239
+#: ../../mod/content.php:855 ../../object/Item.php:256
msgid "Wall-to-Wall"
msgstr ""
-#: ../../mod/content.php:821 ../../object/Item.php:240
+#: ../../mod/content.php:856 ../../object/Item.php:257
msgid "via Wall-To-Wall:"
msgstr ""
-#: ../../mod/home.php:30 ../../addon/communityhome/communityhome.php:179
+#: ../../mod/home.php:30 ../../addon/communityhome/communityhome.php:183
#: ../../addon.old/communityhome/communityhome.php:179
#, php-format
msgid "Welcome to %s"
@@ -1588,13 +1618,13 @@ msgstr "Witamy w %s"
msgid "Invalid request identifier."
msgstr "Niewłaściwy identyfikator wymagania."
-#: ../../mod/notifications.php:35 ../../mod/notifications.php:164
-#: ../../mod/notifications.php:210
+#: ../../mod/notifications.php:35 ../../mod/notifications.php:165
+#: ../../mod/notifications.php:211
msgid "Discard"
msgstr "Odrzuć"
-#: ../../mod/notifications.php:51 ../../mod/notifications.php:163
-#: ../../mod/notifications.php:209 ../../mod/contacts.php:325
+#: ../../mod/notifications.php:51 ../../mod/notifications.php:164
+#: ../../mod/notifications.php:210 ../../mod/contacts.php:325
#: ../../mod/contacts.php:379
msgid "Ignore"
msgstr "Ignoruj"
@@ -1611,7 +1641,7 @@ msgstr "Sieć"
msgid "Personal"
msgstr "Osobiste"
-#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:87
+#: ../../mod/notifications.php:93 ../../view/theme/diabook/theme.php:88
#: ../../include/nav.php:77 ../../include/nav.php:116
msgid "Home"
msgstr "Dom"
@@ -1633,139 +1663,139 @@ msgstr "Pokaż ignorowane żądania"
msgid "Hide Ignored Requests"
msgstr "Ukryj ignorowane żądania"
-#: ../../mod/notifications.php:148 ../../mod/notifications.php:194
+#: ../../mod/notifications.php:149 ../../mod/notifications.php:195
msgid "Notification type: "
msgstr "Typ zawiadomień:"
-#: ../../mod/notifications.php:149
+#: ../../mod/notifications.php:150
msgid "Friend Suggestion"
msgstr "Propozycja znajomych"
-#: ../../mod/notifications.php:151
+#: ../../mod/notifications.php:152
#, php-format
msgid "suggested by %s"
msgstr "zaproponowane przez %s"
-#: ../../mod/notifications.php:156 ../../mod/notifications.php:203
+#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
#: ../../mod/contacts.php:385
msgid "Hide this contact from others"
msgstr "Ukryj ten kontakt przed innymi"
-#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
msgid "Post a new friend activity"
msgstr ""
-#: ../../mod/notifications.php:157 ../../mod/notifications.php:204
+#: ../../mod/notifications.php:158 ../../mod/notifications.php:205
msgid "if applicable"
msgstr "jeśli odpowiednie"
-#: ../../mod/notifications.php:160 ../../mod/notifications.php:207
-#: ../../mod/admin.php:697
+#: ../../mod/notifications.php:161 ../../mod/notifications.php:208
+#: ../../mod/admin.php:733
msgid "Approve"
msgstr "Zatwierdź"
-#: ../../mod/notifications.php:180
+#: ../../mod/notifications.php:181
msgid "Claims to be known to you: "
msgstr "Twierdzi, że go znasz:"
-#: ../../mod/notifications.php:180
+#: ../../mod/notifications.php:181
msgid "yes"
msgstr "tak"
-#: ../../mod/notifications.php:180
+#: ../../mod/notifications.php:181
msgid "no"
msgstr "nie"
-#: ../../mod/notifications.php:187
+#: ../../mod/notifications.php:188
msgid "Approve as: "
msgstr "Zatwierdź jako:"
-#: ../../mod/notifications.php:188
+#: ../../mod/notifications.php:189
msgid "Friend"
msgstr "Znajomy"
-#: ../../mod/notifications.php:189
+#: ../../mod/notifications.php:190
msgid "Sharer"
msgstr ""
-#: ../../mod/notifications.php:189
+#: ../../mod/notifications.php:190
msgid "Fan/Admirer"
msgstr "Fan"
-#: ../../mod/notifications.php:195
+#: ../../mod/notifications.php:196
msgid "Friend/Connect Request"
msgstr "Prośba o dodanie do przyjaciół/powiązanych"
-#: ../../mod/notifications.php:195
+#: ../../mod/notifications.php:196
msgid "New Follower"
msgstr "Nowy obserwator"
-#: ../../mod/notifications.php:216
+#: ../../mod/notifications.php:217
msgid "No introductions."
msgstr "Brak wstępu."
-#: ../../mod/notifications.php:219 ../../include/nav.php:123
+#: ../../mod/notifications.php:220 ../../include/nav.php:123
msgid "Notifications"
msgstr "Powiadomienia"
-#: ../../mod/notifications.php:256 ../../mod/notifications.php:381
-#: ../../mod/notifications.php:468
+#: ../../mod/notifications.php:257 ../../mod/notifications.php:382
+#: ../../mod/notifications.php:469
#, php-format
msgid "%s liked %s's post"
msgstr "%s polubił wpis %s"
-#: ../../mod/notifications.php:265 ../../mod/notifications.php:390
-#: ../../mod/notifications.php:477
+#: ../../mod/notifications.php:266 ../../mod/notifications.php:391
+#: ../../mod/notifications.php:478
#, php-format
msgid "%s disliked %s's post"
msgstr "%s przestał lubić post %s"
-#: ../../mod/notifications.php:279 ../../mod/notifications.php:404
-#: ../../mod/notifications.php:491
+#: ../../mod/notifications.php:280 ../../mod/notifications.php:405
+#: ../../mod/notifications.php:492
#, php-format
msgid "%s is now friends with %s"
msgstr "%s jest teraz znajomym %s"
-#: ../../mod/notifications.php:286 ../../mod/notifications.php:411
+#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
#, php-format
msgid "%s created a new post"
msgstr "%s dodał nowy wpis"
-#: ../../mod/notifications.php:287 ../../mod/notifications.php:412
-#: ../../mod/notifications.php:500
+#: ../../mod/notifications.php:288 ../../mod/notifications.php:413
+#: ../../mod/notifications.php:501
#, php-format
msgid "%s commented on %s's post"
msgstr "%s skomentował wpis %s"
-#: ../../mod/notifications.php:301
+#: ../../mod/notifications.php:302
msgid "No more network notifications."
msgstr "Nie ma więcej powiadomień sieciowych"
-#: ../../mod/notifications.php:305
+#: ../../mod/notifications.php:306
msgid "Network Notifications"
msgstr "Powiadomienia z sieci"
-#: ../../mod/notifications.php:331 ../../mod/notify.php:61
+#: ../../mod/notifications.php:332 ../../mod/notify.php:61
msgid "No more system notifications."
msgstr "Nie ma więcej powiadomień systemowych."
-#: ../../mod/notifications.php:335 ../../mod/notify.php:65
+#: ../../mod/notifications.php:336 ../../mod/notify.php:65
msgid "System Notifications"
msgstr "Powiadomienia systemowe"
-#: ../../mod/notifications.php:426
+#: ../../mod/notifications.php:427
msgid "No more personal notifications."
msgstr "Nie ma więcej powiadomień osobistych"
-#: ../../mod/notifications.php:430
+#: ../../mod/notifications.php:431
msgid "Personal Notifications"
msgstr "Prywatne powiadomienia"
-#: ../../mod/notifications.php:507
+#: ../../mod/notifications.php:508
msgid "No more home notifications."
msgstr "Nie ma więcej powiadomień domu"
-#: ../../mod/notifications.php:511
+#: ../../mod/notifications.php:512
msgid "Home Notifications"
msgstr "Powiadomienia z instancji"
@@ -1862,12 +1892,12 @@ msgid "View all contacts"
msgstr "Zobacz wszystkie kontakty"
#: ../../mod/contacts.php:319 ../../mod/contacts.php:378
-#: ../../mod/admin.php:701
+#: ../../mod/admin.php:737
msgid "Unblock"
msgstr "Odblokuj"
#: ../../mod/contacts.php:319 ../../mod/contacts.php:378
-#: ../../mod/admin.php:700
+#: ../../mod/admin.php:736
msgid "Block"
msgstr "Zablokuj"
@@ -1964,7 +1994,7 @@ msgstr "Ostatnia aktualizacja:"
msgid "Update public posts"
msgstr ""
-#: ../../mod/contacts.php:375 ../../mod/admin.php:1173
+#: ../../mod/contacts.php:375 ../../mod/admin.php:1209
msgid "Update now"
msgstr "Aktualizuj teraz"
@@ -1993,7 +2023,7 @@ msgstr "Sugestie"
msgid "Suggest potential friends"
msgstr "Sugerowani znajomi"
-#: ../../mod/contacts.php:444 ../../mod/group.php:191
+#: ../../mod/contacts.php:444 ../../mod/group.php:194
msgid "All Contacts"
msgstr "Wszystkie kontakty"
@@ -2057,8 +2087,8 @@ msgstr "jesteś fanem"
msgid "Edit contact"
msgstr "Edytuj kontakt"
-#: ../../mod/contacts.php:575 ../../view/theme/diabook/theme.php:89
-#: ../../include/nav.php:142
+#: ../../mod/contacts.php:575 ../../view/theme/diabook/theme.php:90
+#: ../../include/nav.php:144
msgid "Contacts"
msgstr "Kontakty"
@@ -2094,10 +2124,10 @@ msgstr "Prośba o reset hasła na %s"
#: ../../mod/register.php:91 ../../mod/register.php:145
#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752
#: ../../addon/facebook/facebook.php:702
-#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:777
+#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:805
#: ../../addon/public_server/public_server.php:62
-#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3365
-#: ../../boot.php:824 ../../addon.old/facebook/facebook.php:702
+#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3375
+#: ../../boot.php:852 ../../addon.old/facebook/facebook.php:702
#: ../../addon.old/facebook/facebook.php:1200
#: ../../addon.old/fbpost/fbpost.php:661
#: ../../addon.old/public_server/public_server.php:62
@@ -2111,7 +2141,7 @@ msgid ""
"Password reset failed."
msgstr "Prośba nie może być zweryfikowana. (Mogłeś już ją poprzednio wysłać.) Reset hasła nie powiódł się."
-#: ../../mod/lostpass.php:83 ../../boot.php:963
+#: ../../mod/lostpass.php:83 ../../boot.php:990
msgid "Password Reset"
msgstr "Zresetuj hasło"
@@ -2163,69 +2193,69 @@ msgstr ""
msgid "Missing some important data!"
msgstr "Brakuje ważnych danych!"
-#: ../../mod/settings.php:121 ../../mod/settings.php:585
+#: ../../mod/settings.php:121 ../../mod/settings.php:586
msgid "Update"
msgstr "Zaktualizuj"
-#: ../../mod/settings.php:226
+#: ../../mod/settings.php:227
msgid "Failed to connect with email account using the settings provided."
msgstr "Połączenie z kontem email używając wybranych ustawień nie powiodło się."
-#: ../../mod/settings.php:231
+#: ../../mod/settings.php:232
msgid "Email settings updated."
msgstr "Zaktualizowano ustawienia email."
-#: ../../mod/settings.php:246
+#: ../../mod/settings.php:247
msgid "Features updated"
msgstr ""
-#: ../../mod/settings.php:306
+#: ../../mod/settings.php:307
msgid "Passwords do not match. Password unchanged."
msgstr "Hasło nie pasuje. Hasło nie zmienione."
-#: ../../mod/settings.php:311
+#: ../../mod/settings.php:312
msgid "Empty passwords are not allowed. Password unchanged."
msgstr "Brak hasła niedozwolony. Hasło nie zmienione."
-#: ../../mod/settings.php:322
+#: ../../mod/settings.php:323
msgid "Password changed."
msgstr "Hasło zostało zmianione."
-#: ../../mod/settings.php:324
+#: ../../mod/settings.php:325
msgid "Password update failed. Please try again."
msgstr "Aktualizacja hasła nie powiodła się. Proszę spróbować ponownie."
-#: ../../mod/settings.php:389
+#: ../../mod/settings.php:390
msgid " Please use a shorter name."
msgstr "Proszę użyć krótszej nazwy."
-#: ../../mod/settings.php:391
+#: ../../mod/settings.php:392
msgid " Name too short."
msgstr "Za krótka nazwa."
-#: ../../mod/settings.php:397
+#: ../../mod/settings.php:398
msgid " Not valid email."
msgstr "Zły email."
-#: ../../mod/settings.php:399
+#: ../../mod/settings.php:400
msgid " Cannot change to that email."
msgstr "Nie mogę zmienić na ten email."
-#: ../../mod/settings.php:453
+#: ../../mod/settings.php:454
msgid "Private forum has no privacy permissions. Using default privacy group."
msgstr ""
-#: ../../mod/settings.php:457
+#: ../../mod/settings.php:458
msgid "Private forum has no privacy permissions and no default privacy group."
msgstr ""
-#: ../../mod/settings.php:487 ../../addon/facebook/facebook.php:495
+#: ../../mod/settings.php:488 ../../addon/facebook/facebook.php:495
#: ../../addon/fbpost/fbpost.php:151
-#: ../../addon/remote_permissions/remote_permissions.php:204
+#: ../../addon/remote_permissions/remote_permissions.php:205
#: ../../addon/impressum/impressum.php:78
#: ../../addon/openstreetmap/openstreetmap.php:80
#: ../../addon/altpager/altpager.php:107 ../../addon/mathjax/mathjax.php:66
-#: ../../addon/piwik/piwik.php:105 ../../addon/twitter/twitter.php:501
+#: ../../addon/piwik/piwik.php:105 ../../addon/twitter/twitter.php:504
#: ../../addon.old/facebook/facebook.php:495
#: ../../addon.old/fbpost/fbpost.php:144
#: ../../addon.old/impressum/impressum.php:78
@@ -2235,69 +2265,69 @@ msgstr ""
msgid "Settings updated."
msgstr "Zaktualizowano ustawienia."
-#: ../../mod/settings.php:558 ../../mod/settings.php:584
-#: ../../mod/settings.php:620
+#: ../../mod/settings.php:559 ../../mod/settings.php:585
+#: ../../mod/settings.php:621
msgid "Add application"
msgstr "Dodaj aplikacje"
-#: ../../mod/settings.php:562 ../../mod/settings.php:588
-#: ../../addon/statusnet/statusnet.php:694
+#: ../../mod/settings.php:563 ../../mod/settings.php:589
+#: ../../addon/statusnet/statusnet.php:697
#: ../../addon.old/statusnet/statusnet.php:570
msgid "Consumer Key"
msgstr "Klucz konsumenta"
-#: ../../mod/settings.php:563 ../../mod/settings.php:589
-#: ../../addon/statusnet/statusnet.php:693
+#: ../../mod/settings.php:564 ../../mod/settings.php:590
+#: ../../addon/statusnet/statusnet.php:696
#: ../../addon.old/statusnet/statusnet.php:569
msgid "Consumer Secret"
msgstr "Sekret konsumenta"
-#: ../../mod/settings.php:564 ../../mod/settings.php:590
+#: ../../mod/settings.php:565 ../../mod/settings.php:591
msgid "Redirect"
msgstr "Przekierowanie"
-#: ../../mod/settings.php:565 ../../mod/settings.php:591
+#: ../../mod/settings.php:566 ../../mod/settings.php:592
msgid "Icon url"
msgstr "Adres ikony"
-#: ../../mod/settings.php:576
+#: ../../mod/settings.php:577
msgid "You can't edit this application."
msgstr "Nie możesz edytować tej aplikacji."
-#: ../../mod/settings.php:619
+#: ../../mod/settings.php:620
msgid "Connected Apps"
msgstr "Powiązane aplikacje"
-#: ../../mod/settings.php:623
+#: ../../mod/settings.php:624
msgid "Client key starts with"
msgstr ""
-#: ../../mod/settings.php:624
+#: ../../mod/settings.php:625
msgid "No name"
msgstr "Bez nazwy"
-#: ../../mod/settings.php:625
+#: ../../mod/settings.php:626
msgid "Remove authorization"
msgstr "Odwołaj upoważnienie"
-#: ../../mod/settings.php:637
+#: ../../mod/settings.php:638
msgid "No Plugin settings configured"
msgstr "Ustawienia wtyczki nieskonfigurowane"
-#: ../../mod/settings.php:645 ../../addon/widgets/widgets.php:123
+#: ../../mod/settings.php:646 ../../addon/widgets/widgets.php:124
#: ../../addon.old/widgets/widgets.php:123
msgid "Plugin Settings"
msgstr "Ustawienia wtyczki"
-#: ../../mod/settings.php:659
+#: ../../mod/settings.php:660
msgid "Off"
msgstr ""
-#: ../../mod/settings.php:659
+#: ../../mod/settings.php:660
msgid "On"
msgstr ""
-#: ../../mod/settings.php:667
+#: ../../mod/settings.php:668
msgid "Additional Features"
msgstr ""
@@ -2322,375 +2352,375 @@ msgstr ""
msgid "Email access is disabled on this site."
msgstr "Dostęp do e-maila nie jest w pełni sprawny na tej stronie"
-#: ../../mod/settings.php:720
+#: ../../mod/settings.php:721
msgid "Connector Settings"
msgstr "Ustawienia konektora"
-#: ../../mod/settings.php:725
+#: ../../mod/settings.php:726
msgid "Email/Mailbox Setup"
msgstr "Ustawienia emaila/skrzynki mailowej"
-#: ../../mod/settings.php:726
+#: ../../mod/settings.php:727
msgid ""
"If you wish to communicate with email contacts using this service "
"(optional), please specify how to connect to your mailbox."
-msgstr ""
+msgstr "Jeżeli życzysz sobie komunikowania z kontaktami email używając tego serwisu (opcjonalne), opisz jak połaczyć się z Twoją skrzynką email."
-#: ../../mod/settings.php:727
+#: ../../mod/settings.php:728
msgid "Last successful email check:"
msgstr "Ostatni sprawdzony e-mail:"
-#: ../../mod/settings.php:729
+#: ../../mod/settings.php:730
msgid "IMAP server name:"
msgstr "Nazwa serwera IMAP:"
-#: ../../mod/settings.php:730
+#: ../../mod/settings.php:731
msgid "IMAP port:"
msgstr "Port IMAP:"
-#: ../../mod/settings.php:731
+#: ../../mod/settings.php:732
msgid "Security:"
msgstr "Ochrona:"
-#: ../../mod/settings.php:731 ../../mod/settings.php:736
+#: ../../mod/settings.php:732 ../../mod/settings.php:737
#: ../../addon/fbpost/fbpost.php:247 ../../addon/fbpost/fbpost.php:249
#: ../../addon/dav/common/wdcal_edit.inc.php:191
#: ../../addon.old/dav/common/wdcal_edit.inc.php:191
msgid "None"
msgstr "Brak"
-#: ../../mod/settings.php:732
+#: ../../mod/settings.php:733
msgid "Email login name:"
msgstr "Login emaila:"
-#: ../../mod/settings.php:733
+#: ../../mod/settings.php:734
msgid "Email password:"
msgstr "Hasło emaila:"
-#: ../../mod/settings.php:734
+#: ../../mod/settings.php:735
msgid "Reply-to address:"
msgstr "Odpowiedz na adres:"
-#: ../../mod/settings.php:735
+#: ../../mod/settings.php:736
msgid "Send public posts to all email contacts:"
msgstr "Wyślij publiczny post do wszystkich kontaktów e-mail"
-#: ../../mod/settings.php:736
+#: ../../mod/settings.php:737
msgid "Action after import:"
msgstr "Akcja po zaimportowaniu:"
-#: ../../mod/settings.php:736
+#: ../../mod/settings.php:737
msgid "Mark as seen"
msgstr "Oznacz jako przeczytane"
-#: ../../mod/settings.php:736
+#: ../../mod/settings.php:737
msgid "Move to folder"
msgstr "Przenieś do folderu"
-#: ../../mod/settings.php:737
+#: ../../mod/settings.php:738
msgid "Move to folder:"
msgstr "Przenieś do folderu:"
-#: ../../mod/settings.php:768 ../../mod/admin.php:404
+#: ../../mod/settings.php:769 ../../mod/admin.php:420
msgid "No special theme for mobile devices"
msgstr ""
-#: ../../mod/settings.php:808
+#: ../../mod/settings.php:809
msgid "Display Settings"
msgstr "Wyświetl ustawienia"
-#: ../../mod/settings.php:814 ../../mod/settings.php:825
+#: ../../mod/settings.php:815 ../../mod/settings.php:826
msgid "Display Theme:"
msgstr "Wyświetl motyw:"
-#: ../../mod/settings.php:815
+#: ../../mod/settings.php:816
msgid "Mobile Theme:"
msgstr ""
-#: ../../mod/settings.php:816
+#: ../../mod/settings.php:817
msgid "Update browser every xx seconds"
msgstr "Odświeżaj stronę co xx sekund"
-#: ../../mod/settings.php:816
+#: ../../mod/settings.php:817
msgid "Minimum of 10 seconds, no maximum"
msgstr "Dolny limit 10 sekund, brak górnego limitu"
-#: ../../mod/settings.php:817
+#: ../../mod/settings.php:818
msgid "Number of items to display per page:"
msgstr ""
-#: ../../mod/settings.php:817
+#: ../../mod/settings.php:818
msgid "Maximum of 100 items"
msgstr "Maksymalnie 100 elementów"
-#: ../../mod/settings.php:818
+#: ../../mod/settings.php:819
msgid "Don't show emoticons"
msgstr "Nie pokazuj emotikonek"
-#: ../../mod/settings.php:894
+#: ../../mod/settings.php:895
msgid "Normal Account Page"
msgstr ""
-#: ../../mod/settings.php:895
+#: ../../mod/settings.php:896
msgid "This account is a normal personal profile"
msgstr "To konto jest normalnym osobistym profilem"
-#: ../../mod/settings.php:898
+#: ../../mod/settings.php:899
msgid "Soapbox Page"
msgstr ""
-#: ../../mod/settings.php:899
+#: ../../mod/settings.php:900
msgid "Automatically approve all connection/friend requests as read-only fans"
msgstr "Automatycznie zatwierdzaj wszystkie żądania połączenia/przyłączenia do znajomych jako fanów 'tylko do odczytu'"
-#: ../../mod/settings.php:902
+#: ../../mod/settings.php:903
msgid "Community Forum/Celebrity Account"
msgstr ""
-#: ../../mod/settings.php:903
+#: ../../mod/settings.php:904
msgid ""
"Automatically approve all connection/friend requests as read-write fans"
msgstr "Automatycznie potwierdza wszystkie połączenia jako pełnoprawne z możliwością zapisu."
-#: ../../mod/settings.php:906
+#: ../../mod/settings.php:907
msgid "Automatic Friend Page"
msgstr ""
-#: ../../mod/settings.php:907
+#: ../../mod/settings.php:908
msgid "Automatically approve all connection/friend requests as friends"
msgstr "Automatycznie traktuj wszystkie prośby o połączenia/zaproszenia do grona przyjaciół, jako przyjaciół"
-#: ../../mod/settings.php:910
+#: ../../mod/settings.php:911
msgid "Private Forum [Experimental]"
msgstr ""
-#: ../../mod/settings.php:911
+#: ../../mod/settings.php:912
msgid "Private forum - approved members only"
msgstr ""
-#: ../../mod/settings.php:923
+#: ../../mod/settings.php:924
msgid "OpenID:"
msgstr "OpenID:"
-#: ../../mod/settings.php:923
+#: ../../mod/settings.php:924
msgid "(Optional) Allow this OpenID to login to this account."
msgstr "Przeznacz to OpenID do logowania się na to konto."
-#: ../../mod/settings.php:933
+#: ../../mod/settings.php:934
msgid "Publish your default profile in your local site directory?"
msgstr "Czy publikować Twój profil w lokalnym katalogu tej instancji?"
-#: ../../mod/settings.php:939
+#: ../../mod/settings.php:940
msgid "Publish your default profile in the global social directory?"
msgstr "Opublikować twój niewypełniony profil w globalnym, społecznym katalogu?"
-#: ../../mod/settings.php:947
+#: ../../mod/settings.php:948
msgid "Hide your contact/friend list from viewers of your default profile?"
msgstr "Ukryć listę znajomych przed odwiedzającymi Twój profil?"
-#: ../../mod/settings.php:951
+#: ../../mod/settings.php:952
msgid "Hide your profile details from unknown viewers?"
msgstr "Ukryć szczegóły twojego profilu przed nieznajomymi ?"
-#: ../../mod/settings.php:956
+#: ../../mod/settings.php:957
msgid "Allow friends to post to your profile page?"
msgstr "Zezwól na dodawanie postów na twoim profilu przez znajomych"
-#: ../../mod/settings.php:962
+#: ../../mod/settings.php:963
msgid "Allow friends to tag your posts?"
msgstr "Zezwól na oznaczanie twoich postów przez znajomych"
-#: ../../mod/settings.php:968
+#: ../../mod/settings.php:969
msgid "Allow us to suggest you as a potential friend to new members?"
msgstr ""
-#: ../../mod/settings.php:974
+#: ../../mod/settings.php:975
msgid "Permit unknown people to send you private mail?"
msgstr ""
-#: ../../mod/settings.php:982
+#: ../../mod/settings.php:983
msgid "Profile is not published."
msgstr "Profil nie jest opublikowany"
-#: ../../mod/settings.php:985 ../../mod/profile_photo.php:248
+#: ../../mod/settings.php:986 ../../mod/profile_photo.php:248
msgid "or"
msgstr "lub"
-#: ../../mod/settings.php:990
+#: ../../mod/settings.php:991
msgid "Your Identity Address is"
msgstr "Twój adres identyfikacyjny to"
-#: ../../mod/settings.php:1001
+#: ../../mod/settings.php:1002
msgid "Automatically expire posts after this many days:"
msgstr ""
-#: ../../mod/settings.php:1001
+#: ../../mod/settings.php:1002
msgid "If empty, posts will not expire. Expired posts will be deleted"
msgstr "Pole puste, wiadomość nie wygaśnie. Niezapisane wpisy zostaną usunięte."
-#: ../../mod/settings.php:1002
+#: ../../mod/settings.php:1003
msgid "Advanced expiration settings"
msgstr ""
-#: ../../mod/settings.php:1003
+#: ../../mod/settings.php:1004
msgid "Advanced Expiration"
msgstr ""
-#: ../../mod/settings.php:1004
+#: ../../mod/settings.php:1005
msgid "Expire posts:"
msgstr "Wygasające posty:"
-#: ../../mod/settings.php:1005
+#: ../../mod/settings.php:1006
msgid "Expire personal notes:"
msgstr "Wygasające notatki osobiste:"
-#: ../../mod/settings.php:1006
+#: ../../mod/settings.php:1007
msgid "Expire starred posts:"
msgstr ""
-#: ../../mod/settings.php:1007
+#: ../../mod/settings.php:1008
msgid "Expire photos:"
msgstr "Wygasające zdjęcia:"
-#: ../../mod/settings.php:1008
+#: ../../mod/settings.php:1009
msgid "Only expire posts by others:"
msgstr ""
-#: ../../mod/settings.php:1015
+#: ../../mod/settings.php:1016
msgid "Account Settings"
msgstr "Ustawienia konta"
-#: ../../mod/settings.php:1023
+#: ../../mod/settings.php:1024
msgid "Password Settings"
msgstr "Ustawienia hasła"
-#: ../../mod/settings.php:1024
+#: ../../mod/settings.php:1025
msgid "New Password:"
msgstr "Nowe hasło:"
-#: ../../mod/settings.php:1025
+#: ../../mod/settings.php:1026
msgid "Confirm:"
msgstr "Potwierdź:"
-#: ../../mod/settings.php:1025
+#: ../../mod/settings.php:1026
msgid "Leave password fields blank unless changing"
msgstr "Pozostaw pola hasła puste, chyba że chcesz je zmienić."
-#: ../../mod/settings.php:1029
+#: ../../mod/settings.php:1030
msgid "Basic Settings"
msgstr "Ustawienia podstawowe"
-#: ../../mod/settings.php:1030 ../../include/profile_advanced.php:15
+#: ../../mod/settings.php:1031 ../../include/profile_advanced.php:15
msgid "Full Name:"
msgstr "Imię i nazwisko:"
-#: ../../mod/settings.php:1031
+#: ../../mod/settings.php:1032
msgid "Email Address:"
msgstr "Adres email:"
-#: ../../mod/settings.php:1032
+#: ../../mod/settings.php:1033
msgid "Your Timezone:"
msgstr "Twoja strefa czasowa:"
-#: ../../mod/settings.php:1033
+#: ../../mod/settings.php:1034
msgid "Default Post Location:"
msgstr "Standardowa lokalizacja wiadomości:"
-#: ../../mod/settings.php:1034
+#: ../../mod/settings.php:1035
msgid "Use Browser Location:"
msgstr "Użyj położenia przeglądarki:"
-#: ../../mod/settings.php:1037
+#: ../../mod/settings.php:1038
msgid "Security and Privacy Settings"
msgstr "Ustawienia bezpieczeństwa i prywatności"
-#: ../../mod/settings.php:1039
+#: ../../mod/settings.php:1040
msgid "Maximum Friend Requests/Day:"
msgstr "Maksymalna liczba zaproszeń do grona przyjaciół na dzień:"
-#: ../../mod/settings.php:1039 ../../mod/settings.php:1058
+#: ../../mod/settings.php:1040 ../../mod/settings.php:1059
msgid "(to prevent spam abuse)"
msgstr "(aby zapobiec spamowaniu)"
-#: ../../mod/settings.php:1040
+#: ../../mod/settings.php:1041
msgid "Default Post Permissions"
msgstr "Domyślne prawa dostępu wiadomości"
-#: ../../mod/settings.php:1041
+#: ../../mod/settings.php:1042
msgid "(click to open/close)"
msgstr "(kliknij by otworzyć/zamknąć)"
-#: ../../mod/settings.php:1058
+#: ../../mod/settings.php:1059
msgid "Maximum private messages per day from unknown people:"
msgstr ""
-#: ../../mod/settings.php:1061
+#: ../../mod/settings.php:1062
msgid "Notification Settings"
msgstr "Ustawienia powiadomień"
-#: ../../mod/settings.php:1062
+#: ../../mod/settings.php:1063
msgid "By default post a status message when:"
msgstr ""
-#: ../../mod/settings.php:1063
+#: ../../mod/settings.php:1064
msgid "accepting a friend request"
msgstr ""
-#: ../../mod/settings.php:1064
+#: ../../mod/settings.php:1065
msgid "joining a forum/community"
msgstr ""
-#: ../../mod/settings.php:1065
+#: ../../mod/settings.php:1066
msgid "making an interesting profile change"
msgstr ""
-#: ../../mod/settings.php:1066
+#: ../../mod/settings.php:1067
msgid "Send a notification email when:"
msgstr "Wyślij powiadmonienia na email, kiedy:"
-#: ../../mod/settings.php:1067
+#: ../../mod/settings.php:1068
msgid "You receive an introduction"
msgstr "Otrzymałeś zaproszenie"
-#: ../../mod/settings.php:1068
+#: ../../mod/settings.php:1069
msgid "Your introductions are confirmed"
msgstr "Dane zatwierdzone"
-#: ../../mod/settings.php:1069
+#: ../../mod/settings.php:1070
msgid "Someone writes on your profile wall"
msgstr "Ktoś pisze na twojej ścianie profilowej"
-#: ../../mod/settings.php:1070
+#: ../../mod/settings.php:1071
msgid "Someone writes a followup comment"
msgstr "Ktoś pisze komentarz nawiązujący."
-#: ../../mod/settings.php:1071
+#: ../../mod/settings.php:1072
msgid "You receive a private message"
msgstr "Otrzymałeś prywatną wiadomość"
-#: ../../mod/settings.php:1072
+#: ../../mod/settings.php:1073
msgid "You receive a friend suggestion"
msgstr "Otrzymane propozycje znajomych"
-#: ../../mod/settings.php:1073
+#: ../../mod/settings.php:1074
msgid "You are tagged in a post"
msgstr "Jesteś oznaczony w poście"
-#: ../../mod/settings.php:1074
+#: ../../mod/settings.php:1075
msgid "You are poked/prodded/etc. in a post"
msgstr ""
-#: ../../mod/settings.php:1077
+#: ../../mod/settings.php:1078
msgid "Advanced Account/Page Type Settings"
msgstr ""
-#: ../../mod/settings.php:1078
+#: ../../mod/settings.php:1079
msgid "Change the behaviour of this account for special situations"
msgstr ""
#: ../../mod/manage.php:94
msgid "Manage Identities and/or Pages"
-msgstr ""
+msgstr "Zarządzaj Tożsamościami i/lub Stronami."
#: ../../mod/manage.php:97
msgid ""
@@ -2788,16 +2818,16 @@ msgstr "Prywatne wiadomości do tej osoby mogą zostać publicznie ujawnione "
msgid "Invalid contact."
msgstr "Zły kontakt"
-#: ../../mod/notes.php:44 ../../boot.php:1755
+#: ../../mod/notes.php:44 ../../boot.php:1798
msgid "Personal Notes"
msgstr "Osobiste notatki"
-#: ../../mod/notes.php:63 ../../mod/filer.php:30
+#: ../../mod/notes.php:63 ../../mod/filer.php:31
#: ../../addon/facebook/facebook.php:770
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:281
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:346
#: ../../addon/fbpost/fbpost.php:314
#: ../../addon/dav/friendica/layout.fnk.php:441
-#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:688
+#: ../../addon/dav/friendica/layout.fnk.php:488 ../../include/text.php:742
#: ../../addon.old/facebook/facebook.php:770
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:263
#: ../../addon.old/fbpost/fbpost.php:267
@@ -2821,10 +2851,20 @@ msgid "Move account"
msgstr ""
#: ../../mod/uimport.php:67
+msgid "You can import an account from another Friendica server."
+msgstr ""
+
+#: ../../mod/uimport.php:68
msgid ""
-"You can import an account from another Friendica server. \r\n"
-" You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here. \r\n"
-" This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from diaspora"
+"You need to export your account from the old server and upload it here. We "
+"will recreate your old account here with all your contacts. We will try also"
+" to inform your friends that you moved here."
+msgstr ""
+
+#: ../../mod/uimport.php:69
+msgid ""
+"This feature is experimental. We can't import contacts from the OStatus "
+"network (statusnet/identi.ca) or from Diaspora"
msgstr ""
#: ../../mod/uimport.php:70
@@ -2868,7 +2908,8 @@ msgstr ""
#: ../../mod/wallmessage.php:123 ../../mod/wallmessage.php:131
#: ../../mod/message.php:249 ../../mod/message.php:257
-#: ../../include/conversation.php:905 ../../include/conversation.php:923
+#: ../../mod/message.php:429 ../../mod/message.php:437
+#: ../../include/conversation.php:941 ../../include/conversation.php:959
msgid "Please enter a link URL:"
msgstr "Proszę wpisać adres URL:"
@@ -2884,17 +2925,17 @@ msgid ""
msgstr ""
#: ../../mod/wallmessage.php:140 ../../mod/message.php:286
-#: ../../mod/message.php:476
+#: ../../mod/message.php:516
msgid "To:"
msgstr "Do:"
#: ../../mod/wallmessage.php:141 ../../mod/message.php:291
-#: ../../mod/message.php:478
+#: ../../mod/message.php:518
msgid "Subject:"
msgstr "Temat:"
#: ../../mod/wallmessage.php:147 ../../mod/message.php:295
-#: ../../mod/message.php:481 ../../mod/invite.php:113
+#: ../../mod/message.php:521 ../../mod/invite.php:113
msgid "Your message:"
msgstr "Twoja wiadomość:"
@@ -2949,9 +2990,9 @@ msgid ""
msgstr ""
#: ../../mod/newmember.php:32 ../../mod/profperm.php:103
-#: ../../view/theme/diabook/theme.php:88 ../../include/profile_advanced.php:7
+#: ../../view/theme/diabook/theme.php:89 ../../include/profile_advanced.php:7
#: ../../include/profile_advanced.php:84 ../../include/nav.php:50
-#: ../../boot.php:1731
+#: ../../boot.php:1774
msgid "Profile"
msgstr "Profil"
@@ -3114,7 +3155,7 @@ msgstr "Grupa utworzona."
msgid "Could not create group."
msgstr "Nie mogę stworzyć grupy"
-#: ../../mod/group.php:47 ../../mod/group.php:137
+#: ../../mod/group.php:47 ../../mod/group.php:140
msgid "Group not found."
msgstr "Nie znaleziono grupy"
@@ -3126,31 +3167,31 @@ msgstr "Nazwa grupy zmieniona"
msgid "Permission denied"
msgstr "Odmowa dostępu"
-#: ../../mod/group.php:90
+#: ../../mod/group.php:93
msgid "Create a group of contacts/friends."
msgstr "Stwórz grupę znajomych."
-#: ../../mod/group.php:91 ../../mod/group.php:177
+#: ../../mod/group.php:94 ../../mod/group.php:180
msgid "Group Name: "
msgstr "Nazwa grupy: "
-#: ../../mod/group.php:110
+#: ../../mod/group.php:113
msgid "Group removed."
msgstr "Grupa usunięta."
-#: ../../mod/group.php:112
+#: ../../mod/group.php:115
msgid "Unable to remove group."
msgstr "Nie można usunąć grupy."
-#: ../../mod/group.php:176
+#: ../../mod/group.php:179
msgid "Group Editor"
msgstr "Edytor grupy"
-#: ../../mod/group.php:189
+#: ../../mod/group.php:192
msgid "Members"
msgstr "Członkowie"
-#: ../../mod/group.php:221 ../../mod/profperm.php:105
+#: ../../mod/group.php:223 ../../mod/profperm.php:105
msgid "Click on a contact to add or remove."
msgstr "Kliknij na kontakt w celu dodania lub usunięcia."
@@ -3174,7 +3215,7 @@ msgstr "Wszystkie kontakty (z bezpiecznym dostępem do profilu)"
msgid "No contacts."
msgstr "brak kontaktów"
-#: ../../mod/viewcontacts.php:76 ../../include/text.php:625
+#: ../../mod/viewcontacts.php:76 ../../include/text.php:679
msgid "View Contacts"
msgstr "widok kontaktów"
@@ -3209,7 +3250,7 @@ msgstr "Twoja rejestracja oczekuje na zaakceptowanie przez właściciela witryny
msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking 'Register'."
-msgstr ""
+msgstr "Masz możliwość (opcjonalnie) wypełnić ten formularz przez OpenID poprzez załączenie Twojego OpenID i kliknięcie 'Zarejestruj'."
#: ../../mod/register.php:219
msgid ""
@@ -3233,7 +3274,7 @@ msgstr "Członkostwo na tej stronie możliwe tylko dzięki zaproszeniu."
msgid "Your invitation ID: "
msgstr "Twoje zaproszenia ID:"
-#: ../../mod/register.php:260 ../../mod/admin.php:446
+#: ../../mod/register.php:260 ../../mod/admin.php:462
msgid "Registration"
msgstr "Rejestracja"
@@ -3256,7 +3297,7 @@ msgstr "Wybierz login. Login musi zaczynać się literą. Adres twojego profilu
msgid "Choose a nickname: "
msgstr "Wybierz pseudonim:"
-#: ../../mod/register.php:274 ../../include/nav.php:81 ../../boot.php:923
+#: ../../mod/register.php:274 ../../include/nav.php:81 ../../boot.php:951
msgid "Register"
msgstr "Zarejestruj"
@@ -3265,9 +3306,9 @@ msgid "People Search"
msgstr "Szukaj osób"
#: ../../mod/like.php:145 ../../mod/subthread.php:87 ../../mod/tagger.php:62
-#: ../../addon/communityhome/communityhome.php:163
-#: ../../view/theme/diabook/theme.php:464 ../../include/text.php:1442
-#: ../../include/diaspora.php:1848 ../../include/conversation.php:125
+#: ../../addon/communityhome/communityhome.php:166
+#: ../../view/theme/diabook/theme.php:465 ../../include/text.php:1499
+#: ../../include/diaspora.php:1851 ../../include/conversation.php:125
#: ../../include/conversation.php:253
#: ../../addon.old/communityhome/communityhome.php:163
msgid "photo"
@@ -3275,10 +3316,10 @@ msgstr "zdjęcie"
#: ../../mod/like.php:145 ../../mod/like.php:298 ../../mod/subthread.php:87
#: ../../mod/tagger.php:62 ../../addon/facebook/facebook.php:1598
-#: ../../addon/communityhome/communityhome.php:158
-#: ../../addon/communityhome/communityhome.php:167
-#: ../../view/theme/diabook/theme.php:459
-#: ../../view/theme/diabook/theme.php:468 ../../include/diaspora.php:1848
+#: ../../addon/communityhome/communityhome.php:161
+#: ../../addon/communityhome/communityhome.php:170
+#: ../../view/theme/diabook/theme.php:460
+#: ../../view/theme/diabook/theme.php:469 ../../include/diaspora.php:1851
#: ../../include/conversation.php:120 ../../include/conversation.php:129
#: ../../include/conversation.php:248 ../../include/conversation.php:257
#: ../../addon.old/facebook/facebook.php:1598
@@ -3288,8 +3329,8 @@ msgid "status"
msgstr "status"
#: ../../mod/like.php:162 ../../addon/facebook/facebook.php:1602
-#: ../../addon/communityhome/communityhome.php:172
-#: ../../view/theme/diabook/theme.php:473 ../../include/diaspora.php:1864
+#: ../../addon/communityhome/communityhome.php:175
+#: ../../view/theme/diabook/theme.php:474 ../../include/diaspora.php:1867
#: ../../include/conversation.php:136
#: ../../addon.old/facebook/facebook.php:1602
#: ../../addon.old/communityhome/communityhome.php:172
@@ -3303,8 +3344,8 @@ msgid "%1$s doesn't like %2$s's %3$s"
msgstr "%1$s nie lubi %2$s's %3$s"
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159
-#: ../../mod/admin.php:737 ../../mod/admin.php:936 ../../mod/display.php:39
-#: ../../mod/display.php:169 ../../include/items.php:3843
+#: ../../mod/admin.php:773 ../../mod/admin.php:972 ../../mod/display.php:39
+#: ../../mod/display.php:169 ../../include/items.php:3853
msgid "Item not found."
msgstr "Element nie znaleziony."
@@ -3312,12 +3353,12 @@ msgstr "Element nie znaleziony."
msgid "Access denied."
msgstr "Brak dostępu"
-#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:90
-#: ../../include/nav.php:51 ../../boot.php:1738
+#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:91
+#: ../../include/nav.php:51 ../../boot.php:1781
msgid "Photos"
msgstr "Zdjęcia"
-#: ../../mod/fbrowser.php:96
+#: ../../mod/fbrowser.php:113
msgid "Files"
msgstr "Pliki"
@@ -3504,15 +3545,15 @@ msgstr "Ty i %s"
msgid "%s and You"
msgstr "%s i ty"
-#: ../../mod/message.php:357 ../../mod/message.php:469
+#: ../../mod/message.php:368 ../../mod/message.php:509
msgid "Delete conversation"
msgstr "Usuń rozmowę"
-#: ../../mod/message.php:360
+#: ../../mod/message.php:371
msgid "D, d M Y - g:i A"
msgstr "D, d M R - g:m AM/PM"
-#: ../../mod/message.php:363
+#: ../../mod/message.php:374
#, php-format
msgid "%d message"
msgid_plural "%d messages"
@@ -3520,21 +3561,21 @@ msgstr[0] " %d wiadomość"
msgstr[1] " %d wiadomości"
msgstr[2] " %d wiadomości"
-#: ../../mod/message.php:398
+#: ../../mod/message.php:413
msgid "Message not available."
msgstr "Wiadomość nie jest dostępna."
-#: ../../mod/message.php:451
+#: ../../mod/message.php:483
msgid "Delete message"
msgstr "Usuń wiadomość"
-#: ../../mod/message.php:471
+#: ../../mod/message.php:511
msgid ""
"No secure communications available. You may be able to "
"respond from the sender's profile page."
msgstr ""
-#: ../../mod/message.php:475
+#: ../../mod/message.php:515
msgid "Send Reply"
msgstr "Odpowiedz"
@@ -3551,19 +3592,19 @@ msgstr "Brak znajomych do wyświetlenia"
msgid "Theme settings updated."
msgstr ""
-#: ../../mod/admin.php:96 ../../mod/admin.php:444
+#: ../../mod/admin.php:96 ../../mod/admin.php:460
msgid "Site"
msgstr "Strona"
-#: ../../mod/admin.php:97 ../../mod/admin.php:691 ../../mod/admin.php:704
+#: ../../mod/admin.php:97 ../../mod/admin.php:727 ../../mod/admin.php:740
msgid "Users"
msgstr "Użytkownicy"
-#: ../../mod/admin.php:98 ../../mod/admin.php:786 ../../mod/admin.php:828
+#: ../../mod/admin.php:98 ../../mod/admin.php:822 ../../mod/admin.php:864
msgid "Plugins"
msgstr "Wtyczki"
-#: ../../mod/admin.php:99 ../../mod/admin.php:991 ../../mod/admin.php:1027
+#: ../../mod/admin.php:99 ../../mod/admin.php:1027 ../../mod/admin.php:1063
msgid "Themes"
msgstr "Temat"
@@ -3571,11 +3612,11 @@ msgstr "Temat"
msgid "DB updates"
msgstr ""
-#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1114
+#: ../../mod/admin.php:115 ../../mod/admin.php:122 ../../mod/admin.php:1150
msgid "Logs"
msgstr "Logi"
-#: ../../mod/admin.php:120 ../../include/nav.php:149
+#: ../../mod/admin.php:120 ../../include/nav.php:151
msgid "Admin"
msgstr "Administator"
@@ -3587,19 +3628,19 @@ msgstr "Polecane wtyczki"
msgid "User registrations waiting for confirmation"
msgstr "Rejestracje użytkownika czekają na potwierdzenie."
-#: ../../mod/admin.php:183 ../../mod/admin.php:672
+#: ../../mod/admin.php:183 ../../mod/admin.php:698
msgid "Normal Account"
msgstr "Konto normalne"
-#: ../../mod/admin.php:184 ../../mod/admin.php:673
+#: ../../mod/admin.php:184 ../../mod/admin.php:699
msgid "Soapbox Account"
msgstr ""
-#: ../../mod/admin.php:185 ../../mod/admin.php:674
+#: ../../mod/admin.php:185 ../../mod/admin.php:700
msgid "Community/Celebrity Account"
msgstr "Konto społeczności/gwiazdy"
-#: ../../mod/admin.php:186 ../../mod/admin.php:675
+#: ../../mod/admin.php:186 ../../mod/admin.php:701
msgid "Automatic Friend Account"
msgstr "Automatyczny przyjaciel konta"
@@ -3615,9 +3656,9 @@ msgstr ""
msgid "Message queues"
msgstr ""
-#: ../../mod/admin.php:212 ../../mod/admin.php:443 ../../mod/admin.php:690
-#: ../../mod/admin.php:785 ../../mod/admin.php:827 ../../mod/admin.php:990
-#: ../../mod/admin.php:1026 ../../mod/admin.php:1113
+#: ../../mod/admin.php:212 ../../mod/admin.php:459 ../../mod/admin.php:726
+#: ../../mod/admin.php:821 ../../mod/admin.php:863 ../../mod/admin.php:1026
+#: ../../mod/admin.php:1062 ../../mod/admin.php:1149
msgid "Administration"
msgstr "Administracja"
@@ -3641,391 +3682,439 @@ msgstr "Wersja"
msgid "Active plugins"
msgstr "Aktywne pluginy"
-#: ../../mod/admin.php:375
+#: ../../mod/admin.php:391
msgid "Site settings updated."
msgstr "Ustawienia strony zaktualizowane"
-#: ../../mod/admin.php:430
+#: ../../mod/admin.php:446
msgid "Closed"
msgstr "Zamknięty"
-#: ../../mod/admin.php:431
+#: ../../mod/admin.php:447
msgid "Requires approval"
msgstr "Wymagane zatwierdzenie."
-#: ../../mod/admin.php:432
+#: ../../mod/admin.php:448
msgid "Open"
msgstr "Otwórz"
-#: ../../mod/admin.php:436
+#: ../../mod/admin.php:452
msgid "No SSL policy, links will track page SSL state"
msgstr ""
-#: ../../mod/admin.php:437
+#: ../../mod/admin.php:453
msgid "Force all links to use SSL"
msgstr ""
-#: ../../mod/admin.php:438
+#: ../../mod/admin.php:454
msgid "Self-signed certificate, use SSL for local links only (discouraged)"
msgstr ""
-#: ../../mod/admin.php:447
+#: ../../mod/admin.php:463
msgid "File upload"
msgstr "Plik załadowano"
-#: ../../mod/admin.php:448
+#: ../../mod/admin.php:464
msgid "Policies"
msgstr "zasady"
-#: ../../mod/admin.php:449
+#: ../../mod/admin.php:465
msgid "Advanced"
msgstr "Zaawansowany"
-#: ../../mod/admin.php:453 ../../addon/statusnet/statusnet.php:691
+#: ../../mod/admin.php:466
+msgid "Performance"
+msgstr ""
+
+#: ../../mod/admin.php:470 ../../addon/statusnet/statusnet.php:694
#: ../../addon.old/statusnet/statusnet.php:567
msgid "Site name"
msgstr "Nazwa strony"
-#: ../../mod/admin.php:454
+#: ../../mod/admin.php:471
msgid "Banner/Logo"
msgstr "Logo"
-#: ../../mod/admin.php:455
+#: ../../mod/admin.php:472
msgid "System language"
msgstr "Język systemu"
-#: ../../mod/admin.php:456
+#: ../../mod/admin.php:473
msgid "System theme"
msgstr "Motyw systemowy"
-#: ../../mod/admin.php:456
+#: ../../mod/admin.php:473
msgid ""
"Default system theme - may be over-ridden by user profiles - change theme settings"
msgstr ""
-#: ../../mod/admin.php:457
+#: ../../mod/admin.php:474
msgid "Mobile system theme"
msgstr ""
-#: ../../mod/admin.php:457
+#: ../../mod/admin.php:474
msgid "Theme for mobile devices"
msgstr ""
-#: ../../mod/admin.php:458
+#: ../../mod/admin.php:475
msgid "SSL link policy"
msgstr ""
-#: ../../mod/admin.php:458
+#: ../../mod/admin.php:475
msgid "Determines whether generated links should be forced to use SSL"
msgstr ""
-#: ../../mod/admin.php:459
+#: ../../mod/admin.php:476
+msgid "'Share' element"
+msgstr ""
+
+#: ../../mod/admin.php:476
+msgid "Activates the bbcode element 'share' for repeating items."
+msgstr ""
+
+#: ../../mod/admin.php:477
msgid "Maximum image size"
msgstr "Maksymalny rozmiar zdjęcia"
-#: ../../mod/admin.php:459
+#: ../../mod/admin.php:477
msgid ""
"Maximum size in bytes of uploaded images. Default is 0, which means no "
"limits."
msgstr ""
-#: ../../mod/admin.php:460
+#: ../../mod/admin.php:478
msgid "Maximum image length"
msgstr "Maksymalna długość obrazu"
-#: ../../mod/admin.php:460
+#: ../../mod/admin.php:478
msgid ""
"Maximum length in pixels of the longest side of uploaded images. Default is "
"-1, which means no limits."
msgstr "Maksymalna długość najdłuższej strony przesyłanego obrazu w pikselach.\nDomyślnie jest to -1, co oznacza brak limitu."
-#: ../../mod/admin.php:461
+#: ../../mod/admin.php:479
msgid "JPEG image quality"
msgstr "jakość obrazu JPEG"
-#: ../../mod/admin.php:461
+#: ../../mod/admin.php:479
msgid ""
"Uploaded JPEGS will be saved at this quality setting [0-100]. Default is "
"100, which is full quality."
msgstr ""
-#: ../../mod/admin.php:463
+#: ../../mod/admin.php:481
msgid "Register policy"
msgstr "Zarejestruj polisę"
-#: ../../mod/admin.php:464
+#: ../../mod/admin.php:482
msgid "Maximum Daily Registrations"
msgstr ""
-#: ../../mod/admin.php:464
+#: ../../mod/admin.php:482
msgid ""
"If registration is permitted above, this sets the maximum number of new user"
" registrations to accept per day. If register is set to closed, this "
"setting has no effect."
msgstr ""
-#: ../../mod/admin.php:465
+#: ../../mod/admin.php:483
msgid "Register text"
msgstr "Zarejestruj tekst"
-#: ../../mod/admin.php:465
+#: ../../mod/admin.php:483
msgid "Will be displayed prominently on the registration page."
msgstr ""
-#: ../../mod/admin.php:466
+#: ../../mod/admin.php:484
msgid "Accounts abandoned after x days"
msgstr "Konto porzucone od x dni."
-#: ../../mod/admin.php:466
+#: ../../mod/admin.php:484
msgid ""
"Will not waste system resources polling external sites for abandonded "
"accounts. Enter 0 for no time limit."
msgstr ""
-#: ../../mod/admin.php:467
+#: ../../mod/admin.php:485
msgid "Allowed friend domains"
msgstr "Dozwolone domeny przyjaciół"
-#: ../../mod/admin.php:467
+#: ../../mod/admin.php:485
msgid ""
"Comma separated list of domains which are allowed to establish friendships "
"with this site. Wildcards are accepted. Empty to allow any domains"
msgstr ""
-#: ../../mod/admin.php:468
+#: ../../mod/admin.php:486
msgid "Allowed email domains"
msgstr "Dozwolone domeny e-mailowe"
-#: ../../mod/admin.php:468
+#: ../../mod/admin.php:486
msgid ""
"Comma separated list of domains which are allowed in email addresses for "
"registrations to this site. Wildcards are accepted. Empty to allow any "
"domains"
msgstr ""
-#: ../../mod/admin.php:469
+#: ../../mod/admin.php:487
msgid "Block public"
msgstr "Blokuj publicznie"
-#: ../../mod/admin.php:469
+#: ../../mod/admin.php:487
msgid ""
"Check to block public access to all otherwise public personal pages on this "
"site unless you are currently logged in."
msgstr ""
-#: ../../mod/admin.php:470
+#: ../../mod/admin.php:488
msgid "Force publish"
msgstr "Wymuś publikację"
-#: ../../mod/admin.php:470
+#: ../../mod/admin.php:488
msgid ""
"Check to force all profiles on this site to be listed in the site directory."
msgstr ""
-#: ../../mod/admin.php:471
+#: ../../mod/admin.php:489
msgid "Global directory update URL"
msgstr ""
-#: ../../mod/admin.php:471
+#: ../../mod/admin.php:489
msgid ""
"URL to update the global directory. If this is not set, the global directory"
" is completely unavailable to the application."
msgstr ""
-#: ../../mod/admin.php:472
+#: ../../mod/admin.php:490
msgid "Allow threaded items"
msgstr ""
-#: ../../mod/admin.php:472
+#: ../../mod/admin.php:490
msgid "Allow infinite level threading for items on this site."
msgstr ""
-#: ../../mod/admin.php:473
+#: ../../mod/admin.php:491
msgid "Private posts by default for new users"
msgstr ""
-#: ../../mod/admin.php:473
+#: ../../mod/admin.php:491
msgid ""
"Set default post permissions for all new members to the default privacy "
"group rather than public."
msgstr ""
-#: ../../mod/admin.php:475
+#: ../../mod/admin.php:493
msgid "Block multiple registrations"
msgstr ""
-#: ../../mod/admin.php:475
+#: ../../mod/admin.php:493
msgid "Disallow users to register additional accounts for use as pages."
msgstr ""
-#: ../../mod/admin.php:476
+#: ../../mod/admin.php:494
msgid "OpenID support"
msgstr "Wsparcie OpenID"
-#: ../../mod/admin.php:476
+#: ../../mod/admin.php:494
msgid "OpenID support for registration and logins."
msgstr ""
-#: ../../mod/admin.php:477
+#: ../../mod/admin.php:495
msgid "Fullname check"
msgstr ""
-#: ../../mod/admin.php:477
+#: ../../mod/admin.php:495
msgid ""
"Force users to register with a space between firstname and lastname in Full "
"name, as an antispam measure"
msgstr ""
-#: ../../mod/admin.php:478
+#: ../../mod/admin.php:496
msgid "UTF-8 Regular expressions"
msgstr ""
-#: ../../mod/admin.php:478
+#: ../../mod/admin.php:496
msgid "Use PHP UTF8 regular expressions"
msgstr ""
-#: ../../mod/admin.php:479
+#: ../../mod/admin.php:497
msgid "Show Community Page"
msgstr "Pokaż stronę społeczności"
-#: ../../mod/admin.php:479
+#: ../../mod/admin.php:497
msgid ""
"Display a Community page showing all recent public postings on this site."
msgstr ""
-#: ../../mod/admin.php:480
+#: ../../mod/admin.php:498
msgid "Enable OStatus support"
msgstr ""
-#: ../../mod/admin.php:480
+#: ../../mod/admin.php:498
msgid ""
"Provide built-in OStatus (identi.ca, status.net, etc.) compatibility. All "
"communications in OStatus are public, so privacy warnings will be "
"occasionally displayed."
msgstr ""
-#: ../../mod/admin.php:481
+#: ../../mod/admin.php:499
msgid "Enable Diaspora support"
msgstr ""
-#: ../../mod/admin.php:481
+#: ../../mod/admin.php:499
msgid "Provide built-in Diaspora network compatibility."
msgstr ""
-#: ../../mod/admin.php:482
+#: ../../mod/admin.php:500
msgid "Only allow Friendica contacts"
msgstr ""
-#: ../../mod/admin.php:482
+#: ../../mod/admin.php:500
msgid ""
"All contacts must use Friendica protocols. All other built-in communication "
"protocols disabled."
msgstr ""
-#: ../../mod/admin.php:483
+#: ../../mod/admin.php:501
msgid "Verify SSL"
msgstr "Weryfikacja SSL"
-#: ../../mod/admin.php:483
+#: ../../mod/admin.php:501
msgid ""
"If you wish, you can turn on strict certificate checking. This will mean you"
" cannot connect (at all) to self-signed SSL sites."
msgstr ""
-#: ../../mod/admin.php:484
+#: ../../mod/admin.php:502
msgid "Proxy user"
msgstr "Użytkownik proxy"
-#: ../../mod/admin.php:485
+#: ../../mod/admin.php:503
msgid "Proxy URL"
msgstr ""
-#: ../../mod/admin.php:486
+#: ../../mod/admin.php:504
msgid "Network timeout"
msgstr ""
-#: ../../mod/admin.php:486
+#: ../../mod/admin.php:504
msgid "Value is in seconds. Set to 0 for unlimited (not recommended)."
msgstr ""
-#: ../../mod/admin.php:487
+#: ../../mod/admin.php:505
msgid "Delivery interval"
msgstr ""
-#: ../../mod/admin.php:487
+#: ../../mod/admin.php:505
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 ""
-#: ../../mod/admin.php:488
+#: ../../mod/admin.php:506
msgid "Poll interval"
msgstr ""
-#: ../../mod/admin.php:488
+#: ../../mod/admin.php:506
msgid ""
"Delay background polling processes by this many seconds to reduce system "
"load. If 0, use delivery interval."
msgstr ""
-#: ../../mod/admin.php:489
+#: ../../mod/admin.php:507
msgid "Maximum Load Average"
msgstr ""
-#: ../../mod/admin.php:489
+#: ../../mod/admin.php:507
msgid ""
"Maximum system load before delivery and poll processes are deferred - "
"default 50."
msgstr ""
-#: ../../mod/admin.php:506
+#: ../../mod/admin.php:509
+msgid "Use MySQL full text engine"
+msgstr ""
+
+#: ../../mod/admin.php:509
+msgid ""
+"Activates the full text engine. Speeds up search - but can only search for "
+"four and more characters."
+msgstr ""
+
+#: ../../mod/admin.php:510
+msgid "Path to item cache"
+msgstr ""
+
+#: ../../mod/admin.php:511
+msgid "Cache duration in seconds"
+msgstr ""
+
+#: ../../mod/admin.php:511
+msgid ""
+"How long should the cache files be hold? Default value is 86400 seconds (One"
+" day)."
+msgstr ""
+
+#: ../../mod/admin.php:512
+msgid "Path for lock file"
+msgstr ""
+
+#: ../../mod/admin.php:513
+msgid "Temp path"
+msgstr ""
+
+#: ../../mod/admin.php:514
+msgid "Base path to installation"
+msgstr ""
+
+#: ../../mod/admin.php:532
msgid "Update has been marked successful"
msgstr ""
-#: ../../mod/admin.php:516
+#: ../../mod/admin.php:542
#, php-format
msgid "Executing %s failed. Check system logs."
msgstr ""
-#: ../../mod/admin.php:519
+#: ../../mod/admin.php:545
#, php-format
msgid "Update %s was successfully applied."
msgstr ""
-#: ../../mod/admin.php:523
+#: ../../mod/admin.php:549
#, php-format
msgid "Update %s did not return a status. Unknown if it succeeded."
msgstr ""
-#: ../../mod/admin.php:526
+#: ../../mod/admin.php:552
#, php-format
msgid "Update function %s could not be found."
msgstr ""
-#: ../../mod/admin.php:541
+#: ../../mod/admin.php:567
msgid "No failed updates."
msgstr "Brak błędów aktualizacji."
-#: ../../mod/admin.php:545
+#: ../../mod/admin.php:571
msgid "Failed Updates"
msgstr "Błąd aktualizacji"
-#: ../../mod/admin.php:546
+#: ../../mod/admin.php:572
msgid ""
"This does not include updates prior to 1139, which did not return a status."
msgstr ""
-#: ../../mod/admin.php:547
+#: ../../mod/admin.php:573
msgid "Mark success (if update was manually applied)"
msgstr ""
-#: ../../mod/admin.php:548
+#: ../../mod/admin.php:574
msgid "Attempt to execute this update step automatically"
msgstr ""
-#: ../../mod/admin.php:573
+#: ../../mod/admin.php:599
#, php-format
msgid "%s user blocked/unblocked"
msgid_plural "%s users blocked/unblocked"
@@ -4033,7 +4122,7 @@ msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
-#: ../../mod/admin.php:580
+#: ../../mod/admin.php:606
#, php-format
msgid "%s user deleted"
msgid_plural "%s users deleted"
@@ -4041,180 +4130,180 @@ msgstr[0] " %s użytkownik usunięty"
msgstr[1] " %s użytkownicy usunięci"
msgstr[2] " %s usuniętych użytkowników "
-#: ../../mod/admin.php:619
+#: ../../mod/admin.php:645
#, php-format
msgid "User '%s' deleted"
msgstr "Użytkownik '%s' usunięty"
-#: ../../mod/admin.php:627
+#: ../../mod/admin.php:653
#, php-format
msgid "User '%s' unblocked"
msgstr "Użytkownik '%s' odblokowany"
-#: ../../mod/admin.php:627
+#: ../../mod/admin.php:653
#, php-format
msgid "User '%s' blocked"
msgstr "Użytkownik '%s' zablokowany"
-#: ../../mod/admin.php:693
+#: ../../mod/admin.php:729
msgid "select all"
msgstr "Zaznacz wszystko"
-#: ../../mod/admin.php:694
+#: ../../mod/admin.php:730
msgid "User registrations waiting for confirm"
msgstr "zarejestrowany użytkownik czeka na potwierdzenie"
-#: ../../mod/admin.php:695
+#: ../../mod/admin.php:731
msgid "Request date"
msgstr "Data prośby"
-#: ../../mod/admin.php:695 ../../mod/admin.php:705
+#: ../../mod/admin.php:731 ../../mod/admin.php:741
#: ../../include/contact_selectors.php:79
#: ../../include/contact_selectors.php:86
msgid "Email"
msgstr "E-mail"
-#: ../../mod/admin.php:696
+#: ../../mod/admin.php:732
msgid "No registrations."
msgstr "brak rejestracji"
-#: ../../mod/admin.php:698
+#: ../../mod/admin.php:734
msgid "Deny"
msgstr "Odmów"
-#: ../../mod/admin.php:702
+#: ../../mod/admin.php:738
msgid "Site admin"
msgstr "Administracja stroną"
-#: ../../mod/admin.php:705
+#: ../../mod/admin.php:741
msgid "Register date"
msgstr "Data rejestracji"
-#: ../../mod/admin.php:705
+#: ../../mod/admin.php:741
msgid "Last login"
msgstr "Ostatnie logowanie"
-#: ../../mod/admin.php:705
+#: ../../mod/admin.php:741
msgid "Last item"
msgstr "Ostatni element"
-#: ../../mod/admin.php:705
+#: ../../mod/admin.php:741
msgid "Account"
msgstr "Konto"
-#: ../../mod/admin.php:707
+#: ../../mod/admin.php:743
msgid ""
"Selected users will be deleted!\\n\\nEverything these users had posted on "
"this site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Zaznaczeni użytkownicy zostaną usunięci!\\n\\nWszystko co zamieścili na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?"
-#: ../../mod/admin.php:708
+#: ../../mod/admin.php:744
msgid ""
"The user {0} will be deleted!\\n\\nEverything this user has posted on this "
"site will be permanently deleted!\\n\\nAre you sure?"
msgstr "Użytkownik {0} zostanie usunięty!\\n\\nWszystko co zamieścił na tej stronie będzie trwale skasowane!\\n\\nJesteś pewien?"
-#: ../../mod/admin.php:749
+#: ../../mod/admin.php:785
#, php-format
msgid "Plugin %s disabled."
msgstr "Wtyczka %s wyłączona."
-#: ../../mod/admin.php:753
+#: ../../mod/admin.php:789
#, php-format
msgid "Plugin %s enabled."
msgstr "Wtyczka %s właczona."
-#: ../../mod/admin.php:763 ../../mod/admin.php:961
+#: ../../mod/admin.php:799 ../../mod/admin.php:997
msgid "Disable"
msgstr "Wyłącz"
-#: ../../mod/admin.php:765 ../../mod/admin.php:963
+#: ../../mod/admin.php:801 ../../mod/admin.php:999
msgid "Enable"
msgstr "Zezwól"
-#: ../../mod/admin.php:787 ../../mod/admin.php:992
+#: ../../mod/admin.php:823 ../../mod/admin.php:1028
msgid "Toggle"
msgstr "Włącz"
-#: ../../mod/admin.php:795 ../../mod/admin.php:1002
+#: ../../mod/admin.php:831 ../../mod/admin.php:1038
msgid "Author: "
msgstr "Autor: "
-#: ../../mod/admin.php:796 ../../mod/admin.php:1003
+#: ../../mod/admin.php:832 ../../mod/admin.php:1039
msgid "Maintainer: "
msgstr ""
-#: ../../mod/admin.php:925
+#: ../../mod/admin.php:961
msgid "No themes found."
msgstr "Nie znaleziono tematu."
-#: ../../mod/admin.php:984
+#: ../../mod/admin.php:1020
msgid "Screenshot"
msgstr "Zrzut ekranu"
-#: ../../mod/admin.php:1032
+#: ../../mod/admin.php:1068
msgid "[Experimental]"
msgstr "[Eksperymentalne]"
-#: ../../mod/admin.php:1033
+#: ../../mod/admin.php:1069
msgid "[Unsupported]"
msgstr "[Niewspieralne]"
-#: ../../mod/admin.php:1060
+#: ../../mod/admin.php:1096
msgid "Log settings updated."
msgstr ""
-#: ../../mod/admin.php:1116
+#: ../../mod/admin.php:1152
msgid "Clear"
msgstr "Wyczyść"
-#: ../../mod/admin.php:1122
+#: ../../mod/admin.php:1158
msgid "Debugging"
msgstr ""
-#: ../../mod/admin.php:1123
+#: ../../mod/admin.php:1159
msgid "Log file"
msgstr ""
-#: ../../mod/admin.php:1123
+#: ../../mod/admin.php:1159
msgid ""
"Must be writable by web server. Relative to your Friendica top-level "
"directory."
msgstr ""
-#: ../../mod/admin.php:1124
+#: ../../mod/admin.php:1160
msgid "Log level"
msgstr ""
-#: ../../mod/admin.php:1174
+#: ../../mod/admin.php:1210
msgid "Close"
msgstr "Zamknij"
-#: ../../mod/admin.php:1180
+#: ../../mod/admin.php:1216
msgid "FTP Host"
msgstr "Założyciel FTP"
-#: ../../mod/admin.php:1181
+#: ../../mod/admin.php:1217
msgid "FTP Path"
msgstr "Ścieżka FTP"
-#: ../../mod/admin.php:1182
+#: ../../mod/admin.php:1218
msgid "FTP User"
msgstr "Użytkownik FTP"
-#: ../../mod/admin.php:1183
+#: ../../mod/admin.php:1219
msgid "FTP Password"
msgstr "FTP Hasło"
-#: ../../mod/profile.php:21 ../../boot.php:1126
+#: ../../mod/profile.php:21 ../../boot.php:1160
msgid "Requested profile is not available."
msgstr "Żądany profil jest niedostępny"
-#: ../../mod/profile.php:155 ../../mod/display.php:87
+#: ../../mod/profile.php:156 ../../mod/display.php:87
msgid "Access to this profile has been restricted."
msgstr "Ograniczony dostęp do tego konta"
-#: ../../mod/profile.php:180
+#: ../../mod/profile.php:181
msgid "Tips for New Members"
msgstr "Wskazówki dla nowych użytkowników"
@@ -4263,7 +4352,7 @@ msgstr ""
msgid "{0} mentioned you in a post"
msgstr "{0} wspomniał Cię w swoim wpisie"
-#: ../../mod/nogroup.php:58
+#: ../../mod/nogroup.php:59
msgid "Contacts who are not members of a group"
msgstr ""
@@ -4276,8 +4365,8 @@ msgid ""
"Account not found and OpenID registration is not permitted on this site."
msgstr ""
-#: ../../mod/openid.php:93 ../../include/auth.php:110
-#: ../../include/auth.php:173
+#: ../../mod/openid.php:93 ../../include/auth.php:112
+#: ../../include/auth.php:175
msgid "Login failed."
msgstr "Niepowodzenie logowania"
@@ -4298,7 +4387,7 @@ msgstr ""
msgid "%1$s is following %2$s's %3$s"
msgstr ""
-#: ../../mod/share.php:28
+#: ../../mod/share.php:43
msgid "link"
msgstr ""
@@ -4314,8 +4403,8 @@ msgstr "Aplikacje"
msgid "No installed applications."
msgstr "Brak zainstalowanych aplikacji."
-#: ../../mod/search.php:99 ../../include/text.php:685
-#: ../../include/text.php:686 ../../include/nav.php:91
+#: ../../mod/search.php:99 ../../include/text.php:739
+#: ../../include/text.php:740 ../../include/nav.php:91
msgid "Search"
msgstr "Szukaj"
@@ -4612,32 +4701,32 @@ msgstr "Wiek: "
msgid "Edit/Manage Profiles"
msgstr "Edytuj/Zarządzaj Profilami"
-#: ../../mod/profiles.php:700 ../../boot.php:1244
+#: ../../mod/profiles.php:700 ../../boot.php:1278
msgid "Change profile photo"
msgstr "Zmień zdjęcie profilowe"
-#: ../../mod/profiles.php:701 ../../boot.php:1245
+#: ../../mod/profiles.php:701 ../../boot.php:1279
msgid "Create New Profile"
msgstr "Stwórz nowy profil"
-#: ../../mod/profiles.php:712 ../../boot.php:1255
+#: ../../mod/profiles.php:712 ../../boot.php:1289
msgid "Profile Image"
msgstr "Obraz profilowy"
-#: ../../mod/profiles.php:714 ../../boot.php:1258
+#: ../../mod/profiles.php:714 ../../boot.php:1292
msgid "visible to everybody"
msgstr "widoczne dla wszystkich"
-#: ../../mod/profiles.php:715 ../../boot.php:1259
+#: ../../mod/profiles.php:715 ../../boot.php:1293
msgid "Edit visibility"
msgstr "Edytuj widoczność"
-#: ../../mod/filer.php:29 ../../include/conversation.php:909
-#: ../../include/conversation.php:927
+#: ../../mod/filer.php:30 ../../include/conversation.php:945
+#: ../../include/conversation.php:963
msgid "Save to Folder:"
msgstr "Zapisz w folderze:"
-#: ../../mod/filer.php:29
+#: ../../mod/filer.php:30
msgid "- select -"
msgstr "- wybierz -"
@@ -4650,7 +4739,7 @@ msgstr ""
msgid "No potential page delegates located."
msgstr ""
-#: ../../mod/delegate.php:121
+#: ../../mod/delegate.php:121 ../../include/nav.php:138
msgid "Delegate Page Management"
msgstr ""
@@ -4725,7 +4814,7 @@ msgstr ""
msgid "diaspora2bb: "
msgstr ""
-#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:520
+#: ../../mod/suggest.php:38 ../../view/theme/diabook/theme.php:521
#: ../../include/contact_widgets.php:34
msgid "Friend Suggestions"
msgstr "Osoby, które możesz znać"
@@ -4741,7 +4830,7 @@ msgid "Ignore/Hide"
msgstr "Ignoruj/Ukryj"
#: ../../mod/directory.php:49 ../../addon/forumdirectory/forumdirectory.php:71
-#: ../../view/theme/diabook/theme.php:518
+#: ../../view/theme/diabook/theme.php:519
msgid "Global Directory"
msgstr "Globalne Położenie"
@@ -4760,19 +4849,19 @@ msgstr "Płeć: "
#: ../../mod/directory.php:136
#: ../../addon/forumdirectory/forumdirectory.php:158
-#: ../../include/profile_advanced.php:17 ../../boot.php:1280
+#: ../../include/profile_advanced.php:17 ../../boot.php:1314
msgid "Gender:"
msgstr "Płeć:"
#: ../../mod/directory.php:138
#: ../../addon/forumdirectory/forumdirectory.php:160
-#: ../../include/profile_advanced.php:37 ../../boot.php:1283
+#: ../../include/profile_advanced.php:37 ../../boot.php:1317
msgid "Status:"
msgstr "Status"
#: ../../mod/directory.php:140
#: ../../addon/forumdirectory/forumdirectory.php:162
-#: ../../include/profile_advanced.php:48 ../../boot.php:1285
+#: ../../include/profile_advanced.php:48 ../../boot.php:1319
msgid "Homepage:"
msgstr "Strona główna:"
@@ -4782,8 +4871,8 @@ msgstr "Strona główna:"
msgid "About:"
msgstr "O:"
-#: ../../mod/directory.php:180
-#: ../../addon/forumdirectory/forumdirectory.php:202
+#: ../../mod/directory.php:187
+#: ../../addon/forumdirectory/forumdirectory.php:203
msgid "No entries (some entries may be hidden)."
msgstr "Brak odwiedzin (niektóre odwiedziny mogą być ukryte)."
@@ -4939,7 +5028,7 @@ msgstr ""
msgid ""
"The ID provided by your system is a duplicate on our system. It should work "
"if you try again."
-msgstr ""
+msgstr "ID dostarczone przez Twój system jest już w naszeym systemie. Powinno zadziałać jeżeli spróbujesz ponownie."
#: ../../mod/dfrn_confirm.php:649
msgid "Unable to set your contact credentials on our system."
@@ -5196,7 +5285,7 @@ msgstr ""
msgid "Post to Facebook"
msgstr "Post na Facebook"
-#: ../../addon/facebook/facebook.php:921 ../../addon/fbpost/fbpost.php:446
+#: ../../addon/facebook/facebook.php:921 ../../addon/fbpost/fbpost.php:471
#: ../../addon.old/facebook/facebook.php:921
#: ../../addon.old/fbpost/fbpost.php:399
msgid ""
@@ -5204,31 +5293,31 @@ msgid ""
"conflict."
msgstr "Publikacja na stronie Facebook nie powiodła się z powodu braku dostępu do sieci"
-#: ../../addon/facebook/facebook.php:1149 ../../addon/fbpost/fbpost.php:722
+#: ../../addon/facebook/facebook.php:1149 ../../addon/fbpost/fbpost.php:750
#: ../../addon.old/facebook/facebook.php:1149
#: ../../addon.old/fbpost/fbpost.php:610
msgid "View on Friendica"
msgstr "Zobacz na Friendice"
-#: ../../addon/facebook/facebook.php:1182 ../../addon/fbpost/fbpost.php:759
+#: ../../addon/facebook/facebook.php:1182 ../../addon/fbpost/fbpost.php:787
#: ../../addon.old/facebook/facebook.php:1182
#: ../../addon.old/fbpost/fbpost.php:643
msgid "Facebook post failed. Queued for retry."
msgstr ""
-#: ../../addon/facebook/facebook.php:1222 ../../addon/fbpost/fbpost.php:799
+#: ../../addon/facebook/facebook.php:1222 ../../addon/fbpost/fbpost.php:827
#: ../../addon.old/facebook/facebook.php:1222
#: ../../addon.old/fbpost/fbpost.php:683
msgid "Your Facebook connection became invalid. Please Re-authenticate."
msgstr ""
-#: ../../addon/facebook/facebook.php:1223 ../../addon/fbpost/fbpost.php:800
+#: ../../addon/facebook/facebook.php:1223 ../../addon/fbpost/fbpost.php:828
#: ../../addon.old/facebook/facebook.php:1223
#: ../../addon.old/fbpost/fbpost.php:684
msgid "Facebook connection became invalid"
msgstr ""
-#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:801
+#: ../../addon/facebook/facebook.php:1224 ../../addon/fbpost/fbpost.php:829
#: ../../addon.old/facebook/facebook.php:1224
#: ../../addon.old/fbpost/fbpost.php:685
#, php-format
@@ -5253,27 +5342,27 @@ msgstr ""
msgid "Automatically follow any StatusNet followers/mentioners"
msgstr ""
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:278
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:343
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:260
msgid "Lifetime of the cache (in hours)"
msgstr ""
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:283
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:348
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:265
msgid "Cache Statistics"
msgstr ""
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:286
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:351
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:268
msgid "Number of items"
msgstr "Numery elementów"
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:288
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:353
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:270
msgid "Size of the cache"
msgstr ""
-#: ../../addon/privacy_image_cache/privacy_image_cache.php:290
+#: ../../addon/privacy_image_cache/privacy_image_cache.php:355
#: ../../addon.old/privacy_image_cache/privacy_image_cache.php:272
msgid "Delete the whole cache"
msgstr ""
@@ -5306,7 +5395,12 @@ msgstr "Napisz na stronę/grupę:"
msgid "Facebook Post Settings"
msgstr "Ustawienia wpisu z Facebooka"
-#: ../../addon/widgets/widget_like.php:58
+#: ../../addon/fbpost/fbpost.php:367
+#, php-format
+msgid "%s:"
+msgstr ""
+
+#: ../../addon/widgets/widget_like.php:59
#: ../../addon.old/widgets/widget_like.php:58
#, php-format
msgid "%d person likes this"
@@ -5315,7 +5409,7 @@ msgstr[0] " %d osoba lubi to"
msgstr[1] " %d osób lubi to"
msgstr[2] " %d osób lubi to"
-#: ../../addon/widgets/widget_like.php:61
+#: ../../addon/widgets/widget_like.php:62
#: ../../addon.old/widgets/widget_like.php:61
#, php-format
msgid "%d person doesn't like this"
@@ -5329,15 +5423,15 @@ msgstr[2] " %d osób tego nie lubi"
msgid "Get added to this list!"
msgstr "Zostań dodany do listy!"
-#: ../../addon/widgets/widgets.php:56 ../../addon.old/widgets/widgets.php:56
+#: ../../addon/widgets/widgets.php:57 ../../addon.old/widgets/widgets.php:56
msgid "Generate new key"
msgstr "Stwórz nowy klucz"
-#: ../../addon/widgets/widgets.php:59 ../../addon.old/widgets/widgets.php:59
+#: ../../addon/widgets/widgets.php:60 ../../addon.old/widgets/widgets.php:59
msgid "Widgets key"
msgstr ""
-#: ../../addon/widgets/widgets.php:61 ../../addon.old/widgets/widgets.php:61
+#: ../../addon/widgets/widgets.php:62 ../../addon.old/widgets/widgets.php:61
msgid "Widgets available"
msgstr ""
@@ -5660,7 +5754,7 @@ msgstr "Katalog Forum"
#: ../../addon/communityhome/communityhome.php:34
#: ../../addon/communityhome/twillingham/communityhome.php:28
#: ../../addon/communityhome/twillingham/communityhome.php:34
-#: ../../include/nav.php:64 ../../boot.php:949
+#: ../../include/nav.php:64 ../../boot.php:976
#: ../../addon.old/communityhome/communityhome.php:28
#: ../../addon.old/communityhome/communityhome.php:34
#: ../../addon.old/communityhome/twillingham/communityhome.php:28
@@ -5682,25 +5776,25 @@ msgstr "OpenID"
msgid "Latest users"
msgstr "Ostatni użytkownicy"
-#: ../../addon/communityhome/communityhome.php:81
+#: ../../addon/communityhome/communityhome.php:82
#: ../../addon/communityhome/twillingham/communityhome.php:81
#: ../../addon.old/communityhome/communityhome.php:81
#: ../../addon.old/communityhome/twillingham/communityhome.php:81
msgid "Most active users"
msgstr "najaktywniejsi użytkownicy"
-#: ../../addon/communityhome/communityhome.php:98
+#: ../../addon/communityhome/communityhome.php:99
#: ../../addon.old/communityhome/communityhome.php:98
msgid "Latest photos"
msgstr "Ostatnie zdjęcia"
-#: ../../addon/communityhome/communityhome.php:133
+#: ../../addon/communityhome/communityhome.php:136
#: ../../addon.old/communityhome/communityhome.php:133
msgid "Latest likes"
msgstr "Ostatnie polubienia"
-#: ../../addon/communityhome/communityhome.php:155
-#: ../../view/theme/diabook/theme.php:456 ../../include/text.php:1440
+#: ../../addon/communityhome/communityhome.php:158
+#: ../../view/theme/diabook/theme.php:457 ../../include/text.php:1497
#: ../../include/conversation.php:117 ../../include/conversation.php:245
#: ../../addon.old/communityhome/communityhome.php:155
msgid "event"
@@ -5854,7 +5948,7 @@ msgstr "Dni"
#: ../../addon/dav/common/wdcal_edit.inc.php:254
#: ../../addon/dav/common/wdcal_edit.inc.php:270
#: ../../addon/dav/common/wdcal_edit.inc.php:293
-#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:922
+#: ../../addon/dav/common/wdcal_edit.inc.php:305 ../../include/text.php:976
#: ../../addon.old/dav/common/wdcal_edit.inc.php:231
#: ../../addon.old/dav/common/wdcal_edit.inc.php:254
#: ../../addon.old/dav/common/wdcal_edit.inc.php:270
@@ -5865,7 +5959,7 @@ msgstr "Niedziela"
#: ../../addon/dav/common/wdcal_edit.inc.php:235
#: ../../addon/dav/common/wdcal_edit.inc.php:274
-#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:922
+#: ../../addon/dav/common/wdcal_edit.inc.php:308 ../../include/text.php:976
#: ../../addon.old/dav/common/wdcal_edit.inc.php:235
#: ../../addon.old/dav/common/wdcal_edit.inc.php:274
#: ../../addon.old/dav/common/wdcal_edit.inc.php:308
@@ -5873,35 +5967,35 @@ msgid "Monday"
msgstr "Poniedziałek"
#: ../../addon/dav/common/wdcal_edit.inc.php:238
-#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:922
+#: ../../addon/dav/common/wdcal_edit.inc.php:277 ../../include/text.php:976
#: ../../addon.old/dav/common/wdcal_edit.inc.php:238
#: ../../addon.old/dav/common/wdcal_edit.inc.php:277
msgid "Tuesday"
msgstr "Wtorek"
#: ../../addon/dav/common/wdcal_edit.inc.php:241
-#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:922
+#: ../../addon/dav/common/wdcal_edit.inc.php:280 ../../include/text.php:976
#: ../../addon.old/dav/common/wdcal_edit.inc.php:241
#: ../../addon.old/dav/common/wdcal_edit.inc.php:280
msgid "Wednesday"
msgstr "Środa"
#: ../../addon/dav/common/wdcal_edit.inc.php:244
-#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:922
+#: ../../addon/dav/common/wdcal_edit.inc.php:283 ../../include/text.php:976
#: ../../addon.old/dav/common/wdcal_edit.inc.php:244
#: ../../addon.old/dav/common/wdcal_edit.inc.php:283
msgid "Thursday"
msgstr "Czwartek"
#: ../../addon/dav/common/wdcal_edit.inc.php:247
-#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:922
+#: ../../addon/dav/common/wdcal_edit.inc.php:286 ../../include/text.php:976
#: ../../addon.old/dav/common/wdcal_edit.inc.php:247
#: ../../addon.old/dav/common/wdcal_edit.inc.php:286
msgid "Friday"
msgstr "Piątek"
#: ../../addon/dav/common/wdcal_edit.inc.php:250
-#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:922
+#: ../../addon/dav/common/wdcal_edit.inc.php:289 ../../include/text.php:976
#: ../../addon.old/dav/common/wdcal_edit.inc.php:250
#: ../../addon.old/dav/common/wdcal_edit.inc.php:289
msgid "Saturday"
@@ -6268,8 +6362,8 @@ msgid "Extended calendar with CalDAV-support"
msgstr ""
#: ../../addon/dav/friendica/main.php:279
-#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:464
-#: ../../include/enotify.php:28 ../../include/notifier.php:778
+#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:468
+#: ../../include/enotify.php:28 ../../include/notifier.php:781
#: ../../addon.old/dav/friendica/main.php:279
#: ../../addon.old/dav/friendica/main.php:280
msgid "noreply"
@@ -6518,43 +6612,43 @@ msgstr ""
msgid "Post to dreamwidth by default"
msgstr ""
-#: ../../addon/remote_permissions/remote_permissions.php:44
+#: ../../addon/remote_permissions/remote_permissions.php:45
msgid "Remote Permissions Settings"
msgstr ""
-#: ../../addon/remote_permissions/remote_permissions.php:45
+#: ../../addon/remote_permissions/remote_permissions.php:46
msgid ""
"Allow recipients of your private posts to see the other recipients of the "
"posts"
msgstr ""
-#: ../../addon/remote_permissions/remote_permissions.php:57
+#: ../../addon/remote_permissions/remote_permissions.php:58
msgid "Remote Permissions settings updated."
msgstr ""
-#: ../../addon/remote_permissions/remote_permissions.php:177
+#: ../../addon/remote_permissions/remote_permissions.php:178
msgid "Visible to"
msgstr "Widoczne dla"
-#: ../../addon/remote_permissions/remote_permissions.php:177
+#: ../../addon/remote_permissions/remote_permissions.php:178
msgid "may only be a partial list"
msgstr ""
-#: ../../addon/remote_permissions/remote_permissions.php:196
+#: ../../addon/remote_permissions/remote_permissions.php:197
#: ../../addon/altpager/altpager.php:99
msgid "Global"
msgstr "Ogólne"
-#: ../../addon/remote_permissions/remote_permissions.php:196
+#: ../../addon/remote_permissions/remote_permissions.php:197
msgid "The posts of every user on this server show the post recipients"
msgstr ""
-#: ../../addon/remote_permissions/remote_permissions.php:197
+#: ../../addon/remote_permissions/remote_permissions.php:198
#: ../../addon/altpager/altpager.php:100
msgid "Individual"
msgstr "Indywidualne"
-#: ../../addon/remote_permissions/remote_permissions.php:197
+#: ../../addon/remote_permissions/remote_permissions.php:198
msgid "Each user chooses whether his/her posts show the post recipients"
msgstr ""
@@ -7031,11 +7125,11 @@ msgstr ""
msgid "Use the MathJax renderer"
msgstr ""
-#: ../../addon/mathjax/mathjax.php:74 ../../addon.old/mathjax/mathjax.php:74
+#: ../../addon/mathjax/mathjax.php:75 ../../addon.old/mathjax/mathjax.php:74
msgid "MathJax Base URL"
msgstr ""
-#: ../../addon/mathjax/mathjax.php:74 ../../addon.old/mathjax/mathjax.php:74
+#: ../../addon/mathjax/mathjax.php:75 ../../addon.old/mathjax/mathjax.php:74
msgid ""
"The URL for the javascript file that should be included to use MathJax. Can "
"be either the MathJax CDN or another installation of MathJax."
@@ -7351,7 +7445,7 @@ msgstr ""
msgid "Clear OAuth configuration"
msgstr ""
-#: ../../addon/statusnet/statusnet.php:692
+#: ../../addon/statusnet/statusnet.php:695
#: ../../addon.old/statusnet/statusnet.php:568
msgid "API URL"
msgstr ""
@@ -7597,11 +7691,11 @@ msgstr ""
msgid "Send linked #-tags and @-names to Twitter"
msgstr ""
-#: ../../addon/twitter/twitter.php:508 ../../addon.old/twitter/twitter.php:396
+#: ../../addon/twitter/twitter.php:517 ../../addon.old/twitter/twitter.php:396
msgid "Consumer key"
msgstr ""
-#: ../../addon/twitter/twitter.php:509 ../../addon.old/twitter/twitter.php:397
+#: ../../addon/twitter/twitter.php:518 ../../addon.old/twitter/twitter.php:397
msgid "Consumer secret"
msgstr ""
@@ -7739,137 +7833,137 @@ msgstr ""
msgid "Color scheme"
msgstr ""
-#: ../../view/theme/diabook/theme.php:87 ../../include/nav.php:49
+#: ../../view/theme/diabook/theme.php:88 ../../include/nav.php:49
#: ../../include/nav.php:116
msgid "Your posts and conversations"
msgstr "Twoje posty i rozmowy"
-#: ../../view/theme/diabook/theme.php:88 ../../include/nav.php:50
+#: ../../view/theme/diabook/theme.php:89 ../../include/nav.php:50
msgid "Your profile page"
msgstr "Twoja strona profilowa"
-#: ../../view/theme/diabook/theme.php:89
+#: ../../view/theme/diabook/theme.php:90
msgid "Your contacts"
msgstr "Twoje kontakty"
-#: ../../view/theme/diabook/theme.php:90 ../../include/nav.php:51
+#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:51
msgid "Your photos"
msgstr "Twoje zdjęcia"
-#: ../../view/theme/diabook/theme.php:91 ../../include/nav.php:52
+#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:52
msgid "Your events"
msgstr "Twoje wydarzenia"
-#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:53
+#: ../../view/theme/diabook/theme.php:93 ../../include/nav.php:53
msgid "Personal notes"
msgstr "Osobiste notatki"
-#: ../../view/theme/diabook/theme.php:92 ../../include/nav.php:53
+#: ../../view/theme/diabook/theme.php:93 ../../include/nav.php:53
msgid "Your personal photos"
msgstr "Twoje osobiste zdjęcia"
-#: ../../view/theme/diabook/theme.php:94
-#: ../../view/theme/diabook/theme.php:537
-#: ../../view/theme/diabook/theme.php:632
+#: ../../view/theme/diabook/theme.php:95
+#: ../../view/theme/diabook/theme.php:538
+#: ../../view/theme/diabook/theme.php:633
#: ../../view/theme/diabook/config.php:163
msgid "Community Pages"
msgstr "Strony społecznościowe"
-#: ../../view/theme/diabook/theme.php:384
-#: ../../view/theme/diabook/theme.php:634
+#: ../../view/theme/diabook/theme.php:385
+#: ../../view/theme/diabook/theme.php:635
#: ../../view/theme/diabook/config.php:165
msgid "Community Profiles"
msgstr ""
-#: ../../view/theme/diabook/theme.php:405
-#: ../../view/theme/diabook/theme.php:639
+#: ../../view/theme/diabook/theme.php:406
+#: ../../view/theme/diabook/theme.php:640
#: ../../view/theme/diabook/config.php:170
msgid "Last users"
msgstr "Ostatni użytkownicy"
-#: ../../view/theme/diabook/theme.php:434
-#: ../../view/theme/diabook/theme.php:641
+#: ../../view/theme/diabook/theme.php:435
+#: ../../view/theme/diabook/theme.php:642
#: ../../view/theme/diabook/config.php:172
msgid "Last likes"
msgstr ""
-#: ../../view/theme/diabook/theme.php:479
-#: ../../view/theme/diabook/theme.php:640
+#: ../../view/theme/diabook/theme.php:480
+#: ../../view/theme/diabook/theme.php:641
#: ../../view/theme/diabook/config.php:171
msgid "Last photos"
msgstr "Ostatnie zdjęcia"
-#: ../../view/theme/diabook/theme.php:516
-#: ../../view/theme/diabook/theme.php:637
+#: ../../view/theme/diabook/theme.php:517
+#: ../../view/theme/diabook/theme.php:638
#: ../../view/theme/diabook/config.php:168
msgid "Find Friends"
msgstr "Znajdź znajomych"
-#: ../../view/theme/diabook/theme.php:517
+#: ../../view/theme/diabook/theme.php:518
msgid "Local Directory"
msgstr ""
-#: ../../view/theme/diabook/theme.php:519 ../../include/contact_widgets.php:35
+#: ../../view/theme/diabook/theme.php:520 ../../include/contact_widgets.php:35
msgid "Similar Interests"
msgstr "Podobne zainteresowania"
-#: ../../view/theme/diabook/theme.php:521 ../../include/contact_widgets.php:37
+#: ../../view/theme/diabook/theme.php:522 ../../include/contact_widgets.php:37
msgid "Invite Friends"
msgstr "Zaproś znajomych"
-#: ../../view/theme/diabook/theme.php:572
-#: ../../view/theme/diabook/theme.php:633
+#: ../../view/theme/diabook/theme.php:573
+#: ../../view/theme/diabook/theme.php:634
#: ../../view/theme/diabook/config.php:164
msgid "Earth Layers"
msgstr ""
-#: ../../view/theme/diabook/theme.php:577
+#: ../../view/theme/diabook/theme.php:578
msgid "Set zoomfactor for Earth Layers"
msgstr ""
-#: ../../view/theme/diabook/theme.php:578
+#: ../../view/theme/diabook/theme.php:579
#: ../../view/theme/diabook/config.php:161
msgid "Set longitude (X) for Earth Layers"
msgstr ""
-#: ../../view/theme/diabook/theme.php:579
+#: ../../view/theme/diabook/theme.php:580
#: ../../view/theme/diabook/config.php:162
msgid "Set latitude (Y) for Earth Layers"
msgstr ""
-#: ../../view/theme/diabook/theme.php:592
-#: ../../view/theme/diabook/theme.php:635
+#: ../../view/theme/diabook/theme.php:593
+#: ../../view/theme/diabook/theme.php:636
#: ../../view/theme/diabook/config.php:166
msgid "Help or @NewHere ?"
msgstr ""
-#: ../../view/theme/diabook/theme.php:599
-#: ../../view/theme/diabook/theme.php:636
+#: ../../view/theme/diabook/theme.php:600
+#: ../../view/theme/diabook/theme.php:637
#: ../../view/theme/diabook/config.php:167
msgid "Connect Services"
msgstr ""
-#: ../../view/theme/diabook/theme.php:606
-#: ../../view/theme/diabook/theme.php:638
+#: ../../view/theme/diabook/theme.php:607
+#: ../../view/theme/diabook/theme.php:639
msgid "Last Tweets"
msgstr "Ostatnie Tweetnięcie"
-#: ../../view/theme/diabook/theme.php:609
+#: ../../view/theme/diabook/theme.php:610
#: ../../view/theme/diabook/config.php:159
msgid "Set twitter search term"
msgstr ""
-#: ../../view/theme/diabook/theme.php:629
+#: ../../view/theme/diabook/theme.php:630
#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:313
msgid "don't show"
msgstr "nie pokazuj"
-#: ../../view/theme/diabook/theme.php:629
+#: ../../view/theme/diabook/theme.php:630
#: ../../view/theme/diabook/config.php:146 ../../include/acl_selectors.php:312
msgid "show"
msgstr "pokaż"
-#: ../../view/theme/diabook/theme.php:630
+#: ../../view/theme/diabook/theme.php:631
msgid "Show/hide boxes at right-hand column:"
msgstr ""
@@ -8280,11 +8374,11 @@ msgstr "Nie obchodzi mnie to"
msgid "Ask me"
msgstr "Zapytaj mnie "
-#: ../../include/event.php:20 ../../include/bb2diaspora.php:396
+#: ../../include/event.php:20 ../../include/bb2diaspora.php:399
msgid "Starts:"
msgstr ""
-#: ../../include/event.php:30 ../../include/bb2diaspora.php:404
+#: ../../include/event.php:30 ../../include/bb2diaspora.php:407
msgid "Finishes:"
msgstr "Wykończenia:"
@@ -8296,35 +8390,35 @@ msgstr "(bez tematu)"
msgid " on Last.fm"
msgstr ""
-#: ../../include/text.php:243
+#: ../../include/text.php:263
msgid "prev"
msgstr "poprzedni"
-#: ../../include/text.php:245
+#: ../../include/text.php:265
msgid "first"
msgstr "pierwszy"
-#: ../../include/text.php:274
+#: ../../include/text.php:294
msgid "last"
msgstr "ostatni"
-#: ../../include/text.php:277
+#: ../../include/text.php:297
msgid "next"
msgstr "następny"
-#: ../../include/text.php:295
+#: ../../include/text.php:315
msgid "newer"
msgstr ""
-#: ../../include/text.php:299
+#: ../../include/text.php:319
msgid "older"
msgstr ""
-#: ../../include/text.php:604
+#: ../../include/text.php:658
msgid "No contacts"
msgstr "Brak kontaktów"
-#: ../../include/text.php:613
+#: ../../include/text.php:667
#, php-format
msgid "%d Contact"
msgid_plural "%d Contacts"
@@ -8332,207 +8426,207 @@ msgstr[0] "%d kontakt"
msgstr[1] "%d kontaktów"
msgstr[2] "%d kontakty"
-#: ../../include/text.php:726
+#: ../../include/text.php:780
msgid "poke"
msgstr "zaczep"
-#: ../../include/text.php:726 ../../include/conversation.php:210
+#: ../../include/text.php:780 ../../include/conversation.php:210
msgid "poked"
msgstr "zaczepiony"
-#: ../../include/text.php:727
+#: ../../include/text.php:781
msgid "ping"
msgstr ""
-#: ../../include/text.php:727
+#: ../../include/text.php:781
msgid "pinged"
msgstr ""
-#: ../../include/text.php:728
+#: ../../include/text.php:782
msgid "prod"
msgstr ""
-#: ../../include/text.php:728
+#: ../../include/text.php:782
msgid "prodded"
msgstr ""
-#: ../../include/text.php:729
+#: ../../include/text.php:783
msgid "slap"
msgstr "spoliczkuj"
-#: ../../include/text.php:729
+#: ../../include/text.php:783
msgid "slapped"
msgstr "spoliczkowany"
-#: ../../include/text.php:730
+#: ../../include/text.php:784
msgid "finger"
msgstr "dotknąć"
-#: ../../include/text.php:730
+#: ../../include/text.php:784
msgid "fingered"
msgstr "dotknięty"
-#: ../../include/text.php:731
+#: ../../include/text.php:785
msgid "rebuff"
msgstr "odprawiać"
-#: ../../include/text.php:731
+#: ../../include/text.php:785
msgid "rebuffed"
msgstr "odprawiony"
-#: ../../include/text.php:743
+#: ../../include/text.php:797
msgid "happy"
msgstr "szczęśliwy"
-#: ../../include/text.php:744
+#: ../../include/text.php:798
msgid "sad"
msgstr "smutny"
-#: ../../include/text.php:745
+#: ../../include/text.php:799
msgid "mellow"
msgstr "spokojny"
-#: ../../include/text.php:746
+#: ../../include/text.php:800
msgid "tired"
msgstr "zmęczony"
-#: ../../include/text.php:747
+#: ../../include/text.php:801
msgid "perky"
msgstr "pewny siebie"
-#: ../../include/text.php:748
+#: ../../include/text.php:802
msgid "angry"
msgstr "wściekły"
-#: ../../include/text.php:749
+#: ../../include/text.php:803
msgid "stupified"
msgstr "odurzony"
-#: ../../include/text.php:750
+#: ../../include/text.php:804
msgid "puzzled"
msgstr "zdziwiony"
-#: ../../include/text.php:751
+#: ../../include/text.php:805
msgid "interested"
msgstr "interesujący"
-#: ../../include/text.php:752
+#: ../../include/text.php:806
msgid "bitter"
msgstr "zajadły"
-#: ../../include/text.php:753
+#: ../../include/text.php:807
msgid "cheerful"
msgstr "wesoły"
-#: ../../include/text.php:754
+#: ../../include/text.php:808
msgid "alive"
msgstr "żywy"
-#: ../../include/text.php:755
+#: ../../include/text.php:809
msgid "annoyed"
msgstr "irytujący"
-#: ../../include/text.php:756
+#: ../../include/text.php:810
msgid "anxious"
msgstr "zazdrosny"
-#: ../../include/text.php:757
+#: ../../include/text.php:811
msgid "cranky"
msgstr "zepsuty"
-#: ../../include/text.php:758
+#: ../../include/text.php:812
msgid "disturbed"
msgstr "przeszkadzający"
-#: ../../include/text.php:759
+#: ../../include/text.php:813
msgid "frustrated"
msgstr "rozbity"
-#: ../../include/text.php:760
+#: ../../include/text.php:814
msgid "motivated"
msgstr "zmotywowany"
-#: ../../include/text.php:761
+#: ../../include/text.php:815
msgid "relaxed"
msgstr "zrelaksowany"
-#: ../../include/text.php:762
+#: ../../include/text.php:816
msgid "surprised"
msgstr "zaskoczony"
-#: ../../include/text.php:926
+#: ../../include/text.php:980
msgid "January"
msgstr "Styczeń"
-#: ../../include/text.php:926
+#: ../../include/text.php:980
msgid "February"
msgstr "Luty"
-#: ../../include/text.php:926
+#: ../../include/text.php:980
msgid "March"
msgstr "Marzec"
-#: ../../include/text.php:926
+#: ../../include/text.php:980
msgid "April"
msgstr "Kwiecień"
-#: ../../include/text.php:926
+#: ../../include/text.php:980
msgid "May"
msgstr "Maj"
-#: ../../include/text.php:926
+#: ../../include/text.php:980
msgid "June"
msgstr "Czerwiec"
-#: ../../include/text.php:926
+#: ../../include/text.php:980
msgid "July"
msgstr "Lipiec"
-#: ../../include/text.php:926
+#: ../../include/text.php:980
msgid "August"
msgstr "Sierpień"
-#: ../../include/text.php:926
+#: ../../include/text.php:980
msgid "September"
msgstr "Wrzesień"
-#: ../../include/text.php:926
+#: ../../include/text.php:980
msgid "October"
msgstr "Październik"
-#: ../../include/text.php:926
+#: ../../include/text.php:980
msgid "November"
msgstr "Listopad"
-#: ../../include/text.php:926
+#: ../../include/text.php:980
msgid "December"
msgstr "Grudzień"
-#: ../../include/text.php:1010
+#: ../../include/text.php:1067
msgid "bytes"
msgstr "bajty"
-#: ../../include/text.php:1037 ../../include/text.php:1049
+#: ../../include/text.php:1094 ../../include/text.php:1106
msgid "Click to open/close"
msgstr "Kliknij aby otworzyć/zamknąć"
-#: ../../include/text.php:1222 ../../include/user.php:236
+#: ../../include/text.php:1279 ../../include/user.php:236
msgid "default"
msgstr "standardowe"
-#: ../../include/text.php:1234
+#: ../../include/text.php:1291
msgid "Select an alternate language"
msgstr "Wybierz alternatywny język"
-#: ../../include/text.php:1444
+#: ../../include/text.php:1501
msgid "activity"
msgstr "aktywność"
-#: ../../include/text.php:1447
+#: ../../include/text.php:1504
msgid "post"
msgstr "post"
-#: ../../include/text.php:1602
+#: ../../include/text.php:1659
msgid "Item filed"
msgstr ""
@@ -8540,19 +8634,19 @@ msgstr ""
msgid "Sharing notification from Diaspora network"
msgstr ""
-#: ../../include/diaspora.php:2236
+#: ../../include/diaspora.php:2239
msgid "Attachments:"
msgstr "Załączniki:"
-#: ../../include/network.php:847
+#: ../../include/network.php:850
msgid "view full size"
msgstr "Zobacz pełen rozmiar"
-#: ../../include/oembed.php:137
+#: ../../include/oembed.php:138
msgid "Embedded content"
msgstr ""
-#: ../../include/oembed.php:146
+#: ../../include/oembed.php:147
msgid "Embedding disabled"
msgstr "Osadzanie wyłączone"
@@ -8628,7 +8722,7 @@ msgstr "Stwórz nową grupę"
msgid "Contacts not in any group"
msgstr "Kontakt nie jest w żadnej grupie"
-#: ../../include/nav.php:46 ../../boot.php:948
+#: ../../include/nav.php:46 ../../boot.php:975
msgid "Logout"
msgstr "Wyloguj się"
@@ -8636,7 +8730,7 @@ msgstr "Wyloguj się"
msgid "End this session"
msgstr "Zakończ sesję"
-#: ../../include/nav.php:49 ../../boot.php:1724
+#: ../../include/nav.php:49 ../../boot.php:1767
msgid "Status"
msgstr "Status"
@@ -8724,23 +8818,27 @@ msgstr "Zarządzaj"
msgid "Manage other pages"
msgstr "Zarządzaj innymi stronami"
-#: ../../include/nav.php:140 ../../boot.php:1238
+#: ../../include/nav.php:138
+msgid "Delegations"
+msgstr ""
+
+#: ../../include/nav.php:142 ../../boot.php:1272
msgid "Profiles"
msgstr "Profile"
-#: ../../include/nav.php:140
+#: ../../include/nav.php:142
msgid "Manage/Edit Profiles"
msgstr ""
-#: ../../include/nav.php:142
+#: ../../include/nav.php:144
msgid "Manage/edit friends and contacts"
msgstr "Zarządzaj listą przyjaciół i kontaktami"
-#: ../../include/nav.php:149
+#: ../../include/nav.php:151
msgid "Site setup and configuration"
msgstr "Konfiguracja i ustawienia instancji"
-#: ../../include/nav.php:173
+#: ../../include/nav.php:175
msgid "Nothing new here"
msgstr "Brak nowych zdarzeń"
@@ -8804,17 +8902,17 @@ msgstr "Wszystko"
msgid "Categories"
msgstr "Kategorie"
-#: ../../include/auth.php:36
+#: ../../include/auth.php:38
msgid "Logged out."
msgstr "Wyloguj"
-#: ../../include/auth.php:126
+#: ../../include/auth.php:128
msgid ""
"We encountered a problem while logging in with the OpenID you provided. "
"Please check the correct spelling of the ID."
msgstr ""
-#: ../../include/auth.php:126
+#: ../../include/auth.php:128
msgid "The error message was:"
msgstr ""
@@ -8875,29 +8973,32 @@ msgstr "sekundy"
msgid "%1$d %2$s ago"
msgstr ""
-#: ../../include/datetime.php:472 ../../include/items.php:1695
+#: ../../include/datetime.php:472 ../../include/items.php:1705
#, php-format
msgid "%s's birthday"
msgstr ""
-#: ../../include/datetime.php:473 ../../include/items.php:1696
+#: ../../include/datetime.php:473 ../../include/items.php:1706
#, php-format
msgid "Happy Birthday %s"
msgstr ""
-#: ../../include/onepoll.php:421
-msgid "From: "
-msgstr "Z:"
-
-#: ../../include/bbcode.php:202 ../../include/bbcode.php:423
+#: ../../include/bbcode.php:210 ../../include/bbcode.php:491
msgid "Image/photo"
msgstr "Obrazek/zdjęcie"
-#: ../../include/bbcode.php:388 ../../include/bbcode.php:408
+#: ../../include/bbcode.php:262
+#, php-format
+msgid ""
+"%s wrote the following post:"
+msgstr ""
+
+#: ../../include/bbcode.php:456 ../../include/bbcode.php:476
msgid "$1 wrote:"
msgstr "$1 napisał:"
-#: ../../include/bbcode.php:427 ../../include/bbcode.php:428
+#: ../../include/bbcode.php:496 ../../include/bbcode.php:497
msgid "Encrypted content"
msgstr ""
@@ -9303,15 +9404,15 @@ msgstr "Nie można otrzymać informacji kontaktowych"
msgid "following"
msgstr "następujący"
-#: ../../include/items.php:3363
+#: ../../include/items.php:3373
msgid "A new person is sharing with you at "
msgstr ""
-#: ../../include/items.php:3363
+#: ../../include/items.php:3373
msgid "You have a new follower at "
msgstr ""
-#: ../../include/items.php:4047
+#: ../../include/items.php:4057
msgid "Archives"
msgstr "Archiwum"
@@ -9405,34 +9506,34 @@ msgstr ""
msgid "stopped following"
msgstr "przestań obserwować"
-#: ../../include/Contact.php:225 ../../include/conversation.php:795
+#: ../../include/Contact.php:225 ../../include/conversation.php:816
msgid "Poke"
msgstr "Zaczepka"
-#: ../../include/Contact.php:226 ../../include/conversation.php:789
+#: ../../include/Contact.php:226 ../../include/conversation.php:810
msgid "View Status"
msgstr "Zobacz status"
-#: ../../include/Contact.php:227 ../../include/conversation.php:790
+#: ../../include/Contact.php:227 ../../include/conversation.php:811
msgid "View Profile"
msgstr "Zobacz profil"
-#: ../../include/Contact.php:228 ../../include/conversation.php:791
+#: ../../include/Contact.php:228 ../../include/conversation.php:812
msgid "View Photos"
msgstr "Zobacz zdjęcia"
#: ../../include/Contact.php:229 ../../include/Contact.php:242
-#: ../../include/conversation.php:792
+#: ../../include/conversation.php:813
msgid "Network Posts"
msgstr ""
#: ../../include/Contact.php:230 ../../include/Contact.php:242
-#: ../../include/conversation.php:793
+#: ../../include/conversation.php:814
msgid "Edit Contact"
msgstr "Edytuj kontakt"
#: ../../include/Contact.php:231 ../../include/Contact.php:242
-#: ../../include/conversation.php:794
+#: ../../include/conversation.php:815
msgid "Send PM"
msgstr "Wyślij prywatną wiadomość"
@@ -9450,90 +9551,92 @@ msgstr ""
msgid "%1$s marked %2$s's %3$s as favorite"
msgstr ""
-#: ../../include/conversation.php:599 ../../object/Item.php:226
+#: ../../include/conversation.php:620 ../../object/Item.php:243
msgid "Categories:"
msgstr "Kategorie:"
-#: ../../include/conversation.php:600 ../../object/Item.php:227
+#: ../../include/conversation.php:621 ../../object/Item.php:244
msgid "Filed under:"
msgstr ""
-#: ../../include/conversation.php:685
+#: ../../include/conversation.php:706
msgid "remove"
msgstr "usuń"
-#: ../../include/conversation.php:689
+#: ../../include/conversation.php:710
msgid "Delete Selected Items"
msgstr "Usuń zaznaczone elementy"
-#: ../../include/conversation.php:788
+#: ../../include/conversation.php:809
msgid "Follow Thread"
msgstr ""
-#: ../../include/conversation.php:857
+#: ../../include/conversation.php:878
#, php-format
msgid "%s likes this."
msgstr "%s lubi to."
-#: ../../include/conversation.php:857
+#: ../../include/conversation.php:878
#, php-format
msgid "%s doesn't like this."
msgstr "%s nie lubi tego."
-#: ../../include/conversation.php:861
-#, php-format
-msgid "%2$d people like this."
-msgstr "%2$d people lubię to."
+#: ../../include/conversation.php:884
+msgid "like this"
+msgstr ""
-#: ../../include/conversation.php:863
-#, php-format
-msgid "%2$d people don't like this."
-msgstr "%2$d people nie lubię tego"
+#: ../../include/conversation.php:888
+msgid "don't like this"
+msgstr ""
-#: ../../include/conversation.php:869
+#: ../../include/conversation.php:895
+msgid "people"
+msgstr ""
+
+#: ../../include/conversation.php:905
msgid "and"
msgstr "i"
-#: ../../include/conversation.php:875
+#: ../../include/conversation.php:911
#, php-format
msgid ", and %d other people"
msgstr ", i %d innych ludzi"
-#: ../../include/conversation.php:877
+#: ../../include/conversation.php:913
#, php-format
msgid "%s like this."
msgstr "%s lubi to."
-#: ../../include/conversation.php:877
+#: ../../include/conversation.php:913
#, php-format
msgid "%s don't like this."
msgstr "%s nie lubi tego."
-#: ../../include/conversation.php:904 ../../include/conversation.php:922
+#: ../../include/conversation.php:940 ../../include/conversation.php:958
msgid "Visible to everybody"
msgstr "Widoczne dla wszystkich"
-#: ../../include/conversation.php:906 ../../include/conversation.php:924
+#: ../../include/conversation.php:942 ../../include/conversation.php:960
msgid "Please enter a video link/URL:"
msgstr "Podaj link do filmu"
-#: ../../include/conversation.php:907 ../../include/conversation.php:925
+#: ../../include/conversation.php:943 ../../include/conversation.php:961
msgid "Please enter an audio link/URL:"
msgstr "Podaj link do muzyki"
-#: ../../include/conversation.php:908 ../../include/conversation.php:926
+#: ../../include/conversation.php:944 ../../include/conversation.php:962
msgid "Tag term:"
msgstr ""
-#: ../../include/conversation.php:910 ../../include/conversation.php:928
+#: ../../include/conversation.php:946 ../../include/conversation.php:964
msgid "Where are you right now?"
msgstr "Gdzie teraz jesteś?"
-#: ../../include/conversation.php:911
+#: ../../include/conversation.php:947
msgid "Delete item(s)?"
msgstr ""
-#: ../../include/conversation.php:990
+#: ../../include/conversation.php:1026
msgid "permissions"
msgstr "zezwolenia"
@@ -9549,113 +9652,129 @@ msgstr ""
msgid "This action is not available under your subscription plan."
msgstr ""
-#: ../../boot.php:607
+#: ../../boot.php:634
msgid "Delete this item?"
msgstr "Usunąć ten element?"
-#: ../../boot.php:610
+#: ../../boot.php:637
msgid "show fewer"
msgstr "Pokaż mniej"
-#: ../../boot.php:819
+#: ../../boot.php:847
#, php-format
msgid "Update %s failed. See error logs."
msgstr ""
-#: ../../boot.php:821
+#: ../../boot.php:849
#, php-format
msgid "Update Error at %s"
msgstr ""
-#: ../../boot.php:922
+#: ../../boot.php:950
msgid "Create a New Account"
msgstr "Załóż nowe konto"
-#: ../../boot.php:951
+#: ../../boot.php:978
msgid "Nickname or Email address: "
msgstr "Nick lub adres email:"
-#: ../../boot.php:952
+#: ../../boot.php:979
msgid "Password: "
msgstr "Hasło:"
-#: ../../boot.php:953
+#: ../../boot.php:980
msgid "Remember me"
msgstr ""
-#: ../../boot.php:956
+#: ../../boot.php:983
msgid "Or login using OpenID: "
msgstr "Lub zaloguj się korzystając z OpenID:"
-#: ../../boot.php:962
+#: ../../boot.php:989
msgid "Forgot your password?"
msgstr "Zapomniałeś swojego hasła?"
-#: ../../boot.php:1087
+#: ../../boot.php:992
+msgid "Website Terms of Service"
+msgstr ""
+
+#: ../../boot.php:993
+msgid "terms of service"
+msgstr ""
+
+#: ../../boot.php:995
+msgid "Website Privacy Policy"
+msgstr ""
+
+#: ../../boot.php:996
+msgid "privacy policy"
+msgstr ""
+
+#: ../../boot.php:1121
msgid "Requested account is not available."
msgstr ""
-#: ../../boot.php:1164
+#: ../../boot.php:1198
msgid "Edit profile"
msgstr "Edytuj profil"
-#: ../../boot.php:1230
+#: ../../boot.php:1264
msgid "Message"
msgstr "Wiadomość"
-#: ../../boot.php:1238
+#: ../../boot.php:1272
msgid "Manage/edit profiles"
msgstr "Zarządzaj profilami"
-#: ../../boot.php:1352 ../../boot.php:1438
+#: ../../boot.php:1395 ../../boot.php:1481
msgid "g A l F d"
msgstr ""
-#: ../../boot.php:1353 ../../boot.php:1439
+#: ../../boot.php:1396 ../../boot.php:1482
msgid "F d"
msgstr ""
-#: ../../boot.php:1398 ../../boot.php:1479
+#: ../../boot.php:1441 ../../boot.php:1522
msgid "[today]"
msgstr "[dziś]"
-#: ../../boot.php:1410
+#: ../../boot.php:1453
msgid "Birthday Reminders"
msgstr "Przypomnienia o urodzinach"
-#: ../../boot.php:1411
+#: ../../boot.php:1454
msgid "Birthdays this week:"
msgstr "Urodziny w tym tygodniu:"
-#: ../../boot.php:1472
+#: ../../boot.php:1515
msgid "[No description]"
msgstr "[Brak opisu]"
-#: ../../boot.php:1490
+#: ../../boot.php:1533
msgid "Event Reminders"
msgstr "Przypominacze wydarzeń"
-#: ../../boot.php:1491
+#: ../../boot.php:1534
msgid "Events this week:"
msgstr "Wydarzenia w tym tygodniu:"
-#: ../../boot.php:1727
+#: ../../boot.php:1770
msgid "Status Messages and Posts"
msgstr "Status wiadomości i postów"
-#: ../../boot.php:1734
+#: ../../boot.php:1777
msgid "Profile Details"
msgstr "Szczegóły profilu"
-#: ../../boot.php:1751
+#: ../../boot.php:1794
msgid "Events and Calendar"
msgstr "Wydarzenia i kalendarz"
-#: ../../boot.php:1758
+#: ../../boot.php:1801
msgid "Only You Can See This"
msgstr "Tylko ty możesz to zobaczyć"
-#: ../../object/Item.php:238
+#: ../../object/Item.php:255
msgid "via"
msgstr ""
diff --git a/view/pl/smarty3/follow_notify_eml.tpl b/view/pl/smarty3/follow_notify_eml.tpl
index 0fdbbf49f..50058ee93 100644
--- a/view/pl/smarty3/follow_notify_eml.tpl
+++ b/view/pl/smarty3/follow_notify_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Drogi {{$myname}},
diff --git a/view/pl/smarty3/friend_complete_eml.tpl b/view/pl/smarty3/friend_complete_eml.tpl
index 12918b6b6..bfa196ed0 100644
--- a/view/pl/smarty3/friend_complete_eml.tpl
+++ b/view/pl/smarty3/friend_complete_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Drogi {{$username}},
diff --git a/view/pl/smarty3/intro_complete_eml.tpl b/view/pl/smarty3/intro_complete_eml.tpl
index 55dc1d78e..0463861d5 100644
--- a/view/pl/smarty3/intro_complete_eml.tpl
+++ b/view/pl/smarty3/intro_complete_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Drogi {{$username}},
diff --git a/view/pl/smarty3/lostpass_eml.tpl b/view/pl/smarty3/lostpass_eml.tpl
index 7d5240cfa..c4c69a13f 100644
--- a/view/pl/smarty3/lostpass_eml.tpl
+++ b/view/pl/smarty3/lostpass_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
{{$username}},
Ze strony {{$sitename}} wpłynęła prośba z zresetowanie
diff --git a/view/pl/smarty3/passchanged_eml.tpl b/view/pl/smarty3/passchanged_eml.tpl
index b8ba39cdf..20d652485 100644
--- a/view/pl/smarty3/passchanged_eml.tpl
+++ b/view/pl/smarty3/passchanged_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Drogi {{$username}},
Twoje hasło zostało zmienione. Zachowaj tę
diff --git a/view/pl/smarty3/register_open_eml.tpl b/view/pl/smarty3/register_open_eml.tpl
index 604ebfacc..3a56f3c14 100644
--- a/view/pl/smarty3/register_open_eml.tpl
+++ b/view/pl/smarty3/register_open_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Drogi {{$username}},
Dziękujemy za rejestrację na {{$sitename}}. Twoje konto zostało utworzone pomyślnie.
diff --git a/view/pl/smarty3/register_verify_eml.tpl b/view/pl/smarty3/register_verify_eml.tpl
index 017e0ec0b..ed7df4471 100644
--- a/view/pl/smarty3/register_verify_eml.tpl
+++ b/view/pl/smarty3/register_verify_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Nowy wniosek o rejestrację użytkownika wpłynął na {{$sitename}} i wymaga
potwierdzenia.
diff --git a/view/pl/smarty3/request_notify_eml.tpl b/view/pl/smarty3/request_notify_eml.tpl
index ea31ca876..dfa978ee3 100644
--- a/view/pl/smarty3/request_notify_eml.tpl
+++ b/view/pl/smarty3/request_notify_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Drogi/a {{$myname}},
diff --git a/view/pl/smarty3/update_fail_eml.tpl b/view/pl/smarty3/update_fail_eml.tpl
index 809fd552e..02fe94088 100644
--- a/view/pl/smarty3/update_fail_eml.tpl
+++ b/view/pl/smarty3/update_fail_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Hey,
Jestem {{$sitename}}.
Deweloperzy friendica wydali ostatnio aktualizację {{$update}},
diff --git a/view/pl/strings.php b/view/pl/strings.php
index aae3aee4c..29ded278d 100644
--- a/view/pl/strings.php
+++ b/view/pl/strings.php
@@ -258,9 +258,14 @@ $a->strings["This is most often a permission setting, as the web server may not
$a->strings["At the end of this procedure, we will give you a text to save in a file named .htconfig.php in your Friendica top folder."] = "";
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "";
$a->strings[".htconfig.php is writable"] = "";
+$a->strings["Friendica uses the Smarty3 template engine to render its web views. Smarty3 compiles templates to PHP to speed up rendering."] = "";
+$a->strings["In order to store these compiled templates, the web server needs to have write access to the directory view/smarty3/ under the Friendica top level folder."] = "";
+$a->strings["Please ensure that the user that your web server runs as (e.g. www-data) has write access to this folder."] = "";
+$a->strings["Note: as a security measure, you should give the web server write access to view/smarty3/ only--not the template files (.tpl) that it contains."] = "";
+$a->strings["view/smarty3 is writable"] = "";
$a->strings["Url rewrite in .htaccess is not working. Check your server configuration."] = "";
$a->strings["Url rewrite is working"] = "";
-$a->strings["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."] = "";
+$a->strings["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."] = "Konfiguracja bazy danych pliku \".htconfig.php\" nie mogła zostać zapisana. Proszę użyć załączonego tekstu, aby utworzyć folder konfiguracyjny w sieci serwera.";
$a->strings["Errors encountered creating database tables."] = "Zostały napotkane błędy przy tworzeniu tabeli bazy danych.";
$a->strings["
What next
"] = "";
$a->strings["IMPORTANT: You will need to [manually] setup a scheduled task for the poller."] = "";
@@ -495,7 +500,7 @@ $a->strings["StatusNet"] = "";
$a->strings["Email access is disabled on this site."] = "Dostęp do e-maila nie jest w pełni sprawny na tej stronie";
$a->strings["Connector Settings"] = "Ustawienia konektora";
$a->strings["Email/Mailbox Setup"] = "Ustawienia emaila/skrzynki mailowej";
-$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "";
+$a->strings["If you wish to communicate with email contacts using this service (optional), please specify how to connect to your mailbox."] = "Jeżeli życzysz sobie komunikowania z kontaktami email używając tego serwisu (opcjonalne), opisz jak połaczyć się z Twoją skrzynką email.";
$a->strings["Last successful email check:"] = "Ostatni sprawdzony e-mail:";
$a->strings["IMAP server name:"] = "Nazwa serwera IMAP:";
$a->strings["IMAP port:"] = "Port IMAP:";
@@ -583,7 +588,7 @@ $a->strings["You are tagged in a post"] = "Jesteś oznaczony w poście";
$a->strings["You are poked/prodded/etc. in a post"] = "";
$a->strings["Advanced Account/Page Type Settings"] = "";
$a->strings["Change the behaviour of this account for special situations"] = "";
-$a->strings["Manage Identities and/or Pages"] = "";
+$a->strings["Manage Identities and/or Pages"] = "Zarządzaj Tożsamościami i/lub Stronami.";
$a->strings["Toggle between different identities or community/group pages which share your account details or which you have been granted \"manage\" permissions"] = "";
$a->strings["Select an identity to manage: "] = "Wybierz tożsamość do zarządzania:";
$a->strings["Search Results For:"] = "Szukaj wyników dla:";
@@ -615,7 +620,9 @@ $a->strings["Save"] = "Zapisz";
$a->strings["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "Strona przekroczyła ilość dozwolonych rejestracji na dzień. Proszę spróbuj ponownie jutro.";
$a->strings["Import"] = "";
$a->strings["Move account"] = "";
-$a->strings["You can import an account from another Friendica server. \r\n You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here. \r\n This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from diaspora"] = "";
+$a->strings["You can import an account from another Friendica server."] = "";
+$a->strings["You need to export your account from the old server and upload it here. We will recreate your old account here with all your contacts. We will try also to inform your friends that you moved here."] = "";
+$a->strings["This feature is experimental. We can't import contacts from the OStatus network (statusnet/identi.ca) or from Diaspora"] = "";
$a->strings["Account file"] = "";
$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "";
$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "";
@@ -693,7 +700,7 @@ $a->strings["Failed to send email message. Here is the message that failed."] =
$a->strings["Your registration can not be processed."] = "Twoja rejestracja nie może zostać przeprowadzona. ";
$a->strings["Registration request at %s"] = "Prośba o rejestrację u %s";
$a->strings["Your registration is pending approval by the site owner."] = "Twoja rejestracja oczekuje na zaakceptowanie przez właściciela witryny.";
-$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "";
+$a->strings["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "Masz możliwość (opcjonalnie) wypełnić ten formularz przez OpenID poprzez załączenie Twojego OpenID i kliknięcie 'Zarejestruj'.";
$a->strings["If you are not familiar with OpenID, please leave that field blank and fill in the rest of the items."] = "Jeśli nie jesteś zaznajomiony z OpenID, zostaw to pole puste i uzupełnij resztę elementów.";
$a->strings["Your OpenID (optional): "] = "Twój OpenID (opcjonalnie):";
$a->strings["Include your profile in member directory?"] = "Czy dołączyć twój profil do katalogu członków?";
@@ -800,6 +807,7 @@ $a->strings["Self-signed certificate, use SSL for local links only (discouraged)
$a->strings["File upload"] = "Plik załadowano";
$a->strings["Policies"] = "zasady";
$a->strings["Advanced"] = "Zaawansowany";
+$a->strings["Performance"] = "";
$a->strings["Site name"] = "Nazwa strony";
$a->strings["Banner/Logo"] = "Logo";
$a->strings["System language"] = "Język systemu";
@@ -809,6 +817,8 @@ $a->strings["Mobile system theme"] = "";
$a->strings["Theme for mobile devices"] = "";
$a->strings["SSL link policy"] = "";
$a->strings["Determines whether generated links should be forced to use SSL"] = "";
+$a->strings["'Share' element"] = "";
+$a->strings["Activates the bbcode element 'share' for repeating items."] = "";
$a->strings["Maximum image size"] = "Maksymalny rozmiar zdjęcia";
$a->strings["Maximum size in bytes of uploaded images. Default is 0, which means no limits."] = "";
$a->strings["Maximum image length"] = "Maksymalna długość obrazu";
@@ -864,6 +874,14 @@ $a->strings["Poll interval"] = "";
$a->strings["Delay background polling processes by this many seconds to reduce system load. If 0, use delivery interval."] = "";
$a->strings["Maximum Load Average"] = "";
$a->strings["Maximum system load before delivery and poll processes are deferred - default 50."] = "";
+$a->strings["Use MySQL full text engine"] = "";
+$a->strings["Activates the full text engine. Speeds up search - but can only search for four and more characters."] = "";
+$a->strings["Path to item cache"] = "";
+$a->strings["Cache duration in seconds"] = "";
+$a->strings["How long should the cache files be hold? Default value is 86400 seconds (One day)."] = "";
+$a->strings["Path for lock file"] = "";
+$a->strings["Temp path"] = "";
+$a->strings["Base path to installation"] = "";
$a->strings["Update has been marked successful"] = "";
$a->strings["Executing %s failed. Check system logs."] = "";
$a->strings["Update %s was successfully applied."] = "";
@@ -1091,7 +1109,7 @@ $a->strings["Our site encryption key is apparently messed up."] = "Klucz kodują
$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "Został dostarczony pusty URL lub nie może zostać rozszyfrowany przez nas.";
$a->strings["Contact record was not found for you on our site."] = "Nie znaleziono kontaktu na naszej stronie";
$a->strings["Site public key not available in contact record for URL %s."] = "";
-$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "";
+$a->strings["The ID provided by your system is a duplicate on our system. It should work if you try again."] = "ID dostarczone przez Twój system jest już w naszeym systemie. Powinno zadziałać jeżeli spróbujesz ponownie.";
$a->strings["Unable to set your contact credentials on our system."] = "Niezdolny do ustalenie tożsamości twoich kontaktów w naszym systemie";
$a->strings["Unable to update your contact profile details on our system"] = "Niezdolny do aktualizacji szczegółowych danych profilowych twoich kontaktów w naszym systemie";
$a->strings["Connection accepted at %s"] = "Połączenie zaakceptowane %s";
@@ -1157,6 +1175,7 @@ $a->strings["Remove Facebook Post connector"] = "";
$a->strings["Suppress \"View on friendica\""] = "";
$a->strings["Post to page/group:"] = "Napisz na stronę/grupę:";
$a->strings["Facebook Post Settings"] = "Ustawienia wpisu z Facebooka";
+$a->strings["%s:"] = "";
$a->strings["%d person likes this"] = array(
0 => " %d osoba lubi to",
1 => " %d osób lubi to",
@@ -1876,6 +1895,7 @@ $a->strings["Inbox"] = "Odebrane";
$a->strings["Outbox"] = "Wysłane";
$a->strings["Manage"] = "Zarządzaj";
$a->strings["Manage other pages"] = "Zarządzaj innymi stronami";
+$a->strings["Delegations"] = "";
$a->strings["Profiles"] = "Profile";
$a->strings["Manage/Edit Profiles"] = "";
$a->strings["Manage/edit friends and contacts"] = "Zarządzaj listą przyjaciół i kontaktami";
@@ -1918,8 +1938,8 @@ $a->strings["seconds"] = "sekundy";
$a->strings["%1\$d %2\$s ago"] = "";
$a->strings["%s's birthday"] = "";
$a->strings["Happy Birthday %s"] = "";
-$a->strings["From: "] = "Z:";
$a->strings["Image/photo"] = "Obrazek/zdjęcie";
+$a->strings["%s wrote the following post:"] = "";
$a->strings["$1 wrote:"] = "$1 napisał:";
$a->strings["Encrypted content"] = "";
$a->strings["General Features"] = "";
@@ -2053,8 +2073,9 @@ $a->strings["Delete Selected Items"] = "Usuń zaznaczone elementy";
$a->strings["Follow Thread"] = "";
$a->strings["%s likes this."] = "%s lubi to.";
$a->strings["%s doesn't like this."] = "%s nie lubi tego.";
-$a->strings["%2\$d people like this."] = "%2\$d people lubię to.";
-$a->strings["%2\$d people don't like this."] = "%2\$d people nie lubię tego";
+$a->strings["like this"] = "";
+$a->strings["don't like this"] = "";
+$a->strings["people"] = "";
$a->strings["and"] = "i";
$a->strings[", and %d other people"] = ", i %d innych ludzi";
$a->strings["%s like this."] = "%s lubi to.";
@@ -2079,6 +2100,10 @@ $a->strings["Password: "] = "Hasło:";
$a->strings["Remember me"] = "";
$a->strings["Or login using OpenID: "] = "Lub zaloguj się korzystając z OpenID:";
$a->strings["Forgot your password?"] = "Zapomniałeś swojego hasła?";
+$a->strings["Website Terms of Service"] = "";
+$a->strings["terms of service"] = "";
+$a->strings["Website Privacy Policy"] = "";
+$a->strings["privacy policy"] = "";
$a->strings["Requested account is not available."] = "";
$a->strings["Edit profile"] = "Edytuj profil";
$a->strings["Message"] = "Wiadomość";
diff --git a/view/poco_xml.tpl b/view/poco_xml.tpl
index 394f6afcf..9549b695d 100644
--- a/view/poco_xml.tpl
+++ b/view/poco_xml.tpl
@@ -9,8 +9,8 @@
{{ if $response.totalResults }}
-{{ for $response.entry as $ent }}
-{{ inc poco_entry_xml.tpl with $entry=$ent }}{{ endinc }}
+{{ for $response.entry as $entry }}
+{{ inc poco_entry_xml.tpl }}{{ endinc }}
{{ endfor }}
{{ else }}
diff --git a/view/pt-br/smarty3/intro_complete_eml.tpl b/view/pt-br/smarty3/intro_complete_eml.tpl
index 3689d653c..efe1e6b5a 100644
--- a/view/pt-br/smarty3/intro_complete_eml.tpl
+++ b/view/pt-br/smarty3/intro_complete_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Prezado/a {{$username}},
diff --git a/view/pt-br/smarty3/update_fail_eml.tpl b/view/pt-br/smarty3/update_fail_eml.tpl
index f8f5e2ef2..fbf123475 100644
--- a/view/pt-br/smarty3/update_fail_eml.tpl
+++ b/view/pt-br/smarty3/update_fail_eml.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
Oi,
Eu sou {{$sitename}}
Os desenvolvedores do friendica lançaram uma atualização {{$update}} recentemente,
diff --git a/view/register.tpl b/view/register.tpl
index 7cf11881a..2275356a2 100644
--- a/view/register.tpl
+++ b/view/register.tpl
@@ -11,10 +11,12 @@
$fillwith
$fillext
+{{ if $oidlabel }}
- $oidhtml
+
+{{ endif }}
{{ if $invitations }}
diff --git a/view/smarty3/404.tpl b/view/smarty3/404.tpl
index 518ad1d29..2d581ab8d 100644
--- a/view/smarty3/404.tpl
+++ b/view/smarty3/404.tpl
@@ -1 +1,6 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
{{$message}}
diff --git a/view/smarty3/acl_selector.tpl b/view/smarty3/acl_selector.tpl
index e9f8030d7..5fd11e756 100644
--- a/view/smarty3/acl_selector.tpl
+++ b/view/smarty3/acl_selector.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
{{$showall}}
diff --git a/view/smarty3/admin_aside.tpl b/view/smarty3/admin_aside.tpl
index a9d26a89f..24f07e28e 100644
--- a/view/smarty3/admin_aside.tpl
+++ b/view/smarty3/admin_aside.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
diff --git a/view/smarty3/contacts-template.tpl b/view/smarty3/contacts-template.tpl
index de074fc3c..66f3f5c87 100644
--- a/view/smarty3/contacts-template.tpl
+++ b/view/smarty3/contacts-template.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
{{$header}}{{if $total}} ({{$total}}){{/if}}
{{if $finding}}
{{$finding}}
{{/if}}
@@ -14,8 +19,8 @@
{{$tabs}}
-{{foreach $contacts as $c}}
- {{include file="contact_template.tpl" contact=$c}}
+{{foreach $contacts as $contact}}
+ {{include file="contact_template.tpl"}}
{{/foreach}}
diff --git a/view/smarty3/contacts-widget-sidebar.tpl b/view/smarty3/contacts-widget-sidebar.tpl
index d7b9c4b5d..c4697a91c 100644
--- a/view/smarty3/contacts-widget-sidebar.tpl
+++ b/view/smarty3/contacts-widget-sidebar.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
{{$vcard_widget}}
{{$follow_widget}}
{{$groups_widget}}
diff --git a/view/smarty3/content.tpl b/view/smarty3/content.tpl
index 466045d39..811f92dd5 100644
--- a/view/smarty3/content.tpl
+++ b/view/smarty3/content.tpl
@@ -1,2 +1,7 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
diff --git a/view/smarty3/conversation.tpl b/view/smarty3/conversation.tpl
index ce5dc5a2f..24f0d120d 100644
--- a/view/smarty3/conversation.tpl
+++ b/view/smarty3/conversation.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}
{{$live_update}}
{{foreach $threads as $thread}}
@@ -11,7 +16,7 @@
{{/if}}
{{if $item.comment_lastcollapsed}}
{{/if}}
- {{include file="file:{{$item.template}}"}}
+ {{include file="{{$item.template}}"}}
{{/foreach}}
diff --git a/view/smarty3/crepair.tpl b/view/smarty3/crepair.tpl
index 2a05b9678..8d3ed7df8 100644
--- a/view/smarty3/crepair.tpl
+++ b/view/smarty3/crepair.tpl
@@ -1,3 +1,8 @@
+{{*
+ * AUTOMATICALLY GENERATED TEMPLATE
+ * DO NOT EDIT THIS FILE, CHANGES WILL BE OVERWRITTEN
+ *
+ *}}