[ Web Proxy ]
URL:
Viewing: https://raw.githubusercontent.com/python/python-docs-es/format_diff_update/library/calendar.po [Back]  [Original]

# Copyright (C) 2001-2020, Python Software Foundation
# This file is distributed under the same license as the Python package.
# Maintained by the python-doc-es workteam.
# docs-es@python.org /
# https://mail.python.org/mailman3/lists/docs-es.python.org/
# Check https://github.com/python/python-docs-es/blob/3.8/TRANSLATORS to get
# the list of volunteers
#
msgid ""
msgstr ""
"Project-Id-Version: Python 3.8\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-10-12 19:43+0200\n"
"PO-Revision-Date: 2023-10-16 01:42-0600\n"
"Last-Translator: Jos Luis Salgado Banda\n"
"Language-Team: python-doc-es\n"
"Language: es_ES\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
"Generated-By: Babel 2.13.0\n"
"X-Generator: Poedit 3.4\n"

#: ../Doc/library/calendar.rst:2
msgid ":mod:`calendar` --- General calendar-related functions"
msgstr ":mod:`calendar` --- Funciones generales relacionadas con el calendario"

#: ../Doc/library/calendar.rst:10
msgid "**Source code:** :source:`Lib/calendar.py`"
msgstr "**Cdigo fuente:** :source:`Lib/calendar.py`"

#: ../Doc/library/calendar.rst:14
msgid ""
"This module allows you to output calendars like the Unix :program:`cal` "
"program, and provides additional useful functions related to the calendar. "
"By default, these calendars have Monday as the first day of the week, and "
"Sunday as the last (the European convention). Use :func:`setfirstweekday` to "
"set the first day of the week to Sunday (6) or to any other weekday.  "
"Parameters that specify dates are given as integers. For related "
"functionality, see also the :mod:`datetime` and :mod:`time` modules."
msgstr ""
"Este mdulo te permite generar calendarios como el programa Unix :program:"
"`cal`, y proporciona funciones tiles adicionales relacionadas con el "
"calendario. Por defecto, estos calendarios tienen el lunes como el primer "
"da de la semana, y el domingo como el ltimo (la convencin europea). Use :"
"func:`setfirstweekday` para establecer el primer da de la semana en domingo "
"(6) o en cualquier otro da de la semana. Los parmetros que especifican "
"fechas se indican como enteros. Para la funcionalidad relacionada, consulta "
"tambin los mdulos :mod:`datetime` y :mod:`time`."

#: ../Doc/library/calendar.rst:22
msgid ""
"The functions and classes defined in this module use an idealized calendar, "
"the current Gregorian calendar extended indefinitely in both directions.  "
"This matches the definition of the \"proleptic Gregorian\" calendar in "
"Dershowitz and Reingold's book \"Calendrical Calculations\", where it's the "
"base calendar for all computations.  Zero and negative years are interpreted "
"as prescribed by the ISO 8601 standard.  Year 0 is 1 BC, year -1 is 2 BC, "
"and so on."
msgstr ""
"Las funciones y clases definidas en este mdulo utilizan un calendario "
"idealizado, el calendario gregoriano actual extendido indefinidamente en "
"ambas direcciones. Esto coincide con la definicin del calendario "
"\"Gregoriano prolptico\" en el libro \"Calendrical Calculations\" de "
"Dershowitz y Reingold, donde es el calendario base para todos los clculos. "
"Los aos cero y negativos se interpretan segn lo prescrito por la norma ISO "
"8601. El ao 0 es 1 A. C., el ao -1 es 2 a. C., y as sucesivamente."

#: ../Doc/library/calendar.rst:33
msgid ""
"Creates a :class:`Calendar` object. *firstweekday* is an integer specifying "
"the first day of the week. :const:`MONDAY` is ``0`` (the default), :const:"
"`SUNDAY` is ``6``."
msgstr ""
"Crea un objeto :class:`Calendar`. *firstweekday* es un entero que especifica "
"el primer da de la semana. :const:`MONDAY` es ``0`` (por defecto), :const:"
"`SUNDAY` es ``6``."

#: ../Doc/library/calendar.rst:36
msgid ""
"A :class:`Calendar` object provides several methods that can be used for "
"preparing the calendar data for formatting. This class doesn't do any "
"formatting itself. This is the job of subclasses."
msgstr ""
"Un objeto :class:`Calendar` proporciona varios mtodos que se pueden "
"utilizar para preparar los datos del calendario para dar formato. Esta clase "
"no hace ningn formato en s. Este es el trabajo de las subclases."

#: ../Doc/library/calendar.rst:41
msgid ":class:`Calendar` instances have the following methods:"
msgstr "Las instancias de :class:`Calendar` tienen los siguientes mtodos:"

#: ../Doc/library/calendar.rst:45
msgid ""
"Return an iterator for the week day numbers that will be used for one week.  "
"The first value from the iterator will be the same as the value of the :attr:"
"`firstweekday` property."
msgstr ""
"Retorna un iterador para los nmeros del da de la semana que se usar "
"durante una semana. El primer valor del iterador ser el mismo que el valor "
"de la propiedad :attr:`firstweekday`."

#: ../Doc/library/calendar.rst:52
msgid ""
"Return an iterator for the month *month* (1--12) in the year *year*. This "
"iterator will return all days (as :class:`datetime.date` objects) for the "
"month and all days before the start of the month or after the end of the "
"month that are required to get a complete week."
msgstr ""
"Retorna un iterador para el mes *month* (1--12) en el ao *year*. Este "
"iterador retornar todos los das (como objetos :class:`datetime.date`) para "
"el mes y todos los das antes del inicio del mes o despus del final del mes "
"que se requieren para obtener una semana completa."

#: ../Doc/library/calendar.rst:60
msgid ""
"Return an iterator for the month *month* in the year *year* similar to :meth:"
"`itermonthdates`, but not restricted by the :class:`datetime.date` range. "
"Days returned will simply be day of the month numbers.  For the days outside "
"of the specified month, the day number is ``0``."
msgstr ""
"Retorna un iterador para el mes *month* en el ao *year* similar a :meth:"
"`itermonthdates`, pero no restringido por el intervalo :class:`datetime."
"date`. Los das retornados sern simplemente el da de los nmeros del mes. "
"Para los das fuera del mes especificado, el nmero de da es ``0``."

#: ../Doc/library/calendar.rst:68
msgid ""
"Return an iterator for the month *month* in the year *year* similar to :meth:"
"`itermonthdates`, but not restricted by the :class:`datetime.date` range. "
"Days returned will be tuples consisting of a day of the month number and a "
"week day number."
msgstr ""
"Retorna un iterador para el mes *month* del ao *year* similar a :meth:"
"`itermonthdates`, pero no restringido por el rango :class:`datetime.date`. "
"Los das retornados sern tuplas que consisten en un nmero de da del mes y "
"un nmero de da de la semana."

#: ../Doc/library/calendar.rst:76
msgid ""
"Return an iterator for the month *month* in the year *year* similar to :meth:"
"`itermonthdates`, but not restricted by the :class:`datetime.date` range. "
"Days returned will be tuples consisting of a year, a month and a day of the "
"month numbers."
msgstr ""
"Retorna un iterador para el mes *month* del ao *year* similar a :meth:"
"`itermonthdates`, pero no restringido por el rango :class:`datetime.date`. "
"Los das retornados sern tuplas que consisten en un ao, un mes y un da "
"del mes."

#: ../Doc/library/calendar.rst:86
msgid ""
"Return an iterator for the month *month* in the year *year* similar to :meth:"
"`itermonthdates`, but not restricted by the :class:`datetime.date` range. "
"Days returned will be tuples consisting of a year, a month, a day of the "
"month, and a day of the week numbers."
msgstr ""
"Retorna un iterador para el mes *month* del ao *year* similar a :meth:"
"`itermonthdates`, pero no restringido por el rango :class:`datetime.date`. "
"Los das retornados sern tuplas que consisten en un ao, un mes, un da del "
"mes y un da de la semana."

#: ../Doc/library/calendar.rst:96
msgid ""
"Return a list of the weeks in the month *month* of the *year* as full "
"weeks.  Weeks are lists of seven :class:`datetime.date` objects."
msgstr ""
"Retorna una lista de las semanas del mes *month* del ao *year* como semanas "
"completas. Las semanas son listas de siete objetos :class:`datetime.date`."

#: ../Doc/library/calendar.rst:102
msgid ""
"Return a list of the weeks in the month *month* of the *year* as full "
"weeks.  Weeks are lists of seven tuples of day numbers and weekday numbers."
msgstr ""
"Retorna una lista de las semanas del mes *month* del ao *year* como semanas "
"completas. Las semanas son listas de siete tuplas de nmeros de das y "
"nmeros de das de la semana."

#: ../Doc/library/calendar.rst:109
msgid ""
"Return a list of the weeks in the month *month* of the *year* as full "
"weeks.  Weeks are lists of seven day numbers."
msgstr ""
"Retorna una lista de las semanas del mes *month* del ao *year* como semanas "
"completas. Las semanas son listas de nmeros de siete das."

#: ../Doc/library/calendar.rst:115
msgid ""
"Return the data for the specified year ready for formatting. The return "
"value is a list of month rows. Each month row contains up to *width* months "
"(defaulting to 3). Each month contains between 4 and 6 weeks and each week "
"contains 1--7 days. Days are :class:`datetime.date` objects."
msgstr ""
"Retorna los datos del ao especificado listos para ser formateados. El valor "
"de retorno es una lista de filas de mes. Cada fila de mes contiene hasta "
"*width* meses (por defecto hasta 3). Cada mes contiene entre 4 y 6 semanas y "
"cada semana contiene 1--7 das. Los das son objetos :class:`datetime.date`."

#: ../Doc/library/calendar.rst:123
msgid ""
"Return the data for the specified year ready for formatting (similar to :"
"meth:`yeardatescalendar`). Entries in the week lists are tuples of day "
"numbers and weekday numbers. Day numbers outside this month are zero."
msgstr ""
"Retorna los datos del ao especificado listos para ser formateados (similar "
"a :meth:`yeardatescalendar`). Las entradas en las listas de la semana son "
"tuplas de nmeros de das y nmeros de das de la semana. Los nmeros de los "
"das fuera de este mes son cero."

#: ../Doc/library/calendar.rst:130
msgid ""
"Return the data for the specified year ready for formatting (similar to :"
"meth:`yeardatescalendar`). Entries in the week lists are day numbers. Day "
"numbers outside this month are zero."
msgstr ""
"Retorna los datos del ao especificado listos para ser formateados (similar "
"a :meth:`yeardatescalendar`). Las entradas en las listas de la semana son "
"nmeros de da. Los nmeros de da fuera de este mes son cero."

#: ../Doc/library/calendar.rst:137
msgid "This class can be used to generate plain text calendars."
msgstr "Esta clase puede ser usada para generar calendarios de texto simple."

#: ../Doc/library/calendar.rst:139
msgid ":class:`TextCalendar` instances have the following methods:"
msgstr "Las instancias de :class:`TextCalendar` tienen los siguientes mtodos:"

#: ../Doc/library/calendar.rst:143
msgid ""
"Return a month's calendar in a multi-line string. If *w* is provided, it "
"specifies the width of the date columns, which are centered. If *l* is "
"given, it specifies the number of lines that each week will use. Depends on "
"the first weekday as specified in the constructor or set by the :meth:"
"`setfirstweekday` method."
msgstr ""
"Retorna el calendario de un mes en una cadena de varias lneas. Si se "
"proporciona *w*, especifica el ancho de las columnas de fecha, que estn "
"centradas. Si se proporciona *l*, especifica el nmero de lneas que se "
"utilizarn cada semana. Depende del primer da de la semana como se "
"especifica en el constructor o se establece por el mtodo :meth:"
"`setfirstweekday`."

#: ../Doc/library/calendar.rst:152
msgid "Print a month's calendar as returned by :meth:`formatmonth`."
msgstr "Imprime el calendario de un mes como lo retorna :meth:`formatmonth`."

#: ../Doc/library/calendar.rst:157
msgid ""
"Return a *m*-column calendar for an entire year as a multi-line string. "
"Optional parameters *w*, *l*, and *c* are for date column width, lines per "
"week, and number of spaces between month columns, respectively. Depends on "
"the first weekday as specified in the constructor or set by the :meth:"
"`setfirstweekday` method.  The earliest year for which a calendar can be "
"generated is platform-dependent."
msgstr ""
"Retorna un calendario de *m* columnas para todo un ao como una cadena de "
"varias lneas. Los parmetros opcionales *w*, *l* y *c* son para el ancho de "
"la columna de la fecha, las lneas por semana y el nmero de espacios entre "
"las columnas del mes, respectivamente. Depende del primer da de la semana "
"como se especifica en el constructor o se establece por el mtodo :meth:"
"`setfirstweekday`. El primer ao para el que se puede generar un calendario "
"depende de la plataforma."

#: ../Doc/library/calendar.rst:167
msgid ""
"Print the calendar for an entire year as returned by :meth:`formatyear`."
msgstr ""
"Imprime el calendario de un ao entero como lo retorna :meth:`formatyear`."

#: ../Doc/library/calendar.rst:172
msgid "This class can be used to generate HTML calendars."
msgstr "Esta clase puede utilizarse para generar calendarios HTML."

#: ../Doc/library/calendar.rst:175
msgid ":class:`!HTMLCalendar` instances have the following methods:"
msgstr ""
"Las instancias de :class:`!HTMLCalendar` tienen los siguientes mtodos:"

#: ../Doc/library/calendar.rst:179
msgid ""
"Return a month's calendar as an HTML table. If *withyear* is true the year "
"will be included in the header, otherwise just the month name will be used."
msgstr ""
"Retorna el calendario de un mes como una tabla HTML. Si *withyear* es "
"verdadero, el ao ser incluido en el encabezado, de lo contrario slo se "
"usar el nombre del mes."

#: ../Doc/library/calendar.rst:186
msgid ""
"Return a year's calendar as an HTML table. *width* (defaulting to 3) "
"specifies the number of months per row."
msgstr ""
"Retorna el calendario de un ao como una tabla HTML. *width* (por defecto a "
"3) especifica el nmero de meses por fila."

#: ../Doc/library/calendar.rst:192
msgid ""
"Return a year's calendar as a complete HTML page. *width* (defaulting to 3) "
"specifies the number of months per row. *css* is the name for the cascading "
"style sheet to be used. :const:`None` can be passed if no style sheet should "
"be used. *encoding* specifies the encoding to be used for the output "
"(defaulting to the system default encoding)."
msgstr ""
"Retorna el calendario de un ao como una pgina HTML completa. *width* (por "
"defecto a 3) especifica el nmero de meses por fila. *css* es el nombre de "
"la hoja de estilo en cascada que se debe usar. :const:`None` puede ser "
"pasada si no se debe usar una hoja de estilo. *encoding* especifica la "
"codificacin a ser usada para la salida (por defecto a la codificacin por "
"defecto del sistema)."

#: ../Doc/library/calendar.rst:199
msgid ""
":class:`!HTMLCalendar` has the following attributes you can override to "
"customize the CSS classes used by the calendar:"
msgstr ""
":class:`!HTMLCalendar` tiene los siguientes atributos que puedes "
"sobrescribir para personalizar las clases CSS utilizadas por el calendario:"

#: ../Doc/library/calendar.rst:204
msgid ""
"A list of CSS classes used for each weekday. The default class list is::"
msgstr ""
"Una lista de clases CSS utilizadas para cada da de la semana. La lista de "
"clases predeterminada es::"

#: ../Doc/library/calendar.rst:208
msgid "more styles can be added for each day::"
msgstr "se pueden aadir ms estilos para cada da::"

#: ../Doc/library/calendar.rst:212
msgid "Note that the length of this list must be seven items."
msgstr ""
"Ten en cuenta que la longitud de esta lista debe ser de siete elementos."

#: ../Doc/library/calendar.rst:217
msgid "The CSS class for a weekday occurring in the previous or coming month."
msgstr ""
"La clase CSS para un da de la semana que ocurre en el mes anterior o "
"siguiente."

#: ../Doc/library/calendar.rst:224
msgid ""
"A list of CSS classes used for weekday names in the header row. The default "
"is the same as :attr:`cssclasses`."
msgstr ""
"Una lista de clases CSS utilizadas para los nombres de los das de la semana "
"en la fila del encabezado. El valor por defecto es el mismo que :attr:"
"`cssclasses`."

#: ../Doc/library/calendar.rst:232
msgid ""
"The month's head CSS class (used by :meth:`formatmonthname`). The default "
"value is ``\"month\"``."
msgstr ""
"La clase de CSS del mes (usada por :meth:`formatmonthname`). El valor por "
"defecto es ``\"month\"``."

#: ../Doc/library/calendar.rst:240
msgid ""
"The CSS class for the whole month's table (used by :meth:`formatmonth`). The "
"default value is ``\"month\"``."
msgstr ""
"La clase de CSS para la tabla de todo el mes (usada por :meth:"
"`formatmonth`). El valor por defecto es ``\"month\"``."

#: ../Doc/library/calendar.rst:248
msgid ""
"The CSS class for the whole year's table of tables (used by :meth:"
"`formatyear`). The default value is ``\"year\"``."
msgstr ""
"La clase de CSS para la tabla de tablas de todo el ao (usada por :meth:"
"`formatyear`). El valor por defecto es ``\"year\"``."

#: ../Doc/library/calendar.rst:256
msgid ""
"The CSS class for the table head for the whole year (used by :meth:"
"`formatyear`). The default value is ``\"year\"``."
msgstr ""
"La clase de CSS para el encabezado de la tabla para todo el ao (usado por :"
"meth:`formatyear`). El valor por defecto es ``\"year\"``."

#: ../Doc/library/calendar.rst:262
msgid ""
"Note that although the naming for the above described class attributes is "
"singular (e.g. ``cssclass_month`` ``cssclass_noday``), one can replace the "
"single CSS class with a space separated list of CSS classes, for example::"
msgstr ""
"Ntese que aunque la denominacin de los atributos de clase descritos "
"anteriormente es singular (por ejemplo, ``cssclass_month`` "
"``cssclass_noday``), uno puede reemplazar la clase CSS nica con una lista "
"de clases CSS separadas por espacios, por ejemplo::"

#: ../Doc/library/calendar.rst:268
msgid "Here is an example how :class:`!HTMLCalendar` can be customized::"
msgstr ""
"Aqu hay un ejemplo de cmo :class:`!HTMLCalendar` puede ser personalizado::"

#: ../Doc/library/calendar.rst:280
msgid ""
"This subclass of :class:`TextCalendar` can be passed a locale name in the "
"constructor and will return month and weekday names in the specified locale."
msgstr ""
"Esta subclase de :class:`TextCalendar` se le puede pasar un nombre de "
"configuracin regional en el constructor y retornar los nombres de los "
"meses y das de la semana en la configuracin regional especificada."

#: ../Doc/library/calendar.rst:286
msgid ""
"This subclass of :class:`HTMLCalendar` can be passed a locale name in the "
"constructor and will return month and weekday names in the specified locale."
msgstr ""
"Esta subclase de :class:`HTMLCalendar` se le puede pasar un nombre de "
"configuracin regional en el constructor y retornar los nombres de los "
"meses y das de la semana en la configuracin regional especificada."

#: ../Doc/library/calendar.rst:292
msgid ""
"The constructor, :meth:`formatweekday` and :meth:`formatmonthname` methods "
"of these two classes temporarily change the ``LC_TIME`` locale to the given "
"*locale*. Because the current locale is a process-wide setting, they are not "
"thread-safe."
msgstr ""
"Los mtodos de constructor, :meth:`formatweekday` y :meth:`formatmonthname` "
"de estas dos clases cambian temporalmente el ``LC_TIME`` de la configuracin "
"regional actual al *locale* dado. Debido a que la configuracin regional "
"actual es un ajuste de todo el proceso, no son seguros para los hilos."

#: ../Doc/library/calendar.rst:298
msgid "For simple text calendars this module provides the following functions."
msgstr ""
"Para los calendarios de texto simples este mdulo proporciona las siguientes "
"funciones."

#: ../Doc/library/calendar.rst:302
msgid ""
"Sets the weekday (``0`` is Monday, ``6`` is Sunday) to start each week. The "
"values :const:`MONDAY`, :const:`TUESDAY`, :const:`WEDNESDAY`, :const:"
"`THURSDAY`, :const:`FRIDAY`, :const:`SATURDAY`, and :const:`SUNDAY` are "
"provided for convenience. For example, to set the first weekday to Sunday::"
msgstr ""
"Establece el da de la semana (el ``0`` es el lunes, el ``6`` es el domingo) "
"para empezar cada semana. Los valores :const:`MONDAY`, :const:`TUESDAY`, :"
"const:`WEDNESDAY`, :const:`THURSDAY`, :const:`FRIDAY`, :const:`SATURDAY`, y :"
"const:`SUNDAY` se proporcionan por conveniencia. Por ejemplo, para fijar el "
"primer da de la semana en domingo::"

#: ../Doc/library/calendar.rst:313
msgid "Returns the current setting for the weekday to start each week."
msgstr ""
"Retorna la configuracin actual para el da de la semana para empezar cada "
"semana."

#: ../Doc/library/calendar.rst:318
msgid ""
"Returns :const:`True` if *year* is a leap year, otherwise :const:`False`."
msgstr ""
"Retorna :const:`True` si *year* es un ao bisiesto, si no :const:`False`."

#: ../Doc/library/calendar.rst:323
msgid ""
"Returns the number of leap years in the range from *y1* to *y2* (exclusive), "
"where *y1* and *y2* are years."
msgstr ""
"Retorna el nmero de aos bisiestos en el rango de *y1* a *y2* (exclusivo), "
"donde *y1* y *y2* son aos."

# La parte de 'funcin funciona' suena algo redundante
#: ../Doc/library/calendar.rst:326
msgid "This function works for ranges spanning a century change."
msgstr "Esta funcin opera para rangos que abarcan un cambio de siglo."

#: ../Doc/library/calendar.rst:331
msgid ""
"Returns the day of the week (``0`` is Monday) for *year* (``1970``--...), "
"*month* (``1``--``12``), *day* (``1``--``31``)."
msgstr ""
"Retorna el da de la semana (``0`` es lunes) para *year* (``1970``--...), "
"*month* (``1``--``12``), *day* (``1``--``31``)."

#: ../Doc/library/calendar.rst:337
msgid ""
"Return a header containing abbreviated weekday names. *n* specifies the "
"width in characters for one weekday."
msgstr ""
"Retorna un encabezado con nombres abreviados de los das de la semana. *n* "
"especifica el ancho en caracteres de un da de la semana."

#: ../Doc/library/calendar.rst:343
msgid ""
"Returns weekday of first day of the month and number of days in month,  for "
"the specified *year* and *month*."
msgstr ""
"Retorna el da de la semana del primer da del mes y el nmero de das del "
"mes, para el *year* y *month* especificados."

#: ../Doc/library/calendar.rst:349
msgid ""
"Returns a matrix representing a month's calendar.  Each row represents a "
"week; days outside of the month are represented by zeros. Each week begins "
"with Monday unless set by :func:`setfirstweekday`."
msgstr ""
"Retorna una matriz que representa el calendario de un mes. Cada fila "
"representa una semana; los das fuera del mes se representan con ceros. Cada "
"semana comienza con el lunes a menos que lo establezca :func:"
"`setfirstweekday`."

#: ../Doc/library/calendar.rst:356
msgid "Prints a month's calendar as returned by :func:`month`."
msgstr "Imprime el calendario de un mes segn lo retorna :func:`month`."

#: ../Doc/library/calendar.rst:361
msgid ""
"Returns a month's calendar in a multi-line string using the :meth:"
"`formatmonth` of the :class:`TextCalendar` class."
msgstr ""
"Retorna el calendario de un mes en una cadena de varias lneas usando el :"
"meth:`formatmonth` de la clase :class:`TextCalendar`."

#: ../Doc/library/calendar.rst:367
msgid ""
"Prints the calendar for an entire year as returned by  :func:`calendar`."
msgstr "Imprime el calendario de todo un ao como lo retorna :func:`calendar`."

#: ../Doc/library/calendar.rst:372
msgid ""
"Returns a 3-column calendar for an entire year as a multi-line string using "
"the :meth:`formatyear` of the :class:`TextCalendar` class."
msgstr ""
"Retorna un calendario de 3 columnas para un ao entero como una cadena de "
"varias lneas usando el :meth:`formatyear` de la clase :class:`TextCalendar`."

#: ../Doc/library/calendar.rst:378
msgid ""
"An unrelated but handy function that takes a time tuple such as returned by "
"the :func:`~time.gmtime` function in the :mod:`time` module, and returns the "
"corresponding Unix timestamp value, assuming an epoch of 1970, and the POSIX "
"encoding.  In fact, :func:`time.gmtime` and :func:`timegm` are each others' "
"inverse."
msgstr ""
"Una funcin no relacionada pero til que toma una tupla de tiempo como la "
"retornada por la funcin :func:`~time.gmtime` en el mdulo :mod:`time`, y "
"retorna el valor correspondiente a la marca de tiempo (*timestamp*) Unix, "
"asumiendo una poca de 1970, y la codificacin POSIX. De hecho, :func:`time."
"gmtime` y :func:`timegm` son el inverso de cada uno de ellos."

#: ../Doc/library/calendar.rst:385
msgid "The :mod:`calendar` module exports the following data attributes:"
msgstr "El mdulo :mod:`calendar` exporta los siguientes atributos de datos:"

#: ../Doc/library/calendar.rst:389
msgid "An array that represents the days of the week in the current locale."
msgstr ""
"Un arreglo que representa los das de la semana en la configuracin regional "
"actual."

#: ../Doc/library/calendar.rst:394
msgid ""
"An array that represents the abbreviated days of the week in the current "
"locale."
msgstr ""
"Un vector que representa los das abreviados de la semana en la "
"configuracin regional actual."

#: ../Doc/library/calendar.rst:405
msgid ""
"Aliases for the days of the week, where ``MONDAY`` is ``0`` and ``SUNDAY`` "
"is ``6``."
msgstr ""
"Alias para los das de la semana, donde ``MONDAY`` es ``0`` y ``SUNDAY`` es "
"``6``."

#: ../Doc/library/calendar.rst:413
msgid ""
"Enumeration defining days of the week as integer constants. The members of "
"this enumeration are exported to the module scope as :data:`MONDAY` through :"
"data:`SUNDAY`."
msgstr ""
"Enumeracin que define los das de la semana como constantes enteras. Los "
"miembros de esta enumeracin se exportan al alcance del mdulo como :data:"
"`MONDAY` hasta :data:`SUNDAY`."

#: ../Doc/library/calendar.rst:422
msgid ""
"An array that represents the months of the year in the current locale.  This "
"follows normal convention of January being month number 1, so it has a "
"length of 13 and  ``month_name[0]`` is the empty string."
msgstr ""
"Un vector que representa los meses del ao en la configuracin regional "
"actual. Esto sigue la convencin normal de que enero es el mes nmero 1, por "
"lo que tiene una longitud de 13 y ``month_name[0]`` es la cadena vaca."

#: ../Doc/library/calendar.rst:429
msgid ""
"An array that represents the abbreviated months of the year in the current "
"locale.  This follows normal convention of January being month number 1, so "
"it has a length of 13 and  ``month_abbr[0]`` is the empty string."
msgstr ""
"Una matriz que representa los meses abreviados del ao en la configuracin "
"regional actual. Esto sigue la convencin normal de que enero es el mes "
"nmero 1, por lo que tiene una longitud de 13 y ``month_abbr[0]`` es la "
"cadena vaca."

#: ../Doc/library/calendar.rst:447
msgid ""
"Aliases for the months of the year, where ``JANUARY`` is ``1`` and "
"``DECEMBER`` is ``12``."
msgstr ""
"Alias para los meses del ao, donde ``JANUARY`` es ``1`` y ``DECEMBER`` es "
"``12``."

#: ../Doc/library/calendar.rst:455
msgid ""
"Enumeration defining months of the year as integer constants. The members of "
"this enumeration are exported to the module scope as :data:`JANUARY` "
"through :data:`DECEMBER`."
msgstr ""
"Enumeracin que define los meses del ao como constantes enteras. Los "
"miembros de esta enumeracin se exportan al alcance del mdulo como :data:"
"`JANUARY` hasta :data:`DECEMBER`."

#: ../Doc/library/calendar.rst:462
msgid "The :mod:`calendar` module defines the following exceptions:"
msgstr "El mdulo :mod:`calendar` define las siguientes excepciones:"

#: ../Doc/library/calendar.rst:466
msgid ""
"A subclass of :exc:`ValueError`, raised when the given month number is "
"outside of the range 1-12 (inclusive)."
msgstr ""
"Una subclase de :exc:`ValueError`, que se lanza cuando el nmero del mes "
"proporcionado est fuera del rango 1-12 (inclusive)."

#: ../Doc/library/calendar.rst:471
msgid "The invalid month number."
msgstr "El nmero del mes no vlido."

#: ../Doc/library/calendar.rst:476
msgid ""
"A subclass of :exc:`ValueError`, raised when the given weekday number is "
"outside of the range 0-6 (inclusive)."
msgstr ""
"Una subclase de :exc:`ValueError`, que se lanza cuando el nmero del da de "
"la semana proporcionado est fuera del rango 0-6 (inclusive)."

#: ../Doc/library/calendar.rst:481
msgid "The invalid weekday number."
msgstr "El nmero de da de la semana laborable no vlido."

#: ../Doc/library/calendar.rst:488
msgid "Module :mod:`datetime`"
msgstr "Mdulo :mod:`datetime`"

#: ../Doc/library/calendar.rst:487
msgid ""
"Object-oriented interface to dates and times with similar functionality to "
"the :mod:`time` module."
msgstr ""
"Interfaz orientada a objetos para fechas y horas con una funcionalidad "
"similar a la del mdulo :mod:`time`."

#: ../Doc/library/calendar.rst:490
msgid "Module :mod:`time`"
msgstr "Mdulo :mod:`time`"

#: ../Doc/library/calendar.rst:491
msgid "Low-level time related functions."
msgstr "Funciones de bajo nivel relacionadas con el tiempo."

#: ../Doc/library/calendar.rst:497
msgid "Command-Line Usage"
msgstr "Uso de la lnea de comandos"

#: ../Doc/library/calendar.rst:501
msgid ""
"The :mod:`calendar` module can be executed as a script from the command line "
"to interactively print a calendar."
msgstr ""
"El mdulo :mod:`calendar` se puede ejecutar como un script desde la lnea de "
"comandos para imprimir un calendario de forma interactiva."

#: ../Doc/library/calendar.rst:511
msgid "For example, to print a calendar for the year 2000:"
msgstr "Por ejemplo, para imprimir un calendario para el ao 2000:"

#: ../Doc/library/calendar.rst:554
msgid "The following options are accepted:"
msgstr "Se aceptan las siguientes opciones:"

#: ../Doc/library/calendar.rst:561
msgid "Show the help message and exit."
msgstr "Muestra el mensaje de ayuda y salida."

#: ../Doc/library/calendar.rst:566
msgid "The locale to use for month and weekday names. Defaults to English."
msgstr ""
"La configuracin regional que se utiliza para los nombres de meses y das de "
"la semana. El valor predeterminado es ingls."

#: ../Doc/library/calendar.rst:572
msgid ""
"The encoding to use for output. :option:`--encoding` is required if :option:"
"`--locale` is set."
msgstr ""
"La codificacin que se utiliza para la salida. Se necesita :option:`--"
"encoding` si :option:`--locale` est configurada."

#: ../Doc/library/calendar.rst:578
msgid "Print the calendar to the terminal as text, or as an HTML document."
msgstr ""
"Imprime el calendario en la terminal como texto o como un documento HTML."

#: ../Doc/library/calendar.rst:584
msgid ""
"The year to print the calendar for. Must be a number between 1 and 9999. "
"Defaults to the current year."
msgstr ""
"El ao para imprimir el calendario. Debe ser un nmero entre 1 y 9999. El "
"valor predeterminado es el ao actual."

#: ../Doc/library/calendar.rst:591
msgid ""
"The month of the specified :option:`year` to print the calendar for. Must be "
"a number between 1 and 12, and may only be used in text mode. Defaults to "
"printing a calendar for the full year."
msgstr ""
"El mes de :option:`year` especificado para imprimir el calendario. Debe ser "
"un nmero entre 1 y 12 y slo se puede usar en modo texto. El valor "
"predeterminado es imprimir un calendario para el ao completo."

#: ../Doc/library/calendar.rst:597
msgid "*Text-mode options:*"
msgstr "*Opciones de modo texto:*"

#: ../Doc/library/calendar.rst:601
msgid ""
"The width of the date column in terminal columns. The date is printed "
"centred in the column. Any value lower than 2 is ignored. Defaults to 2."
msgstr ""
"El ancho de la columna de fecha en las columnas terminales. La fecha se "
"imprime centrada en la columna. Cualquier valor inferior a 2 se ignora. El "
"valor predeterminado es 2."

#: ../Doc/library/calendar.rst:609
msgid ""
"The number of lines for each week in terminal rows. The date is printed top-"
"aligned. Any value lower than 1 is ignored. Defaults to 1."
msgstr ""
"El nmero de lneas para cada semana en filas terminales. La fecha se "
"imprime alineada en la parte superior. Cualquier valor inferior a 1 se "
"ignora. El valor predeterminado es 1."

#: ../Doc/library/calendar.rst:617
msgid ""
"The space between months in columns. Any value lower than 2 is ignored. "
"Defaults to 6."
msgstr ""
"El espacio entre meses en columnas. Cualquier valor inferior a 2 se ignora. "
"El valor predeterminado es 6."

#: ../Doc/library/calendar.rst:624
msgid "The number of months printed per row. Defaults to 3."
msgstr "El nmero de meses se imprimen por fila. El valor predeterminado es 3."

#: ../Doc/library/calendar.rst:628
msgid "*HTML-mode options:*"
msgstr "*Opciones de modo HTML:*"

#: ../Doc/library/calendar.rst:632
msgid ""
"The path of a CSS stylesheet to use for the calendar. This must either be "
"relative to the generated HTML, or an absolute HTTP or ``file:///`` URL."
msgstr ""
"La ruta de una hoja de estilos CSS que se utiliza para el calendario. Esta "
"debe ser relativa al HTML generado, o un HTTP absoluto o una URL ``file:///"
"``."

Web Proxy Viewer  |  New URL  |  Original Page