Skip to content

Commit 9c3dde3

Browse files
minor #42 Adding polish translation for validators. (piotrgradzinski)
This PR was squashed before being merged into the 1.0-dev branch. Discussion ---------- | Q | A | ------------- | --- | Bug fix? | no | New feature? | no | BC breaks? | no | Deprecations? | no | Tests pass? | no | License | MIT Adding polish (pl) translation for validators. Commits ------- 51165df Adding polish translation for validators. cdf103d Fixing one translation.
1 parent 0d80021 commit 9c3dde3

File tree

1 file changed

+85
-0
lines changed

1 file changed

+85
-0
lines changed
Lines changed: 85 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,85 @@
1+
<?xml version="1.0"?>
2+
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2">
3+
<file source-language="en" datatype="plaintext" original="file.ext">
4+
<body>
5+
<trans-unit id="1">
6+
<source>Your password must be at least {{length}} characters long.</source>
7+
<target>Hasło musi składać się z przynajmniej {{length}} znaków.</target>
8+
</trans-unit>
9+
<trans-unit id="2">
10+
<source>Your password must include at least one letter.</source>
11+
<target>Hasło musi zawierać przynajmniej jedną literę.</target>
12+
</trans-unit>
13+
<trans-unit id="3">
14+
<source>Your password must include both upper and lower case letters.</source>
15+
<target>Hasło musi zawierać duże i małe litery.</target>
16+
</trans-unit>
17+
<trans-unit id="4">
18+
<source>Your password must include at least one number.</source>
19+
<target>Hasło musi zawierać przynajmniej jedną cyfrę.</target>
20+
</trans-unit>
21+
<trans-unit id="5">
22+
<source>Your password must contain at least one special character.</source>
23+
<target>Hasło musi zawierać przynajmniej jeden znak specjalny.</target>
24+
</trans-unit>
25+
<trans-unit id="6">
26+
<source>password_too_weak</source>
27+
<target>Hasło musi być przynajmniej "{{ min_strength }}". Obecny poziom siły hasła to "{{ current_strength }}", spróbuj: {{ strength_tips }}.</target>
28+
</trans-unit>
29+
30+
<!-- Strength levels -->
31+
<trans-unit id="7">
32+
<source>rollerworks_password.strength_level.very_weak</source>
33+
<target>Bardzo słabe</target>
34+
</trans-unit>
35+
<trans-unit id="8">
36+
<source>rollerworks_password.strength_level.weak</source>
37+
<target>Słabe</target>
38+
</trans-unit>
39+
<trans-unit id="9">
40+
<source>rollerworks_password.strength_level.medium</source>
41+
<target>Średnie</target>
42+
</trans-unit>
43+
<trans-unit id="10">
44+
<source>rollerworks_password.strength_level.strong</source>
45+
<target>Silne</target>
46+
</trans-unit>
47+
<trans-unit id="11">
48+
<source>rollerworks_password.strength_level.very_strong</source>
49+
<target>Bardzo silne</target>
50+
</trans-unit>
51+
52+
<!-- Tip translations -->
53+
<trans-unit id="12">
54+
<source>rollerworks_password.tip.letters</source>
55+
<target>dodać (małe/duże) litery</target>
56+
</trans-unit>
57+
<trans-unit id="13">
58+
<source>rollerworks_password.tip.numbers</source>
59+
<target>dodać cyfry</target>
60+
</trans-unit>
61+
<trans-unit id="14">
62+
<source>rollerworks_password.tip.lowercase_letters</source>
63+
<target>dodać małe litery</target>
64+
</trans-unit>
65+
<trans-unit id="15">
66+
<source>rollerworks_password.tip.uppercase_letters</source>
67+
<target>dodać duże litery</target>
68+
</trans-unit>
69+
<trans-unit id="16">
70+
<source>rollerworks_password.tip.special_chars</source>
71+
<target>dodać znaki specjalne</target>
72+
</trans-unit>
73+
<trans-unit id="17">
74+
<source>rollerworks_password.tip.length</source>
75+
<target>dodać więcej znaków</target>
76+
</trans-unit>
77+
78+
<!-- P0wnedPasswordValidator -->
79+
<trans-unit id="18">
80+
<source>This password was found in a database of compromised passwords. It has been used {{ used }} times. For security purposes you must use something else.</source>
81+
<target>To hasło zostało znalezione w bazie skompromitowanych haseł. Zostało użyte {{ used }} razy. Ze względów bezpieczeństwa musisz użyć innego hasła.</target>
82+
</trans-unit>
83+
</body>
84+
</file>
85+
</xliff>

0 commit comments

Comments
 (0)