-
-
Notifications
You must be signed in to change notification settings - Fork 46
Expand file tree
/
Copy pathcalendar.po
More file actions
547 lines (455 loc) · 16.9 KB
/
calendar.po
File metadata and controls
547 lines (455 loc) · 16.9 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
# Python Documentation Turkish Translation
# Copyright (C) 2001-2023, Python Software Foundation
# This file is distributed under the same license as the Python package.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: Python 3.11\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-09-18 19:05+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: \n"
"Language-Team: TURKISH <python.docs.tr@gmail.com>\n"
"Language: tr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
#: library/calendar.rst:2
msgid ":mod:`calendar` --- General calendar-related functions"
msgstr ""
#: library/calendar.rst:10
msgid "**Source code:** :source:`Lib/calendar.py`"
msgstr ""
#: 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 ""
#: 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 ""
#: 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 ""
#: 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 ""
#: library/calendar.rst:41
msgid ":class:`Calendar` instances have the following methods:"
msgstr ""
#: 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 ""
#: 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 ""
#: 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 ""
#: 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 ""
#: 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 ""
#: 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 ""
#: 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 ""
#: 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 ""
#: 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 ""
#: 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 ""
#: 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 ""
#: 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 ""
#: library/calendar.rst:137
msgid "This class can be used to generate plain text calendars."
msgstr ""
#: library/calendar.rst:139
msgid ":class:`TextCalendar` instances have the following methods:"
msgstr ""
#: 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 ""
#: library/calendar.rst:152
msgid "Print a month's calendar as returned by :meth:`formatmonth`."
msgstr ""
#: 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 ""
#: library/calendar.rst:167
msgid ""
"Print the calendar for an entire year as returned by :meth:`formatyear`."
msgstr ""
#: library/calendar.rst:172
msgid "This class can be used to generate HTML calendars."
msgstr ""
#: library/calendar.rst:175
msgid ":class:`!HTMLCalendar` instances have the following methods:"
msgstr ""
#: 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 ""
#: 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 ""
#: 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 ""
#: library/calendar.rst:199
msgid ""
":class:`!HTMLCalendar` has the following attributes you can override to "
"customize the CSS classes used by the calendar:"
msgstr ""
#: library/calendar.rst:204
msgid ""
"A list of CSS classes used for each weekday. The default class list is::"
msgstr ""
#: library/calendar.rst:208
msgid "more styles can be added for each day::"
msgstr ""
#: library/calendar.rst:212
msgid "Note that the length of this list must be seven items."
msgstr ""
#: library/calendar.rst:217
msgid "The CSS class for a weekday occurring in the previous or coming month."
msgstr ""
#: 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 ""
#: library/calendar.rst:232
msgid ""
"The month's head CSS class (used by :meth:`formatmonthname`). The default "
"value is ``\"month\"``."
msgstr ""
#: library/calendar.rst:240
msgid ""
"The CSS class for the whole month's table (used by :meth:`formatmonth`). The "
"default value is ``\"month\"``."
msgstr ""
#: 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 ""
#: 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 ""
#: 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 ""
#: library/calendar.rst:268
msgid "Here is an example how :class:`!HTMLCalendar` can be customized::"
msgstr ""
#: 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 ""
#: 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 ""
#: 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 ""
#: library/calendar.rst:298
msgid "For simple text calendars this module provides the following functions."
msgstr ""
#: 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 ""
#: library/calendar.rst:313
msgid "Returns the current setting for the weekday to start each week."
msgstr ""
#: library/calendar.rst:318
msgid ""
"Returns :const:`True` if *year* is a leap year, otherwise :const:`False`."
msgstr ""
#: 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 ""
#: library/calendar.rst:326
msgid "This function works for ranges spanning a century change."
msgstr ""
#: library/calendar.rst:331
msgid ""
"Returns the day of the week (``0`` is Monday) for *year* (``1970``--...), "
"*month* (``1``--``12``), *day* (``1``--``31``)."
msgstr ""
#: library/calendar.rst:337
msgid ""
"Return a header containing abbreviated weekday names. *n* specifies the "
"width in characters for one weekday."
msgstr ""
#: 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 ""
#: 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 ""
#: library/calendar.rst:356
msgid "Prints a month's calendar as returned by :func:`month`."
msgstr ""
#: 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 ""
#: library/calendar.rst:367
msgid ""
"Prints the calendar for an entire year as returned by :func:`calendar`."
msgstr ""
#: 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 ""
#: 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 ""
#: library/calendar.rst:385
msgid "The :mod:`calendar` module exports the following data attributes:"
msgstr ""
#: library/calendar.rst:389
msgid "An array that represents the days of the week in the current locale."
msgstr ""
#: library/calendar.rst:394
msgid ""
"An array that represents the abbreviated days of the week in the current "
"locale."
msgstr ""
#: library/calendar.rst:399
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 ""
#: library/calendar.rst:406
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 ""
#: library/calendar.rst:418
msgid ""
"Aliases for day numbers, where ``MONDAY`` is ``0`` and ``SUNDAY`` is ``6``."
msgstr ""
#: library/calendar.rst:421
msgid "The :mod:`calendar` module defines the following exceptions:"
msgstr ""
#: library/calendar.rst:425
msgid ""
"A subclass of :exc:`ValueError`, raised when the given month number is "
"outside of the range 1-12 (inclusive)."
msgstr ""
#: library/calendar.rst:430
msgid "The invalid month number."
msgstr ""
#: library/calendar.rst:435
msgid ""
"A subclass of :exc:`ValueError`, raised when the given weekday number is "
"outside of the range 0-6 (inclusive)."
msgstr ""
#: library/calendar.rst:440
msgid "The invalid weekday number."
msgstr ""
#: library/calendar.rst:447
msgid "Module :mod:`datetime`"
msgstr ""
#: library/calendar.rst:446
msgid ""
"Object-oriented interface to dates and times with similar functionality to "
"the :mod:`time` module."
msgstr ""
#: library/calendar.rst:449
msgid "Module :mod:`time`"
msgstr ""
#: library/calendar.rst:450
msgid "Low-level time related functions."
msgstr ""
#: library/calendar.rst:456
msgid "Command-Line Usage"
msgstr ""
#: library/calendar.rst:460
msgid ""
"The :mod:`calendar` module can be executed as a script from the command line "
"to interactively print a calendar."
msgstr ""
#: library/calendar.rst:470
msgid "For example, to print a calendar for the year 2000:"
msgstr ""
#: library/calendar.rst:513
msgid "The following options are accepted:"
msgstr ""
#: library/calendar.rst:520
msgid "Show the help message and exit."
msgstr ""
#: library/calendar.rst:525
msgid "The locale to use for month and weekday names. Defaults to English."
msgstr ""
#: library/calendar.rst:531
msgid ""
"The encoding to use for output. :option:`--encoding` is required if :option:"
"`--locale` is set."
msgstr ""
#: library/calendar.rst:537
msgid "Print the calendar to the terminal as text, or as an HTML document."
msgstr ""
#: library/calendar.rst:543
msgid ""
"The year to print the calendar for. Must be a number between 1 and 9999. "
"Defaults to the current year."
msgstr ""
#: library/calendar.rst:550
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 ""
#: library/calendar.rst:556
msgid "*Text-mode options:*"
msgstr ""
#: library/calendar.rst:560
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 ""
#: library/calendar.rst:568
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 ""
#: library/calendar.rst:576
msgid ""
"The space between months in columns. Any value lower than 2 is ignored. "
"Defaults to 6."
msgstr ""
#: library/calendar.rst:583
msgid "The number of months printed per row. Defaults to 3."
msgstr ""
#: library/calendar.rst:587
msgid "*HTML-mode options:*"
msgstr ""
#: library/calendar.rst:591
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 ""