-
-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathfnmatch.po
More file actions
118 lines (95 loc) · 3.16 KB
/
fnmatch.po
File metadata and controls
118 lines (95 loc) · 3.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2001-2021, Python Software Foundation
# This file is distributed under the same license as the Python package.
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
#
# Translators:
# Maciej Olko <maciej.olko@gmail.com>, 2020
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.9\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-01-01 05:02+0000\n"
"PO-Revision-Date: 2017-02-16 23:10+0000\n"
"Last-Translator: Maciej Olko <maciej.olko@gmail.com>, 2020\n"
"Language-Team: Polish (https://www.transifex.com/python-doc/teams/5390/pl/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: pl\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && "
"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && "
"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
msgid ":mod:`fnmatch` --- Unix filename pattern matching"
msgstr ""
msgid "**Source code:** :source:`Lib/fnmatch.py`"
msgstr ""
msgid ""
"This module provides support for Unix shell-style wildcards, which are *not* "
"the same as regular expressions (which are documented in the :mod:`re` "
"module). The special characters used in shell-style wildcards are:"
msgstr ""
msgid "Pattern"
msgstr ""
msgid "Meaning"
msgstr "Znaczenie"
msgid "``*``"
msgstr ""
msgid "matches everything"
msgstr ""
msgid "``?``"
msgstr ""
msgid "matches any single character"
msgstr ""
msgid "``[seq]``"
msgstr ""
msgid "matches any character in *seq*"
msgstr ""
msgid "``[!seq]``"
msgstr ""
msgid "matches any character not in *seq*"
msgstr ""
msgid ""
"For a literal match, wrap the meta-characters in brackets. For example, "
"``'[?]'`` matches the character ``'?'``."
msgstr ""
msgid ""
"Note that the filename separator (``'/'`` on Unix) is *not* special to this "
"module. See module :mod:`glob` for pathname expansion (:mod:`glob` uses :"
"func:`.filter` to match pathname segments). Similarly, filenames starting "
"with a period are not special for this module, and are matched by the ``*`` "
"and ``?`` patterns."
msgstr ""
msgid ""
"Test whether the *filename* string matches the *pattern* string, returning :"
"const:`True` or :const:`False`. Both parameters are case-normalized using :"
"func:`os.path.normcase`. :func:`fnmatchcase` can be used to perform a case-"
"sensitive comparison, regardless of whether that's standard for the "
"operating system."
msgstr ""
msgid ""
"This example will print all file names in the current directory with the "
"extension ``.txt``::"
msgstr ""
msgid ""
"Test whether *filename* matches *pattern*, returning :const:`True` or :const:"
"`False`; the comparison is case-sensitive and does not apply :func:`os.path."
"normcase`."
msgstr ""
msgid ""
"Construct a list from those elements of the iterable *names* that match "
"*pattern*. It is the same as ``[n for n in names if fnmatch(n, pattern)]``, "
"but implemented more efficiently."
msgstr ""
msgid ""
"Return the shell-style *pattern* converted to a regular expression for using "
"with :func:`re.match`."
msgstr ""
msgid "Example:"
msgstr ""
msgid "Module :mod:`glob`"
msgstr ""
msgid "Unix shell-style path expansion."
msgstr ""