This commit is contained in:
friendica 2012-11-11 00:30:37 -08:00
commit a807206804
9 changed files with 693 additions and 392 deletions

View File

@ -1009,6 +1009,13 @@ if(! function_exists('remote_user')) {
// a page is loaded. Usually used for errors or alerts. // a page is loaded. Usually used for errors or alerts.
if(! function_exists('notice')) { if(! function_exists('notice')) {
/**
* Show an error message to user.
*
* This function save text in session, to be shown to the user at next page load
*
* @param string $s - Text of notice
*/
function notice($s) { function notice($s) {
$a = get_app(); $a = get_app();
if(! x($_SESSION,'sysmsg')) $_SESSION['sysmsg'] = array(); if(! x($_SESSION,'sysmsg')) $_SESSION['sysmsg'] = array();
@ -1017,6 +1024,13 @@ if(! function_exists('notice')) {
} }
} }
if(! function_exists('info')) { if(! function_exists('info')) {
/**
* Show an info message to user.
*
* This function save text in session, to be shown to the user at next page load
*
* @param string $s - Text of notice
*/
function info($s) { function info($s) {
$a = get_app(); $a = get_app();
if(! x($_SESSION,'sysmsg_info')) $_SESSION['sysmsg_info'] = array(); if(! x($_SESSION,'sysmsg_info')) $_SESSION['sysmsg_info'] = array();

View File

@ -73,5 +73,7 @@ You can export a copy of your personal data in XML format from the "Export perso
* [Groups and Privacy](help/Groups-and-Privacy) * [Groups and Privacy](help/Groups-and-Privacy)
* [Move Account](help/Move-Account)
* [Remove Account](help/Remove-Account) * [Remove Account](help/Remove-Account)

View File

@ -14,6 +14,7 @@ Friendica Documentation and Resources
* [Groups and Privacy](help/Groups-and-Privacy) * [Groups and Privacy](help/Groups-and-Privacy)
* [Tags and Mentions](help/Tags-and-Mentions) * [Tags and Mentions](help/Tags-and-Mentions)
* [Pages](help/Pages) * [Pages](help/Pages)
* [Move Account](help/Move-Account)
* [Remove Account](help/Remove-Account) * [Remove Account](help/Remove-Account)
* [Bugs and Issues](help/Bugs-and-Issues) * [Bugs and Issues](help/Bugs-and-Issues)

33
doc/Move-Account.md Normal file
View File

@ -0,0 +1,33 @@
Move Account
============
* [Home](help)
! **this is an experimental feature**
** How to move an account between servers **
Go to "Settings" -> "[Export personal data](uexport)"
Click on "Export account" to save your account data.
This file contains your details, your contacts, groups, and personal settings.
It contains also your secret keys to authenticate yourself to your contacts:
**save this file in a secure place**!
Go to your new server, and open *http://newserver.com/uimport* (there is not a
direct link to this page at the moment).
Load your saved account file and click "Import".
Friendica will recreate your account on new server, with your contacts and groups.
A message is sent to Friendica contacts, to inform them about your move: if your
contacts are runnning on an updated server, automatically your details on their
side will be updated.
Contacts on Statusnet/Identi.ca or Diaspora will be archived, as we can't inform
them about your move.
You should ask them to remove your contact from their lists and readd you, and you
should do the same with their contact.
After the move, the account on the old server will not work reliably anymore, and
should be not used.

View File

@ -1,47 +1,101 @@
<?php <?php
define( 'MARKDOWN_PARSER_CLASS', 'ExtendedMarkdown' );
require_once('library/markdown.php');
if(! function_exists('load_doc_file')) { class ExtendedMarkdown extends MarkdownExtra_Parser {
function load_doc_file($s) {
global $lang;
if(! isset($lang))
$lang = 'en';
$b = basename($s);
$d = dirname($s);
if(file_exists("$d/$lang/$b"))
return file_get_contents("$d/$lang/$b");
if(file_exists($s))
return file_get_contents($s);
return '';
}}
function ExtendedMarkdown() {
$this->block_gamut += array(
"doBlockWarning" => 45,
);
parent::MarkdownExtra_Parser();
}
function doBlockWarning($text) {
$text = preg_replace_callback('/
( # Wrap whole match in $1
(?>
^[ ]*![ ]? # "!" at the start of a line
.+\n # rest of the first line
(.+\n)* # subsequent consecutive lines
\n* # blanks
)+
)
/xm', array(&$this, '_doBlockWarning_callback'), $text);
return $text;
}
function _doBlockWarning_callback($matches) {
$bq = $matches[1];
# trim one level of quoting - trim whitespace-only lines
$bq = preg_replace('/^[ ]*![ ]?|^[ ]+$/m', '', $bq);
$bq = $this->runBlockGamut($bq); # recurse
$bq = preg_replace('/^/m', " ", $bq);
# These leading spaces cause problem with <pre> content,
# so we need to fix that:
// $bq = preg_replace_callback('{(\s*<pre>.+?</pre>)}sx', array(&$this, '__doBlockWarning_callback2'), $bq);
return "\n" . $this->hashBlock("<div class='md_warning'>\n$bq\n</div>") . "\n\n";
}
function _doBlockWarning_callback2($matches) {
$pre = $matches[1];
$pre = preg_replace('/^ /m', '', $pre);
return $pre;
}
}
if (!function_exists('load_doc_file')) {
function load_doc_file($s) {
global $lang;
if (!isset($lang))
$lang = 'en';
$b = basename($s);
$d = dirname($s);
if (file_exists("$d/$lang/$b"))
return file_get_contents("$d/$lang/$b");
if (file_exists($s))
return file_get_contents($s);
return '';
}
}
function help_content(&$a) { function help_content(&$a) {
nav_set_selected('help'); nav_set_selected('help');
global $lang; global $lang;
require_once('library/markdown.php');
$text = ''; $text = '';
if($a->argc > 1) { if ($a->argc > 1) {
$text = load_doc_file('doc/' . $a->argv[1] . '.md'); $text = load_doc_file('doc/' . $a->argv[1] . '.md');
$a->page['title'] = t('Help:') . ' ' . str_replace('-',' ',notags($a->argv[1])); $a->page['title'] = t('Help:') . ' ' . str_replace('-', ' ', notags($a->argv[1]));
} }
if(! $text) { $home = load_doc_file('doc/Home.md');
$text = load_doc_file('doc/Home.md'); if (!$text) {
$text = $home;
$a->page['title'] = t('Help'); $a->page['title'] = t('Help');
} else {
$a->page['aside'] = Markdown($home);
} }
if(! strlen($text)) { if (!strlen($text)) {
header($_SERVER["SERVER_PROTOCOL"] . ' 404 ' . t('Not Found')); header($_SERVER["SERVER_PROTOCOL"] . ' 404 ' . t('Not Found'));
$tpl = get_markup_template("404.tpl"); $tpl = get_markup_template("404.tpl");
return replace_macros($tpl, array( return replace_macros($tpl, array(
'$message' => t('Page not found.' ) '$message' => t('Page not found.')
)); ));
} }
return Markdown($text); $html = Markdown($text);
$html = "<style>.md_warning { padding: 1em; border: #ff0000 solid 2px; background-color: #f9a3a3; color: #ffffff;</style>".$html;
return $html;
} }

File diff suppressed because it is too large Load Diff

View File

@ -198,6 +198,18 @@ $a->strings["Diaspora"] = "Diaspora";
$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste."; $a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = " - bitte verwende dieses Formular nicht. Stattdessen suche nach %s in deiner Diaspora Suchleiste.";
$a->strings["Your Identity Address:"] = "Adresse deines Profils:"; $a->strings["Your Identity Address:"] = "Adresse deines Profils:";
$a->strings["Submit Request"] = "Anfrage abschicken"; $a->strings["Submit Request"] = "Anfrage abschicken";
$a->strings["Account settings"] = "Kontoeinstellungen";
$a->strings["Display settings"] = "Anzeige-Einstellungen";
$a->strings["Connector settings"] = "Connector-Einstellungen";
$a->strings["Plugin settings"] = "Plugin-Einstellungen";
$a->strings["Connected apps"] = "Verbundene Programme";
$a->strings["Export personal data"] = "Persönliche Daten exportieren";
$a->strings["Remove account"] = "Konto löschen";
$a->strings["Settings"] = "Einstellungen";
$a->strings["Export account"] = "Account exportieren";
$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "Exportiere deine Account Informationen und die Kontakte. Verwende dies um ein Backup deines Accounts anzulegen und/oder ihn auf einen anderen Server umzuziehen.";
$a->strings["Export all"] = "Alles exportieren";
$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)"] = "Exportiere deine Account Informationen, Kontakte und alle Einträge als JSON Datei. Dies könnte eine sehr große Datei werden und dementsprechend viel Zeit benötigen. Verwende dies um ein komplettes Backup deines Accounts anzulegen (Photos werden nicht exportiert).";
$a->strings["Friendica Social Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke Setup"; $a->strings["Friendica Social Communications Server - Setup"] = "Friendica-Server für soziale Netzwerke Setup";
$a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert"; $a->strings["Could not connect to database."] = "Verbindung zur Datenbank gescheitert";
$a->strings["Could not create table."] = "Konnte Tabelle nicht erstellen."; $a->strings["Could not create table."] = "Konnte Tabelle nicht erstellen.";
@ -441,14 +453,6 @@ $a->strings["Forgot your Password?"] = "Hast du dein Passwort vergessen?";
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet."; $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Gib deine E-Mail-Adresse an und fordere ein neues Passwort an. Es werden dir dann weitere Informationen per Mail zugesendet.";
$a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:"; $a->strings["Nickname or Email: "] = "Spitzname oder E-Mail:";
$a->strings["Reset"] = "Zurücksetzen"; $a->strings["Reset"] = "Zurücksetzen";
$a->strings["Account settings"] = "Kontoeinstellungen";
$a->strings["Display settings"] = "Anzeige-Einstellungen";
$a->strings["Connector settings"] = "Connector-Einstellungen";
$a->strings["Plugin settings"] = "Plugin-Einstellungen";
$a->strings["Connected apps"] = "Verbundene Programme";
$a->strings["Export personal data"] = "Persönliche Daten exportieren";
$a->strings["Remove account"] = "Konto löschen";
$a->strings["Settings"] = "Einstellungen";
$a->strings["Missing some important data!"] = "Wichtige Daten fehlen!"; $a->strings["Missing some important data!"] = "Wichtige Daten fehlen!";
$a->strings["Update"] = "Aktualisierungen"; $a->strings["Update"] = "Aktualisierungen";
$a->strings["Failed to connect with email account using the settings provided."] = "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich."; $a->strings["Failed to connect with email account using the settings provided."] = "Verbindung zum E-Mail-Konto mit den angegebenen Einstellungen nicht möglich.";
@ -599,6 +603,11 @@ $a->strings["Private messages to this person are at risk of public disclosure."]
$a->strings["Invalid contact."] = "Ungültiger Kontakt."; $a->strings["Invalid contact."] = "Ungültiger Kontakt.";
$a->strings["Personal Notes"] = "Persönliche Notizen"; $a->strings["Personal Notes"] = "Persönliche Notizen";
$a->strings["Save"] = "Speichern"; $a->strings["Save"] = "Speichern";
$a->strings["Import"] = "Import";
$a->strings["Move account"] = "Account umziehen";
$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"] = "Du kannst deinen Account auf einen anderen Friendica Server umziehen.<br>Dazu musst du deinen Account von deinem alten Server exportieren und hier hochladen. Wir werden dann deinen alten Account, mit allen Kontakten, hier wieder herstellen. Außerdem werden wir deine Kontakte darüber informieren, dass du hierher umgezogen bist.<br><b>Dieses Feature ist experimentell. Kontakte aus dem OStatus Netzwerk (StatusNet/identi.ca) oder von Diaspora können nicht mit umgezogen werden.</b>";
$a->strings["Account file"] = "Account Datei";
$a->strings["To export your accont, go to \"Settings->Export your porsonal data\" and select \"Export account\""] = "Um deinen Account zu exportieren, rufe \"Einstellungen -> Persönliche Daten exportieren\" auf und wähle \"Account exportieren\"";
$a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen."; $a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "Maximale Anzahl der täglichen Pinnwand Nachrichten für %s ist überschritten. Zustellung fehlgeschlagen.";
$a->strings["No recipient selected."] = "Kein Empfänger gewählt."; $a->strings["No recipient selected."] = "Kein Empfänger gewählt.";
$a->strings["Unable to check your home location."] = "Konnte deinen Heimatort nicht bestimmen."; $a->strings["Unable to check your home location."] = "Konnte deinen Heimatort nicht bestimmen.";
@ -1794,6 +1803,16 @@ $a->strings["Attachments:"] = "Anhänge:";
$a->strings["view full size"] = "Volle Größe anzeigen"; $a->strings["view full size"] = "Volle Größe anzeigen";
$a->strings["Embedded content"] = "Eingebetteter Inhalt"; $a->strings["Embedded content"] = "Eingebetteter Inhalt";
$a->strings["Embedding disabled"] = "Einbettungen deaktiviert"; $a->strings["Embedding disabled"] = "Einbettungen deaktiviert";
$a->strings["Error decoding account file"] = "Fehler beim Verarbeiten der Account Datei";
$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "Fehler! Keine Versionsdaten in der Datei! Ist das wirklich eine Friendica Account Datei?";
$a->strings["Error! I can't import this file: DB schema version is not compatible."] = "Fehler! Kann diese Datei nicht importieren. Die DB Schema Versionen sind nicht kompatibel.";
$a->strings["User creation error"] = "Fehler beim Anlegen des Nutzeraccounts aufgetreten";
$a->strings["User profile creation error"] = "Fehler beim Anlegen des Nutzerkontos";
$a->strings["%d contact not imported"] = array(
0 => "%d Kontakt nicht importiert",
1 => "%d Kontakte nicht importiert",
);
$a->strings["Done. You can now login with your username and password"] = "Erledigt. Du kannst dich jetzt mit deinem Nutzernamen und Passwort anmelden";
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen."; $a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "Eine gelöschte Gruppe mit diesem Namen wurde wiederbelebt. Bestehende Berechtigungseinstellungen <strong>könnten</strong> auf diese Gruppe oder zukünftige Mitglieder angewandt werden. Falls du dies nicht möchtest, erstelle bitte eine andere Gruppe mit einem anderen Namen.";
$a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte"; $a->strings["Default privacy group for new contacts"] = "Voreingestellte Gruppe für neue Kontakte";
$a->strings["Everybody"] = "Alle Kontakte"; $a->strings["Everybody"] = "Alle Kontakte";

View File

@ -8,6 +8,7 @@
# <czarnystokrotek@mailoo.org>, 2012. # <czarnystokrotek@mailoo.org>, 2012.
# <d.exax@hotmail.com>, 2012. # <d.exax@hotmail.com>, 2012.
# <hubertkoscianski@op.pl>, 2012. # <hubertkoscianski@op.pl>, 2012.
# <jakub.hag96@gmail.com>, 2012.
# <jawiadomokto@o2.pl>, 2012. # <jawiadomokto@o2.pl>, 2012.
# <johnnywiertara@gmail.com>, 2012. # <johnnywiertara@gmail.com>, 2012.
# <karolinaa9506@gmail.com>, 2012. # <karolinaa9506@gmail.com>, 2012.
@ -21,9 +22,9 @@ msgid ""
msgstr "" msgstr ""
"Project-Id-Version: friendica\n" "Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: http://bugs.friendica.com/\n" "Report-Msgid-Bugs-To: http://bugs.friendica.com/\n"
"POT-Creation-Date: 2012-11-05 10:00-0800\n" "POT-Creation-Date: 2012-11-08 10:00-0800\n"
"PO-Revision-Date: 2012-11-07 19:36+0000\n" "PO-Revision-Date: 2012-11-09 20:57+0000\n"
"Last-Translator: Lea1995polish <m.dauter@tlen.pl>\n" "Last-Translator: karolina.walkowiak <karolinaa9506@gmail.com>\n"
"Language-Team: Polish (http://www.transifex.com/projects/p/friendica/language/pl/)\n" "Language-Team: Polish (http://www.transifex.com/projects/p/friendica/language/pl/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n" "Content-Type: text/plain; charset=UTF-8\n"
@ -56,7 +57,7 @@ msgstr "Nie udało się zaktualizować kontaktu."
#: ../../mod/notifications.php:66 ../../mod/contacts.php:146 #: ../../mod/notifications.php:66 ../../mod/contacts.php:146
#: ../../mod/settings.php:86 ../../mod/settings.php:525 #: ../../mod/settings.php:86 ../../mod/settings.php:525
#: ../../mod/settings.php:530 ../../mod/manage.php:90 ../../mod/network.php:6 #: ../../mod/settings.php:530 ../../mod/manage.php:90 ../../mod/network.php:6
#: ../../mod/notes.php:20 ../../mod/wallmessage.php:9 #: ../../mod/notes.php:20 ../../mod/uimport.php:23 ../../mod/wallmessage.php:9
#: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79 #: ../../mod/wallmessage.php:33 ../../mod/wallmessage.php:79
#: ../../mod/wallmessage.php:103 ../../mod/attach.php:33 #: ../../mod/wallmessage.php:103 ../../mod/attach.php:33
#: ../../mod/group.php:19 ../../mod/viewcontacts.php:22 #: ../../mod/group.php:19 ../../mod/viewcontacts.php:22
@ -73,7 +74,7 @@ msgstr "Nie udało się zaktualizować kontaktu."
#: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510 #: ../../mod/dfrn_confirm.php:53 ../../addon/facebook/facebook.php:510
#: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159 #: ../../addon/facebook/facebook.php:516 ../../addon/fbpost/fbpost.php:159
#: ../../addon/fbpost/fbpost.php:165 #: ../../addon/fbpost/fbpost.php:165
#: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3914 #: ../../addon/dav/friendica/layout.fnk.php:354 ../../include/items.php:3971
#: ../../index.php:319 ../../addon.old/facebook/facebook.php:510 #: ../../index.php:319 ../../addon.old/facebook/facebook.php:510
#: ../../addon.old/facebook/facebook.php:516 #: ../../addon.old/facebook/facebook.php:516
#: ../../addon.old/fbpost/fbpost.php:159 ../../addon.old/fbpost/fbpost.php:165 #: ../../addon.old/fbpost/fbpost.php:159 ../../addon.old/fbpost/fbpost.php:165
@ -301,7 +302,7 @@ msgid "link to source"
msgstr "link do źródła" msgstr "link do źródła"
#: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:90 #: ../../mod/events.php:347 ../../view/theme/diabook/theme.php:90
#: ../../include/nav.php:52 ../../boot.php:1701 #: ../../include/nav.php:52 ../../boot.php:1711
msgid "Events" msgid "Events"
msgstr "Wydarzenia" msgstr "Wydarzenia"
@ -359,7 +360,7 @@ msgstr "Opis:"
#: ../../mod/events.php:448 ../../mod/directory.php:134 #: ../../mod/events.php:448 ../../mod/directory.php:134
#: ../../include/event.php:40 ../../include/bb2diaspora.php:412 #: ../../include/event.php:40 ../../include/bb2diaspora.php:412
#: ../../boot.php:1237 #: ../../boot.php:1241
msgid "Location:" msgid "Location:"
msgstr "Lokalizacja" msgstr "Lokalizacja"
@ -427,7 +428,7 @@ msgstr ""
#: ../../mod/settings.php:927 ../../mod/settings.php:933 #: ../../mod/settings.php:927 ../../mod/settings.php:933
#: ../../mod/settings.php:963 ../../mod/settings.php:964 #: ../../mod/settings.php:963 ../../mod/settings.php:964
#: ../../mod/settings.php:965 ../../mod/settings.php:966 #: ../../mod/settings.php:965 ../../mod/settings.php:966
#: ../../mod/settings.php:967 ../../mod/register.php:236 #: ../../mod/settings.php:967 ../../mod/register.php:237
#: ../../mod/profiles.php:574 #: ../../mod/profiles.php:574
msgid "Yes" msgid "Yes"
msgstr "Tak" msgstr "Tak"
@ -439,12 +440,12 @@ msgstr "Tak"
#: ../../mod/settings.php:927 ../../mod/settings.php:933 #: ../../mod/settings.php:927 ../../mod/settings.php:933
#: ../../mod/settings.php:963 ../../mod/settings.php:964 #: ../../mod/settings.php:963 ../../mod/settings.php:964
#: ../../mod/settings.php:965 ../../mod/settings.php:966 #: ../../mod/settings.php:965 ../../mod/settings.php:966
#: ../../mod/settings.php:967 ../../mod/register.php:237 #: ../../mod/settings.php:967 ../../mod/register.php:238
#: ../../mod/profiles.php:575 #: ../../mod/profiles.php:575
msgid "No" msgid "No"
msgstr "Nie" msgstr "Nie"
#: ../../mod/photos.php:50 ../../boot.php:1694 #: ../../mod/photos.php:50 ../../boot.php:1704
msgid "Photo Albums" msgid "Photo Albums"
msgstr "Albumy zdjęć" msgstr "Albumy zdjęć"
@ -672,7 +673,7 @@ msgid "This is you"
msgstr "To jesteś ty" msgstr "To jesteś ty"
#: ../../mod/photos.php:1405 ../../mod/photos.php:1449 #: ../../mod/photos.php:1405 ../../mod/photos.php:1449
#: ../../mod/photos.php:1521 ../../mod/content.php:692 ../../boot.php:585 #: ../../mod/photos.php:1521 ../../mod/content.php:692 ../../boot.php:589
#: ../../object/Item.php:558 #: ../../object/Item.php:558
msgid "Comment" msgid "Comment"
msgstr "Komentarz" msgstr "Komentarz"
@ -964,7 +965,7 @@ msgstr "Proszę potwierdzić swój wstęp/prośbę o połączenie do %s."
msgid "Confirm" msgid "Confirm"
msgstr "Potwierdź" msgstr "Potwierdź"
#: ../../mod/dfrn_request.php:715 ../../include/items.php:3293 #: ../../mod/dfrn_request.php:715 ../../include/items.php:3350
msgid "[Name Withheld]" msgid "[Name Withheld]"
msgstr "[Nazwa wstrzymana]" msgstr "[Nazwa wstrzymana]"
@ -1036,6 +1037,65 @@ msgstr "Twój zidentyfikowany adres:"
msgid "Submit Request" msgid "Submit Request"
msgstr "Wyślij zgłoszenie" msgstr "Wyślij zgłoszenie"
#: ../../mod/uexport.php:10 ../../mod/settings.php:30
#: ../../include/nav.php:137
msgid "Account settings"
msgstr "Ustawienia konta"
#: ../../mod/uexport.php:15 ../../mod/settings.php:35
msgid "Display settings"
msgstr "Wyświetl ustawienia"
#: ../../mod/uexport.php:21 ../../mod/settings.php:41
msgid "Connector settings"
msgstr ""
#: ../../mod/uexport.php:26 ../../mod/settings.php:46
msgid "Plugin settings"
msgstr "Ustawienia wtyczek"
#: ../../mod/uexport.php:31 ../../mod/settings.php:51
msgid "Connected apps"
msgstr ""
#: ../../mod/uexport.php:36 ../../mod/uexport.php:81 ../../mod/settings.php:56
msgid "Export personal data"
msgstr "Eksportuje dane personalne"
#: ../../mod/uexport.php:41 ../../mod/settings.php:61
msgid "Remove account"
msgstr "Usuń konto"
#: ../../mod/uexport.php:49 ../../mod/settings.php:69
#: ../../mod/newmember.php:22 ../../mod/admin.php:785 ../../mod/admin.php:990
#: ../../addon/dav/friendica/layout.fnk.php:225
#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:614
#: ../../include/nav.php:137 ../../addon.old/dav/friendica/layout.fnk.php:225
#: ../../addon.old/mathjax/mathjax.php:36
msgid "Settings"
msgstr "Ustawienia"
#: ../../mod/uexport.php:73
msgid "Export account"
msgstr ""
#: ../../mod/uexport.php:73
msgid ""
"Export your account info and contacts. Use this to make a backup of your "
"account and/or to move it to another server."
msgstr ""
#: ../../mod/uexport.php:74
msgid "Export all"
msgstr ""
#: ../../mod/uexport.php:74
msgid ""
"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)"
msgstr ""
#: ../../mod/install.php:117 #: ../../mod/install.php:117
msgid "Friendica Social Communications Server - Setup" msgid "Friendica Social Communications Server - Setup"
msgstr "" msgstr ""
@ -1357,7 +1417,7 @@ msgid "is interested in:"
msgstr "interesuje się:" msgstr "interesuje się:"
#: ../../mod/match.php:58 ../../mod/suggest.php:59 #: ../../mod/match.php:58 ../../mod/suggest.php:59
#: ../../include/contact_widgets.php:9 ../../boot.php:1175 #: ../../include/contact_widgets.php:9 ../../boot.php:1179
msgid "Connect" msgid "Connect"
msgstr "Połącz" msgstr "Połącz"
@ -1406,7 +1466,7 @@ msgstr "%s od %s"
#: ../../mod/content.php:480 ../../include/conversation.php:622 #: ../../mod/content.php:480 ../../include/conversation.php:622
msgid "View in context" msgid "View in context"
msgstr "" msgstr "Zobacz w kontekście"
#: ../../mod/content.php:586 ../../object/Item.php:277 #: ../../mod/content.php:586 ../../object/Item.php:277
#, php-format #, php-format
@ -1426,7 +1486,7 @@ msgstr[2] "komentarz"
#: ../../mod/content.php:589 ../../addon/page/page.php:77 #: ../../mod/content.php:589 ../../addon/page/page.php:77
#: ../../addon/page/page.php:111 ../../addon/showmore/showmore.php:119 #: ../../addon/page/page.php:111 ../../addon/showmore/showmore.php:119
#: ../../include/contact_widgets.php:195 ../../boot.php:586 #: ../../include/contact_widgets.php:195 ../../boot.php:590
#: ../../object/Item.php:280 ../../addon.old/page/page.php:77 #: ../../object/Item.php:280 ../../addon.old/page/page.php:77
#: ../../addon.old/page/page.php:111 ../../addon.old/showmore/showmore.php:119 #: ../../addon.old/page/page.php:111 ../../addon.old/showmore/showmore.php:119
msgid "show more" msgid "show more"
@ -2027,13 +2087,13 @@ msgid "Password reset requested at %s"
msgstr "Prośba o reset hasła na %s" msgstr "Prośba o reset hasła na %s"
#: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107 #: ../../mod/lostpass.php:45 ../../mod/lostpass.php:107
#: ../../mod/register.php:90 ../../mod/register.php:144 #: ../../mod/register.php:91 ../../mod/register.php:145
#: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752 #: ../../mod/regmod.php:54 ../../mod/dfrn_confirm.php:752
#: ../../addon/facebook/facebook.php:702 #: ../../addon/facebook/facebook.php:702
#: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661 #: ../../addon/facebook/facebook.php:1200 ../../addon/fbpost/fbpost.php:661
#: ../../addon/public_server/public_server.php:62 #: ../../addon/public_server/public_server.php:62
#: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3302 #: ../../addon/testdrive/testdrive.php:67 ../../include/items.php:3359
#: ../../boot.php:799 ../../addon.old/facebook/facebook.php:702 #: ../../boot.php:803 ../../addon.old/facebook/facebook.php:702
#: ../../addon.old/facebook/facebook.php:1200 #: ../../addon.old/facebook/facebook.php:1200
#: ../../addon.old/fbpost/fbpost.php:661 #: ../../addon.old/fbpost/fbpost.php:661
#: ../../addon.old/public_server/public_server.php:62 #: ../../addon.old/public_server/public_server.php:62
@ -2047,7 +2107,7 @@ msgid ""
"Password reset failed." "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ę." 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:936 #: ../../mod/lostpass.php:83 ../../boot.php:940
msgid "Password Reset" msgid "Password Reset"
msgstr "Zresetuj hasło" msgstr "Zresetuj hasło"
@ -2091,43 +2151,6 @@ msgstr "Pseudonim lub Email:"
msgid "Reset" msgid "Reset"
msgstr "Zresetuj" msgstr "Zresetuj"
#: ../../mod/settings.php:30 ../../include/nav.php:137
msgid "Account settings"
msgstr "Ustawienia konta"
#: ../../mod/settings.php:35
msgid "Display settings"
msgstr "Wyświetl ustawienia"
#: ../../mod/settings.php:41
msgid "Connector settings"
msgstr ""
#: ../../mod/settings.php:46
msgid "Plugin settings"
msgstr "Ustawienia wtyczek"
#: ../../mod/settings.php:51
msgid "Connected apps"
msgstr ""
#: ../../mod/settings.php:56
msgid "Export personal data"
msgstr "Eksportuje dane personalne"
#: ../../mod/settings.php:61
msgid "Remove account"
msgstr "Usuń konto"
#: ../../mod/settings.php:69 ../../mod/newmember.php:22
#: ../../mod/admin.php:785 ../../mod/admin.php:990
#: ../../addon/dav/friendica/layout.fnk.php:225
#: ../../addon/mathjax/mathjax.php:36 ../../view/theme/diabook/theme.php:614
#: ../../include/nav.php:137 ../../addon.old/dav/friendica/layout.fnk.php:225
#: ../../addon.old/mathjax/mathjax.php:36
msgid "Settings"
msgstr "Ustawienia"
#: ../../mod/settings.php:113 #: ../../mod/settings.php:113
msgid "Missing some important data!" msgid "Missing some important data!"
msgstr "Brakuje ważnych danych!" msgstr "Brakuje ważnych danych!"
@ -2434,7 +2457,7 @@ msgstr ""
#: ../../mod/settings.php:898 #: ../../mod/settings.php:898
msgid "Publish your default profile in the global social directory?" msgid "Publish your default profile in the global social directory?"
msgstr "" msgstr "Opublikować twój niewypełniony profil w globalnym, społecznym katalogu?"
#: ../../mod/settings.php:906 #: ../../mod/settings.php:906
msgid "Hide your contact/friend list from viewers of your default profile?" msgid "Hide your contact/friend list from viewers of your default profile?"
@ -2739,7 +2762,7 @@ msgstr "Prywatne wiadomości do tej osoby mogą zostać publicznie ujawnione "
msgid "Invalid contact." msgid "Invalid contact."
msgstr "Zły kontakt" msgstr "Zły kontakt"
#: ../../mod/notes.php:44 ../../boot.php:1708 #: ../../mod/notes.php:44 ../../boot.php:1718
msgid "Personal Notes" msgid "Personal Notes"
msgstr "Osobiste notatki" msgstr "Osobiste notatki"
@ -2757,6 +2780,31 @@ msgstr "Osobiste notatki"
msgid "Save" msgid "Save"
msgstr "Zapisz" msgstr "Zapisz"
#: ../../mod/uimport.php:41
msgid "Import"
msgstr ""
#: ../../mod/uimport.php:43
msgid "Move account"
msgstr ""
#: ../../mod/uimport.php:44
msgid ""
"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"
msgstr ""
#: ../../mod/uimport.php:47
msgid "Account file"
msgstr ""
#: ../../mod/uimport.php:47
msgid ""
"To export your accont, go to \"Settings->Export your porsonal data\" and "
"select \"Export account\""
msgstr ""
#: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112 #: ../../mod/wallmessage.php:42 ../../mod/wallmessage.php:112
#, php-format #, php-format
msgid "Number of daily wall messages for %s exceeded. Message failed." msgid "Number of daily wall messages for %s exceeded. Message failed."
@ -2871,7 +2919,7 @@ msgstr ""
#: ../../mod/newmember.php:32 ../../mod/profperm.php:103 #: ../../mod/newmember.php:32 ../../mod/profperm.php:103
#: ../../view/theme/diabook/theme.php:87 ../../include/profile_advanced.php:7 #: ../../view/theme/diabook/theme.php:87 ../../include/profile_advanced.php:7
#: ../../include/profile_advanced.php:84 ../../include/nav.php:50 #: ../../include/profile_advanced.php:84 ../../include/nav.php:50
#: ../../boot.php:1684 #: ../../boot.php:1694
msgid "Profile" msgid "Profile"
msgstr "Profil" msgstr "Profil"
@ -3098,91 +3146,91 @@ msgstr "brak kontaktów"
msgid "View Contacts" msgid "View Contacts"
msgstr "widok kontaktów" msgstr "widok kontaktów"
#: ../../mod/register.php:88 ../../mod/regmod.php:52 #: ../../mod/register.php:89 ../../mod/regmod.php:52
#, php-format #, php-format
msgid "Registration details for %s" msgid "Registration details for %s"
msgstr "Szczegóły rejestracji dla %s" msgstr "Szczegóły rejestracji dla %s"
#: ../../mod/register.php:96 #: ../../mod/register.php:97
msgid "" msgid ""
"Registration successful. Please check your email for further instructions." "Registration successful. Please check your email for further instructions."
msgstr "Rejestracja zakończona pomyślnie. Dalsze instrukcje zostały wysłane na twojego e-maila." msgstr "Rejestracja zakończona pomyślnie. Dalsze instrukcje zostały wysłane na twojego e-maila."
#: ../../mod/register.php:100 #: ../../mod/register.php:101
msgid "Failed to send email message. Here is the message that failed." msgid "Failed to send email message. Here is the message that failed."
msgstr "" msgstr "Nie udało się wysłać wiadomości e-mail. Wysyłanie nie powiodło się."
#: ../../mod/register.php:105 #: ../../mod/register.php:106
msgid "Your registration can not be processed." msgid "Your registration can not be processed."
msgstr "Twoja rejestracja nie może zostać przeprowadzona. " msgstr "Twoja rejestracja nie może zostać przeprowadzona. "
#: ../../mod/register.php:142 #: ../../mod/register.php:143
#, php-format #, php-format
msgid "Registration request at %s" msgid "Registration request at %s"
msgstr "Prośba o rejestrację u %s" msgstr "Prośba o rejestrację u %s"
#: ../../mod/register.php:151 #: ../../mod/register.php:152
msgid "Your registration is pending approval by the site owner." msgid "Your registration is pending approval by the site owner."
msgstr "Twoja rejestracja oczekuje na zaakceptowanie przez właściciela witryny." msgstr "Twoja rejestracja oczekuje na zaakceptowanie przez właściciela witryny."
#: ../../mod/register.php:189 #: ../../mod/register.php:190
msgid "" msgid ""
"This site has exceeded the number of allowed daily account registrations. " "This site has exceeded the number of allowed daily account registrations. "
"Please try again tomorrow." "Please try again tomorrow."
msgstr "" msgstr ""
#: ../../mod/register.php:217 #: ../../mod/register.php:218
msgid "" msgid ""
"You may (optionally) fill in this form via OpenID by supplying your OpenID " "You may (optionally) fill in this form via OpenID by supplying your OpenID "
"and clicking 'Register'." "and clicking 'Register'."
msgstr "" msgstr ""
#: ../../mod/register.php:218 #: ../../mod/register.php:219
msgid "" msgid ""
"If you are not familiar with OpenID, please leave that field blank and fill " "If you are not familiar with OpenID, please leave that field blank and fill "
"in the rest of the items." "in the rest of the items."
msgstr "Jeśli nie jesteś zaznajomiony z OpenID, zostaw to pole puste i uzupełnij resztę elementów." msgstr "Jeśli nie jesteś zaznajomiony z OpenID, zostaw to pole puste i uzupełnij resztę elementów."
#: ../../mod/register.php:219 #: ../../mod/register.php:220
msgid "Your OpenID (optional): " msgid "Your OpenID (optional): "
msgstr "Twój OpenID (opcjonalnie):" msgstr "Twój OpenID (opcjonalnie):"
#: ../../mod/register.php:233 #: ../../mod/register.php:234
msgid "Include your profile in member directory?" msgid "Include your profile in member directory?"
msgstr "Czy dołączyć twój profil do katalogu członków?" msgstr "Czy dołączyć twój profil do katalogu członków?"
#: ../../mod/register.php:255 #: ../../mod/register.php:256
msgid "Membership on this site is by invitation only." msgid "Membership on this site is by invitation only."
msgstr "Członkostwo na tej stronie możliwe tylko dzięki zaproszeniu." msgstr "Członkostwo na tej stronie możliwe tylko dzięki zaproszeniu."
#: ../../mod/register.php:256 #: ../../mod/register.php:257
msgid "Your invitation ID: " msgid "Your invitation ID: "
msgstr "" msgstr "Twoje zaproszenia ID:"
#: ../../mod/register.php:259 ../../mod/admin.php:444 #: ../../mod/register.php:260 ../../mod/admin.php:444
msgid "Registration" msgid "Registration"
msgstr "Rejestracja" msgstr "Rejestracja"
#: ../../mod/register.php:267 #: ../../mod/register.php:268
msgid "Your Full Name (e.g. Joe Smith): " msgid "Your Full Name (e.g. Joe Smith): "
msgstr "Imię i nazwisko (np. Jan Kowalski):" msgstr "Imię i nazwisko (np. Jan Kowalski):"
#: ../../mod/register.php:268 #: ../../mod/register.php:269
msgid "Your Email Address: " msgid "Your Email Address: "
msgstr "Twój adres email:" msgstr "Twój adres email:"
#: ../../mod/register.php:269 #: ../../mod/register.php:270
msgid "" msgid ""
"Choose a profile nickname. This must begin with a text character. Your " "Choose a profile nickname. This must begin with a text character. Your "
"profile address on this site will then be " "profile address on this site will then be "
"'<strong>nickname@$sitename</strong>'." "'<strong>nickname@$sitename</strong>'."
msgstr "Wybierz login. Login musi zaczynać się literą. Adres twojego profilu na tej stronie będzie wyglądać następująco '<strong>login@$nazwastrony</strong>'." msgstr "Wybierz login. Login musi zaczynać się literą. Adres twojego profilu na tej stronie będzie wyglądać następująco '<strong>login@$nazwastrony</strong>'."
#: ../../mod/register.php:270 #: ../../mod/register.php:271
msgid "Choose a nickname: " msgid "Choose a nickname: "
msgstr "Wybierz pseudonim:" msgstr "Wybierz pseudonim:"
#: ../../mod/register.php:273 ../../include/nav.php:81 ../../boot.php:898 #: ../../mod/register.php:274 ../../include/nav.php:81 ../../boot.php:902
msgid "Register" msgid "Register"
msgstr "Zarejestruj" msgstr "Zarejestruj"
@ -3230,7 +3278,7 @@ msgstr "%1$s nie lubi %2$s's %3$s"
#: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159 #: ../../mod/notice.php:15 ../../mod/viewsrc.php:15 ../../mod/admin.php:159
#: ../../mod/admin.php:734 ../../mod/admin.php:933 ../../mod/display.php:39 #: ../../mod/admin.php:734 ../../mod/admin.php:933 ../../mod/display.php:39
#: ../../mod/display.php:169 ../../include/items.php:3780 #: ../../mod/display.php:169 ../../include/items.php:3837
msgid "Item not found." msgid "Item not found."
msgstr "Element nie znaleziony." msgstr "Element nie znaleziony."
@ -3239,7 +3287,7 @@ msgid "Access denied."
msgstr "Brak dostępu" msgstr "Brak dostępu"
#: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:89 #: ../../mod/fbrowser.php:25 ../../view/theme/diabook/theme.php:89
#: ../../include/nav.php:51 ../../boot.php:1691 #: ../../include/nav.php:51 ../../boot.php:1701
msgid "Photos" msgid "Photos"
msgstr "Zdjęcia" msgstr "Zdjęcia"
@ -3511,7 +3559,7 @@ msgstr "Polecane wtyczki"
#: ../../mod/admin.php:123 #: ../../mod/admin.php:123
msgid "User registrations waiting for confirmation" msgid "User registrations waiting for confirmation"
msgstr "" msgstr "Rejestracje użytkownika czekają na potwierdzenie."
#: ../../mod/admin.php:183 ../../mod/admin.php:669 #: ../../mod/admin.php:183 ../../mod/admin.php:669
msgid "Normal Account" msgid "Normal Account"
@ -3557,7 +3605,7 @@ msgstr "Zarejestrowani użytkownicy"
#: ../../mod/admin.php:217 #: ../../mod/admin.php:217
msgid "Pending registrations" msgid "Pending registrations"
msgstr "" msgstr "Rejestracje w toku."
#: ../../mod/admin.php:218 #: ../../mod/admin.php:218
msgid "Version" msgid "Version"
@ -3573,11 +3621,11 @@ msgstr "Ustawienia strony zaktualizowane"
#: ../../mod/admin.php:428 #: ../../mod/admin.php:428
msgid "Closed" msgid "Closed"
msgstr "" msgstr "Zamknięty"
#: ../../mod/admin.php:429 #: ../../mod/admin.php:429
msgid "Requires approval" msgid "Requires approval"
msgstr "" msgstr "Wymagane zatwierdzenie."
#: ../../mod/admin.php:430 #: ../../mod/admin.php:430
msgid "Open" msgid "Open"
@ -3700,7 +3748,7 @@ msgstr ""
#: ../../mod/admin.php:464 #: ../../mod/admin.php:464
msgid "Allowed friend domains" msgid "Allowed friend domains"
msgstr "" msgstr "Dozwolone domeny przyjaciół"
#: ../../mod/admin.php:464 #: ../../mod/admin.php:464
msgid "" msgid ""
@ -4120,7 +4168,7 @@ msgstr ""
msgid "FTP Password" msgid "FTP Password"
msgstr "FTP Hasło" msgstr "FTP Hasło"
#: ../../mod/profile.php:21 ../../boot.php:1085 #: ../../mod/profile.php:21 ../../boot.php:1089
msgid "Requested profile is not available." msgid "Requested profile is not available."
msgstr "Żądany profil jest niedostępny" msgstr "Żądany profil jest niedostępny"
@ -4521,23 +4569,23 @@ msgstr "Wiek: "
msgid "Edit/Manage Profiles" msgid "Edit/Manage Profiles"
msgstr "Edytuj/Zarządzaj Profilami" msgstr "Edytuj/Zarządzaj Profilami"
#: ../../mod/profiles.php:689 ../../boot.php:1203 #: ../../mod/profiles.php:689 ../../boot.php:1207
msgid "Change profile photo" msgid "Change profile photo"
msgstr "Zmień zdjęcie profilowe" msgstr "Zmień zdjęcie profilowe"
#: ../../mod/profiles.php:690 ../../boot.php:1204 #: ../../mod/profiles.php:690 ../../boot.php:1208
msgid "Create New Profile" msgid "Create New Profile"
msgstr "Stwórz nowy profil" msgstr "Stwórz nowy profil"
#: ../../mod/profiles.php:701 ../../boot.php:1214 #: ../../mod/profiles.php:701 ../../boot.php:1218
msgid "Profile Image" msgid "Profile Image"
msgstr "Obraz profilowy" msgstr "Obraz profilowy"
#: ../../mod/profiles.php:703 ../../boot.php:1217 #: ../../mod/profiles.php:703 ../../boot.php:1221
msgid "visible to everybody" msgid "visible to everybody"
msgstr "widoczne dla wszystkich" msgstr "widoczne dla wszystkich"
#: ../../mod/profiles.php:704 ../../boot.php:1218 #: ../../mod/profiles.php:704 ../../boot.php:1222
msgid "Edit visibility" msgid "Edit visibility"
msgstr "Edytuj widoczność" msgstr "Edytuj widoczność"
@ -4666,17 +4714,17 @@ msgid "Gender: "
msgstr "Płeć: " msgstr "Płeć: "
#: ../../mod/directory.php:136 ../../include/profile_advanced.php:17 #: ../../mod/directory.php:136 ../../include/profile_advanced.php:17
#: ../../boot.php:1239 #: ../../boot.php:1243
msgid "Gender:" msgid "Gender:"
msgstr "Płeć:" msgstr "Płeć:"
#: ../../mod/directory.php:138 ../../include/profile_advanced.php:37 #: ../../mod/directory.php:138 ../../include/profile_advanced.php:37
#: ../../boot.php:1242 #: ../../boot.php:1246
msgid "Status:" msgid "Status:"
msgstr "Status" msgstr "Status"
#: ../../mod/directory.php:140 ../../include/profile_advanced.php:48 #: ../../mod/directory.php:140 ../../include/profile_advanced.php:48
#: ../../boot.php:1244 #: ../../boot.php:1248
msgid "Homepage:" msgid "Homepage:"
msgstr "Strona główna:" msgstr "Strona główna:"
@ -4802,7 +4850,7 @@ msgstr "Tymczasowo uszkodzone. Proszę poczekać i spróbować później."
#: ../../mod/dfrn_confirm.php:275 #: ../../mod/dfrn_confirm.php:275
msgid "Introduction failed or was revoked." msgid "Introduction failed or was revoked."
msgstr "" msgstr "Nieudane lub unieważnione wprowadzenie."
#: ../../mod/dfrn_confirm.php:420 #: ../../mod/dfrn_confirm.php:420
msgid "Unable to set contact photo." msgid "Unable to set contact photo."
@ -4821,7 +4869,7 @@ msgstr "Nie znaleziono użytkownika dla '%s'"
#: ../../mod/dfrn_confirm.php:572 #: ../../mod/dfrn_confirm.php:572
msgid "Our site encryption key is apparently messed up." msgid "Our site encryption key is apparently messed up."
msgstr "" msgstr "Klucz kodujący jest najwyraźniej zepsuty"
#: ../../mod/dfrn_confirm.php:583 #: ../../mod/dfrn_confirm.php:583
msgid "Empty site URL was provided or URL could not be decrypted by us." msgid "Empty site URL was provided or URL could not be decrypted by us."
@ -4844,11 +4892,11 @@ msgstr ""
#: ../../mod/dfrn_confirm.php:649 #: ../../mod/dfrn_confirm.php:649
msgid "Unable to set your contact credentials on our system." msgid "Unable to set your contact credentials on our system."
msgstr "" msgstr "Niezdolny do ustalenie tożsamości twoich kontaktów w naszym systemie"
#: ../../mod/dfrn_confirm.php:716 #: ../../mod/dfrn_confirm.php:716
msgid "Unable to update your contact profile details on our system" msgid "Unable to update your contact profile details on our system"
msgstr "" msgstr "Niezdolny do aktualizacji szczegółowych danych profilowych twoich kontaktów w naszym systemie"
#: ../../mod/dfrn_confirm.php:750 #: ../../mod/dfrn_confirm.php:750
#, php-format #, php-format
@ -5549,7 +5597,7 @@ msgstr ""
#: ../../addon/communityhome/communityhome.php:34 #: ../../addon/communityhome/communityhome.php:34
#: ../../addon/communityhome/twillingham/communityhome.php:28 #: ../../addon/communityhome/twillingham/communityhome.php:28
#: ../../addon/communityhome/twillingham/communityhome.php:34 #: ../../addon/communityhome/twillingham/communityhome.php:34
#: ../../include/nav.php:64 ../../boot.php:923 #: ../../include/nav.php:64 ../../boot.php:927
#: ../../addon.old/communityhome/communityhome.php:28 #: ../../addon.old/communityhome/communityhome.php:28
#: ../../addon.old/communityhome/communityhome.php:34 #: ../../addon.old/communityhome/communityhome.php:34
#: ../../addon.old/communityhome/twillingham/communityhome.php:28 #: ../../addon.old/communityhome/twillingham/communityhome.php:28
@ -6158,7 +6206,7 @@ msgstr ""
#: ../../addon/dav/friendica/main.php:279 #: ../../addon/dav/friendica/main.php:279
#: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:464 #: ../../addon/dav/friendica/main.php:280 ../../include/delivery.php:464
#: ../../include/enotify.php:28 ../../include/notifier.php:724 #: ../../include/enotify.php:28 ../../include/notifier.php:774
#: ../../addon.old/dav/friendica/main.php:279 #: ../../addon.old/dav/friendica/main.php:279
#: ../../addon.old/dav/friendica/main.php:280 #: ../../addon.old/dav/friendica/main.php:280
msgid "noreply" msgid "noreply"
@ -7082,7 +7130,7 @@ msgstr "Podgląd źródła"
#: ../../addon/statusnet/statusnet.php:134 #: ../../addon/statusnet/statusnet.php:134
#: ../../addon.old/statusnet/statusnet.php:134 #: ../../addon.old/statusnet/statusnet.php:134
msgid "Post to StatusNet" msgid "Post to StatusNet"
msgstr "" msgstr "Opublikuj status"
#: ../../addon/statusnet/statusnet.php:176 #: ../../addon/statusnet/statusnet.php:176
#: ../../addon.old/statusnet/statusnet.php:176 #: ../../addon.old/statusnet/statusnet.php:176
@ -7831,7 +7879,7 @@ msgstr "Telewizja:"
#: ../../include/profile_advanced.php:75 #: ../../include/profile_advanced.php:75
msgid "Film/dance/culture/entertainment:" msgid "Film/dance/culture/entertainment:"
msgstr "" msgstr "Film/taniec/kultura/rozrywka"
#: ../../include/profile_advanced.php:77 #: ../../include/profile_advanced.php:77
msgid "Love/Romance:" msgid "Love/Romance:"
@ -8146,7 +8194,7 @@ msgstr ""
msgid "Finishes:" msgid "Finishes:"
msgstr "Wykończenia:" msgstr "Wykończenia:"
#: ../../include/delivery.php:457 ../../include/notifier.php:717 #: ../../include/delivery.php:457 ../../include/notifier.php:767
msgid "(no subject)" msgid "(no subject)"
msgstr "(bez tematu)" msgstr "(bez tematu)"
@ -8414,6 +8462,38 @@ msgstr ""
msgid "Embedding disabled" msgid "Embedding disabled"
msgstr "" msgstr ""
#: ../../include/uimport.php:61
msgid "Error decoding account file"
msgstr ""
#: ../../include/uimport.php:67
msgid "Error! No version data in file! This is not a Friendica account file?"
msgstr ""
#: ../../include/uimport.php:72
msgid "Error! I can't import this file: DB schema version is not compatible."
msgstr ""
#: ../../include/uimport.php:92
msgid "User creation error"
msgstr ""
#: ../../include/uimport.php:110
msgid "User profile creation error"
msgstr ""
#: ../../include/uimport.php:155
#, php-format
msgid "%d contact not imported"
msgid_plural "%d contacts not imported"
msgstr[0] ""
msgstr[1] ""
msgstr[2] ""
#: ../../include/uimport.php:233
msgid "Done. You can now login with your username and password"
msgstr ""
#: ../../include/group.php:25 #: ../../include/group.php:25
msgid "" msgid ""
"A deleted group with this name was revived. Existing item permissions " "A deleted group with this name was revived. Existing item permissions "
@ -8445,7 +8525,7 @@ msgstr "Stwórz nową grupę"
msgid "Contacts not in any group" msgid "Contacts not in any group"
msgstr "Kontakt nie jest w żadnej grupie" msgstr "Kontakt nie jest w żadnej grupie"
#: ../../include/nav.php:46 ../../boot.php:922 #: ../../include/nav.php:46 ../../boot.php:926
msgid "Logout" msgid "Logout"
msgstr "Wyloguj się" msgstr "Wyloguj się"
@ -8453,7 +8533,7 @@ msgstr "Wyloguj się"
msgid "End this session" msgid "End this session"
msgstr "Zakończ sesję" msgstr "Zakończ sesję"
#: ../../include/nav.php:49 ../../boot.php:1677 #: ../../include/nav.php:49 ../../boot.php:1687
msgid "Status" msgid "Status"
msgstr "Status" msgstr "Status"
@ -8533,11 +8613,11 @@ msgstr "Zarządzaj"
msgid "Manage other pages" msgid "Manage other pages"
msgstr "Zarządzaj innymi stronami" msgstr "Zarządzaj innymi stronami"
#: ../../include/nav.php:138 ../../boot.php:1197 #: ../../include/nav.php:138 ../../boot.php:1201
msgid "Profiles" msgid "Profiles"
msgstr "Profile" msgstr "Profile"
#: ../../include/nav.php:138 ../../boot.php:1197 #: ../../include/nav.php:138 ../../boot.php:1201
msgid "Manage/edit profiles" msgid "Manage/edit profiles"
msgstr "Zarządzaj profilami" msgstr "Zarządzaj profilami"
@ -8629,7 +8709,7 @@ msgstr ""
#: ../../include/datetime.php:43 ../../include/datetime.php:45 #: ../../include/datetime.php:43 ../../include/datetime.php:45
msgid "Miscellaneous" msgid "Miscellaneous"
msgstr "" msgstr "Różny"
#: ../../include/datetime.php:153 ../../include/datetime.php:285 #: ../../include/datetime.php:153 ../../include/datetime.php:285
msgid "year" msgid "year"
@ -8964,15 +9044,15 @@ msgstr "Nie można otrzymać informacji kontaktowych"
msgid "following" msgid "following"
msgstr "następujący" msgstr "następujący"
#: ../../include/items.php:3300 #: ../../include/items.php:3357
msgid "A new person is sharing with you at " msgid "A new person is sharing with you at "
msgstr "" msgstr ""
#: ../../include/items.php:3300 #: ../../include/items.php:3357
msgid "You have a new follower at " msgid "You have a new follower at "
msgstr "" msgstr ""
#: ../../include/items.php:3981 #: ../../include/items.php:4038
msgid "Archives" msgid "Archives"
msgstr "Archiwum" msgstr "Archiwum"
@ -9210,101 +9290,101 @@ msgstr ""
msgid "This action is not available under your subscription plan." msgid "This action is not available under your subscription plan."
msgstr "" msgstr ""
#: ../../boot.php:584 #: ../../boot.php:588
msgid "Delete this item?" msgid "Delete this item?"
msgstr "Usunąć ten element?" msgstr "Usunąć ten element?"
#: ../../boot.php:587 #: ../../boot.php:591
msgid "show fewer" msgid "show fewer"
msgstr "Pokaż mniej" msgstr "Pokaż mniej"
#: ../../boot.php:794 #: ../../boot.php:798
#, php-format #, php-format
msgid "Update %s failed. See error logs." msgid "Update %s failed. See error logs."
msgstr "" msgstr ""
#: ../../boot.php:796 #: ../../boot.php:800
#, php-format #, php-format
msgid "Update Error at %s" msgid "Update Error at %s"
msgstr "" msgstr ""
#: ../../boot.php:897 #: ../../boot.php:901
msgid "Create a New Account" msgid "Create a New Account"
msgstr "Załóż nowe konto" msgstr "Załóż nowe konto"
#: ../../boot.php:925 #: ../../boot.php:929
msgid "Nickname or Email address: " msgid "Nickname or Email address: "
msgstr "Nick lub adres email:" msgstr "Nick lub adres email:"
#: ../../boot.php:926 #: ../../boot.php:930
msgid "Password: " msgid "Password: "
msgstr "Hasło:" msgstr "Hasło:"
#: ../../boot.php:929 #: ../../boot.php:933
msgid "Or login using OpenID: " msgid "Or login using OpenID: "
msgstr "" msgstr ""
#: ../../boot.php:935 #: ../../boot.php:939
msgid "Forgot your password?" msgid "Forgot your password?"
msgstr "Zapomniałeś swojego hasła?" msgstr "Zapomniałeś swojego hasła?"
#: ../../boot.php:1046 #: ../../boot.php:1050
msgid "Requested account is not available." msgid "Requested account is not available."
msgstr "" msgstr ""
#: ../../boot.php:1123 #: ../../boot.php:1127
msgid "Edit profile" msgid "Edit profile"
msgstr "Edytuj profil" msgstr "Edytuj profil"
#: ../../boot.php:1189 #: ../../boot.php:1193
msgid "Message" msgid "Message"
msgstr "Wiadomość" msgstr "Wiadomość"
#: ../../boot.php:1311 ../../boot.php:1397 #: ../../boot.php:1315 ../../boot.php:1401
msgid "g A l F d" msgid "g A l F d"
msgstr "" msgstr ""
#: ../../boot.php:1312 ../../boot.php:1398 #: ../../boot.php:1316 ../../boot.php:1402
msgid "F d" msgid "F d"
msgstr "" msgstr ""
#: ../../boot.php:1357 ../../boot.php:1438 #: ../../boot.php:1361 ../../boot.php:1442
msgid "[today]" msgid "[today]"
msgstr "[dziś]" msgstr "[dziś]"
#: ../../boot.php:1369 #: ../../boot.php:1373
msgid "Birthday Reminders" msgid "Birthday Reminders"
msgstr "Przypomnienia o urodzinach" msgstr "Przypomnienia o urodzinach"
#: ../../boot.php:1370 #: ../../boot.php:1374
msgid "Birthdays this week:" msgid "Birthdays this week:"
msgstr "Urodziny w tym tygodniu:" msgstr "Urodziny w tym tygodniu:"
#: ../../boot.php:1431 #: ../../boot.php:1435
msgid "[No description]" msgid "[No description]"
msgstr "[Brak opisu]" msgstr "[Brak opisu]"
#: ../../boot.php:1449 #: ../../boot.php:1453
msgid "Event Reminders" msgid "Event Reminders"
msgstr "" msgstr ""
#: ../../boot.php:1450 #: ../../boot.php:1454
msgid "Events this week:" msgid "Events this week:"
msgstr "Wydarzenia w tym tygodniu:" msgstr "Wydarzenia w tym tygodniu:"
#: ../../boot.php:1680 #: ../../boot.php:1690
msgid "Status Messages and Posts" msgid "Status Messages and Posts"
msgstr "Status wiadomości i postów" msgstr "Status wiadomości i postów"
#: ../../boot.php:1687 #: ../../boot.php:1697
msgid "Profile Details" msgid "Profile Details"
msgstr "Szczegóły profilu" msgstr "Szczegóły profilu"
#: ../../boot.php:1704 #: ../../boot.php:1714
msgid "Events and Calendar" msgid "Events and Calendar"
msgstr "Wydarzenia i kalendarz" msgstr "Wydarzenia i kalendarz"
#: ../../boot.php:1711 #: ../../boot.php:1721
msgid "Only You Can See This" msgid "Only You Can See This"
msgstr "" msgstr ""

View File

@ -199,6 +199,18 @@ $a->strings["Diaspora"] = "";
$a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = ""; $a->strings[" - please do not use this form. Instead, enter %s into your Diaspora search bar."] = "";
$a->strings["Your Identity Address:"] = "Twój zidentyfikowany adres:"; $a->strings["Your Identity Address:"] = "Twój zidentyfikowany adres:";
$a->strings["Submit Request"] = "Wyślij zgłoszenie"; $a->strings["Submit Request"] = "Wyślij zgłoszenie";
$a->strings["Account settings"] = "Ustawienia konta";
$a->strings["Display settings"] = "Wyświetl ustawienia";
$a->strings["Connector settings"] = "";
$a->strings["Plugin settings"] = "Ustawienia wtyczek";
$a->strings["Connected apps"] = "";
$a->strings["Export personal data"] = "Eksportuje dane personalne";
$a->strings["Remove account"] = "Usuń konto";
$a->strings["Settings"] = "Ustawienia";
$a->strings["Export account"] = "";
$a->strings["Export your account info and contacts. Use this to make a backup of your account and/or to move it to another server."] = "";
$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["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 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."] = "";
@ -278,7 +290,7 @@ $a->strings["Group: "] = "Grupa:";
$a->strings["Select"] = "Wybierz"; $a->strings["Select"] = "Wybierz";
$a->strings["View %s's profile @ %s"] = "Pokaż %s's profil @ %s"; $a->strings["View %s's profile @ %s"] = "Pokaż %s's profil @ %s";
$a->strings["%s from %s"] = "%s od %s"; $a->strings["%s from %s"] = "%s od %s";
$a->strings["View in context"] = ""; $a->strings["View in context"] = "Zobacz w kontekście";
$a->strings["%d comment"] = array( $a->strings["%d comment"] = array(
0 => " %d komentarz", 0 => " %d komentarz",
1 => " %d komentarzy", 1 => " %d komentarzy",
@ -445,14 +457,6 @@ $a->strings["Forgot your Password?"] = "Zapomniałeś hasła?";
$a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Wpisz swój adres email i wyślij, aby zresetować hasło. Później sprawdź swojego emaila w celu uzyskania dalszych instrukcji."; $a->strings["Enter your email address and submit to have your password reset. Then check your email for further instructions."] = "Wpisz swój adres email i wyślij, aby zresetować hasło. Później sprawdź swojego emaila w celu uzyskania dalszych instrukcji.";
$a->strings["Nickname or Email: "] = "Pseudonim lub Email:"; $a->strings["Nickname or Email: "] = "Pseudonim lub Email:";
$a->strings["Reset"] = "Zresetuj"; $a->strings["Reset"] = "Zresetuj";
$a->strings["Account settings"] = "Ustawienia konta";
$a->strings["Display settings"] = "Wyświetl ustawienia";
$a->strings["Connector settings"] = "";
$a->strings["Plugin settings"] = "Ustawienia wtyczek";
$a->strings["Connected apps"] = "";
$a->strings["Export personal data"] = "Eksportuje dane personalne";
$a->strings["Remove account"] = "Usuń konto";
$a->strings["Settings"] = "Ustawienia";
$a->strings["Missing some important data!"] = "Brakuje ważnych danych!"; $a->strings["Missing some important data!"] = "Brakuje ważnych danych!";
$a->strings["Update"] = "Zaktualizuj"; $a->strings["Update"] = "Zaktualizuj";
$a->strings["Failed to connect with email account using the settings provided."] = ""; $a->strings["Failed to connect with email account using the settings provided."] = "";
@ -523,7 +527,7 @@ $a->strings["Private forum - approved members only"] = "";
$a->strings["OpenID:"] = ""; $a->strings["OpenID:"] = "";
$a->strings["(Optional) Allow this OpenID to login to this account."] = ""; $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 your local site directory?"] = "";
$a->strings["Publish your default profile in the global social directory?"] = ""; $a->strings["Publish your default profile in the global social directory?"] = "Opublikować twój niewypełniony profil w globalnym, społecznym katalogu?";
$a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Ukryć listę znajomych przed odwiedzającymi Twój profil?"; $a->strings["Hide your contact/friend list from viewers of your default profile?"] = "Ukryć listę znajomych przed odwiedzającymi Twój profil?";
$a->strings["Hide your profile details from unknown viewers?"] = "Ukryć szczegóły twojego profilu przed nieznajomymi ?"; $a->strings["Hide your profile details from unknown viewers?"] = "Ukryć szczegóły twojego profilu przed nieznajomymi ?";
$a->strings["Allow friends to post to your profile page?"] = "Zezwól na dodawanie postów na twoim profilu przez znajomych"; $a->strings["Allow friends to post to your profile page?"] = "Zezwól na dodawanie postów na twoim profilu przez znajomych";
@ -604,6 +608,11 @@ $a->strings["Private messages to this person are at risk of public disclosure."]
$a->strings["Invalid contact."] = "Zły kontakt"; $a->strings["Invalid contact."] = "Zły kontakt";
$a->strings["Personal Notes"] = "Osobiste notatki"; $a->strings["Personal Notes"] = "Osobiste notatki";
$a->strings["Save"] = "Zapisz"; $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["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."] = ""; $a->strings["Number of daily wall messages for %s exceeded. Message failed."] = "";
$a->strings["No recipient selected."] = "Nie wybrano odbiorcy."; $a->strings["No recipient selected."] = "Nie wybrano odbiorcy.";
$a->strings["Unable to check your home location."] = ""; $a->strings["Unable to check your home location."] = "";
@ -675,7 +684,7 @@ $a->strings["No contacts."] = "brak kontaktów";
$a->strings["View Contacts"] = "widok kontaktów"; $a->strings["View Contacts"] = "widok kontaktów";
$a->strings["Registration details for %s"] = "Szczegóły rejestracji dla %s"; $a->strings["Registration details for %s"] = "Szczegóły rejestracji dla %s";
$a->strings["Registration successful. Please check your email for further instructions."] = "Rejestracja zakończona pomyślnie. Dalsze instrukcje zostały wysłane na twojego e-maila."; $a->strings["Registration successful. Please check your email for further instructions."] = "Rejestracja zakończona pomyślnie. Dalsze instrukcje zostały wysłane na twojego e-maila.";
$a->strings["Failed to send email message. Here is the message that failed."] = ""; $a->strings["Failed to send email message. Here is the message that failed."] = "Nie udało się wysłać wiadomości e-mail. Wysyłanie nie powiodło się.";
$a->strings["Your registration can not be processed."] = "Twoja rejestracja nie może zostać przeprowadzona. "; $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["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["Your registration is pending approval by the site owner."] = "Twoja rejestracja oczekuje na zaakceptowanie przez właściciela witryny.";
@ -685,7 +694,7 @@ $a->strings["If you are not familiar with OpenID, please leave that field blank
$a->strings["Your OpenID (optional): "] = "Twój OpenID (opcjonalnie):"; $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?"; $a->strings["Include your profile in member directory?"] = "Czy dołączyć twój profil do katalogu członków?";
$a->strings["Membership on this site is by invitation only."] = "Członkostwo na tej stronie możliwe tylko dzięki zaproszeniu."; $a->strings["Membership on this site is by invitation only."] = "Członkostwo na tej stronie możliwe tylko dzięki zaproszeniu.";
$a->strings["Your invitation ID: "] = ""; $a->strings["Your invitation ID: "] = "Twoje zaproszenia ID:";
$a->strings["Registration"] = "Rejestracja"; $a->strings["Registration"] = "Rejestracja";
$a->strings["Your Full Name (e.g. Joe Smith): "] = "Imię i nazwisko (np. Jan Kowalski):"; $a->strings["Your Full Name (e.g. Joe Smith): "] = "Imię i nazwisko (np. Jan Kowalski):";
$a->strings["Your Email Address: "] = "Twój adres email:"; $a->strings["Your Email Address: "] = "Twój adres email:";
@ -763,7 +772,7 @@ $a->strings["DB updates"] = "";
$a->strings["Logs"] = ""; $a->strings["Logs"] = "";
$a->strings["Admin"] = "Administator"; $a->strings["Admin"] = "Administator";
$a->strings["Plugin Features"] = "Polecane wtyczki"; $a->strings["Plugin Features"] = "Polecane wtyczki";
$a->strings["User registrations waiting for confirmation"] = ""; $a->strings["User registrations waiting for confirmation"] = "Rejestracje użytkownika czekają na potwierdzenie.";
$a->strings["Normal Account"] = "Konto normalne"; $a->strings["Normal Account"] = "Konto normalne";
$a->strings["Soapbox Account"] = ""; $a->strings["Soapbox Account"] = "";
$a->strings["Community/Celebrity Account"] = "Konto społeczności/gwiazdy"; $a->strings["Community/Celebrity Account"] = "Konto społeczności/gwiazdy";
@ -774,12 +783,12 @@ $a->strings["Message queues"] = "";
$a->strings["Administration"] = "Administracja"; $a->strings["Administration"] = "Administracja";
$a->strings["Summary"] = "Skrót"; $a->strings["Summary"] = "Skrót";
$a->strings["Registered users"] = "Zarejestrowani użytkownicy"; $a->strings["Registered users"] = "Zarejestrowani użytkownicy";
$a->strings["Pending registrations"] = ""; $a->strings["Pending registrations"] = "Rejestracje w toku.";
$a->strings["Version"] = "Wersja"; $a->strings["Version"] = "Wersja";
$a->strings["Active plugins"] = ""; $a->strings["Active plugins"] = "";
$a->strings["Site settings updated."] = "Ustawienia strony zaktualizowane"; $a->strings["Site settings updated."] = "Ustawienia strony zaktualizowane";
$a->strings["Closed"] = ""; $a->strings["Closed"] = "Zamknięty";
$a->strings["Requires approval"] = ""; $a->strings["Requires approval"] = "Wymagane zatwierdzenie.";
$a->strings["Open"] = "Otwórz"; $a->strings["Open"] = "Otwórz";
$a->strings["No SSL policy, links will track page SSL state"] = ""; $a->strings["No SSL policy, links will track page SSL state"] = "";
$a->strings["Force all links to use SSL"] = ""; $a->strings["Force all links to use SSL"] = "";
@ -807,7 +816,7 @@ $a->strings["Register text"] = "";
$a->strings["Will be displayed prominently on the registration page."] = ""; $a->strings["Will be displayed prominently on the registration page."] = "";
$a->strings["Accounts abandoned after x days"] = "Konto porzucone od x dni."; $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["Will not waste system resources polling external sites for abandonded accounts. Enter 0 for no time limit."] = "";
$a->strings["Allowed friend domains"] = ""; $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["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"] = "";
$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["Comma separated list of domains which are allowed in email addresses for registrations to this site. Wildcards are accepted. Empty to allow any domains"] = "";
@ -1067,17 +1076,17 @@ $a->strings["Unexpected response from remote site: "] = "Nieoczekiwana odpowied
$a->strings["Confirmation completed successfully."] = "Potwierdzenie ukończone poprawnie"; $a->strings["Confirmation completed successfully."] = "Potwierdzenie ukończone poprawnie";
$a->strings["Remote site reported: "] = ""; $a->strings["Remote site reported: "] = "";
$a->strings["Temporary failure. Please wait and try again."] = "Tymczasowo uszkodzone. Proszę poczekać i spróbować później."; $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."] = ""; $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."; $a->strings["Unable to set contact photo."] = "Nie można ustawić zdjęcia kontaktu.";
$a->strings["%1\$s is now friends with %2\$s"] = "%1\$s jest teraz znajomym z %2\$s"; $a->strings["%1\$s is now friends with %2\$s"] = "%1\$s jest teraz znajomym z %2\$s";
$a->strings["No user record found for '%s' "] = "Nie znaleziono użytkownika dla '%s'"; $a->strings["No user record found for '%s' "] = "Nie znaleziono użytkownika dla '%s'";
$a->strings["Our site encryption key is apparently messed up."] = ""; $a->strings["Our site encryption key is apparently messed up."] = "Klucz kodujący jest najwyraźniej zepsuty";
$a->strings["Empty site URL was provided or URL could not be decrypted by us."] = ""; $a->strings["Empty site URL was provided or URL could not be decrypted by us."] = "";
$a->strings["Contact record was not found for you on our site."] = "Nie znaleziono kontaktu na naszej stronie"; $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["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."] = "";
$a->strings["Unable to set your contact credentials on our system."] = ""; $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"] = ""; $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"; $a->strings["Connection accepted at %s"] = "Połączenie zaakceptowane %s";
$a->strings["%1\$s has joined %2\$s"] = ""; $a->strings["%1\$s has joined %2\$s"] = "";
$a->strings["Google+ Import Settings"] = ""; $a->strings["Google+ Import Settings"] = "";
@ -1501,7 +1510,7 @@ $a->strings["Subscribe to Friendica contacts automatically"] = "";
$a->strings["Purge internal list of jabber addresses of contacts"] = ""; $a->strings["Purge internal list of jabber addresses of contacts"] = "";
$a->strings["Add contact"] = "Dodaj kontakt"; $a->strings["Add contact"] = "Dodaj kontakt";
$a->strings["View Source"] = "Podgląd źródła"; $a->strings["View Source"] = "Podgląd źródła";
$a->strings["Post to StatusNet"] = ""; $a->strings["Post to StatusNet"] = "Opublikuj status";
$a->strings["Please contact your site administrator.<br />The provided API URL is not valid."] = ""; $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["We could not contact the StatusNet API with the Path you entered."] = "";
$a->strings["StatusNet settings updated."] = "Ustawienia StatusNet zaktualizowane"; $a->strings["StatusNet settings updated."] = "Ustawienia StatusNet zaktualizowane";
@ -1657,7 +1666,7 @@ $a->strings["Contact information and Social Networks:"] = "";
$a->strings["Musical interests:"] = "Zainteresowania muzyczne:"; $a->strings["Musical interests:"] = "Zainteresowania muzyczne:";
$a->strings["Books, literature:"] = "Książki, literatura:"; $a->strings["Books, literature:"] = "Książki, literatura:";
$a->strings["Television:"] = "Telewizja:"; $a->strings["Television:"] = "Telewizja:";
$a->strings["Film/dance/culture/entertainment:"] = ""; $a->strings["Film/dance/culture/entertainment:"] = "Film/taniec/kultura/rozrywka";
$a->strings["Love/Romance:"] = "Miłość/Romans:"; $a->strings["Love/Romance:"] = "Miłość/Romans:";
$a->strings["Work/employment:"] = "Praca/zatrudnienie:"; $a->strings["Work/employment:"] = "Praca/zatrudnienie:";
$a->strings["School/education:"] = "Szkoła/edukacja:"; $a->strings["School/education:"] = "Szkoła/edukacja:";
@ -1806,6 +1815,17 @@ $a->strings["Attachments:"] = "Załączniki:";
$a->strings["view full size"] = "Zobacz pełen rozmiar"; $a->strings["view full size"] = "Zobacz pełen rozmiar";
$a->strings["Embedded content"] = ""; $a->strings["Embedded content"] = "";
$a->strings["Embedding disabled"] = ""; $a->strings["Embedding disabled"] = "";
$a->strings["Error decoding account file"] = "";
$a->strings["Error! No version data in file! This is not a Friendica account file?"] = "";
$a->strings["Error! I can't import this file: DB schema version is not compatible."] = "";
$a->strings["User creation error"] = "";
$a->strings["User profile creation error"] = "";
$a->strings["%d contact not imported"] = array(
0 => "",
1 => "",
2 => "",
);
$a->strings["Done. You can now login with your username and password"] = "";
$a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = ""; $a->strings["A deleted group with this name was revived. Existing item permissions <strong>may</strong> apply to this group and any future members. If this is not what you intended, please create another group with a different name."] = "";
$a->strings["Default privacy group for new contacts"] = "Domyślne ustawienia prywatności dla nowych kontaktów"; $a->strings["Default privacy group for new contacts"] = "Domyślne ustawienia prywatności dla nowych kontaktów";
$a->strings["Everybody"] = "Wszyscy"; $a->strings["Everybody"] = "Wszyscy";
@ -1861,7 +1881,7 @@ $a->strings["Categories"] = "Kategorie";
$a->strings["Logged out."] = "Wyloguj"; $a->strings["Logged out."] = "Wyloguj";
$a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = ""; $a->strings["We encountered a problem while logging in with the OpenID you provided. Please check the correct spelling of the ID."] = "";
$a->strings["The error message was:"] = ""; $a->strings["The error message was:"] = "";
$a->strings["Miscellaneous"] = ""; $a->strings["Miscellaneous"] = "Różny";
$a->strings["year"] = "rok"; $a->strings["year"] = "rok";
$a->strings["month"] = "miesiąc"; $a->strings["month"] = "miesiąc";
$a->strings["day"] = "dzień"; $a->strings["day"] = "dzień";