2013-08-09 16:06:31 +04:00
|
|
|
|
<?php
|
|
|
|
|
$TRANSLATIONS = array(
|
2014-07-27 09:54:31 +04:00
|
|
|
|
"Server to server sharing is not enabled on this server" => "Współdzielenie między serwerami nie jest uruchomione na tym serwerze",
|
2014-08-23 09:57:00 +04:00
|
|
|
|
"Invalid or untrusted SSL certificate" => "Niewłaściwy lub niezaufany certyfikat SSL",
|
2014-06-26 09:54:40 +04:00
|
|
|
|
"Couldn't add remote share" => "Nie można dodać zdalnego folderu",
|
2014-06-04 09:57:48 +04:00
|
|
|
|
"Shared with you" => "Współdzielony z Tobą",
|
|
|
|
|
"Shared with others" => "Współdzielony z innymi",
|
2014-06-08 09:56:13 +04:00
|
|
|
|
"Shared by link" => "Współdzielony linkiem",
|
2014-06-04 09:57:48 +04:00
|
|
|
|
"No files have been shared with you yet." => "Nie ma jeszcze żadnych plików współdzielonych z Tobą",
|
|
|
|
|
"You haven't shared any files yet." => "Nie współdzielisz jeszcze żadnych plików.",
|
2014-06-08 09:56:13 +04:00
|
|
|
|
"You haven't shared any files by link yet." => "Nie współdzielisz jeszcze żadnych plików linkiem",
|
2014-07-27 09:54:31 +04:00
|
|
|
|
"Do you want to add the remote share {name} from {owner}@{remote}?" => "Czy chcesz dodać udział zdalny {name} od {owner}@{remote}?",
|
2014-07-26 09:54:40 +04:00
|
|
|
|
"Remote share" => "Zdalny zasób",
|
|
|
|
|
"Remote share password" => "Hasło do zdalnego zasobu",
|
2014-07-09 09:55:51 +04:00
|
|
|
|
"Cancel" => "Anuluj",
|
2014-07-26 09:54:40 +04:00
|
|
|
|
"Add remote share" => "Dodaj zdalny zasób",
|
2014-06-26 09:54:40 +04:00
|
|
|
|
"No ownCloud installation found at {remote}" => "Nie znaleziono instalacji ownCloud na {remote}",
|
|
|
|
|
"Invalid ownCloud url" => "Błędny adres URL",
|
2014-06-01 09:55:19 +04:00
|
|
|
|
"Shared by" => "Udostępniane przez",
|
2013-10-29 15:31:51 +04:00
|
|
|
|
"This share is password-protected" => "Udział ten jest chroniony hasłem",
|
2013-08-01 09:57:04 +04:00
|
|
|
|
"The password is wrong. Try again." => "To hasło jest niewłaściwe. Spróbuj ponownie.",
|
2014-07-08 09:55:17 +04:00
|
|
|
|
"Password" => "Hasło",
|
2014-06-01 09:55:19 +04:00
|
|
|
|
"Name" => "Nazwa",
|
2014-06-04 09:57:48 +04:00
|
|
|
|
"Share time" => "Czas współdzielenia",
|
2013-08-01 09:57:04 +04:00
|
|
|
|
"Sorry, this link doesn’t seem to work anymore." => "Przepraszamy ale wygląda na to, że ten link już nie działa.",
|
|
|
|
|
"Reasons might be:" => "Możliwe powody:",
|
|
|
|
|
"the item was removed" => "element został usunięty",
|
|
|
|
|
"the link expired" => "link wygasł",
|
2014-08-26 09:56:33 +04:00
|
|
|
|
"sharing is disabled" => "udostępnianie jest wyłączone",
|
2013-08-01 09:57:04 +04:00
|
|
|
|
"For more info, please ask the person who sent this link." => "Aby uzyskać więcej informacji proszę poprosić osobę, która wysłał ten link.",
|
2014-07-26 09:54:40 +04:00
|
|
|
|
"Add to your ownCloud" => "Dodaj do twojego ownCloud",
|
2014-05-04 09:56:15 +04:00
|
|
|
|
"Download" => "Pobierz",
|
2014-03-16 11:13:21 +04:00
|
|
|
|
"Download %s" => "Pobierz %s",
|
2014-06-26 09:54:40 +04:00
|
|
|
|
"Direct link" => "Bezpośredni link",
|
2014-07-27 09:54:31 +04:00
|
|
|
|
"Remote Shares" => "Udziały zdalne",
|
|
|
|
|
"Allow other instances to mount public links shared from this server" => "Pozwól innym instancjom montować publiczne linki z tego serwera",
|
2014-06-26 09:54:40 +04:00
|
|
|
|
"Allow users to mount public link shares" => "Zezwalaj użytkownikom na montowanie publicznych linków"
|
2012-08-14 01:19:31 +04:00
|
|
|
|
);
|
2013-08-09 16:06:31 +04:00
|
|
|
|
$PLURAL_FORMS = "nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);";
|