|
1 | | -# SOME DESCRIPTIVE TITLE. |
| 1 | +# Persian translations for Python package. |
2 | 2 | # Copyright (C) 2001 Python Software Foundation |
3 | 3 | # This file is distributed under the same license as the Python package. |
4 | | -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. |
5 | | -# |
6 | | -# Translators: |
7 | | -# Alireza Shabani (Revisto) <theRevisto@gmail.com>, 2025 |
8 | | -# Sepehr Rasouli <sepehrrasouli06@gmail.com>, 2026 |
| 4 | +# Automatically generated, 2026. |
9 | 5 | # |
10 | 6 | msgid "" |
11 | 7 | msgstr "" |
12 | 8 | "Project-Id-Version: Python 3.14\n" |
13 | 9 | "Report-Msgid-Bugs-To: \n" |
14 | | -"POT-Creation-Date: 2026-09-16 12:56+0000\n" |
15 | | -"PO-Revision-Date: 2026-09-14 12:07+0330\n" |
16 | | -"Last-Translator: Sepehr Rasouli <sepehrrasouli06@gmail.com>, 2026\n" |
17 | | -"Language-Team: Persian (https://github.com/python/python-docs-fa/fa/)\n" |
| 10 | +"POT-Creation-Date: 2026-09-19 20:08+0330\n" |
| 11 | +"PO-Revision-Date: 2026-09-19 20:08+0330\n" |
| 12 | +"Last-Translator: Automatically generated\n" |
| 13 | +"Language-Team: none\n" |
18 | 14 | "Language: fa\n" |
19 | 15 | "MIME-Version: 1.0\n" |
20 | 16 | "Content-Type: text/plain; charset=UTF-8\n" |
21 | 17 | "Content-Transfer-Encoding: 8bit\n" |
22 | | -"Plural-Forms: nplurals=2; plural=(n > 1);\n" |
23 | | -"X-Generator: Poedit 3.6\n" |
24 | 18 |
|
25 | 19 | msgid "Built-in Exceptions" |
26 | 20 | msgstr "استثناهای توکار" |
@@ -700,142 +694,3 @@ msgstr "ماژول" |
700 | 694 |
|
701 | 695 | msgid "errno" |
702 | 696 | msgstr "errno" |
703 | | - |
704 | | -#~ msgid "" |
705 | | -#~ "BaseException\n" |
706 | | -#~ " ├── BaseExceptionGroup\n" |
707 | | -#~ " ├── GeneratorExit\n" |
708 | | -#~ " ├── KeyboardInterrupt\n" |
709 | | -#~ " ├── SystemExit\n" |
710 | | -#~ " └── Exception\n" |
711 | | -#~ " ├── ArithmeticError\n" |
712 | | -#~ " │ ├── FloatingPointError\n" |
713 | | -#~ " │ ├── OverflowError\n" |
714 | | -#~ " │ └── ZeroDivisionError\n" |
715 | | -#~ " ├── AssertionError\n" |
716 | | -#~ " ├── AttributeError\n" |
717 | | -#~ " ├── BufferError\n" |
718 | | -#~ " ├── EOFError\n" |
719 | | -#~ " ├── ExceptionGroup [BaseExceptionGroup]\n" |
720 | | -#~ " ├── ImportError\n" |
721 | | -#~ " │ └── ModuleNotFoundError\n" |
722 | | -#~ " ├── LookupError\n" |
723 | | -#~ " │ ├── IndexError\n" |
724 | | -#~ " │ └── KeyError\n" |
725 | | -#~ " ├── MemoryError\n" |
726 | | -#~ " ├── NameError\n" |
727 | | -#~ " │ └── UnboundLocalError\n" |
728 | | -#~ " ├── OSError\n" |
729 | | -#~ " │ ├── BlockingIOError\n" |
730 | | -#~ " │ ├── ChildProcessError\n" |
731 | | -#~ " │ ├── ConnectionError\n" |
732 | | -#~ " │ │ ├── BrokenPipeError\n" |
733 | | -#~ " │ │ ├── ConnectionAbortedError\n" |
734 | | -#~ " │ │ ├── ConnectionRefusedError\n" |
735 | | -#~ " │ │ └── ConnectionResetError\n" |
736 | | -#~ " │ ├── FileExistsError\n" |
737 | | -#~ " │ ├── FileNotFoundError\n" |
738 | | -#~ " │ ├── InterruptedError\n" |
739 | | -#~ " │ ├── IsADirectoryError\n" |
740 | | -#~ " │ ├── NotADirectoryError\n" |
741 | | -#~ " │ ├── PermissionError\n" |
742 | | -#~ " │ ├── ProcessLookupError\n" |
743 | | -#~ " │ └── TimeoutError\n" |
744 | | -#~ " ├── ReferenceError\n" |
745 | | -#~ " ├── RuntimeError\n" |
746 | | -#~ " │ ├── NotImplementedError\n" |
747 | | -#~ " │ ├── PythonFinalizationError\n" |
748 | | -#~ " │ └── RecursionError\n" |
749 | | -#~ " ├── StopAsyncIteration\n" |
750 | | -#~ " ├── StopIteration\n" |
751 | | -#~ " ├── SyntaxError\n" |
752 | | -#~ " │ └── IndentationError\n" |
753 | | -#~ " │ └── TabError\n" |
754 | | -#~ " ├── SystemError\n" |
755 | | -#~ " ├── TypeError\n" |
756 | | -#~ " ├── ValueError\n" |
757 | | -#~ " │ └── UnicodeError\n" |
758 | | -#~ " │ ├── UnicodeDecodeError\n" |
759 | | -#~ " │ ├── UnicodeEncodeError\n" |
760 | | -#~ " │ └── UnicodeTranslateError\n" |
761 | | -#~ " └── Warning\n" |
762 | | -#~ " ├── BytesWarning\n" |
763 | | -#~ " ├── DeprecationWarning\n" |
764 | | -#~ " ├── EncodingWarning\n" |
765 | | -#~ " ├── FutureWarning\n" |
766 | | -#~ " ├── ImportWarning\n" |
767 | | -#~ " ├── PendingDeprecationWarning\n" |
768 | | -#~ " ├── ResourceWarning\n" |
769 | | -#~ " ├── RuntimeWarning\n" |
770 | | -#~ " ├── SyntaxWarning\n" |
771 | | -#~ " ├── UnicodeWarning\n" |
772 | | -#~ " └── UserWarning\n" |
773 | | -#~ msgstr "" |
774 | | -#~ "BaseException\n" |
775 | | -#~ " ├── BaseExceptionGroup\n" |
776 | | -#~ " ├── GeneratorExit\n" |
777 | | -#~ " ├── KeyboardInterrupt\n" |
778 | | -#~ " ├── SystemExit\n" |
779 | | -#~ " └── Exception\n" |
780 | | -#~ " ├── ArithmeticError\n" |
781 | | -#~ " │ ├── FloatingPointError\n" |
782 | | -#~ " │ ├── OverflowError\n" |
783 | | -#~ " │ └── ZeroDivisionError\n" |
784 | | -#~ " ├── AssertionError\n" |
785 | | -#~ " ├── AttributeError\n" |
786 | | -#~ " ├── BufferError\n" |
787 | | -#~ " ├── EOFError\n" |
788 | | -#~ " ├── ExceptionGroup [BaseExceptionGroup]\n" |
789 | | -#~ " ├── ImportError\n" |
790 | | -#~ " │ └── ModuleNotFoundError\n" |
791 | | -#~ " ├── LookupError\n" |
792 | | -#~ " │ ├── IndexError\n" |
793 | | -#~ " │ └── KeyError\n" |
794 | | -#~ " ├── MemoryError\n" |
795 | | -#~ " ├── NameError\n" |
796 | | -#~ " │ └── UnboundLocalError\n" |
797 | | -#~ " ├── OSError\n" |
798 | | -#~ " │ ├── BlockingIOError\n" |
799 | | -#~ " │ ├── ChildProcessError\n" |
800 | | -#~ " │ ├── ConnectionError\n" |
801 | | -#~ " │ │ ├── BrokenPipeError\n" |
802 | | -#~ " │ │ ├── ConnectionAbortedError\n" |
803 | | -#~ " │ │ ├── ConnectionRefusedError\n" |
804 | | -#~ " │ │ └── ConnectionResetError\n" |
805 | | -#~ " │ ├── FileExistsError\n" |
806 | | -#~ " │ ├── FileNotFoundError\n" |
807 | | -#~ " │ ├── InterruptedError\n" |
808 | | -#~ " │ ├── IsADirectoryError\n" |
809 | | -#~ " │ ├── NotADirectoryError\n" |
810 | | -#~ " │ ├── PermissionError\n" |
811 | | -#~ " │ ├── ProcessLookupError\n" |
812 | | -#~ " │ └── TimeoutError\n" |
813 | | -#~ " ├── ReferenceError\n" |
814 | | -#~ " ├── RuntimeError\n" |
815 | | -#~ " │ ├── NotImplementedError\n" |
816 | | -#~ " │ ├── PythonFinalizationError\n" |
817 | | -#~ " │ └── RecursionError\n" |
818 | | -#~ " ├── StopAsyncIteration\n" |
819 | | -#~ " ├── StopIteration\n" |
820 | | -#~ " ├── SyntaxError\n" |
821 | | -#~ " │ └── IndentationError\n" |
822 | | -#~ " │ └── TabError\n" |
823 | | -#~ " ├── SystemError\n" |
824 | | -#~ " ├── TypeError\n" |
825 | | -#~ " ├── ValueError\n" |
826 | | -#~ " │ └── UnicodeError\n" |
827 | | -#~ " │ ├── UnicodeDecodeError\n" |
828 | | -#~ " │ ├── UnicodeEncodeError\n" |
829 | | -#~ " │ └── UnicodeTranslateError\n" |
830 | | -#~ " └── Warning\n" |
831 | | -#~ " ├── BytesWarning\n" |
832 | | -#~ " ├── DeprecationWarning\n" |
833 | | -#~ " ├── EncodingWarning\n" |
834 | | -#~ " ├── FutureWarning\n" |
835 | | -#~ " ├── ImportWarning\n" |
836 | | -#~ " ├── PendingDeprecationWarning\n" |
837 | | -#~ " ├── ResourceWarning\n" |
838 | | -#~ " ├── RuntimeWarning\n" |
839 | | -#~ " ├── SyntaxWarning\n" |
840 | | -#~ " ├── UnicodeWarning\n" |
841 | | -#~ " └── UserWarning\n" |
0 commit comments