# Python Documentation Turkish Translation
# Copyright (C) 2001-2024, Python Software Foundation
# This file is distributed under the same license as the Python package.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.12\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2024-11-01 00:21+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: \n"
"Language-Team: TURKISH \n"
"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: library/cgi.rst:2
msgid ":mod:`cgi` --- Common Gateway Interface support"
msgstr ""
#: library/cgi.rst:8
msgid "**Source code:** :source:`Lib/cgi.py`"
msgstr ""
#: library/cgi.rst:18
msgid ""
"The :mod:`cgi` module is deprecated (see :pep:`PEP 594 ` for "
"details and alternatives)."
msgstr ""
#: library/cgi.rst:22
msgid ""
"The :class:`FieldStorage` class can typically be replaced with :func:`urllib."
"parse.parse_qsl` for ``GET`` and ``HEAD`` requests, and the :mod:`email."
"message` module or :pypi:`multipart` for ``POST`` and ``PUT``. Most :ref:"
"`utility functions ` have replacements."
msgstr ""
#: library/cgi.rst:30
msgid "Support module for Common Gateway Interface (CGI) scripts."
msgstr ""
#: library/cgi.rst:32
msgid ""
"This module defines a number of utilities for use by CGI scripts written in "
"Python."
msgstr ""
#: library/cgi.rst:35
msgid ""
"The global variable ``maxlen`` can be set to an integer indicating the "
"maximum size of a POST request. POST requests larger than this size will "
"result in a :exc:`ValueError` being raised during parsing. The default value "
"of this variable is ``0``, meaning the request size is unlimited."
msgstr ""
#: includes/wasm-notavail.rst:3
msgid "Availability"
msgstr ""
#: includes/wasm-notavail.rst:5
msgid ""
"This module does not work or is not available on WebAssembly platforms "
"``wasm32-emscripten`` and ``wasm32-wasi``. See :ref:`wasm-availability` for "
"more information."
msgstr ""
#: library/cgi.rst:43
msgid "Introduction"
msgstr ""
#: library/cgi.rst:47
msgid ""
"A CGI script is invoked by an HTTP server, usually to process user input "
"submitted through an HTML ``