Skip to content

Commit 173998d

Browse files
authored
Add files via upload
1 parent 80916ea commit 173998d

8 files changed

Lines changed: 6368 additions & 0 deletions

File tree

faq/extending.po

Lines changed: 443 additions & 0 deletions
Large diffs are not rendered by default.

faq/general.po

Lines changed: 701 additions & 0 deletions
Large diffs are not rendered by default.

faq/gui.po

Lines changed: 120 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,120 @@
1+
# SOME DESCRIPTIVE TITLE.
2+
# Copyright (C) 2001-2025, Python Software Foundation
3+
# This file is distributed under the same license as the Python package.
4+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
5+
#
6+
#, fuzzy
7+
msgid ""
8+
msgstr ""
9+
"Project-Id-Version: Python 3.13\n"
10+
"Report-Msgid-Bugs-To: \n"
11+
"POT-Creation-Date: 2025-03-04 13:08+0200\n"
12+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14+
"Language: ro\n"
15+
"Language-Team: ro <LL@li.org>\n"
16+
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100"
17+
" < 20)) ? 1 : 2);\n"
18+
"MIME-Version: 1.0\n"
19+
"Content-Type: text/plain; charset=utf-8\n"
20+
"Content-Transfer-Encoding: 8bit\n"
21+
"Generated-By: Babel 2.17.0\n"
22+
23+
#: ../../faq/gui.rst:5
24+
msgid "Graphic User Interface FAQ"
25+
msgstr ""
26+
27+
#: ../../faq/gui.rst:8
28+
msgid "Contents"
29+
msgstr ""
30+
31+
#: ../../faq/gui.rst:15
32+
msgid "General GUI Questions"
33+
msgstr ""
34+
35+
#: ../../faq/gui.rst:18
36+
msgid "What GUI toolkits exist for Python?"
37+
msgstr ""
38+
39+
#: ../../faq/gui.rst:20
40+
msgid ""
41+
"Standard builds of Python include an object-oriented interface to the "
42+
"Tcl/Tk widget set, called :ref:`tkinter <Tkinter>`. This is probably the"
43+
" easiest to install (since it comes included with most `binary "
44+
"distributions <https://www.python.org/downloads/>`_ of Python) and use. "
45+
"For more info about Tk, including pointers to the source, see the `Tcl/Tk"
46+
" home page <https://www.tcl.tk>`_. Tcl/Tk is fully portable to the "
47+
"macOS, Windows, and Unix platforms."
48+
msgstr ""
49+
50+
#: ../../faq/gui.rst:28
51+
msgid ""
52+
"Depending on what platform(s) you are aiming at, there are also several "
53+
"alternatives. A `list of cross-platform "
54+
"<https://wiki.python.org/moin/GuiProgramming#Cross-Platform_Frameworks>`_"
55+
" and `platform-specific <https://wiki.python.org/moin/GuiProgramming"
56+
"#Platform-specific_Frameworks>`_ GUI frameworks can be found on the "
57+
"python wiki."
58+
msgstr ""
59+
60+
#: ../../faq/gui.rst:36
61+
msgid "Tkinter questions"
62+
msgstr ""
63+
64+
#: ../../faq/gui.rst:39
65+
msgid "How do I freeze Tkinter applications?"
66+
msgstr ""
67+
68+
#: ../../faq/gui.rst:41
69+
msgid ""
70+
"Freeze is a tool to create stand-alone applications. When freezing "
71+
"Tkinter applications, the applications will not be truly stand-alone, as "
72+
"the application will still need the Tcl and Tk libraries."
73+
msgstr ""
74+
75+
#: ../../faq/gui.rst:45
76+
msgid ""
77+
"One solution is to ship the application with the Tcl and Tk libraries, "
78+
"and point to them at run-time using the :envvar:`!TCL_LIBRARY` and "
79+
":envvar:`!TK_LIBRARY` environment variables."
80+
msgstr ""
81+
82+
#: ../../faq/gui.rst:49
83+
msgid ""
84+
"Various third-party freeze libraries such as py2exe and cx_Freeze have "
85+
"handling for Tkinter applications built-in."
86+
msgstr ""
87+
88+
#: ../../faq/gui.rst:54
89+
msgid "Can I have Tk events handled while waiting for I/O?"
90+
msgstr ""
91+
92+
#: ../../faq/gui.rst:56
93+
msgid ""
94+
"On platforms other than Windows, yes, and you don't even need threads! "
95+
"But you'll have to restructure your I/O code a bit. Tk has the "
96+
"equivalent of Xt's :c:func:`!XtAddInput` call, which allows you to "
97+
"register a callback function which will be called from the Tk mainloop "
98+
"when I/O is possible on a file descriptor. See :ref:`tkinter-file-"
99+
"handlers`."
100+
msgstr ""
101+
102+
#: ../../faq/gui.rst:64
103+
msgid "I can't get key bindings to work in Tkinter: why?"
104+
msgstr ""
105+
106+
#: ../../faq/gui.rst:66
107+
msgid ""
108+
"An often-heard complaint is that event handlers :ref:`bound <bindings-"
109+
"and-events>` to events with the :meth:`!bind` method don't get handled "
110+
"even when the appropriate key is pressed."
111+
msgstr ""
112+
113+
#: ../../faq/gui.rst:70
114+
msgid ""
115+
"The most common cause is that the widget to which the binding applies "
116+
"doesn't have \"keyboard focus\". Check out the Tk documentation for the "
117+
"focus command. Usually a widget is given the keyboard focus by clicking "
118+
"in it (but not for labels; see the takefocus option)."
119+
msgstr ""
120+

faq/index.po

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
# SOME DESCRIPTIVE TITLE.
2+
# Copyright (C) 2001-2025, Python Software Foundation
3+
# This file is distributed under the same license as the Python package.
4+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
5+
#
6+
#, fuzzy
7+
msgid ""
8+
msgstr ""
9+
"Project-Id-Version: Python 3.13\n"
10+
"Report-Msgid-Bugs-To: \n"
11+
"POT-Creation-Date: 2025-03-04 13:08+0200\n"
12+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14+
"Language: ro\n"
15+
"Language-Team: ro <LL@li.org>\n"
16+
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100"
17+
" < 20)) ? 1 : 2);\n"
18+
"MIME-Version: 1.0\n"
19+
"Content-Type: text/plain; charset=utf-8\n"
20+
"Content-Transfer-Encoding: 8bit\n"
21+
"Generated-By: Babel 2.17.0\n"
22+
23+
#: ../../faq/index.rst:5
24+
msgid "Python Frequently Asked Questions"
25+
msgstr ""
26+

faq/installed.po

Lines changed: 115 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
# SOME DESCRIPTIVE TITLE.
2+
# Copyright (C) 2001-2025, Python Software Foundation
3+
# This file is distributed under the same license as the Python package.
4+
# FIRST AUTHOR <EMAIL@ADDRESS>, 2025.
5+
#
6+
#, fuzzy
7+
msgid ""
8+
msgstr ""
9+
"Project-Id-Version: Python 3.13\n"
10+
"Report-Msgid-Bugs-To: \n"
11+
"POT-Creation-Date: 2025-03-04 13:08+0200\n"
12+
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
13+
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14+
"Language: ro\n"
15+
"Language-Team: ro <LL@li.org>\n"
16+
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : (n==0 || (n%100 > 0 && n%100"
17+
" < 20)) ? 1 : 2);\n"
18+
"MIME-Version: 1.0\n"
19+
"Content-Type: text/plain; charset=utf-8\n"
20+
"Content-Transfer-Encoding: 8bit\n"
21+
"Generated-By: Babel 2.17.0\n"
22+
23+
#: ../../faq/installed.rst:3
24+
msgid "\"Why is Python Installed on my Computer?\" FAQ"
25+
msgstr ""
26+
27+
#: ../../faq/installed.rst:6
28+
msgid "What is Python?"
29+
msgstr ""
30+
31+
#: ../../faq/installed.rst:8
32+
msgid ""
33+
"Python is a programming language. It's used for many different "
34+
"applications. It's used in some high schools and colleges as an "
35+
"introductory programming language because Python is easy to learn, but "
36+
"it's also used by professional software developers at places such as "
37+
"Google, NASA, and Lucasfilm Ltd."
38+
msgstr ""
39+
40+
#: ../../faq/installed.rst:13
41+
msgid ""
42+
"If you wish to learn more about Python, start with the `Beginner's Guide "
43+
"to Python <https://wiki.python.org/moin/BeginnersGuide>`_."
44+
msgstr ""
45+
46+
#: ../../faq/installed.rst:18
47+
msgid "Why is Python installed on my machine?"
48+
msgstr ""
49+
50+
#: ../../faq/installed.rst:20
51+
msgid ""
52+
"If you find Python installed on your system but don't remember installing"
53+
" it, there are several possible ways it could have gotten there."
54+
msgstr ""
55+
56+
#: ../../faq/installed.rst:23
57+
msgid ""
58+
"Perhaps another user on the computer wanted to learn programming and "
59+
"installed it; you'll have to figure out who's been using the machine and "
60+
"might have installed it."
61+
msgstr ""
62+
63+
#: ../../faq/installed.rst:26
64+
msgid ""
65+
"A third-party application installed on the machine might have been "
66+
"written in Python and included a Python installation. There are many "
67+
"such applications, from GUI programs to network servers and "
68+
"administrative scripts."
69+
msgstr ""
70+
71+
#: ../../faq/installed.rst:29
72+
msgid ""
73+
"Some Windows machines also have Python installed. At this writing we're "
74+
"aware of computers from Hewlett-Packard and Compaq that include Python. "
75+
"Apparently some of HP/Compaq's administrative tools are written in "
76+
"Python."
77+
msgstr ""
78+
79+
#: ../../faq/installed.rst:32
80+
msgid ""
81+
"Many Unix-compatible operating systems, such as macOS and some Linux "
82+
"distributions, have Python installed by default; it's included in the "
83+
"base installation."
84+
msgstr ""
85+
86+
#: ../../faq/installed.rst:38
87+
msgid "Can I delete Python?"
88+
msgstr ""
89+
90+
#: ../../faq/installed.rst:40
91+
msgid "That depends on where Python came from."
92+
msgstr ""
93+
94+
#: ../../faq/installed.rst:42
95+
msgid ""
96+
"If someone installed it deliberately, you can remove it without hurting "
97+
"anything. On Windows, use the Add/Remove Programs icon in the Control "
98+
"Panel."
99+
msgstr ""
100+
101+
#: ../../faq/installed.rst:45
102+
msgid ""
103+
"If Python was installed by a third-party application, you can also remove"
104+
" it, but that application will no longer work. You should use that "
105+
"application's uninstaller rather than removing Python directly."
106+
msgstr ""
107+
108+
#: ../../faq/installed.rst:49
109+
msgid ""
110+
"If Python came with your operating system, removing it is not "
111+
"recommended. If you remove it, whatever tools were written in Python "
112+
"will no longer run, and some of them might be important to you. "
113+
"Reinstalling the whole system would then be required to fix things again."
114+
msgstr ""
115+

0 commit comments

Comments
 (0)