8000 Merge branch '3.7' of https://github.com/PyCampES/python-docs-es into… · ivanfranco502/python-docs-es@406e5af · GitHub
[go: up one dir, main page]

Skip to content

Commit 406e5af

Browse files
committed
Merge branch '3.7' of https://github.com/PyCampES/python-docs-es into claudia_dev_py37
2 parents 00eaa51 + 2cfd151 commit 406e5af

File tree

7 files changed

+363
-6
lines changed
  • tutorial
  • 7 files changed

    +363
    -6
    lines changed
    File renamed without changes.

    .overrides/README.rst

    Lines changed: 11 additions & 0 deletions
    Original file line numberDiff line numberDiff line change
    @@ -0,0 +1,11 @@
    1+
    Overrides
    2+
    =========
    3+
    4+
    This directory is recursively copied into `cpython/Doc`.
    5+
    It needs to have the same structure than `cpython/Doc`.
    6+
    7+
    It allows us
    8+
    9+
    - to have our own `CONTRIBUTING.rst` guide
    10+
    - change the index sidebar with links that are interesting for translators
    11+
    - etc
    Lines changed: 13 additions & 0 deletions
    Original file line numberDiff line numberDiff line change
    @@ -0,0 +1,13 @@
    1+
    {%- if show_source and has_source and sourcename %}
    2+
    <div role="note" aria-label="source link">
    3+
    <h3>{{ _('This Page') }}</h3>
    4+
    <ul class="this-page-menu">
    5+
    <li><a href="{{ pathto('bugs') }}">{% trans %}Report a Bug{% endtrans %}</a></li>
    6+
    <li>
    7+
    <a href="https://github.com/PyCampES/python-docs-es/blob/{{ version }}/{{ sourcename|replace('.rst.txt', '.po') }}"
    8+
    rel="nofollow">{{ _('Show Source') }}
    9+
    </a>
    10+
    </li>
    11+
    </ul>
    12+
    </div>
    13+
    {%- endif %}
    Lines changed: 11 additions & 0 deletions
    Original file line numberDiff line numberDiff line change
    @@ -0,0 +1,11 @@
    1+
    <h3>¡Ayúdanos a traducir!</h3>
    2+
    <ul>
    3+
    <li><a href="CONTRIBUTING.html">Guía para contribuir</a></li>
    4+
    </ul>
    5+
    6+
    <h3>Recursos</h3>
    7+
    <ul>
    8+
    <li><a href="https://mail.python.org/mailman3/lists/docs-es.python.org/">Lista de correos</a></li>
    9+
    <li><a href="https://t.me/python_docs_es">Canal de Télegram</a></li>
    10+
    <li><a href="https://github.com/PyCampES/python-docs-es">Repositorio GitHub</a></li>
    11+
    </ul>

    conf.py

    Lines changed: 16 additions & 1 deletion
    Original file line numberDiff line numberDiff line change
    @@ -33,7 +33,22 @@
    3333

    3434
    os.system('mkdir -p cpython/locales/es/')
    3535
    os.system('ln -nfs `pwd` cpython/locales/es/LC_MESSAGES')
    36-
    os.system('ln -nfs `pwd`/CONTRIBUTING.rst cpython/Doc/CONTRIBUTING.rst')
    36+
    37+
    38+
    # Override all the files from ``.overrides`` directory
    39+
    import glob
    40+
    for root, dirs, files in os.walk('.overrides'):
    41+
    for fname in files:
    42+
    if fname == 'README.rst' and root == '.overrides':
    43+
    continue
    44+
    destroot = root.replace('.overrides', '').lstrip('/')
    45+
    outputdir = os.path.join(
    46+
    'cpython',
    47+
    'Doc',
    48+
    destroot,
    49+
    fname,
    50+
    )
    51+
    os.system(f'ln -nfs `pwd`/{root}/{fname} {outputdir}')
    3752

    3853
    gettext_compact = False
    3954
    locale_dirs = ['../locales', 'cpython/locales'] # relative to the sourcedir

    sphinx.po

    Lines changed: 296 additions & 0 deletions
    Original file line numberDiff line numberDiff line change
    @@ -0,0 +1,296 @@
    1+
    # Copyright (C) 2001-2020, Python Software Foundation
    2+
    # This file is distributed under the same license as the Python package.
    3+
    # Maintained by the python-doc-es workteam.
    4+
    # docs-es@python.org / https://mail.python.org/mailman3/lists/docs-es.python.org/
    5+
    # Check https://github.com/PyCampES/python-docs-es/blob/3.7/TRANSLATORS to get the list of volunteers
    6+
    #
    7+
    msgid ""
    8+
    msgstr ""
    9+
    "Project-Id-Version: Python 3.7\n"
    10+
    "Report-Msgid-Bugs-To: \n"
    11+
    "POT-Creation-Date: 2019-05-06 11:59-0400\n"
    12+
    "PO-Revision-Date: 2019-05-08 10:38-0400\n"
    13+
    "MIME-Version: 1.0\n"
    14+
    "Content-Type: text/plain; charset=UTF-8\n"
    15+
    "Content-Transfer-Encoding: 8bit\n"
    16+
    "Plural-Forms: nplurals=2; plural=(n != 1);\n"
    17+
    "Last-Translator: \n"
    18+
    "Language-Team: python-doc-es (https://mail.python.org/mailman3/lists/docs-es."
    19+
    "python.org) \n"
    20+
    "Language: es_ES\n"
    21+
    "X-Generator: Poedit 2.2.1\n"
    22+
    23+
    #: ../Doc/tools/templates/customsourcelink.html:3
    24+
    msgid "This Page"
    25+
    msgstr "Esta página"
    26+
    27+
    #: ../Doc/tools/templates/customsourcelink.html:5
    28+
    msgid "Report a Bug"
    29+
    msgstr "Reporta un Bug"
    30+
    31+
    #: ../Doc/tools/templates/customsourcelink.html:8
    32+
    msgid "Show Source"
    33+
    msgstr "Ver Fuente"
    34+
    35+
    #: ../Doc/tools/templates/dummy.html:6
    36+
    msgid "CPython implementation detail:"
    37+
    msgstr "Detalles de implementación de CPython:"
    38+
    39+
    #: ../Doc/tools/templates/dummy.html:7
    40+
    msgid ""
    41+
    "Deprecated since version {deprecated}, will be removed in version {removed}"
    42+
    msgstr ""
    43+
    "Obsoleto desde la versión {deprecated}, se eliminará en la versión {removed}"
    44+
    45+
    #: ../Doc/tools/templates/indexcontent.html:8
    46+
    msgid "Welcome! This is the documentation for Python %(release)s."
    47+
    msgstr "Bienvenida! Esta es la documentación de Python %(release)s."
    48+
    49+
    #: ../Doc/tools/templates/indexcontent.html:10
    50+
    msgid "Parts of the documentation:"
    51+
    msgstr "Áreas de la documentación:"
    52+
    53+
    #: ../Doc/tools/templates/indexcontent.html:13
    54+
    msgid "What's new in Python %(version)s?"
    55+
    msgstr "Qué hay de nuevo en Python %(version)s?"
    56+
    57+
    #: ../Doc/tools/templates/indexcontent.html:14
    58+
    msgid ""
    59+
    "or <a href=\"%(whatsnew_index)s\">all \"What's new\" documents</a> since 2.0"
    60+
    msgstr ""
    61+
    "o <a href=\"%(whatsnew_index)s\">todos los \"Qué hay de nuevo\"</a> desde 2.0"
    62+
    63+
    #: ../Doc/tools/templates/indexcontent.html:15
    64+
    msgid "Tutorial"
    65+
    msgstr "Tutorial"
    66+
    67+
    #: ../Doc/tools/templates/indexcontent.html:16
    68+
    msgid "start here"
    69+
    msgstr "empieza aquí"
    70+
    71+
    #: ../Doc/tools/templates/indexcontent.html:17
    72+
    msgid "Library Reference"
    73+
    msgstr ""
    74+
    75+
    #: ../Doc/tools/templates/indexcontent.html:18
    76+
    msgid "keep this under your pillow"
    77+
    msgstr ""
    78+
    79+
    #: ../Doc/tools/templates/indexcontent.html:19
    80+
    msgid "Language Reference"
    81+
    msgstr ""
    82+
    83+
    #: ../Doc/tools/templates/indexcontent.html:20
    84+
    msgid "describes syntax and language elements"
    85+
    msgstr ""
    86+
    87+
    #: ../Doc/tools/templates/indexcontent.html:21
    88+
    msgid "Python Setup and Usage"
    89+
    msgstr ""
    90+
    91+
    #: ../Doc/tools/templates/indexcontent.html:22
    92+
    msgid "how to use Python on different platforms"
    93+
    msgstr ""
    94+
    95+
    #: ../Doc/tools/templates/indexcontent.html:23
    96+
    msgid "Python HOWTOs"
    97+
    msgstr ""
    98+
    99+
    #: ../Doc/tools/templates/indexcontent.html:24
    100+
    msgid "in-depth documents on specific topics"
    101+
    msgstr ""
    102+
    103+
    #: ../Doc/tools/templates/indexcontent.html:26
    104+
    msgid "Installing Python Modules"
    105+
    msgstr ""
    106+
    107+
    #: ../Doc/tools/templates/indexcontent.html:27
    108+
    msgid "installing from the Python Package Index &amp; other sources"
    109+
    msgstr ""
    110+
    111+
    #: ../Doc/tools/templates/indexcontent.html:28
    112+
    msgid "Distributing Python Modules"
    113+
    msgstr ""
    114+
    115+
    #: ../Doc/tools/templates/indexcontent.html:29
    116+
    msgid "publishing modules for installation by others"
    117+
    msgstr ""
    118+
    119+
    #: ../Doc/tools/templates/indexcontent.html:30
    120+
    msgid "Extending and Embedding"
    121+
    msgstr ""
    122+
    123+
    #: ../Doc/tools/templates/indexcontent.html:31
    124+
    msgid "tutorial for C/C++ programmers"
    125+
    msgstr ""
    126+
    127+
    #: ../Doc/tools/templates/indexcontent.html:32
    128+
    msgid "Python/C API"
    129+
    msgstr ""
    130+
    131+
    #: ../Doc/tools/templates/indexcontent.html:33
    132+
    msgid "reference for C/C++ programmers"
    133+
    msgstr ""
    134+
    135+
    #: ../Doc/tools/templates/indexcontent.html:34
    136+
    msgid "FAQs"
    137+
    msgstr ""
    138+
    139+
    #: ../Doc/tools/templates/indexcontent.html:35
    140+
    msgid "frequently asked questions (with answers!)"
    141+
    msgstr ""
    142+
    143+
    #: ../Doc/tools/templates/indexcontent.html:39
    144+
    msgid "Indices and tables:"
    145+
    msgstr ""
    146+
    147+
    #: ../Doc/tools/templates/indexcontent.html:42
    148+
    msgid "Global Module Index"
    149+
    msgstr ""
    150+
    151+
    #: ../Doc/tools/templates/indexcontent.html:43
    152+
    msgid "quick access to all modules"
    153+
    msgstr ""
    154+
    155+
    #: ../Doc/tools/templates/indexcontent.html:44
    156+
    msgid "General Index"
    157+
    msgstr ""
    158+
    159+
    #: ../Doc/tools/templates/indexcontent.html:45
    160+
    msgid "all functions, classes, terms"
    161+
    msgstr ""
    162+
    163+
    #: ../Doc/tools/templates/indexcontent.html:46
    164+
    msgid "Glossary"
    165+
    msgstr ""
    166+
    167+
    #: ../Doc/tools/templates/indexcontent.html:47
    168+
    msgid "the most important terms explained"
    169+
    msgstr ""
    170+
    171+
    #: ../Doc/tools/templates/indexcontent.html:49
    172+
    msgid "Search page"
    173+
    msgstr ""
    174+
    175+
    #: ../Doc/tools/templates/indexcontent.html:50
    176+
    msgid "search this documentation"
    177+
    msgstr ""
    178+
    179+
    #: ../Doc/tools/templates/indexcontent.html:51
    180+
    msgid "Complete Table of Contents"
    181+
    msgstr ""
    182+
    183+
    #: ../Doc/tools/templates/indexcontent.html:52
    184+
    msgid "lists all sections and subsections"
    185+
    msgstr ""
    186+
    187+
    #: ../Doc/tools/templates/indexcontent.html:56
    188+
    msgid "Meta information:"
    189+
    msgstr ""
    190+
    191+
    #: ../Doc/tools/templates/indexcontent.html:59
    192+
    msgid "Reporting bugs"
    193+
    msgstr ""
    194+
    195+
    #: ../Doc/tools/templates/indexcontent.html:60
    196+
    msgid "About the documentation"
    197+
    msgstr ""
    198+
    199+
    #: ../Doc/tools/templates/indexcontent.html:62
    200+
    msgid "History and License of Python"
    201+
    msgstr ""
    202+
    203+
    #: ../Doc/tools/templates/indexcontent.html:63
    204+
    #: ../Doc/tools/templates/layout.html:116
    205+
    msgid "Copyright"
    206+
    msgstr ""
    207+
    208+
    #: ../Doc/tools/templates/indexsidebar.html:1
    209+
    msgid "Download"
    210+
    msgstr ""
    211+
    212+
    #: ../Doc/tools/templates/indexsidebar.html:2
    213+
    msgid "Download these documents"
    214+
    msgstr ""
    215+
    216+
    #: ../Doc/tools/templates/indexsidebar.html:3
    217+
    msgid "Docs by version"
    218+
    msgstr ""
    219+
    220+
    #: ../Doc/tools/templates/indexsidebar.html:5
    221+
    msgid "Python 3.8 (in development)"
    222+
    msgstr ""
    223+
    224+
    #: ../Doc/tools/templates/indexsidebar.html:6
    225+
    msgid "Python 3.7 (stable)"
    226+
    msgstr ""
    227+
    228+
    #: ../Doc/tools/templates/indexsidebar.html:7
    229+
    msgid "Python 3.6 (security-fixes)"
    230+
    msgstr ""
    231+
    232+
    #: ../Doc/tools/templates/indexsidebar.html:8
    233+
    msgid "Python 3.5 (security-fixes)"
    234+
    msgstr ""
    235+
    236+
    #: ../Doc/tools/templates/indexsidebar.html:9
    237+
    msgid "Python 2.7 (stable)"
    238+
    msgstr ""
    239+
    240+
    #: ../Doc/tools/templates/indexsidebar.html:10
    241+
    msgid "All versions"
    242+
    msgstr ""
    243+
    244+
    #: ../Doc/tools/templates/indexsidebar.html:13
    245+
    msgid "Other resources"
    246+
    msgstr ""
    247+
    248+
    #: ../Doc/tools/templates/indexsidebar.html:16
    249+
    msgid "PEP Index"
    250+
    msgstr ""
    251+
    252+
    #: ../Doc/tools/templates/indexsidebar.html:17
    253+
    msgid "Beginner's Guide"
    254+
    msgstr ""
    255+
    256+
    #: ../Doc/tools/templates/indexsidebar.html:18
    257+
    msgid "Book List"
    258+
    msgstr ""
    259+
    260+
    #: ../Doc/tools/templates/indexsidebar.html:19
    261+
    msgid "Audio/Visual Talks"
    262+
    msgstr ""
    263+
    264+
    #: ../Doc/tools/templates/layout.html:10
    265+
    msgid "Documentation "
    266+
    msgstr ""
    267+
    268+
    #: ../Doc/tools/templates/layout.html:21
    269+
    msgid "Quick search"
    270+
    msgstr ""
    271+
    272+
    #: ../Doc/tools/templates/layout.html:22
    273+
    msgid "Go"
    274+
    msgstr ""
    275+
    276+
    #: ../Doc/tools/templates/layout.html:118
    277+
    msgid "The Python Software Foundation is a non-profit corporation."
    278+
    msgstr ""
    279+
    280+
    #: ../Doc/tools/templates/layout.html:119
    281+
    msgid "Please donate."
    282+
    msgstr ""
    283+
    284+
    #: ../Doc/tools/templates/layout.html:121
    285+
    msgid "Last updated on %(last_updated)s."
    286+
    msgstr ""
    287+
    288+
    #: ../Doc/tools/templates/layout.html:122
    289+
    msgid "<a href=\"%(pathto_bugs)s\">Found a bug</a>?"
    290+
    msgstr ""
    291+
    292+
    #: ../Doc/tools/templates/layout.html:124
    293+
    msgid ""
    294+
    "Created using <a href=\"http://sphinx.pocoo.org/\">Sphinx</a> "
    295+
    "%(sphinx_version)s."
    296+
    msgstr ""

    0 commit comments

    Comments
     (0)
    0