Skip to content

Commit 2b1053b

Browse files
authored
Merge pull request jimmiw#74 from biegacz1/master
Added polish translation
2 parents b3150f2 + 90a1c5d commit 2b1053b

File tree

1 file changed

+29
-0
lines changed
  • src/Westsworld/TimeAgo/Translations

1 file changed

+29
-0
lines changed
Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
<?php
2+
3+
namespace Westsworld\TimeAgo\Translations;
4+
5+
use \Westsworld\TimeAgo\Language;
6+
7+
/**
8+
* Polish translations
9+
*/
10+
class Pl extends Language
11+
{
12+
public function __construct()
13+
{
14+
$this->setTranslations([
15+
'aboutOneDay' => "wczoraj",
16+
'aboutOneHour' => "godzinę temu",
17+
'aboutOneMonth' => "miesiąc temu",
18+
'aboutOneYear' => "rok temu",
19+
'days' => "%s dni temu",
20+
'hours' => "%s godzin temu",
21+
'lessThanAMinute' => "mniej niż minutę temu",
22+
'lessThanOneHour' => "%s minut temu",
23+
'months' => "%s miesięcy temu",
24+
'oneMinute' => "minutę temu",
25+
'years' => "ponad %s lat temu",
26+
'never' => 'Nigdy'
27+
]);
28+
}
29+
}

0 commit comments

Comments
 (0)