summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlessandro Cosentino <cosenal@gmail.com>2013-03-05 02:06:18 +0100
committerAlessandro Cosentino <cosenal@gmail.com>2013-03-05 02:06:18 +0100
commitc4349e0c2ee6a6600b8e661e776c2e1a4b131e0e (patch)
treea5f2451422c890066a92497a163efab10da244aa
parentef450898bb702877dafb755e425fe8f37b23417b (diff)
parent57276b9b0c5009a6d44c92eb8b98643a745f1a07 (diff)
Merge branch 'master' into news_ext_api
-rw-r--r--l10n/pl.php18
-rw-r--r--subscribe.php6
2 files changed, 12 insertions, 12 deletions
diff --git a/l10n/pl.php b/l10n/pl.php
index 0e81fc3d4..d546662c4 100644
--- a/l10n/pl.php
+++ b/l10n/pl.php
@@ -1,23 +1,23 @@
<?php $TRANSLATIONS = array(
"year" => "rok",
-"News" => "Nowości",
+"News" => "Aktualności",
"no title" => "brak tytułu",
"no name" => "brak nazwy",
"no body" => "brak zawartości",
-"subscriptions in ownCloud - News" => "Subskrypcje w ownCloud - Wiadomości",
+"subscriptions in ownCloud - News" => "Subskrypcje w ownCloud - Aktualności",
"An error occurred" => "Wystąpił błąd",
"Nice! You have subscribed to " => "Super! Subskrybujesz",
"You had already subscribed to this feed!" => "Już subskrybujesz ten kanał!",
"New" => "Nowy",
-"Add Subscription" => "Dodaj Subskrypcję",
+"Add Subscription" => "Dodaj subskrypcję",
"Address must not be empty!" => "Adres nie może być pusty!",
"Feed exists already!" => "Kanał już istnieje!",
-"Could not add feed! Check if feed contains valid RSS!" => "Nie można dodać kanału! Sprawdzanie, czy podałeś poprawny adres RSS!",
+"Could not add feed! Check if feed contains valid RSS!" => "Nie można dodać kanału! Sprawdź czy kanał zawiera poprawne dane RSS!",
"Folder exists already" => "Folder już istnieje",
"Address" => "Adres",
"Add" => "Dodaj",
"New folder" => "Nowy folder",
-"Folder" => "Katalog",
+"Folder" => "Folder",
"No folder" => "Brak folderu",
"Starred" => "Oznaczone",
"Unread articles" => "Nieprzeczytane artykuły",
@@ -30,12 +30,12 @@
"Collapse" => "Zwiń",
"Delete folder" => "Usuń folder",
"Rename folder" => "Zmień nazwę folderu",
-"Import / Export OPML" => "Importuj / Eksportuj OPML",
-"Import" => "Import",
-"Export" => "Export",
+"Import / Export OPML" => "Importuj/eksportuj OPML",
+"Import" => "Importuj",
+"Export" => "Eksportuj",
"Subscribelet" => "Subskrybowane",
"Show all" => "Pokaż wszystko",
-"Show only unread" => "Pokaż nieprzeczytane",
+"Show only unread" => "Pokaż tylko nieprzeczytane",
"Drag this to your browser bookmarks and click on it whenever you want to subscribe to a webpage quickly:" => "Przeciągnij do zakładek w swojej przeglądarce. Wystarczy kliknąć w zakładkę aby dodać subskrypcję nowej strony:",
"Subscribe" => "Subskrybuj"
);
diff --git a/subscribe.php b/subscribe.php
index 2b38d2ddf..41f00e98e 100644
--- a/subscribe.php
+++ b/subscribe.php
@@ -27,13 +27,13 @@
}
if($feed === null || !$feedid) {
- echo $l->t('An error occurred');
+ p($l->t('An error occurred'));
} else {
- echo $l->t('Nice! You have subscribed to ') . $feed->getTitle();
+ p($l->t('Nice! You have subscribed to ')) . $feed->getTitle();
}
}
else {
- echo $l->t('You had already subscribed to this feed!');
+ p($l->t('You had already subscribed to this feed!'));
}
?>