This commit is contained in:
friendica 2012-11-13 17:15:56 -08:00
commit eecf099079
42 changed files with 663 additions and 470 deletions

View File

@ -73,6 +73,18 @@ function import_account(&$a, $file) {
return;
}
// check for username
$r = q("SELECT uid FROM user WHERE nickname='%s'", $account['user']['nickname']);
if ($r===false) {
logger("uimport:check nickname : ERROR : ".last_error(), LOGGER_NORMAL);
notice(t('Error! Cannot check nickname'));
return;
}
if (count($r)>0) {
notice(sprintf(t("User '%s' already exists on this server!"),$account['user']['nickname']));
return;
}
$oldbaseurl = $account['baseurl'];
$newbaseurl = $a->get_baseurl();

View File

@ -784,8 +784,9 @@ function render_content(&$a, $items, $mode, $update, $preview = false) {
$indent = (($toplevelpost) ? '' : ' comment');
$shiny = "";
if(strcmp(datetime_convert('UTC','UTC',$item['created']),datetime_convert('UTC','UTC','now - 12 hours')) > 0)
$indent .= ' shiny';
$shiny = 'shiny';
//
localize_item($item);
@ -829,6 +830,7 @@ function render_content(&$a, $items, $mode, $update, $preview = false) {
'lock' => $lock,
'location' => template_escape($location),
'indent' => $indent,
'shiny' => $shiny,
'owner_url' => $owner_url,
'owner_photo' => $owner_photo,
'owner_name' => template_escape($owner_name),

View File

@ -782,9 +782,10 @@ function network_content(&$a, $update = 0) {
intval(local_user())
);
}
// if($update_unseen)
// $r = q("UPDATE `item` SET `unseen` = 0 $update_unseen");
else {
if($update_unseen)
$r = q("UPDATE `item` SET `unseen` = 0 $update_unseen");
}
// Set this so that the conversation function can find out contact info for our wall-wall items
$a->page_contact = $a->contact;

View File

@ -36,6 +36,29 @@ function uimport_post(&$a) {
}
function uimport_content(&$a) {
if((! local_user()) && ($a->config['register_policy'] == REGISTER_CLOSED)) {
notice("Permission denied." . EOL);
return;
}
$max_dailies = intval(get_config('system','max_daily_registrations'));
if($max_dailies) {
$r = q("select count(*) as total from user where register_date > UTC_TIMESTAMP - INTERVAL 1 day");
if($r && $r[0]['total'] >= $max_dailies) {
logger('max daily registrations exceeded.');
notice( t('This site has exceeded the number of allowed daily account registrations. Please try again tomorrow.') . EOL);
return;
}
}
if(x($_SESSION,'theme'))
unset($_SESSION['theme']);
if(x($_SESSION,'mobile-theme'))
unset($_SESSION['mobile-theme']);
$tpl = get_markup_template("uimport.tpl");
return replace_macros($tpl, array(
'$regbutt' => t('Import'),

View File

@ -93,6 +93,7 @@ class Item extends BaseObject {
$star = false;
$isstarred = "unstarred";
$indent = '';
$shiny = '';
$osparkle = '';
$total_children = $this->count_descendants();
@ -199,8 +200,9 @@ class Item extends BaseObject {
if ($shareable) $buttons['share'] = array( t('Share this'), t('share'));
}
if(strcmp(datetime_convert('UTC','UTC',$item['created']),datetime_convert('UTC','UTC','now - 12 hours')) > 0)
$indent .= ' shiny';
if(strcmp(datetime_convert('UTC','UTC',$item['created']),datetime_convert('UTC','UTC','now - 12 hours')) > 0){
$shiny = 'shiny';
}
localize_item($item);
@ -241,6 +243,7 @@ class Item extends BaseObject {
'lock' => $lock,
'location' => template_escape($location),
'indent' => $indent,
'shiny' => $shiny,
'owner_url' => $this->get_owner_url(),
'owner_photo' => $this->get_owner_photo(),
'owner_name' => template_escape($this->get_owner_name()),

View File

@ -1,4 +1,5 @@
<?php
define("DQ_ESCAPE", "__DQ__");
function po2php_run(&$argv, &$argc) {
@ -38,6 +39,7 @@ function po2php_run(&$argv, &$argc) {
return str_replace('$','\$',$match[0]);
}
foreach ($infile as $l) {
$l = str_replace('\"', DQ_ESCAPE, $l);
$len = strlen($l);
if ($l[0]=="#") $l="";
if (substr($l,0,15)=='"Plural-Forms: '){
@ -54,7 +56,7 @@ function po2php_run(&$argv, &$argc) {
if ($k!="" && substr($l,0,7)=="msgstr "){
if ($ink) { $ink = False; $out .= '$a->strings["'.$k.'"] = '; }
if ($inv) { $inv = False; $out .= '"'.$v.'"'; }
if ($inv) { $inv = False; $out .= '"'.$v.'"'; }
$v = substr($l,8,$len-10);
$v = preg_replace_callback($escape_s_exp,'escape_s',$v);
@ -113,6 +115,7 @@ function po2php_run(&$argv, &$argc) {
if ($inv) { $inv = False; $out .= '"'.$v.'"'; }
if ($k!="") $out .= $arr?");\n":";\n";
$out = str_replace(DQ_ESCAPE, '\"', $out);
file_put_contents($outfile, $out);
}

View File

@ -236,7 +236,7 @@ $a->strings["Error: GD graphics PHP module with JPEG support required but not in
$a->strings["Error: openssl PHP module required but not installed."] = "Error: El mòdul enssl de PHP és necessari però no està instal·lat.";
$a->strings["Error: mysqli PHP module required but not installed."] = "Error: El mòdul mysqli de PHP és necessari però no està instal·lat.";
$a->strings["Error: mb_string PHP module required but not installed."] = "Error: mòdul mb_string de PHP requerit però no instal·lat.";
$a->strings["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."] = "L'instal·lador web necessita crear un arxiu anomenat \".htconfig.php\" en la carpeta superior del seu servidor web però alguna cosa ho va impedir.";
$a->strings["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."] = "L'instal·lador web necessita crear un arxiu anomenat \".htconfig.php\" en la carpeta superior del seu servidor web però alguna cosa ho va impedir.";
$a->strings["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."] = "Això freqüentment és a causa d'una configuració de permisos; el servidor web no pot escriure arxius en la carpeta - encara que sigui possible.";
$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."] = "Al final d'aquest procediment, et facilitarem un text que hauràs de guardar en un arxiu que s'anomena .htconfig.php que hi es a la carpeta principal del teu Friendica.";
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativament, pots saltar-te aquest procediment i configurar-ho manualment. Per favor, mira l'arxiu \"INTALL.txt\" per a instruccions.";

View File

@ -254,7 +254,7 @@ $a->strings["Error: GD graphics PHP module with JPEG support required but not in
$a->strings["Error: openssl PHP module required but not installed."] = "Chyba: požadovaný openssl PHP modul není nainstalován.";
$a->strings["Error: mysqli PHP module required but not installed."] = "Chyba: požadovaný mysqli PHP modul není nainstalován.";
$a->strings["Error: mb_string PHP module required but not installed."] = "Chyba: PHP modul mb_string je vyžadován, ale není nainstalován.";
$a->strings["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."] = "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři vašeho webového serveru ale nyní mu to není umožněno.";
$a->strings["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."] = "Webový instalátor musí být schopen vytvořit soubor s názvem \".htconfig.php\" v hlavním adresáři vašeho webového serveru ale nyní mu to není umožněno.";
$a->strings["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."] = "Toto je nejčastěji nastavením oprávnění, kdy webový server nemusí být schopen zapisovat soubory do vašeho adresáře - i když Vy můžete.";
$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."] = "Na konci této procedury obd nás obdržíte text k uložení v souboru pojmenovaném .htconfig.php ve Vašem Friendica kořenovém adresáři.";
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativně můžete tento krok přeskočit a provést manuální instalaci. Přečtěte si prosím soubor \"INSTALL.txt\" pro další instrukce.";

View File

@ -253,7 +253,7 @@ $a->strings["Error: GD graphics PHP module with JPEG support required but not in
$a->strings["Error: openssl PHP module required but not installed."] = "Fehler: Das openssl-Modul von PHP ist nicht installiert.";
$a->strings["Error: mysqli PHP module required but not installed."] = "Fehler: Das mysqli-Modul von PHP ist nicht installiert.";
$a->strings["Error: mb_string PHP module required but not installed."] = "Fehler: mb_string PHP Module wird benötigt ist aber nicht installiert.";
$a->strings["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."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun.";
$a->strings["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."] = "Der Installationswizard muss in der Lage sein, eine Datei im Stammverzeichnis deines Webservers anzulegen, ist allerdings derzeit nicht in der Lage, dies zu tun.";
$a->strings["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."] = "In den meisten Fällen ist dies ein Problem mit den Schreibrechten. Der Webserver könnte keine Schreiberlaubnis haben, selbst wenn du sie hast.";
$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."] = "Nachdem du alles ausgefüllt hast, erhältst du einen Text, den du in eine Datei namens .htconfig.php in deinem Friendica-Wurzelverzeichnis kopieren musst.";
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Alternativ kannst du diesen Schritt aber auch überspringen und die Installation manuell durchführen. Eine Anleitung dazu (Englisch) findest du in der Datei INSTALL.txt.";

View File

@ -236,7 +236,7 @@ $a->strings["Error: GD graphics PHP module with JPEG support required but not in
$a->strings["Error: openssl PHP module required but not installed."] = "Eraro: La modulo OpenSSL en PHP estas bezonata sed ne instalita.";
$a->strings["Error: mysqli PHP module required but not installed."] = "Eraro: La modulo mysqli en PHP estas bezonata sed ne instalita.";
$a->strings["Error: mb_string PHP module required but not installed."] = "Eraro: La modulo mb_string en PHP estas bezonata sed ne instalita.";
$a->strings["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."] = "La reta instalilo bezonas skribi dosieron nomata \".htconfig.php\" en la baza dosierujo de la retservilo, sed ne sukcesis.";
$a->strings["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."] = "La reta instalilo bezonas skribi dosieron nomata \".htconfig.php\" en la baza dosierujo de la retservilo, sed ne sukcesis.";
$a->strings["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."] = "Tio ĉi plej ofte estas agordo rilate al permesoj, ĉar la servilo eble ne povas skribi en via dosierujo, eĉ se vi mem povas skribi.";
$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."] = "Post la fino de tiu proceduro, ni donos al vi tekston por konservi en dosiero .htconfig.php en via baza Friendica dosierujo.";
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Vi ankaŭ povas preterpasi tiun proceduron kaj fari permanan instaladon. Bonvolu legi la dosieron \"INSTALL.txt\" por trovi instrukciojn.";

View File

@ -242,7 +242,7 @@ $a->strings["Error: GD graphics PHP module with JPEG support required but not in
$a->strings["Error: openssl PHP module required but not installed."] = "Error: El módulo de PHP openssl es necesario, pero no está instalado.";
$a->strings["Error: mysqli PHP module required but not installed."] = "Error: El módulo de PHP mysqli es necesario, pero no está instalado.";
$a->strings["Error: mb_string PHP module required but not installed."] = "Error: El módulo de PHP mb_string es necesario, pero no está instalado.";
$a->strings["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."] = "El programa de instalación web necesita ser capaz de crear un archivo llamado \".htconfig.php\" en la carpeta principal de tu servidor web y es incapaz de hacerlo.";
$a->strings["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."] = "El programa de instalación web necesita ser capaz de crear un archivo llamado \".htconfig.php\" en la carpeta principal de tu servidor web y es incapaz de hacerlo.";
$a->strings["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."] = "Se trata a menudo de una configuración de permisos, pues el servidor web puede que no sea capaz de escribir archivos en la carpeta, aunque tú sí puedas.";
$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."] = "Al final obtendremos un texto que debes guardar en un archivo llamado .htconfig.php en la carpeta de Friendica.";
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Como alternativa, puedes saltarte estos pasos y realizar una instalación manual. Por favor, consulta el archivo \"INSTALL.txt\" para las instrucciones.";

View File

@ -242,7 +242,7 @@ $a->strings["Error: GD graphics PHP module with JPEG support required but not in
$a->strings["Error: openssl PHP module required but not installed."] = "Erreur: Le module PHP \"openssl\" est requis mais pas installé.";
$a->strings["Error: mysqli PHP module required but not installed."] = "Erreur: Le module PHP \"mysqli\" est requis mais pas installé.";
$a->strings["Error: mb_string PHP module required but not installed."] = "Erreur: le module PHP mb_string est requis mais pas installé.";
$a->strings["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."] = "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable.";
$a->strings["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."] = "L'installeur web doit être en mesure de créer un fichier \".htconfig.php\" à la racine de votre serveur web, mais il en est incapable.";
$a->strings["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."] = "Le plus souvent, il s'agit d'un problème de permission. Le serveur web peut ne pas être capable d'écrire dans votre répertoire - alors que vous-même le pouvez.";
$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 la fin de cette étape, nous vous fournirons un texte à sauvegarder dans un fichier nommé .htconfig.php à la racine de votre répertoire Friendica.";
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Vous pouvez également sauter cette étape et procéder à une installation manuelle. Pour cela, merci de lire le fichier \"INSTALL.txt\".";

View File

@ -8,6 +8,11 @@
<link rel="stylesheet" type="text/css" href="$stylesheet" media="all" />
<link rel="shortcut icon" href="$baseurl/images/friendica-32.png" />
<link rel="apple-touch-icon" href="$baseurl/images/friendica-128.png"/>
<meta name="apple-mobile-web-app-capable" content="yes" />
<link rel="search"
href="$baseurl/opensearch"
type="application/opensearchdescription+xml"

View File

@ -236,7 +236,7 @@ $a->strings["Error: GD graphics PHP module with JPEG support required but not in
$a->strings["Error: openssl PHP module required but not installed."] = "Villa: openssl PHP eining skilyrði og er ekki uppsett.";
$a->strings["Error: mysqli PHP module required but not installed."] = "Villa: mysqli PHP eining er skilyrði og er ekki uppsett";
$a->strings["Error: mb_string PHP module required but not installed."] = "Villa: mb_string PHP eining skilyrði en ekki uppsett.";
$a->strings["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."] = "Vef uppsetningar forrit þarf að geta stofnað skránna \".htconfig.php\" in efsta skráarsafninu á vefþjóninum og það getur ekki gert það.";
$a->strings["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."] = "Vef uppsetningar forrit þarf að geta stofnað skránna \".htconfig.php\" in efsta skráarsafninu á vefþjóninum og það getur ekki gert það.";
$a->strings["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."] = "Þetta er oftast aðgangsstýringa stilling, þar sem vefþjónninn getur ekki skrifað út skrár í skráarsafnið - þó þú getir það.";
$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."] = "";

View File

@ -242,7 +242,7 @@ $a->strings["Error: GD graphics PHP module with JPEG support required but not in
$a->strings["Error: openssl PHP module required but not installed."] = "Errore: il modulo openssl di PHP è richiesto, ma non risulta installato.";
$a->strings["Error: mysqli PHP module required but not installed."] = "Errore: il modulo mysqli di PHP è richiesto, ma non risulta installato";
$a->strings["Error: mb_string PHP module required but not installed."] = "Errore: il modulo PHP mb_string è richiesto, ma non risulta installato.";
$a->strings["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."] = "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo.";
$a->strings["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."] = "L'installazione web deve poter creare un file chiamato \".htconfig.php\" nella cartella principale del tuo web server ma non è in grado di farlo.";
$a->strings["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."] = "Ciò è dovuto spesso a impostazioni di permessi, dato che il web server può non essere in grado di scrivere il file nella tua cartella, anche se tu puoi.";
$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."] = "";

View File

@ -1,6 +1,6 @@
<?php
function string_plural_select_nb_NO($n){
function string_plural_select_nb_no($n){
return ($n != 1);;
}
;
@ -236,7 +236,7 @@ $a->strings["Error: GD graphics PHP module with JPEG support required but not in
$a->strings["Error: openssl PHP module required but not installed."] = "Feil: openssl PHP-modulen er påkrevet, men er ikke installert.";
$a->strings["Error: mysqli PHP module required but not installed."] = "Feil: mysqli PHP-modulen er påkrevet, men er ikke installert.";
$a->strings["Error: mb_string PHP module required but not installed."] = "Feil: mb_string PHP-modulen er påkrevet men ikke installert.";
$a->strings["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."] = "Web-installatøren trenger å kunne lage filen \".htconfig.php\" i topp-folderen på web-tjeneren din, men den får ikke til dette.";
$a->strings["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."] = "Web-installatøren trenger å kunne lage filen \".htconfig.php\" i topp-folderen på web-tjeneren din, men den får ikke til dette.";
$a->strings["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."] = "Dette skyldes oftest manglende tillatelse, ettersom web-tjeneren kanskje ikke kan skrive filer i din mappe - selv om du kan.";
$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."] = "";

File diff suppressed because it is too large Load Diff

View File

@ -22,7 +22,7 @@ $a->strings["Friend Request URL"] = "URL żądajacy znajomości";
$a->strings["Friend Confirm URL"] = "URL potwierdzający znajomość";
$a->strings["Notification Endpoint URL"] = "Zgłoszenie Punktu Końcowego URL";
$a->strings["Poll/Feed URL"] = "Adres Ankiety / RSS";
$a->strings["New photo from this URL"] = "";
$a->strings["New photo from this URL"] = "Nowe zdjęcie z tej ścieżki";
$a->strings["Submit"] = "Potwierdź";
$a->strings["Help:"] = "Pomoc:";
$a->strings["Help"] = "Pomoc";
@ -60,7 +60,7 @@ $a->strings["Select a tag to remove: "] = "Wybierz tag do usunięcia";
$a->strings["Remove"] = "Usuń";
$a->strings["%1\$s welcomes %2\$s"] = "";
$a->strings["Authorize application connection"] = "";
$a->strings["Return to your app and insert this Securty Code:"] = "";
$a->strings["Return to your app and insert this Securty Code:"] = "Powróć do swojej aplikacji i wpisz ten Kod Bezpieczeństwa:";
$a->strings["Please login to continue."] = "Zaloguj się aby kontynuować.";
$a->strings["Do you want to authorize this application to access your posts and contacts, and/or create new posts for you?"] = "";
$a->strings["Yes"] = "Tak";
@ -122,9 +122,9 @@ $a->strings["Recent Photos"] = "Ostatnio dodane zdjęcia";
$a->strings["Not available."] = "Niedostępne.";
$a->strings["Community"] = "Społeczność";
$a->strings["No results."] = "Brak wyników.";
$a->strings["This is Friendica, version"] = "";
$a->strings["This is Friendica, version"] = "To jest Friendica, wersja";
$a->strings["running at web location"] = "";
$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "";
$a->strings["Please visit <a href=\"http://friendica.com\">Friendica.com</a> to learn more about the Friendica project."] = "Odwiedź <a href=\"http://friendica.com\">Friendica.com</a>, aby dowiedzieć się więcej o projekcie Friendica.";
$a->strings["Bug reports and issues: please visit"] = "Reportowanie błędów i problemów: proszę odwiedź";
$a->strings["Suggestions, praise, donations, etc. - please email \"Info\" at Friendica - dot com"] = "";
$a->strings["Installed plugins/addons/apps:"] = "";
@ -213,21 +213,21 @@ $a->strings["Export all"] = "";
$a->strings["Export your accout info, contacts and all your items as json. Could be a very big file, and could take a lot of time. Use this to make a full backup of your account (photos are not exported)"] = "";
$a->strings["Friendica Social Communications Server - Setup"] = "";
$a->strings["Could not connect to database."] = "Nie można nawiązać połączenia z bazą danych";
$a->strings["Could not create table."] = "";
$a->strings["Could not create table."] = "Nie mogę stworzyć tabeli.";
$a->strings["Your Friendica site database has been installed."] = "";
$a->strings["You may need to import the file \"database.sql\" manually using phpmyadmin or mysql."] = "Może być konieczne zaimportowanie pliku \"database.sql\" ręcznie, używając phpmyadmin lub mysql.";
$a->strings["Please see the file \"INSTALL.txt\"."] = "Proszę przejrzeć plik \"INSTALL.txt\".";
$a->strings["System check"] = "";
$a->strings["System check"] = "Sprawdzanie systemu";
$a->strings["Check again"] = "Sprawdź ponownie";
$a->strings["Database connection"] = "";
$a->strings["In order to install Friendica we need to know how to connect to your database."] = "";
$a->strings["Database connection"] = "Połączenie z bazą danych";
$a->strings["In order to install Friendica we need to know how to connect to your database."] = "W celu zainstalowania Friendica musimy wiedzieć jak połączyć się z twoją bazą danych.";
$a->strings["Please contact your hosting provider or site administrator if you have questions about these settings."] = "Proszę skontaktuj się ze swoim dostawcą usług hostingowych bądź administratorem strony jeśli masz pytania co do tych ustawień .";
$a->strings["The database you specify below should already exist. If it does not, please create it before continuing."] = "Wymieniona przez Ciebie baza danych powinna już istnieć. Jeżeli nie, utwórz ją przed kontynuacją.";
$a->strings["Database Server Name"] = "Baza danych - Nazwa serwera";
$a->strings["Database Login Name"] = "Baza danych - Nazwa loginu";
$a->strings["Database Login Password"] = "Baza danych - Hasło loginu";
$a->strings["Database Name"] = "Baza danych - Nazwa";
$a->strings["Site administrator email address"] = "";
$a->strings["Site administrator email address"] = "Adres e-mail administratora strony";
$a->strings["Your account email address must match this in order to use the web admin panel."] = "";
$a->strings["Please select a default timezone for your website"] = "Proszę wybrać domyślną strefę czasową dla swojej strony";
$a->strings["Site settings"] = "Ustawienia strony";
@ -254,7 +254,7 @@ $a->strings["Error: GD graphics PHP module with JPEG support required but not in
$a->strings["Error: openssl PHP module required but not installed."] = "Błąd: openssl PHP wymagany moduł, lecz nie zainstalowany.";
$a->strings["Error: mysqli PHP module required but not installed."] = "Błąd: mysqli PHP wymagany moduł, lecz nie zainstalowany.";
$a->strings["Error: mb_string PHP module required but not installed."] = "";
$a->strings["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."] = "";
$a->strings["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."] = "";
$a->strings["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."] = "";
$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."] = "";
@ -316,7 +316,7 @@ $a->strings["Link"] = "Link";
$a->strings["Video"] = "Video";
$a->strings["add star"] = "dodaj gwiazdkę";
$a->strings["remove star"] = "anuluj gwiazdkę";
$a->strings["toggle star status"] = "";
$a->strings["toggle star status"] = "włącz status gwiazdy";
$a->strings["starred"] = "";
$a->strings["add tag"] = "dodaj tag";
$a->strings["save to folder"] = "zapisz w folderze";
@ -329,7 +329,7 @@ $a->strings["Discard"] = "Odrzuć";
$a->strings["Ignore"] = "Ignoruj";
$a->strings["System"] = "System";
$a->strings["Network"] = "Sieć";
$a->strings["Personal"] = "";
$a->strings["Personal"] = "Osobiste";
$a->strings["Home"] = "Dom";
$a->strings["Introductions"] = "";
$a->strings["Messages"] = "Wiadomości";
@ -358,13 +358,13 @@ $a->strings["%s disliked %s's post"] = "%s przestał lubić post %s";
$a->strings["%s is now friends with %s"] = "%s jest teraz znajomym %s";
$a->strings["%s created a new post"] = "%s dodał nowy wpis";
$a->strings["%s commented on %s's post"] = "%s skomentował wpis %s";
$a->strings["No more network notifications."] = "";
$a->strings["No more network notifications."] = "Nie ma więcej powiadomień sieciowych";
$a->strings["Network Notifications"] = "";
$a->strings["No more system notifications."] = "";
$a->strings["System Notifications"] = "";
$a->strings["No more personal notifications."] = "";
$a->strings["No more personal notifications."] = "Nie ma więcej powiadomień osobistych";
$a->strings["Personal Notifications"] = "";
$a->strings["No more home notifications."] = "";
$a->strings["No more home notifications."] = "Nie ma więcej powiadomień domu";
$a->strings["Home Notifications"] = "";
$a->strings["Could not access contact record."] = "Nie można uzyskać dostępu do rejestru kontaktów.";
$a->strings["Could not locate selected profile."] = "Nie można znaleźć wybranego profilu.";
@ -377,8 +377,8 @@ $a->strings["Contact has been archived"] = "";
$a->strings["Contact has been unarchived"] = "";
$a->strings["Contact has been removed."] = "Kontakt został usunięty.";
$a->strings["You are mutual friends with %s"] = "Jesteś już znajomym z %s";
$a->strings["You are sharing with %s"] = "";
$a->strings["%s is sharing with you"] = "";
$a->strings["You are sharing with %s"] = "Współdzielisz z %s";
$a->strings["%s is sharing with you"] = "%s współdzieli z tobą";
$a->strings["Private communications are not available for this contact."] = "Prywatna rozmowa jest niemożliwa dla tego kontaktu";
$a->strings["Never"] = "Nigdy";
$a->strings["(Update was successful)"] = "(Aktualizacja przebiegła pomyślnie)";
@ -406,7 +406,7 @@ $a->strings["Contact Editor"] = "Edytor kontaktów";
$a->strings["Profile Visibility"] = "Widoczność profilu";
$a->strings["Please choose the profile you would like to display to %s when viewing your profile securely."] = "Wybierz profil, który chcesz bezpiecznie wyświetlić %s";
$a->strings["Contact Information / Notes"] = "Informacja o kontakcie / Notka";
$a->strings["Edit contact notes"] = "";
$a->strings["Edit contact notes"] = "Edytuj notatki kontaktu";
$a->strings["Visit %s's profile [%s]"] = "Obejrzyj %s's profil [%s]";
$a->strings["Block/Unblock contact"] = "Zablokuj/odblokuj kontakt";
$a->strings["Ignore contact"] = "Ignoruj kontakt";
@ -459,8 +459,8 @@ $a->strings["Nickname or Email: "] = "Pseudonim lub Email:";
$a->strings["Reset"] = "Zresetuj";
$a->strings["Missing some important data!"] = "Brakuje ważnych danych!";
$a->strings["Update"] = "Zaktualizuj";
$a->strings["Failed to connect with email account using the settings provided."] = "";
$a->strings["Email settings updated."] = "";
$a->strings["Failed to connect with email account using the settings provided."] = "Połączenie z kontem email używając wybranych ustawień nie powiodło się.";
$a->strings["Email settings updated."] = "Zaktualizowano ustawienia email.";
$a->strings["Passwords do not match. Password unchanged."] = "Hasło nie pasuje. Hasło nie zmienione.";
$a->strings["Empty passwords are not allowed. Password unchanged."] = "Brak hasła niedozwolony. Hasło nie zmienione.";
$a->strings["Password changed."] = "Hasło zostało zmianione.";
@ -473,10 +473,10 @@ $a->strings["Private forum has no privacy permissions. Using default privacy gro
$a->strings["Private forum has no privacy permissions and no default privacy group."] = "";
$a->strings["Settings updated."] = "Zaktualizowano ustawienia.";
$a->strings["Add application"] = "Dodaj aplikacje";
$a->strings["Consumer Key"] = "";
$a->strings["Consumer Secret"] = "";
$a->strings["Consumer Key"] = "Klucz konsumenta";
$a->strings["Consumer Secret"] = "Sekret konsumenta";
$a->strings["Redirect"] = "Przekierowanie";
$a->strings["Icon url"] = "";
$a->strings["Icon url"] = "Adres ikony";
$a->strings["You can't edit this application."] = "Nie możesz edytować tej aplikacji.";
$a->strings["Connected Apps"] = "Powiązane aplikacje";
$a->strings["Client key starts with"] = "";
@ -501,7 +501,7 @@ $a->strings["Email login name:"] = "Login emaila:";
$a->strings["Email password:"] = "Hasło emaila:";
$a->strings["Reply-to address:"] = "Odpowiedz na adres:";
$a->strings["Send public posts to all email contacts:"] = "Wyślij publiczny post do wszystkich kontaktów e-mail";
$a->strings["Action after import:"] = "";
$a->strings["Action after import:"] = "Akcja po zaimportowaniu:";
$a->strings["Mark as seen"] = "Oznacz jako przeczytane";
$a->strings["Move to folder"] = "Przenieś do folderu";
$a->strings["Move to folder:"] = "Przenieś do folderu:";
@ -524,7 +524,7 @@ $a->strings["Automatic Friend Page"] = "";
$a->strings["Automatically approve all connection/friend requests as friends"] = "Automatycznie traktuj wszystkie prośby o połączenia/zaproszenia do grona przyjaciół, jako przyjaciół";
$a->strings["Private Forum [Experimental]"] = "";
$a->strings["Private forum - approved members only"] = "";
$a->strings["OpenID:"] = "";
$a->strings["OpenID:"] = "OpenID:";
$a->strings["(Optional) Allow this OpenID to login to this account."] = "";
$a->strings["Publish your default profile in your local site directory?"] = "";
$a->strings["Publish your default profile in the global social directory?"] = "Opublikować twój niewypełniony profil w globalnym, społecznym katalogu?";
@ -575,7 +575,7 @@ $a->strings["Someone writes on your profile wall"] = "Ktoś pisze na twojej ści
$a->strings["Someone writes a followup comment"] = "Ktoś pisze komentarz nawiązujący.";
$a->strings["You receive a private message"] = "Otrzymałeś prywatną wiadomość";
$a->strings["You receive a friend suggestion"] = "Otrzymane propozycje znajomych";
$a->strings["You are tagged in a post"] = "";
$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"] = "";
@ -610,7 +610,7 @@ $a->strings["Personal Notes"] = "Osobiste notatki";
$a->strings["Save"] = "Zapisz";
$a->strings["Import"] = "";
$a->strings["Move account"] = "";
$a->strings["You can move here an account from another Friendica server. <br>\r\n You need to export your account form the old server and upload it here. We will create here your old account with all your contacts. We will try also to inform you friends that you moved here.<br>\r\n <b>This feature is experimental. We can't move here contacts from ostatus network (statusnet/identi.ca) or from diaspora"] = "";
$a->strings["You can import an account from another Friendica server. <br>\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.<br>\r\n <b>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."] = "";
@ -688,7 +688,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["This site has exceeded the number of allowed daily account registrations. Please try again tomorrow."] = "";
$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["You may (optionally) fill in this form via OpenID by supplying your OpenID and clicking 'Register'."] = "";
$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):";
@ -769,7 +769,7 @@ $a->strings["Users"] = "Użytkownicy";
$a->strings["Plugins"] = "Wtyczki";
$a->strings["Themes"] = "Temat";
$a->strings["DB updates"] = "";
$a->strings["Logs"] = "";
$a->strings["Logs"] = "Logi";
$a->strings["Admin"] = "Administator";
$a->strings["Plugin Features"] = "Polecane wtyczki";
$a->strings["User registrations waiting for confirmation"] = "Rejestracje użytkownika czekają na potwierdzenie.";
@ -785,7 +785,7 @@ $a->strings["Summary"] = "Skrót";
$a->strings["Registered users"] = "Zarejestrowani użytkownicy";
$a->strings["Pending registrations"] = "Rejestracje w toku.";
$a->strings["Version"] = "Wersja";
$a->strings["Active plugins"] = "";
$a->strings["Active plugins"] = "Aktywne pluginy";
$a->strings["Site settings updated."] = "Ustawienia strony zaktualizowane";
$a->strings["Closed"] = "Zamknięty";
$a->strings["Requires approval"] = "Wymagane zatwierdzenie.";
@ -799,7 +799,7 @@ $a->strings["Advanced"] = "Zaawansowany";
$a->strings["Site name"] = "Nazwa strony";
$a->strings["Banner/Logo"] = "Logo";
$a->strings["System language"] = "Język systemu";
$a->strings["System theme"] = "";
$a->strings["System theme"] = "Motyw systemowy";
$a->strings["Default system theme - may be over-ridden by user profiles - <a href='#' id='cnftheme'>change theme settings</a>"] = "";
$a->strings["Mobile system theme"] = "";
$a->strings["Theme for mobile devices"] = "";
@ -811,18 +811,18 @@ $a->strings["Maximum image length"] = "Maksymalna długość obrazu";
$a->strings["Maximum length in pixels of the longest side of uploaded images. Default is -1, which means no limits."] = "Maksymalna długość najdłuższej strony przesyłanego obrazu w pikselach.\nDomyślnie jest to -1, co oznacza brak limitu.";
$a->strings["JPEG image quality"] = "jakość obrazu JPEG";
$a->strings["Uploaded JPEGS will be saved at this quality setting [0-100]. Default is 100, which is full quality."] = "";
$a->strings["Register policy"] = "";
$a->strings["Register text"] = "";
$a->strings["Register policy"] = "Zarejestruj polisę";
$a->strings["Register text"] = "Zarejestruj tekst";
$a->strings["Will be displayed prominently on the registration page."] = "";
$a->strings["Accounts abandoned after x days"] = "Konto porzucone od x dni.";
$a->strings["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "";
$a->strings["Allowed friend domains"] = "Dozwolone domeny przyjaciół";
$a->strings["Comma separated list of domains which are allowed to establish friendships with this site. Wildcards are accepted. Empty to allow any domains"] = "";
$a->strings["Allowed email domains"] = "";
$a->strings["Allowed email domains"] = "Dozwolone domeny e-mailowe";
$a->strings["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "";
$a->strings["Block public"] = "";
$a->strings["Block public"] = "Blokuj publicznie";
$a->strings["Check to block public access to all otherwise public personal pages on this site unless you are currently logged in."] = "";
$a->strings["Force publish"] = "";
$a->strings["Force publish"] = "Wymuś publikację";
$a->strings["Check to force all profiles on this site to be listed in the site directory."] = "";
$a->strings["Global directory update URL"] = "";
$a->strings["URL to update the global directory. If this is not set, the global directory is completely unavailable to the application."] = "";
@ -832,7 +832,7 @@ $a->strings["Private posts by default for new users"] = "";
$a->strings["Set default post permissions for all new members to the default privacy group rather than public."] = "";
$a->strings["Block multiple registrations"] = "";
$a->strings["Disallow users to register additional accounts for use as pages."] = "";
$a->strings["OpenID support"] = "";
$a->strings["OpenID support"] = "Wsparcie OpenID";
$a->strings["OpenID support for registration and logins."] = "";
$a->strings["Fullname check"] = "";
$a->strings["Force users to register with a space between firstname and lastname in Full name, as an antispam measure"] = "";
@ -846,7 +846,7 @@ $a->strings["Enable Diaspora support"] = "";
$a->strings["Provide built-in Diaspora network compatibility."] = "";
$a->strings["Only allow Friendica contacts"] = "";
$a->strings["All contacts must use Friendica protocols. All other built-in communication protocols disabled."] = "";
$a->strings["Verify SSL"] = "";
$a->strings["Verify SSL"] = "Weryfikacja SSL";
$a->strings["If you wish, you can turn on strict certificate checking. This will mean you cannot connect (at all) to self-signed SSL sites."] = "";
$a->strings["Proxy user"] = "Użytkownik proxy";
$a->strings["Proxy URL"] = "";
@ -898,7 +898,7 @@ $a->strings["Plugin %s disabled."] = "Wtyczka %s wyłączona.";
$a->strings["Plugin %s enabled."] = "Wtyczka %s właczona.";
$a->strings["Disable"] = "Wyłącz";
$a->strings["Enable"] = "Zezwól";
$a->strings["Toggle"] = "";
$a->strings["Toggle"] = "Włącz";
$a->strings["Author: "] = "Autor: ";
$a->strings["Maintainer: "] = "";
$a->strings["No themes found."] = "Nie znaleziono tematu.";
@ -906,15 +906,15 @@ $a->strings["Screenshot"] = "Zrzut ekranu";
$a->strings["[Experimental]"] = "[Eksperymentalne]";
$a->strings["[Unsupported]"] = "[Niewspieralne]";
$a->strings["Log settings updated."] = "";
$a->strings["Clear"] = "";
$a->strings["Clear"] = "Wyczyść";
$a->strings["Debugging"] = "";
$a->strings["Log file"] = "";
$a->strings["Must be writable by web server. Relative to your Friendica top-level directory."] = "";
$a->strings["Log level"] = "";
$a->strings["Close"] = "Zamknij";
$a->strings["FTP Host"] = "";
$a->strings["FTP Path"] = "";
$a->strings["FTP User"] = "";
$a->strings["FTP Host"] = "Założyciel FTP";
$a->strings["FTP Path"] = "Ścieżka FTP";
$a->strings["FTP User"] = "Użytkownik FTP";
$a->strings["FTP Password"] = "FTP Hasło";
$a->strings["Requested profile is not available."] = "Żądany profil jest niedostępny";
$a->strings["Access to this profile has been restricted."] = "Ograniczony dostęp do tego konta";
@ -1074,7 +1074,7 @@ $a->strings["This may occasionally happen if contact was requested by both perso
$a->strings["Response from remote site was not understood."] = "Odpowiedź do zdalnej strony nie została zrozumiana";
$a->strings["Unexpected response from remote site: "] = "Nieoczekiwana odpowiedź od strony zdalnej";
$a->strings["Confirmation completed successfully."] = "Potwierdzenie ukończone poprawnie";
$a->strings["Remote site reported: "] = "";
$a->strings["Remote site reported: "] = "Zdalna strona zgłoszona:";
$a->strings["Temporary failure. Please wait and try again."] = "Tymczasowo uszkodzone. Proszę poczekać i spróbować później.";
$a->strings["Introduction failed or was revoked."] = "Nieudane lub unieważnione wprowadzenie.";
$a->strings["Unable to set contact photo."] = "Nie można ustawić zdjęcia kontaktu.";
@ -1111,7 +1111,7 @@ $a->strings["On this website your Facebook profile wall conversations will only
$a->strings["Do not import your Facebook profile wall conversations"] = "";
$a->strings["If you choose to link conversations and leave both of these boxes unchecked, your Facebook profile wall will be merged with your profile wall on this website and your privacy settings on this website will be used to determine who may see the conversations."] = "";
$a->strings["Comma separated applications to ignore"] = "";
$a->strings["Problems with Facebook Real-Time Updates"] = "";
$a->strings["Problems with Facebook Real-Time Updates"] = "Problemy z aktualizacjami w czasie rzeczywistym Facebook'a";
$a->strings["Facebook Connector Settings"] = "Ustawienia połączenia z Facebook";
$a->strings["Facebook API Key"] = "Facebook API Key";
$a->strings["Error: it appears that you have specified the App-ID and -Secret in your .htconfig.php file. As long as they are specified there, they cannot be set using this form.<br><br>"] = "";
@ -1122,11 +1122,11 @@ $a->strings["App-ID / API-Key"] = "";
$a->strings["Application secret"] = "";
$a->strings["Polling Interval in minutes (minimum %1\$s minutes)"] = "";
$a->strings["Synchronize comments (no comments on Facebook are missed, at the cost of increased system load)"] = "";
$a->strings["Real-Time Updates"] = "";
$a->strings["Real-Time Updates are activated."] = "";
$a->strings["Deactivate Real-Time Updates"] = "";
$a->strings["Real-Time Updates not activated."] = "";
$a->strings["Activate Real-Time Updates"] = "";
$a->strings["Real-Time Updates"] = "Aktualizacje w czasie rzeczywistym";
$a->strings["Real-Time Updates are activated."] = "Aktualizacje w czasie rzeczywistym zostały aktywowane.";
$a->strings["Deactivate Real-Time Updates"] = "Zdezaktywuj aktualizacje w czasie rzeczywistym";
$a->strings["Real-Time Updates not activated."] = "Aktualizacje w czasie rzeczywistym nie zostały aktywowane.";
$a->strings["Activate Real-Time Updates"] = "Aktywuj aktualizacje w czasie rzeczywistym";
$a->strings["The new values have been saved."] = "";
$a->strings["Post to Facebook"] = "Post na Facebook";
$a->strings["Post to Facebook cancelled because of multi-network access permission conflict."] = "Publikacja na stronie Facebook nie powiodła się z powodu braku dostępu do sieci";
@ -1203,7 +1203,7 @@ $a->strings["YourLS Settings"] = "";
$a->strings["URL: http://"] = "";
$a->strings["Username:"] = "Nazwa użytkownika:";
$a->strings["Password:"] = "Hasło:";
$a->strings["Use SSL "] = "";
$a->strings["Use SSL "] = "Użyj SSL";
$a->strings["yourls Settings saved."] = "";
$a->strings["Post to LiveJournal"] = "Post do LiveJournal";
$a->strings["LiveJournal Post Settings"] = "Ustawienia postów do LiveJournal";
@ -1216,9 +1216,9 @@ $a->strings["This plugin looks in posts for the words/text you specify below, an
$a->strings["Enable Content filter"] = "";
$a->strings["Comma separated list of keywords to hide"] = "";
$a->strings["Use /expression/ to provide regular expressions"] = "";
$a->strings["NSFW Settings saved."] = "";
$a->strings["%s - Click to open/close"] = "";
$a->strings["Forums"] = "";
$a->strings["NSFW Settings saved."] = "NSFW Ustawienia zapisane.";
$a->strings["%s - Click to open/close"] = "%s - kliknij by otworzyć/zamknąć";
$a->strings["Forums"] = "Fora";
$a->strings["Forums:"] = "";
$a->strings["Page settings updated."] = "";
$a->strings["Page Settings"] = "";
@ -1228,7 +1228,7 @@ $a->strings["Show pages/forums on profile page"] = "";
$a->strings["Planets Settings"] = "";
$a->strings["Enable Planets Plugin"] = "";
$a->strings["Login"] = "Login";
$a->strings["OpenID"] = "";
$a->strings["OpenID"] = "OpenID";
$a->strings["Latest users"] = "Ostatni użytkownicy";
$a->strings["Most active users"] = "najaktywniejsi użytkownicy";
$a->strings["Latest photos"] = "Ostatnie zdjęcia";
@ -1362,12 +1362,12 @@ $a->strings["Template URL (with {category})"] = "";
$a->strings["OAuth end-point"] = "";
$a->strings["Api"] = "";
$a->strings["Member since:"] = "Data dołączenia:";
$a->strings["Three Dimensional Tic-Tac-Toe"] = "";
$a->strings["3D Tic-Tac-Toe"] = "";
$a->strings["Three Dimensional Tic-Tac-Toe"] = "Trójwymiarowy Kółko i krzyżyk";
$a->strings["3D Tic-Tac-Toe"] = "Kółko i krzyżyk 3D";
$a->strings["New game"] = "Nowa gra";
$a->strings["New game with handicap"] = "Nowa gra z utrudnieniem";
$a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "";
$a->strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "";
$a->strings["Three dimensional tic-tac-toe is just like the traditional game except that it is played on multiple levels simultaneously. "] = "Trójwymiarowy tic-tac-toe jest taki sam jak tradycyjna gra, nie licząc tego, że jest grana na kilku poziomach jednocześnie.";
$a->strings["In this case there are three levels. You win by getting three in a row on any level, as well as up, down, and diagonally across the different levels."] = "W tym przypadku są trzy poziomy. Wygrywasz poprzez zdobycie trójki w szeregu na którymkolwiek z poziomów zarówno u góry, na dole, jak i na ukos poprzez kilka różnych poziomów.";
$a->strings["The handicap game disables the center position on the middle level because the player claiming this square often has an unfair advantage."] = "";
$a->strings["You go first..."] = "Ty pierwszy...";
$a->strings["I'm going first this time..."] = "Zaczynam...";
@ -1428,7 +1428,7 @@ $a->strings["Additional notes that are displayed beneath the contact information
$a->strings["How to contact the operator via email. (will be displayed obfuscated)"] = "";
$a->strings["Footer note"] = "Notka w stopce";
$a->strings["Text for the footer. You can use BBCode here."] = "";
$a->strings["Report Bug"] = "";
$a->strings["Report Bug"] = "Zgłoś problem";
$a->strings["No Timeline settings updated."] = "";
$a->strings["No Timeline Settings"] = "Brak ustawień Osi czasu";
$a->strings["Disable Archive selector on profile wall"] = "";
@ -1510,7 +1510,7 @@ $a->strings["Subscribe to Friendica contacts automatically"] = "";
$a->strings["Purge internal list of jabber addresses of contacts"] = "";
$a->strings["Add contact"] = "Dodaj kontakt";
$a->strings["View Source"] = "Podgląd źródła";
$a->strings["Post to StatusNet"] = "Opublikuj status";
$a->strings["Post to StatusNet"] = "Wyślij do sieci StatusNet";
$a->strings["Please contact your site administrator.<br />The provided API URL is not valid."] = "";
$a->strings["We could not contact the StatusNet API with the Path you entered."] = "";
$a->strings["StatusNet settings updated."] = "Ustawienia StatusNet zaktualizowane";
@ -1549,7 +1549,7 @@ $a->strings["How many contacts to display on profile sidebar"] = "";
$a->strings["Gnot settings updated."] = "";
$a->strings["Gnot Settings"] = "";
$a->strings["Allows threading of email comment notifications on Gmail and anonymising the subject line."] = "";
$a->strings["Enable this plugin/addon?"] = "";
$a->strings["Enable this plugin/addon?"] = "Umożliwić tego plugina/wtyczkę?";
$a->strings["[Friendica:Notify] Comment to conversation #%d"] = "";
$a->strings["Post to Wordpress"] = "Opublikuj na Wordpress";
$a->strings["WordPress Post Settings"] = "";
@ -1573,7 +1573,7 @@ $a->strings["Site ID"] = "";
$a->strings["Show opt-out cookie link?"] = "";
$a->strings["Asynchronous tracking"] = "";
$a->strings["Post to Twitter"] = "Post na Twitter";
$a->strings["Twitter settings updated."] = "";
$a->strings["Twitter settings updated."] = "Zaktualizowano ustawienia Twittera.";
$a->strings["Twitter Posting Settings"] = "Ustawienia wpisów z Twittera";
$a->strings["No consumer key pair for Twitter found. Please contact your site administrator."] = "Nie znaleziono pary dla Twittera. Proszę skontaktować się z admininstratorem strony.";
$a->strings["At this Friendica instance the Twitter plugin was enabled but you have not yet connected your account to your Twitter account. To do so click the button below to get a PIN from Twitter which you have to copy into the input box below and submit the form. Only your <strong>public</strong> posts will be posted to Twitter."] = "";
@ -1805,8 +1805,8 @@ $a->strings["November"] = "Listopad";
$a->strings["December"] = "Grudzień";
$a->strings["bytes"] = "bajty";
$a->strings["Click to open/close"] = "Kliknij aby otworzyć/zamknąć";
$a->strings["default"] = "";
$a->strings["Select an alternate language"] = "";
$a->strings["default"] = "standardowe";
$a->strings["Select an alternate language"] = "Wybierz alternatywny język";
$a->strings["activity"] = "aktywność";
$a->strings["post"] = "post";
$a->strings["Item filed"] = "";
@ -1839,7 +1839,7 @@ $a->strings["Status"] = "Status";
$a->strings["Sign in"] = "Zaloguj się";
$a->strings["Home Page"] = "Strona startowa";
$a->strings["Create an account"] = "Załóż konto";
$a->strings["Help and documentation"] = "";
$a->strings["Help and documentation"] = "Pomoc i dokumentacja";
$a->strings["Apps"] = "Aplikacje";
$a->strings["Addon applications, utilities, games"] = "";
$a->strings["Search site content"] = "Przeszukaj zawartość strony";
@ -1848,7 +1848,7 @@ $a->strings["Directory"] = "";
$a->strings["People directory"] = "";
$a->strings["Conversations from your friends"] = "";
$a->strings["Friend Requests"] = "Podania o przyjęcie do grona znajomych";
$a->strings["See all notifications"] = "";
$a->strings["See all notifications"] = "Zobacz wszystkie powiadomienia";
$a->strings["Mark all system notifications seen"] = "";
$a->strings["Private mail"] = "Prywatne maile";
$a->strings["Inbox"] = "Odebrane";
@ -1875,7 +1875,7 @@ $a->strings["Examples: Robert Morgenstein, Fishing"] = "Przykładowo: Jan Kowal
$a->strings["Random Profile"] = "Domyślny profil";
$a->strings["Networks"] = "Sieci";
$a->strings["All Networks"] = "Wszystkie Sieci";
$a->strings["Saved Folders"] = "";
$a->strings["Saved Folders"] = "Zapisane foldery";
$a->strings["Everything"] = "Wszystko";
$a->strings["Categories"] = "Kategorie";
$a->strings["Logged out."] = "Wyloguj";
@ -1899,7 +1899,7 @@ $a->strings["%s's birthday"] = "";
$a->strings["Happy Birthday %s"] = "";
$a->strings["From: "] = "Z:";
$a->strings["Image/photo"] = "Obrazek/zdjęcie";
$a->strings["$1 wrote:"] = "";
$a->strings["$1 wrote:"] = "$1 napisał:";
$a->strings["Encrypted content"] = "";
$a->strings["Cannot locate DNS info for database server '%s'"] = "";
$a->strings["[no subject]"] = "[bez tematu]";
@ -1908,7 +1908,7 @@ $a->strings["Friendica Notification"] = "";
$a->strings["Thank You,"] = "Dziękuję,";
$a->strings["%s Administrator"] = "%s administrator";
$a->strings["%s <!item_type!>"] = "";
$a->strings["[Friendica:Notify] New mail received at %s"] = "";
$a->strings["[Friendica:Notify] New mail received at %s"] = "[Friendica:Notify] Nowa wiadomość otrzymana od %s";
$a->strings["%1\$s sent you a new private message at %2\$s."] = "";
$a->strings["%1\$s sent you %2\$s."] = "%1\$s wysyła ci %2\$s";
$a->strings["a private message"] = "prywatna wiadomość";
@ -1919,10 +1919,10 @@ $a->strings["%1\$s commented on [url=%2\$s]your %3\$s[/url]"] = "";
$a->strings["[Friendica:Notify] Comment to conversation #%1\$d by %2\$s"] = "";
$a->strings["%s commented on an item/conversation you have been following."] = "";
$a->strings["Please visit %s to view and/or reply to the conversation."] = "";
$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "";
$a->strings["[Friendica:Notify] %s posted to your profile wall"] = "[Friendica:Notify] %s napisał na twoim profilu";
$a->strings["%1\$s posted to your profile wall at %2\$s"] = "";
$a->strings["%1\$s posted to [url=%2\$s]your wall[/url]"] = "";
$a->strings["[Friendica:Notify] %s tagged you"] = "";
$a->strings["[Friendica:Notify] %s tagged you"] = "[Friendica:Notify] %s oznaczył cię";
$a->strings["%1\$s tagged you at %2\$s"] = "";
$a->strings["%1\$s [url=%2\$s]tagged you[/url]."] = "";
$a->strings["[Friendica:Notify] %1\$s poked you"] = "";
@ -1950,7 +1950,7 @@ $a->strings["An author or name was not found."] = "Autor lub nazwa nie zostało
$a->strings["No browser URL could be matched to this address."] = "";
$a->strings["Unable to match @-style Identity Address with a known protocol or email contact."] = "";
$a->strings["Use mailto: in front of address to force email check."] = "";
$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "";
$a->strings["The profile address specified belongs to a network which has been disabled on this site."] = "Określony adres profilu należy do sieci, która została wyłączona na tej stronie.";
$a->strings["Limited profile. This person will be unable to receive direct/personal notifications from you."] = "Profil ograniczony. Ta osoba będzie niezdolna do odbierania osobistych powiadomień od ciebie.";
$a->strings["Unable to retrieve contact information."] = "Nie można otrzymać informacji kontaktowych";
$a->strings["following"] = "następujący";
@ -2018,7 +2018,8 @@ $a->strings["Update Error at %s"] = "";
$a->strings["Create a New Account"] = "Załóż nowe konto";
$a->strings["Nickname or Email address: "] = "Nick lub adres email:";
$a->strings["Password: "] = "Hasło:";
$a->strings["Or login using OpenID: "] = "";
$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["Requested account is not available."] = "";
$a->strings["Edit profile"] = "Edytuj profil";
@ -2029,7 +2030,7 @@ $a->strings["[today]"] = "[dziś]";
$a->strings["Birthday Reminders"] = "Przypomnienia o urodzinach";
$a->strings["Birthdays this week:"] = "Urodziny w tym tygodniu:";
$a->strings["[No description]"] = "[Brak opisu]";
$a->strings["Event Reminders"] = "";
$a->strings["Event Reminders"] = "Przypominacze wydarzeń";
$a->strings["Events this week:"] = "Wydarzenia w tym tygodniu:";
$a->strings["Status Messages and Posts"] = "Status wiadomości i postów";
$a->strings["Profile Details"] = "Szczegóły profilu";

View File

@ -242,7 +242,7 @@ $a->strings["Error: GD graphics PHP module with JPEG support required but not in
$a->strings["Error: openssl PHP module required but not installed."] = "Erro: o módulo openssl do PHP é necessário, mas não está instalado.";
$a->strings["Error: mysqli PHP module required but not installed."] = "Erro: o módulo mysqli do PHP é necessário, mas não está instalado.";
$a->strings["Error: mb_string PHP module required but not installed."] = "Erro: o módulo mb_string PHP é necessário, mas não está instalado.";
$a->strings["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."] = "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo.";
$a->strings["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."] = "O instalador web precisa criar um arquivo chamado \".htconfig.php\" na pasta raiz da instalação e não está conseguindo.";
$a->strings["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."] = "Geralmente isso está relacionado às definições de permissão, uma vez que o servidor web pode não estar conseguindo escrever os arquivos nesta pasta.";
$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."] = "Ao final desse procedimento, será fornecido um texto que deverá ser salvo em um arquivo de nome. htconfig.php, na pasta raiz da instalação do seu Friendica.";
$a->strings["You can alternatively skip this procedure and perform a manual installation. Please see the file \"INSTALL.txt\" for instructions."] = "Você também pode pular esse procedimento e executar uma instalação manual. Por favor, dê uma olhada no arquivo \"INSTALL.TXT\" para instruções.";

View File

@ -237,7 +237,7 @@ $a->strings["Error: GD graphics PHP module with JPEG support required but not in
$a->strings["Error: openssl PHP module required but not installed."] = "Ошибка: необходим PHP модуль OpenSSL, но он не установлен.";
$a->strings["Error: mysqli PHP module required but not installed."] = "Ошибка: необходим PHP модуль MySQLi, но он не установлен.";
$a->strings["Error: mb_string PHP module required but not installed."] = "Ошибка: необходим PHP модуль mb_string, но он не установлен.";
$a->strings["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."] = "Веб-инсталлятору требуется создать файл с именем \". htconfig.php\" в верхней папке веб-сервера, но он не в состоянии это сделать.";
$a->strings["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."] = "Веб-инсталлятору требуется создать файл с именем \". htconfig.php\" в верхней папке веб-сервера, но он не в состоянии это сделать.";
$a->strings["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."] = "Это наиболее частые параметры разрешений, когда веб-сервер не может записать файлы в папке - даже если вы можете.";
$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."] = "";

View File

@ -1,5 +1,5 @@
<div class="wall-item-outside-wrapper $item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
<div class="wall-item-outside-wrapper $item.indent $item.shiny$item.previewing" id="wall-item-outside-wrapper-$item.id" >
<div class="wall-item-content-wrapper $item.indent $item.shiny" id="wall-item-content-wrapper-$item.id" >
<div class="wall-item-info" id="wall-item-info-$item.id">
<div class="wall-item-photo-wrapper" id="wall-item-photo-wrapper-$item.id"
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
@ -47,7 +47,7 @@
{{ endif }}
</div>
<div class="wall-item-outside-wrapper-end $item.indent" ></div>
<div class="wall-item-outside-wrapper-end $item.indent $item.shiny" ></div>
</div>

View File

@ -13,7 +13,6 @@
<input type="hidden" name="coord" id="jot-coord" value="" />
<input type="hidden" name="post_id" value="$post_id" />
<input type="hidden" name="preview" id="jot-preview" value="0" />
<input type="hidden" name="post_id_random" value="$rand_num" />
<input name="title" id="jot-title" type="text" placeholder="$placeholdertitle" value="$title" class="jothidden" style="display:none">
<div id="jot-category-wrap"><input name="category" id="jot-category" type="text" placeholder="$placeholdercategory" value="$category" class="jothidden" style="display:none" /></div>
<div id="character-counter" class="grey"></div>

View File

@ -1,9 +1,9 @@
{{ if $item.indent }}{{ else }}
{{ if $item.indent $item.shiny }}{{ else }}
<div class="wall-item-decor">
<img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
</div>
{{ endif }}
<div class="wall-item-container $item.indent">
<div class="wall-item-container $item.indent $item.shiny">
<div class="wall-item-item">
<div class="wall-item-info">
<div class="contact-photo-wrapper"

View File

@ -27,7 +27,7 @@
<img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
</div>
<div class="wall-item-container $item.indent" id="item-$item.id">
<div class="wall-item-container $item.indent $item.shiny" id="item-$item.id">
<div class="wall-item-item">
<div class="wall-item-info">
<div class="contact-photo-wrapper mframe{{ if $item.owner_url }} wwfrom{{ endif }}"
@ -145,7 +145,7 @@
<div class="wall-item-dislike" id="wall-item-dislike-$item.id">$item.dislike</div>
</div>
{{ if $item.threaded }}{{ if $item.comment }}{{ if $item.indent==comment }}
{{ if $item.threaded }}{{ if $item.comment }}{{ if $item.indent $item.shiny==comment }}
<div class="wall-item-bottom">
<div class="wall-item-links"></div>
<div class="wall-item-comment-wrapper">

View File

@ -6,8 +6,8 @@
{{endif}}
<div id="tread-wrapper-$item.id" class="tread-wrapper $item.toplevel">
<a name="$item.id" ></a>
<div class="wall-item-outside-wrapper $item.indent$item.previewing{{ if $item.owner_url }} wallwall{{ endif }}" id="wall-item-outside-wrapper-$item.id" >
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
<div class="wall-item-outside-wrapper $item.indent $item.shiny$item.previewing{{ if $item.owner_url }} wallwall{{ endif }}" id="wall-item-outside-wrapper-$item.id" >
<div class="wall-item-content-wrapper $item.indent $item.shiny" id="wall-item-content-wrapper-$item.id" >
<div class="wall-item-info{{ if $item.owner_url }} wallwall{{ endif }}" id="wall-item-info-$item.id">
{{ if $item.owner_url }}
<div class="wall-item-photo-wrapper wwto" id="wall-item-ownerphoto-wrapper-$item.id" >
@ -105,13 +105,13 @@ class="icon recycle wall-item-share-buttons" title="$item.vote.share.0" onclick
</div>
</div>
<div class="wall-item-wrapper-end"></div>
<div class="wall-item-like $item.indent" id="wall-item-like-$item.id">$item.like</div>
<div class="wall-item-dislike $item.indent" id="wall-item-dislike-$item.id">$item.dislike</div>
<div class="wall-item-like $item.indent $item.shiny" id="wall-item-like-$item.id">$item.like</div>
<div class="wall-item-dislike $item.indent $item.shiny" id="wall-item-dislike-$item.id">$item.dislike</div>
<div class="wall-item-comment-separator"></div>
{{ if $item.threaded }}
{{ if $item.comment }}
<div class="wall-item-comment-wrapper $item.indent" >
<div class="wall-item-comment-wrapper $item.indent $item.shiny" >
$item.comment
</div>
{{ endif }}
@ -123,7 +123,7 @@ class="icon recycle wall-item-share-buttons" title="$item.vote.share.0" onclick
</div>
{{ endif }}
<div class="wall-item-outside-wrapper-end $item.indent" ></div>
<div class="wall-item-outside-wrapper-end $item.indent $item.shiny" ></div>
</div>
{{ for $item.children as $item }}
{{ inc $item.template }}{{ endinc }}

View File

@ -1050,6 +1050,34 @@ section {
.wall-item-container.comment .wall-item-links {
padding-left: 12px;
}
.wall-item-container.comment .commentbox {
height: 0px;
overflow: hidden;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.wall-item-container.comment .commentbox .wall-item-comment-wrapper {
border-top: 1px solid #999999;
height: 0px;
overflow: hidden;
}
.wall-item-container.comment:hover .commentbox {
height: auto;
overflow: visible;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.wall-item-container.comment:hover .commentbox .wall-item-comment-wrapper {
border-top: 0px;
height: auto;
overflow: visible;
}
/* 'tag' item type */
.wall-item-container.item-tag .wall-item-content {
opacity: 0.5;

View File

@ -1050,6 +1050,34 @@ section {
.wall-item-container.comment .wall-item-links {
padding-left: 12px;
}
.wall-item-container.comment .commentbox {
height: 0px;
overflow: hidden;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.wall-item-container.comment .commentbox .wall-item-comment-wrapper {
border-top: 1px solid #999999;
height: 0px;
overflow: hidden;
}
.wall-item-container.comment:hover .commentbox {
height: auto;
overflow: visible;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.wall-item-container.comment:hover .commentbox .wall-item-comment-wrapper {
border-top: 0px;
height: auto;
overflow: visible;
}
/* 'tag' item type */
.wall-item-container.item-tag .wall-item-content {
opacity: 0.5;

View File

@ -1050,6 +1050,34 @@ section {
.wall-item-container.comment .wall-item-links {
padding-left: 12px;
}
.wall-item-container.comment .commentbox {
height: 0px;
overflow: hidden;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.wall-item-container.comment .commentbox .wall-item-comment-wrapper {
border-top: 1px solid #999999;
height: 0px;
overflow: hidden;
}
.wall-item-container.comment:hover .commentbox {
height: auto;
overflow: visible;
-webkit-transition: all 0.2s ease-in-out;
-moz-transition: all 0.2s ease-in-out;
-o-transition: all 0.2s ease-in-out;
-ms-transition: all 0.2s ease-in-out;
transition: all 0.2s ease-in-out;
}
.wall-item-container.comment:hover .commentbox .wall-item-comment-wrapper {
border-top: 0px;
height: auto;
overflow: visible;
}
/* 'tag' item type */
.wall-item-container.item-tag .wall-item-content {
opacity: 0.5;

View File

@ -509,7 +509,7 @@ section {
a { float: right; }
input { float: right; }
}
}
@ -523,6 +523,25 @@ section {
left: 0px !important;
}
.wall-item-links { padding-left: 12px; }
.commentbox {
height: 0px;
overflow: hidden;
.wall-item-comment-wrapper {
border-top: 1px solid @CommentBoxEmptyBorderColor;
height: 0px; overflow: hidden;
}
.transition();
}
&:hover .commentbox {
height:auto; overflow: visible;
.wall-item-comment-wrapper {
border-top: 0px;
height:auto;overflow: visible;
}
.transition();
}
}
/* 'tag' item type */
@ -544,6 +563,7 @@ section {
.wall-item-comment-wrapper {
margin: 1em 2em 1em 60px;
.comment-edit-photo { display: none; }
textarea {
height: 1em; width: 100%; font-size: 10px;
color: @CommentBoxEmptyColor;
@ -555,7 +575,6 @@ section {
color: @CommentBoxFullColor;
border: 1px solid @CommentBoxFullBorderColor;
}
}
.threaded .wall-item-comment-wrapper { margin-left: 0px; }

View File

@ -1,6 +1,28 @@
{{if $mode == display}}
{{ else }}
{{if $item.comment_firstcollapsed}}
<div class="hide-comments-outer">
<span id="hide-comments-total-$item.id"
class="hide-comments-total">$item.num_comments</span>
<span id="hide-comments-$item.id"
class="hide-comments fakelink"
onclick="showHideComments($item.id);">$item.hide_text</span>
{{ if $item.thread_level==3 }} -
<span id="hide-thread-$item-id"
class="fakelink"
onclick="showThread($item.id);">expand</span> /
<span id="hide-thread-$item-id"
class="fakelink"
onclick="hideThread($item.id);">collapse</span> thread{{ endif }}
</div>
<div id="collapsed-comments-$item.id" class="collapsed-comments" style="display: none;">
{{endif}}
{{ endif }}
{{ if $item.thread_level!=1 }}<div class="children">{{ endif }}
<div class="wall-item-container item-tag $item.indent">
<div class="wall-item-container item-tag $item.indent $item.shiny">
<div class="wall-item-item">
<div class="wall-item-info">
<div class="contact-photo-wrapper">
@ -17,11 +39,29 @@
<div class="wall-item-content">
$item.ago $item.body
</div>
<div class="wall-item-tools">
{{ if $item.drop.pagedrop }}
<input type="checkbox" title="$item.drop.select" name="itemselected[]" class="item-select" value="$item.id" />
{{ endif }}
{{ if $item.drop.dropping }}
<a href="item/drop/$item.id" onclick="return confirmDelete();" class="icon delete s16" title="$item.drop.delete">$item.drop.delete</a>
{{ endif }}
</div>
</div>
</div>
{{ if $item.thread_level!=1 }}</div>{{ endif }}
{{if $mode == display}}
{{ else }}
{{if $item.comment_lastcollapsed}}</div>{{endif}}
{{ endif }}
{# top thread comment box #}
{{if $item.threaded}}{{if $item.comment}}{{if $item.thread_level==1}}
<div class="wall-item-comment-wrapper" >$item.comment</div>
{{ endif }}{{ endif }}{{ endif }}
{{ if $item.flatten }}
<div class="wall-item-comment-wrapper" >$item.comment</div>
{{ endif }}

View File

@ -27,7 +27,7 @@
<img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
</div>
<div class="wall-item-container $item.indent" id="item-$item.id">
<div class="wall-item-container $item.indent $item.shiny" id="item-$item.id">
<div class="wall-item-item">
<div class="wall-item-info">
<div class="contact-photo-wrapper mframe{{ if $item.owner_url }} wwfrom{{ endif }}"
@ -132,7 +132,7 @@
</div>
{{ if $item.threaded }}{{ if $item.comment }}{{ if $item.indent==comment }}
<div class="wall-item-bottom">
<div class="wall-item-bottom commentbox">
<div class="wall-item-links"></div>
<div class="wall-item-comment-wrapper">
$item.comment
@ -143,7 +143,7 @@
{{ for $item.children as $child }}
{{ if $item.type == tag }}
{{ if $child.type == tag }}
{{ inc wall_item_tag.tpl with $item=$child }}{{ endinc }}
{{ else }}
{{ inc $item.template with $item=$child }}{{ endinc }}
@ -158,6 +158,7 @@
{{if $item.comment_lastcollapsed}}</div>{{endif}}
{{ endif }}
{# top thread comment box #}
{{if $item.threaded}}{{if $item.comment}}{{if $item.thread_level==1}}
<div class="wall-item-comment-wrapper" >$item.comment</div>
{{ endif }}{{ endif }}{{ endif }}

View File

@ -41,13 +41,13 @@ h4,
h5,
h6 {
font-family: "Lucida Grande","Lucida Sans Unicode",Arial,Verdana,sans-serif;
font-weight: 400;
font-weight: 550;
color:#626262;
margin:0;
margin: 0;
}
h1 {
font-size:200%;
font-size: 200%;
line-height: 0.8571em;
margin: 0.4286em 0 0;
}
@ -59,18 +59,18 @@ h2 {
}
h3 {
font-size:145%;
margin:0 0 5px 0;
font-size: 145%;
margin: 0 0 5px 0;
}
h4 {
font-size:133.33%;
font-size: 133.33%;
line-height: 1.125em;
margin:1.125em 0 0 0;
margin: 1.125em 0 0 0;
}
h5 {
font-size:116.67%;
font-size: 116.67%;
line-height: 1.2857em;
margin: 1.2857em 0 0 0;
}

View File

@ -1,40 +0,0 @@
<link rel='stylesheet' type='text/css' href='$baseurl/library/fullcalendar/fullcalendar.css' />
<script language="javascript" type="text/javascript"
src="$baseurl/library/fullcalendar/fullcalendar.min.js"></script>
<script>
// start calendar from yesterday
var yesterday= new Date()
yesterday.setDate(yesterday.getDate()-1)
function showEvent(eventid) {
$.get(
'$baseurl/events/?id='+eventid,
function(data){
$.fancybox(data);
}
);
}
$(document).ready(function() {
$('#events-reminder').fullCalendar({
firstDay: yesterday.getDay(),
year: yesterday.getFullYear(),
month: yesterday.getMonth(),
date: yesterday.getDate(),
events: '$baseurl/events/json/',
header: {
left: '',
center: '',
right: ''
},
timeFormat: 'H(:mm)',
defaultView: 'basicWeek',
height: 50,
eventClick: function(calEvent, jsEvent, view) {
showEvent(calEvent.id);
}
});
});
</script>
<br />
<div id="events-reminder"></div>

View File

@ -1,22 +1,23 @@
<script language="javascript" type="text/javascript" src="$baseurl/library/tinymce/jscripts/tiny_mce/tiny_mce_src.js"></script>
<script language="javascript" type="text/javascript">
var editor=false;
var textlen = 0;
var plaintext = '$editselect';
function initEditor(cb) {
if (editor==false) {
$("#profile-jot-text-loading").show();
if(plaintext == 'none') {
$("#profile-jot-text-loading").hide();
$("#profile-jot-text").css({ 'height': 200, 'color': '#000' });
$(".jothidden").show();
editor = true;
$("a#jot-perms-icon").fancybox({
'transitionIn' : 'elastic',
'transitionOut' : 'elastic'
});
function initEditor(cb){
if (editor==false){
$("#profile-jot-text-loading").show();
if(plaintext == 'none') {
$("#profile-jot-text-loading").hide();
$("#profile-jot-text").css({ 'height': 200, 'color': '#000' });
$("#profile-jot-text").contact_autocomplete(baseurl+"/acl");
$(".jothidden").show();
editor = true;
$("a#jot-perms-icon").fancybox({
'transitionIn' : 'elastic',
'transitionOut' : 'elastic'
});
$("#profile-jot-submit-wrapper").show();
{{ if $newpost }}
$("#profile-upload-wrapper").show();
@ -32,8 +33,8 @@ function initEditor(cb) {
{{ endif }}
if (typeof cb!="undefined") cb();
return;
if (typeof cb!="undefined") cb();
return;
}
tinyMCE.init({
theme : "advanced",
@ -89,7 +90,7 @@ function initEditor(cb) {
$('#profile-jot-desc').html('&nbsp;');
}
//Character count
//Character count
if(textlen <= 140) {
$('#character-counter').removeClass('red');
@ -140,18 +141,26 @@ function initEditor(cb) {
if (typeof cb!="undefined") cb();
}
} // initEditor
</script>
<script type="text/javascript" src="js/ajaxupload.js" ></script>
<script>
var ispublic = '$ispublic';
$(document).ready(function() {
/* enable tinymce on focus */
$("#profile-jot-text").focus(function(){
if (editor) return;
$(this).val("");
initEditor();
});
function enableOnUser(){
if (editor) return;
$(this).val("");
initEditor();
}
</script>
<script type="text/javascript" src="js/ajaxupload.js" >
</script>
<script>
var ispublic = '$ispublic';
$(document).ready(function() {
/* enable tinymce on focus and click */
$("#profile-jot-text").focus(enableOnUser);
$("#profile-jot-text").click(enableOnUser);
var uploader = new window.AjaxUpload(
'wall-image-upload',
@ -164,6 +173,7 @@ function initEditor(cb) {
}
}
);
var file_uploader = new window.AjaxUpload(
'wall-file-upload',
{ action: 'wall_attach/$nickname',
@ -328,9 +338,9 @@ function initEditor(cb) {
if(reply && reply.length) {
commentBusy = true;
$('body').css('cursor', 'wait');
$.get('filer/' + id + '?term=' + reply);
if(timer) clearTimeout(timer);
timer = setTimeout(NavUpdate,3000);
$.get('filer/' + id + '?term=' + reply, NavUpdate);
// if(timer) clearTimeout(timer);
// timer = setTimeout(NavUpdate,3000);
liking = 1;
$.fancybox.close();
} else {

Binary file not shown.

After

Width:  |  Height:  |  Size: 132 KiB

View File

@ -2,7 +2,7 @@
style.css
Smoothly
Created by alex@friendica.pixelbits.de on 2012-10-25
Created by alex@friendica.pixelbits.de on 2012-11-13
** Colors **
Blue links - #1873a2
@ -2772,7 +2772,7 @@ margin-left: 0px;
}
#follow-sidebar {
margin-bottom: 80px;
margin-bottom: 10px;
}
#follow-sidebar h3:before {
@ -3549,6 +3549,7 @@ margin-left: 0px;
#adminpage h3 {
border-bottom: 1px solid #898989;
margin-bottom: 5px;
padding-bottom: 5px;
margin-top: 10px;
}
@ -3565,10 +3566,16 @@ margin-left: 0px;
#adminpage .plugin {
list-style: none;
display: block;
border: 1px solid #888888;
padding: 1em;
margin-bottom: 5px;
clear: left;
border: 1px solid #7C7D7B;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
padding:10px;
margin:10px 10px 10px 0;
}
#adminpage .toggleplugin {
@ -4197,7 +4204,6 @@ div.wall-item-content-wrapper.shiny {
#profile-upload-wrapper,
#wall-image-upload-div,
#wall-file-upload-div,
.hover,
.focus {
cursor: pointer;
@ -4351,10 +4357,14 @@ div #datebrowse-sidebar.widget {
#settings-notifications {
border: 1px solid #7C7D7B;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
padding:10px;
margin:10px 10px 10px 0;
}
#id_npassword {}
@ -4382,3 +4392,19 @@ div #datebrowse-sidebar.widget {
#remote-friends-in-common {}
.settings-block {
border: 1px solid #7C7D7B;
box-shadow: 0 0 8px #BDBDBD;
-moz-box-shadow: 3px 3px 4px #959494;
-webkit-box-shadow: 3px 3px 4px #959494;
border-radius: 5px;
-moz-border-radius: 5px;
-webkit-border-radius: 5px;
padding:10px;
margin:10px 10px 10px 0;
}
#page-settings-label{
width: auto !important;
margin-bottom: 5px !important;
}

View File

@ -3,7 +3,7 @@
/*
* Name: Smoothly
* Description: Like coffee with milk. Theme works fine with iPad[2].
* Version: Version 0.10.25
* Version: Version 0.11.13
* Author: Alex <https://friendica.pixelbits.de/profile/alex>
* Maintainer: Alex <https://friendica.pixelbits.de/profile/alex>
* Screenshot: <a href="screenshot.png">Screenshot</a>

View File

@ -1,5 +1,5 @@
<div class="wall-item-outside-wrapper $item.indent$item.previewing" id="wall-item-outside-wrapper-$item.id" >
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
<div class="wall-item-outside-wrapper $item.indent $item.shiny$item.previewing" id="wall-item-outside-wrapper-$item.id" >
<div class="wall-item-content-wrapper $item.indent $item.shiny" id="wall-item-content-wrapper-$item.id" >
<div class="wall-item-info" id="wall-item-info-$item.id">
<div class="wall-item-photo-wrapper mframe" id="wall-item-photo-wrapper-$item.id"
onmouseover="if (typeof t$item.id != 'undefined') clearTimeout(t$item.id); openMenu('wall-item-photo-menu-button-$item.id')"
@ -50,4 +50,4 @@
<div class="wall-item-wrapper-end"></div>
</div>
<div class="wall-item-outside-wrapper-end $item.indent" ></div>
<div class="wall-item-outside-wrapper-end $item.indent $item.shiny" ></div>

View File

@ -5,8 +5,8 @@
<div id="collapsed-comments-$item.id" class="collapsed-comments" style="display: none;">
{{endif}}
<div id="tread-wrapper-$item.id" class="tread-wrapper $item.toplevel">
<div class="wall-item-outside-wrapper $item.indent wallwall" id="wall-item-outside-wrapper-$item.id" >
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
<div class="wall-item-outside-wrapper $item.indent $item.shiny wallwall" id="wall-item-outside-wrapper-$item.id" >
<div class="wall-item-content-wrapper $item.indent $item.shiny" id="wall-item-content-wrapper-$item.id" >
<div class="wall-item-info{{ if $item.owner_url }} wallwall{{ endif }}" id="wall-item-info-$item.id">
{{ if $item.owner_url }}
<div class="wall-item-photo-wrapper mframe wwto" id="wall-item-ownerphoto-wrapper-$item.id" >
@ -83,14 +83,14 @@
<div class="wall-item-dislike" id="wall-item-dislike-$item.id">$item.dislike</div>
{{ if $item.threaded }}
{{ if $item.comment }}
<div class="wall-item-comment-wrapper $item.indent" >
<div class="wall-item-comment-wrapper $item.indent $item.shiny" >
$item.comment
</div>
{{ endif }}
{{ endif }}
</div>
<div class="wall-item-outside-wrapper-end $item.indent" ></div>
<div class="wall-item-outside-wrapper-end $item.indent $item.shiny" ></div>
{{ for $item.children as $item }}
{{ inc $item.template }}{{ endinc }}

View File

@ -5,7 +5,7 @@
<img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
</div>
<div class="wall-item-container $item.indent">
<div class="wall-item-container $item.indent $item.shiny ">
<div class="wall-item-item">
<div class="wall-item-info">
<div class="contact-photo-wrapper"

View File

@ -27,7 +27,7 @@
<img id="like-rotator-$item.id" class="like-rotator" src="images/rotator.gif" alt="$item.wait" title="$item.wait" style="display: none;" />
</div>
<div class="wall-item-container $item.indent" id="item-$item.id">
<div class="wall-item-container $item.indent $item.shiny " id="item-$item.id">
<div class="wall-item-item">
<div class="wall-item-info">
<div class="contact-photo-wrapper mframe{{ if $item.owner_url }} wwfrom{{ endif }}"

View File

@ -7,7 +7,7 @@
<div id="tread-wrapper-$item.id" class="tread-wrapper $item.toplevel">
<a name="$item.id" ></a>
<div class="wall-item-outside-wrapper $item.indent$item.previewing{{ if $item.owner_url }} wallwall{{ endif }}" id="wall-item-outside-wrapper-$item.id" >
<div class="wall-item-content-wrapper $item.indent" id="wall-item-content-wrapper-$item.id" >
<div class="wall-item-content-wrapper $item.indent $item.shiny" id="wall-item-content-wrapper-$item.id" >
<div class="wall-item-info{{ if $item.owner_url }} wallwall{{ endif }}" id="wall-item-info-$item.id">
{{ if $item.owner_url }}
<div class="wall-item-photo-wrapper wwto" id="wall-item-ownerphoto-wrapper-$item.id" >