Skip to content

Commit

Permalink
Merge pull request #102 from sebast26/master
Browse files Browse the repository at this point in the history
added pl_PL language pack
  • Loading branch information
uzquiano committed May 15, 2014
2 parents a5f567a + 855c287 commit 05d8a92
Show file tree
Hide file tree
Showing 2 changed files with 49 additions and 0 deletions.
3 changes: 3 additions & 0 deletions build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -132,6 +132,7 @@
<file name="views/i18n/es_ES.js"/>
<file name="views/i18n/fr_FR.js"/>
<file name="views/i18n/zh_CN.js"/>
<file name="views/i18n/pl_PL.js"/>

</filelist>

Expand Down Expand Up @@ -202,6 +203,7 @@
<file name="views/i18n/es_ES.js"/>
<file name="views/i18n/fr_FR.js"/>
<file name="views/i18n/zh_CN.js"/>
<file name="views/i18n/pl_PL.js"/>

</filelist>
</concat>
Expand Down Expand Up @@ -394,6 +396,7 @@
<file name="views/i18n/es_ES.js"/>
<file name="views/i18n/fr_FR.js"/>
<file name="views/i18n/zh_CN.js"/>
<file name="views/i18n/pl_PL.js"/>

</filelist>
</concat>
Expand Down
46 changes: 46 additions & 0 deletions js/views/i18n/pl_PL.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
(function($) {

var Alpaca = $.alpaca;

Alpaca.registerView ({
"id": "VIEW_BASE",
"messages": {
"pl_PL": {
required: "To pole jest wymagane",
invalid: "To pole jest nieprawidłowe",
months: ["Styczeń", "Luty", "Marzec", "Kwiecień", "Maj", "Czerwiec", "Lipiec", "Sierpień", "Wrzesień", "Październik", "Listopad", "Grudzień"],
timeUnits: {
SECOND: "sekundy",
MINUTE: "minuty",
HOUR: "godziny",
DAY: "dni",
MONTH: "miesiące",
YEAR: "lata"
},
"notOptional": "To pole nie jest opcjonalne",
"disallowValue": "Ta wartość nie jest dozwolona: {0}",
"invalidValueOfEnum": "To pole powinno zawierać jedną z następujących wartości: {0}",
"notEnoughItems": "Minimalna liczba elementów wynosi {0}",
"tooManyItems": "Maksymalna liczba elementów wynosi {0}",
"valueNotUnique": "Te wartości nie są unikalne",
"notAnArray": "Ta wartość nie jest tablicą",
"invalidDate": "Niepoprawny format daty: {0}",
"invalidEmail": "Niepoprawny adres email, n.p.: info@cloudcms.com",
"stringNotAnInteger": "Ta wartość nie jest liczbą całkowitą",
"invalidIPv4": "Niepoprawny adres IPv4, n.p.: 192.168.0.1",
"stringValueTooSmall": "Minimalna wartość dla tego pola wynosi {0}",
"stringValueTooLarge": "Maksymalna wartość dla tego pola wynosi {0}",
"stringValueTooSmallExclusive": "Wartość dla tego pola musi być większa niż {0}",
"stringValueTooLargeExclusive": "Wartość dla tego pola musi być mniejsza niż {0}",
"stringDivisibleBy": "Wartość musi być podzielna przez {0}",
"stringNotANumber": "Wartość nie jest liczbą",
"invalidPassword": "Niepoprawne hasło",
"invalidPhone": "Niepoprawny numer telefonu, n.p.: (123) 456-9999",
"invalidPattern": "To pole powinno mieć format {0}",
"stringTooShort": "To pole powinno zawierać co najmniej {0} znaków",
"stringTooLong": "To pole powinno zawierać najwyżej {0} znaków"
}
}
});

})(jQuery);

0 comments on commit 05d8a92

Please sign in to comment.