summaryrefslogtreecommitdiffstats
path: root/apps/files/l10n/pl.js
diff options
context:
space:
mode:
authorJenkins for ownCloud <owncloud-bot@tmit.eu>2015-08-25 12:39:10 -0400
committerJenkins for ownCloud <owncloud-bot@tmit.eu>2015-08-25 12:39:10 -0400
commit2171cc02c31c3629ee1c2fe5cdafd64500bb08b0 (patch)
treebda2aec8d68028bf7e441a73a4fa206eadeafb3d /apps/files/l10n/pl.js
parent891673d9ea4d5301a26030f30ca7aeb5689c630b (diff)
downloadnextcloud-server-2171cc02c31c3629ee1c2fe5cdafd64500bb08b0.tar.gz
nextcloud-server-2171cc02c31c3629ee1c2fe5cdafd64500bb08b0.zip
[tx-robot] updated from transifex
Diffstat (limited to 'apps/files/l10n/pl.js')
-rw-r--r--apps/files/l10n/pl.js10
1 files changed, 4 insertions, 6 deletions
diff --git a/apps/files/l10n/pl.js b/apps/files/l10n/pl.js
index daa623d3cde..28ffe4444e8 100644
--- a/apps/files/l10n/pl.js
+++ b/apps/files/l10n/pl.js
@@ -29,6 +29,7 @@ OC.L10N.register(
"All files" : "Wszystkie pliki",
"Favorites" : "Ulubione",
"Home" : "Dom",
+ "Close" : "Zamknij",
"Unable to upload {filename} as it is a directory or has 0 bytes" : "Nie można przesłać {filename} być może jest katalogiem lub posiada 0 bajtów",
"Total file size {size1} exceeds upload limit {size2}" : "Całkowity rozmiar {size1} przekracza limit uploadu {size2}",
"Not enough free space, you are uploading {size1} but only {size2} is left" : "Brak wolnej przestrzeni, przesyłasz {size1} a pozostało tylko {size2}",
@@ -38,11 +39,7 @@ OC.L10N.register(
"{new_name} already exists" : "{new_name} już istnieje",
"Could not create file" : "Nie można utworzyć pliku",
"Could not create folder" : "Nie można utworzyć folderu",
- "Rename" : "Zmień nazwę",
- "Delete" : "Usuń",
- "Disconnect storage" : "Odłącz magazyn",
- "Unshare" : "Zatrzymaj współdzielenie",
- "No permission to delete" : "Brak uprawnień do usunięcia",
+ "Actions" : "Akcje",
"Download" : "Pobierz",
"Select" : "Wybierz",
"Pending" : "Oczekujące",
@@ -58,6 +55,7 @@ OC.L10N.register(
"Modified" : "Modyfikacja",
"_%n folder_::_%n folders_" : ["%n katalog","%n katalogi","%n katalogów"],
"_%n file_::_%n files_" : ["%n plik","%n pliki","%n plików"],
+ "{dirs} and {files}" : "{dirs} i {files}",
"You don’t have permission to upload or create files here" : "Nie masz uprawnień do wczytywania lub tworzenia plików w tym miejscu",
"_Uploading %n file_::_Uploading %n files_" : ["Wysyłanie %n pliku","Wysyłanie %n plików","Wysyłanie %n plików"],
"\"{name}\" is an invalid file name." : "\"{name}\" jest nieprawidłową nazwą pliku.",
@@ -66,7 +64,6 @@ OC.L10N.register(
"Your storage is full, files can not be updated or synced anymore!" : "Magazyn jest pełny. Pliki nie mogą zostać zaktualizowane lub zsynchronizowane!",
"Storage of {owner} is almost full ({usedSpacePercent}%)" : "Miejsce dla {owner} jest na wyczerpaniu ({usedSpacePercent}%)",
"Your storage is almost full ({usedSpacePercent}%)" : "Twój magazyn jest prawie pełny ({usedSpacePercent}%)",
- "{dirs} and {files}" : "{dirs} i {files}",
"Favorited" : "Ulubione",
"Favorite" : "Ulubione",
"A new file or folder has been <strong>created</strong>" : "Nowy plik lub folder został <strong>utworzony</strong>",
@@ -101,6 +98,7 @@ OC.L10N.register(
"Cancel upload" : "Anuluj wysyłanie",
"No entries found in this folder" : "Brak wpisów w tym folderze",
"Select all" : "Wybierz wszystko",
+ "Delete" : "Usuń",
"Upload too large" : "Ładowany plik jest za duży",
"The files you are trying to upload exceed the maximum size for file uploads on this server." : "Pliki, które próbujesz przesłać, przekraczają maksymalną dopuszczalną wielkość.",
"Files are being scanned, please wait." : "Skanowanie plików, proszę czekać.",
; * * @license AGPL-3.0 * * This code is free software: you can redistribute it and/or modify * it under the terms of the GNU Affero General Public License, version 3, * as published by the Free Software Foundation. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU Affero General Public License for more details. * * You should have received a copy of the GNU Affero General Public License, version 3, * along with this program. If not, see <http://www.gnu.org/licenses/> * */ namespace OCA\DAV\Upload; use OCA\DAV\BackgroundJob\UploadCleanup; use OCA\DAV\Connector\Sabre\Directory; use OCP\BackgroundJob\IJobList; use Sabre\DAV\Exception\Forbidden; use Sabre\DAV\ICollection; class UploadFolder implements ICollection { /** @var Directory */ private $node; /** @var CleanupService */ private $cleanupService; function __construct(Directory $node, CleanupService $cleanupService) { $this->node = $node; $this->cleanupService = $cleanupService; } function createFile($name, $data = null) { // TODO: verify name - should be a simple number $this->node->createFile($name, $data); } function createDirectory($name) { throw new Forbidden('Permission denied to create file (filename ' . $name . ')'); } function getChild($name) { if ($name === '.file') { return new FutureFile($this->node, '.file'); } return $this->node->getChild($name); } function getChildren() { $children = $this->node->getChildren(); $children[] = new FutureFile($this->node, '.file'); return $children; } function childExists($name) { if ($name === '.file') { return true; } return $this->node->childExists($name); } function delete() { $this->node->delete(); // Background cleanup job is not needed anymore $this->cleanupService->removeJob($this->getName()); } function getName() { return $this->node->getName(); } function setName($name) { throw new Forbidden('Permission denied to rename this folder'); } function getLastModified() { return $this->node->getLastModified(); } }