Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Commit 7831f98

Browse filesBrowse files
author
GitHub Action's update-translation job
committed
Update translation from Transifex
1 parent b823635 commit 7831f98
Copy full SHA for 7831f98

File tree

Expand file treeCollapse file tree

228 files changed

+4512
-222
lines changed
Filter options

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.
Dismiss banner
Expand file treeCollapse file tree

228 files changed

+4512
-222
lines changed

‎about.po

Copy file name to clipboardExpand all lines: about.po
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-10-13 15:17+0000\n"
14+
"POT-Creation-Date: 2023-11-24 18:59+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

‎bugs.po

Copy file name to clipboardExpand all lines: bugs.po
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-10-13 15:17+0000\n"
14+
"POT-Creation-Date: 2023-11-24 18:59+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

‎c-api/abstract.po

Copy file name to clipboardExpand all lines: c-api/abstract.po
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-10-27 15:54+0000\n"
14+
"POT-Creation-Date: 2023-12-08 18:45+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2022\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

‎c-api/allocation.po

Copy file name to clipboard
+91Lines changed: 91 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,91 @@
1+
# SOME DESCRIPTIVE TITLE.
2+
# Copyright (C) 2001-2023, Python Software Foundation
3+
# This file is distributed under the same license as the Python package.
4+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5+
#
6+
# Translators:
7+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2023
8+
#
9+
#, fuzzy
10+
msgid ""
11+
msgstr ""
12+
"Project-Id-Version: Python 3.10\n"
13+
"Report-Msgid-Bugs-To: \n"
14+
"POT-Creation-Date: 2023-11-24 18:59+0000\n"
15+
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
16+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
17+
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
18+
"MIME-Version: 1.0\n"
19+
"Content-Type: text/plain; charset=UTF-8\n"
20+
"Content-Transfer-Encoding: 8bit\n"
21+
"Language: pl\n"
22+
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && "
23+
"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && "
24+
"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
25+
26+
msgid "Allocating Objects on the Heap"
27+
msgstr "Przydzielanie obiektów na stercie"
28+
29+
msgid ""
30+
"Initialize a newly allocated object *op* with its type and initial "
31+
"reference. Returns the initialized object. If *type* indicates that the "
32+
"object participates in the cyclic garbage detector, it is added to the "
33+
"detector's set of observed objects. Other fields of the object are not "
34+
"affected."
35+
msgstr ""
36+
"Inicjalizacja nowo przydzielonego obiektu o nazwie *op*, określa jego typ "
37+
"oraz początkowe odniesienie. Funkcja zwraca zainicjowany obiekt. Jeżeli "
38+
"wartość *type* wskazuje, że obiekt bierze udział w detekcji cyklicznych "
39+
"zbędnych danych \"garbage detector\", to zostaje on dodany do zbioru "
40+
"obiektów obserwowanych przez detektor. Pozostałe pola obiektu pozostają "
41+
"niezmienione."
42+
43+
msgid ""
44+
"This does everything :c:func:`PyObject_Init` does, and also initializes the "
45+
"length information for a variable-size object."
46+
msgstr ""
47+
"To wszystko, czym zajmie się funkcja :c:func:`PyObject_Init`, a ponadto "
48+
"zainicjuje informacje o długości dla obiektu o zmiennym rozmiarze."
49+
50+
msgid ""
51+
"Allocate a new Python object using the C structure type *TYPE* and the "
52+
"Python type object *type*. Fields not defined by the Python object header "
53+
"are not initialized. The caller will own the only reference to the object (i."
54+
"e. its reference count will be one). The size of the memory allocation is "
55+
"determined from the :c:member:`~PyTypeObject.tp_basicsize` field of the type "
56+
"object."
57+
msgstr ""
58+
59+
msgid ""
60+
"Allocate a new Python object using the C structure type *TYPE* and the "
61+
"Python type object *type*. Fields not defined by the Python object header "
62+
"are not initialized. The allocated memory allows for the *TYPE* structure "
63+
"plus *size* fields of the size given by the :c:member:`~PyTypeObject."
64+
"tp_itemsize` field of *type*. This is useful for implementing objects like "
65+
"tuples, which are able to determine their size at construction time. "
66+
"Embedding the array of fields into the same allocation decreases the number "
67+
"of allocations, improving the memory management efficiency."
68+
msgstr ""
69+
70+
msgid ""
71+
"Releases memory allocated to an object using :c:func:`PyObject_New` or :c:"
72+
"func:`PyObject_NewVar`. This is normally called from the :c:member:"
73+
"`~PyTypeObject.tp_dealloc` handler specified in the object's type. The "
74+
"fields of the object should not be accessed after this call as the memory is "
75+
"no longer a valid Python object."
76+
msgstr ""
77+
78+
msgid ""
79+
"Object which is visible in Python as ``None``. This should only be accessed "
80+
"using the :c:macro:`Py_None` macro, which evaluates to a pointer to this "
81+
"object."
82+
msgstr ""
83+
"Obiekt widoczny w Pythonie jako ``None``. Dostęp do tego należy uzyskać "
84+
"wyłącznie za pomocą makra :c:macro:`Py_None`, którego wartością jest "
85+
"wskaźnik do tego obiektu."
86+
87+
msgid ":c:func:`PyModule_Create`"
88+
msgstr ":c:func:`PyModule_Create`"
89+
90+
msgid "To allocate and create extension modules."
91+
msgstr "Przydzielanie i tworzenie modułów rozszerzeń."

‎c-api/apiabiversion.po

Copy file name to clipboardExpand all lines: c-api/apiabiversion.po
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-10-27 15:54+0000\n"
14+
"POT-Creation-Date: 2023-12-01 19:01+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

‎c-api/arg.po

Copy file name to clipboardExpand all lines: c-api/arg.po
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-10-27 15:54+0000\n"
14+
"POT-Creation-Date: 2023-12-01 19:01+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

‎c-api/buffer.po

Copy file name to clipboardExpand all lines: c-api/buffer.po
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-10-27 15:54+0000\n"
14+
"POT-Creation-Date: 2023-12-08 18:45+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2022\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

‎c-api/bytes.po

Copy file name to clipboardExpand all lines: c-api/bytes.po
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-10-27 15:54+0000\n"
14+
"POT-Creation-Date: 2023-12-08 18:45+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2022\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

‎c-api/call.po

Copy file name to clipboardExpand all lines: c-api/call.po
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-10-27 15:54+0000\n"
14+
"POT-Creation-Date: 2023-12-08 18:45+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2022\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

‎c-api/complex.po

Copy file name to clipboardExpand all lines: c-api/complex.po
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-10-27 15:54+0000\n"
14+
"POT-Creation-Date: 2023-12-08 18:45+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2022\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

‎c-api/concrete.po

Copy file name to clipboard
+72Lines changed: 72 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,72 @@
1+
# SOME DESCRIPTIVE TITLE.
2+
# Copyright (C) 2001-2023, Python Software Foundation
3+
# This file is distributed under the same license as the Python package.
4+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5+
#
6+
# Translators:
7+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2023
8+
#
9+
#, fuzzy
10+
msgid ""
11+
msgstr ""
12+
"Project-Id-Version: Python 3.10\n"
13+
"Report-Msgid-Bugs-To: \n"
14+
"POT-Creation-Date: 2023-11-24 18:59+0000\n"
15+
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
16+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
17+
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
18+
"MIME-Version: 1.0\n"
19+
"Content-Type: text/plain; charset=UTF-8\n"
20+
"Content-Transfer-Encoding: 8bit\n"
21+
"Language: pl\n"
22+
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && "
23+
"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && "
24+
"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
25+
26+
msgid "Concrete Objects Layer"
27+
msgstr ""
28+
29+
msgid ""
30+
"The functions in this chapter are specific to certain Python object types. "
31+
"Passing them an object of the wrong type is not a good idea; if you receive "
32+
"an object from a Python program and you are not sure that it has the right "
33+
"type, you must perform a type check first; for example, to check that an "
34+
"object is a dictionary, use :c:func:`PyDict_Check`. The chapter is "
35+
"structured like the \"family tree\" of Python object types."
36+
msgstr ""
37+
38+
msgid ""
39+
"While the functions described in this chapter carefully check the type of "
40+
"the objects which are passed in, many of them do not check for ``NULL`` "
41+
"being passed instead of a valid object. Allowing ``NULL`` to be passed in "
42+
"can cause memory access violations and immediate termination of the "
43+
"interpreter."
44+
msgstr ""
45+
46+
msgid "Fundamental Objects"
47+
msgstr ""
48+
49+
msgid ""
50+
"This section describes Python type objects and the singleton object ``None``."
51+
msgstr ""
52+
53+
msgid "Numeric Objects"
54+
msgstr ""
55+
56+
msgid "Sequence Objects"
57+
msgstr ""
58+
59+
msgid ""
60+
"Generic operations on sequence objects were discussed in the previous "
61+
"chapter; this section deals with the specific kinds of sequence objects that "
62+
"are intrinsic to the Python language."
63+
msgstr ""
64+
65+
msgid "Container Objects"
66+
msgstr ""
67+
68+
msgid "Function Objects"
69+
msgstr "Obiekty Funkcja"
70+
71+
msgid "Other Objects"
72+
msgstr ""

‎c-api/dict.po

Copy file name to clipboardExpand all lines: c-api/dict.po
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-11-03 15:16+0000\n"
14+
"POT-Creation-Date: 2023-12-08 18:45+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2022\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

‎c-api/exceptions.po

Copy file name to clipboardExpand all lines: c-api/exceptions.po
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-10-27 15:54+0000\n"
14+
"POT-Creation-Date: 2023-12-08 18:45+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2022\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

‎c-api/file.po

Copy file name to clipboardExpand all lines: c-api/file.po
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-10-27 15:54+0000\n"
14+
"POT-Creation-Date: 2023-12-08 18:45+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2022\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

‎c-api/function.po

Copy file name to clipboard
+114Lines changed: 114 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,114 @@
1+
# SOME DESCRIPTIVE TITLE.
2+
# Copyright (C) 2001-2023, Python Software Foundation
3+
# This file is distributed under the same license as the Python package.
4+
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
5+
#
6+
# Translators:
7+
# Rafael Fontenelle <rffontenelle@gmail.com>, 2023
8+
#
9+
#, fuzzy
10+
msgid ""
11+
msgstr ""
12+
"Project-Id-Version: Python 3.10\n"
13+
"Report-Msgid-Bugs-To: \n"
14+
"POT-Creation-Date: 2023-11-24 18:59+0000\n"
15+
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
16+
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2023\n"
17+
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"
18+
"MIME-Version: 1.0\n"
19+
"Content-Type: text/plain; charset=UTF-8\n"
20+
"Content-Transfer-Encoding: 8bit\n"
21+
"Language: pl\n"
22+
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && "
23+
"(n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && "
24+
"n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
25+
26+
msgid "Function Objects"
27+
msgstr "Obiekty Funkcja"
28+
29+
msgid "There are a few functions specific to Python functions."
30+
msgstr "Istnieje kilka funkcji specyficznych dla funkcji Pythona."
31+
32+
msgid "The C structure used for functions."
33+
msgstr "Struktura C używana dla funkcji."
34+
35+
msgid ""
36+
"This is an instance of :c:type:`PyTypeObject` and represents the Python "
37+
"function type. It is exposed to Python programmers as ``types."
38+
"FunctionType``."
39+
msgstr ""
40+
41+
msgid ""
42+
"Return true if *o* is a function object (has type :c:data:"
43+
"`PyFunction_Type`). The parameter must not be ``NULL``. This function "
44+
"always succeeds."
45+
msgstr ""
46+
47+
msgid ""
48+
"Return a new function object associated with the code object *code*. "
49+
"*globals* must be a dictionary with the global variables accessible to the "
50+
"function."
51+
msgstr ""
52+
53+
msgid ""
54+
"The function's docstring and name are retrieved from the code object. "
55+
"*__module__* is retrieved from *globals*. The argument defaults, annotations "
56+
"and closure are set to ``NULL``. *__qualname__* is set to the same value as "
57+
"the function's name."
58+
msgstr ""
59+
60+
msgid ""
61+
"As :c:func:`PyFunction_New`, but also allows setting the function object's "
62+
"``__qualname__`` attribute. *qualname* should be a unicode object or "
63+
"``NULL``; if ``NULL``, the ``__qualname__`` attribute is set to the same "
64+
"value as its ``__name__`` attribute."
65+
msgstr ""
66+
67+
msgid "Return the code object associated with the function object *op*."
68+
msgstr ""
69+
70+
msgid "Return the globals dictionary associated with the function object *op*."
71+
msgstr ""
72+
73+
msgid ""
74+
"Return a :term:`borrowed reference` to the *__module__* attribute of the "
75+
"function object *op*. It can be *NULL*."
76+
msgstr ""
77+
78+
msgid ""
79+
"This is normally a string containing the module name, but can be set to any "
80+
"other object by Python code."
81+
msgstr ""
82+
83+
msgid ""
84+
"Return the argument default values of the function object *op*. This can be "
85+
"a tuple of arguments or ``NULL``."
86+
msgstr ""
87+
88+
msgid ""
89+
"Set the argument default values for the function object *op*. *defaults* "
90+
"must be ``Py_None`` or a tuple."
91+
msgstr ""
92+
93+
msgid "Raises :exc:`SystemError` and returns ``-1`` on failure."
94+
msgstr ""
95+
96+
msgid ""
97+
"Return the closure associated with the function object *op*. This can be "
98+
"``NULL`` or a tuple of cell objects."
99+
msgstr ""
100+
101+
msgid ""
102+
"Set the closure associated with the function object *op*. *closure* must be "
103+
"``Py_None`` or a tuple of cell objects."
104+
msgstr ""
105+
106+
msgid ""
107+
"Return the annotations of the function object *op*. This can be a mutable "
108+
"dictionary or ``NULL``."
109+
msgstr ""
110+
111+
msgid ""
112+
"Set the annotations for the function object *op*. *annotations* must be a "
113+
"dictionary or ``Py_None``."
114+
msgstr ""

‎c-api/intro.po

Copy file name to clipboardExpand all lines: c-api/intro.po
+1-1Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ msgid ""
1111
msgstr ""
1212
"Project-Id-Version: Python 3.10\n"
1313
"Report-Msgid-Bugs-To: \n"
14-
"POT-Creation-Date: 2023-10-27 15:54+0000\n"
14+
"POT-Creation-Date: 2023-12-08 18:45+0000\n"
1515
"PO-Revision-Date: 2022-11-05 17:21+0000\n"
1616
"Last-Translator: Rafael Fontenelle <rffontenelle@gmail.com>, 2022\n"
1717
"Language-Team: Polish (https://app.transifex.com/python-doc/teams/5390/pl/)\n"

0 commit comments

Comments
0 (0)
Morty Proxy This is a proxified and sanitized view of the page, visit original site.