From 7630467f842b0539081263d9568add2053a0021f Mon Sep 17 00:00:00 2001 From: Nozomu Kaneko Date: Sun, 6 Jan 2013 18:05:49 +0900 Subject: [PATCH 01/76] fix: paragraphs in versionmodified are ignored when it has no dangling paragraphs. --- sphinx/directives/other.py | 4 ++-- tests/root/markup.txt | 9 +++++++++ tests/test_build_html.py | 5 +++++ 3 files changed, 16 insertions(+), 2 deletions(-) diff --git a/sphinx/directives/other.py b/sphinx/directives/other.py index 59931a554..406404156 100644 --- a/sphinx/directives/other.py +++ b/sphinx/directives/other.py @@ -194,11 +194,11 @@ class VersionChange(Directive): inodes, messages = self.state.inline_text(self.arguments[1], self.lineno+1) node.extend(inodes) - if self.content: - self.state.nested_parse(self.content, self.content_offset, node) ret = [node] + messages else: ret = [node] + if self.content: + self.state.nested_parse(self.content, self.content_offset, node) env = self.state.document.settings.env # XXX should record node.source as well env.note_versionchange(node['type'], node['version'], node, node.line) diff --git a/tests/root/markup.txt b/tests/root/markup.txt index cbfbbbe3d..1fb20cf09 100644 --- a/tests/root/markup.txt +++ b/tests/root/markup.txt @@ -208,6 +208,15 @@ Version markup .. deprecated:: 0.6 Boring stuff. +.. versionadded:: 1.2 + + First paragraph of versionadded. + +.. versionchanged:: 1.2 + First paragraph of versionchanged. + + Second paragraph of versionchanged. + Code blocks ----------- diff --git a/tests/test_build_html.py b/tests/test_build_html.py index abd60bbb5..05def19d0 100644 --- a/tests/test_build_html.py +++ b/tests/test_build_html.py @@ -145,6 +145,11 @@ HTML_XPATH = { (".//abbr[@title='abbreviation']", '^abbr$'), # version stuff (".//span[@class='versionmodified']", 'New in version 0.6'), + (".//p[@class='versionadded']/span[@class='versionmodified']", + tail_check('First paragraph of versionadded')), + (".//p[@class='versionchanged']/span[@class='versionmodified']", + tail_check('First paragraph of versionchanged')), + (".//p", 'Second paragraph of versionchanged'), # footnote reference (".//a[@class='footnote-reference']", r'\[1\]'), # created by reference lookup From 919ba75483e8a103c2bdf26e32b1734f084b5b28 Mon Sep 17 00:00:00 2001 From: Nozomu Kaneko Date: Sun, 6 Jan 2013 18:37:21 +0900 Subject: [PATCH 02/76] versionlabels are handled entirely in the versionmodified directive, instead of the writers. Now it returns a versionmodified node with the versionlabel already inserted. --- sphinx/directives/other.py | 15 ++++++++++----- sphinx/writers/html.py | 15 ++++++--------- sphinx/writers/latex.py | 9 ++------- sphinx/writers/manpage.py | 8 +------- sphinx/writers/texinfo.py | 9 ++------- sphinx/writers/text.py | 6 +----- tests/test_build_html.py | 9 +++++---- 7 files changed, 27 insertions(+), 44 deletions(-) diff --git a/sphinx/directives/other.py b/sphinx/directives/other.py index 406404156..50188ea41 100644 --- a/sphinx/directives/other.py +++ b/sphinx/directives/other.py @@ -14,7 +14,7 @@ from docutils.parsers.rst.directives.misc import Class from docutils.parsers.rst.directives.misc import Include as BaseInclude from sphinx import addnodes -from sphinx.locale import _ +from sphinx.locale import versionlabels, _ from sphinx.util import url_re, docname_join from sphinx.util.nodes import explicit_title_re, set_source_info, \ process_index_entry @@ -190,19 +190,24 @@ class VersionChange(Directive): set_source_info(self, node) node['type'] = self.name node['version'] = self.arguments[0] + text = versionlabels[self.name] % self.arguments[0] if len(self.arguments) == 2: inodes, messages = self.state.inline_text(self.arguments[1], self.lineno+1) - node.extend(inodes) - ret = [node] + messages + node.append(nodes.paragraph('', '', *inodes)) else: - ret = [node] + messages = [] if self.content: self.state.nested_parse(self.content, self.content_offset, node) + if len(node): + node[0].insert(0, nodes.inline('', '%s: ' % text)) + else: + para = nodes.paragraph('', '', nodes.inline('', '%s.' % text)) + node.append(para) env = self.state.document.settings.env # XXX should record node.source as well env.note_versionchange(node['type'], node['version'], node, node.line) - return ret + return [node] + messages class SeeAlso(BaseAdmonition): diff --git a/sphinx/writers/html.py b/sphinx/writers/html.py index 252cedc41..d450b2c74 100644 --- a/sphinx/writers/html.py +++ b/sphinx/writers/html.py @@ -17,7 +17,7 @@ from docutils import nodes from docutils.writers.html4css1 import Writer, HTMLTranslator as BaseTranslator from sphinx import addnodes -from sphinx.locale import admonitionlabels, versionlabels, _ +from sphinx.locale import admonitionlabels, _ from sphinx.util.smartypants import sphinx_smarty_pants try: @@ -157,15 +157,9 @@ class HTMLTranslator(BaseTranslator): self.body.append('') def visit_versionmodified(self, node): - self.body.append(self.starttag(node, 'p', CLASS=node['type'])) - text = versionlabels[node['type']] % node['version'] - if len(node): - text += ': ' - else: - text += '.' - self.body.append('%s' % text) + self.body.append(self.starttag(node, 'div', CLASS=node['type'])) def depart_versionmodified(self, node): - self.body.append('

\n') + self.body.append('\n') # overwritten def visit_reference(self, node): @@ -310,6 +304,9 @@ class HTMLTranslator(BaseTranslator): if isinstance(node.parent, addnodes.desc_content): # Never compact desc_content items. return False + if isinstance(node.parent, addnodes.versionmodified): + # Never compact versionmodified nodes. + return False return BaseTranslator.should_be_compact_paragraph(self, node) def visit_compact_paragraph(self, node): diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py index ef2197c6a..371c0114e 100644 --- a/sphinx/writers/latex.py +++ b/sphinx/writers/latex.py @@ -22,7 +22,7 @@ from docutils.writers.latex2e import Babel from sphinx import addnodes from sphinx import highlighting from sphinx.errors import SphinxError -from sphinx.locale import admonitionlabels, versionlabels, _ +from sphinx.locale import admonitionlabels, _ from sphinx.util import split_into from sphinx.util.osutil import ustrftime from sphinx.util.pycompat import any @@ -1053,12 +1053,7 @@ class LaTeXTranslator(nodes.NodeVisitor): depart_warning = _depart_named_admonition def visit_versionmodified(self, node): - intro = versionlabels[node['type']] % node['version'] - if node.children: - intro += ': ' - else: - intro += '.' - self.body.append(intro) + pass def depart_versionmodified(self, node): pass diff --git a/sphinx/writers/manpage.py b/sphinx/writers/manpage.py index 6e405d5aa..6b68971e0 100644 --- a/sphinx/writers/manpage.py +++ b/sphinx/writers/manpage.py @@ -20,7 +20,7 @@ except ImportError: has_manpage_writer = False from sphinx import addnodes -from sphinx.locale import admonitionlabels, versionlabels, _ +from sphinx.locale import admonitionlabels, _ from sphinx.util.osutil import ustrftime @@ -157,12 +157,6 @@ class ManualPageTranslator(BaseTranslator): def visit_versionmodified(self, node): self.visit_paragraph(node) - text = versionlabels[node['type']] % node['version'] - if len(node): - text += ': ' - else: - text += '.' - self.body.append(text) def depart_versionmodified(self, node): self.depart_paragraph(node) diff --git a/sphinx/writers/texinfo.py b/sphinx/writers/texinfo.py index aa7ed6855..cf5cb9eed 100644 --- a/sphinx/writers/texinfo.py +++ b/sphinx/writers/texinfo.py @@ -17,7 +17,7 @@ from os import path from docutils import nodes, writers from sphinx import addnodes, __version__ -from sphinx.locale import admonitionlabels, versionlabels, _ +from sphinx.locale import admonitionlabels, _ from sphinx.util import ustrftime from sphinx.writers.latex import collected_footnote @@ -1225,12 +1225,7 @@ class TexinfoTranslator(nodes.NodeVisitor): self.body.append('\n') def visit_versionmodified(self, node): - intro = versionlabels[node['type']] % node['version'] - if node.children: - intro += ': ' - else: - intro += '.' - self.body.append('\n%s' % self.escape(intro)) + self.body.append('\n') def depart_versionmodified(self, node): self.body.append('\n') diff --git a/sphinx/writers/text.py b/sphinx/writers/text.py index 965769117..14d7c9522 100644 --- a/sphinx/writers/text.py +++ b/sphinx/writers/text.py @@ -17,7 +17,7 @@ from docutils import nodes, writers from docutils.utils import column_width from sphinx import addnodes -from sphinx.locale import admonitionlabels, versionlabels, _ +from sphinx.locale import admonitionlabels, _ class TextWrapper(textwrap.TextWrapper): @@ -680,10 +680,6 @@ class TextTranslator(nodes.NodeVisitor): def visit_versionmodified(self, node): self.new_state(0) - if node.children: - self.add_text(versionlabels[node['type']] % node['version'] + ': ') - else: - self.add_text(versionlabels[node['type']] % node['version'] + '.') def depart_versionmodified(self, node): self.end_state() diff --git a/tests/test_build_html.py b/tests/test_build_html.py index 05def19d0..616b67f9e 100644 --- a/tests/test_build_html.py +++ b/tests/test_build_html.py @@ -144,12 +144,13 @@ HTML_XPATH = { # abbreviations (".//abbr[@title='abbreviation']", '^abbr$'), # version stuff - (".//span[@class='versionmodified']", 'New in version 0.6'), - (".//p[@class='versionadded']/span[@class='versionmodified']", + (".//div[@class='versionadded']/p/span", 'New in version 0.6: '), + (".//div[@class='versionadded']/p/span", tail_check('First paragraph of versionadded')), - (".//p[@class='versionchanged']/span[@class='versionmodified']", + (".//div[@class='versionchanged']/p/span", tail_check('First paragraph of versionchanged')), - (".//p", 'Second paragraph of versionchanged'), + (".//div[@class='versionchanged']/p", + 'Second paragraph of versionchanged'), # footnote reference (".//a[@class='footnote-reference']", r'\[1\]'), # created by reference lookup From c88ba504f357ecaf47337eff92fd13b2c54e13bc Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 13 Jan 2013 14:15:45 +0100 Subject: [PATCH 03/76] Introduce a "-j" flag for parallel build. --- sphinx/application.py | 5 ++++- sphinx/cmdline.py | 13 +++++++++++-- 2 files changed, 15 insertions(+), 3 deletions(-) diff --git a/sphinx/application.py b/sphinx/application.py index 02f0ff82e..3f1837373 100644 --- a/sphinx/application.py +++ b/sphinx/application.py @@ -61,7 +61,8 @@ class Sphinx(object): def __init__(self, srcdir, confdir, outdir, doctreedir, buildername, confoverrides=None, status=sys.stdout, warning=sys.stderr, - freshenv=False, warningiserror=False, tags=None, verbosity=0): + freshenv=False, warningiserror=False, tags=None, verbosity=0, + parallel=0): self.verbosity = verbosity self.next_listener_id = 0 self._extensions = {} @@ -76,6 +77,8 @@ class Sphinx(object): self.outdir = outdir self.doctreedir = doctreedir + self.parallel = parallel + if status is None: self._status = StringIO() self.quiet = True diff --git a/sphinx/cmdline.py b/sphinx/cmdline.py index 13bd2e9f4..aee75418c 100644 --- a/sphinx/cmdline.py +++ b/sphinx/cmdline.py @@ -48,6 +48,7 @@ General options -E don't use a saved environment, always read all files -d path for the cached environment and doctree files (default: outdir/.doctrees) +-j build in parallel with N processes where possible Build configuration options ^^^^^^^^^^^^^^^^^^^^^^^^^^^ @@ -89,7 +90,7 @@ def main(argv): nocolor() try: - opts, args = getopt.getopt(argv[1:], 'ab:t:d:c:CD:A:nNEqQWw:PThv', + opts, args = getopt.getopt(argv[1:], 'ab:t:d:c:CD:A:nNEqQWw:PThvj:', ['help', 'version']) allopts = set(opt[0] for opt in opts) if '-h' in allopts or '--help' in allopts: @@ -139,6 +140,7 @@ def main(argv): force_all = freshenv = warningiserror = use_pdb = False show_traceback = False verbosity = 0 + parallel = 0 status = sys.stdout warning = sys.stderr error = sys.stderr @@ -220,6 +222,13 @@ def main(argv): elif opt == '-v': verbosity += 1 show_traceback = True + elif opt == '-j': + try: + parallel = int(val) + except ValueError: + print >>sys.stderr, ('Error: -j option argument must be an ' + 'integer.') + return 1 if warning and warnfile: warnfp = open(warnfile, 'w') @@ -234,7 +243,7 @@ def main(argv): try: app = Sphinx(srcdir, confdir, outdir, doctreedir, buildername, confoverrides, status, warning, freshenv, - warningiserror, tags, verbosity) + warningiserror, tags, verbosity, parallel) app.build(force_all, filenames) return app.statuscode except (Exception, KeyboardInterrupt), err: From 2e4608039c37821d43e8a6a6444dff3489a88730 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 13 Jan 2013 17:25:34 +0100 Subject: [PATCH 04/76] builder: make the status_iterator more flexible by supplying a function used to stringify the current item for display --- sphinx/builders/__init__.py | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/sphinx/builders/__init__.py b/sphinx/builders/__init__.py index 97932c4c7..ad5dc957f 100644 --- a/sphinx/builders/__init__.py +++ b/sphinx/builders/__init__.py @@ -98,19 +98,21 @@ class Builder(object): """ raise NotImplementedError - def old_status_iterator(self, iterable, summary, colorfunc=darkgreen): + def old_status_iterator(self, iterable, summary, colorfunc=darkgreen, + stringify_func=str): l = 0 for item in iterable: if l == 0: self.info(bold(summary), nonl=1) l = 1 - self.info(colorfunc(item) + ' ', nonl=1) + self.info(colorfunc(stringify_func(item)) + ' ', nonl=1) yield item if l == 1: self.info() # new version with progress info - def status_iterator(self, iterable, summary, colorfunc=darkgreen, length=0): + def status_iterator(self, iterable, summary, colorfunc=darkgreen, length=0, + stringify_func=str): if length == 0: for item in self.old_status_iterator(iterable, summary, colorfunc): yield item @@ -120,7 +122,7 @@ class Builder(object): for item in iterable: l += 1 s = '%s[%3d%%] %s' % (summary, 100*l/length, - colorfunc(item)) + colorfunc(stringify_func(item))) if self.app.verbosity: s += '\n' else: From 53d1d79ff8f2f08fe9587a2da12e7062271b6e5b Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 13 Jan 2013 17:27:09 +0100 Subject: [PATCH 05/76] builder: implement parallel writing based on multiprocessing Does not work completely yet: globals such as the search index and images for HTML are not updated properly: this needs a new API. --- sphinx/builders/__init__.py | 73 +++++++++++++++++++++++++++++++++++-- 1 file changed, 70 insertions(+), 3 deletions(-) diff --git a/sphinx/builders/__init__.py b/sphinx/builders/__init__.py index ad5dc957f..b86934595 100644 --- a/sphinx/builders/__init__.py +++ b/sphinx/builders/__init__.py @@ -12,6 +12,12 @@ import os from os import path +try: + import multiprocessing + import threading +except ImportError: + multiprocessing = threading = None + from docutils import nodes from sphinx.util.osutil import SEP, relative_uri @@ -33,6 +39,8 @@ class Builder(object): format = '' # doctree versioning method versioning_method = 'none' + # allow parallel write_doc calls + allow_parallel = True def __init__(self, app): self.env = app.env @@ -289,16 +297,75 @@ class Builder(object): self.prepare_writing(docnames) self.info('done') - # write target files warnings = [] self.env.set_warnfunc(lambda *args: warnings.append(args)) + # check for prerequisites to parallel build + # (parallel only works on POSIX, because the forking impl of + # multiprocessing is required) + if not (multiprocessing and + self.app.parallel and + self.allow_parallel and + os.name == 'posix'): + self._write_serial(sorted(docnames), warnings) + else: + self._write_parallel(sorted(docnames), warnings, self.app.parallel) + self.env.set_warnfunc(self.warn) + + def _write_serial(self, docnames, warnings): for docname in self.status_iterator( - sorted(docnames), 'writing output... ', darkgreen, len(docnames)): + docnames, 'writing output... ', darkgreen, len(docnames)): doctree = self.env.get_and_resolve_doctree(docname, self) self.write_doc(docname, doctree) for warning in warnings: self.warn(*warning) - self.env.set_warnfunc(self.warn) + + def _write_parallel(self, docnames, warnings, nproc): + def write_process(docnames): + try: + for docname in docnames: + doctree = self.env.get_and_resolve_doctree(docname, self) + self.write_doc(docname, doctree) + for warning in warnings: + self.warn(*warning) + except KeyboardInterrupt: + pass # do not print a traceback on Ctrl-C + + def process_thread(docnames): + p = multiprocessing.Process(target=write_process, args=(docnames,)) + p.start() + p.join() + semaphore.release() + + # allow only "nproc" worker processes at once + semaphore = threading.Semaphore(nproc) + # list of threads to join when waiting for completion + threads = [] + + # warm up caches/compile templates using the first docname + write_process([docnames[0]]) + docnames = docnames[1:] + ndocs = len(docnames) + # determine how many documents to write in one go + chunksize = min(ndocs // nproc, 10) + nchunks, rest = divmod(ndocs, chunksize) + if rest: + nchunks += 1 + # partition documents in "chunks" that will be written by one Process + chunks = [docnames[i*chunksize:(i+1)*chunksize] for i in range(nchunks)] + for docnames in self.status_iterator( + chunks, 'writing output... ', darkgreen, len(chunks), + lambda chk: '%s .. %s' % (chk[0], chk[-1])): + semaphore.acquire() + # start a new thread to oversee the completion of this chunk + t = threading.Thread(target=process_thread, args=(docnames,)) + t.setDaemon(True) + t.start() + threads.append(t) + + # make sure all threads have finished + self.info(bold('waiting for workers... '))#, nonl=True) + for t in threads: + t.join() def prepare_writing(self, docnames): raise NotImplementedError From 83c6b8231e6347ccbe3cafdec872863b697efb19 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 13 Jan 2013 19:44:09 +0100 Subject: [PATCH 06/76] Set "allow_parallel" to false by default. --- sphinx/builders/__init__.py | 4 ++-- sphinx/builders/html.py | 1 + 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/sphinx/builders/__init__.py b/sphinx/builders/__init__.py index b86934595..f217c2c00 100644 --- a/sphinx/builders/__init__.py +++ b/sphinx/builders/__init__.py @@ -39,8 +39,8 @@ class Builder(object): format = '' # doctree versioning method versioning_method = 'none' - # allow parallel write_doc calls - allow_parallel = True + # allow parallel write_doc() calls + allow_parallel = False def __init__(self, app): self.env = app.env diff --git a/sphinx/builders/html.py b/sphinx/builders/html.py index 573bb9b2c..4c700c8ab 100644 --- a/sphinx/builders/html.py +++ b/sphinx/builders/html.py @@ -60,6 +60,7 @@ class StandaloneHTMLBuilder(Builder): name = 'html' format = 'html' copysource = True + allow_parallel = True out_suffix = '.html' link_suffix = '.html' # defaults to matching out_suffix indexer_format = js_index From 5cd0841e5f041f3ef03840fafac425654a48b40d Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 13 Jan 2013 19:46:34 +0100 Subject: [PATCH 07/76] builder: fix parallel build globals problems by splitting write_doc in two stages: write_doc() and write_doc_serialized(), the latter of which is not called in the parallel processes. This costs speedup, of course: from about 50% we are down to about 30% improvement on my 4-core machine. --- sphinx/builders/__init__.py | 39 +++++++++++++++++++++++++------------ sphinx/builders/html.py | 9 +++++++-- 2 files changed, 34 insertions(+), 14 deletions(-) diff --git a/sphinx/builders/__init__.py b/sphinx/builders/__init__.py index f217c2c00..bbf7fdd3d 100644 --- a/sphinx/builders/__init__.py +++ b/sphinx/builders/__init__.py @@ -315,23 +315,24 @@ class Builder(object): for docname in self.status_iterator( docnames, 'writing output... ', darkgreen, len(docnames)): doctree = self.env.get_and_resolve_doctree(docname, self) + self.write_doc_serialized(docname, doctree) self.write_doc(docname, doctree) for warning in warnings: self.warn(*warning) def _write_parallel(self, docnames, warnings, nproc): - def write_process(docnames): + def write_process(docs): try: - for docname in docnames: - doctree = self.env.get_and_resolve_doctree(docname, self) + for docname, doctree in docs: self.write_doc(docname, doctree) - for warning in warnings: - self.warn(*warning) except KeyboardInterrupt: pass # do not print a traceback on Ctrl-C + finally: + for warning in warnings: + self.warn(*warning) - def process_thread(docnames): - p = multiprocessing.Process(target=write_process, args=(docnames,)) + def process_thread(docs): + p = multiprocessing.Process(target=write_process, args=(docs,)) p.start() p.join() semaphore.release() @@ -341,11 +342,14 @@ class Builder(object): # list of threads to join when waiting for completion threads = [] - # warm up caches/compile templates using the first docname - write_process([docnames[0]]) + # warm up caches/compile templates using the first document + firstname, docnames = docnames[0], docnames[1:] + doctree = self.env.get_and_resolve_doctree(firstname, self) + self.write_doc_serialized(firstname, doctree) + self.write_doc(firstname, doctree) + # for the rest, determine how many documents to write in one go docnames = docnames[1:] ndocs = len(docnames) - # determine how many documents to write in one go chunksize = min(ndocs // nproc, 10) nchunks, rest = divmod(ndocs, chunksize) if rest: @@ -355,9 +359,14 @@ class Builder(object): for docnames in self.status_iterator( chunks, 'writing output... ', darkgreen, len(chunks), lambda chk: '%s .. %s' % (chk[0], chk[-1])): - semaphore.acquire() + docs = [] + for docname in docnames: + doctree = self.env.get_and_resolve_doctree(docname, self) + self.write_doc_serialized(docname, doctree) + docs.append((docname, doctree)) # start a new thread to oversee the completion of this chunk - t = threading.Thread(target=process_thread, args=(docnames,)) + semaphore.acquire() + t = threading.Thread(target=process_thread, args=(docs,)) t.setDaemon(True) t.start() threads.append(t) @@ -373,6 +382,12 @@ class Builder(object): def write_doc(self, docname, doctree): raise NotImplementedError + def write_doc_serialized(self, docname, doctree): + """Handle parts of write_doc that must be called in the main process + if parallel build is active. + """ + pass + def finish(self): """Finish the building process. diff --git a/sphinx/builders/html.py b/sphinx/builders/html.py index 4c700c8ab..323763339 100644 --- a/sphinx/builders/html.py +++ b/sphinx/builders/html.py @@ -415,7 +415,6 @@ class StandaloneHTMLBuilder(Builder): self.secnumbers = self.env.toc_secnumbers.get(docname, {}) self.imgpath = relative_uri(self.get_target_uri(docname), '_images') - self.post_process_images(doctree) self.dlpath = relative_uri(self.get_target_uri(docname), '_downloads') self.current_docname = docname self.docwriter.write(doctree, destination) @@ -424,9 +423,15 @@ class StandaloneHTMLBuilder(Builder): metatags = self.docwriter.clean_meta ctx = self.get_doc_context(docname, body, metatags) - self.index_page(docname, doctree, ctx.get('title', '')) self.handle_page(docname, ctx, event_arg=doctree) + def write_doc_serialized(self, docname, doctree): + self.imgpath = relative_uri(self.get_target_uri(docname), '_images') + self.post_process_images(doctree) + title = self.env.longtitles.get(docname) + title = title and self.render_partial(title)['title'] or '' + self.index_page(docname, doctree, title) + def finish(self): self.info(bold('writing additional files...'), nonl=1) From 3889a1158f314a980d6579b629e4fabe82fa6ea5 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 14 Jan 2013 08:35:41 +0100 Subject: [PATCH 08/76] builder: reduce # of subprocesses to N-1 for -jN, since the main process is also busy now --- sphinx/builders/__init__.py | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/sphinx/builders/__init__.py b/sphinx/builders/__init__.py index bbf7fdd3d..9c413c2e0 100644 --- a/sphinx/builders/__init__.py +++ b/sphinx/builders/__init__.py @@ -303,12 +303,15 @@ class Builder(object): # (parallel only works on POSIX, because the forking impl of # multiprocessing is required) if not (multiprocessing and - self.app.parallel and + self.app.parallel > 1 and self.allow_parallel and os.name == 'posix'): self._write_serial(sorted(docnames), warnings) else: - self._write_parallel(sorted(docnames), warnings, self.app.parallel) + # number of subprocesses is parallel-1 because the main process + # is busy loading doctrees and doing write_doc_serialized() + self._write_parallel(sorted(docnames), warnings, + nproc=self.app.parallel - 1) self.env.set_warnfunc(self.warn) def _write_serial(self, docnames, warnings): From c59cb9d6f64dcf5599c1943afbb32684da51cc02 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 14 Jan 2013 08:38:46 +0100 Subject: [PATCH 09/76] docs: document -j option and add changelog --- CHANGES | 3 +++ doc/invocation.rst | 9 +++++++++ 2 files changed, 12 insertions(+) diff --git a/CHANGES b/CHANGES index 910b11fee..43600a147 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,9 @@ Release 1.2 (in development) ============================ +* PR#108: Add experimental support for parallel building with a new + :option:`-j` option. + * #1070: Avoid un-pickling issues when running Python 3 and the saved environment was created under Python 2. diff --git a/doc/invocation.rst b/doc/invocation.rst index 4cfa48433..c6125ecc5 100644 --- a/doc/invocation.rst +++ b/doc/invocation.rst @@ -96,6 +96,15 @@ The :program:`sphinx-build` script has several options: the build directory; with this option you can select a different cache directory (the doctrees can be shared between all builders). +.. option:: -j N + + Distribute the build over *N* processes in parallel, to make building on + multiprocessor machines more effective. Note that not all parts and not all + builders of Sphinx can be parallelized. + + .. versionadded:: 1.2 + This option should be considered *experimental*. + .. option:: -c path Don't look for the :file:`conf.py` in the source directory, but use the given From 59dc803aba9efb1277ba06e09062c38db5e6f459 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 14 Jan 2013 08:41:41 +0100 Subject: [PATCH 10/76] builders: the text and xml builders can be parallelized too --- sphinx/builders/text.py | 1 + sphinx/builders/xml.py | 1 + 2 files changed, 2 insertions(+) diff --git a/sphinx/builders/text.py b/sphinx/builders/text.py index 98148a8c6..4b73167b1 100644 --- a/sphinx/builders/text.py +++ b/sphinx/builders/text.py @@ -23,6 +23,7 @@ class TextBuilder(Builder): name = 'text' format = 'text' out_suffix = '.txt' + allow_parallel = True def init(self): pass diff --git a/sphinx/builders/xml.py b/sphinx/builders/xml.py index ec411a79d..5c349c831 100644 --- a/sphinx/builders/xml.py +++ b/sphinx/builders/xml.py @@ -26,6 +26,7 @@ class XMLBuilder(Builder): name = 'xml' format = 'xml' out_suffix = '.xml' + allow_parallel = True _writer_class = XMLWriter From 81d21a77143d0f258885f2a93283b9df21e3ca10 Mon Sep 17 00:00:00 2001 From: Nozomu Kaneko Date: Mon, 4 Feb 2013 09:03:34 +0900 Subject: [PATCH 11/76] make versionmodified translatable --- sphinx/directives/other.py | 10 +++++++- tests/roots/test-intl/contents.txt | 1 + tests/roots/test-intl/versionchange.po | 33 +++++++++++++++++++++++++ tests/roots/test-intl/versionchange.txt | 16 ++++++++++++ tests/test_intl.py | 33 +++++++++++++++++++++++++ 5 files changed, 92 insertions(+), 1 deletion(-) create mode 100644 tests/roots/test-intl/versionchange.po create mode 100644 tests/roots/test-intl/versionchange.txt diff --git a/sphinx/directives/other.py b/sphinx/directives/other.py index 50188ea41..e8955d165 100644 --- a/sphinx/directives/other.py +++ b/sphinx/directives/other.py @@ -194,12 +194,20 @@ class VersionChange(Directive): if len(self.arguments) == 2: inodes, messages = self.state.inline_text(self.arguments[1], self.lineno+1) - node.append(nodes.paragraph('', '', *inodes)) + para = nodes.paragraph(self.arguments[1], '', *inodes) + set_source_info(self, para) + node.append(para) else: messages = [] if self.content: self.state.nested_parse(self.content, self.content_offset, node) if len(node): + if isinstance(node[0], nodes.paragraph) and node[0].rawsource: + content = nodes.inline(node[0].rawsource, translatable=True) + content.source = node[0].source + content.line = node[0].line + content += node[0].children + node[0].replace_self(nodes.paragraph('', '', content)) node[0].insert(0, nodes.inline('', '%s: ' % text)) else: para = nodes.paragraph('', '', nodes.inline('', '%s.' % text)) diff --git a/tests/roots/test-intl/contents.txt b/tests/roots/test-intl/contents.txt index a3c0e3549..b08fc3617 100644 --- a/tests/roots/test-intl/contents.txt +++ b/tests/roots/test-intl/contents.txt @@ -19,4 +19,5 @@ CONTENTS role_xref glossary_terms glossary_terms_inconsistency + versionchange docfields diff --git a/tests/roots/test-intl/versionchange.po b/tests/roots/test-intl/versionchange.po new file mode 100644 index 000000000..911d3d9f4 --- /dev/null +++ b/tests/roots/test-intl/versionchange.po @@ -0,0 +1,33 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2010, Georg Brandl & Team +# This file is distributed under the same license as the Sphinx package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: sphinx 1.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-12-15 03:17\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "i18n with versionchange" +msgstr "I18N WITH VERSIONCHANGE" + +msgid "This is the *first* paragraph of deprecated." +msgstr "THIS IS THE *FIRST* PARAGRAPH OF DEPRECATED." + +msgid "This is the *second* paragraph of deprecated." +msgstr "THIS IS THE *SECOND* PARAGRAPH OF DEPRECATED." + +msgid "This is the *first* paragraph of versionadded." +msgstr "THIS IS THE *FIRST* PARAGRAPH OF VERSIONADDED." + +msgid "This is the *first* paragraph of versionchanged." +msgstr "THIS IS THE *FIRST* PARAGRAPH OF VERSIONCHANGED." + diff --git a/tests/roots/test-intl/versionchange.txt b/tests/roots/test-intl/versionchange.txt new file mode 100644 index 000000000..4c57e14e3 --- /dev/null +++ b/tests/roots/test-intl/versionchange.txt @@ -0,0 +1,16 @@ +:tocdepth: 2 + +i18n with versionchange +============================ + +.. deprecated:: 1.0 + This is the *first* paragraph of deprecated. + + This is the *second* paragraph of deprecated. + +.. versionadded:: 1.0 + This is the *first* paragraph of versionadded. + +.. versionchanged:: 1.0 + + This is the *first* paragraph of versionchanged. diff --git a/tests/test_intl.py b/tests/test_intl.py index 77b5a5616..4ae430ca8 100644 --- a/tests/test_intl.py +++ b/tests/test_intl.py @@ -389,6 +389,39 @@ def test_i18n_index_entries(app): assert re.search(expr, result, re.M) +@with_intl_app(buildername='html', cleanenv=True) +def test_versionchange(app): + app.builder.build(['versionchange']) + result = (app.outdir / 'versionchange.html').text(encoding='utf-8') + + def get_content(result, name): + matched = re.search(r'
\n*(.*?)
' % name, + result, re.DOTALL) + if matched: + return matched.group(1) + else: + return '' + + expect1 = ( + u"""

Deprecated since version 1.0: """ + u"""THIS IS THE FIRST PARAGRAPH OF DEPRECATED.

\n""" + u"""

THIS IS THE SECOND PARAGRAPH OF DEPRECATED.

\n""") + matched_content = get_content(result, "deprecated") + assert expect1 == matched_content + + expect2 = ( + u"""

New in version 1.0: """ + u"""THIS IS THE FIRST PARAGRAPH OF VERSIONADDED.

\n""") + matched_content = get_content(result, "versionadded") + assert expect2 == matched_content + + expect3 = ( + u"""

Changed in version 1.0: """ + u"""THIS IS THE FIRST PARAGRAPH OF VERSIONCHANGED.

\n""") + matched_content = get_content(result, "versionchanged") + assert expect3 == matched_content + + @with_intl_app(buildername='text', cleanenv=True) def test_i18n_docfields(app): app.builder.build(['docfields']) From c215cae4d517a54e84f421abe70bb52f5d0003a9 Mon Sep 17 00:00:00 2001 From: "Leonardo J. Caballero G." Date: Mon, 4 Mar 2013 10:35:30 -0530 Subject: [PATCH 12/76] Added improvements about i18n for themes "basic", "haiku" and "scrolls" that Sphinx built-in. Closes #1120 --- babel.cfg | 17 ++ sphinx/locale/sphinx.pot | 279 +++++++++++------- sphinx/themes/basic/changes/frameset.html | 2 +- .../themes/basic/changes/versionchanges.html | 4 +- sphinx/themes/basic/defindex.html | 6 +- sphinx/themes/basic/genindex-single.html | 2 +- sphinx/themes/basic/layout.html | 4 +- sphinx/themes/basic/searchresults.html | 8 +- sphinx/themes/haiku/layout.html | 2 +- sphinx/themes/scrolls/layout.html | 2 +- 10 files changed, 204 insertions(+), 122 deletions(-) diff --git a/babel.cfg b/babel.cfg index 9688b8d05..4c1e71801 100644 --- a/babel.cfg +++ b/babel.cfg @@ -1,4 +1,21 @@ +# How setup this file +# http://babel.edgewall.org/wiki/Documentation/setup.html +# this file description: +# http://babel.edgewall.org/wiki/Documentation/messages.html#extraction-method-mapping-and-configuration + +# Extraction from Python source files [python: **.py] +encoding = utf-8 + +# Extraction from Jinja2 HTML templates [jinja2: **/themes/**.html] +encoding = utf-8 +ignore_tags = script,style +include_attrs = alt title summary + +# Extraction from Jinja2 XML templates [jinja2: **/themes/**.xml] + +# Extraction from JavaScript files [javascript: **.js] +[javascript: **.js_t] diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index b1d816f72..b88ca5e4a 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -1,14 +1,14 @@ # Translations template for Sphinx. -# Copyright (C) 2011 ORGANIZATION +# Copyright (C) 2013 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2011. +# FIRST AUTHOR , 2013. # #, fuzzy msgid "" msgstr "" -"Project-Id-Version: Sphinx 1.1pre/9523af9ba9aa+\n" +"Project-Id-Version: Sphinx 1.2pre/a9793de7f892+\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2011-09-21 10:06+0200\n" +"POT-Creation-Date: 2013-03-03 15:44-0530\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -22,23 +22,23 @@ msgstr "" msgid "%s %s documentation" msgstr "" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 +#: sphinx/transforms.py:51 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 #, python-format msgid "%B %d, %Y" msgstr "" -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1507 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1510 #, python-format msgid "see also %s" msgstr "" -#: sphinx/roles.py:175 +#: sphinx/roles.py:176 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" @@ -51,24 +51,24 @@ msgstr "" msgid "Module level" msgstr "" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:293 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:312 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:312 msgid "index" msgstr "" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:372 msgid "next" msgstr "" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:381 msgid "previous" msgstr "" @@ -76,41 +76,38 @@ msgstr "" msgid " (in " msgstr "" -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr "" -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "" -#: sphinx/directives/other.py:140 +#: sphinx/directives/other.py:142 msgid "Code author: " msgstr "" -#: sphinx/directives/other.py:142 +#: sphinx/directives/other.py:144 msgid "Author: " msgstr "" -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "" @@ -139,58 +136,58 @@ msgstr "" msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 msgid "function" msgstr "" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 msgid "member" msgstr "" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" msgstr "" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 msgid "variable" msgstr "" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "" -#: sphinx/domains/cpp.py:938 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "" -#: sphinx/domains/cpp.py:990 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "" @@ -205,7 +202,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -214,15 +211,15 @@ msgstr "" msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:125 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 msgid "Throws" msgstr "" -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "" @@ -234,58 +231,58 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:258 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:275 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:341 +#: sphinx/domains/python.py:340 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:344 +#: sphinx/domains/python.py:343 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" msgstr "" @@ -303,49 +300,49 @@ msgstr "" msgid "modules" msgstr "" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 msgid "class method" msgstr "" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "" -#: sphinx/domains/python.py:695 +#: sphinx/domains/python.py:696 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:57 +#: sphinx/domains/rst.py:55 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 msgid "role" msgstr "" @@ -359,67 +356,94 @@ msgstr "" msgid "%scommand line option; %s" msgstr "" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 -#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/themes/basic/genindex.html:68 sphinx/writers/latex.py:191 +#: sphinx/writers/texinfo.py:475 msgid "Index" msgstr "" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr "" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:301 sphinx/ext/graphviz.py:309 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:303 sphinx/ext/graphviz.py:311 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:70 +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 msgid "[source]" msgstr "" @@ -473,7 +497,7 @@ msgid "Note" msgstr "" #: sphinx/locale/__init__.py:162 -msgid "See Also" +msgid "See also" msgstr "" #: sphinx/locale/__init__.py:163 @@ -519,25 +543,25 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/search.html:11 +#: sphinx/themes/basic/search.html:20 sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." msgstr "" -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "" @@ -545,6 +569,18 @@ msgstr "" msgid "Overview" msgstr "" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +msgid "the documentation for" +msgstr "" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "" @@ -667,15 +703,16 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:36 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:40 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:274 msgid "Search Results" msgstr "" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:42 sphinx/themes/basic/searchresults.html:23 msgid "Your search did not match any results." msgstr "" @@ -715,25 +752,48 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:513 +#: sphinx/writers/html.py:519 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:114 +msgid "Searching" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:119 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:276 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:278 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:330 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "" @@ -741,24 +801,29 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:618 sphinx/writers/manpage.py:187 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:702 msgid "continued from previous page" msgstr "" -#: sphinx/writers/latex.py:681 +#: sphinx/writers/latex.py:708 msgid "Continued on next page" msgstr "" -#: sphinx/writers/text.py:437 +#: sphinx/writers/manpage.py:232 sphinx/writers/text.py:536 +#, python-format +msgid "[image: %s]" +msgstr "" + +#: sphinx/writers/manpage.py:233 sphinx/writers/text.py:537 msgid "[image]" msgstr "" diff --git a/sphinx/themes/basic/changes/frameset.html b/sphinx/themes/basic/changes/frameset.html index 9d9af9eb5..75e0599cb 100644 --- a/sphinx/themes/basic/changes/frameset.html +++ b/sphinx/themes/basic/changes/frameset.html @@ -2,7 +2,7 @@ "http://www.w3.org/TR/html4/frameset.dtd"> - {% trans version=version|e, docstitle=docstitle|e %}Changes in Version {{ version }} — {{ docstitle }}{% endtrans %} + {% trans version=version|e, docstitle=docstitle|e %}{{ _('Changes in Version') }} {{ version }} — {{ docstitle }}{% endtrans %} diff --git a/sphinx/themes/basic/changes/versionchanges.html b/sphinx/themes/basic/changes/versionchanges.html index 09651bf1d..c51d395e2 100644 --- a/sphinx/themes/basic/changes/versionchanges.html +++ b/sphinx/themes/basic/changes/versionchanges.html @@ -9,12 +9,12 @@ - {% trans version=version|e, docstitle=docstitle|e %}Changes in Version {{ version }} — {{ docstitle }}{% endtrans %} + {% trans version=version|e, docstitle=docstitle|e %}{{ _('Changes in Version') }} {{ version }} — {{ docstitle }}{% endtrans %}
-

{% trans version=version|e %}Automatically generated list of changes in version {{ version }}{% endtrans %}

+

{% trans version=version|e %}{{ _('Automatically generated list of changes in version') }} {{ version }}{% endtrans %}

{{ _('Library changes') }}

{% for modname, changes in libchanges %}

{{ modname }}

diff --git a/sphinx/themes/basic/defindex.html b/sphinx/themes/basic/defindex.html index 1ae9630de..c19da402b 100644 --- a/sphinx/themes/basic/defindex.html +++ b/sphinx/themes/basic/defindex.html @@ -12,9 +12,9 @@ {% block body %}

{{ docstitle|e }}

- Welcome! This is - {% block description %}the documentation for {{ project|e }} - {{ release|e }}{% if last_updated %}, last updated {{ last_updated|e }}{% endif %}{% endblock %}. + {{ _('Welcome! This is') }} + {% block description %}{{ _('the documentation for') }} {{ project|e }} + {{ release|e }}{% if last_updated %}, {{ _('last updated') }} {{ last_updated|e }}{% endif %}{% endblock %}.

{% block tables %}

{{ _('Indices and tables:') }}

diff --git a/sphinx/themes/basic/genindex-single.html b/sphinx/themes/basic/genindex-single.html index e79212516..a06714886 100644 --- a/sphinx/themes/basic/genindex-single.html +++ b/sphinx/themes/basic/genindex-single.html @@ -54,7 +54,7 @@ {% endblock %} {% block sidebarrel %} -

Index

+

{{ _('Index') }}

{% for key, dummy in genindexentries -%} {{ key }} {% if not loop.last %}| {% endif %} diff --git a/sphinx/themes/basic/layout.html b/sphinx/themes/basic/layout.html index 9e4e39a18..15ea75ebb 100644 --- a/sphinx/themes/basic/layout.html +++ b/sphinx/themes/basic/layout.html @@ -192,10 +192,10 @@ {%- endif %} {%- endif %} {%- if last_updated %} - {% trans last_updated=last_updated|e %}Last updated on {{ last_updated }}.{% endtrans %} + {% trans last_updated=last_updated|e %}{{ _('Last updated on') }} {{ last_updated }}.{% endtrans %} {%- endif %} {%- if show_sphinx %} - {% trans sphinx_version=sphinx_version|e %}Created using Sphinx {{ sphinx_version }}.{% endtrans %} + {% trans sphinx_version=sphinx_version|e %}{{ _('Created using') }} Sphinx {{ sphinx_version }}.{% endtrans %} {%- endif %}

{%- endblock %} diff --git a/sphinx/themes/basic/searchresults.html b/sphinx/themes/basic/searchresults.html index 5c42fbaeb..125338ac1 100644 --- a/sphinx/themes/basic/searchresults.html +++ b/sphinx/themes/basic/searchresults.html @@ -7,20 +7,20 @@ :copyright: Copyright 2007-2013 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. #} -

Search

+

{{ _('Search') }}

From here you can search these documents. Enter your search words into the box below and click "search".

- +
{%- if search_performed %} -

Search Results

+

{{ _('Search Results') }}

{%- if not search_results %} -

Your search did not match any results.

+

{{ _('Your search did not match any results.') }}

{%- endif %} {%- endif %}
diff --git a/sphinx/themes/haiku/layout.html b/sphinx/themes/haiku/layout.html index edbda50b2..337d0ca24 100644 --- a/sphinx/themes/haiku/layout.html +++ b/sphinx/themes/haiku/layout.html @@ -56,7 +56,7 @@
{#{%- if display_toc %}
-

Table Of Contents

+

{{ _('Table Of Contents') }}

{{ toc }}
{%- endif %}#} diff --git a/sphinx/themes/scrolls/layout.html b/sphinx/themes/scrolls/layout.html index 97f7ca1db..48e5e4e46 100644 --- a/sphinx/themes/scrolls/layout.html +++ b/sphinx/themes/scrolls/layout.html @@ -32,7 +32,7 @@
{%- if display_toc %}
-

Table Of Contents

+

{{ _('Table Of Contents') }}

{{ toc }}
{%- endif %} From 5d154606928c0fd00fd1363c3dad291e5349c172 Mon Sep 17 00:00:00 2001 From: "Leonardo J. Caballero G." Date: Mon, 4 Mar 2013 10:36:30 -0530 Subject: [PATCH 13/76] Updated Spanish translation. Closes #1118 --- sphinx/locale/es/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/es/LC_MESSAGES/sphinx.po | 494 ++++++++++++++----------- 2 files changed, 276 insertions(+), 220 deletions(-) diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.js b/sphinx/locale/es/LC_MESSAGES/sphinx.js index 8ccbc0ca8..c0e7811e7 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "es", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "Coincidencias de la b\u00fasqueda", "Permalink to this definition": "Enlazar permanentemente con esta definici\u00f3n", "Expand sidebar": "", "Permalink to this headline": "Enlazar permanentemente con este t\u00edtulo", "Collapse sidebar": ""}}); \ No newline at end of file +Documentation.addTranslations({"locale": "es", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "Coincidencias de la b\u00fasqueda", "Permalink to this definition": "Enlazar permanentemente con esta definici\u00f3n", "Expand sidebar": "Expandir barra lateral", "Permalink to this headline": "Enlazar permanentemente con este t\u00edtulo", "Collapse sidebar": "Contraer barra lateral"}}); diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.po b/sphinx/locale/es/LC_MESSAGES/sphinx.po index fda55ec73..3a45a14c7 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.po @@ -1,122 +1,116 @@ # Spanish translations for Sphinx. # Copyright (C) 2008 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2008. -# +# Guillem Borrell , 2011. +# Leonardo J. Caballero G. , 2013. msgid "" msgstr "" "Project-Id-Version: Sphinx 0.5\n" "Report-Msgid-Bugs-To: guillem@torroja.dmt.upm.es\n" -"POT-Creation-Date: 2011-09-21 10:06+0200\n" -"PO-Revision-Date: 2011-01-22 14:41+0100\n" -"Last-Translator: Guillem Borrell \n" -"Language-Team: es \n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"POT-Creation-Date: 2013-03-03 15:44-0630\n" +"PO-Revision-Date: 2013-03-03 16:26-0430\n" +"Last-Translator: Leonardo J. Caballero G. \n" +"Language-Team: Leonardo J. Caballero G.\n" +"Language: 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 0.9.6\n" #: sphinx/config.py:81 -#, fuzzy, python-format +#, python-format msgid "%s %s documentation" -msgstr "%s %s documentación" +msgstr "documentación de %s - %s" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 +#: sphinx/transforms.py:51 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 #, python-format msgid "%B %d, %Y" msgstr "%d de %B de %Y" -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1507 #, python-format msgid "see %s" msgstr "ver %s" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1510 #, python-format msgid "see also %s" msgstr "ver también %s" -#: sphinx/roles.py:175 +#: sphinx/roles.py:176 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" #: sphinx/builders/changes.py:73 -#, fuzzy msgid "Builtins" -msgstr "Funciones de base" +msgstr "Funciones incorporadas" #: sphinx/builders/changes.py:75 -#, fuzzy msgid "Module level" -msgstr "Módulos" +msgstr "Nivel de módulo" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:293 #, python-format msgid "%b %d, %Y" -msgstr "%d %b, %Y" +msgstr "%d de %B de %Y" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:312 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Índice General" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:312 msgid "index" msgstr "índice" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:372 msgid "next" msgstr "siguiente" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:381 msgid "previous" msgstr "anterior" #: sphinx/builders/latex.py:141 sphinx/builders/texinfo.py:196 msgid " (in " -msgstr "" +msgstr " (en " -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr "Autor de la sección: " -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "Autor del módulo: " -#: sphinx/directives/other.py:140 -#, fuzzy -msgid "Code author: " -msgstr "Autor del módulo: " - #: sphinx/directives/other.py:142 -msgid "Author: " -msgstr "Autor:" +msgid "Code author: " +msgstr "Código del autor: " -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "Ver también" +#: sphinx/directives/other.py:144 +msgid "Author: " +msgstr "Autor: " #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" -msgstr "" +msgstr "%s %s" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "Parámetros" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "Devuelve" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 -#, fuzzy +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" -msgstr "Tipo del argumento devuelto" +msgstr "Tipo del valor devuelto" #: sphinx/domains/c.py:141 #, python-format @@ -143,159 +137,156 @@ msgstr "%s (tipo C)" msgid "%s (C variable)" msgstr "%s (variable C)" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 msgid "function" msgstr "función" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 msgid "member" msgstr "miembro" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" -msgstr "" +msgstr "macro" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:208 -#, fuzzy +#: sphinx/domains/c.py:207 msgid "variable" -msgstr "Variable" +msgstr "variable" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "%s (clase C++)" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "%s (tipo C++)" -#: sphinx/domains/cpp.py:938 -#, fuzzy, python-format +#: sphinx/domains/cpp.py:1081 +#, python-format msgid "%s (C++ member)" msgstr "%s (miembro C++)" -#: sphinx/domains/cpp.py:990 -#, fuzzy, python-format +#: sphinx/domains/cpp.py:1137 +#, python-format msgid "%s (C++ function)" msgstr "%s (función C++)" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "clase" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 -#, fuzzy, python-format +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 +#, python-format msgid "%s() (built-in function)" -msgstr "%s() (función de base)" +msgstr "%s() (función incorporada)" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" -msgstr "%s() (%s método)" +msgstr "%s() (método de %s)" #: sphinx/domains/javascript.py:109 -#, fuzzy, python-format +#, python-format msgid "%s() (class)" -msgstr "%s (clase C++)" +msgstr "%s() (clase)" #: sphinx/domains/javascript.py:111 #, python-format msgid "%s (global variable or constant)" -msgstr "" +msgstr "%s (variable global o constante)" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" -msgstr "%s (%s atributo)" +msgstr "%s (atributo de %s)" #: sphinx/domains/javascript.py:122 -#, fuzzy msgid "Arguments" -msgstr "Parámetros" +msgstr "Argumentos" -#: sphinx/domains/javascript.py:125 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 msgid "Throws" -msgstr "" +msgstr "Lanzamientos" -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" -msgstr "" +msgstr "dato" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "atributo" #: sphinx/domains/python.py:100 -#, fuzzy msgid "Variables" -msgstr "Variable" +msgstr "Variables" #: sphinx/domains/python.py:104 msgid "Raises" msgstr "Muestra" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "%s() (en el módulo %s)" -#: sphinx/domains/python.py:258 -#, fuzzy, python-format +#: sphinx/domains/python.py:257 +#, python-format msgid "%s (built-in variable)" -msgstr "%s (variable de base)" +msgstr "%s (variable incorporada)" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "%s (en el módulo %s)" -#: sphinx/domains/python.py:275 -#, fuzzy, python-format +#: sphinx/domains/python.py:274 +#, python-format msgid "%s (built-in class)" -msgstr "%s (variable de base)" +msgstr "%s (clase incorporada)" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "%s (clase en %s)" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" -msgstr "%s() (%s.%s método)" +msgstr "%s() (método de %s.%s)" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" -msgstr "%s() (%s.%s método estático)" +msgstr "%s() (método estático de %s.%s)" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" -msgstr "%s() (%s método estático)" +msgstr "%s() (método estático de %s)" -#: sphinx/domains/python.py:341 -#, fuzzy, python-format +#: sphinx/domains/python.py:340 +#, python-format msgid "%s() (%s.%s class method)" -msgstr "%s() (%s.%s método)" +msgstr "%s() (método de clase de %s.%s)" -#: sphinx/domains/python.py:344 -#, fuzzy, python-format +#: sphinx/domains/python.py:343 +#, python-format msgid "%s() (%s class method)" -msgstr "%s() (%s método)" +msgstr "%s() (método de clase de %s)" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" -msgstr "%s (%s.%s atributo)" +msgstr "%s (atributo de %s.%s)" #: sphinx/domains/python.py:434 #, python-format @@ -303,62 +294,58 @@ msgid "%s (module)" msgstr "%s (módulo)" #: sphinx/domains/python.py:491 -#, fuzzy msgid "Python Module Index" -msgstr "Índice de Módulos" +msgstr "Índice de Módulos Python" #: sphinx/domains/python.py:492 msgid "modules" msgstr "módulos" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "excepción" -#: sphinx/domains/python.py:563 -msgid "method" -msgstr "" - #: sphinx/domains/python.py:564 -#, fuzzy -msgid "class method" -msgstr "%s() (%s método)" +msgid "method" +msgstr "método" #: sphinx/domains/python.py:565 +msgid "class method" +msgstr "método de la clase" + +#: sphinx/domains/python.py:566 msgid "static method" msgstr "método estático" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "módulo" -#: sphinx/domains/python.py:695 -#, fuzzy +#: sphinx/domains/python.py:696 msgid " (deprecated)" -msgstr "Obsoleto" +msgstr " (obsoleto)" + +#: sphinx/domains/rst.py:53 +#, python-format +msgid "%s (directive)" +msgstr "%s (directiva)" #: sphinx/domains/rst.py:55 #, python-format -msgid "%s (directive)" -msgstr "" - -#: sphinx/domains/rst.py:57 -#, fuzzy, python-format msgid "%s (role)" -msgstr "%s (módulo)" +msgstr "%s (rol)" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" -msgstr "" +msgstr "directiva" -#: sphinx/domains/rst.py:107 -#, fuzzy +#: sphinx/domains/rst.py:105 msgid "role" -msgstr "módulo" +msgstr "rol" #: sphinx/domains/std.py:70 sphinx/domains/std.py:86 #, python-format @@ -366,95 +353,121 @@ msgid "environment variable; %s" msgstr "variables de entorno; %s" #: sphinx/domains/std.py:162 -#, fuzzy, python-format +#, python-format msgid "%scommand line option; %s" -msgstr "%sOpciones en línea de comandos; %s" +msgstr "%sopción en línea de comandos; %s" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" -msgstr "" +msgstr "termino de glosario" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" -msgstr "" +msgstr "gramática simbólica" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" -msgstr "" +msgstr "etiqueta de referencia" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "variables de entorno" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" -msgstr "" +msgstr "opción de programa" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 -#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/themes/basic/genindex.html:68 sphinx/writers/latex.py:191 +#: sphinx/writers/texinfo.py:475 msgid "Index" msgstr "Índice" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "Índice de Módulos" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Página de Búsqueda" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" -msgstr "" +msgstr " Clases base: %s" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" -msgstr "" +msgstr "alias de :class:`%s`" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:301 sphinx/ext/graphviz.py:309 +#, python-format +msgid "[graph: %s]" +msgstr "[gráfica: %s]" + +#: sphinx/ext/graphviz.py:303 sphinx/ext/graphviz.py:311 +msgid "[graph]" +msgstr "[gráfica]" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "(en %s versión %s)" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "[fuente]" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "Valor de retorno: Siempre NULO." + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "Valor de retorno: Nueva referencia." + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "Valor de retorno: Referencia prestada." + +#: sphinx/ext/todo.py:42 msgid "Todo" -msgstr "" +msgstr "Por hacer" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "" +msgstr "(El <> se encuentra en %s, en la línea %d.)" -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" -msgstr "" - -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "" +msgstr "entrada original" #: sphinx/ext/viewcode.py:117 msgid "[docs]" -msgstr "" +msgstr "[documentos]" #: sphinx/ext/viewcode.py:131 -#, fuzzy msgid "Module code" -msgstr "módulo" +msgstr "Código de módulo" #: sphinx/ext/viewcode.py:137 #, python-format msgid "

Source code for %s

" -msgstr "" +msgstr "

Código fuente para %s

" #: sphinx/ext/viewcode.py:164 msgid "Overview: module code" -msgstr "" +msgstr "Resumen: código de modulo" #: sphinx/ext/viewcode.py:165 msgid "

All modules for which code is available

" -msgstr "" +msgstr "

Todos los módulos para los cuales disponen código

" #: sphinx/locale/__init__.py:155 msgid "Attention" @@ -485,8 +498,8 @@ msgid "Note" msgstr "Nota" #: sphinx/locale/__init__.py:162 -msgid "See Also" -msgstr "Ver También" +msgid "See also" +msgstr "Ver también" #: sphinx/locale/__init__.py:163 msgid "Tip" @@ -528,37 +541,48 @@ msgid "statement" msgstr "sentencia" #: sphinx/locale/__init__.py:181 -#, fuzzy msgid "built-in function" -msgstr "función de base" +msgstr "función incorporada" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" -msgstr "Contenidos" +msgstr "Tabla de Contenidos" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/search.html:11 +#: sphinx/themes/basic/search.html:20 sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Búsqueda" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "Ir a" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 -#, fuzzy +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." -msgstr "Introducir en nombre de un módulo, clase o función." +msgstr "Introduzca los términos de búsqueda o un nombre de módulo, clase o función." -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" -msgstr "Enseñar el código" +msgstr "Mostrar el código" #: sphinx/themes/basic/defindex.html:11 msgid "Overview" msgstr "Resumen" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "¡Bienvenido! Este es" + +#: sphinx/themes/basic/defindex.html:16 +#, python-format +msgid "the documentation for" +msgstr "la documentación para" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "actualizado por última vez el" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "Índices y tablas:" @@ -569,9 +593,10 @@ msgstr "Índice de contenidos completo" #: sphinx/themes/basic/defindex.html:24 msgid "lists all sections and subsections" -msgstr "Muestra todas las secciones" +msgstr "muestra todas las secciones y subsecciones" #: sphinx/themes/basic/defindex.html:26 +#, python-format msgid "search this documentation" msgstr "buscar en esta documentación" @@ -601,7 +626,7 @@ msgstr "Índice completo en una página" #: sphinx/themes/basic/genindex-split.html:16 msgid "Index pages by letter" -msgstr "Índice alfabético" +msgstr "Índice alfabético de páginas" #: sphinx/themes/basic/genindex-split.html:25 msgid "can be huge" @@ -659,7 +684,7 @@ msgstr "Tema anterior" #: sphinx/themes/basic/relations.html:13 msgid "previous chapter" -msgstr "Capítulo anterior" +msgstr "capítulo anterior" #: sphinx/themes/basic/relations.html:16 msgid "Next topic" @@ -667,38 +692,40 @@ msgstr "Próximo tema" #: sphinx/themes/basic/relations.html:18 msgid "next chapter" -msgstr "Próximo capítulo" +msgstr "próximo capítulo" #: sphinx/themes/basic/search.html:24 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" +"Por favor, active JavaScript para habilitar la funcionalidad\n" +" de búsqueda." #: sphinx/themes/basic/search.html:29 -#, fuzzy msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" " function will automatically search for all of the words. Pages\n" " containing fewer words won't appear in the result list." msgstr "" -"Este es el diálogo de búsqueda. Introduce los términos en el diálogo " -"siguiente y pulsa \"buscar\". El asistente buscará automáticamente todas" -" las palabras. Las páginas que contengan menos palabras no aparecerán en" -" la lista de resultados." +"Este es el diálogo de búsqueda. Introduce los términos en el\n" +" diálogo siguiente y pulsa \"buscar\". Note que el asistente buscará \n" +" automáticamente todas las palabras. Las páginas que contengan \n" +" menos palabras no aparecerán en la lista de resultados." -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:36 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "buscar" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:40 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:274 msgid "Search Results" msgstr "Resultados de la búsqueda" -#: sphinx/themes/basic/search.html:42 +#: sphinx/themes/basic/search.html:42 sphinx/themes/basic/searchresults.html:23 msgid "Your search did not match any results." -msgstr "Tu consulta no obtuvo ningún resultado" +msgstr "Tu consulta no obtuvo ningún resultado." #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -736,53 +763,82 @@ msgstr "Cambios en la API C" msgid "Other changes" msgstr "Otros cambios" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:513 +#: sphinx/writers/html.py:519 msgid "Permalink to this headline" msgstr "Enlazar permanentemente con este título" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "Enlazar permanentemente con esta definición" -#: sphinx/themes/basic/static/doctools.js:189 -#, fuzzy +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" -msgstr "Coincidencias de la búsqueda" +msgstr "Ocultar coincidencias de la búsqueda" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:114 +msgid "Searching" +msgstr "Buscando" + +#: sphinx/themes/basic/static/searchtools.js_t:119 +msgid "Preparing search..." +msgstr "Preparando búsqueda..." + +#: sphinx/themes/basic/static/searchtools.js_t:276 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" +"Su búsqueda no coincide con ningún documentos. Por favor, asegúrese de que " +"todas las palabras estén correctamente escritas y que usted allá " +"seleccionado las suficientes categorías." + +#: sphinx/themes/basic/static/searchtools.js_t:278 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" +"Búsqueda finalizada, encontró %s página(s) acorde con la consulta de " +"búsqueda." + +#: sphinx/themes/basic/static/searchtools.js_t:330 +msgid ", in " +msgstr ", en " + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" -msgstr "" +msgstr "Expandir barra lateral" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" -msgstr "" +msgstr "Contraer barra lateral" #: sphinx/themes/haiku/layout.html:26 msgid "Contents" -msgstr "" +msgstr "Contenidos" -#: sphinx/writers/latex.py:177 -#, fuzzy +#: sphinx/writers/latex.py:189 msgid "Release" -msgstr "Versión" +msgstr "Publicación" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:618 sphinx/writers/manpage.py:187 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" -msgstr "" +msgstr "Notas a pie de página" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:702 msgid "continued from previous page" -msgstr "" +msgstr "proviene de la página anterior" -#: sphinx/writers/latex.py:681 -#, fuzzy +#: sphinx/writers/latex.py:708 msgid "Continued on next page" -msgstr "Índice completo en una página" +msgstr "Continúa en la página siguiente" -#: sphinx/writers/text.py:437 +#: sphinx/writers/manpage.py:232 sphinx/writers/text.py:536 +#, python-format +msgid "[image: %s]" +msgstr "[imagen: %s]" + +#: sphinx/writers/manpage.py:233 sphinx/writers/text.py:537 msgid "[image]" msgstr "[imagen]" - From e8f0f0af8ee47c9c4f103260e05a08f3e59fe003 Mon Sep 17 00:00:00 2001 From: "Leonardo J. Caballero G." Date: Mon, 4 Mar 2013 10:37:22 -0530 Subject: [PATCH 14/76] Updated changelog --- CHANGES | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGES b/CHANGES index 25bbc1e26..2a95d65c5 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,11 @@ Release 1.2 (in development) ============================ +* #1120: added improvements about i18n for themes "basic", "haiku" and + "scrolls" that Sphinx built-in. Thanks to Leonardo J. Caballero G. + +* #1118: Updated Spanish translation. Thanks to Leonardo J. Caballero G. + * #1111: Fix uppercase word is not found in search when html_search_language='ja'. Thanks to tomo saito. From 2c409959ac55f6e0f258d82c96765bb7815eb475 Mon Sep 17 00:00:00 2001 From: Takayuki Shimizukawa Date: Sun, 10 Mar 2013 22:07:31 +0900 Subject: [PATCH 15/76] Add i18n capabilities for custom templates. For example: The Sphinx reference documentation in doc directory provides sphinx.pot file from ``doc/_templates/*.html`` by ``make gettext``. --- CHANGES | 4 + doc/_templates/index.html | 86 ++++++++++----------- doc/_templates/indexsidebar.html | 30 +++---- sphinx/builders/gettext.py | 58 +++++++++++++- tests/roots/test-intl/_templates/index.html | 5 ++ tests/roots/test-intl/conf.py | 3 + tests/roots/test-intl/sphinx.po | 23 ++++++ tests/test_build_gettext.py | 12 +++ tests/test_intl.py | 8 ++ 9 files changed, 167 insertions(+), 62 deletions(-) create mode 100644 tests/roots/test-intl/_templates/index.html create mode 100644 tests/roots/test-intl/sphinx.po diff --git a/CHANGES b/CHANGES index effaa10a4..01fd01e32 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,10 @@ Release 1.2 (in development) ============================ +* Add i18n capabilities for custom templates. + For example: The Sphinx reference documentation in doc directory provides + sphinx.pot file from ``doc/_templates/*.html`` by ``make gettext``. + * PR#123, #1106: Add epub_use_index configuration value. If provided, it will be used instead of html_use_index for epub builder. diff --git a/doc/_templates/index.html b/doc/_templates/index.html index cf2761545..d1955cac1 100644 --- a/doc/_templates/index.html +++ b/doc/_templates/index.html @@ -1,87 +1,87 @@ {% extends "layout.html" %} -{% set title = 'Overview' %} +{% set title = _('Overview') %} {% block body %} -

Welcome

+

{{ _('Welcome') }}

-

What users say:

-

“Cheers for a great tool that actually makes programmers want - to write documentation!”

+

{%trans%}What users say:{%endtrans%}

+

{%trans%}“Cheers for a great tool that actually makes programmers want + to write documentation!”{%endtrans%}

-

+

{%trans%} Sphinx is a tool that makes it easy to create intelligent and beautiful - documentation, written by Georg Brandl and licensed under the BSD license.

-

It was originally created for the + documentation, written by Georg Brandl and licensed under the BSD license.{%endtrans%}

+

{%trans%}It was originally created for the new Python documentation, and it has excellent facilities for the documentation of Python projects, but C/C++ is already supported as well, and it is planned to add special support for other languages as well. Of course, this site is also created from reStructuredText sources using - Sphinx! The following features should be highlighted: + Sphinx! The following features should be highlighted:{%endtrans%}

    -
  • Output formats: HTML (including Windows HTML Help), LaTeX (for - printable PDF versions), Texinfo, manual pages, plain text
  • -
  • Extensive cross-references: semantic markup and automatic links +
  • {%trans%}Output formats: HTML (including Windows HTML Help), LaTeX (for + printable PDF versions), Texinfo, manual pages, plain text{%endtrans%}
  • +
  • {%trans%}Extensive cross-references: semantic markup and automatic links for functions, classes, citations, glossary terms and similar pieces of - information
  • -
  • Hierarchical structure: easy definition of a document tree, with - automatic links to siblings, parents and children
  • -
  • Automatic indices: general index as well as a language-specific - module indices
  • -
  • Code handling: automatic highlighting using the Pygments highlighter
  • -
  • Extensions: automatic testing of code snippets, inclusion of + information{%endtrans%}
  • +
  • {%trans%}Hierarchical structure: easy definition of a document tree, with + automatic links to siblings, parents and children{%endtrans%}
  • +
  • {%trans%}Automatic indices: general index as well as a language-specific + module indices{%endtrans%}
  • +
  • {%trans%}Code handling: automatic highlighting using the Pygments highlighter{%endtrans%}
  • +
  • {%trans path=pathto('extensions')%}Extensions: automatic testing of code snippets, inclusion of docstrings from Python modules (API docs), and - more
  • + more{%endtrans%}
-

+

{%trans%} Sphinx uses reStructuredText as its markup language, and many of its strengths come from the power and straightforwardness of reStructuredText and its parsing and translating - suite, the Docutils. + suite, the Docutils.{%endtrans%}

-

Documentation

+

{%trans%}Documentation{%endtrans%}

- - + + - - + +
-

+

{%trans%} You can also download PDF versions of the Sphinx documentation: a version generated from the LaTeX Sphinx produces, and a version generated - by rst2pdf. + by rst2pdf.{%endtrans%}

-

Examples

-

Links to documentation generated with Sphinx can be found on the - Projects using Sphinx page. +

{%trans%}Examples{%endtrans%}

+

{%trans path=pathto("examples")%}Links to documentation generated with Sphinx can be found on the + Projects using Sphinx page.{%endtrans%}

-

+

{%trans%} For examples of how Sphinx source files look, use the “Show source” links on all pages of the documentation apart from this - welcome page. + welcome page.{%endtrans%}

-

You may also be interested in the very nice +

{%trans%}You may also be interested in the very nice tutorial on how to create a customized documentation using Sphinx written by the matplotlib - developers.

+ developers.{%endtrans%}

-

There is a Japanese translation - of this documentation, thanks to Yoshiki Shibukawa.

+

{%trans%}There is a Japanese translation + of this documentation, thanks to Yoshiki Shibukawa.{%endtrans%}

{% endblock %} diff --git a/doc/_templates/indexsidebar.html b/doc/_templates/indexsidebar.html index f9aa2abfe..7805b9422 100644 --- a/doc/_templates/indexsidebar.html +++ b/doc/_templates/indexsidebar.html @@ -1,32 +1,32 @@ + {%trans%}project{%endtrans%}

Download

{% if version.endswith('(hg)') %} -

This documentation is for version {{ version }}, which is - not released yet.

-

You can use it from the +

{%trans%}This documentation is for version {{ version }}, which is + not released yet.{%endtrans%}

+

{%trans%}You can use it from the Mercurial repo or look for released versions in the Python - Package Index.

+ Package Index.{%endtrans%}

{% else %} -

Current version: {{ version }}

-

Get Sphinx from the Python Package -Index, or install it with:

+

{%trans%}Current version: {{ version }}{%endtrans%}

+

{%trans%}Get Sphinx from the Python Package +Index, or install it with:{%endtrans%}

easy_install -U Sphinx
-

Latest development version docs -are also available.

+

{%trans%}Latest development version docs +are also available.{%endtrans%}

{% endif %} -

Questions? Suggestions?

+

{%trans%}Questions? Suggestions?{%endtrans%}

-

Join the Google group:

+

{%trans%}Join the Google group:{%endtrans%}

-

or come to the #pocoo channel on FreeNode.

-

You can also open an issue at the - tracker.

+

{%trans%}or come to the #pocoo channel on FreeNode.{%endtrans%}

+

{%trans%}You can also open an issue at the + tracker.{%endtrans%}

diff --git a/sphinx/builders/gettext.py b/sphinx/builders/gettext.py index 7a6e1abe6..1cede981f 100644 --- a/sphinx/builders/gettext.py +++ b/sphinx/builders/gettext.py @@ -9,16 +9,17 @@ :license: BSD, see LICENSE for details. """ -from os import path +from os import path, walk from codecs import open from datetime import datetime from collections import defaultdict +from uuid import uuid4 from sphinx.builders import Builder from sphinx.util import split_index_msg from sphinx.util.nodes import extract_messages, traverse_translatable_index -from sphinx.util.osutil import safe_relpath, ensuredir, find_catalog -from sphinx.util.console import darkgreen +from sphinx.util.osutil import safe_relpath, ensuredir, find_catalog, SEP +from sphinx.util.console import darkgreen, purple, bold from sphinx.locale import pairindextypes POHEADER = ur""" @@ -57,6 +58,17 @@ class Catalog(object): self.metadata[msg].append((origin.source, origin.line, origin.uid)) +class MsgOrigin(object): + """ + Origin holder for Catalog message origin. + """ + + def __init__(self, source, line): + self.source = source + self.line = line + self.uid = uuid4().hex + + class I18nBuilder(Builder): """ General i18n builder. @@ -101,6 +113,43 @@ class MessageCatalogBuilder(I18nBuilder): """ name = 'gettext' + def init(self): + I18nBuilder.init(self) + self.create_template_bridge() + self.templates.init(self) + + def _collect_templates(self): + template_files = set() + for template_path in self.config.templates_path: + tmpl_abs_path = path.join(self.app.srcdir, template_path) + for dirpath, dirs, files in walk(tmpl_abs_path): + for fn in files: + if fn.endswith('.html'): + filename = path.join(dirpath, fn) + filename = filename.replace(path.sep, SEP) + template_files.add(filename) + return template_files + + def _extract_from_template(self): + files = self._collect_templates() + self.info(bold('building [%s]: ' % self.name), nonl=1) + self.info('targets for %d template files' % len(files)) + + extract_translations = self.templates.environment.extract_translations + + for template in self.status_iterator(files, + 'reading templates... ', purple, len(files)): + #catalog = self.catalogs[template] + catalog = self.catalogs['sphinx'] + context = open(template, 'rt').read() #TODO: encoding + for line, meth, msg in extract_translations(context): + origin = MsgOrigin(template, line) + catalog.add(msg, origin) + + def build(self, docnames, summary=None, method='update'): + self._extract_from_template() + I18nBuilder.build(self, docnames, summary, method) + def finish(self): I18nBuilder.finish(self) data = dict( @@ -136,7 +185,8 @@ class MessageCatalogBuilder(I18nBuilder): # message contains *one* line of text ready for translation message = message.replace(u'\\', ur'\\'). \ - replace(u'"', ur'\"') + replace(u'"', ur'\"'). \ + replace(u'\n', u'\\n"\n"') pofile.write(u'msgid "%s"\nmsgstr ""\n\n' % message) finally: diff --git a/tests/roots/test-intl/_templates/index.html b/tests/roots/test-intl/_templates/index.html new file mode 100644 index 000000000..22bc0e832 --- /dev/null +++ b/tests/roots/test-intl/_templates/index.html @@ -0,0 +1,5 @@ +{% extends "layout.html" %} +{% block body %} +

{{ _('Welcome') }}

+

{%trans%}Sphinx {{ version }}{%endtrans%}

+{% endblock %} diff --git a/tests/roots/test-intl/conf.py b/tests/roots/test-intl/conf.py index 457c5056f..59ce714d9 100644 --- a/tests/roots/test-intl/conf.py +++ b/tests/roots/test-intl/conf.py @@ -5,3 +5,6 @@ import sys, os project = 'Sphinx intl ' source_suffix = '.txt' keep_warnings = True +templates_path = ['_templates'] +html_additional_pages = {'index': 'index.html'} +release = version = '2013.120' diff --git a/tests/roots/test-intl/sphinx.po b/tests/roots/test-intl/sphinx.po new file mode 100644 index 000000000..cac5d4ad2 --- /dev/null +++ b/tests/roots/test-intl/sphinx.po @@ -0,0 +1,23 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) 2012, foof +# This file is distributed under the same license as the foo package. +# FIRST AUTHOR , YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: sphinx 1.0\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2012-11-22 08:28\n" +"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"Last-Translator: FULL NAME \n" +"Language-Team: LANGUAGE \n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +msgid "Welcome" +msgstr "WELCOME" + +msgid "Sphinx %(version)s" +msgstr "SPHINX %(version)s" diff --git a/tests/test_build_gettext.py b/tests/test_build_gettext.py index f6cb4b8e2..831ef29d2 100644 --- a/tests/test_build_gettext.py +++ b/tests/test_build_gettext.py @@ -137,3 +137,15 @@ def test_gettext_index_entries(app): # unexpected msgid existent assert msgids == [] + + +@with_app(buildername='gettext', + srcdir=(test_roots / 'test-intl'), + doctreedir=(test_roots / 'test-intl' / '_build' / 'doctree')) +def test_gettext_template(app): + app.builder.build_all() + assert (app.outdir / 'sphinx.pot').isfile() + + result = (app.outdir / 'sphinx.pot').text(encoding='utf-8') + assert "Welcome" in result + assert "Sphinx %(version)s" in result diff --git a/tests/test_intl.py b/tests/test_intl.py index 77b5a5616..47e53b9e7 100644 --- a/tests/test_intl.py +++ b/tests/test_intl.py @@ -420,3 +420,11 @@ def test_i18n_docfields_html(app): app.builder.build(['docfields']) result = (app.outdir / 'docfields.html').text(encoding='utf-8') # expect no error by build + + +@with_intl_app(buildername='html') +def test_gettext_template(app): + app.builder.build_all() + result = (app.outdir / 'index.html').text(encoding='utf-8') + assert "WELCOME" in result + assert "SPHINX 2013.120" in result From 3cad43131a0bae59703e2b9a707a40ec5732a9e1 Mon Sep 17 00:00:00 2001 From: Takayuki Shimizukawa Date: Mon, 11 Mar 2013 12:44:03 +0900 Subject: [PATCH 16/76] add 'Python Wild Magic' link for EXAMPLES --- EXAMPLES | 2 ++ 1 file changed, 2 insertions(+) diff --git a/EXAMPLES b/EXAMPLES index 663ead8dd..77d1f3a1d 100644 --- a/EXAMPLES +++ b/EXAMPLES @@ -106,6 +106,8 @@ Documentation using the sphinxdoc theme * Pysparse: http://pysparse.sourceforge.net/ * PyTango: http://www.tango-controls.org/static/PyTango/latest/doc/html/index.html +* Python Wild Magic: + http://python-wild-magic.googlecode.com/svn/doc/html/index.html * Reteisi: http://www.reteisi.org/contents.html * Satchmo: http://www.satchmoproject.com/docs/dev/ * Sphinx: http://sphinx-doc.org/ From ca18e9726a0c87d76524c55966182cbd6a8ecef3 Mon Sep 17 00:00:00 2001 From: Takayuki Shimizukawa Date: Sun, 17 Mar 2013 10:55:50 +0900 Subject: [PATCH 17/76] update CHANGES --- CHANGES | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGES b/CHANGES index effaa10a4..8555abb8c 100644 --- a/CHANGES +++ b/CHANGES @@ -1,6 +1,10 @@ Release 1.2 (in development) ============================ +* PR#124: Fix paragraphs in versionmodified are ignored when it has no + dangling paragraphs. Fix wrong html output (nested

tag). Fix + versionmodified is not translatable. Thanks to Nozomu Kaneko. + * PR#123, #1106: Add epub_use_index configuration value. If provided, it will be used instead of html_use_index for epub builder. From 87391201b72f5260325bfe925787561e0cebc5ea Mon Sep 17 00:00:00 2001 From: Takayuki Shimizukawa Date: Fri, 29 Mar 2013 09:35:47 +0900 Subject: [PATCH 18/76] add 'Adobe Enterprise Toolkit' link for EXAMPLE --- EXAMPLES | 1 + 1 file changed, 1 insertion(+) diff --git a/EXAMPLES b/EXAMPLES index 77d1f3a1d..45f5d0dee 100644 --- a/EXAMPLES +++ b/EXAMPLES @@ -140,6 +140,7 @@ Documentation using another builtin theme Documentation using a custom theme/integrated in a site ------------------------------------------------------- +* Adobe Enterprise Toolkit: http://www.adobe.com/devnet-docs/acrobatetk/ * Blender: http://www.blender.org/documentation/250PythonDoc/ * Blinker: http://discorporate.us/projects/Blinker/docs/ * Classy: http://classy.pocoo.org/ From 4659e4054e4e254fdd2239069db2a5bdb2a6c793 Mon Sep 17 00:00:00 2001 From: Takayuki Shimizukawa Date: Fri, 29 Mar 2013 09:39:44 +0900 Subject: [PATCH 19/76] using proper page title for Adobe's EXAMPLE link --- EXAMPLES | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/EXAMPLES b/EXAMPLES index 45f5d0dee..eb270d93e 100644 --- a/EXAMPLES +++ b/EXAMPLES @@ -140,12 +140,12 @@ Documentation using another builtin theme Documentation using a custom theme/integrated in a site ------------------------------------------------------- -* Adobe Enterprise Toolkit: http://www.adobe.com/devnet-docs/acrobatetk/ * Blender: http://www.blender.org/documentation/250PythonDoc/ * Blinker: http://discorporate.us/projects/Blinker/docs/ * Classy: http://classy.pocoo.org/ * DEAP: http://deap.gel.ulaval.ca/doc/0.8/index.html * Django: http://docs.djangoproject.com/ +* Enterprise Toolkit for Acrobat products: http://www.adobe.com/devnet-docs/acrobatetk/ * e-cidadania: http://e-cidadania.readthedocs.org/en/latest/ * Flask: http://flask.pocoo.org/docs/ * Flask-OpenID: http://packages.python.org/Flask-OpenID/ From c4a999f682bcf686a59ebfe9e165fbcab9ab8f70 Mon Sep 17 00:00:00 2001 From: Takayuki Shimizukawa Date: Fri, 29 Mar 2013 10:45:24 +0900 Subject: [PATCH 20/76] add missing `mathjax_path` default value in document. --- doc/ext/math.rst | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/doc/ext/math.rst b/doc/ext/math.rst index 91376d15d..85e67b5b4 100644 --- a/doc/ext/math.rst +++ b/doc/ext/math.rst @@ -195,8 +195,10 @@ Sphinx. The path to the JavaScript file to include in the HTML files in order to load MathJax. - The default is the ``http://`` URL that loads the JS files from the `MathJax - CDN `_. If you want MathJax to + The default is the + ``http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML`` + URL that loads the JS files from the `MathJax CDN + `_. If you want MathJax to be available offline, you have to donwload it and set this value to a different path. From e30b1325ef0d82c769a91411bd3831cf96093de9 Mon Sep 17 00:00:00 2001 From: Takayuki Shimizukawa Date: Fri, 29 Mar 2013 10:52:52 +0900 Subject: [PATCH 21/76] Because it was thought MaxJax CDN URL has not been written intentionally, I undo the changes. See also #683. Backed out changeset 2f9a30b7d005. --- doc/ext/math.rst | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/doc/ext/math.rst b/doc/ext/math.rst index 85e67b5b4..91376d15d 100644 --- a/doc/ext/math.rst +++ b/doc/ext/math.rst @@ -195,10 +195,8 @@ Sphinx. The path to the JavaScript file to include in the HTML files in order to load MathJax. - The default is the - ``http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML`` - URL that loads the JS files from the `MathJax CDN - `_. If you want MathJax to + The default is the ``http://`` URL that loads the JS files from the `MathJax + CDN `_. If you want MathJax to be available offline, you have to donwload it and set this value to a different path. From 663599abe9b1026123ddf5e4acf898b2d7a2001a Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 29 Mar 2013 11:17:04 +0100 Subject: [PATCH 22/76] quickstart: simplify the check for the "sphinx-build" command in the Makefile The previous check called the "sphinx-build" executable on every invocation of the Makefile, which takes a nontrivial time to import all required modules. Calling "which" is much faster. --- sphinx/quickstart.py | 21 ++++++++------------- 1 file changed, 8 insertions(+), 13 deletions(-) diff --git a/sphinx/quickstart.py b/sphinx/quickstart.py index bfc6d723b..d9c5c2112 100644 --- a/sphinx/quickstart.py +++ b/sphinx/quickstart.py @@ -389,19 +389,14 @@ SPHINXBUILD = sphinx-build PAPER = BUILDDIR = %(rbuilddir)s -ifeq ($(shell $(SPHINXBUILD) 2> /dev/null; echo $$?), 127) -define MSG - - -The 'sphinx-build' command was not found. Make sure you have Sphinx -installed, then set the SPHINXBUILD environment variable to point -to the full path of the 'sphinx-build' executable. Alternatively you -may add the Sphinx directory to PATH. - -If you don't have Sphinx installed, grab it from -http://sphinx-doc.org/ -endef -$(error $(MSG)) +# User-friendly check for sphinx-build +ifeq ($(shell which $(SPHINXBUILD) >/dev/null 2>&1; echo $$?), 1) +$(error \ +The '$(SPHINXBUILD)' command was not found. Make sure you have Sphinx \ +installed, then set the SPHINXBUILD environment variable to point \ +to the full path of the '$(SPHINXBUILD)' executable. Alternatively you \ +can add the directory with the executable to your PATH. \ +If you don't have Sphinx installed, grab it from http://sphinx-doc.org/) endif # Internal variables. From 519be8ed6ea9febdc37562fd4cbf6e3b5d1e71e6 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 29 Mar 2013 11:17:34 +0100 Subject: [PATCH 23/76] html builder: rename get_object_hash to get_stable hash Also amend the docstring so that it is easier to understand the need for the function. --- sphinx/builders/html.py | 20 ++++++++------------ 1 file changed, 8 insertions(+), 12 deletions(-) diff --git a/sphinx/builders/html.py b/sphinx/builders/html.py index 198824ee2..3142fd964 100644 --- a/sphinx/builders/html.py +++ b/sphinx/builders/html.py @@ -53,20 +53,16 @@ INVENTORY_FILENAME = 'objects.inv' LAST_BUILD_FILENAME = 'last_build' -def get_object_hash(obj): +def get_stable_hash(obj): """ - In python3.3, unicode(dict_instance) retun another string per process. - get_object_hash(dict_instance) return same hash for same dict_instance. + Return a stable hash for a Python data structure. We can't just use + the md5 of str(obj) since for example dictionary items are enumerated + in unpredictable order due to hash randomization in newer Pythons. """ if isinstance(obj, dict): - return get_object_hash(list(obj.items())) - + return get_stable_hash(list(obj.items())) elif isinstance(obj, (list, tuple)): - obj = sorted(get_object_hash(o) for o in obj) - - else: # int or other objects - pass - + obj = sorted(get_stable_hash(o) for o in obj) return md5(unicode(obj).encode('utf8')).hexdigest() @@ -173,8 +169,8 @@ class StandaloneHTMLBuilder(Builder): cfgdict = dict((name, self.config[name]) for (name, desc) in self.config.values.iteritems() if desc[1] == 'html') - self.config_hash = get_object_hash(cfgdict) - self.tags_hash = get_object_hash(sorted(self.tags)) + self.config_hash = get_stable_hash(cfgdict) + self.tags_hash = get_stable_hash(sorted(self.tags)) old_config_hash = old_tags_hash = '' try: fp = open(path.join(self.outdir, '.buildinfo')) From d492aad352489842fce11d4154a882a6360b3d21 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 29 Mar 2013 11:45:07 +0100 Subject: [PATCH 24/76] docs: proofread installation document --- doc/install.rst | 156 ++++++++++++++++++++++-------------------------- 1 file changed, 70 insertions(+), 86 deletions(-) diff --git a/doc/install.rst b/doc/install.rst index d4457899e..b1e0e5b61 100644 --- a/doc/install.rst +++ b/doc/install.rst @@ -1,11 +1,12 @@ :orphan: Installing Sphinx -================== +================= -Sphinx is written by Python, you need to install Python and Sphinx. +Since Sphinx is written in the Python language, you need to install Python +(the required version is at least 2.5) and Sphinx. -Sphinx package is available as a package on the `Python Package Index +Sphinx packages are available on the `Python Package Index `_. You can also download a snapshot from the Mercurial development repository: @@ -14,7 +15,7 @@ You can also download a snapshot from the Mercurial development repository: file or * as a `.zip `_ file -There is introductions for each environments: +There are introductions for several environments: .. contents:: :depth: 1 @@ -22,145 +23,128 @@ There is introductions for each environments: :backlinks: none -Install by your own --------------------- - -If you use system installed Python or build your own Python, you can -use that python to install Sphinx. The actual command list is same as -these install. - -* `Install easy_install command`_ -* `Install Sphinx`_ - - Debian/Ubuntu: Install Sphinx using packaging system ------------------------------------------------------ +---------------------------------------------------- You may install using this command if you use Debian/Ubuntu. .. code-block:: bash - $ aptitude install python-sphinx + $ apt-get install python-sphinx + + +Other Linux distributions +------------------------- + +Most Linux distributions have Sphinx in their package repositories. Usually the +package is called "python-sphinx", "python-Sphinx" or "sphinx". Be aware that +there are two other packages with "sphinx" in their name: a speech recognition +toolkit (CMU Sphinx) and a full-text search database (Sphinx search). Mac OS X: Install Sphinx using MacPorts ----------------------------------------- +--------------------------------------- -If you use Mac OS X `MacPorts `_ , use this -command to install all software. +If you use Mac OS X `MacPorts `_, use this command to +install all necessary software. .. code-block:: bash $ sudo port install py27-sphinx -However, the execution path is not added, use select command to use -Python2.7 as default. +To set up the executable paths, use the ``port select`` command: .. code-block:: bash $ sudo port select --set python python27 $ sudo port select --set sphinx py27-sphinx -Type :command:`which sphinx-quickstart` to check the installation. +Type :command:`which sphinx-quickstart` to check if the installation was +successful. Windows: Install Python and Sphinx ------------------------------------ +---------------------------------- -Intall Python +Install Python ^^^^^^^^^^^^^^ -Almost every Windows user do not have Python, we begin Python -installation. If you already install python, please skip this section. +Most Windows users do not have Python, so we begin with the installation of +Python itself. If you have already installed Python, please skip this section. -Go to http://python.org . This site is a headquarter of the -Python. Look at Left sidebar and "Quick Links", Click "Windows -Installer" to download. +Go to http://python.org, the main download site for Python. Look at the left +sidebar and under "Quick Links", click "Windows Installer" to download. .. image:: pythonorg.png .. note:: - Currently, Python has two version, 2.X and 3.X. Sphinx-1.2 can - run under Python-2.5, 2.6, 2.7, 3.1, 3.2, 3.3. - You may get some advice from ML or other places. + Currently, Python offers two major versions, 2.x and 3.x. Sphinx 1.2 can run + under Python 2.5 to 2.7 and 3.1 to 3.3, with the recommended version being + 2.7. This chapter assumes you have installed Python 2.7. - This chapter assumes Python-2.7. - - -Follow the normal Windows installer, the Python install will be completed. +Follow the Windows installer for Python. .. image:: installpython.jpg -After installation, you have better to add PATH to the Environment -Variable in order to run Python from Command Prompt. +After installation, you better add the Python executable directories to the +environment variable ``PATH`` in order to run Python and package commands such +as ``sphinx-build`` easily from the Command Prompt. -* Right-Click the My Computer Icon and open Property Dialog -* Click Environment Variable button under detail tab -* Edit and add the path to the system variables PATH +* Right-click the "My Computer" icon and choose "Properties" +* Click the "Environment Variables" button under the "Advanced" tab -Add these variables. This is for Python-2.7. If you use another version -of Python, change the "27" number. Add these pathes separeted by ";". +* If "Path" (or "PATH") is already an entry in the "System variables" list, edit + it. If it is not present, add a new variable called "PATH". -.. list-table:: Adding PATH - :widths: 10 40 - :header-rows: 1 +* Add these paths, separating entries by ";": - * - PATH - - description - * - C:\\Python27 - - Folder which includes Python Command - * - C:\\Python27\\Scripts - - Folder which includes easy_install (described later) or sphinx commands + - ``C:\Python27`` -- this folder contains the main Python executable + - ``C:\Python27\Scripts`` -- this folder will contain executables added by + Python packages installed with easy_install (see below) -Run **Command Prompt** or enter ``cmd`` to the "search program and -files" text box. After command prompt window appear, type -``python[Enter]``. If you can get installed python version and prompt -about ``>>>``, the Python installation is succeeded. Enter ``Ctrl+Z`` -key to quit. + This is for Python 2.7. If you use another version of + Python or installed to a non-default location, change the digits "27" + accordingly. + +* Now run the **Command Prompt**. After command prompt window appear, type + ``python`` and Enter. If the Python installation was successful, the + installed Python version is printed, and you are greeted by the prompt + ``>>>``. Type ``Ctrl+Z`` and Enter to quit. -Install easy_install command -^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ +Install the easy_install command +^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ -Python has very useful :command:`easy_install` command which install 3rd -party library. +Python has a very useful :command:`easy_install` command which can download and +install 3rd-party libraries with a single command. This is provided by the +"distribute" project: http://pypi.python.org/pypi/distribute. -* http://pypi.python.org/pypi/distribute - -easy_install downloads and install software which you want to need by only -one command. - - -Save http://distribute.org/distribute_setup.py link by Right-click. -Some browsers can download just open the URL. -If you can read the file iteslf, calm down, Right-click and choose "Save". - -After download, invoke command prompt, go to the distribute_setup.py saved -directory and run this command: +To install distribute, download http://distribute.org/distribute_setup.py and +save it somewhere. After download, invoke the command prompt, go to the +directory with distribute_setup.py and run this command: .. code-block:: bat C:\> python distribute_setup.py -Now :command:`easy_insall` command is installed. OK, Let's go to the Sphinx -install! +Now distribute and its :command:`easy_install` command is installed. From there +we can go to the Sphinx install. -Install Sphinx -^^^^^^^^^^^^^^^ +Installing Sphinx with easy_install +----------------------------------- -If you finshed easy_install install, for the rest is just a moment. -Type this line. +If you finished the installation of distribute, type this line in the command +prompt: .. code-block:: bat C:\> easy_install sphinx -After installation, type :command:`sphinx-quickstart` on the command -prompt. If you get interactive messages which starts with -``Welcome to the Sphinx quickstart utility.``, -installation is succeeded. Quit by hitting ``Ctrl+C``. - -That it. Install is over. Let's go to :doc:`tutorial` to make Sphinx project. +After installation, type :command:`sphinx-build` on the command prompt. If +everything worked fine, you will get a Sphinx version number and a list of +options for this command. +That it. Installation is over. Head to :doc:`tutorial` to make a Sphinx +project. From 20da688d51870cf668e7cc9e80e0a059b1ff09f5 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 29 Mar 2013 11:49:06 +0100 Subject: [PATCH 25/76] nodes util: update docutils tracker link --- sphinx/util/nodes.py | 15 ++++++++------- 1 file changed, 8 insertions(+), 7 deletions(-) diff --git a/sphinx/util/nodes.py b/sphinx/util/nodes.py index 5a7749bef..640ef4955 100644 --- a/sphinx/util/nodes.py +++ b/sphinx/util/nodes.py @@ -10,6 +10,7 @@ """ import re +import sys from docutils import nodes @@ -234,16 +235,16 @@ def _new_copy(self): nodes.Element.copy = _new_copy -# monkey-patch Element.__repr__ to return str if include unicode. -# sf.net/tracker/?func=detail&aid=3601607&group_id=38414&atid=422030 -import sys +# monkey-patch Element.__repr__ to return str if it returns unicode. +# Was fixed in docutils since 0.10. See sf.net/p/docutils/bugs/218/. + if sys.version_info < (3,): _element_repr_orig = nodes.Element.__repr__ - - def _repr(self): + + def _new_repr(self): s = _element_repr_orig(self) if isinstance(s, unicode): return s.encode('utf-8') return s - - nodes.Element.__repr__ = _repr + + nodes.Element.__repr__ = _new_repr From 3bf631527cb8e084ea117abb3625cd7b449ace5a Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 29 Mar 2013 12:09:20 +0100 Subject: [PATCH 26/76] changelog: categorize 1.2 entries in features by component and bugfixes --- CHANGES | 305 +++++++++++++++++++++++++++----------------------------- 1 file changed, 145 insertions(+), 160 deletions(-) diff --git a/CHANGES b/CHANGES index 208b841d5..aa5e5ef39 100644 --- a/CHANGES +++ b/CHANGES @@ -1,171 +1,30 @@ Release 1.2 (in development) ============================ -* Add i18n capabilities for custom templates. - For example: The Sphinx reference documentation in doc directory provides - sphinx.pot file from ``doc/_templates/*.html`` by ``make gettext``. +There should be no backwards-incompatible changes in this version. -* PR#124: Fix paragraphs in versionmodified are ignored when it has no - dangling paragraphs. Fix wrong html output (nested

tag). Fix - versionmodified is not translatable. Thanks to Nozomu Kaneko. +Features added +-------------- -* PR#123, #1106: Add epub_use_index configuration value. - If provided, it will be used instead of html_use_index for epub builder. +* Markup -* #1111: Fix uppercase word is not found in search when - html_search_language='ja'. Thanks to tomo saito. + - The :rst:dir:`toctree` directive and the ``toctree()`` template function now + have an ``includehidden`` option that includes hidden toctree entries (bugs + #790 and #1047). A bug in the ``maxdepth`` option for the ``toctree()`` + template function has been fixed (bug #1046). + - PR#99: Strip down seealso directives to normal admonitions. This removes + their unusual CSS classes (admonition-see-also), inconsistent LaTeX + admonition title ("See Also" instead of "See also"), and spurious indentation + in the text builder. -* The ``'fontpkg'`` item in :confval:`latex_elements` now defaults to ``''`` - when the :confval:`language` uses the Cyrillic script. - Suggested by Dmitry Shachnev. +* HTML builder -* PR#114: The LaTeX writer now includes the "cmap" package by default. The - ``'cmappkg'`` item in :confval:`latex_elements` can be used to control this. - Thanks to Dmitry Shachnev. - -* New locales: #1113: Added Hebrew locale. - -* PR#115: Add ``'transition'`` item in :confval:`latex_elements` for - customizing how transitions are displayed. Thanks to Jeff Klukas. - -* #1108: The text writer now correctly numbers enumerated lists with - non-default start values (based on patch by Ewan Edwards). - -* #1074: Add environment version info to the generated search index to avoid - compatibility issues with old builds. - -* New locales: #1097: Added Basque locale. - -* Fix text builder did not respect wide/fullwidth characters: - title underline width, table layout width and text wrap width. - -* Add stub for the :confval:`keep_warnings` configuration value in the - ``conf.py`` generated by sphinx-quickstart. - -* Speed up building the search index by caching the results of the word - stemming routines. Saves about 20 seconds when building the Python - documentation. - -* #1062: sphinx.ext.autodoc use __init__ method signature for class signature. - -* PR#111: Respect add_autodoc_attrgetter() even when inherited-members is set. - Thanks to A. Jesse Jiryu Davis. - -* #1090: Fix gettext does not extract glossary terms. - -* #1070: Avoid un-pickling issues when running Python 3 and the saved - environment was created under Python 2. - -* #1069: Fixed error caused when autodoc would try to format signatures of - "partial" functions without keyword arguments (patch by Artur Gaspar). - -* The :confval:`latex_documents`, :confval:`texinfo_documents`, and - :confval:`man_pages` configuration values will be set to default values based - on the :confval:`master_doc` if not explicitly set in :file:`conf.py`. - Previously, if these values were not set, no output would be genereted by - their respective builders. - -* The :rst:dir:`toctree` directive and the ``toctree()`` template function now - have an ``includehidden`` option that includes hidden toctree entries (bugs - #790 and #1047). A bug in the ``maxdepth`` option for the ``toctree()`` - template function has been fixed (bug #1046). - -* PR#99: Strip down seealso directives to normal admonitions. This removes - their unusual CSS classes (admonition-see-also), inconsistent LaTeX - admonition title ("See Also" instead of "See also"), and spurious indentation - in the text builder. - -* sphinx-build now has a verbose option :option:`-v` which can be - repeated for greater effect. A single occurrance provides a - slightly more verbose output than normal. Two or more occurrences - of this option provides more detailed output which may be useful for - debugging. - -* sphinx-build now provides more specific error messages when called with - invalid options or arguments. - -* sphinx-build now supports the standard :option:`--help` and - :option:`--version` options. - -* #869: sphinx-build now has the option :option:`-T` for printing the full - traceback after an unhandled exception. - -* #976: Fix gettext does not extract index entries. - -* #940: Fix gettext does not extract figure caption. - -* #1067: Improve the ordering of the JavaScript search results: matches in titles - come before matches in full text, and object results are better categorized. - Also implement a pluggable search scorer. - -* Fix text writer can not handle visit_legend for figure directive contents. - -* PR#72: #975: Fix gettext does not extract definition terms before docutils 0.10.0 - -* PR#25: In inheritance diagrams, the first line of the class docstring - is now the tooltip for the class. - -* PR#47: Added :mod:`sphinx.ext.linkcode` extension. - -* PR#75: Added ``--follow-links`` option to sphinx-apidoc. - -* PR#45: The linkcheck builder now checks ``#anchor``\ s for existence. - -* PR#28: Added Hungarian translation. - -* PR#35: Added Slovak translation. - -* PR#54: Added Norwegian bokmaal translation. - -* PR#52: ``special_members`` flag to autodoc now behaves like ``members``. - -* #955: Fix i18n transformation. - -* PR#74: Fix some Russian translation. - -* PR#97: Fix footnote handling in translated documents. - -* Update to jQuery 1.7.1 and Underscore.js 1.3.1. - -* #1055: Fix web support with relative path to source directory. - -* #1053: The "rightsidebar" and "collapsiblesidebar" HTML theme options now work together. - -* #1015: Stop overriding jQuery contains() in the JavaScript. - -* #1028: Fix line block output in the text builder. - -* #1018: Fix "container" directive handling in the text builder. - -* #1012: Update Estonian translation. - -* #1010: Make pngmath images transparent by default; IE7+ should handle it. - -* #440: Fix coarse timestamp resolution in some filesystem generate wrong outdated file-list. - -* #1008: Fix test failures with Python 3.3. - -* #1029: Fix intersphinx_mapping values are not stable if mapping have plural key/value set with Python 3.3. - -* #920: Rescue PIL packaging issue that allow import Image without PIL namespace. Thanks to Marc Schlaich. - -* #1024: Improve Makefile/make.bat error message if Sphinx is not found. Thanks to anatoly techtonik. - -* #1037: Fix typos in Polish translation. Thanks to Jakub Wilk. - -* #1038: Fix cpp domain parser fails to parse C+11 "static constexpr" declarations. Thanks to Jakub Wilk. - -* #1043: Fix sphinx-quickstart asks again and again Y|N because input() return value with extra '\r' on Python-3.2.0 + Windows. Thanks to Régis Décamps. - -* #1041: Fix cpp domain parser fails to parse a const type with a modifier. - -* #958: Do not preserve ``environment.pickle`` after a failed build. - -* PR#88: Added the "Sphinx Developer's Guide" (:file:`doc/devguide.rst`) - which outlines the basic development process of the Sphinx project. - -* Added the Docutils-native XML and pseudo-XML builders. See - :class:`XMLBuilder` and :class:`PseudoXMLBuilder`. + - #1067: Improve the ordering of the JavaScript search results: matches in titles + come before matches in full text, and object results are better categorized. + Also implement a pluggable search scorer. + - #1053: The "rightsidebar" and "collapsiblesidebar" HTML theme options now work + together. + - Update to jQuery 1.7.1 and Underscore.js 1.3.1. * Texinfo builder @@ -198,6 +57,132 @@ Release 1.2 (in development) - Fixed an issue where duplicate domain indices would result in invalid output. +* LaTeX builder: + + - PR#115: Add ``'transition'`` item in :confval:`latex_elements` for + customizing how transitions are displayed. Thanks to Jeff Klukas. + - PR#114: The LaTeX writer now includes the "cmap" package by default. The + ``'cmappkg'`` item in :confval:`latex_elements` can be used to control this. + Thanks to Dmitry Shachnev. + - The ``'fontpkg'`` item in :confval:`latex_elements` now defaults to ``''`` + when the :confval:`language` uses the Cyrillic script. Suggested by Dmitry + Shachnev. + - The :confval:`latex_documents`, :confval:`texinfo_documents`, and + :confval:`man_pages` configuration values will be set to default values based + on the :confval:`master_doc` if not explicitly set in :file:`conf.py`. + Previously, if these values were not set, no output would be genereted by + their respective builders. + +* Internationalization: + + - Add i18n capabilities for custom templates. For example: The Sphinx + reference documentation in doc directory provides a ``sphinx.pot`` file with + message strings from ``doc/_templates/*.html`` when using ``make gettext``. + +* Other builders: + + - Added the Docutils-native XML and pseudo-XML builders. See + :class:`XMLBuilder` and :class:`PseudoXMLBuilder`. + - PR#45: The linkcheck builder now checks ``#anchor``\ s for existence. + - PR#123, #1106: Add epub_use_index configuration value. If provided, it will + be used instead of html_use_index for epub builder. + +* Extensions: + + - PR#52: ``special_members`` flag to autodoc now behaves like ``members``. + - PR#47: Added :mod:`sphinx.ext.linkcode` extension. + - PR#25: In inheritance diagrams, the first line of the class docstring + is now the tooltip for the class. + +* Command-line interfaces: + + - PR#75: Added ``--follow-links`` option to sphinx-apidoc. + - #869: sphinx-build now has the option :option:`-T` for printing the full + traceback after an unhandled exception. + - sphinx-build now supports the standard :option:`--help` and + :option:`--version` options. + - sphinx-build now provides more specific error messages when called with + invalid options or arguments. + - sphinx-build now has a verbose option :option:`-v` which can be repeated for + greater effect. A single occurrance provides a slightly more verbose output + than normal. Two or more occurrences of this option provides more detailed + output which may be useful for debugging. + +* Locales: + + - PR#74: Fix some Russian translation. + - PR#54: Added Norwegian bokmaal translation. + - PR#35: Added Slovak translation. + - PR#28: Added Hungarian translation. + - #1113: Add Hebrew locale. + - #1097: Add Basque locale. + - #1037: Fix typos in Polish translation. Thanks to Jakub Wilk. + - #1012: Update Estonian translation. + +* Optimizations: + + - Speed up building the search index by caching the results of the word + stemming routines. Saves about 20 seconds when building the Python + documentation. + +Documentation +------------- + +* PR#88: Added the "Sphinx Developer's Guide" (:file:`doc/devguide.rst`) + which outlines the basic development process of the Sphinx project. +* Added a detailed "Installing Sphinx" document (:file:`doc/install.rst`). + +Bugs fixed +---------- + +* PR#124: Fix paragraphs in versionmodified are ignored when it has no + dangling paragraphs. Fix wrong html output (nested ``

`` tag). Fix + versionmodified is not translatable. Thanks to Nozomu Kaneko. +* PR#111: Respect add_autodoc_attrgetter() even when inherited-members is set. + Thanks to A. Jesse Jiryu Davis. +* PR#97: Fix footnote handling in translated documents. +* Fix text writer not handling visit_legend for figure directive contents. +* Fix text builder not respecting wide/fullwidth characters: title underline + width, table layout width and text wrap width. +* #1111: Fix failure to find uppercase words in search when + :confval:`html_search_language` is 'ja'. Thanks to Tomo Saito. +* #1108: The text writer now correctly numbers enumerated lists with + non-default start values (based on patch by Ewan Edwards). +* #1090: Fix gettext not extracting glossary terms. +* #1074: Add environment version info to the generated search index to avoid + compatibility issues with old builds. +* #1070: Avoid un-pickling issues when running Python 3 and the saved + environment was created under Python 2. +* #1069: Fixed error caused when autodoc would try to format signatures of + "partial" functions without keyword arguments (patch by Artur Gaspar). +* #1062: sphinx.ext.autodoc use __init__ method signature for class signature. +* #1055: Fix web support with relative path to source directory. +* #1043: Fix sphinx-quickstart asking again for yes/no questions because + ``input()`` returns values with an extra '\r' on Python 3.2.0 + + Windows. Thanks to Régis Décamps. +* #1041: Fix failure of the cpp domain parser to parse a const type with a + modifier. +* #1038: Fix failure of the cpp domain parser to parse C+11 "static constexpr" + declarations. Thanks to Jakub Wilk. +* #1029: Fix intersphinx_mapping values not being stable if the mapping has + plural key/value set with Python 3.3. +* #1028: Fix line block output in the text builder. +* #1024: Improve Makefile/make.bat error message if Sphinx is not found. Thanks + to Anatoly Techtonik. +* #1018: Fix "container" directive handling in the text builder. +* #1015: Stop overriding jQuery contains() in the JavaScript. +* #1010: Make pngmath images transparent by default; IE7+ should handle it. +* #1008: Fix test failures with Python 3.3. +* #976: Fix gettext does not extract index entries. +* PR#72: #975: Fix gettext not extracting definition terms before docutils 0.10. +* #958: Do not preserve ``environment.pickle`` after a failed build. +* #955: Fix i18n transformation. +* #940: Fix gettext does not extract figure caption. +* #920: Fix PIL packaging issue that allowed to import ``Image`` without PIL + namespace. Thanks to Marc Schlaich. +* #440: Fix coarse timestamp resolution in some filesystem generating a wrong + list of outdated files. + Release 1.1.3 (Mar 10, 2012) ============================ From 63463eed979e692570dfc821da21d9661f7e16b4 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 29 Mar 2013 12:12:21 +0100 Subject: [PATCH 27/76] std domain: better name for local variable --- sphinx/domains/std.py | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/sphinx/domains/std.py b/sphinx/domains/std.py index 011a12bf3..8769309b8 100644 --- a/sphinx/domains/std.py +++ b/sphinx/domains/std.py @@ -307,13 +307,13 @@ class Glossary(Directive): # add an index entry too indexnode = addnodes.index() indexnode['entries'] = [('single', termtext, new_id, 'main')] - _termnodes = [] - _termnodes.append(indexnode) - _termnodes.extend(res[0]) - _termnodes.append(addnodes.termsep()) - for termnode in _termnodes: + new_termnodes = [] + new_termnodes.append(indexnode) + new_termnodes.extend(res[0]) + new_termnodes.append(addnodes.termsep()) + for termnode in new_termnodes: termnode.source, termnode.line = source, lineno - termnodes.extend(_termnodes) + termnodes.extend(new_termnodes) # make a single "term" node with all the terms, separated by termsep # nodes (remove the dangling trailing separator) term = nodes.term('', '', *termnodes[:-1]) From 1d192dbe6ea977e940249c823ebf5a4c3722cdbd Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 29 Mar 2013 12:34:57 +0100 Subject: [PATCH 28/76] nodes utils: remove monkey-patch that is in docutils >=0.7 --- sphinx/util/nodes.py | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/sphinx/util/nodes.py b/sphinx/util/nodes.py index 640ef4955..62ad5d773 100644 --- a/sphinx/util/nodes.py +++ b/sphinx/util/nodes.py @@ -216,18 +216,6 @@ def set_role_source_info(inliner, lineno, node): # docutils 0.9+ node.source, node.line = inliner.reporter.get_source_and_line(lineno) -# monkey-patch Node.__contains__ to get consistent "in" operator behavior -# across docutils versions - -def _new_contains(self, key): - # support both membership test for children and attributes - # (has_key is translated to "in" by 2to3) - if isinstance(key, basestring): - return key in self.attributes - return key in self.children - -nodes.Node.__contains__ = _new_contains - # monkey-patch Element.copy to copy the rawsource def _new_copy(self): From 3d0b924e70d9e17a9ce928417b507d221c5f7a7f Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 29 Mar 2013 12:28:38 +0100 Subject: [PATCH 29/76] remove xfileref_role() and directive_dwim() which were deprecated in 1.0 --- CHANGES | 6 +++++- sphinx/roles.py | 8 -------- sphinx/util/compat.py | 10 ---------- 3 files changed, 5 insertions(+), 19 deletions(-) diff --git a/CHANGES b/CHANGES index aa5e5ef39..e9a401f9c 100644 --- a/CHANGES +++ b/CHANGES @@ -1,7 +1,11 @@ Release 1.2 (in development) ============================ -There should be no backwards-incompatible changes in this version. +Incompatible changes +-------------------- + +* Removed ``sphinx.util.compat.directive_dwim()`` and + ``sphinx.roles.xfileref_role()`` which were deprecated since version 1.0. Features added -------------- diff --git a/sphinx/roles.py b/sphinx/roles.py index 02c5ad8fc..6703b6b8b 100644 --- a/sphinx/roles.py +++ b/sphinx/roles.py @@ -10,7 +10,6 @@ """ import re -import warnings from docutils import nodes, utils from docutils.parsers.rst import roles @@ -316,10 +315,3 @@ specific_docroles = { for rolename, func in specific_docroles.iteritems(): roles.register_local_role(rolename, func) - - -# backwards compatibility alias -def xfileref_role(*args, **kwds): - warnings.warn('xfileref_role is deprecated, use XRefRole', - DeprecationWarning, stacklevel=2) - return XRefRole()(*args, **kwds) diff --git a/sphinx/util/compat.py b/sphinx/util/compat.py index 916f6fa3b..946230799 100644 --- a/sphinx/util/compat.py +++ b/sphinx/util/compat.py @@ -33,14 +33,4 @@ def make_admonition(node_class, name, arguments, options, content, lineno, state.nested_parse(content, content_offset, admonition_node) return [admonition_node] - -# backwards-compatibility aliases for helpers in older Sphinx versions that -# supported the docutils 0.4 directive function interface - from docutils.parsers.rst import Directive - -def directive_dwim(obj): - import warnings - warnings.warn('directive_dwim is deprecated and no longer needed', - DeprecationWarning, stacklevel=2) - return obj From fddb49204459f41f3ca098e329033c5c7c089414 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 29 Mar 2013 12:31:14 +0100 Subject: [PATCH 30/76] all: provide docutils version in sphinx.util.compat --- sphinx/__init__.py | 19 +++++++------------ sphinx/transforms.py | 14 ++++---------- sphinx/util/compat.py | 3 +++ 3 files changed, 14 insertions(+), 22 deletions(-) diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 0c68ad322..88d47cd11 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -39,19 +39,8 @@ if '+' in __version__ or 'pre' in __version__: def main(argv=sys.argv): """Sphinx build "main" command-line entry.""" if sys.version_info[:3] < (2, 5, 0): - sys.stderr.write('Error: Sphinx requires at least ' - 'Python 2.5 to run.\n') + sys.stderr.write('Error: Sphinx requires at least Python 2.5 to run.\n') return 1 - if sys.version_info[:3] >= (3, 3, 0): - try: - import docutils - x, y = docutils.__version__.split('.')[:2] - if (int(x), int(y)) < (0, 10): - sys.stderr.write('Error: Sphinx requires at least ' - 'Docutils 0.10 for Python 3.3 and above.\n') - return 1 - except Exception: - pass try: from sphinx import cmdline except ImportError: @@ -78,6 +67,12 @@ def main(argv=sys.argv): sys.stderr.write(hint) return 1 raise + if sys.version_info[:3] >= (3, 3, 0): + from sphinx.util.compat import docutils_version + if docutils_version < (0, 10): + sys.stderr.write('Error: Sphinx requires at least ' + 'Docutils 0.10 for Python 3.3 and above.\n') + return 1 return cmdline.main(argv) diff --git a/sphinx/transforms.py b/sphinx/transforms.py index 97721eb5e..26495a099 100644 --- a/sphinx/transforms.py +++ b/sphinx/transforms.py @@ -22,6 +22,7 @@ from sphinx.locale import _, init as init_locale from sphinx.util import split_index_msg from sphinx.util.nodes import traverse_translatable_index, extract_messages from sphinx.util.osutil import ustrftime, find_catalog +from sphinx.util.compat import docutils_version from sphinx.util.pycompat import all @@ -131,21 +132,14 @@ class CustomLocaleReporter(object): """ Replacer for document.reporter.get_source_and_line method. - reST text lines for translation not have original source line number. - This class provide correct line number at reporting. + reST text lines for translation do not have the original source line number. + This class provides the correct line numbers when reporting. """ def __init__(self, source, line): self.source, self.line = source, line - try: - from docutils import __version__ as du_version - v = tuple([int(x) for x in du_version.split('.')[:2]]) - except ImportError: - v = (99, 99) - self.du_version = v - def set_reporter(self, document): - if self.du_version < (0, 9): + if docutils_version < (0, 9): document.reporter.locator = self.get_source_and_line else: document.reporter.get_source_and_line = self.get_source_and_line diff --git a/sphinx/util/compat.py b/sphinx/util/compat.py index 946230799..4b7cbf6dc 100644 --- a/sphinx/util/compat.py +++ b/sphinx/util/compat.py @@ -11,6 +11,9 @@ from docutils import nodes +from docutils import __version__ as _du_version +docutils_version = tuple(int(x) for x in _du_version.split('.')[:2]) + def make_admonition(node_class, name, arguments, options, content, lineno, content_offset, block_text, state, state_machine): #if not content: From 2b5a1476c88e5464f385247c381d9f782ba693e4 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 29 Mar 2013 12:38:57 +0100 Subject: [PATCH 31/76] text writer: docstring proofreading --- sphinx/writers/text.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sphinx/writers/text.py b/sphinx/writers/text.py index 14d7c9522..d2c2fcba8 100644 --- a/sphinx/writers/text.py +++ b/sphinx/writers/text.py @@ -32,8 +32,8 @@ class TextWrapper(textwrap.TextWrapper): def _wrap_chunks(self, chunks): """_wrap_chunks(chunks : [string]) -> [string] - Original _wrap_chunks use len() to calculate width. - This method respect to wide/fullwidth characters for width adjustment. + The original _wrap_chunks uses len() to calculate width. + This method respects wide/fullwidth characters for width adjustment. """ drop_whitespace = getattr(self, 'drop_whitespace', True) #py25 compat lines = [] From c010bf7cc29cf499824089dc03d22406d8c21b5f Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 29 Mar 2013 12:47:42 +0100 Subject: [PATCH 32/76] locale: compile message catalogs --- sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 8194 -> 8194 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 11033 -> 11033 bytes 2 files changed, 0 insertions(+), 0 deletions(-) diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo index 8e3614a3ff769742ed797e06d738f96eea566f0c..0eb33445d751053b45b901b946c57b3d6469bc7d 100644 GIT binary patch delta 23 ecmZp2XmZ%FK#0p&*T_=A(8$WfeDf-y2wnhIW(K$b delta 23 ecmZp2XmZ%FK#0po*T7uC(89{ZV)H7Y2wnhIVFtPY diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index 5a0cabce95c02e23f85cde8630805ccfeb1bfb54..04228e8b6712c932f9cf3a75093d4dd666cb548d 100644 GIT binary patch delta 23 ecmbOkHZyF)X;Cg?T_Z~cLnA8_^UYU9T|@z4#0O#k delta 23 ecmbOkHZyF)X;CgCT?2CkLklYti_KR>T|@z4zXxOh From dea5b77bb369621481266f7b79e3c2c6c189a769 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 29 Mar 2013 12:49:53 +0100 Subject: [PATCH 33/76] docs: add versionadded to epub_use_index confval --- doc/config.rst | 2 ++ 1 file changed, 2 insertions(+) diff --git a/doc/config.rst b/doc/config.rst index 882b30a03..a883e05b4 100644 --- a/doc/config.rst +++ b/doc/config.rst @@ -954,6 +954,8 @@ the `Dublin Core metadata `_. :confval:`html_use_index` option but can be set independently for epub creation. + .. versionadded:: 1.2 + .. _latex-options: Options for LaTeX output From a765d4c4794eaafedc184c185f9f09fda4a9c2d4 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 29 Mar 2013 12:51:52 +0100 Subject: [PATCH 34/76] changelog: add missing entry for PR#122 --- CHANGES | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGES b/CHANGES index e9a401f9c..5a00ded76 100644 --- a/CHANGES +++ b/CHANGES @@ -6,6 +6,8 @@ Incompatible changes * Removed ``sphinx.util.compat.directive_dwim()`` and ``sphinx.roles.xfileref_role()`` which were deprecated since version 1.0. +* PR#122: the files given in :confval:`latex_additional_files` now override TeX + files included by Sphinx, such as ``sphinx.sty``. Features added -------------- From 00beefb6d7c388a4240d6b5b9f1cdf4e8e64422f Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 29 Mar 2013 12:55:58 +0100 Subject: [PATCH 35/76] changelog: add more backwards incompatible changes --- CHANGES | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 5a00ded76..78b1a24b9 100644 --- a/CHANGES +++ b/CHANGES @@ -8,6 +8,12 @@ Incompatible changes ``sphinx.roles.xfileref_role()`` which were deprecated since version 1.0. * PR#122: the files given in :confval:`latex_additional_files` now override TeX files included by Sphinx, such as ``sphinx.sty``. +* PR#124: the node generated by :rst:dir:`versionadded`, + :rst:dir:`versionchanged` and :rst:dir:`deprecated` directives now includes + all added markup (such as "New in version X") as child nodes, and no + additional text must be generated by writers. +* PR#99: the :rst:dir:`seealso` directive now generates admonition nodes instead + of the custom ``seealso`` node. Features added -------------- @@ -142,8 +148,8 @@ Bugs fixed ---------- * PR#124: Fix paragraphs in versionmodified are ignored when it has no - dangling paragraphs. Fix wrong html output (nested ``

`` tag). Fix - versionmodified is not translatable. Thanks to Nozomu Kaneko. + dangling paragraphs. Fix wrong html output (nested ``

`` tag). Fix + versionmodified is not translatable. Thanks to Nozomu Kaneko. * PR#111: Respect add_autodoc_attrgetter() even when inherited-members is set. Thanks to A. Jesse Jiryu Davis. * PR#97: Fix footnote handling in translated documents. From b0381f97f877f9c3c0d005dbabde24a4fd979714 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 29 Mar 2013 13:05:49 +0100 Subject: [PATCH 36/76] changelog: split off older changes (pre-1.0) to a CHANGES.old file --- CHANGES | 1251 +-------------------------------------------------- CHANGES.old | 1249 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 1254 insertions(+), 1246 deletions(-) create mode 100644 CHANGES.old diff --git a/CHANGES b/CHANGES index 8ea3b270e..907d2b054 100644 --- a/CHANGES +++ b/CHANGES @@ -839,1250 +839,9 @@ Features added "striptags" Jinja filter. -Release 0.6.7 (Jun 05, 2010) -============================ +Previous versions +================= -* #440: Remove usage of a Python >= 2.5 API in the ``literalinclude`` - directive. - -* Fix a bug that prevented some references being generated in the - LaTeX builder. - -* #428: Add some missing CSS styles for standard docutils classes. - -* #432: Fix UnicodeErrors while building LaTeX in translated locale. - - -Release 0.6.6 (May 25, 2010) -============================ - -* Handle raw nodes in the ``text`` writer. - -* Fix a problem the Qt help project generated by the ``qthelp`` - builder that would lead to no content being displayed in the Qt - Assistant. - -* #393: Fix the usage of Unicode characters in mathematic formulas - when using the ``pngmath`` extension. - -* #404: Make ``\and`` work properly in the author field of the - ``latex_documents`` setting. - -* #409: Make the ``highlight_language`` config value work properly - in the LaTeX builder. - -* #418: Allow relocation of the translation JavaScript files to - the system directory on Unix systems. - -* #414: Fix handling of Windows newlines in files included with - the ``literalinclude`` directive. - -* #377: Fix crash in linkcheck builder. - -* #387: Fix the display of search results in ``dirhtml`` output. - -* #376: In autodoc, fix display of parameter defaults containing - backslashes. - -* #370: Fix handling of complex list item labels in LaTeX output. - -* #374: Make the ``doctest_path`` config value of the doctest - extension actually work. - -* Fix the handling of multiple toctrees when creating the global - TOC for the ``toctree()`` template function. - -* Fix the handling of hidden toctrees when creating the global TOC - for the ``toctree()`` template function. - -* Fix the handling of nested lists in the text writer. - -* #362: In autodoc, check for the existence of ``__self__`` on - function objects before accessing it. - -* #353: Strip leading and trailing whitespace when extracting - search words in the search function. - - -Release 0.6.5 (Mar 01, 2010) -============================ - -* In autodoc, fix the omission of some module members explicitly - documented using documentation comments. - -* #345: Fix cropping of sidebar scroll bar with ``stickysidebar`` - option of the default theme. - -* #341: Always generate UNIX newlines in the quickstart Makefile. - -* #338: Fix running with ``-C`` under Windows. - -* In autodoc, allow customizing the signature of an object where - the built-in mechanism fails. - -* #331: Fix output for enumerated lists with start values in LaTeX. - -* Make the ``start-after`` and ``end-before`` options to the - ``literalinclude`` directive work correctly if not used together. - -* #321: Fix link generation in the LaTeX builder. - - -Release 0.6.4 (Jan 12, 2010) -============================ - -* Improve the handling of non-Unicode strings in the configuration. - -* #316: Catch OSErrors occurring when calling graphviz with - arguments it doesn't understand. - -* Restore compatibility with Pygments >= 1.2. - -* #295: Fix escaping of hyperref targets in LaTeX output. - -* #302: Fix links generated by the ``:doc:`` role for LaTeX output. - -* #286: collect todo nodes after the whole document has been read; - this allows placing substitution references in todo items. - -* #294: do not ignore an explicit ``today`` config value in a - LaTeX build. - -* The ``alt`` text of inheritance diagrams is now much cleaner. - -* Ignore images in section titles when generating link captions. - -* #310: support exception messages in the ``testoutput`` blocks of - the ``doctest`` extension. - -* #293: line blocks are styled properly in HTML output. - -* #285: make the ``locale_dirs`` config value work again. - -* #303: ``html_context`` values given on the command line via ``-A`` - should not override other values given in conf.py. - -* Fix a bug preventing incremental rebuilds for the ``dirhtml`` - builder. - -* #299: Fix the mangling of quotes in some literal blocks. - -* #292: Fix path to the search index for the ``dirhtml`` builder. - -* Fix a Jython compatibility issue: make the dependence on the - ``parser`` module optional. - -* #238: In autodoc, catch all errors that occur on module import, - not just ``ImportError``. - -* Fix the handling of non-data, but non-method descriptors in autodoc. - -* When copying file times, ignore OSErrors raised by ``os.utime()``. - - -Release 0.6.3 (Sep 03, 2009) -============================ - -* Properly add C module filenames as dependencies in autodoc. - -* #253: Ignore graphviz directives without content instead of - raising an unhandled exception. - -* #241: Fix a crash building LaTeX output for documents that contain - a todolist directive. - -* #252: Make it easier to change the build dir in the Makefiles - generated by quickstart. - -* #220: Fix CSS so that displaymath really is centered. - -* #222: Allow the "Footnotes" header to be translated. - -* #225: Don't add whitespace in generated HTML after inline tags. - -* #227: Make ``literalinclude`` work when the document's path - name contains non-ASCII characters. - -* #229: Fix autodoc failures with members that raise errors - on ``getattr()``. - -* #205: When copying files, don't copy full stat info, only - modification times. - -* #232: Support non-ASCII metadata in Qt help builder. - -* Properly format bullet lists nested in definition lists for LaTeX. - -* Section titles are now allowed inside ``only`` directives. - -* #201: Make ``centered`` directive work in LaTeX output. - -* #206: Refuse to overwrite an existing master document in - sphinx-quickstart. - -* #208: Use MS-sanctioned locale settings, determined by the - ``language`` config option, in the HTML help builder. - -* #210: Fix nesting of HTML tags for displayed math from pngmath - extension. - -* #213: Fix centering of images in LaTeX output. - -* #211: Fix compatibility with docutils 0.5. - - -Release 0.6.2 (Jun 16, 2009) -============================ - -* #130: Fix obscure IndexError in doctest extension. - -* #167: Make glossary sorting case-independent. - -* #196: Add a warning if an extension module doesn't have a - ``setup()`` function. - -* #158: Allow '..' in template names, and absolute template paths; - Jinja 2 by default disables both. - -* When highlighting Python code, ignore extra indentation before - trying to parse it as Python. - -* #191: Don't escape the tilde in URIs in LaTeX. - -* Don't consider contents of source comments for the search index. - -* Set the default encoding to ``utf-8-sig`` to handle files with a - UTF-8 BOM correctly. - -* #178: apply ``add_function_parentheses`` config value to C - functions as promised. - -* #173: Respect the docutils ``title`` directive. - -* #172: The ``obj`` role now links to modules as promised. - -* #19: Tables now can have a "longtable" class, in order to get - correctly broken into pages in LaTeX output. - -* Look for Sphinx message catalogs in the system default path before - trying ``sphinx/locale``. - -* Fix the search for methods via "classname.methodname". - -* #155: Fix Python 2.4 compatibility: exceptions are old-style - classes there. - -* #150: Fix display of the "sphinxdoc" theme on Internet Explorer - versions 6 and 7. - -* #146: Don't fail to generate LaTeX when the user has an active - ``.docutils`` configuration. - -* #29: Don't generate visible "-{-}" in option lists in LaTeX. - -* Fix cross-reference roles when put into substitutions. - -* Don't put image "alt" text into table-of-contents entries. - -* In the LaTeX writer, do not raise an exception on too many section - levels, just use the "subparagraph" level for all of them. - -* #145: Fix autodoc problem with automatic members that refuse to be - getattr()'d from their parent. - -* If specific filenames to build are given on the command line, - check that they are within the source directory. - -* Fix autodoc crash for objects without a ``__name__``. - -* Fix intersphinx for installations without urllib2.HTTPSHandler. - -* #134: Fix pending_xref leftover nodes when using the todolist - directive from the todo extension. - - -Release 0.6.1 (Mar 26, 2009) -============================ - -* #135: Fix problems with LaTeX output and the graphviz extension. - -* #132: Include the autosummary "module" template in the distribution. - - -Release 0.6 (Mar 24, 2009) -========================== - -New features added ------------------- - -* Incompatible changes: - - - Templating now requires the Jinja2 library, which is an enhanced - version of the old Jinja1 engine. Since the syntax and semantic - is largely the same, very few fixes should be necessary in - custom templates. - - - The "document" div tag has been moved out of the ``layout.html`` - template's "document" block, because the closing tag was already - outside. If you overwrite this block, you need to remove your - "document" div tag as well. - - - The ``autodoc_skip_member`` event now also gets to decide - whether to skip members whose name starts with underscores. - Previously, these members were always automatically skipped. - Therefore, if you handle this event, add something like this - to your event handler to restore the old behavior:: - - if name.startswith('_'): - return True - -* Theming support, see the new section in the documentation. - -* Markup: - - - Due to popular demand, added a ``:doc:`` role which directly - links to another document without the need of creating a - label to which a ``:ref:`` could link to. - - - #4: Added a ``:download:`` role that marks a non-document file - for inclusion into the HTML output and links to it. - - - Added an ``only`` directive that can selectively include text - based on enabled "tags". Tags can be given on the command - line. Also, the current builder output format (e.g. "html" or - "latex") is always a defined tag. - - - #10: Added HTML section numbers, enabled by giving a - ``:numbered:`` flag to the ``toctree`` directive. - - - #114: Added an ``abbr`` role to markup abbreviations and - acronyms. - - - The ``literalinclude`` directive now supports several more - options, to include only parts of a file. - - - The ``toctree`` directive now supports a ``:hidden:`` flag, - which will prevent links from being generated in place of - the directive -- this allows you to define your document - structure, but place the links yourself. - - - #123: The ``glossary`` directive now supports a ``:sorted:`` - flag that sorts glossary entries alphabetically. - - - Paths to images, literal include files and download files - can now be absolute (like ``/images/foo.png``). They are - treated as relative to the top source directory. - - - #52: There is now a ``hlist`` directive, creating a compact - list by placing distributing items into multiple columns. - - - #77: If a description environment with info field list only - contains one ``:param:`` entry, no bullet list is generated. - - - #6: Don't generate redundant ``

    `` for top-level TOC tree - items, which leads to a visual separation of TOC entries. - - - #23: Added a ``classmethod`` directive along with ``method`` - and ``staticmethod``. - - - Scaled images now get a link to the unscaled version. - - - SVG images are now supported in HTML (via ```` and - ```` tags). - - - Added a ``toctree`` callable to the templates, and the ability - to include external links in toctrees. The 'collapse' keyword - argument indicates whether or not to only display subitems of - the current page. (Defaults to True.) - -* Configuration: - - - The new config value ``rst_epilog`` can contain reST that is - appended to each source file that is read. This is the right - place for global substitutions. - - - The new ``html_add_permalinks`` config value can be used to - switch off the generated "paragraph sign" permalinks for each - heading and definition environment. - - - The new ``html_show_sourcelink`` config value can be used to - switch off the links to the reST sources in the sidebar. - - - The default value for ``htmlhelp_basename`` is now the project - title, cleaned up as a filename. - - - The new ``modindex_common_prefix`` config value can be used to - ignore certain package names for module index sorting. - - - The new ``trim_footnote_reference_space`` config value mirrors - the docutils config value of the same name and removes the - space before a footnote reference that is necessary for reST - to recognize the reference. - - - The new ``latex_additional_files`` config value can be used to - copy files (that Sphinx doesn't copy automatically, e.g. if they - are referenced in custom LaTeX added in ``latex_elements``) to - the build directory. - -* Builders: - - - The HTML builder now stores a small file named ``.buildinfo`` in - its output directory. It stores a hash of config values that - can be used to determine if a full rebuild needs to be done (e.g. - after changing ``html_theme``). - - - New builder for Qt help collections, by Antonio Valentino. - - - The new ``DirectoryHTMLBuilder`` (short name ``dirhtml``) creates - a separate directory for every page, and places the page there - in a file called ``index.html``. Therefore, page URLs and links - don't need to contain ``.html``. - - - The new ``html_link_suffix`` config value can be used to select - the suffix of generated links between HTML files. - - - #96: The LaTeX builder now supports figures wrapped by text, when - using the ``figwidth`` option and right/left alignment. - -* New translations: - - - Italian by Sandro Dentella. - - Ukrainian by Petro Sasnyk. - - Finnish by Jukka Inkeri. - - Russian by Alexander Smishlajev. - -* Extensions and API: - - - New ``graphviz`` extension to embed graphviz graphs. - - - New ``inheritance_diagram`` extension to embed... inheritance - diagrams! - - - New ``autosummary`` extension that generates summaries of - modules and automatic documentation of modules. - - - Autodoc now has a reusable Python API, which can be used to - create custom types of objects to auto-document (e.g. Zope - interfaces). See also ``Sphinx.add_autodocumenter()``. - - - Autodoc now handles documented attributes. - - - Autodoc now handles inner classes and their methods. - - - Autodoc can document classes as functions now if explicitly - marked with `autofunction`. - - - Autodoc can now exclude single members from documentation - via the ``exclude-members`` option. - - - Autodoc can now order members either alphabetically (like - previously) or by member type; configurable either with the - config value ``autodoc_member_order`` or a ``member-order`` - option per directive. - - - The function ``Sphinx.add_directive()`` now also supports - docutils 0.5-style directive classes. If they inherit from - ``sphinx.util.compat.Directive``, they also work with - docutils 0.4. - - - There is now a ``Sphinx.add_lexer()`` method to be able to use - custom Pygments lexers easily. - - - There is now ``Sphinx.add_generic_role()`` to mirror the - docutils' own function. - -* Other changes: - - - Config overrides for single dict keys can now be given on the - command line. - - - There is now a ``doctest_global_setup`` config value that can - be used to give setup code for all doctests in the documentation. - - - Source links in HTML are now generated with ``rel="nofollow"``. - - - Quickstart can now generate a Windows ``make.bat`` file. - - - #62: There is now a ``-w`` option for sphinx-build that writes - warnings to a file, in addition to stderr. - - - There is now a ``-W`` option for sphinx-build that turns warnings - into errors. - - -Release 0.5.2 (Mar 24, 2009) -============================ - -* Properly escape ``|`` in LaTeX output. - -* #71: If a decoding error occurs in source files, print a - warning and replace the characters by "?". - -* Fix a problem in the HTML search if the index takes too long - to load. - -* Don't output system messages while resolving, because they - would stay in the doctrees even if keep_warnings is false. - -* #82: Determine the correct path for dependencies noted by - docutils. This fixes behavior where a source with dependent - files was always reported as changed. - -* Recognize toctree directives that are not on section toplevel, - but within block items, such as tables. - -* Use a new RFC base URL, since rfc.org seems down. - -* Fix a crash in the todolist directive when no todo items are - defined. - -* Don't call LaTeX or dvipng over and over again if it was not - found once, and use text-only latex as a substitute in that case. - -* Fix problems with footnotes in the LaTeX output. - -* Prevent double hyphens becoming en-dashes in literal code in - the LaTeX output. - -* Open literalinclude files in universal newline mode to allow - arbitrary newline conventions. - -* Actually make the ``-Q`` option work. - -* #86: Fix explicit document titles in toctrees. - -* #81: Write environment and search index in a manner that is safe - from exceptions that occur during dumping. - -* #80: Fix UnicodeErrors when a locale is set with setlocale(). - - -Release 0.5.1 (Dec 15, 2008) -============================ - -* #67: Output warnings about failed doctests in the doctest extension - even when running in quiet mode. - -* #72: In pngmath, make it possible to give a full path to LaTeX and - dvipng on Windows. For that to work, the ``pngmath_latex`` and - ``pngmath_dvipng`` options are no longer split into command and - additional arguments; use ``pngmath_latex_args`` and - ``pngmath_dvipng_args`` to give additional arguments. - -* Don't crash on failing doctests with non-ASCII characters. - -* Don't crash on writing status messages and warnings containing - unencodable characters. - -* Warn if a doctest extension block doesn't contain any code. - -* Fix the handling of ``:param:`` and ``:type:`` doc fields when - they contain markup (especially cross-referencing roles). - -* #65: Fix storage of depth information for PNGs generated by the - pngmath extension. - -* Fix autodoc crash when automethod is used outside a class context. - -* #68: Fix LaTeX writer output for images with specified height. - -* #60: Fix wrong generated image path when including images in sources - in subdirectories. - -* Fix the JavaScript search when html_copy_source is off. - -* Fix an indentation problem in autodoc when documenting classes - with the option ``autoclass_content = "both"`` set. - -* Don't crash on empty index entries, only emit a warning. - -* Fix a typo in the search JavaScript code, leading to unusable - search function in some setups. - - -Release 0.5 (Nov 23, 2008) -- Birthday release! -=============================================== - -New features added ------------------- - -* Markup features: - - - Citations are now global: all citation defined in any file can be - referenced from any file. Citations are collected in a bibliography - for LaTeX output. - - - Footnotes are now properly handled in the LaTeX builder: they appear - at the location of the footnote reference in text, not at the end of - a section. Thanks to Andrew McNamara for the initial patch. - - - "System Message" warnings are now automatically removed from the - built documentation, and only written to stderr. If you want the - old behavior, set the new config value ``keep_warnings`` to True. - - - Glossary entries are now automatically added to the index. - - - Figures with captions can now be referred to like section titles, - using the ``:ref:`` role without an explicit link text. - - - Added ``cmember`` role for consistency. - - - Lists enumerated by letters or roman numerals are now handled like in - standard reST. - - - The ``seealso`` directive can now also be given arguments, as a short - form. - - - You can now document several programs and their options with the - new ``program`` directive. - -* HTML output and templates: - - - Incompatible change: The "root" relation link (top left in the - relbar) now points to the ``master_doc`` by default, no longer to a - document called "index". The old behavior, while useful in some - situations, was somewhat unexpected. Override the "rootrellink" - block in the template to customize where it refers to. - - - The JavaScript search now searches for objects before searching in - the full text. - - - TOC tree entries now have CSS classes that make it possible to - style them depending on their depth. - - - Highlighted code blocks now have CSS classes that make it possible - to style them depending on their language. - - - HTML ```` tags via the docutils ``meta`` directive are now - supported. - - - ``SerializingHTMLBuilder`` was added as new abstract builder that - can be subclassed to serialize build HTML in a specific format. The - ``PickleHTMLBuilder`` is a concrete subclass of it that uses pickle - as serialization implementation. - - - ``JSONHTMLBuilder`` was added as another ``SerializingHTMLBuilder`` - subclass that dumps the generated HTML into JSON files for further - processing. - - - The ``rellinks`` block in the layout template is now called - ``linktags`` to avoid confusion with the relbar links. - - - The HTML builders have two additional attributes now that can be - used to disable the anchor-link creation after headlines and - definition links. - - - Only generate a module index if there are some modules in the - documentation. - -* New and changed config values: - - - Added support for internationalization in generated text with the - ``language`` and ``locale_dirs`` config values. Many thanks to - language contributors: - - * Horst Gutmann -- German - * Pavel Kosina -- Czech - * David Larlet -- French - * Michał Kandulski -- Polish - * Yasushi Masuda -- Japanese - * Guillem Borrell -- Spanish - * Luc Saffre and Peter Bertels -- Dutch - * Fred Lin -- Traditional Chinese - * Roger Demetrescu -- Brazilian Portuguese - * Rok Garbas -- Slovenian - - - The new config value ``highlight_language`` set a global default for - highlighting. When ``'python3'`` is selected, console output blocks - are recognized like for ``'python'``. - - - Exposed Pygments' lexer guessing as a highlight "language" ``guess``. - - - The new config value ``latex_elements`` allows to override all LaTeX - snippets that Sphinx puts into the generated .tex file by default. - - - Added ``exclude_dirnames`` config value that can be used to exclude - e.g. CVS directories from source file search. - - - Added ``source_encoding`` config value to select input encoding. - -* Extensions: - - - The new extensions ``sphinx.ext.jsmath`` and ``sphinx.ext.pngmath`` - provide math support for both HTML and LaTeX builders. - - - The new extension ``sphinx.ext.intersphinx`` half-automatically - creates links to Sphinx documentation of Python objects in other - projects. - - - The new extension ``sphinx.ext.todo`` allows the insertion of - "To do" directives whose visibility in the output can be toggled. - It also adds a directive to compile a list of all todo items. - - - sphinx.ext.autodoc has a new event ``autodoc-process-signature`` - that allows tuning function signature introspection. - - - sphinx.ext.autodoc has a new event ``autodoc-skip-member`` that allows - tuning which members are included in the generated content. - - - Respect __all__ when autodocumenting module members. - - - The `automodule` directive now supports the ``synopsis``, - ``deprecated`` and ``platform`` options. - -* Extension API: - - - ``Sphinx.add_node()`` now takes optional visitor methods for the - HTML, LaTeX and text translators; this prevents having to manually - patch the classes. - - - Added ``Sphinx.add_javascript()`` that adds scripts to load in the - default HTML template. - - - Added new events: ``source-read``, ``env-updated``, - ``env-purge-doc``, ``missing-reference``, ``build-finished``. - -* Other changes: - - - Added a command-line switch ``-Q``: it will suppress warnings. - - - Added a command-line switch ``-A``: it can be used to supply - additional values into the HTML templates. - - - Added a command-line switch ``-C``: if it is given, no configuration - file ``conf.py`` is required. - - - Added a distutils command `build_sphinx`: When Sphinx is installed, - you can call ``python setup.py build_sphinx`` for projects that have - Sphinx documentation, which will build the docs and place them in - the standard distutils build directory. - - - In quickstart, if the selected root path already contains a Sphinx - project, complain and abort. - -Bugs fixed ----------- - -* #51: Escape configuration values placed in HTML templates. - -* #44: Fix small problems in HTML help index generation. - -* Fix LaTeX output for line blocks in tables. - -* #38: Fix "illegal unit" error when using pixel image widths/heights. - -* Support table captions in LaTeX output. - -* #39: Work around a bug in Jinja that caused "" to be - emitted in HTML output. - -* Fix a problem with module links not being generated in LaTeX output. - -* Fix the handling of images in different directories. - -* #29: Support option lists in the text writer. Make sure that dashes - introducing long option names are not contracted to en-dashes. - -* Support the "scale" option for images in HTML output. - -* #25: Properly escape quotes in HTML help attribute values. - -* Fix LaTeX build for some description environments with ``:noindex:``. - -* #24: Don't crash on uncommon casing of role names (like ``:Class:``). - -* Only output ANSI colors on color terminals. - -* Update to newest fncychap.sty, to fix problems with non-ASCII - characters at the start of chapter titles. - -* Fix a problem with index generation in LaTeX output, caused by - hyperref not being included last. - -* Don't disregard return annotations for functions without any parameters. - -* Don't throw away labels for code blocks. - - -Release 0.4.3 (Oct 8, 2008) -=========================== - -* Fix a bug in autodoc with directly given autodoc members. - -* Fix a bug in autodoc that would import a module twice, once as - "module", once as "module.". - -* Fix a bug in the HTML writer that created duplicate ``id`` - attributes for section titles with docutils 0.5. - -* Properly call ``super()`` in overridden blocks in templates. - -* Add a fix when using XeTeX. - -* Unify handling of LaTeX escaping. - -* Rebuild everything when the ``extensions`` config value changes. - -* Don't try to remove a nonexisting static directory. - -* Fix an indentation problem in production lists. - -* Fix encoding handling for literal include files: ``literalinclude`` - now has an ``encoding`` option that defaults to UTF-8. - -* Fix the handling of non-ASCII characters entered in quickstart. - -* Fix a crash with nonexisting image URIs. - - -Release 0.4.2 (Jul 29, 2008) -============================ - -* Fix rendering of the ``samp`` role in HTML. - -* Fix a bug with LaTeX links to headings leading to a wrong page. - -* Reread documents with globbed toctrees when source files are - added or removed. - -* Add a missing parameter to PickleHTMLBuilder.handle_page(). - -* Put inheritance info always on its own line. - -* Don't automatically enclose code with whitespace in it in quotes; - only do this for the ``samp`` role. - -* autodoc now emits a more precise error message when a module - can't be imported or an attribute can't be found. - -* The JavaScript search now uses the correct file name suffix when - referring to found items. - -* The automodule directive now accepts the ``inherited-members`` - and ``show-inheritance`` options again. - -* You can now rebuild the docs normally after relocating the source - and/or doctree directory. - - -Release 0.4.1 (Jul 5, 2008) -=========================== - -* Added sub-/superscript node handling to TextBuilder. - -* Label names in references are now case-insensitive, since reST - label names are always lowercased. - -* Fix linkcheck builder crash for malformed URLs. - -* Add compatibility for admonitions and docutils 0.5. - -* Remove the silly restriction on "rubric" in the LaTeX writer: you - can now write arbitrary "rubric" directives, and only those with - a title of "Footnotes" will be ignored. - -* Copy the HTML logo to the output ``_static`` directory. - -* Fix LaTeX code for modules with underscores in names and platforms. - -* Fix a crash with nonlocal image URIs. - -* Allow the usage of :noindex: in ``automodule`` directives, as - documented. - -* Fix the ``delete()`` docstring processor function in autodoc. - -* Fix warning message for nonexisting images. - -* Fix JavaScript search in Internet Explorer. - - -Release 0.4 (Jun 23, 2008) -========================== - -New features added ------------------- - -* ``tocdepth`` can be given as a file-wide metadata entry, and - specifies the maximum depth of a TOC of this file. - -* The new config value `default_role` can be used to select the - default role for all documents. - -* Sphinx now interprets field lists with fields like ``:param foo:`` - in description units. - -* The new `staticmethod` directive can be used to mark methods as - static methods. - -* HTML output: - - - The "previous" and "next" links have a more logical structure, so - that by following "next" links you can traverse the entire TOC - tree. - - - The new event `html-page-context` can be used to include custom - values into the context used when rendering an HTML template. - - - Document metadata is now in the default template context, under - the name `metadata`. - - - The new config value `html_favicon` can be used to set a favicon - for the HTML output. Thanks to Sebastian Wiesner. - - - The new config value `html_use_index` can be used to switch index - generation in HTML documents off. - - - The new config value `html_split_index` can be used to create - separate index pages for each letter, to be used when the complete - index is too large for one page. - - - The new config value `html_short_title` can be used to set a - shorter title for the documentation which is then used in the - navigation bar. - - - The new config value `html_show_sphinx` can be used to control - whether a link to Sphinx is added to the HTML footer. - - - The new config value `html_file_suffix` can be used to set the - HTML file suffix to e.g. ``.xhtml``. - - - The directories in the `html_static_path` can now contain - subdirectories. - - - The module index now isn't collapsed if the number of submodules - is larger than the number of toplevel modules. - -* The image directive now supports specifying the extension as ``.*``, - which makes the builder select the one that matches best. Thanks to - Sebastian Wiesner. - -* The new config value `exclude_trees` can be used to exclude whole - subtrees from the search for source files. - -* Defaults for configuration values can now be callables, which allows - dynamic defaults. - -* The new TextBuilder creates plain-text output. - -* Python 3-style signatures, giving a return annotation via ``->``, - are now supported. - -* Extensions: - - - The autodoc extension now offers a much more flexible way to - manipulate docstrings before including them into the output, via - the new `autodoc-process-docstring` event. - - - The `autodoc` extension accepts signatures for functions, methods - and classes now that override the signature got via introspection - from Python code. - - - The `autodoc` extension now offers a ``show-inheritance`` option - for autoclass that inserts a list of bases after the signature. - - - The autodoc directives now support the ``noindex`` flag option. - - -Bugs fixed ----------- - -* Correctly report the source location for docstrings included with - autodoc. - -* Fix the LaTeX output of description units with multiple signatures. - -* Handle the figure directive in LaTeX output. - -* Handle raw admonitions in LaTeX output. - -* Fix determination of the title in HTML help output. - -* Handle project names containing spaces. - -* Don't write SSI-like comments in HTML output. - -* Rename the "sidebar" class to "sphinxsidebar" in order to stay different - from reST sidebars. - -* Use a binary TOC in HTML help generation to fix issues links without - explicit anchors. - -* Fix behavior of references to functions/methods with an explicit title. - -* Support citation, subscript and superscript nodes in LaTeX writer. - -* Provide the standard "class" directive as "cssclass"; else it is - shadowed by the Sphinx-defined directive. - -* Fix the handling of explicit module names given to autoclass directives. - They now show up with the correct module name in the generated docs. - -* Enable autodoc to process Unicode docstrings. - -* The LaTeX writer now translates line blocks with ``\raggedright``, - which plays nicer with tables. - -* Fix bug with directories in the HTML builder static path. - - -Release 0.3 (May 6, 2008) -========================= - -New features added ------------------- - -* The ``toctree`` directive now supports a ``glob`` option that allows - glob-style entries in the content. - -* If the `pygments_style` config value contains a dot it's treated as the - import path of a custom Pygments style class. - -* A new config value, `exclude_dirs`, can be used to exclude whole - directories from the search for source files. - -* The configuration directory (containing ``conf.py``) can now be set - independently from the source directory. For that, a new command-line - option ``-c`` has been added. - -* A new directive ``tabularcolumns`` can be used to give a tabular column - specification for LaTeX output. Tables now use the ``tabulary`` package. - Literal blocks can now be placed in tables, with several caveats. - -* A new config value, `latex_use_parts`, can be used to enable parts in LaTeX - documents. - -* Autodoc now skips inherited members for classes, unless you give the - new ``inherited-members`` option. - -* A new config value, `autoclass_content`, selects if the docstring of the - class' ``__init__`` method is added to the directive's body. - -* Support for C++ class names (in the style ``Class::Function``) in C function - descriptions. - -* Support for a ``toctree_only`` item in items for the ``latex_documents`` - config value. This only includes the documents referenced by TOC trees in the - output, not the rest of the file containing the directive. - -Bugs fixed ----------- - -* sphinx.htmlwriter: Correctly write the TOC file for any structure of the - master document. Also encode non-ASCII characters as entities in TOC - and index file. Remove two remaining instances of hard-coded - "documentation". - -* sphinx.ext.autodoc: descriptors are detected properly now. - -* sphinx.latexwriter: implement all reST admonitions, not just ``note`` - and ``warning``. - -* Lots of little fixes to the LaTeX output and style. - -* Fix OpenSearch template and make template URL absolute. The - `html_use_opensearch` config value now must give the base URL. - -* Some unused files are now stripped from the HTML help file build. - - -Release 0.2 (Apr 27, 2008) -========================== - -Incompatible changes --------------------- - -* Jinja, the template engine used for the default HTML templates, is now - no longer shipped with Sphinx. If it is not installed automatically for - you (it is now listed as a dependency in ``setup.py``), install it manually - from PyPI. This will also be needed if you're using Sphinx from a SVN - checkout; in that case please also remove the ``sphinx/jinja`` directory - that may be left over from old revisions. - -* The clumsy handling of the ``index.html`` template was removed. The config - value ``html_index`` is gone, and ``html_additional_pages`` should be used - instead. If you need it, the old ``index.html`` template is still there, - called ``defindex.html``, and you can port your html_index template, using - Jinja inheritance, by changing your template:: - - {% extends "defindex.html" %} - {% block tables %} - ... old html_index template content ... - {% endblock %} - - and putting ``'index': name of your template`` in ``html_additional_pages``. - -* In the layout template, redundant ``block``\s were removed; you should use - Jinja's standard ``{{ super() }}`` mechanism instead, as explained in the - (newly written) templating docs. - -New features added ------------------- - -* Extension API (Application object): - - - Support a new method, ``add_crossref_type``. It works like - ``add_description_unit`` but the directive will only create a target - and no output. - - Support a new method, ``add_transform``. It takes a standard docutils - ``Transform`` subclass which is then applied by Sphinx' reader on - parsing reST document trees. - - Add support for other template engines than Jinja, by adding an - abstraction called a "template bridge". This class handles rendering - of templates and can be changed using the new configuration value - "template_bridge". - - The config file itself can be an extension (if it provides a ``setup()`` - function). - -* Markup: - - - New directive, ``currentmodule``. It can be used to indicate the module - name of the following documented things without creating index entries. - - Allow giving a different title to documents in the toctree. - - Allow giving multiple options in a ``cmdoption`` directive. - - Fix display of class members without explicit class name given. - -* Templates (HTML output): - - - ``index.html`` renamed to ``defindex.html``, see above. - - There's a new config value, ``html_title``, that controls the overall - "title" of the set of Sphinx docs. It is used instead everywhere instead of - "Projectname vX.Y documentation" now. - - All references to "documentation" in the templates have been removed, so - that it is now easier to use Sphinx for non-documentation documents with - the default templates. - - Templates now have an XHTML doctype, to be consistent with docutils' - HTML output. - - You can now create an OpenSearch description file with the - ``html_use_opensearch`` config value. - - You can now quickly include a logo in the sidebar, using the ``html_logo`` - config value. - - There are new blocks in the sidebar, so that you can easily insert content - into the sidebar. - -* LaTeX output: - - - The ``sphinx.sty`` package was cleaned of unused stuff. - - You can include a logo in the title page with the ``latex_logo`` config - value. - - You can define the link colors and a border and background color for - verbatim environments. - -Thanks to Jacob Kaplan-Moss, Talin, Jeroen Ruigrok van der Werven and Sebastian -Wiesner for suggestions. - -Bugs fixed ----------- - -* sphinx.ext.autodoc: Don't check ``__module__`` for explicitly given - members. Remove "self" in class constructor argument list. - -* sphinx.htmlwriter: Don't use os.path for joining image HREFs. - -* sphinx.htmlwriter: Don't use SmartyPants for HTML attribute values. - -* sphinx.latexwriter: Implement option lists. Also, some other changes - were made to ``sphinx.sty`` in order to enhance compatibility and - remove old unused stuff. Thanks to Gael Varoquaux for that! - -* sphinx.roles: Fix referencing glossary terms with explicit targets. - -* sphinx.environment: Don't swallow TOC entries when resolving subtrees. - -* sphinx.quickstart: Create a sensible default latex_documents setting. - -* sphinx.builder, sphinx.environment: Gracefully handle some user error - cases. - -* sphinx.util: Follow symbolic links when searching for documents. - - -Release 0.1.61950 (Mar 26, 2008) -================================ - -* sphinx.quickstart: Fix format string for Makefile. - - -Release 0.1.61945 (Mar 26, 2008) -================================ - -* sphinx.htmlwriter, sphinx.latexwriter: Support the ``.. image::`` - directive by copying image files to the output directory. - -* sphinx.builder: Consistently name "special" HTML output directories - with a leading underscore; this means ``_sources`` and ``_static``. - -* sphinx.environment: Take dependent files into account when collecting - the set of outdated sources. - -* sphinx.directives: Record files included with ``.. literalinclude::`` - as dependencies. - -* sphinx.ext.autodoc: Record files from which docstrings are included - as dependencies. - -* sphinx.builder: Rebuild all HTML files in case of a template change. - -* sphinx.builder: Handle unavailability of TOC relations (previous/ - next chapter) more gracefully in the HTML builder. - -* sphinx.latexwriter: Include fncychap.sty which doesn't seem to be - very common in TeX distributions. Add a ``clean`` target in the - latex Makefile. Really pass the correct paper and size options - to the LaTeX document class. - -* setup: On Python 2.4, don't egg-depend on docutils if a docutils is - already installed -- else it will be overwritten. - - -Release 0.1.61843 (Mar 24, 2008) -================================ - -* sphinx.quickstart: Really don't create a makefile if the user - doesn't want one. - -* setup: Don't install scripts twice, via setuptools entry points - and distutils scripts. Only install via entry points. - -* sphinx.builder: Don't recognize the HTML builder's copied source - files (under ``_sources``) as input files if the source suffix is - ``.txt``. - -* sphinx.highlighting: Generate correct markup for LaTeX Verbatim - environment escapes even if Pygments is not installed. - -* sphinx.builder: The WebHTMLBuilder is now called PickleHTMLBuilder. - -* sphinx.htmlwriter: Make parsed-literal blocks work as expected, - not highlighting them via Pygments. - -* sphinx.environment: Don't error out on reading an empty source file. - - -Release 0.1.61798 (Mar 23, 2008) -================================ - -* sphinx: Work with docutils SVN snapshots as well as 0.4. - -* sphinx.ext.doctest: Make the group in which doctest blocks are - placed selectable, and default to ``'default'``. - -* sphinx.ext.doctest: Replace ```` in doctest blocks by - real blank lines for presentation output, and remove doctest - options given inline. - -* sphinx.environment: Move doctest_blocks out of block_quotes to - support indented doctest blocks. - -* sphinx.ext.autodoc: Render ``.. automodule::`` docstrings in a - section node, so that module docstrings can contain proper - sectioning. - -* sphinx.ext.autodoc: Use the module's encoding for decoding - docstrings, rather than requiring ASCII. - - -Release 0.1.61611 (Mar 21, 2008) -================================ - -* First public release. +The changelog for versions before 1.0 can be found in the file ``CHANGES.old`` +in the source distribution or `at BitBucket +`__. diff --git a/CHANGES.old b/CHANGES.old new file mode 100644 index 000000000..b94a99e4b --- /dev/null +++ b/CHANGES.old @@ -0,0 +1,1249 @@ +For the changelog from version 1.0, look at the file CHANGES. + +Release 0.6.7 (Jun 05, 2010) +============================ + +* #440: Remove usage of a Python >= 2.5 API in the ``literalinclude`` + directive. + +* Fix a bug that prevented some references being generated in the + LaTeX builder. + +* #428: Add some missing CSS styles for standard docutils classes. + +* #432: Fix UnicodeErrors while building LaTeX in translated locale. + + +Release 0.6.6 (May 25, 2010) +============================ + +* Handle raw nodes in the ``text`` writer. + +* Fix a problem the Qt help project generated by the ``qthelp`` + builder that would lead to no content being displayed in the Qt + Assistant. + +* #393: Fix the usage of Unicode characters in mathematic formulas + when using the ``pngmath`` extension. + +* #404: Make ``\and`` work properly in the author field of the + ``latex_documents`` setting. + +* #409: Make the ``highlight_language`` config value work properly + in the LaTeX builder. + +* #418: Allow relocation of the translation JavaScript files to + the system directory on Unix systems. + +* #414: Fix handling of Windows newlines in files included with + the ``literalinclude`` directive. + +* #377: Fix crash in linkcheck builder. + +* #387: Fix the display of search results in ``dirhtml`` output. + +* #376: In autodoc, fix display of parameter defaults containing + backslashes. + +* #370: Fix handling of complex list item labels in LaTeX output. + +* #374: Make the ``doctest_path`` config value of the doctest + extension actually work. + +* Fix the handling of multiple toctrees when creating the global + TOC for the ``toctree()`` template function. + +* Fix the handling of hidden toctrees when creating the global TOC + for the ``toctree()`` template function. + +* Fix the handling of nested lists in the text writer. + +* #362: In autodoc, check for the existence of ``__self__`` on + function objects before accessing it. + +* #353: Strip leading and trailing whitespace when extracting + search words in the search function. + + +Release 0.6.5 (Mar 01, 2010) +============================ + +* In autodoc, fix the omission of some module members explicitly + documented using documentation comments. + +* #345: Fix cropping of sidebar scroll bar with ``stickysidebar`` + option of the default theme. + +* #341: Always generate UNIX newlines in the quickstart Makefile. + +* #338: Fix running with ``-C`` under Windows. + +* In autodoc, allow customizing the signature of an object where + the built-in mechanism fails. + +* #331: Fix output for enumerated lists with start values in LaTeX. + +* Make the ``start-after`` and ``end-before`` options to the + ``literalinclude`` directive work correctly if not used together. + +* #321: Fix link generation in the LaTeX builder. + + +Release 0.6.4 (Jan 12, 2010) +============================ + +* Improve the handling of non-Unicode strings in the configuration. + +* #316: Catch OSErrors occurring when calling graphviz with + arguments it doesn't understand. + +* Restore compatibility with Pygments >= 1.2. + +* #295: Fix escaping of hyperref targets in LaTeX output. + +* #302: Fix links generated by the ``:doc:`` role for LaTeX output. + +* #286: collect todo nodes after the whole document has been read; + this allows placing substitution references in todo items. + +* #294: do not ignore an explicit ``today`` config value in a + LaTeX build. + +* The ``alt`` text of inheritance diagrams is now much cleaner. + +* Ignore images in section titles when generating link captions. + +* #310: support exception messages in the ``testoutput`` blocks of + the ``doctest`` extension. + +* #293: line blocks are styled properly in HTML output. + +* #285: make the ``locale_dirs`` config value work again. + +* #303: ``html_context`` values given on the command line via ``-A`` + should not override other values given in conf.py. + +* Fix a bug preventing incremental rebuilds for the ``dirhtml`` + builder. + +* #299: Fix the mangling of quotes in some literal blocks. + +* #292: Fix path to the search index for the ``dirhtml`` builder. + +* Fix a Jython compatibility issue: make the dependence on the + ``parser`` module optional. + +* #238: In autodoc, catch all errors that occur on module import, + not just ``ImportError``. + +* Fix the handling of non-data, but non-method descriptors in autodoc. + +* When copying file times, ignore OSErrors raised by ``os.utime()``. + + +Release 0.6.3 (Sep 03, 2009) +============================ + +* Properly add C module filenames as dependencies in autodoc. + +* #253: Ignore graphviz directives without content instead of + raising an unhandled exception. + +* #241: Fix a crash building LaTeX output for documents that contain + a todolist directive. + +* #252: Make it easier to change the build dir in the Makefiles + generated by quickstart. + +* #220: Fix CSS so that displaymath really is centered. + +* #222: Allow the "Footnotes" header to be translated. + +* #225: Don't add whitespace in generated HTML after inline tags. + +* #227: Make ``literalinclude`` work when the document's path + name contains non-ASCII characters. + +* #229: Fix autodoc failures with members that raise errors + on ``getattr()``. + +* #205: When copying files, don't copy full stat info, only + modification times. + +* #232: Support non-ASCII metadata in Qt help builder. + +* Properly format bullet lists nested in definition lists for LaTeX. + +* Section titles are now allowed inside ``only`` directives. + +* #201: Make ``centered`` directive work in LaTeX output. + +* #206: Refuse to overwrite an existing master document in + sphinx-quickstart. + +* #208: Use MS-sanctioned locale settings, determined by the + ``language`` config option, in the HTML help builder. + +* #210: Fix nesting of HTML tags for displayed math from pngmath + extension. + +* #213: Fix centering of images in LaTeX output. + +* #211: Fix compatibility with docutils 0.5. + + +Release 0.6.2 (Jun 16, 2009) +============================ + +* #130: Fix obscure IndexError in doctest extension. + +* #167: Make glossary sorting case-independent. + +* #196: Add a warning if an extension module doesn't have a + ``setup()`` function. + +* #158: Allow '..' in template names, and absolute template paths; + Jinja 2 by default disables both. + +* When highlighting Python code, ignore extra indentation before + trying to parse it as Python. + +* #191: Don't escape the tilde in URIs in LaTeX. + +* Don't consider contents of source comments for the search index. + +* Set the default encoding to ``utf-8-sig`` to handle files with a + UTF-8 BOM correctly. + +* #178: apply ``add_function_parentheses`` config value to C + functions as promised. + +* #173: Respect the docutils ``title`` directive. + +* #172: The ``obj`` role now links to modules as promised. + +* #19: Tables now can have a "longtable" class, in order to get + correctly broken into pages in LaTeX output. + +* Look for Sphinx message catalogs in the system default path before + trying ``sphinx/locale``. + +* Fix the search for methods via "classname.methodname". + +* #155: Fix Python 2.4 compatibility: exceptions are old-style + classes there. + +* #150: Fix display of the "sphinxdoc" theme on Internet Explorer + versions 6 and 7. + +* #146: Don't fail to generate LaTeX when the user has an active + ``.docutils`` configuration. + +* #29: Don't generate visible "-{-}" in option lists in LaTeX. + +* Fix cross-reference roles when put into substitutions. + +* Don't put image "alt" text into table-of-contents entries. + +* In the LaTeX writer, do not raise an exception on too many section + levels, just use the "subparagraph" level for all of them. + +* #145: Fix autodoc problem with automatic members that refuse to be + getattr()'d from their parent. + +* If specific filenames to build are given on the command line, + check that they are within the source directory. + +* Fix autodoc crash for objects without a ``__name__``. + +* Fix intersphinx for installations without urllib2.HTTPSHandler. + +* #134: Fix pending_xref leftover nodes when using the todolist + directive from the todo extension. + + +Release 0.6.1 (Mar 26, 2009) +============================ + +* #135: Fix problems with LaTeX output and the graphviz extension. + +* #132: Include the autosummary "module" template in the distribution. + + +Release 0.6 (Mar 24, 2009) +========================== + +New features added +------------------ + +* Incompatible changes: + + - Templating now requires the Jinja2 library, which is an enhanced + version of the old Jinja1 engine. Since the syntax and semantic + is largely the same, very few fixes should be necessary in + custom templates. + + - The "document" div tag has been moved out of the ``layout.html`` + template's "document" block, because the closing tag was already + outside. If you overwrite this block, you need to remove your + "document" div tag as well. + + - The ``autodoc_skip_member`` event now also gets to decide + whether to skip members whose name starts with underscores. + Previously, these members were always automatically skipped. + Therefore, if you handle this event, add something like this + to your event handler to restore the old behavior:: + + if name.startswith('_'): + return True + +* Theming support, see the new section in the documentation. + +* Markup: + + - Due to popular demand, added a ``:doc:`` role which directly + links to another document without the need of creating a + label to which a ``:ref:`` could link to. + + - #4: Added a ``:download:`` role that marks a non-document file + for inclusion into the HTML output and links to it. + + - Added an ``only`` directive that can selectively include text + based on enabled "tags". Tags can be given on the command + line. Also, the current builder output format (e.g. "html" or + "latex") is always a defined tag. + + - #10: Added HTML section numbers, enabled by giving a + ``:numbered:`` flag to the ``toctree`` directive. + + - #114: Added an ``abbr`` role to markup abbreviations and + acronyms. + + - The ``literalinclude`` directive now supports several more + options, to include only parts of a file. + + - The ``toctree`` directive now supports a ``:hidden:`` flag, + which will prevent links from being generated in place of + the directive -- this allows you to define your document + structure, but place the links yourself. + + - #123: The ``glossary`` directive now supports a ``:sorted:`` + flag that sorts glossary entries alphabetically. + + - Paths to images, literal include files and download files + can now be absolute (like ``/images/foo.png``). They are + treated as relative to the top source directory. + + - #52: There is now a ``hlist`` directive, creating a compact + list by placing distributing items into multiple columns. + + - #77: If a description environment with info field list only + contains one ``:param:`` entry, no bullet list is generated. + + - #6: Don't generate redundant ``
      `` for top-level TOC tree + items, which leads to a visual separation of TOC entries. + + - #23: Added a ``classmethod`` directive along with ``method`` + and ``staticmethod``. + + - Scaled images now get a link to the unscaled version. + + - SVG images are now supported in HTML (via ```` and + ```` tags). + + - Added a ``toctree`` callable to the templates, and the ability + to include external links in toctrees. The 'collapse' keyword + argument indicates whether or not to only display subitems of + the current page. (Defaults to True.) + +* Configuration: + + - The new config value ``rst_epilog`` can contain reST that is + appended to each source file that is read. This is the right + place for global substitutions. + + - The new ``html_add_permalinks`` config value can be used to + switch off the generated "paragraph sign" permalinks for each + heading and definition environment. + + - The new ``html_show_sourcelink`` config value can be used to + switch off the links to the reST sources in the sidebar. + + - The default value for ``htmlhelp_basename`` is now the project + title, cleaned up as a filename. + + - The new ``modindex_common_prefix`` config value can be used to + ignore certain package names for module index sorting. + + - The new ``trim_footnote_reference_space`` config value mirrors + the docutils config value of the same name and removes the + space before a footnote reference that is necessary for reST + to recognize the reference. + + - The new ``latex_additional_files`` config value can be used to + copy files (that Sphinx doesn't copy automatically, e.g. if they + are referenced in custom LaTeX added in ``latex_elements``) to + the build directory. + +* Builders: + + - The HTML builder now stores a small file named ``.buildinfo`` in + its output directory. It stores a hash of config values that + can be used to determine if a full rebuild needs to be done (e.g. + after changing ``html_theme``). + + - New builder for Qt help collections, by Antonio Valentino. + + - The new ``DirectoryHTMLBuilder`` (short name ``dirhtml``) creates + a separate directory for every page, and places the page there + in a file called ``index.html``. Therefore, page URLs and links + don't need to contain ``.html``. + + - The new ``html_link_suffix`` config value can be used to select + the suffix of generated links between HTML files. + + - #96: The LaTeX builder now supports figures wrapped by text, when + using the ``figwidth`` option and right/left alignment. + +* New translations: + + - Italian by Sandro Dentella. + - Ukrainian by Petro Sasnyk. + - Finnish by Jukka Inkeri. + - Russian by Alexander Smishlajev. + +* Extensions and API: + + - New ``graphviz`` extension to embed graphviz graphs. + + - New ``inheritance_diagram`` extension to embed... inheritance + diagrams! + + - New ``autosummary`` extension that generates summaries of + modules and automatic documentation of modules. + + - Autodoc now has a reusable Python API, which can be used to + create custom types of objects to auto-document (e.g. Zope + interfaces). See also ``Sphinx.add_autodocumenter()``. + + - Autodoc now handles documented attributes. + + - Autodoc now handles inner classes and their methods. + + - Autodoc can document classes as functions now if explicitly + marked with `autofunction`. + + - Autodoc can now exclude single members from documentation + via the ``exclude-members`` option. + + - Autodoc can now order members either alphabetically (like + previously) or by member type; configurable either with the + config value ``autodoc_member_order`` or a ``member-order`` + option per directive. + + - The function ``Sphinx.add_directive()`` now also supports + docutils 0.5-style directive classes. If they inherit from + ``sphinx.util.compat.Directive``, they also work with + docutils 0.4. + + - There is now a ``Sphinx.add_lexer()`` method to be able to use + custom Pygments lexers easily. + + - There is now ``Sphinx.add_generic_role()`` to mirror the + docutils' own function. + +* Other changes: + + - Config overrides for single dict keys can now be given on the + command line. + + - There is now a ``doctest_global_setup`` config value that can + be used to give setup code for all doctests in the documentation. + + - Source links in HTML are now generated with ``rel="nofollow"``. + + - Quickstart can now generate a Windows ``make.bat`` file. + + - #62: There is now a ``-w`` option for sphinx-build that writes + warnings to a file, in addition to stderr. + + - There is now a ``-W`` option for sphinx-build that turns warnings + into errors. + + +Release 0.5.2 (Mar 24, 2009) +============================ + +* Properly escape ``|`` in LaTeX output. + +* #71: If a decoding error occurs in source files, print a + warning and replace the characters by "?". + +* Fix a problem in the HTML search if the index takes too long + to load. + +* Don't output system messages while resolving, because they + would stay in the doctrees even if keep_warnings is false. + +* #82: Determine the correct path for dependencies noted by + docutils. This fixes behavior where a source with dependent + files was always reported as changed. + +* Recognize toctree directives that are not on section toplevel, + but within block items, such as tables. + +* Use a new RFC base URL, since rfc.org seems down. + +* Fix a crash in the todolist directive when no todo items are + defined. + +* Don't call LaTeX or dvipng over and over again if it was not + found once, and use text-only latex as a substitute in that case. + +* Fix problems with footnotes in the LaTeX output. + +* Prevent double hyphens becoming en-dashes in literal code in + the LaTeX output. + +* Open literalinclude files in universal newline mode to allow + arbitrary newline conventions. + +* Actually make the ``-Q`` option work. + +* #86: Fix explicit document titles in toctrees. + +* #81: Write environment and search index in a manner that is safe + from exceptions that occur during dumping. + +* #80: Fix UnicodeErrors when a locale is set with setlocale(). + + +Release 0.5.1 (Dec 15, 2008) +============================ + +* #67: Output warnings about failed doctests in the doctest extension + even when running in quiet mode. + +* #72: In pngmath, make it possible to give a full path to LaTeX and + dvipng on Windows. For that to work, the ``pngmath_latex`` and + ``pngmath_dvipng`` options are no longer split into command and + additional arguments; use ``pngmath_latex_args`` and + ``pngmath_dvipng_args`` to give additional arguments. + +* Don't crash on failing doctests with non-ASCII characters. + +* Don't crash on writing status messages and warnings containing + unencodable characters. + +* Warn if a doctest extension block doesn't contain any code. + +* Fix the handling of ``:param:`` and ``:type:`` doc fields when + they contain markup (especially cross-referencing roles). + +* #65: Fix storage of depth information for PNGs generated by the + pngmath extension. + +* Fix autodoc crash when automethod is used outside a class context. + +* #68: Fix LaTeX writer output for images with specified height. + +* #60: Fix wrong generated image path when including images in sources + in subdirectories. + +* Fix the JavaScript search when html_copy_source is off. + +* Fix an indentation problem in autodoc when documenting classes + with the option ``autoclass_content = "both"`` set. + +* Don't crash on empty index entries, only emit a warning. + +* Fix a typo in the search JavaScript code, leading to unusable + search function in some setups. + + +Release 0.5 (Nov 23, 2008) -- Birthday release! +=============================================== + +New features added +------------------ + +* Markup features: + + - Citations are now global: all citation defined in any file can be + referenced from any file. Citations are collected in a bibliography + for LaTeX output. + + - Footnotes are now properly handled in the LaTeX builder: they appear + at the location of the footnote reference in text, not at the end of + a section. Thanks to Andrew McNamara for the initial patch. + + - "System Message" warnings are now automatically removed from the + built documentation, and only written to stderr. If you want the + old behavior, set the new config value ``keep_warnings`` to True. + + - Glossary entries are now automatically added to the index. + + - Figures with captions can now be referred to like section titles, + using the ``:ref:`` role without an explicit link text. + + - Added ``cmember`` role for consistency. + + - Lists enumerated by letters or roman numerals are now handled like in + standard reST. + + - The ``seealso`` directive can now also be given arguments, as a short + form. + + - You can now document several programs and their options with the + new ``program`` directive. + +* HTML output and templates: + + - Incompatible change: The "root" relation link (top left in the + relbar) now points to the ``master_doc`` by default, no longer to a + document called "index". The old behavior, while useful in some + situations, was somewhat unexpected. Override the "rootrellink" + block in the template to customize where it refers to. + + - The JavaScript search now searches for objects before searching in + the full text. + + - TOC tree entries now have CSS classes that make it possible to + style them depending on their depth. + + - Highlighted code blocks now have CSS classes that make it possible + to style them depending on their language. + + - HTML ```` tags via the docutils ``meta`` directive are now + supported. + + - ``SerializingHTMLBuilder`` was added as new abstract builder that + can be subclassed to serialize build HTML in a specific format. The + ``PickleHTMLBuilder`` is a concrete subclass of it that uses pickle + as serialization implementation. + + - ``JSONHTMLBuilder`` was added as another ``SerializingHTMLBuilder`` + subclass that dumps the generated HTML into JSON files for further + processing. + + - The ``rellinks`` block in the layout template is now called + ``linktags`` to avoid confusion with the relbar links. + + - The HTML builders have two additional attributes now that can be + used to disable the anchor-link creation after headlines and + definition links. + + - Only generate a module index if there are some modules in the + documentation. + +* New and changed config values: + + - Added support for internationalization in generated text with the + ``language`` and ``locale_dirs`` config values. Many thanks to + language contributors: + + * Horst Gutmann -- German + * Pavel Kosina -- Czech + * David Larlet -- French + * Michał Kandulski -- Polish + * Yasushi Masuda -- Japanese + * Guillem Borrell -- Spanish + * Luc Saffre and Peter Bertels -- Dutch + * Fred Lin -- Traditional Chinese + * Roger Demetrescu -- Brazilian Portuguese + * Rok Garbas -- Slovenian + + - The new config value ``highlight_language`` set a global default for + highlighting. When ``'python3'`` is selected, console output blocks + are recognized like for ``'python'``. + + - Exposed Pygments' lexer guessing as a highlight "language" ``guess``. + + - The new config value ``latex_elements`` allows to override all LaTeX + snippets that Sphinx puts into the generated .tex file by default. + + - Added ``exclude_dirnames`` config value that can be used to exclude + e.g. CVS directories from source file search. + + - Added ``source_encoding`` config value to select input encoding. + +* Extensions: + + - The new extensions ``sphinx.ext.jsmath`` and ``sphinx.ext.pngmath`` + provide math support for both HTML and LaTeX builders. + + - The new extension ``sphinx.ext.intersphinx`` half-automatically + creates links to Sphinx documentation of Python objects in other + projects. + + - The new extension ``sphinx.ext.todo`` allows the insertion of + "To do" directives whose visibility in the output can be toggled. + It also adds a directive to compile a list of all todo items. + + - sphinx.ext.autodoc has a new event ``autodoc-process-signature`` + that allows tuning function signature introspection. + + - sphinx.ext.autodoc has a new event ``autodoc-skip-member`` that allows + tuning which members are included in the generated content. + + - Respect __all__ when autodocumenting module members. + + - The `automodule` directive now supports the ``synopsis``, + ``deprecated`` and ``platform`` options. + +* Extension API: + + - ``Sphinx.add_node()`` now takes optional visitor methods for the + HTML, LaTeX and text translators; this prevents having to manually + patch the classes. + + - Added ``Sphinx.add_javascript()`` that adds scripts to load in the + default HTML template. + + - Added new events: ``source-read``, ``env-updated``, + ``env-purge-doc``, ``missing-reference``, ``build-finished``. + +* Other changes: + + - Added a command-line switch ``-Q``: it will suppress warnings. + + - Added a command-line switch ``-A``: it can be used to supply + additional values into the HTML templates. + + - Added a command-line switch ``-C``: if it is given, no configuration + file ``conf.py`` is required. + + - Added a distutils command `build_sphinx`: When Sphinx is installed, + you can call ``python setup.py build_sphinx`` for projects that have + Sphinx documentation, which will build the docs and place them in + the standard distutils build directory. + + - In quickstart, if the selected root path already contains a Sphinx + project, complain and abort. + +Bugs fixed +---------- + +* #51: Escape configuration values placed in HTML templates. + +* #44: Fix small problems in HTML help index generation. + +* Fix LaTeX output for line blocks in tables. + +* #38: Fix "illegal unit" error when using pixel image widths/heights. + +* Support table captions in LaTeX output. + +* #39: Work around a bug in Jinja that caused "" to be + emitted in HTML output. + +* Fix a problem with module links not being generated in LaTeX output. + +* Fix the handling of images in different directories. + +* #29: Support option lists in the text writer. Make sure that dashes + introducing long option names are not contracted to en-dashes. + +* Support the "scale" option for images in HTML output. + +* #25: Properly escape quotes in HTML help attribute values. + +* Fix LaTeX build for some description environments with ``:noindex:``. + +* #24: Don't crash on uncommon casing of role names (like ``:Class:``). + +* Only output ANSI colors on color terminals. + +* Update to newest fncychap.sty, to fix problems with non-ASCII + characters at the start of chapter titles. + +* Fix a problem with index generation in LaTeX output, caused by + hyperref not being included last. + +* Don't disregard return annotations for functions without any parameters. + +* Don't throw away labels for code blocks. + + +Release 0.4.3 (Oct 8, 2008) +=========================== + +* Fix a bug in autodoc with directly given autodoc members. + +* Fix a bug in autodoc that would import a module twice, once as + "module", once as "module.". + +* Fix a bug in the HTML writer that created duplicate ``id`` + attributes for section titles with docutils 0.5. + +* Properly call ``super()`` in overridden blocks in templates. + +* Add a fix when using XeTeX. + +* Unify handling of LaTeX escaping. + +* Rebuild everything when the ``extensions`` config value changes. + +* Don't try to remove a nonexisting static directory. + +* Fix an indentation problem in production lists. + +* Fix encoding handling for literal include files: ``literalinclude`` + now has an ``encoding`` option that defaults to UTF-8. + +* Fix the handling of non-ASCII characters entered in quickstart. + +* Fix a crash with nonexisting image URIs. + + +Release 0.4.2 (Jul 29, 2008) +============================ + +* Fix rendering of the ``samp`` role in HTML. + +* Fix a bug with LaTeX links to headings leading to a wrong page. + +* Reread documents with globbed toctrees when source files are + added or removed. + +* Add a missing parameter to PickleHTMLBuilder.handle_page(). + +* Put inheritance info always on its own line. + +* Don't automatically enclose code with whitespace in it in quotes; + only do this for the ``samp`` role. + +* autodoc now emits a more precise error message when a module + can't be imported or an attribute can't be found. + +* The JavaScript search now uses the correct file name suffix when + referring to found items. + +* The automodule directive now accepts the ``inherited-members`` + and ``show-inheritance`` options again. + +* You can now rebuild the docs normally after relocating the source + and/or doctree directory. + + +Release 0.4.1 (Jul 5, 2008) +=========================== + +* Added sub-/superscript node handling to TextBuilder. + +* Label names in references are now case-insensitive, since reST + label names are always lowercased. + +* Fix linkcheck builder crash for malformed URLs. + +* Add compatibility for admonitions and docutils 0.5. + +* Remove the silly restriction on "rubric" in the LaTeX writer: you + can now write arbitrary "rubric" directives, and only those with + a title of "Footnotes" will be ignored. + +* Copy the HTML logo to the output ``_static`` directory. + +* Fix LaTeX code for modules with underscores in names and platforms. + +* Fix a crash with nonlocal image URIs. + +* Allow the usage of :noindex: in ``automodule`` directives, as + documented. + +* Fix the ``delete()`` docstring processor function in autodoc. + +* Fix warning message for nonexisting images. + +* Fix JavaScript search in Internet Explorer. + + +Release 0.4 (Jun 23, 2008) +========================== + +New features added +------------------ + +* ``tocdepth`` can be given as a file-wide metadata entry, and + specifies the maximum depth of a TOC of this file. + +* The new config value `default_role` can be used to select the + default role for all documents. + +* Sphinx now interprets field lists with fields like ``:param foo:`` + in description units. + +* The new `staticmethod` directive can be used to mark methods as + static methods. + +* HTML output: + + - The "previous" and "next" links have a more logical structure, so + that by following "next" links you can traverse the entire TOC + tree. + + - The new event `html-page-context` can be used to include custom + values into the context used when rendering an HTML template. + + - Document metadata is now in the default template context, under + the name `metadata`. + + - The new config value `html_favicon` can be used to set a favicon + for the HTML output. Thanks to Sebastian Wiesner. + + - The new config value `html_use_index` can be used to switch index + generation in HTML documents off. + + - The new config value `html_split_index` can be used to create + separate index pages for each letter, to be used when the complete + index is too large for one page. + + - The new config value `html_short_title` can be used to set a + shorter title for the documentation which is then used in the + navigation bar. + + - The new config value `html_show_sphinx` can be used to control + whether a link to Sphinx is added to the HTML footer. + + - The new config value `html_file_suffix` can be used to set the + HTML file suffix to e.g. ``.xhtml``. + + - The directories in the `html_static_path` can now contain + subdirectories. + + - The module index now isn't collapsed if the number of submodules + is larger than the number of toplevel modules. + +* The image directive now supports specifying the extension as ``.*``, + which makes the builder select the one that matches best. Thanks to + Sebastian Wiesner. + +* The new config value `exclude_trees` can be used to exclude whole + subtrees from the search for source files. + +* Defaults for configuration values can now be callables, which allows + dynamic defaults. + +* The new TextBuilder creates plain-text output. + +* Python 3-style signatures, giving a return annotation via ``->``, + are now supported. + +* Extensions: + + - The autodoc extension now offers a much more flexible way to + manipulate docstrings before including them into the output, via + the new `autodoc-process-docstring` event. + + - The `autodoc` extension accepts signatures for functions, methods + and classes now that override the signature got via introspection + from Python code. + + - The `autodoc` extension now offers a ``show-inheritance`` option + for autoclass that inserts a list of bases after the signature. + + - The autodoc directives now support the ``noindex`` flag option. + + +Bugs fixed +---------- + +* Correctly report the source location for docstrings included with + autodoc. + +* Fix the LaTeX output of description units with multiple signatures. + +* Handle the figure directive in LaTeX output. + +* Handle raw admonitions in LaTeX output. + +* Fix determination of the title in HTML help output. + +* Handle project names containing spaces. + +* Don't write SSI-like comments in HTML output. + +* Rename the "sidebar" class to "sphinxsidebar" in order to stay different + from reST sidebars. + +* Use a binary TOC in HTML help generation to fix issues links without + explicit anchors. + +* Fix behavior of references to functions/methods with an explicit title. + +* Support citation, subscript and superscript nodes in LaTeX writer. + +* Provide the standard "class" directive as "cssclass"; else it is + shadowed by the Sphinx-defined directive. + +* Fix the handling of explicit module names given to autoclass directives. + They now show up with the correct module name in the generated docs. + +* Enable autodoc to process Unicode docstrings. + +* The LaTeX writer now translates line blocks with ``\raggedright``, + which plays nicer with tables. + +* Fix bug with directories in the HTML builder static path. + + +Release 0.3 (May 6, 2008) +========================= + +New features added +------------------ + +* The ``toctree`` directive now supports a ``glob`` option that allows + glob-style entries in the content. + +* If the `pygments_style` config value contains a dot it's treated as the + import path of a custom Pygments style class. + +* A new config value, `exclude_dirs`, can be used to exclude whole + directories from the search for source files. + +* The configuration directory (containing ``conf.py``) can now be set + independently from the source directory. For that, a new command-line + option ``-c`` has been added. + +* A new directive ``tabularcolumns`` can be used to give a tabular column + specification for LaTeX output. Tables now use the ``tabulary`` package. + Literal blocks can now be placed in tables, with several caveats. + +* A new config value, `latex_use_parts`, can be used to enable parts in LaTeX + documents. + +* Autodoc now skips inherited members for classes, unless you give the + new ``inherited-members`` option. + +* A new config value, `autoclass_content`, selects if the docstring of the + class' ``__init__`` method is added to the directive's body. + +* Support for C++ class names (in the style ``Class::Function``) in C function + descriptions. + +* Support for a ``toctree_only`` item in items for the ``latex_documents`` + config value. This only includes the documents referenced by TOC trees in the + output, not the rest of the file containing the directive. + +Bugs fixed +---------- + +* sphinx.htmlwriter: Correctly write the TOC file for any structure of the + master document. Also encode non-ASCII characters as entities in TOC + and index file. Remove two remaining instances of hard-coded + "documentation". + +* sphinx.ext.autodoc: descriptors are detected properly now. + +* sphinx.latexwriter: implement all reST admonitions, not just ``note`` + and ``warning``. + +* Lots of little fixes to the LaTeX output and style. + +* Fix OpenSearch template and make template URL absolute. The + `html_use_opensearch` config value now must give the base URL. + +* Some unused files are now stripped from the HTML help file build. + + +Release 0.2 (Apr 27, 2008) +========================== + +Incompatible changes +-------------------- + +* Jinja, the template engine used for the default HTML templates, is now + no longer shipped with Sphinx. If it is not installed automatically for + you (it is now listed as a dependency in ``setup.py``), install it manually + from PyPI. This will also be needed if you're using Sphinx from a SVN + checkout; in that case please also remove the ``sphinx/jinja`` directory + that may be left over from old revisions. + +* The clumsy handling of the ``index.html`` template was removed. The config + value ``html_index`` is gone, and ``html_additional_pages`` should be used + instead. If you need it, the old ``index.html`` template is still there, + called ``defindex.html``, and you can port your html_index template, using + Jinja inheritance, by changing your template:: + + {% extends "defindex.html" %} + {% block tables %} + ... old html_index template content ... + {% endblock %} + + and putting ``'index': name of your template`` in ``html_additional_pages``. + +* In the layout template, redundant ``block``\s were removed; you should use + Jinja's standard ``{{ super() }}`` mechanism instead, as explained in the + (newly written) templating docs. + +New features added +------------------ + +* Extension API (Application object): + + - Support a new method, ``add_crossref_type``. It works like + ``add_description_unit`` but the directive will only create a target + and no output. + - Support a new method, ``add_transform``. It takes a standard docutils + ``Transform`` subclass which is then applied by Sphinx' reader on + parsing reST document trees. + - Add support for other template engines than Jinja, by adding an + abstraction called a "template bridge". This class handles rendering + of templates and can be changed using the new configuration value + "template_bridge". + - The config file itself can be an extension (if it provides a ``setup()`` + function). + +* Markup: + + - New directive, ``currentmodule``. It can be used to indicate the module + name of the following documented things without creating index entries. + - Allow giving a different title to documents in the toctree. + - Allow giving multiple options in a ``cmdoption`` directive. + - Fix display of class members without explicit class name given. + +* Templates (HTML output): + + - ``index.html`` renamed to ``defindex.html``, see above. + - There's a new config value, ``html_title``, that controls the overall + "title" of the set of Sphinx docs. It is used instead everywhere instead of + "Projectname vX.Y documentation" now. + - All references to "documentation" in the templates have been removed, so + that it is now easier to use Sphinx for non-documentation documents with + the default templates. + - Templates now have an XHTML doctype, to be consistent with docutils' + HTML output. + - You can now create an OpenSearch description file with the + ``html_use_opensearch`` config value. + - You can now quickly include a logo in the sidebar, using the ``html_logo`` + config value. + - There are new blocks in the sidebar, so that you can easily insert content + into the sidebar. + +* LaTeX output: + + - The ``sphinx.sty`` package was cleaned of unused stuff. + - You can include a logo in the title page with the ``latex_logo`` config + value. + - You can define the link colors and a border and background color for + verbatim environments. + +Thanks to Jacob Kaplan-Moss, Talin, Jeroen Ruigrok van der Werven and Sebastian +Wiesner for suggestions. + +Bugs fixed +---------- + +* sphinx.ext.autodoc: Don't check ``__module__`` for explicitly given + members. Remove "self" in class constructor argument list. + +* sphinx.htmlwriter: Don't use os.path for joining image HREFs. + +* sphinx.htmlwriter: Don't use SmartyPants for HTML attribute values. + +* sphinx.latexwriter: Implement option lists. Also, some other changes + were made to ``sphinx.sty`` in order to enhance compatibility and + remove old unused stuff. Thanks to Gael Varoquaux for that! + +* sphinx.roles: Fix referencing glossary terms with explicit targets. + +* sphinx.environment: Don't swallow TOC entries when resolving subtrees. + +* sphinx.quickstart: Create a sensible default latex_documents setting. + +* sphinx.builder, sphinx.environment: Gracefully handle some user error + cases. + +* sphinx.util: Follow symbolic links when searching for documents. + + +Release 0.1.61950 (Mar 26, 2008) +================================ + +* sphinx.quickstart: Fix format string for Makefile. + + +Release 0.1.61945 (Mar 26, 2008) +================================ + +* sphinx.htmlwriter, sphinx.latexwriter: Support the ``.. image::`` + directive by copying image files to the output directory. + +* sphinx.builder: Consistently name "special" HTML output directories + with a leading underscore; this means ``_sources`` and ``_static``. + +* sphinx.environment: Take dependent files into account when collecting + the set of outdated sources. + +* sphinx.directives: Record files included with ``.. literalinclude::`` + as dependencies. + +* sphinx.ext.autodoc: Record files from which docstrings are included + as dependencies. + +* sphinx.builder: Rebuild all HTML files in case of a template change. + +* sphinx.builder: Handle unavailability of TOC relations (previous/ + next chapter) more gracefully in the HTML builder. + +* sphinx.latexwriter: Include fncychap.sty which doesn't seem to be + very common in TeX distributions. Add a ``clean`` target in the + latex Makefile. Really pass the correct paper and size options + to the LaTeX document class. + +* setup: On Python 2.4, don't egg-depend on docutils if a docutils is + already installed -- else it will be overwritten. + + +Release 0.1.61843 (Mar 24, 2008) +================================ + +* sphinx.quickstart: Really don't create a makefile if the user + doesn't want one. + +* setup: Don't install scripts twice, via setuptools entry points + and distutils scripts. Only install via entry points. + +* sphinx.builder: Don't recognize the HTML builder's copied source + files (under ``_sources``) as input files if the source suffix is + ``.txt``. + +* sphinx.highlighting: Generate correct markup for LaTeX Verbatim + environment escapes even if Pygments is not installed. + +* sphinx.builder: The WebHTMLBuilder is now called PickleHTMLBuilder. + +* sphinx.htmlwriter: Make parsed-literal blocks work as expected, + not highlighting them via Pygments. + +* sphinx.environment: Don't error out on reading an empty source file. + + +Release 0.1.61798 (Mar 23, 2008) +================================ + +* sphinx: Work with docutils SVN snapshots as well as 0.4. + +* sphinx.ext.doctest: Make the group in which doctest blocks are + placed selectable, and default to ``'default'``. + +* sphinx.ext.doctest: Replace ```` in doctest blocks by + real blank lines for presentation output, and remove doctest + options given inline. + +* sphinx.environment: Move doctest_blocks out of block_quotes to + support indented doctest blocks. + +* sphinx.ext.autodoc: Render ``.. automodule::`` docstrings in a + section node, so that module docstrings can contain proper + sectioning. + +* sphinx.ext.autodoc: Use the module's encoding for decoding + docstrings, rather than requiring ASCII. + + +Release 0.1.61611 (Mar 21, 2008) +================================ + +* First public release. From 71360bcac6c26906aa01750d7b9f408b6b7f914c Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 29 Mar 2013 18:19:57 +0100 Subject: [PATCH 37/76] builders: fix status_iterator backwards compatibility --- sphinx/builders/__init__.py | 7 ++++--- sphinx/builders/gettext.py | 5 ++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/sphinx/builders/__init__.py b/sphinx/builders/__init__.py index f46c358d2..27a3be7a8 100644 --- a/sphinx/builders/__init__.py +++ b/sphinx/builders/__init__.py @@ -107,7 +107,7 @@ class Builder(object): raise NotImplementedError def old_status_iterator(self, iterable, summary, colorfunc=darkgreen, - stringify_func=str): + stringify_func=lambda x: x): l = 0 for item in iterable: if l == 0: @@ -120,9 +120,10 @@ class Builder(object): # new version with progress info def status_iterator(self, iterable, summary, colorfunc=darkgreen, length=0, - stringify_func=str): + stringify_func=lambda x: x): if length == 0: - for item in self.old_status_iterator(iterable, summary, colorfunc): + for item in self.old_status_iterator(iterable, summary, colorfunc, + stringify_func): yield item return l = 0 diff --git a/sphinx/builders/gettext.py b/sphinx/builders/gettext.py index 1cede981f..15ee29219 100644 --- a/sphinx/builders/gettext.py +++ b/sphinx/builders/gettext.py @@ -161,9 +161,8 @@ class MessageCatalogBuilder(I18nBuilder): ) for textdomain, catalog in self.status_iterator( self.catalogs.iteritems(), "writing message catalogs... ", - lambda (textdomain, _): darkgreen(textdomain), - len(self.catalogs)): - + darkgreen, len(self.catalogs), + lambda (textdomain, _): textdomain): # noop if config.gettext_compact is set ensuredir(path.join(self.outdir, path.dirname(textdomain))) From 937a93887f7f8eda839f7011a5a067dcc6908659 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 29 Mar 2013 18:57:28 +0100 Subject: [PATCH 38/76] websupport: adapt builder to changes in html builder due to parallel building API --- sphinx/builders/websupport.py | 11 ++++++++--- sphinx/writers/websupport.py | 2 +- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/sphinx/builders/websupport.py b/sphinx/builders/websupport.py index d8238bb46..f3396a369 100644 --- a/sphinx/builders/websupport.py +++ b/sphinx/builders/websupport.py @@ -56,20 +56,25 @@ class WebSupportBuilder(PickleHTMLBuilder): destination = StringOutput(encoding='utf-8') doctree.settings = self.docsettings - self.cur_docname = docname self.secnumbers = self.env.toc_secnumbers.get(docname, {}) self.imgpath = '/' + posixpath.join(self.virtual_staticdir, '_images') - self.post_process_images(doctree) self.dlpath = '/' + posixpath.join(self.virtual_staticdir, '_downloads') + self.current_docname = docname self.docwriter.write(doctree, destination) self.docwriter.assemble_parts() body = self.docwriter.parts['fragment'] metatags = self.docwriter.clean_meta ctx = self.get_doc_context(docname, body, metatags) - self.index_page(docname, doctree, ctx.get('title', '')) self.handle_page(docname, ctx, event_arg=doctree) + def write_doc_serialized(self, docname, doctree): + self.imgpath = '/' + posixpath.join(self.virtual_staticdir, '_images') + self.post_process_images(doctree) + title = self.env.longtitles.get(docname) + title = title and self.render_partial(title)['title'] or '' + self.index_page(docname, doctree, title) + def load_indexer(self, docnames): self.indexer = self.search self.indexer.init_indexing(changed=docnames) diff --git a/sphinx/writers/websupport.py b/sphinx/writers/websupport.py index 71a9ba00d..63b5dd1da 100644 --- a/sphinx/writers/websupport.py +++ b/sphinx/writers/websupport.py @@ -42,5 +42,5 @@ class WebSupportTranslator(HTMLTranslator): storage = self.builder.storage if not storage.has_node(node.uid): storage.add_node(id=node.uid, - document=self.builder.cur_docname, + document=self.builder.current_docname, source=node.rawsource or node.astext()) From 77eeeca29b8b8cb33cc06a80da902e8d91b08925 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Fri, 29 Mar 2013 19:06:24 +0100 Subject: [PATCH 39/76] tox: allow insecure (no SSL) pip operation on Python 2.5 --- tox.ini | 2 ++ 1 file changed, 2 insertions(+) diff --git a/tox.ini b/tox.ini index b08d6b293..92cea737c 100644 --- a/tox.ini +++ b/tox.ini @@ -16,6 +16,8 @@ commands= deps= simplejson==2.5.0 {[testenv]deps} +setenv= + PIP_INSECURE = 1 [testenv:py33] deps= From 1d08c910c80ef7c01304038ddf4dd9958a794821 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 30 Mar 2013 11:30:48 +0100 Subject: [PATCH 40/76] Closes #723: Fix the search function on local files in WebKit based browsers. --- CHANGES | 1 + sphinx/themes/basic/search.html | 3 ++ sphinx/themes/basic/static/searchtools.js_t | 31 +++++++++++++-------- 3 files changed, 23 insertions(+), 12 deletions(-) diff --git a/CHANGES b/CHANGES index 907d2b054..bd585da71 100644 --- a/CHANGES +++ b/CHANGES @@ -194,6 +194,7 @@ Bugs fixed * #940: Fix gettext does not extract figure caption. * #920: Fix PIL packaging issue that allowed to import ``Image`` without PIL namespace. Thanks to Marc Schlaich. +* #723: Fix the search function on local files in WebKit based browsers. * #440: Fix coarse timestamp resolution in some filesystem generating a wrong list of outdated files. diff --git a/sphinx/themes/basic/search.html b/sphinx/themes/basic/search.html index 011c23929..ee752c558 100644 --- a/sphinx/themes/basic/search.html +++ b/sphinx/themes/basic/search.html @@ -14,6 +14,9 @@ + {# this is used when loading the search index using $.ajax fails, + such as on Chrome for documents on localhost #} + {{ super() }} {% endblock %} {% block body %} diff --git a/sphinx/themes/basic/static/searchtools.js_t b/sphinx/themes/basic/static/searchtools.js_t index f96953b44..44837f87f 100644 --- a/sphinx/themes/basic/static/searchtools.js_t +++ b/sphinx/themes/basic/static/searchtools.js_t @@ -64,8 +64,13 @@ var Search = { }, loadIndex : function(url) { - $.ajax({type: "GET", url: url, data: null, success: null, - dataType: "script", cache: true}); + $.ajax({type: "GET", url: url, data: null, + dataType: "script", cache: true, + complete: function(jqxhr, textstatus) { + if (textstatus != "success") { + document.getElementById("searchindexloader").src = url; + } + }}); }, setIndex : function(index) { @@ -250,16 +255,18 @@ var Search = { displayNextItem(); }); } else if (DOCUMENTATION_OPTIONS.HAS_SOURCE) { - $.get(DOCUMENTATION_OPTIONS.URL_ROOT + '_sources/' + - item[0] + '.txt', function(data) { - if (data !== '') { - listItem.append(Search.makeSearchSummary(data, searchterms, hlterms)); - Search.output.append(listItem); - } - listItem.slideDown(5, function() { - displayNextItem(); - }); - }, "text"); + $.ajax({url: DOCUMENTATION_OPTIONS.URL_ROOT + '_sources/' + item[0] + '.txt', + dataType: "text", + complete: function(jqxhr, textstatus) { + var data = jqxhr.responseText; + if (data !== '') { + listItem.append(Search.makeSearchSummary(data, searchterms, hlterms)); + Search.output.append(listItem); + } + listItem.slideDown(5, function() { + displayNextItem(); + }); + }}); } else { // no source available, just display title Search.output.append(listItem); From 6608b58732b9a607745065970881bcbc3db5cdd2 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 30 Mar 2013 11:44:43 +0100 Subject: [PATCH 41/76] Closes #1117: Handle .pyx files in sphinx-apidoc. --- CHANGES | 1 + sphinx/apidoc.py | 4 +++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index bd585da71..2e0173439 100644 --- a/CHANGES +++ b/CHANGES @@ -158,6 +158,7 @@ Bugs fixed * Fix text writer not handling visit_legend for figure directive contents. * Fix text builder not respecting wide/fullwidth characters: title underline width, table layout width and text wrap width. +* #1117: Handle .pyx files in sphinx-apidoc. * #1111: Fix failure to find uppercase words in search when :confval:`html_search_language` is 'ja'. Thanks to Tomo Saito. * #1108: The text writer now correctly numbers enumerated lists with diff --git a/sphinx/apidoc.py b/sphinx/apidoc.py index 151608288..500332c37 100644 --- a/sphinx/apidoc.py +++ b/sphinx/apidoc.py @@ -31,6 +31,7 @@ else: ] INITPY = '__init__.py' +PY_SUFFIXES = set(['.py', '.pyx']) def makename(package, module): @@ -163,7 +164,8 @@ def recurse_tree(rootpath, excludes, opts): del subs[:] continue # document only Python module files - py_files = sorted([f for f in files if path.splitext(f)[1] == '.py']) + py_files = sorted(f for f in files + if path.splitext(f)[1] in PY_SUFFIXES) is_pkg = INITPY in py_files if is_pkg: py_files.remove(INITPY) From 4f78f0d598a4dc36a5132a4362f0281223b685ed Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 30 Mar 2013 12:00:51 +0100 Subject: [PATCH 42/76] Closes #1126: Fix double-hyphen to en-dash conversion in wrong places such as command-line option names in LaTeX. --- CHANGES | 2 ++ sphinx/writers/latex.py | 2 ++ 2 files changed, 4 insertions(+) diff --git a/CHANGES b/CHANGES index 2e0173439..83e857cfa 100644 --- a/CHANGES +++ b/CHANGES @@ -158,6 +158,8 @@ Bugs fixed * Fix text writer not handling visit_legend for figure directive contents. * Fix text builder not respecting wide/fullwidth characters: title underline width, table layout width and text wrap width. +* #1126: Fix double-hyphen to en-dash conversion in wrong places such as + command-line option names in LaTeX. * #1117: Handle .pyx files in sphinx-apidoc. * #1111: Fix failure to find uppercase words in search when :confval:`html_search_language` is 'ja'. Thanks to Tomo Saito. diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py index 371c0114e..0b64928d1 100644 --- a/sphinx/writers/latex.py +++ b/sphinx/writers/latex.py @@ -562,10 +562,12 @@ class LaTeXTranslator(nodes.NodeVisitor): def visit_desc_name(self, node): self.body.append(r'\bfcode{') + self.no_contractions += 1 self.literal_whitespace += 1 def depart_desc_name(self, node): self.body.append('}') self.literal_whitespace -= 1 + self.no_contractions -= 1 def visit_desc_parameterlist(self, node): # close name, open parameterlist From cef883f8ae6f67463e1d7d0125acf2db5cdb62d8 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 30 Mar 2013 12:23:04 +0100 Subject: [PATCH 43/76] Closes #1132: Fix LaTeX table output for multi-row cells in the first column. --- CHANGES | 1 + sphinx/writers/latex.py | 5 +++-- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 83e857cfa..1af69ca3d 100644 --- a/CHANGES +++ b/CHANGES @@ -158,6 +158,7 @@ Bugs fixed * Fix text writer not handling visit_legend for figure directive contents. * Fix text builder not respecting wide/fullwidth characters: title underline width, table layout width and text wrap width. +* #1132: Fix LaTeX table output for multi-row cells in the first column. * #1126: Fix double-hyphen to en-dash conversion in wrong places such as command-line option names in LaTeX. * #1117: Handle .pyx files in sphinx-apidoc. diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py index 0b64928d1..dba141054 100644 --- a/sphinx/writers/latex.py +++ b/sphinx/writers/latex.py @@ -759,10 +759,11 @@ class LaTeXTranslator(nodes.NodeVisitor): self.table.rowcount += 1 def visit_entry(self, node): - if self.remember_multirow.get(0, 0) > 1: - self.body.append(' & ') if self.table.col > 0: self.body.append(' & ') + elif self.remember_multirow.get(1, 0) > 1: + self.remember_multirow[1] -= 1 + self.body.append(' & ') self.table.col += 1 context = '' if 'morerows' in node: From 1f79ba7e74cb8aa930a3facd514f81ba3c0171f0 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 30 Mar 2013 12:30:36 +0100 Subject: [PATCH 44/76] Fix leading space in LaTeX table header cells. --- CHANGES | 1 + sphinx/writers/latex.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 1af69ca3d..70a3ba396 100644 --- a/CHANGES +++ b/CHANGES @@ -158,6 +158,7 @@ Bugs fixed * Fix text writer not handling visit_legend for figure directive contents. * Fix text builder not respecting wide/fullwidth characters: title underline width, table layout width and text wrap width. +* Fix leading space in LaTeX table header cells. * #1132: Fix LaTeX table output for multi-row cells in the first column. * #1126: Fix double-hyphen to en-dash conversion in wrong places such as command-line option names in LaTeX. diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py index dba141054..f02a07511 100644 --- a/sphinx/writers/latex.py +++ b/sphinx/writers/latex.py @@ -782,7 +782,7 @@ class LaTeXTranslator(nodes.NodeVisitor): self.body.append('}{l|}{') context += '}' if isinstance(node.parent.parent, nodes.thead): - self.body.append('\\textbf{') + self.body.append('\\textbf{\\relax ') context += '}' if self.remember_multirow.get(self.table.col + 1, 0) > 1: self.remember_multirow[self.table.col + 1] -= 1 From 2f03bb5f125ccfffed76327320dd4c01a68e5553 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 30 Mar 2013 12:33:31 +0100 Subject: [PATCH 45/76] environment: clarify docstring --- sphinx/environment.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/sphinx/environment.py b/sphinx/environment.py index e7e030240..5c1947c72 100644 --- a/sphinx/environment.py +++ b/sphinx/environment.py @@ -309,8 +309,9 @@ class BuildEnvironment: """Return paths to a file referenced from a document, relative to documentation root and absolute. - Absolute filenames are relative to the source dir, while relative - filenames are relative to the dir of the containing document. + In the input "filename", absolute filenames are taken as relative to the + source dir, while relative filenames are relative to the dir of the + containing document. """ if filename.startswith('/') or filename.startswith(os.sep): rel_fn = filename[1:] From 181b075251e0f21fa19e4a7be9dd380d392135ae Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 30 Mar 2013 12:44:39 +0100 Subject: [PATCH 46/76] Closes #1112: Avoid duplicate download files when referenced from documents in different ways (absolute/relative). --- CHANGES | 2 ++ sphinx/environment.py | 6 ++++-- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGES b/CHANGES index 70a3ba396..0d1edc97f 100644 --- a/CHANGES +++ b/CHANGES @@ -163,6 +163,8 @@ Bugs fixed * #1126: Fix double-hyphen to en-dash conversion in wrong places such as command-line option names in LaTeX. * #1117: Handle .pyx files in sphinx-apidoc. +* #1112: Avoid duplicate download files when referenced from documents in + different ways (absolute/relative). * #1111: Fix failure to find uppercase words in search when :confval:`html_search_language` is 'ja'. Thanks to Tomo Saito. * #1108: The text writer now correctly numbers enumerated lists with diff --git a/sphinx/environment.py b/sphinx/environment.py index 5c1947c72..426ab99e9 100644 --- a/sphinx/environment.py +++ b/sphinx/environment.py @@ -320,12 +320,14 @@ class BuildEnvironment: base=None)) rel_fn = path.join(docdir, filename) try: - return rel_fn, path.join(self.srcdir, rel_fn) + # the path.abspath() might seem redundant, but otherwise artifacts + # such as ".." will remain in the path + return rel_fn, path.abspath(path.join(self.srcdir, rel_fn)) except UnicodeDecodeError: # the source directory is a bytestring with non-ASCII characters; # let's try to encode the rel_fn in the file system encoding enc_rel_fn = rel_fn.encode(sys.getfilesystemencoding()) - return rel_fn, path.join(self.srcdir, enc_rel_fn) + return rel_fn, path.abspath(path.join(self.srcdir, enc_rel_fn)) def find_files(self, config): """Find all source files in the source dir and put them in From 023794000797a26ba2cab22a5be310b824ff6417 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 30 Mar 2013 12:48:21 +0100 Subject: [PATCH 47/76] remove stray quote --- doc/rest.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/rest.rst b/doc/rest.rst index ccf51c66f..ccfdf11d5 100644 --- a/doc/rest.rst +++ b/doc/rest.rst @@ -50,7 +50,7 @@ Be aware of some restrictions of this markup: These restrictions may be lifted in future versions of the docutils. -reST also allows for custom "interpreted text roles"', which signify that the +reST also allows for custom "interpreted text roles", which signify that the enclosed text should be interpreted in a specific way. Sphinx uses this to provide semantic markup and cross-referencing of identifiers, as described in the appropriate section. The general syntax is ``:rolename:`content```. From c18479a772bcdd9b35ac3bdce1a650e4a551bbdc Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 30 Mar 2013 12:49:59 +0100 Subject: [PATCH 48/76] Closes #961: Fix LaTeX output for triple quotes in code snippets. --- CHANGES | 1 + sphinx/writers/latex.py | 1 + 2 files changed, 2 insertions(+) diff --git a/CHANGES b/CHANGES index 0d1edc97f..ed62a593b 100644 --- a/CHANGES +++ b/CHANGES @@ -196,6 +196,7 @@ Bugs fixed * #1008: Fix test failures with Python 3.3. * #976: Fix gettext does not extract index entries. * PR#72: #975: Fix gettext not extracting definition terms before docutils 0.10. +* #961: Fix LaTeX output for triple quotes in code snippets. * #958: Do not preserve ``environment.pickle`` after a failed build. * #955: Fix i18n transformation. * #940: Fix gettext does not extract figure caption. diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py index f02a07511..dcb52d507 100644 --- a/sphinx/writers/latex.py +++ b/sphinx/writers/latex.py @@ -1494,6 +1494,7 @@ class LaTeXTranslator(nodes.NodeVisitor): text = text.replace(u'\n', u'~\\\\\n').replace(u' ', u'~') if self.no_contractions: text = text.replace('--', u'-{-}') + text = text.replace("''", u"'{'}") return text def encode_uri(self, text): From 44d1f1e952bf5a6b195987c4329c119b8487e56b Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 30 Mar 2013 14:00:43 +0100 Subject: [PATCH 49/76] Closes #995: Fix table-of-contents and page numbering for the LaTeX "howto" class. --- CHANGES | 1 + sphinx/texinputs/sphinx.sty | 24 +----------------------- sphinx/texinputs/sphinxhowto.cls | 12 ++++++++++++ sphinx/texinputs/sphinxmanual.cls | 14 ++++++++++++++ 4 files changed, 28 insertions(+), 23 deletions(-) diff --git a/CHANGES b/CHANGES index ed62a593b..0e4a8a13f 100644 --- a/CHANGES +++ b/CHANGES @@ -194,6 +194,7 @@ Bugs fixed * #1015: Stop overriding jQuery contains() in the JavaScript. * #1010: Make pngmath images transparent by default; IE7+ should handle it. * #1008: Fix test failures with Python 3.3. +* #995: Fix table-of-contents and page numbering for the LaTeX "howto" class. * #976: Fix gettext does not extract index entries. * PR#72: #975: Fix gettext not extracting definition terms before docutils 0.10. * #961: Fix LaTeX output for triple quotes in code snippets. diff --git a/sphinx/texinputs/sphinx.sty b/sphinx/texinputs/sphinx.sty index ce15591a2..9b083cc6b 100644 --- a/sphinx/texinputs/sphinx.sty +++ b/sphinx/texinputs/sphinx.sty @@ -102,8 +102,7 @@ \sloppy \hbadness = 5000 % don't print trivial gripes -\pagestyle{empty} % start this way; change for -\pagenumbering{roman} % ToC & chapters +\pagestyle{empty} % start this way % Use this to set the font family for headers and other decor: \newcommand{\py@HeaderFamily}{\sffamily\bfseries} @@ -413,27 +412,6 @@ \fi% } - -% Fix the index environment to add an entry to the Table of -% Contents; this is much nicer than just having to jump to the end of the book -% and flip around, especially with multiple indexes. -% The memoir class already does this, so we don't duplicate it in that case. -% -% A similiar fix must be done to the bibliography environment, although -% dependant on document class. In particular, the '\addcontentsline' command -% should use 'chapter' for a report and 'section' for an article. -% See sphinxmanual.cls and sphinxhowto.cls for specific fixes. -% -\@ifclassloaded{memoir}{}{ - \let\py@OldTheindex=\theindex - \renewcommand{\theindex}{ - \cleardoublepage - \phantomsection - \py@OldTheindex - \addcontentsline{toc}{chapter}{\indexname} - } -} - % to make pdf with correct encoded bookmarks in Japanese % this should precede the hyperref package \ifx\kanjiskip\undefined\else diff --git a/sphinx/texinputs/sphinxhowto.cls b/sphinx/texinputs/sphinxhowto.cls index 9625870e7..26e63a7ee 100644 --- a/sphinx/texinputs/sphinxhowto.cls +++ b/sphinx/texinputs/sphinxhowto.cls @@ -90,3 +90,15 @@ \py@OldThebibliography{1} \addcontentsline{toc}{section}{\bibname} } + +% Same for the indices. +% The memoir class already does this, so we don't duplicate it in that case. +% +\@ifclassloaded{memoir}{}{ + \let\py@OldTheindex=\theindex + \renewcommand{\theindex}{ + \phantomsection + \py@OldTheindex + \addcontentsline{toc}{section}{\indexname} + } +} diff --git a/sphinx/texinputs/sphinxmanual.cls b/sphinx/texinputs/sphinxmanual.cls index a04cea5ba..26df488ef 100644 --- a/sphinx/texinputs/sphinxmanual.cls +++ b/sphinx/texinputs/sphinxmanual.cls @@ -114,6 +114,7 @@ \pagenumbering{arabic}% \@ifundefined{fancyhf}{}{\pagestyle{normal}}% } +\pagenumbering{roman} % This is needed to get the width of the section # area wide enough in the % library reference. Doing it here keeps it the same for all the manuals. @@ -131,3 +132,16 @@ \py@OldThebibliography{1} \addcontentsline{toc}{chapter}{\bibname} } + +% Same for the indices. +% The memoir class already does this, so we don't duplicate it in that case. +% +\@ifclassloaded{memoir}{}{ + \let\py@OldTheindex=\theindex + \renewcommand{\theindex}{ + \cleardoublepage + \phantomsection + \py@OldTheindex + \addcontentsline{toc}{chapter}{\indexname} + } +} From 08839fac6806405ce811e11f851d04f2876a4385 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 30 Mar 2013 14:08:33 +0100 Subject: [PATCH 50/76] docs: fix link to MathJax documentation --- doc/ext/math.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/ext/math.rst b/doc/ext/math.rst index 91376d15d..8b2924c79 100644 --- a/doc/ext/math.rst +++ b/doc/ext/math.rst @@ -196,7 +196,7 @@ Sphinx. MathJax. The default is the ``http://`` URL that loads the JS files from the `MathJax - CDN `_. If you want MathJax to + CDN `_. If you want MathJax to be available offline, you have to donwload it and set this value to a different path. From 6feb07951ebb718d0301defc7bda842c4bf68e84 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 30 Mar 2013 14:10:37 +0100 Subject: [PATCH 51/76] Closes #1127: Fix traceback when autodoc tries to tokenize a non-Python file. --- CHANGES | 1 + sphinx/pycode/__init__.py | 5 ++++- 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index 0e4a8a13f..23d72f571 100644 --- a/CHANGES +++ b/CHANGES @@ -160,6 +160,7 @@ Bugs fixed width, table layout width and text wrap width. * Fix leading space in LaTeX table header cells. * #1132: Fix LaTeX table output for multi-row cells in the first column. +* #1127: Fix traceback when autodoc tries to tokenize a non-Python file. * #1126: Fix double-hyphen to en-dash conversion in wrong places such as command-line option names in LaTeX. * #1117: Handle .pyx files in sphinx-apidoc. diff --git a/sphinx/pycode/__init__.py b/sphinx/pycode/__init__.py index 073c1560d..64999df88 100644 --- a/sphinx/pycode/__init__.py +++ b/sphinx/pycode/__init__.py @@ -241,7 +241,10 @@ class ModuleAnalyzer(object): """Generate tokens from the source.""" if self.tokens is not None: return - self.tokens = list(tokenize.generate_tokens(self.source.readline)) + try: + self.tokens = list(tokenize.generate_tokens(self.source.readline)) + except tokenize.TokenError, err: + raise PycodeError('tokenizing failed', err) self.source.close() def parse(self): From 34c8a68e744e21a06f672e3558b999e59c9235ee Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 30 Mar 2013 17:35:02 +0100 Subject: [PATCH 52/76] #1131: try to make grapviz invocation more robust --- sphinx/ext/graphviz.py | 9 +-------- 1 file changed, 1 insertion(+), 8 deletions(-) diff --git a/sphinx/ext/graphviz.py b/sphinx/ext/graphviz.py index a26e34fd5..800e9ca80 100644 --- a/sphinx/ext/graphviz.py +++ b/sphinx/ext/graphviz.py @@ -164,20 +164,13 @@ def render_dot(self, code, options, format, prefix='graphviz'): self.builder.config.graphviz_dot) self.builder._graphviz_warned_dot = True return None, None - wentWrong = False try: # Graphviz may close standard input when an error occurs, # resulting in a broken pipe on communicate() stdout, stderr = p.communicate(code) except (OSError, IOError), err: - if err.errno != EPIPE: + if err.errno not in (EPIPE, EINVAL): raise - wentWrong = True - except IOError, err: - if err.errno != EINVAL: - raise - wentWrong = True - if wentWrong: # in this case, read the standard output and standard error streams # directly, to get the error message(s) stdout, stderr = p.stdout.read(), p.stderr.read() From 2e8b8ba7e33d4c55d26e32de02ae38aa7ae48ddc Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 30 Mar 2013 17:45:42 +0100 Subject: [PATCH 53/76] Closes #1102: Support multi-context "with" statements in autodoc by updating pycode grammar from lib2to3. --- CHANGES | 1 + sphinx/pycode/Grammar.txt | 42 +++++++++++++++------------------------ 2 files changed, 17 insertions(+), 26 deletions(-) diff --git a/CHANGES b/CHANGES index 23d72f571..e7ae251b5 100644 --- a/CHANGES +++ b/CHANGES @@ -170,6 +170,7 @@ Bugs fixed :confval:`html_search_language` is 'ja'. Thanks to Tomo Saito. * #1108: The text writer now correctly numbers enumerated lists with non-default start values (based on patch by Ewan Edwards). +* #1102: Support multi-context "with" statements in autodoc. * #1090: Fix gettext not extracting glossary terms. * #1074: Add environment version info to the generated search index to avoid compatibility issues with old builds. diff --git a/sphinx/pycode/Grammar.txt b/sphinx/pycode/Grammar.txt index 1f4a50ffb..fcab0b697 100644 --- a/sphinx/pycode/Grammar.txt +++ b/sphinx/pycode/Grammar.txt @@ -1,4 +1,4 @@ -# Grammar for Python +# Grammar for Python. This grammar supports Python 2.x and 3.x. # Note: Changing the grammar specified in this file will most likely # require corresponding changes in the parser module @@ -10,22 +10,10 @@ # NOTE WELL: You should also follow all the steps listed in PEP 306, # "How to Change Python's Grammar" -# Commands for Kees Blom's railroad program -#diagram:token NAME -#diagram:token NUMBER -#diagram:token STRING -#diagram:token NEWLINE -#diagram:token ENDMARKER -#diagram:token INDENT -#diagram:output\input python.bla -#diagram:token DEDENT -#diagram:output\textwidth 20.04cm\oddsidemargin 0.0cm\evensidemargin 0.0cm -#diagram:rules - # Start symbols for the grammar: -# file_input is a module or sequence of commands read from an input file; -# single_input is a single interactive statement; -# eval_input is the input for the eval() and input() functions. +# file_input is a module or sequence of commands read from an input file; +# single_input is a single interactive statement; +# eval_input is the input for the eval() and input() functions. # NB: compound_stmt in single_input is followed by extra NEWLINE! file_input: (NEWLINE | stmt)* ENDMARKER single_input: NEWLINE | simple_stmt | compound_stmt NEWLINE @@ -53,8 +41,9 @@ stmt: simple_stmt | compound_stmt simple_stmt: small_stmt (';' small_stmt)* [';'] NEWLINE small_stmt: (expr_stmt | print_stmt | del_stmt | pass_stmt | flow_stmt | import_stmt | global_stmt | exec_stmt | assert_stmt) -expr_stmt: testlist (augassign (yield_expr|testlist) | - ('=' (yield_expr|testlist))*) +expr_stmt: testlist_star_expr (augassign (yield_expr|testlist) | + ('=' (yield_expr|testlist_star_expr))*) +testlist_star_expr: (test|star_expr) (',' (test|star_expr))* [','] augassign: ('+=' | '-=' | '*=' | '/=' | '%=' | '&=' | '|=' | '^=' | '<<=' | '>>=' | '**=' | '//=') # For normal assignments, additional restrictions enforced by the interpreter @@ -87,11 +76,11 @@ while_stmt: 'while' test ':' suite ['else' ':' suite] for_stmt: 'for' exprlist 'in' testlist ':' suite ['else' ':' suite] try_stmt: ('try' ':' suite ((except_clause ':' suite)+ - ['else' ':' suite] - ['finally' ':' suite] | - 'finally' ':' suite)) -with_stmt: 'with' test [ with_var ] ':' suite -with_var: 'as' expr + ['else' ':' suite] + ['finally' ':' suite] | + 'finally' ':' suite)) +with_stmt: 'with' with_item (',' with_item)* ':' suite +with_item: test ['as' expr] # NB compile.c makes sure that the default except clause is last except_clause: 'except' [test [(',' | 'as') test]] suite: simple_stmt | NEWLINE INDENT stmt+ DEDENT @@ -111,6 +100,7 @@ and_test: not_test ('and' not_test)* not_test: 'not' not_test | comparison comparison: expr (comp_op expr)* comp_op: '<'|'>'|'=='|'>='|'<='|'<>'|'!='|'in'|'not' 'in'|'is'|'is' 'not' +star_expr: '*' expr expr: xor_expr ('|' xor_expr)* xor_expr: and_expr ('^' and_expr)* and_expr: shift_expr ('&' shift_expr)* @@ -124,14 +114,14 @@ atom: ('(' [yield_expr|testlist_gexp] ')' | '{' [dictsetmaker] '}' | '`' testlist1 '`' | NAME | NUMBER | STRING+ | '.' '.' '.') -listmaker: test ( comp_for | (',' test)* [','] ) -testlist_gexp: test ( comp_for | (',' test)* [','] ) +listmaker: (test|star_expr) ( comp_for | (',' (test|star_expr))* [','] ) +testlist_gexp: (test|star_expr) ( comp_for | (',' (test|star_expr))* [','] ) lambdef: 'lambda' [varargslist] ':' test trailer: '(' [arglist] ')' | '[' subscriptlist ']' | '.' NAME subscriptlist: subscript (',' subscript)* [','] subscript: test | [test] ':' [test] [sliceop] sliceop: ':' [test] -exprlist: expr (',' expr)* [','] +exprlist: (expr|star_expr) (',' (expr|star_expr))* [','] testlist: test (',' test)* [','] dictsetmaker: ( (test ':' test (comp_for | (',' test ':' test)* [','])) | (test (comp_for | (',' test)* [','])) ) From b9696a9d9d7462bc8ee50057254854d6d9223646 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 30 Mar 2013 17:47:21 +0100 Subject: [PATCH 54/76] Closes #1123: Allow whitespaces in filenames given to :rst:dir:`literalinclude`. --- CHANGES | 1 + sphinx/directives/code.py | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/CHANGES b/CHANGES index e7ae251b5..331f342e0 100644 --- a/CHANGES +++ b/CHANGES @@ -163,6 +163,7 @@ Bugs fixed * #1127: Fix traceback when autodoc tries to tokenize a non-Python file. * #1126: Fix double-hyphen to en-dash conversion in wrong places such as command-line option names in LaTeX. +* #1123: Allow whitespaces in filenames given to :rst:dir:`literalinclude`. * #1117: Handle .pyx files in sphinx-apidoc. * #1112: Avoid duplicate download files when referenced from documents in different ways (absolute/relative). diff --git a/sphinx/directives/code.py b/sphinx/directives/code.py index 0d04c906f..4d43e5ff6 100644 --- a/sphinx/directives/code.py +++ b/sphinx/directives/code.py @@ -92,7 +92,7 @@ class LiteralInclude(Directive): has_content = False required_arguments = 1 optional_arguments = 0 - final_argument_whitespace = False + final_argument_whitespace = True option_spec = { 'linenos': directives.flag, 'tab-width': int, From 77d2a90f36a22f5e12f14dc2ef0589f122318d8d Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 30 Mar 2013 17:53:04 +0100 Subject: [PATCH 55/76] Closes #1128: Fix Unicode errors when trying to format time strings with a non-standard locale. --- CHANGES | 2 ++ sphinx/util/osutil.py | 10 ++++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index 331f342e0..eea87b8ac 100644 --- a/CHANGES +++ b/CHANGES @@ -160,6 +160,8 @@ Bugs fixed width, table layout width and text wrap width. * Fix leading space in LaTeX table header cells. * #1132: Fix LaTeX table output for multi-row cells in the first column. +* #1128: Fix Unicode errors when trying to format time strings with a + non-standard locale. * #1127: Fix traceback when autodoc tries to tokenize a non-Python file. * #1126: Fix double-hyphen to en-dash conversion in wrong places such as command-line option names in LaTeX. diff --git a/sphinx/util/osutil.py b/sphinx/util/osutil.py index 7322289ef..6cb310eb0 100644 --- a/sphinx/util/osutil.py +++ b/sphinx/util/osutil.py @@ -14,6 +14,7 @@ import re import sys import time import errno +import locale import shutil from os import path @@ -135,10 +136,12 @@ def make_filename(string): return no_fn_re.sub('', string) if sys.version_info < (3, 0): + # strftime for unicode strings def ustrftime(format, *args): - # strftime for unicode strings - return time.strftime(unicode(format).encode('utf-8'), *args) \ - .decode('utf-8') + # if a locale is set, the time strings are encoded in the encoding + # given by LC_TIME; if that is available, use it + enc = locale.getlocale(locale.LC_TIME)[1] or 'utf-8' + return time.strftime(unicode(format).encode(enc), *args).decode(enc) else: ustrftime = time.strftime @@ -159,4 +162,3 @@ def find_catalog(docname, compaction): return ret fs_encoding = sys.getfilesystemencoding() or sys.getdefaultencoding() - From 41971a661725e5b0c58444e2ce56ad9f4080a2ce Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sat, 30 Mar 2013 17:58:42 +0100 Subject: [PATCH 56/76] Closes #1088: raise an "unsupported" error when trying to put a literal block in a footnote in latex --- sphinx/writers/latex.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py index dcb52d507..a9e98abf2 100644 --- a/sphinx/writers/latex.py +++ b/sphinx/writers/latex.py @@ -1310,6 +1310,10 @@ class LaTeXTranslator(nodes.NodeVisitor): pass def visit_literal_block(self, node): + if self.in_footnote: + raise UnsupportedError('%s:%s: literal blocks in footnotes are ' + 'not supported by LaTeX' % + (self.curfilestack[-1], node.line)) self.verbatim = '' def depart_literal_block(self, node): code = self.verbatim.rstrip('\n') From 649a75c4273fa47be677647aae392a379e0e2dc8 Mon Sep 17 00:00:00 2001 From: Takayuki Shimizukawa Date: Sun, 31 Mar 2013 12:22:08 +0900 Subject: [PATCH 57/76] add 'locale_dirs' and 'gettext_compact' to conf.py for translation setup easier --- doc/conf.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/doc/conf.py b/doc/conf.py index 8dc1e2fb1..6e792b6a3 100644 --- a/doc/conf.py +++ b/doc/conf.py @@ -83,6 +83,10 @@ texinfo_documents = [ # the mapping: intersphinx_mapping = {'python': ('http://docs.python.org/dev', None)} +# Sphinx document translation with sphinx gettext feature uses these settings: +locale_dirs = ['locale/'] +gettext_compact = False + # -- Extension interface ------------------------------------------------------- From 6a422c5c77a8752210ddddd4141cabfd783a7a81 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 31 Mar 2013 15:41:35 +0200 Subject: [PATCH 58/76] #723: fix remaining issue with search and webkit browsers --- sphinx/themes/basic/static/searchtools.js_t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/themes/basic/static/searchtools.js_t b/sphinx/themes/basic/static/searchtools.js_t index 44837f87f..58e242828 100644 --- a/sphinx/themes/basic/static/searchtools.js_t +++ b/sphinx/themes/basic/static/searchtools.js_t @@ -261,8 +261,8 @@ var Search = { var data = jqxhr.responseText; if (data !== '') { listItem.append(Search.makeSearchSummary(data, searchterms, hlterms)); - Search.output.append(listItem); } + Search.output.append(listItem); listItem.slideDown(5, function() { displayNextItem(); }); From 9abf39f912ebdf947089c07d2bace20974a3755c Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 31 Mar 2013 15:44:04 +0200 Subject: [PATCH 59/76] Fix overlong lines. --- tests/test_autodoc.py | 3 ++- tests/test_intl.py | 8 +++++--- 2 files changed, 7 insertions(+), 4 deletions(-) diff --git a/tests/test_autodoc.py b/tests/test_autodoc.py index fcd064929..fdc8d5f7f 100644 --- a/tests/test_autodoc.py +++ b/tests/test_autodoc.py @@ -191,7 +191,8 @@ def test_format_signature(): class G2(F2, object): pass for C in (F2, G2): - assert formatsig('class', 'C', C, None, None) == '(a1, a2, kw1=True, kw2=False)' + assert formatsig('class', 'C', C, None, None) == \ + '(a1, a2, kw1=True, kw2=False)' # test for methods class H: diff --git a/tests/test_intl.py b/tests/test_intl.py index 100b0e1d9..4a74e030e 100644 --- a/tests/test_intl.py +++ b/tests/test_intl.py @@ -299,9 +299,11 @@ def test_i18n_role_xref(app): app.builddir.rmtree(True) #for warnings acceleration app.builder.build(['role_xref']) result = (app.outdir / 'role_xref.txt').text(encoding='utf-8') - expect = (u"\nI18N ROCK'N ROLE XREF" - u"\n*********************\n" - u"\nLINK TO *I18N ROCK'N ROLE XREF*, *CONTENTS*, *SOME NEW TERM*.\n") + expect = ( + u"\nI18N ROCK'N ROLE XREF" + u"\n*********************\n" + u"\nLINK TO *I18N ROCK'N ROLE XREF*, *CONTENTS*, *SOME NEW TERM*.\n" + ) warnings = warnfile.getvalue().replace(os.sep, '/') assert 'term not in glossary' not in warnings From 0b41ccb0057eb95995e6340f4bcffbfae3acc8a8 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Sun, 31 Mar 2013 15:45:44 +0200 Subject: [PATCH 60/76] Bump to 1.2b1. --- CHANGES | 4 ++-- sphinx/__init__.py | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGES b/CHANGES index eea87b8ac..000045bad 100644 --- a/CHANGES +++ b/CHANGES @@ -1,5 +1,5 @@ -Release 1.2 (in development) -============================ +Release 1.2 (beta1 released Mar 31, 2013) +========================================= Incompatible changes -------------------- diff --git a/sphinx/__init__.py b/sphinx/__init__.py index 88d47cd11..c091a6776 100644 --- a/sphinx/__init__.py +++ b/sphinx/__init__.py @@ -15,8 +15,8 @@ import sys from os import path -__version__ = '1.2pre' -__released__ = '1.2 (hg)' # used when Sphinx builds its own docs +__version__ = '1.2b1' +__released__ = '1.2b1' # used when Sphinx builds its own docs package_dir = path.abspath(path.dirname(__file__)) From 21f0ca8197a2f41e70bc3f3334d6fc88a8a76553 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 1 Apr 2013 11:26:21 +0200 Subject: [PATCH 62/76] Closes #896: use SkipTest in build_latex test if latex is not installed --- tests/test_build_latex.py | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/tests/test_build_latex.py b/tests/test_build_latex.py index 721b3a2dd..b7e21077b 100644 --- a/tests/test_build_latex.py +++ b/tests/test_build_latex.py @@ -18,6 +18,7 @@ from subprocess import Popen, PIPE from sphinx.writers.latex import LaTeXTranslator from util import * +from util import SkipTest from test_build_html import ENV_WARNINGS @@ -69,17 +70,13 @@ def test_latex(app): return True if kpsetest('article.sty') is None: - print >>sys.stderr, \ - 'info: not running latex, it doesn\'t seem to be installed' - return + raise SkipTest('not running latex, it doesn\'t seem to be installed') for filename in ['fancyhdr.sty', 'fancybox.sty', 'titlesec.sty', 'amsmath.sty', 'framed.sty', 'color.sty', 'fancyvrb.sty', 'threeparttable.sty']: if not kpsetest(filename): - print >>sys.stderr, \ - 'info: not running latex, the %s package doesn\'t ' \ - 'seem to be installed' % filename - return + raise SkipTest('not running latex, the %s package doesn\'t ' + 'seem to be installed' % filename) # now, try to run latex over it cwd = os.getcwd() From 1af3e3ea71f0c0fea63141f20836b6cafbf9ff1c Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 1 Apr 2013 11:39:32 +0200 Subject: [PATCH 63/76] tests: replace "from util import *" by explicit imports --- tests/roots/test-intl/conf.py | 2 -- tests/test_application.py | 2 +- tests/test_autodoc.py | 5 ++++- tests/test_autosummary.py | 2 -- tests/test_build.py | 2 +- tests/test_build_gettext.py | 3 +-- tests/test_build_html.py | 2 +- tests/test_build_latex.py | 3 +-- tests/test_build_texinfo.py | 2 +- tests/test_build_text.py | 4 +--- tests/test_config.py | 3 +-- tests/test_coverage.py | 2 +- tests/test_cpp_domain.py | 2 +- tests/test_doctest.py | 3 ++- tests/test_env.py | 2 +- tests/test_footnote.py | 2 +- tests/test_highlighting.py | 15 +++++++-------- tests/test_i18n.py | 2 +- tests/test_intersphinx.py | 4 +--- tests/test_intl.py | 7 +++---- tests/test_linkcode.py | 2 +- tests/test_markup.py | 7 +++++-- tests/test_metadata.py | 2 +- tests/test_only_directive.py | 2 +- tests/test_quickstart.py | 2 +- tests/test_searchadapters.py | 6 ++---- tests/test_theming.py | 4 ++-- tests/test_versioning.py | 9 ++++++--- tests/test_websupport.py | 5 +++-- 29 files changed, 52 insertions(+), 56 deletions(-) diff --git a/tests/roots/test-intl/conf.py b/tests/roots/test-intl/conf.py index 59ce714d9..4c37f7718 100644 --- a/tests/roots/test-intl/conf.py +++ b/tests/roots/test-intl/conf.py @@ -1,7 +1,5 @@ # -*- coding: utf-8 -*- -import sys, os - project = 'Sphinx intl ' source_suffix = '.txt' keep_warnings = True diff --git a/tests/test_application.py b/tests/test_application.py index 87ec42f01..a0a288b93 100644 --- a/tests/test_application.py +++ b/tests/test_application.py @@ -15,7 +15,7 @@ from docutils import nodes from sphinx.application import ExtensionError from sphinx.domains import Domain -from util import * +from util import with_app, raises_msg, TestApp @with_app() diff --git a/tests/test_autodoc.py b/tests/test_autodoc.py index fdc8d5f7f..769827d33 100644 --- a/tests/test_autodoc.py +++ b/tests/test_autodoc.py @@ -13,7 +13,7 @@ import sys from StringIO import StringIO -from util import * +from util import TestApp, Struct from nose.tools import with_setup from docutils.statemachine import ViewList @@ -21,6 +21,7 @@ from docutils.statemachine import ViewList from sphinx.ext.autodoc import AutoDirective, add_documenter, \ ModuleLevelDocumenter, FunctionDocumenter, cut_lines, between, ALL +app = None def setup_module(): global app @@ -36,6 +37,8 @@ def teardown_module(): app.cleanup() +directive = options = None + def setup_test(): global options, directive global processed_docstrings, processed_signatures, _warnings diff --git a/tests/test_autosummary.py b/tests/test_autosummary.py index dab72c1e5..cb6a6b745 100644 --- a/tests/test_autosummary.py +++ b/tests/test_autosummary.py @@ -9,8 +9,6 @@ :license: BSD, see LICENSE for details. """ -from util import * - from sphinx.ext.autosummary import mangle_signature diff --git a/tests/test_build.py b/tests/test_build.py index c2f0b38d1..b172184b1 100644 --- a/tests/test_build.py +++ b/tests/test_build.py @@ -9,7 +9,7 @@ :license: BSD, see LICENSE for details. """ -from util import * +from util import with_app, test_root, path from textwrap import dedent diff --git a/tests/test_build_gettext.py b/tests/test_build_gettext.py index 831ef29d2..bba3461b8 100644 --- a/tests/test_build_gettext.py +++ b/tests/test_build_gettext.py @@ -14,8 +14,7 @@ import os import re from subprocess import Popen, PIPE -from util import * -from util import SkipTest +from util import test_root, test_roots, with_app, SkipTest def teardown_module(): diff --git a/tests/test_build_html.py b/tests/test_build_html.py index 616b67f9e..3890f6e1b 100644 --- a/tests/test_build_html.py +++ b/tests/test_build_html.py @@ -21,7 +21,7 @@ except ImportError: pygments = None from sphinx import __version__ -from util import * +from util import test_root, remove_unicode_literals, gen_with_app from etree13 import ElementTree as ET diff --git a/tests/test_build_latex.py b/tests/test_build_latex.py index b7e21077b..bb79e52cf 100644 --- a/tests/test_build_latex.py +++ b/tests/test_build_latex.py @@ -17,8 +17,7 @@ from subprocess import Popen, PIPE from sphinx.writers.latex import LaTeXTranslator -from util import * -from util import SkipTest +from util import test_root, SkipTest, remove_unicode_literals, with_app from test_build_html import ENV_WARNINGS diff --git a/tests/test_build_texinfo.py b/tests/test_build_texinfo.py index 37ad0582a..587d123b9 100644 --- a/tests/test_build_texinfo.py +++ b/tests/test_build_texinfo.py @@ -17,7 +17,7 @@ from subprocess import Popen, PIPE from sphinx.writers.texinfo import TexinfoTranslator -from util import * +from util import with_app, test_root, remove_unicode_literals from test_build_html import ENV_WARNINGS diff --git a/tests/test_build_text.py b/tests/test_build_text.py index 41603d502..445e39db6 100644 --- a/tests/test_build_text.py +++ b/tests/test_build_text.py @@ -9,12 +9,10 @@ :license: BSD, see LICENSE for details. """ -from textwrap import dedent - from docutils.utils import column_width from sphinx.writers.text import MAXWIDTH -from util import * +from util import with_app def with_text_app(*args, **kw): diff --git a/tests/test_config.py b/tests/test_config.py index 84a3b4b77..4d3d51b09 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -11,9 +11,8 @@ """ import sys -from util import * +from util import TestApp, with_app, with_tempdir, raises, raises_msg, write_file -import sphinx from sphinx.config import Config from sphinx.errors import ExtensionError, ConfigError, VersionRequirementError from sphinx.util.pycompat import b diff --git a/tests/test_coverage.py b/tests/test_coverage.py index 88c66140f..6ba005429 100644 --- a/tests/test_coverage.py +++ b/tests/test_coverage.py @@ -11,7 +11,7 @@ import pickle -from util import * +from util import with_app @with_app(buildername='coverage') diff --git a/tests/test_cpp_domain.py b/tests/test_cpp_domain.py index db2589d50..2168d7e44 100644 --- a/tests/test_cpp_domain.py +++ b/tests/test_cpp_domain.py @@ -9,7 +9,7 @@ :license: BSD, see LICENSE for details. """ -from util import * +from util import raises from sphinx.domains.cpp import DefinitionParser, DefinitionError diff --git a/tests/test_doctest.py b/tests/test_doctest.py index 4934e716b..f445dab2a 100644 --- a/tests/test_doctest.py +++ b/tests/test_doctest.py @@ -12,7 +12,8 @@ import sys import StringIO -from util import * +from util import with_app + status = StringIO.StringIO() cleanup_called = 0 diff --git a/tests/test_env.py b/tests/test_env.py index 12e0719da..2b03bbfb9 100644 --- a/tests/test_env.py +++ b/tests/test_env.py @@ -10,7 +10,7 @@ """ import sys -from util import * +from util import TestApp, remove_unicode_literals, path from sphinx.builders.html import StandaloneHTMLBuilder from sphinx.builders.latex import LaTeXBuilder diff --git a/tests/test_footnote.py b/tests/test_footnote.py index 3a3d59670..ae8e76d8a 100644 --- a/tests/test_footnote.py +++ b/tests/test_footnote.py @@ -11,7 +11,7 @@ import re -from util import * +from util import test_root, with_app def teardown_module(): diff --git a/tests/test_highlighting.py b/tests/test_highlighting.py index b392193d6..888d4c214 100644 --- a/tests/test_highlighting.py +++ b/tests/test_highlighting.py @@ -9,20 +9,19 @@ :license: BSD, see LICENSE for details. """ -from util import * - -try: - import pygments -except ImportError: - from nose.plugins.skip import SkipTest - raise SkipTest('pygments not available') - from pygments.lexer import RegexLexer from pygments.token import Text, Name from pygments.formatters.html import HtmlFormatter from sphinx.highlighting import PygmentsBridge +from util import with_app, SkipTest + +try: + import pygments +except ImportError: + raise SkipTest('pygments not available') + class MyLexer(RegexLexer): name = 'testlexer' diff --git a/tests/test_i18n.py b/tests/test_i18n.py index 210243e79..e67c96c78 100644 --- a/tests/test_i18n.py +++ b/tests/test_i18n.py @@ -9,7 +9,7 @@ :license: BSD, see LICENSE for details. """ -from util import * +from util import with_app @with_app(confoverrides={'language': 'de'}) diff --git a/tests/test_intersphinx.py b/tests/test_intersphinx.py index 0171ae035..a8679e7e2 100644 --- a/tests/test_intersphinx.py +++ b/tests/test_intersphinx.py @@ -22,7 +22,7 @@ from sphinx import addnodes from sphinx.ext.intersphinx import read_inventory_v1, read_inventory_v2, \ load_mappings, missing_reference -from util import * +from util import with_app, with_tempdir, write_file inventory_v1 = '''\ @@ -178,5 +178,3 @@ def test_load_mappings_warnings(tempdir, app): # load the inventory and check if it's done correctly load_mappings(app) assert len(app._warning.content) == 2 - - diff --git a/tests/test_intl.py b/tests/test_intl.py index 4a74e030e..fe152c831 100644 --- a/tests/test_intl.py +++ b/tests/test_intl.py @@ -10,15 +10,14 @@ :license: BSD, see LICENSE for details. """ -from subprocess import Popen, PIPE -import re import os +import re from StringIO import StringIO +from subprocess import Popen, PIPE from sphinx.util.pycompat import relpath -from util import * -from util import SkipTest +from util import test_roots, path, with_app, SkipTest warnfile = StringIO() diff --git a/tests/test_linkcode.py b/tests/test_linkcode.py index 6e9bd6f87..507cd9ce9 100644 --- a/tests/test_linkcode.py +++ b/tests/test_linkcode.py @@ -10,7 +10,7 @@ """ import os -from util import * +from util import with_app @with_app(srcdir='(temp)', buildername='html', tags=['test_linkcode']) def test_html(app): diff --git a/tests/test_markup.py b/tests/test_markup.py index c72b6b913..311222ba1 100644 --- a/tests/test_markup.py +++ b/tests/test_markup.py @@ -11,8 +11,6 @@ import re -from util import * - from docutils import frontend, utils, nodes from docutils.parsers import rst @@ -21,6 +19,11 @@ from sphinx.util.pycompat import b from sphinx.writers.html import HTMLWriter, SmartyPantsHTMLTranslator from sphinx.writers.latex import LaTeXWriter, LaTeXTranslator +from util import TestApp + + +app = settings = parser = None + def setup_module(): global app, settings, parser texescape.init() # otherwise done by the latex builder diff --git a/tests/test_metadata.py b/tests/test_metadata.py index b4a064baf..db955390d 100644 --- a/tests/test_metadata.py +++ b/tests/test_metadata.py @@ -12,7 +12,7 @@ # adapted from an example of bibliographic metadata at # http://docutils.sourceforge.net/docs/user/rst/demo.txt -from util import * +from util import TestApp from nose.tools import assert_equals diff --git a/tests/test_only_directive.py b/tests/test_only_directive.py index af1462c03..e29202e00 100644 --- a/tests/test_only_directive.py +++ b/tests/test_only_directive.py @@ -13,7 +13,7 @@ import re from docutils import nodes -from util import * +from util import with_app, test_roots def teardown_module(): diff --git a/tests/test_quickstart.py b/tests/test_quickstart.py index b0815447d..2340e04b7 100644 --- a/tests/test_quickstart.py +++ b/tests/test_quickstart.py @@ -12,7 +12,7 @@ import sys import time -from util import * +from util import raises, with_tempdir from sphinx import quickstart as qs from sphinx.util.console import nocolor, coloron diff --git a/tests/test_searchadapters.py b/tests/test_searchadapters.py index 551eefb9e..ad1e58f2b 100644 --- a/tests/test_searchadapters.py +++ b/tests/test_searchadapters.py @@ -9,15 +9,13 @@ :license: BSD, see LICENSE for details. """ -import os, sys +import os from StringIO import StringIO -from nose import SkipTest - from sphinx.websupport import WebSupport from test_websupport import sqlalchemy_missing -from util import * +from util import test_root, skip_if, skip_unless_importable def clear_builddir(): diff --git a/tests/test_theming.py b/tests/test_theming.py index 141aa0889..2e297aedc 100644 --- a/tests/test_theming.py +++ b/tests/test_theming.py @@ -12,10 +12,10 @@ import os import zipfile -from util import * - from sphinx.theming import Theme, ThemeError +from util import with_app, raises + @with_app(confoverrides={'html_theme': 'ziptheme', 'html_theme_options.testopt': 'foo'}) diff --git a/tests/test_versioning.py b/tests/test_versioning.py index 08238f4a1..6469a33cc 100644 --- a/tests/test_versioning.py +++ b/tests/test_versioning.py @@ -8,17 +8,20 @@ :copyright: Copyright 2007-2013 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ + import pickle -from util import * - -from docutils.statemachine import ViewList from docutils.parsers.rst.directives.html import MetaBody from sphinx import addnodes from sphinx.versioning import add_uids, merge_doctrees, get_ratio from sphinx.util.pycompat import all +from util import test_root, TestApp + + +app = original = original_uids = None + def setup_module(): global app, original, original_uids app = TestApp() diff --git a/tests/test_websupport.py b/tests/test_websupport.py index ff9fb1ecb..611a131ac 100644 --- a/tests/test_websupport.py +++ b/tests/test_websupport.py @@ -19,7 +19,8 @@ except ImportError: wraps = lambda f: (lambda w: w) from sphinx.websupport import WebSupport -from sphinx.websupport.errors import * +from sphinx.websupport.errors import DocumentNotFoundError, \ + CommentNotAllowedError, UserNotAuthorizedError from sphinx.websupport.storage import StorageBackend from sphinx.websupport.storage.differ import CombinedHtmlDiff try: @@ -30,7 +31,7 @@ try: except ImportError: sqlalchemy_missing = True -from util import * +from util import test_root, raises, skip_if default_settings = {'builddir': os.path.join(test_root, 'websupport'), From 52515eeb8622fb484132df55a95dcb4acdacd6a2 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 1 Apr 2013 11:41:48 +0200 Subject: [PATCH 64/76] Copyright header update. --- sphinx/themes/pyramid/static/epub.css | 2 +- sphinx/themes/pyramid/static/pyramid.css_t | 2 +- tests/path.py | 4 ++-- tests/test_build_gettext.py | 2 +- tests/test_footnote.py | 2 +- tests/test_intl.py | 2 +- tests/test_only_directive.py | 2 +- utils/convert.py | 2 +- 8 files changed, 9 insertions(+), 9 deletions(-) mode change 100644 => 100755 tests/path.py mode change 100644 => 100755 utils/convert.py diff --git a/sphinx/themes/pyramid/static/epub.css b/sphinx/themes/pyramid/static/epub.css index 28dff738b..cb2df575c 100644 --- a/sphinx/themes/pyramid/static/epub.css +++ b/sphinx/themes/pyramid/static/epub.css @@ -4,7 +4,7 @@ * * Sphinx stylesheet -- default theme. * - * :copyright: Copyright 2007-2010 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2013 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ diff --git a/sphinx/themes/pyramid/static/pyramid.css_t b/sphinx/themes/pyramid/static/pyramid.css_t index e3b2ae1e1..c4e949088 100644 --- a/sphinx/themes/pyramid/static/pyramid.css_t +++ b/sphinx/themes/pyramid/static/pyramid.css_t @@ -4,7 +4,7 @@ * * Sphinx stylesheet -- pylons theme. * - * :copyright: Copyright 2007-2010 by the Sphinx team, see AUTHORS. + * :copyright: Copyright 2007-2013 by the Sphinx team, see AUTHORS. * :license: BSD, see LICENSE for details. * */ diff --git a/tests/path.py b/tests/path.py old mode 100644 new mode 100755 index bd0552d70..fa478557d --- a/tests/path.py +++ b/tests/path.py @@ -1,10 +1,10 @@ #!/usr/bin/env python -# coding: utf-8 +# -*- coding: utf-8 -*- """ path ~~~~ - :copyright: Copyright 2010 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2013 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ import os diff --git a/tests/test_build_gettext.py b/tests/test_build_gettext.py index bba3461b8..ca0ff0d2c 100644 --- a/tests/test_build_gettext.py +++ b/tests/test_build_gettext.py @@ -5,7 +5,7 @@ Test the build process with gettext builder with the test root. - :copyright: Copyright 2010 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2013 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_footnote.py b/tests/test_footnote.py index ae8e76d8a..96dea6163 100644 --- a/tests/test_footnote.py +++ b/tests/test_footnote.py @@ -5,7 +5,7 @@ Test for footnote and citation. - :copyright: Copyright 2010 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2013 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_intl.py b/tests/test_intl.py index fe152c831..10583b952 100644 --- a/tests/test_intl.py +++ b/tests/test_intl.py @@ -6,7 +6,7 @@ Test message patching for internationalization purposes. Runs the text builder in the test root. - :copyright: Copyright 2010 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2013 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/tests/test_only_directive.py b/tests/test_only_directive.py index e29202e00..28e34e58b 100644 --- a/tests/test_only_directive.py +++ b/tests/test_only_directive.py @@ -5,7 +5,7 @@ Test the only directive with the test root. - :copyright: Copyright 2010 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2013 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ diff --git a/utils/convert.py b/utils/convert.py old mode 100644 new mode 100755 index f025c49a0..6f4618229 --- a/utils/convert.py +++ b/utils/convert.py @@ -8,7 +8,7 @@ The Python3 version of a file foo.py will be called foo3.py. - :copyright: Copyright 2010 by the Sphinx team, see AUTHORS. + :copyright: Copyright 2007-2013 by the Sphinx team, see AUTHORS. :license: BSD, see LICENSE for details. """ import os From a8c4bd20fa9e56cade620f654d65f44a750e5473 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 1 Apr 2013 11:58:02 +0200 Subject: [PATCH 65/76] Update the .pot file --- sphinx/locale/sphinx.pot | 106 ++++++++++++++++---------------- sphinx/themes/basic/search.html | 2 +- 2 files changed, 53 insertions(+), 55 deletions(-) diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index b88ca5e4a..b8126ac71 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -6,9 +6,9 @@ #, fuzzy msgid "" msgstr "" -"Project-Id-Version: Sphinx 1.2pre/a9793de7f892+\n" +"Project-Id-Version: Sphinx 1.2b1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-03-03 15:44-0530\n" +"POT-Creation-Date: 2013-04-01 11:57+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -22,27 +22,27 @@ msgstr "" msgid "%s %s documentation" msgstr "" -#: sphinx/transforms.py:51 sphinx/writers/latex.py:202 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 -#, python-format -msgid "%B %d, %Y" -msgstr "" - -#: sphinx/environment.py:1507 +#: sphinx/environment.py:1510 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment.py:1510 +#: sphinx/environment.py:1513 #, python-format msgid "see also %s" msgstr "" -#: sphinx/roles.py:176 +#: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "" @@ -51,24 +51,24 @@ msgstr "" msgid "Module level" msgstr "" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html.py:312 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html.py:312 +#: sphinx/builders/html.py:309 msgid "index" msgstr "" -#: sphinx/builders/html.py:372 +#: sphinx/builders/html.py:369 msgid "next" msgstr "" -#: sphinx/builders/html.py:381 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "" @@ -157,6 +157,10 @@ msgstr "" msgid "variable" msgstr "" +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "" + #: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" @@ -211,10 +215,6 @@ msgstr "" msgid "Arguments" msgstr "" -#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "" - #: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "" @@ -381,8 +381,8 @@ msgstr "" #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 -#: sphinx/themes/basic/genindex.html:68 sphinx/writers/latex.py:191 -#: sphinx/writers/texinfo.py:475 +#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "" @@ -404,12 +404,12 @@ msgstr "" msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/graphviz.py:301 sphinx/ext/graphviz.py:309 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 #, python-format msgid "[graph: %s]" msgstr "" -#: sphinx/ext/graphviz.py:303 sphinx/ext/graphviz.py:311 +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 msgid "[graph]" msgstr "" @@ -418,6 +418,10 @@ msgstr "" msgid "(in %s v%s)" msgstr "" +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "" + #: sphinx/ext/refcounting.py:83 msgid "Return value: Always NULL." msgstr "" @@ -443,10 +447,6 @@ msgstr "" msgid "original entry" msgstr "" -#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "" @@ -548,8 +548,9 @@ msgstr "" msgid "Table Of Contents" msgstr "" -#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/search.html:11 -#: sphinx/themes/basic/search.html:20 sphinx/themes/basic/searchresults.html:10 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "" @@ -689,13 +690,13 @@ msgstr "" msgid "next chapter" msgstr "" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -703,17 +704,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:36 sphinx/themes/basic/searchresults.html:17 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "" -#: sphinx/themes/basic/search.html:40 sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:274 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "" -#: sphinx/themes/basic/search.html:42 sphinx/themes/basic/searchresults.html:23 -msgid "Your search did not match any results." +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." msgstr "" #: sphinx/themes/basic/searchbox.html:12 @@ -752,8 +756,8 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:513 -#: sphinx/writers/html.py:519 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "" @@ -765,26 +769,20 @@ msgstr "" msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:114 +#: sphinx/themes/basic/static/searchtools.js_t:119 msgid "Searching" msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:119 +#: sphinx/themes/basic/static/searchtools.js_t:124 msgid "Preparing search..." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:276 -msgid "" -"Your search did not match any documents. Please make sure that all words " -"are spelled correctly and that you've selected enough categories." -msgstr "" - -#: sphinx/themes/basic/static/searchtools.js_t:278 +#: sphinx/themes/basic/static/searchtools.js_t:285 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" -#: sphinx/themes/basic/static/searchtools.js_t:330 +#: sphinx/themes/basic/static/searchtools.js_t:337 msgid ", in " msgstr "" @@ -805,25 +803,25 @@ msgstr "" msgid "Release" msgstr "" -#: sphinx/writers/latex.py:618 sphinx/writers/manpage.py:187 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 #: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:702 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "" -#: sphinx/writers/latex.py:708 +#: sphinx/writers/latex.py:710 msgid "Continued on next page" msgstr "" -#: sphinx/writers/manpage.py:232 sphinx/writers/text.py:536 +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 #, python-format msgid "[image: %s]" msgstr "" -#: sphinx/writers/manpage.py:233 sphinx/writers/text.py:537 +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "" diff --git a/sphinx/themes/basic/search.html b/sphinx/themes/basic/search.html index ee752c558..3697b603f 100644 --- a/sphinx/themes/basic/search.html +++ b/sphinx/themes/basic/search.html @@ -42,7 +42,7 @@ {% if search_performed %}

      {{ _('Search Results') }}

      {% if not search_results %} -

      {{ _('Your search did not match any results.') }}

      +

      {{ _('Your search did not match any documents. Please make sure that all words are spelled correctly and that you\'ve selected enough categories.') }}

      {% endif %} {% endif %}
      From 874b9f89fda9e3c2478484b3b2911b7f85db9c8f Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 1 Apr 2013 11:58:30 +0200 Subject: [PATCH 66/76] Compile message catalogs. --- sphinx/locale/es/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 7599 -> 11098 bytes sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 8194 -> 8194 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 11033 -> 11033 bytes 4 files changed, 1 insertion(+), 1 deletion(-) diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.js b/sphinx/locale/es/LC_MESSAGES/sphinx.js index c0e7811e7..de44820dd 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "es", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "Coincidencias de la b\u00fasqueda", "Permalink to this definition": "Enlazar permanentemente con esta definici\u00f3n", "Expand sidebar": "Expandir barra lateral", "Permalink to this headline": "Enlazar permanentemente con este t\u00edtulo", "Collapse sidebar": "Contraer barra lateral"}}); +Documentation.addTranslations({"locale": "es", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "Ocultar coincidencias de la b\u00fasqueda", "Permalink to this definition": "Enlazar permanentemente con esta definici\u00f3n", "Permalink to this headline": "Enlazar permanentemente con este t\u00edtulo"}}); \ No newline at end of file diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index 825cfedb827d8fa7ac868d581bd1e03ea1ff4428..bd83d10077a9c04ff974d423f194762f656affd5 100644 GIT binary patch literal 11098 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 Date: Mon, 1 Apr 2013 12:23:42 +0200 Subject: [PATCH 67/76] Update individual language catalogs and recompile. --- sphinx/locale/bn/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/bn/LC_MESSAGES/sphinx.mo | Bin 12143 -> 12970 bytes sphinx/locale/bn/LC_MESSAGES/sphinx.po | 296 +++++++++------ sphinx/locale/ca/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/ca/LC_MESSAGES/sphinx.mo | Bin 9089 -> 9968 bytes sphinx/locale/ca/LC_MESSAGES/sphinx.po | 304 ++++++++++------ sphinx/locale/cs/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/cs/LC_MESSAGES/sphinx.mo | Bin 8683 -> 9522 bytes sphinx/locale/cs/LC_MESSAGES/sphinx.po | 300 +++++++++------ sphinx/locale/da/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/da/LC_MESSAGES/sphinx.mo | Bin 9353 -> 10177 bytes sphinx/locale/da/LC_MESSAGES/sphinx.po | 298 +++++++++------ sphinx/locale/de/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/de/LC_MESSAGES/sphinx.mo | Bin 9668 -> 10618 bytes sphinx/locale/de/LC_MESSAGES/sphinx.po | 297 +++++++++------ sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 11098 -> 11002 bytes sphinx/locale/es/LC_MESSAGES/sphinx.po | 115 +++--- sphinx/locale/et/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/et/LC_MESSAGES/sphinx.mo | Bin 9425 -> 10217 bytes sphinx/locale/et/LC_MESSAGES/sphinx.po | 306 +++++++++------- sphinx/locale/eu/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/eu/LC_MESSAGES/sphinx.mo | Bin 9592 -> 10406 bytes sphinx/locale/eu/LC_MESSAGES/sphinx.po | 307 ++++++++++------ sphinx/locale/fa/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/fa/LC_MESSAGES/sphinx.mo | Bin 8584 -> 9393 bytes sphinx/locale/fa/LC_MESSAGES/sphinx.po | 307 ++++++++++------ sphinx/locale/fi/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 8832 -> 9814 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.po | 298 +++++++++------ sphinx/locale/fr/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/fr/LC_MESSAGES/sphinx.mo | Bin 9482 -> 10293 bytes sphinx/locale/fr/LC_MESSAGES/sphinx.po | 298 +++++++++------ sphinx/locale/he/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/he/LC_MESSAGES/sphinx.mo | Bin 9938 -> 10567 bytes sphinx/locale/he/LC_MESSAGES/sphinx.po | 313 +++++++++------- sphinx/locale/hr/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/hr/LC_MESSAGES/sphinx.mo | Bin 8855 -> 9673 bytes sphinx/locale/hr/LC_MESSAGES/sphinx.po | 304 ++++++++++------ sphinx/locale/hu/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 8194 -> 10009 bytes sphinx/locale/hu/LC_MESSAGES/sphinx.po | 425 +++++++++++++++++----- sphinx/locale/it/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/it/LC_MESSAGES/sphinx.mo | Bin 9096 -> 9912 bytes sphinx/locale/it/LC_MESSAGES/sphinx.po | 298 +++++++++------ sphinx/locale/ja/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/ja/LC_MESSAGES/sphinx.mo | Bin 10185 -> 10982 bytes sphinx/locale/ja/LC_MESSAGES/sphinx.po | 298 +++++++++------ sphinx/locale/ko/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 7126 -> 7957 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 309 +++++++++------- sphinx/locale/lt/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/lt/LC_MESSAGES/sphinx.mo | Bin 9841 -> 10643 bytes sphinx/locale/lt/LC_MESSAGES/sphinx.po | 298 +++++++++------ sphinx/locale/lv/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/lv/LC_MESSAGES/sphinx.mo | Bin 9647 -> 10548 bytes sphinx/locale/lv/LC_MESSAGES/sphinx.po | 303 +++++++++------ sphinx/locale/nb_NO/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo | Bin 9141 -> 9969 bytes sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po | 310 +++++++++------- sphinx/locale/ne/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/ne/LC_MESSAGES/sphinx.mo | Bin 12306 -> 13024 bytes sphinx/locale/ne/LC_MESSAGES/sphinx.po | 300 +++++++++------ sphinx/locale/nl/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/nl/LC_MESSAGES/sphinx.mo | Bin 9092 -> 9908 bytes sphinx/locale/nl/LC_MESSAGES/sphinx.po | 298 +++++++++------ sphinx/locale/pl/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/pl/LC_MESSAGES/sphinx.mo | Bin 9548 -> 10359 bytes sphinx/locale/pl/LC_MESSAGES/sphinx.po | 303 +++++++++------ sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 9659 -> 10468 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 300 +++++++++------ sphinx/locale/ru/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 11033 -> 11703 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.po | 347 ++++++++++-------- sphinx/locale/sk/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/sk/LC_MESSAGES/sphinx.mo | Bin 8885 -> 9720 bytes sphinx/locale/sk/LC_MESSAGES/sphinx.po | 304 ++++++++++------ sphinx/locale/sl/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 8879 -> 9694 bytes sphinx/locale/sl/LC_MESSAGES/sphinx.po | 303 +++++++++------ sphinx/locale/sv/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 9149 -> 9976 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.po | 303 +++++++++------ sphinx/locale/tr/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/tr/LC_MESSAGES/sphinx.mo | Bin 9714 -> 10561 bytes sphinx/locale/tr/LC_MESSAGES/sphinx.po | 298 +++++++++------ sphinx/locale/uk_UA/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 10482 -> 11295 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 298 +++++++++------ sphinx/locale/zh_CN/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 9038 -> 9680 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 311 +++++++++------- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo | Bin 8394 -> 9274 bytes sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po | 303 +++++++++------ 95 files changed, 5934 insertions(+), 3780 deletions(-) diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.js b/sphinx/locale/bn/LC_MESSAGES/sphinx.js index a69d00b5c..a404b0604 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/bn/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "bn", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "\u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8\u09c7\u09b0 \u09ae\u09cd\u09af\u09be\u099a\u0997\u09c1\u09b2\u09c7\u09be \u09b2\u09c1\u0995\u09be\u09a8", "Permalink to this definition": "\u098f\u0987 \u09b8\u0982\u099c\u09cd\u099e\u09be\u09b0 \u09aa\u09be\u09b0\u09cd\u09ae\u09be\u09b2\u09bf\u0999\u09cd\u0995", "Expand sidebar": "", "Permalink to this headline": "\u098f\u0987 \u09b6\u09bf\u09b0\u09c7\u09be\u09a8\u09be\u09ae\u09c7\u09b0 \u09aa\u09be\u09b0\u09cd\u09ae\u09be\u09b2\u09bf\u0999\u09cd\u0995", "Collapse sidebar": ""}}); \ No newline at end of file +Documentation.addTranslations({"locale": "bn", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "\u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8\u09c7\u09b0 \u09ae\u09cd\u09af\u09be\u099a\u0997\u09c1\u09b2\u09c7\u09be \u09b2\u09c1\u0995\u09be\u09a8", "Permalink to this definition": "\u098f\u0987 \u09b8\u0982\u099c\u09cd\u099e\u09be\u09b0 \u09aa\u09be\u09b0\u09cd\u09ae\u09be\u09b2\u09bf\u0999\u09cd\u0995", "Permalink to this headline": "\u098f\u0987 \u09b6\u09bf\u09b0\u09c7\u09be\u09a8\u09be\u09ae\u09c7\u09b0 \u09aa\u09be\u09b0\u09cd\u09ae\u09be\u09b2\u09bf\u0999\u09cd\u0995"}}); \ No newline at end of file diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index b5da72d22e5b093b1d701d4d5b5623f5e88c673f..43c778cd48e0771307cc76be4bdd129fdda5d4e8 100644 GIT binary patch delta 3576 zcmd7TeQXp(7{~FU0&Qta=@klywToJ4p&TtQf~BcaL5(6oP!SR0dbjPJz24Q`yEawg zi7_a?#kgQ1zJ+K*5EQi_HY(9zB0;0^ExzHqRD+-(Y7jN?`=e`o{mb}=&9a}F*`1kZ zo|!$qS^lt-{V+6et>Nz>{++v4B8hU9n9sZ36fZb*W)m}8`bY& zw6GV||2^a~`?=};BdGU_iDD%48;ind8fKyfUWmtIGmgTQ$Ys`X)AJ3e_n*d7@hz;t zLZZ_|HKoJe{%_a(sxK#~!7`e>P+;VXU%TmV>PQxnH3YMV) zO``g(My>Ep)C3#xeC)x&IDqt$b(4n*s1&m^C`_iHh+B|%O&e-}6=((+vkEovjm)aR z?nh-}Gv?rPL479<2+%FKWUA z$Yp-uR*nVaQ4?090+@;#U@mHJFF<8#F)9O5R3Ix+{Z^sIy94z#bqDP`komG^7X|Iz zYk?o320nm_@GxqEpHM$Md7MP8WMbeH)O)9)CZ3IY|E%EoBGkezMWsFx)Lk5=@Bf9!6s$V{X$Wqh- z%du47|H%}paR%0)jf`z>M-9-8O6@LW`^{dg#2--sS8x)Q+F5uaUWf|J!-=>W>v0=$ znS)fQ&naevy_G!R4Q*meb?)84(`Ntm`9^h`yeWX zy+M5!cI6oJAu@Xbn`N?n6g2UVNbshZuoZC~ zo{jCe8J|KOK8FLKJ?z3Wusf*tp#}_1=>K{uQ4>!`ovlky<9o<4Fl&)Ov*rm3+Pjxf znfL;k%M>z;BAt#6*n(R5Lzs_ykj0xm)S)Zl)6stOxV<&2%*CN|*)*P#| z|63{OknF~r@qJW>W{z|LwqY)I1@)DfNBuU`gm>XA>_x5cdsJW}!vuqksNa)j)XF<> zF8Wx={N`N>T2UXKi3d@spEkLFB`Z(^tPSejsJ-2RTG8i0`%x^UUdpF*4qB*s9E-67 z6~HP~zXvg^RQCoAp9UVmp|lSr|9nxV9JLh<+{m^`;_0{!HSl|=z2AqL_!rbxp2f$n z@mo<7u0dm2R+H^HUcFW68LMYg{_{B{Rq-S>tE1AZ<`bmihsVtC=`H+tU~#+c#*;0U z=h$u}77qJsN}`Lb4m*)?>aE#{PP@yq=3g{#Uf3*j(iu1T+oPtG>!v!LsO37%j_V{N z&R^e{?{xm*p?|34?CH(%WZa86(Hg5cl}SbwQoG&aRC(1_o1Kot6i7Pe1i@HWWgNFF z?AL}WMkzR+nng||9Zw}KJCly3+{u*je3?%lh^Jf5-caex|k!;W!VIH?8UBBW_*W& zO7MVJoMbA~60;(9+G$C-amNdrrOf6nGfP`syFI4FFUt)oJ$pi<2Mn>jw3TU((!>9@ z^ymn!@wfQwW9w;7x&BwfuP&N8sdn0=+B&PQu73KA9(TmEgZ{pEJ>fAw6_hS;oxf~d z*uQ$>N&e-PMgHRPk1zT2cKw$-nOpT_!=huy#rk&}`b^bn`TYa1rT%wSbNq$X>;K=o Z*fL>FPGRErZH)FDt;yt+{o_WOUjdz#H=zIk delta 2733 zcmYM#ZBSHI9LMnkf{B7I53-4X%O;9E$U=sjO(-S!kfz0CGn)7WqfRQ0z>Fq(-{m-H z(|Fa<@-cNW?19|K%rJ4LUYL_p*oY*wX6evaYU-5wqQ1Y~I}^j+&pGGbbI$+#&$+uT zHMgp)-lUivhQD2W()nD8QSJY~J#ogwQ{9WP*n(bcMgC2vV-M>74NS&AFcG5$8k2&_ zI0SQ0=tqUZgn=Vzgt`OQKK!)REG8h9I~VE`Y;4phY5&ixyx=O1AS4&~+uoPj=Efx~ex z4#ks5GRy@WfS0ipe^H(JO%}`2%5u3phJIAXNjMJYpdxNU1-1t@&bS%b zo%#<%4V;2nK$@cu)xQF>a4yo-G`h$?Suk6ihTW+8`>4o2L+xRQQ}0Ag*ozA68Y&Za zP!m2x^>filhj}Ch_y{HryAu*VlsKBZmm!ig7jSOKLQ5k#7qM(U)VL#lDTHzs7AV+Z&wqiIyr@a?7 z!F5zXw=e@^$g>9aq9)2mOEo%H=X)1PPPv5N%ZRd|B`|_{Os6=TG3r(5#|Ao!2~zy z#PLXzsYb1IJt~#^P|u&jY`lO9^gb$+iCi)<7j;;tVV>Uq1r#P=6Y8{ngUY~F^x$o$ zJ(1pjS~VUWuC6#_`yNuc2#Xq`ngM+z}*Z^DQ#B=|e3bj+?sg z<-$~EDr&yhEeb^x)*`R4X+cfgj#_aiD&qS%1;?@RA7CSDtHzAxcLHBQ)pw%CIg5Hb zend_98!C_iq(NJgg~Vp8XDNhJ!$pBKp;p+AI%M}zhbEnqB}-5P&PEMbhdT9JusX5K?U+JvIsMZWol(FBIn9f zVL7fxrL+U%@H>1SyKoAo=SKprM)ltiuCxDJDUe+gKt+B&e1qR-oJ#!>#^Yq(A$5ES zHSr?U^Ba*Qne9%!-LVt(8uuaR)ck|WuzPG|tES;Z+Drol4cvy>yRT6bccJzut1vP_ zMPYF6z#pQ6r3nSGww1KN_9suW+mhYxCH2c|S9umS)Gw=DGr?mjYic}YE9z?PUz4ZX z6H_t=uc@hPSW#a$*37G}T~ZgkmNG2Lj!XU9PIa$KC@SzhT~J))De_J5l?3;=+hgt0 zgqgw5Gd>(-XB1`HyGOh1<}shx$8+24!+Cx?K5vlyl+R^H<>%N#@=v)!fj2{emQdhm zC~!IyX!Y24yu+u3nm2hufgKQTJxb+RC~!PnQGq&Lc-{^*@25chW7Sn*pszwl4m+`0 M1>2*89$$U*e}$-F_5c6? diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.po b/sphinx/locale/bn/LC_MESSAGES/sphinx.po index 69bd75e55..689829dfc 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bn/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 1.0pre/[?1034h2e1ab15e035e\n" "Report-Msgid-Bugs-To: nasim.haque@gmail.com\n" -"POT-Creation-Date: 2011-09-21 10:06+0200\n" +"POT-Creation-Date: 2013-04-01 11:57+0200\n" "PO-Revision-Date: 2011-09-21 10:08+0200\n" "Last-Translator: Nasimul Haque \n" "Language-Team: Nasimul Haque \n" @@ -22,18 +22,12 @@ msgstr "" msgid "%s %s documentation" msgstr "" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#, python-format -msgid "%B %d, %Y" -msgstr "%B %d, %Y" - -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1510 #, fuzzy, python-format msgid "see %s" msgstr "আরও %s" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1513 #, fuzzy, python-format msgid "see also %s" msgstr "আরও দেখুন %s" @@ -43,6 +37,12 @@ msgstr "আরও দেখুন %s" msgid "Python Enhancement Proposals; PEP %s" msgstr "পাইথন উন্নয়ন পরামর্শ; PEP %s" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "%B %d, %Y" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "বিল্টইন সমূহ" @@ -51,24 +51,24 @@ msgstr "বিল্টইন সমূহ" msgid "Module level" msgstr "মডিউল লেভেল" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "সাধারণ ইনডেক্স" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:309 msgid "index" msgstr "ইনডেক্স" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:369 msgid "next" msgstr "পরবর্তী" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "পূর্ববর্তী" @@ -76,42 +76,39 @@ msgstr "পূর্ববর্তী" msgid " (in " msgstr "(-" -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr "অনুচ্ছেদ লেখক:" -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "মডিউল লেখক:" -#: sphinx/directives/other.py:140 +#: sphinx/directives/other.py:142 #, fuzzy msgid "Code author: " msgstr "মডিউল লেখক:" -#: sphinx/directives/other.py:142 +#: sphinx/directives/other.py:144 msgid "Author: " msgstr "লেখক:" -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "আরও দেখুন" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "প্যারামিটার" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "রিটার্নস" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "রিটার্ন টাইপ" @@ -140,62 +137,66 @@ msgstr "%s (C টাইপ)" msgid "%s (C variable)" msgstr "%s (C ভ্যারিয়েবল)" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 msgid "function" msgstr "ফাংশন" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 #, fuzzy msgid "member" msgstr "C মেম্বার" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 #, fuzzy msgid "macro" msgstr "C ম্যাক্রো" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 #, fuzzy msgid "type" msgstr "C টাইপ" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 #, fuzzy msgid "variable" msgstr "C ভ্যারিয়েবল" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "" + +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ ক্লাসে)" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ টাইপ)" -#: sphinx/domains/cpp.py:938 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ মেম্বার)" -#: sphinx/domains/cpp.py:990 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ ফাংশন)" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "ক্লাস" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "%s() (বিল্ট-ইন ফাংশন)" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s মেথড)" @@ -210,7 +211,7 @@ msgstr "%s() (ক্লাসে)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s এ্যট্রিবিউট)" @@ -220,15 +221,11 @@ msgstr "%s (%s এ্যট্রিবিউট)" msgid "Arguments" msgstr "প্যারামিটার" -#: sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "" - -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "ডাটা" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "এ্যট্রিবিউট" @@ -241,58 +238,58 @@ msgstr "ভ্যারিয়েবল" msgid "Raises" msgstr "রেইজেস" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s মডিউলে)" -#: sphinx/domains/python.py:258 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "%s (বিল্ট-ইন ভ্যারিয়েবল)" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "%s (%s মডিউলে)" -#: sphinx/domains/python.py:275 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "%s (বিল্ট-ইন ক্লাস)" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "%s (%s ক্লাসে)" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" msgstr "%s (%s.%s মেথড)" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s (%s.%s স্ট্যাটিক মেথড)" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s স্ট্যাটিক মেথড)" -#: sphinx/domains/python.py:341 +#: sphinx/domains/python.py:340 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s ক্লাস মেথড)" -#: sphinx/domains/python.py:344 +#: sphinx/domains/python.py:343 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s ক্লাস মেথড)" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s এ্যট্রিবিউট)" @@ -311,50 +308,50 @@ msgstr "মডিউল ইনডেক্স" msgid "modules" msgstr "মডিউল সমূহ" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "ডেপ্রিকেটেড" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "এক্সেপশন" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "মেথড" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 msgid "class method" msgstr "ক্লাস মেথড" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "স্ট্যাটিক মেথড" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "মডিউল" -#: sphinx/domains/python.py:695 +#: sphinx/domains/python.py:696 #, fuzzy msgid " (deprecated)" msgstr "ডেপ্রিকেটেড" -#: sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:57 +#: sphinx/domains/rst.py:55 #, fuzzy, python-format msgid "%s (role)" msgstr "%s (মডিউল)" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 #, fuzzy msgid "role" msgstr "মডিউল" @@ -369,70 +366,97 @@ msgstr "এনভায়রনমেন্ট ভ্যারিয়েবল; %s" msgid "%scommand line option; %s" msgstr "%sকমান্ড লাইন অপশন; %s" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "শব্দকোষ" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "ব্যকরণ টোকেন" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "এনভায়রনমেন্ট ভ্যারিয়েবল" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "প্রোগ্রাম অপশন" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 #: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "ইনডেক্স" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "মডিউল ইনডেক্স" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "অনুসন্ধান পাতা" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr "বেস: %s" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr ":class:`%s` এর উপনাম" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "অসমাপ্ত কাজ" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, fuzzy, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(%s, %d লাইনে মূল অন্তর্ভুক্তিটি রয়েছে.)" -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "" @@ -484,7 +508,7 @@ msgid "Note" msgstr "নোট" #: sphinx/locale/__init__.py:162 -msgid "See Also" +msgid "See also" msgstr "আরও দেখুন" #: sphinx/locale/__init__.py:163 @@ -530,25 +554,26 @@ msgstr "স্ট্যাটমেন্ট" msgid "built-in function" msgstr "বিল্ট-ইন ফাংশন" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "সূচীপত্র" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "অনুসন্ধান" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "যান" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." msgstr "অনুসন্ধানের জন্য টার্ম, মডিউল, ক্লাস অথবা ফাংশনের নাম দিন।" -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "সোর্স দেখুন" @@ -556,6 +581,18 @@ msgstr "সোর্স দেখুন" msgid "Overview" msgstr "ভুমিকা" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +msgid "the documentation for" +msgstr "" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "ইনডেক্স ও টেবিল সমূহ:" @@ -666,7 +703,7 @@ msgstr "পরবর্তী টপিক" msgid "next chapter" msgstr "পরবর্তী অধ্যায়" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." @@ -674,7 +711,7 @@ msgstr "" "অনুসন্ধান করার জন্য অনুগ্রহপূর্বক জাভাস্ক্রিপ্ট \n" " সক্রিয় করুন।" -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -688,17 +725,21 @@ msgstr "" "সকল\n" " শব্দ নেই সেগুলো বাদ দেয়া হবে।" -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "খুঁজুন" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "অনুসন্ধানের ফলাফল" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." -msgstr "আপনার অনুসন্ধানে কোন ফলাফল পাওয়া যায়নি।" +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -736,25 +777,42 @@ msgstr "C API পরিবর্তন" msgid "Other changes" msgstr "অন্যান্য পরিবর্তন" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "এই শিরোনামের পার্মালিঙ্ক" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "এই সংজ্ঞার পার্মালিঙ্ক" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "অনুসন্ধানের ম্যাচগুলো লুকান" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +msgid "Searching" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "" @@ -762,24 +820,28 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "রিলিজ" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "পাদটীকা" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "পূর্ববর্তী পাতা হতে চলমান" -#: sphinx/writers/latex.py:681 +#: sphinx/writers/latex.py:710 msgid "Continued on next page" msgstr "পরবর্তী পাতাতে চলমান" -#: sphinx/writers/text.py:437 +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 +#, fuzzy, python-format +msgid "[image: %s]" +msgstr "[ছবি: %s]" + +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[ছবি]" - diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.js b/sphinx/locale/ca/LC_MESSAGES/sphinx.js index 736d9b767..2cd088e2e 100644 --- a/sphinx/locale/ca/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ca/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "ca", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "Oculta Resultats de Cerca", "Permalink to this definition": "Link permanent a aquesta definici\u00f3", "Expand sidebar": "", "Permalink to this headline": "Link permanent a aquest t\u00edtol", "Collapse sidebar": ""}}); \ No newline at end of file +Documentation.addTranslations({"locale": "ca", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "Oculta Resultats de Cerca", "Permalink to this definition": "Link permanent a aquesta definici\u00f3", "Permalink to this headline": "Link permanent a aquest t\u00edtol"}}); \ No newline at end of file diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo index bdcc3aa435c381edf0bff4c5e9902a0c6c564080..44d26d61700df12928ba647a7cbd81ae6c275a53 100644 GIT binary patch delta 3599 zcmd7TeQZ-z7{~Fmu{jwpW93b^As5&f%rQ0@Fz0l@0?f#ZI&dOUtnJ-e?AqDeZjMAM zQBYrXm!)5Gq?z!hY z=Q-y&Eh}c9otrr7$yjgrd5wPs{0n93>Eh4(*~aweaW@XY{iq>_aWo#qzL?gp*M6w? zLvb+XV=hj_Avhg#@D3zy!ZguPUmX5K`pcebrRdL9Cu+pevd;ji!A%Hz8OK|N-V~ku-tu)AY;vgn1!oQ6W5>?dI`1T zBdCPGL&eGD_;exzQ9CWdxi}H8z=x2knMX09jMmbaim#(GK8eIKr%?gUqe)}Otfs(y zI8P;(hdPmQn2t5>b1i1@+<=;YCo1lJs0{>Mm*;Z+3h*=?qi_pqt^KGY|Jr@-cAw9o zGSBez)-(t8JPNg7DJroF)JfE$7OY2&y9ag2gQyc*<>CBi(0Gv!C2|V2^Yd7US#&Cq zQq<91k1EA9RE_IVffk@P5J4^Q6l&ZXsChe3w|_Tk-T~A)M-wz^X#9XGMG2!+(^;q; zG@>Tli)`M6P)E8P75H)NgKJSIkVGx~3@Xk>?8G-w<7+q$#j8V&OU!p0ji?2eAY)Ac zN8m%K1)oDD@G>gEJE)p|ggT*5Q9J(%mB`Q7b9Yej(z!VLGz~}fmm}*XOf?PFtj_f| zRNy733~kf`EvPS?W$yb8s2y!`ea-bv)Vz05iR?km-{-zRfZFI09H`I#3Af`X)RFzx z^MYOSrJ$1Jp)TbVRKQuNg>ON958UoPhfpWupmvx*ZEQ7aUKeWN=W!jMrkAn5KL1mQ zqT5-A8aNNN(+1QfX+s5Ei8`6J$aOL6QHi~Z+*h*`Rie+_{-dZ3opGQ4M2*Yg#%kPX z)crG+H1wk0eX$tT--49StUxW)g-YlZv~UM1&>_^$Poon3)$RWi`8By5qwYW{>P}5Z z4%sZp=loThHafK6BRB@TunOP9k@yQDTC$dSi8FkcqP(I?`iV{EO&hjmDoCDirI`=2^#xpXyF5>+Mhrz^b;!6bEw*9 z6!j)_4XXBIP_>+Z3S8^01{}-CY4t{f;bzORy-{DFtSs5z<8QFqyrH;VZA}lgdpjI!-oiO^%FOL{ zEFKMCcr_yujYisSzZJEc?5G{~*_V%)XSZMSG8y#Dp4=1+2c3ZJFSVK?@vvVhwR)TF zan5+F#T)Yllt?UKyUAD&#O-KDS#pc#y5vdE%t4KI$QNm`M_CI3LB|R@$>PBy6Bjn? zlv%fiY_DSz>3$-_qc)+uG0PhYS?!Ui-?6-OIjwdmMAkmiw|%ithvg-Yo`D^acyXK7 z4)KB^b~qAm4p=^K%x;cEgSJy<7PFdjw^`gA^|l78N&oIF_aU`l@YQMAUMFV7Tm8&P zEgiBZZNQ`n<&_i4E3Ar&>d8}6nZs75{jEN};76&{s^KsELw!<(c~4||ZjIWPmuK6^ wraLYv!+%+!9BXb(L(es^{#~IKTUE)8*24dHq4Gu*r1iU4D1WMQ^xU++0BIf(5&!@I delta 2763 zcmYM#4NR3)9LMo<6);{dB3$0zE-%-Z#p^Er*riSWq|1NZLwTHkxe~Zmm(vYSC8He94w`_5J19WS9GS&Uwyr{{Qno=Yfm$ z+m{Buj}PlJ{Jh3*2EVRwwQl{yL>Uu9(}_+@Lk%gwTr9#!Txo5z_gire{TtAQTX8n- zN6j~Y%oi}jTtw3`W(RzMv9!NMO)zcy|3M`X#oz=?!6dvB<8U$RxdwD&GwS)B$j7|Q zml7R7jUU2f;+rupG~pzs;cu9NVWg={Gx^f}d6Pj5-r&=bAjZ()PR67Tic@gq4m9|}n3g|^8)`+UaI#fVE z>bc#h!yH6aYy@j?0=3}Scw_Q0GoJb@U=1BA*$UJac#&gZnrwT$z3)ez=4b8w9@K>W zs1gq%i!-005<6%80X5$=l7qQ|s#rvTx+riQ&ctNY3e!=ExN$BP;QtBQelIFO6Dpx6 zFcY_+ChkWCdL0$`ebm-`idyh#RD}YQTqxir)PvVh6FT_PTabk6FGdBdM3uhA`T%O; zCRD;LsJ{zsw!asZc%StZ>k(vpz#QX33A~HS>;pSs92IZ^RpM`K`zKV1f4BWNP^FLI z0O$-ApysPU1+GTDwzan1gsMm@M(X|F$c0w48TH^ERNx+bfw$oRDzSp(n}@3$HEt1V zrT3u{T#KsIGpLGeMCV*W&^gRMA9HCmo_})caqJT6qI15g+DZ z7gpdw%*L}=hL^AeJxr=C@giNukE-Zi)EVi+#rSF(^;hOU(xC+YMD1AwPg4Zr#B%hY z_Pi1Km^QvN;cm>r7f~x4!DTp#nkS4Su7J@Af5TQ}k?;+t+Rw4!aO zzu3*pUH1pyab?B&TRXbi zIy;I?V@rE;M`%@Isw1>H>3N5Z}jFnNb}c zyq41vJf6EOcz51{hz8%2kDVF}Zpd5hS?+Upwr=vdn_K@~ diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.po b/sphinx/locale/ca/LC_MESSAGES/sphinx.po index c1d5a1b31..27576c60f 100644 --- a/sphinx/locale/ca/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ca/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 1.0\n" "Report-Msgid-Bugs-To: pau.fernandez@upc.edu\n" -"POT-Creation-Date: 2011-09-21 10:06+0200\n" +"POT-Creation-Date: 2013-04-01 11:57+0200\n" "PO-Revision-Date: 2011-01-22 14:41+0100\n" "Last-Translator: Pau Fernández \n" "Language-Team: ca \n" @@ -18,22 +18,16 @@ msgstr "" "Generated-By: Babel 0.9.6\n" #: sphinx/config.py:81 -#, fuzzy, python-format +#, python-format msgid "%s %s documentation" msgstr "%s %s documentació" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#, python-format -msgid "%B %d, %Y" -msgstr "%d de %B de %Y" - -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1510 #, python-format msgid "see %s" msgstr "vegeu %s" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1513 #, python-format msgid "see also %s" msgstr "vegeu també %s" @@ -43,6 +37,12 @@ msgstr "vegeu també %s" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "%d de %B de %Y" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "Mòduls Interns" @@ -51,24 +51,24 @@ msgstr "Mòduls Interns" msgid "Module level" msgstr "Nivell de mòdul" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Índex General" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:309 msgid "index" msgstr "índex" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:369 msgid "next" msgstr "següent" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "anterior" @@ -76,42 +76,39 @@ msgstr "anterior" msgid " (in " msgstr " (a " -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr "Autor de la secció:" -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "Autor del mòdul: " -#: sphinx/directives/other.py:140 +#: sphinx/directives/other.py:142 #, fuzzy msgid "Code author: " msgstr "Autor del mòdul: " -#: sphinx/directives/other.py:142 +#: sphinx/directives/other.py:144 msgid "Author: " msgstr "Autor: " -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "Vegeu també" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "Paràmetres" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "Retorna" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "Tipus de retorn" @@ -140,58 +137,62 @@ msgstr "%s (tipus de C)" msgid "%s (C variable)" msgstr "%s (variable de C)" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 msgid "function" msgstr "funció" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 msgid "member" msgstr "membre" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "tipus" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 msgid "variable" msgstr "variable" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "" + +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "%s (class de C++)" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "%s (tipus de C++)" -#: sphinx/domains/cpp.py:938 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "%s (membre de C++)" -#: sphinx/domains/cpp.py:990 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "%s (funció de C++)" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "class" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "%s() (funció interna)" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "%s() (mètode %s)" @@ -206,7 +207,7 @@ msgstr "%s() (class)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "%s (atribut %s)" @@ -216,15 +217,11 @@ msgstr "%s (atribut %s)" msgid "Arguments" msgstr "Paràmetres" -#: sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "" - -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "atribut" @@ -237,58 +234,58 @@ msgstr "Variable" msgid "Raises" msgstr "Llença" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "%s() (al mòdul %s)" -#: sphinx/domains/python.py:258 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable interna)" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "%s (al mòdul %s)" -#: sphinx/domains/python.py:275 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "%s (class a %s)" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (mètode %s.%s)" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (mètode estàtic %s.%s)" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "%s() (mètode estàtic %s)" -#: sphinx/domains/python.py:341 +#: sphinx/domains/python.py:340 #, fuzzy, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (mètode %s.%s)" -#: sphinx/domains/python.py:344 +#: sphinx/domains/python.py:343 #, fuzzy, python-format msgid "%s() (%s class method)" msgstr "%s() (mètode %s)" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (atribut %s.%s)" @@ -307,49 +304,49 @@ msgstr "Índex de Mòduls" msgid "modules" msgstr "mòduls" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "Obsolet" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "excepció" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 msgid "class method" msgstr "" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "mètode estàtic" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "mòdul" -#: sphinx/domains/python.py:695 +#: sphinx/domains/python.py:696 msgid " (deprecated)" msgstr " (obsolet)" -#: sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:57 +#: sphinx/domains/rst.py:55 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 msgid "role" msgstr "" @@ -363,70 +360,97 @@ msgstr "variable d'entorn; %s" msgid "%scommand line option; %s" msgstr "opció de línia de comandes %s; %s" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "variable d'entorn" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 #: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "Índex" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "Índex de Mòduls" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Pàgina de Cerca" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr " Bases: %s" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr "àlies de :class:`%s`" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "Pendent" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(La <> està a %s, línia %d i.)" -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "" @@ -434,7 +458,7 @@ msgstr "" #: sphinx/ext/viewcode.py:131 #, fuzzy msgid "Module code" -msgstr "mòdul" +msgstr "mòdul code" #: sphinx/ext/viewcode.py:137 #, python-format @@ -478,8 +502,8 @@ msgid "Note" msgstr "Nota" #: sphinx/locale/__init__.py:162 -msgid "See Also" -msgstr "Vegeu També" +msgid "See also" +msgstr "Vegeu també" #: sphinx/locale/__init__.py:163 msgid "Tip" @@ -524,25 +548,26 @@ msgstr "sentència" msgid "built-in function" msgstr "funció interna" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "Taula de Contingut" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Cerca" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "Ves a" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." msgstr "Entra paraules de cerca o el nom d'un mòdul, classe o funció." -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "Mostra Codi Font" @@ -550,6 +575,19 @@ msgstr "Mostra Codi Font" msgid "Overview" msgstr "Resum" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +#, fuzzy, python-format +msgid "the documentation for" +msgstr "documentació" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "Índexs i taules:" @@ -660,7 +698,7 @@ msgstr "Tema següent" msgid "next chapter" msgstr "capítol següent" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." @@ -668,7 +706,7 @@ msgstr "" "Activa JavaScript per utilitzar la funcionalitat\n" "de cerca." -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -680,17 +718,21 @@ msgstr "" "que la cerca inclourà totes les paraules que posis. Les pàgines que no\n" "tenen totes les paraules no sortiràn." -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "cerca" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "Resultats de la Cerca" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." -msgstr "La teva cerca no té resultats." +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -728,25 +770,43 @@ msgstr "Canvis a la API de C" msgid "Other changes" msgstr "Altres canvis" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "Link permanent a aquest títol" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "Link permanent a aquesta definició" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "Oculta Resultats de Cerca" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +#, fuzzy +msgid "Searching" +msgstr "cerca" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "" @@ -754,24 +814,28 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "Versió" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "ve de la pàgina anterior" -#: sphinx/writers/latex.py:681 +#: sphinx/writers/latex.py:710 msgid "Continued on next page" msgstr "Continua a la pàgina següent" -#: sphinx/writers/text.py:437 +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 +#, fuzzy, python-format +msgid "[image: %s]" +msgstr "[imatge: %s]" + +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[imatge]" - diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.js b/sphinx/locale/cs/LC_MESSAGES/sphinx.js index 011ef5421..23f602070 100644 --- a/sphinx/locale/cs/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/cs/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "cs", "plural_expr": "(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)", "messages": {"Hide Search Matches": "Skr\u00fdt v\u00fdsledky vyhled\u00e1v\u00e1n\u00ed", "Permalink to this definition": "Trval\u00fd odkaz na tuto definici", "Expand sidebar": "", "Permalink to this headline": "Trval\u00fd odkaz na tento nadpis", "Collapse sidebar": ""}}); \ No newline at end of file +Documentation.addTranslations({"locale": "cs", "plural_expr": "(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)", "messages": {"Hide Search Matches": "Skr\u00fdt v\u00fdsledky vyhled\u00e1v\u00e1n\u00ed", "Permalink to this definition": "Trval\u00fd odkaz na tuto definici", "Permalink to this headline": "Trval\u00fd odkaz na tento nadpis"}}); \ No newline at end of file diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo index 58037693dbb488f00f479360d5c55e5de57111f7..d489c100e062150e8565b6f800a58bbc7532b7ea 100644 GIT binary patch delta 3498 zcmdVadrXye9LMn=f_MqVgI7Z3QDMTSM=(SMWQsLY5t;YPNYBoBfTPEA=v+Xmd2G(g zOIDK0=G-hbQArHCy#NX-5Jo0i=JGkqXOihUMxZ-Fb#X-0_=wY?1gJk@4bl@ z?nJ$R0{NH=9F*u))c9YqKl7V*P86^&X+4g)H~^nSWm?5S&zE63uEIjxikWx@31Qk$ zowX1vbku}dsKjzn zm5)VDI1x2&9%>VNP#s!@W%xEKk?&Bo-oPxp=c510BrC0>W%;Pqk3+5LL{y-1R0TDt z3D%*;y@zV`0n{%481>#M)I=As1b;#;!BDcGHdBf!U}l^Xy|4gD%J@(%tw#l3jfwa& zsskHP6TglMv=!ImUex#kvQWHY)VL{*Gf@-HM?PjLhd~&RaiR&EPzh{D1^5uPrbkg7 z`V3Y1SExi<@&4XHKIRSweQQ!#58cl}O*k60WW|nCQE}%Z3C2woCz`-U{h)-M0b5WN zZF79raWAT}gQ!G~px$qBo}WTZd=|9?7oF>CsE*xq?kBR-GxYsW<3yX#jS5(bns_qm z`#ud-kq=c#5H;=v{F!gfi>L&aQNErxpuR0@Q3bt%N@&01AyfxiQ2Wmu=R_?$j|%V$ zD&Q^0&Sat8orYSXL8wYbp%R~nse3iyGI07Ji9wHm14GiPl_O zU6rPwCg_LS{lhsZKp86FJmeJwqTsDx&t5?qN|lGjjy-@^X51J&9is9(shk?xw`Q5{L+ zrV>j>jUR@JSB%UTH?ue?;YKx*gV~9y=s4=dv(EJ;R12>;*KMc?+EKrdNqpDT@~)^Q z?Sbmp09=o`sPTtTOL7#u==*sScs~u z#JQgATu((MSc!_Wz`5^7C02*eXmdTsiCVG_Rrwaw{e8&X<`dMWx{OJ99W~)iR7JN@ z74^yPm}n3ta_!D;-q&q+Cs&R?Xk|yN`s_%q8DVkJT#<4mDYecM_6KXMi0uh`Yu)aq z9G7plRqqMJ>>_JYpuy7^u`1@4m%Gg@I~ofIA3Q1xg~Oo++h>LCYCCKPz4oIcD(r^8 zJZxI)nlh%^AM{6RZQls1Iur}~lun(e#?Fc4S}QzJZ>6C6AJt7h}$e?x=58-Tod-x)fQ3NgY)LPwDg4To=DV+)%kd#`K8{=5_&u_ zGOu7{UcQx|Uo>WHb9&70HTNpgklM^`Ct@XCdMUy%QDt@aF_TQd9p jhOqwKlHDCVzNs{G!vA&2nli^Eqy!$WnXmbzm6h-(BvJ|) delta 2633 zcmYM#e@xVM9LMp`!I6p{!XYHTz2bh^4t5nBj%sO;b!u1>s&zeS5CE76x_t}0A>RKE@EpQCA@DM8C&#d2| zp8pZEa2k1;c(NdA<3sfeZNDO(`YYl(26R?iQT-Owh5=MyucI>WL2cNJnm35Lw5L%O zx`x#_g-SA?MRTzn6~GQurS_mI9!Q}69HZ&718>_2y{KE;kNW&1YQeLp(vBf}n474; zezVS?=DWRf3B{u-mW|rD0Hd)4mEdCz4MnmBmt!qPBDCWH)COIsfZoCk`~bD^S!7T1 zHEQE;QAab0%J>$lLibS{#&JG+E)lh!lR-nbz1V)R0kz>)ROxqE+fWO4p#ttkeg6;G z@nKZpXRPO}7g6&sqXM{r3T$HTbI1HdLmN(^O8l$s|AQ*=e8SXt3aa!gQJ1I|wcr-i z#?PU?o{gvsyHE-2N6kBgx4HH2qXOvW=6m%0e~*T4`-iBEj-dj&WW9>Yd;(SKACNW7 zUDO8r6^SeuXH7$0&XuV7C8$K!q5^*wmC%d0NZTHiA$(xI)i4*9RV8OdVU*fy*5;3-bJl9h*~F%&I%frX_VnKX5u5v_TySq$zMZ# z?GB+f973JxD3;@S)PfICna?8%mDr1VE)$Ee6cuO-Dv&o)slQ774gfEMmU zMSK`_#v`bWFJUfzZ^!>amDo#t707Z_W~HcvoJx*)6oO@*43!-N>qh5+WuzL292n{Xf3Fc?m->dE2txQ6E&~bj`yPi{TQjRV@}Y} z*X{x;lbfgq@1QC(YsbC5xl5IbRNt&XZCHy6cs(k!XHa)(H)^9Ej0Av6q~AJ#G5Y?W zp`p@#j=anj-jwMb>pj#0f7t%4?MLx1P601KJ)eM@myHT24|O+6PcoXJS zFc6@jOK}*L(Wj_|hEbV}qB6OT+UPq}$)~cyb+MmBgGwv^!Me>kN6bwuA<<9uJLYJ-xKPwaK?T_;Rzay}5nY*zva3|CYL*UFr%i&dqWC E3$V2RR{#J2 diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.po b/sphinx/locale/cs/LC_MESSAGES/sphinx.po index d42601bb7..75763dba3 100644 --- a/sphinx/locale/cs/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cs/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 0.5\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2011-09-21 10:06+0200\n" +"POT-Creation-Date: 2013-04-01 11:57+0200\n" "PO-Revision-Date: 2011-01-22 14:41+0100\n" "Last-Translator: Pavel Kosina \n" "Language-Team: Pavel Kosina \n" @@ -23,18 +23,12 @@ msgstr "" msgid "%s %s documentation" msgstr "%s %s dokumentaci" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#, python-format -msgid "%B %d, %Y" -msgstr "%d.%m.%Y" - -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1510 #, fuzzy, python-format msgid "see %s" msgstr "viz %s" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1513 #, fuzzy, python-format msgid "see also %s" msgstr "viz také %s" @@ -44,6 +38,12 @@ msgstr "viz také %s" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "%d.%m.%Y" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "Vestavěné funkce" @@ -52,24 +52,24 @@ msgstr "Vestavěné funkce" msgid "Module level" msgstr "Úroveň modulů" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "%d.%m.%Y" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Rejstřík indexů" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:309 msgid "index" msgstr "index" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:369 msgid "next" msgstr "další" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "předchozí" @@ -77,42 +77,39 @@ msgstr "předchozí" msgid " (in " msgstr "(v" -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr "Autor sekce: " -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "Autor modulu: " -#: sphinx/directives/other.py:140 +#: sphinx/directives/other.py:142 #, fuzzy msgid "Code author: " msgstr "Autor modulu: " -#: sphinx/directives/other.py:142 +#: sphinx/directives/other.py:144 msgid "Author: " msgstr "Autor: " -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "Viz také" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "Parametry" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "Vrací" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "Typ navrácené hodnoty" @@ -141,59 +138,63 @@ msgstr "%s (C typ)" msgid "%s (C variable)" msgstr "%s (C proměnná)" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 msgid "function" msgstr "funkce" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 msgid "member" msgstr "člen" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" msgstr "" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "typ" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 #, fuzzy msgid "variable" msgstr "Proměnná" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "" + +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ třída)" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ typ)" -#: sphinx/domains/cpp.py:938 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "%s (člen C++)" -#: sphinx/domains/cpp.py:990 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ funkce)" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "třída" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "%s() (vestavěná funkce)" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "%s() (metoda %s)" @@ -208,7 +209,7 @@ msgstr "%s() (třída)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "%s() (atribut %s)" @@ -218,15 +219,11 @@ msgstr "%s() (atribut %s)" msgid "Arguments" msgstr "Parametry" -#: sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "" - -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "atribut" @@ -239,58 +236,58 @@ msgstr "Proměnná" msgid "Raises" msgstr "Vyvolá" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v modulu %s)" -#: sphinx/domains/python.py:258 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "%s() (vestavěná proměnná)" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "%s() (v modulu %s)" -#: sphinx/domains/python.py:275 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "%s () (vestavěná proměnná)" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "%s() (třída v %s)" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (metoda %s.%s)" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (statická metoda %s.%s)" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statická metoda %s)" -#: sphinx/domains/python.py:341 +#: sphinx/domains/python.py:340 #, fuzzy, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (metoda %s.%s)" -#: sphinx/domains/python.py:344 +#: sphinx/domains/python.py:343 #, fuzzy, python-format msgid "%s() (%s class method)" msgstr "%s() (metoda %s)" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s() (atribut %s.%s)" @@ -309,49 +306,49 @@ msgstr "Rejstřík modulů" msgid "modules" msgstr "moduly" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "Zastaralé" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "výjimka" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 msgid "class method" msgstr "" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "statická metoda" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "modul" -#: sphinx/domains/python.py:695 +#: sphinx/domains/python.py:696 msgid " (deprecated)" msgstr " (zastaralé)" -#: sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:57 +#: sphinx/domains/rst.py:55 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 msgid "role" msgstr "" @@ -365,70 +362,97 @@ msgstr "promměná prostředí, %s" msgid "%scommand line option; %s" msgstr "%s parametry příkazového řádku; %s" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "promměná prostředí" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 #: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "Index" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "Rejstřík modulů " -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Vyhledávací stránka" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr "" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, fuzzy, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "(Původní záznam je v %s, řádka %d.)" +msgstr "(<> je v %s, řádka %d.)" -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "" @@ -480,7 +504,7 @@ msgid "Note" msgstr "Poznámka" #: sphinx/locale/__init__.py:162 -msgid "See Also" +msgid "See also" msgstr "Viz také" #: sphinx/locale/__init__.py:163 @@ -526,26 +550,27 @@ msgstr "příkaz" msgid "built-in function" msgstr "vestavěná funkce" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "Obsah" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Hledání" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "hledej" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 #, fuzzy msgid "Enter search terms or a module, class or function name." msgstr "Zadej jméno modulu, třídy nebo funkce." -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "Ukázat zdroj" @@ -553,6 +578,19 @@ msgstr "Ukázat zdroj" msgid "Overview" msgstr "Přehled" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +#, fuzzy, python-format +msgid "the documentation for" +msgstr "dokumentaci" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "Rejstříky a tabulky:" @@ -663,13 +701,13 @@ msgstr "Další téma" msgid "next chapter" msgstr "další kapitola" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -681,17 +719,21 @@ msgstr "" "Vyhledávání hledá automaticky všechna slova. Nebudou tedy nalezeny " "stránky, obsahující méně slov." -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "hledej" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "Výsledky hledání" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." -msgstr "Nic jsme nenašli." +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -729,25 +771,43 @@ msgstr "Změny API" msgid "Other changes" msgstr "Ostatní změny" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "Trvalý odkaz na tento nadpis" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "Trvalý odkaz na tuto definici" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "Skrýt výsledky vyhledávání" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +#, fuzzy +msgid "Searching" +msgstr "hledej" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "" @@ -755,25 +815,29 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "Vydání" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "" -#: sphinx/writers/latex.py:681 +#: sphinx/writers/latex.py:710 #, fuzzy msgid "Continued on next page" msgstr "Plný index na jedné stránce" -#: sphinx/writers/text.py:437 +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 +#, fuzzy, python-format +msgid "[image: %s]" +msgstr "[obrázek: %s]" + +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[obrázek]" - diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.js b/sphinx/locale/da/LC_MESSAGES/sphinx.js index c28fab306..0a93add3c 100644 --- a/sphinx/locale/da/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/da/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "da", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "Skjul s\u00f8geresultater", "Permalink to this definition": "Permalink til denne definition", "Expand sidebar": "Udfold sidebj\u00e6lke", "Permalink to this headline": "Permalink til denne overskrift", "Collapse sidebar": "Sammenfold sidebj\u00e6lke"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "da", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "Skjul s\u00f8geresultater", "Permalink to this definition": "Permalink til denne definition", "Permalink to this headline": "Permalink til denne overskrift"}}); \ No newline at end of file diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo index 9c838221058ec616f5be3e12d8109a84cdaf58a7..4d488ae9795db57524fa31ff5e4bc10958d2eaf9 100644 GIT binary patch delta 3644 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 diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.po b/sphinx/locale/da/LC_MESSAGES/sphinx.po index cf74a3890..2c0252c9c 100644 --- a/sphinx/locale/da/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/da/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 1.0pre/[?1034h2e1ab15e035e\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2011-09-21 10:06+0200\n" +"POT-Creation-Date: 2013-04-01 11:57+0200\n" "PO-Revision-Date: 2011-01-22 14:41+0100\n" "Last-Translator: Ask Hjorth Larsen \n" "Language-Team: Danish \n" @@ -22,18 +22,12 @@ msgstr "" msgid "%s %s documentation" msgstr "%s %s dokumentation" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#, python-format -msgid "%B %d, %Y" -msgstr "%d. %B, %Y" - -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1510 #, python-format msgid "see %s" msgstr "se %s" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1513 #, python-format msgid "see also %s" msgstr "se også %s" @@ -43,6 +37,12 @@ msgstr "se også %s" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "%d. %B, %Y" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "Indbyggede" @@ -51,24 +51,24 @@ msgstr "Indbyggede" msgid "Module level" msgstr "Modulniveau" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "%d. %b, %Y" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Generelt indeks" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:309 msgid "index" msgstr "indeks" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:369 msgid "next" msgstr "næste" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "forrige" @@ -76,41 +76,38 @@ msgstr "forrige" msgid " (in " msgstr " (i " -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr "Afsnitsforfatter: " -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "Modulforfatter: " -#: sphinx/directives/other.py:140 +#: sphinx/directives/other.py:142 msgid "Code author: " msgstr "Kodeforfatter: " -#: sphinx/directives/other.py:142 +#: sphinx/directives/other.py:144 msgid "Author: " msgstr "Forfatter: " -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "Se også" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "Parametre" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "Returnerer" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "Returtype" @@ -139,58 +136,62 @@ msgstr "%s (C-type)" msgid "%s (C variable)" msgstr "%s (C-variabel)" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 msgid "function" msgstr "funktion" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 msgid "member" msgstr "medlem" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "type" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 msgid "variable" msgstr "variabel" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "Kaster" + +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "%s (C++-klasse)" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "%s (C++-type)" -#: sphinx/domains/cpp.py:938 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "%s (C++-medlem)" -#: sphinx/domains/cpp.py:990 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "%s (C++-funktion)" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "klasse" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "%s() (indbygget funktion)" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "%s() (metode i %s)" @@ -205,7 +206,7 @@ msgstr "%s() (klasse)" msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "%s (attribut i %s)" @@ -214,15 +215,11 @@ msgstr "%s (attribut i %s)" msgid "Arguments" msgstr "Parametre" -#: sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "Kaster" - -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "attribut" @@ -234,58 +231,58 @@ msgstr "Variable" msgid "Raises" msgstr "Rejser" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modulet %s)" -#: sphinx/domains/python.py:258 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "%s (indbygget variabel)" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "%s (i modulet %s)" -#: sphinx/domains/python.py:275 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "%s (indbygget klasse)" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse i %s)" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (metode i %s.%s)" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (statisk metode i %s.%s)" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statisk metode i %s)" -#: sphinx/domains/python.py:341 +#: sphinx/domains/python.py:340 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (klassemetode i %s.%s)" -#: sphinx/domains/python.py:344 +#: sphinx/domains/python.py:343 #, python-format msgid "%s() (%s class method)" msgstr "%s() (klassemetode i %s)" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (attribut i %s.%s)" @@ -303,49 +300,49 @@ msgstr "Python-modulindeks" msgid "modules" msgstr "moduler" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "Forældet" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "undtagelse" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "metode" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 msgid "class method" msgstr "klassemetode" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "statisk metode" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "modul" -#: sphinx/domains/python.py:695 +#: sphinx/domains/python.py:696 msgid " (deprecated)" msgstr " (forældet)" -#: sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "%s (direktiv)" -#: sphinx/domains/rst.py:57 +#: sphinx/domains/rst.py:55 #, python-format msgid "%s (role)" msgstr "%s (rolle)" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "direktiv" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 msgid "role" msgstr "rolle" @@ -359,70 +356,97 @@ msgstr "miljøvariabel; %s" msgid "%scommand line option; %s" msgstr "%skommandolinjetilvalg; %s" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "begreb i ordliste" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "grammatisk element" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "referenceetiket" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "miljøvariabel" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "programtilvalg" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 #: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "Indeks" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "Modulindeks" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Søgeside" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr " Baser: %s" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr "alias for :class:`%s`" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "[kilde]" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(Det <> befinder sig i %s, linje %d.)" -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "oprindeligt punkt" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "[kilde]" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "[dok]" @@ -473,7 +497,7 @@ msgid "Note" msgstr "Bemærk" #: sphinx/locale/__init__.py:162 -msgid "See Also" +msgid "See also" msgstr "Se også" #: sphinx/locale/__init__.py:163 @@ -519,25 +543,26 @@ msgstr "erklæring" msgid "built-in function" msgstr "indbygget funktion" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "Indholdsfortegnelse" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Søg" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "Søg" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." msgstr "Indtast søgeord eller navnet på et modul, en klasse eller en funktion." -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "Vis kilde" @@ -545,6 +570,19 @@ msgstr "Vis kilde" msgid "Overview" msgstr "Oversigt" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +#, fuzzy, python-format +msgid "the documentation for" +msgstr "dokumentation" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "Indeks og tabeller:" @@ -655,7 +693,7 @@ msgstr "Næste emne" msgid "next chapter" msgstr "næste kapitel" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." @@ -663,7 +701,7 @@ msgstr "" "Aktivér venligst JavaScript for at aktivere\n" " søgefunktionalitet." -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -675,17 +713,21 @@ msgstr "" " automatisk vil søge på alle ordene. Sider, der indeholder\n" " færre ord, vil ikke indgå i resultaterne." -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "søg" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "Søgeresultater" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." -msgstr "Din søgning gav ingen resultater." +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -723,25 +765,43 @@ msgstr "Ændringer i C-API" msgid "Other changes" msgstr "Andre ændringer" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "Permalink til denne overskrift" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "Permalink til denne definition" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "Skjul søgeresultater" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +#, fuzzy +msgid "Searching" +msgstr "søg" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "Udfold sidebjælke" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "Sammenfold sidebjælke" @@ -749,24 +809,28 @@ msgstr "Sammenfold sidebjælke" msgid "Contents" msgstr "Indhold" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "Udgave" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "Fodnoter" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "fortsat fra forrige side" -#: sphinx/writers/latex.py:681 +#: sphinx/writers/latex.py:710 msgid "Continued on next page" msgstr "Fortsættes på næste side" -#: sphinx/writers/text.py:437 +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 +#, fuzzy, python-format +msgid "[image: %s]" +msgstr "[billede: %s]" + +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[billede]" - diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.js b/sphinx/locale/de/LC_MESSAGES/sphinx.js index 665492b11..94e9df0d1 100644 --- a/sphinx/locale/de/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/de/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "de", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "Suchergebnisse ausblenden", "Permalink to this definition": "Permalink zu dieser Definition", "Expand sidebar": "Sidebar ausklappen", "Permalink to this headline": "Permalink zu dieser \u00dcberschrift", "Collapse sidebar": "Sidebar einklappen"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "de", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "Suchergebnisse ausblenden", "Permalink to this definition": "Permalink zu dieser Definition", "Permalink to this headline": "Permalink zu dieser \u00dcberschrift"}}); \ No newline at end of file diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo index 07748898abdaa81c195321442e36276c316b0121..84e7c2a540dea981216a2ee9d787a88cb2c2040c 100644 GIT binary patch delta 3832 zcmd7SX>3$g7{>9_g;JnsX-h>aa=X!jrGkKH1(AXhr0lpLR=v#JP6wtlW$p~LqK+}a zAS7xtN<@tW7ex7Bv=EGTtLK?P$}qJk2|uq2vjaf|++&M_|0FUAj&GQWGyJxTuYPl|FMH2mAn|MU32tB+d0|GRO3F$FZ6aUd>34e7uNyaW5;X6rWleg_uQ z|1u83x3L6|;@S8evTn-c@u`K2kv>z78Za8q!pW!wnr#0~sPR$M2Df1;-j9X&G-}?9 z=-`{E`NvV~|9}cOk3~w^-xTtoi8Xi*UV`W1Jk$oua46n^LvSOqhIzrh-;El72rtG{ zI2@~pVmwYqZQO~<+!`E%>#>ae%`P4W;|Hk7PFv4lKJ9GMaXAh^wXa6@FblCSx~TbK z)P^bhemm-5dr${BgqnXEm9ZX7X~VM^H5-Ru9=2eAY{N3_z=`+(>I82gv6+LY`A5-Y z8FK=)@JaHm0CS2m861S!w5x5q7ISG&DkA?{U@9G2coym;^Q|FN32w)7>_UPz-KY}m zwe5FMDL!KRPofU+J*xJ(ETVQPYU6TLfFp{@zfv-u4sATy4qS-(Hr#|t-D+&a4alGQ zkPl_x6jtF+w!fS!uD~XsGTDeK(M(i;^HJ+HqYl)O;z1idj2gHTHE}ocXZG=-iHA`e zeuF z05x$j1=hm1pvFaPJ7L>*q5@cp#Av#37;ZrY@CGWN1IRilbA$)g{v;}O-=H$`3o5Yl z_)cnKIcmWRP+!9#juwdM|4I4X7WkCwkvg|9w2@WN%pySwBKe zJc0BvxtwF-47F62WQXu{#R)Or_kc=I^wq%Yg{C#ZmXke>q6hnvWm%n-a7 z#|392-kP$%7L+b^Lq zyB9CP!zmtgq7tG|griVD43klJ;byGF7Sx98un8Zq?~kH3I*v;1*EkFFoy`12sCAd1 z=0|Y~cclYI(@wp}Zi?^=)Ezj3`e7&_kGhnFs1uH|UWBS;1FB?maTF#{2ib%paR=(8 zpQ1|Hg9;>@)9B6&M*35xI`d%0paQwf4w#LKxEVDugj(oUdYOf zK&8Icwx^&j^_4gY7uok+sFH5A?dPyR`u@?gk`u6>o5;@qSkp8HEuuZpa(GzKgN_U&oLfUyHiM+OioSaQjI{R>Oxe_rlKa! zN1gC`bTEVpbS)|~_oC)Kgj)Am+y5GBzx}BBhib^b7XFM5E%1$faR&9n(YH2Jvl7(% zOHlz#!M=EvZO^e@W4#d-K)|+>m{0pQRH@dW=093X{+0SC=}<&FQMKM@+s9EG_nsy7R~ zL^2-z?Nwte9*?c^f==9P@#0=I;Qe*P9B1dNvqmMbe9R)~BB;9^O~M@izT>acTNU@!Z1eyhtF{=9N2(TEo5* z_S5wx!&AXnAlc?c6MnrjFXC}}R$b0&$+*X|Zo+XR5oc8_9`qfTF2CK2L^wf!qj-Tt zq|Z5udl^qBFZ$BcExj%}DQ zvAf?ne(v8?ZFSkwyrOw=@2`bBT;6g0pGx#!R&RdA<(Ku|5a-|3(5)Dj6-_@`QJFqi zarOV9dedXelmAq`#&9Iq`@NZ2S(jB1`MrF>?nKqJtg2wxb2MLf%@%O)uDDs$*>0}o K+vF~dc;;6NVmnX( delta 2939 zcmYM#4@}f$9LMp84p0#=-1zKFlJ&nN33vF2-S4hr{t{RD$g|0{3Ay9z{OpJYTy0JL-N9RrxR%M`0CC z!!Q=&J9r14#!S49gUD}^DOVL`;XrioJ{)iRb;!MD4GzEvD!>L*f}Qqy7iuCupbEZ< zikHlCYK1aUc_!im=)*`NjTRbgk7-3!xE1fg4^Vr335jK{paR@N6GxkD3Y^6Hs=(2x z6`72;VX^JskMZ=Epq_se71y7}`fDZu2IRA-06TCrcA#>dKrQ)?wtpG5m%Vm8X=wih zh9N^H&-SOG5*MKgEJ3YE1u9?lP}W~FU&DY-e=}<7w&7enfSUOY%*RBkQ-OE!rGko3 zE4To)HI=Bss%?L@y&gcF{bYLzV+OLmdRuZ)<33cv*{H23?Kff;(@aa~l1uQ}(En%W_#AIZJF;uW%W~+s8K?=*!#utJWi)gM8?Ec?4K1h#UqCHsJL(Tq z3{~hc)Qr1P1zbSIxo)q=QMK+%Lv7_~+rJz2TroxzxSR$>8W(kAGiu4&Fduhf-{C|h zIB7kHIs+Gx)ijB`I-@YhIt!`AEJbZ;lkLBPDtP}0-hbXKbBF;xri(8h{)P&a&%Wpn zQHiw~b>9Ibr#X(=f{UoLaLxJ;7Ss1oowi~=YGUQKUyEAF`W)7OI*s)VXa)yS1$CkR z0QI2GzyMy2J24fNa4IgqS*YvJqY`aKt>iW=!}sm=o2a;+k^RqSVG(D;iO?wE!g8jo z3foY7z6!(TB$ z|NsA_q4&1e-r!-Ql{g7iPzH|098`c3YZ+?KD^O>r8VO<6*zuQ8Gu??=$qv->hfswd zL5KY2TN;|-byVV;s0R~SF9psz6$x6COf_zm3S9wLVIk# z1N;8}e`p6fQHc-R{&%Q^XHiT4Gb+Hps3lGC_7{?kY^xb-`=yvb|6x?(M^I7i(6#_UN?_``MnM#npDWne`p z><>4%<3py>T@m&N8l9S^a9toc(_z4M<}`!?QGaGt^y|!#DM2^X)DR9$GSxg6dn#*0 zT@E2A%r83spgP)hahgnvy_$Q>=T;#JE_-xVdpD RRqGx%i)w=Yn%V}}{0A)\n" "Language-Team: de \n" @@ -21,18 +21,12 @@ msgstr "" msgid "%s %s documentation" msgstr "%s %s Dokumentation" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#, python-format -msgid "%B %d, %Y" -msgstr "%d. %m. %Y" - -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1510 #, python-format msgid "see %s" msgstr "siehe %s" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1513 #, python-format msgid "see also %s" msgstr "siehe auch %s" @@ -42,6 +36,12 @@ msgstr "siehe auch %s" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "%d. %m. %Y" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "Builtins" @@ -50,24 +50,24 @@ msgstr "Builtins" msgid "Module level" msgstr "Modulebene" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "%d. %m. %Y" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Allgemeiner Index" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:309 msgid "index" msgstr "Index" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:369 msgid "next" msgstr "weiter" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "zurück" @@ -75,41 +75,38 @@ msgstr "zurück" msgid " (in " msgstr " (in " -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr "Autor des Abschnitts: " -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "Autor des Moduls: " -#: sphinx/directives/other.py:140 +#: sphinx/directives/other.py:142 msgid "Code author: " msgstr "Autor des Quellcode: " -#: sphinx/directives/other.py:142 +#: sphinx/directives/other.py:144 msgid "Author: " msgstr "Autor: " -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "Siehe auch" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "%s-%s" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "Parameter" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "Rückgabe" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "Rückgabetyp" @@ -138,58 +135,62 @@ msgstr "%s (C-Typ)" msgid "%s (C variable)" msgstr "%s (C-Variable)" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 msgid "function" msgstr "Funktion" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 msgid "member" msgstr "Member" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" msgstr "Makro" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "Typ" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 msgid "variable" msgstr "Variable" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "Wirft" + +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "%s (C++-Klasse)" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "%s (C++-Typ)" -#: sphinx/domains/cpp.py:938 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "%s (C++-Member)" -#: sphinx/domains/cpp.py:990 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "%s (C++-Funktion)" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "Klasse" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "%s() (Standard-Funktion)" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "%s() (Methode von %s)" @@ -204,7 +205,7 @@ msgstr "%s() (Klasse)" msgid "%s (global variable or constant)" msgstr "%s (globale Variable oder Konstante)" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "%s (Attribut von %s)" @@ -213,15 +214,11 @@ msgstr "%s (Attribut von %s)" msgid "Arguments" msgstr "Parameter" -#: sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "Wirft" - -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "Daten" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "Attribut" @@ -233,58 +230,58 @@ msgstr "Variablen" msgid "Raises" msgstr "Verursacht" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "%s() (in Modul %s)" -#: sphinx/domains/python.py:258 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "%s (Standard-Variable)" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "%s (in Modul %s)" -#: sphinx/domains/python.py:275 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "%s (Standard-Klasse)" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "%s (Klasse in %s)" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (Methode von %s.%s)" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (statische Methode von %s.%s)" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statische Methode von %s)" -#: sphinx/domains/python.py:341 +#: sphinx/domains/python.py:340 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (Klassenmethode von %s.%s)" -#: sphinx/domains/python.py:344 +#: sphinx/domains/python.py:343 #, python-format msgid "%s() (%s class method)" msgstr "%s() (Klassenmethode von %s)" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (Attribut von %s.%s)" @@ -302,49 +299,49 @@ msgstr "Python-Modulindex" msgid "modules" msgstr "Module" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "Veraltet" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "Exception" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "Methode" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 msgid "class method" msgstr "Klassenmethode" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "statische Methode" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "Module" -#: sphinx/domains/python.py:695 +#: sphinx/domains/python.py:696 msgid " (deprecated)" msgstr " (veraltet)" -#: sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "%s (Direktive)" -#: sphinx/domains/rst.py:57 +#: sphinx/domains/rst.py:55 #, python-format msgid "%s (role)" msgstr "%s (Rolle)" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "Direktive" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 msgid "role" msgstr "Rolle" @@ -358,70 +355,97 @@ msgstr "Umgebungsvariable; %s" msgid "%scommand line option; %s" msgstr "%sKommandozeilenoption; %s" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "Glossareintrag" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "Grammatik-Token" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "Referenz-Label" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "Umgebungsvariable" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "Programmoption" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 #: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "Stichwortverzeichnis" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "Modulindex" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Suche" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr " Basisklassen: %s" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr "Alias von :class:`%s`" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "(in %s v%s)" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "[Quelle]" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "Zu tun" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(Der <> steht in %s, Zeile %d.)" -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "ursprüngliche Eintrag" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "[Quelle]" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "[Doku]" @@ -472,7 +496,7 @@ msgid "Note" msgstr "Bemerkung" #: sphinx/locale/__init__.py:162 -msgid "See Also" +msgid "See also" msgstr "Siehe auch" #: sphinx/locale/__init__.py:163 @@ -518,27 +542,28 @@ msgstr "Anweisung" msgid "built-in function" msgstr "Standard-Funktion" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "Inhalt" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Suche" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "Los" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." msgstr "" "Geben Sie Suchbegriffe oder einen Modul-, Klassen- oder Funktionsnamen " "ein." -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "Quelltext anzeigen" @@ -546,6 +571,19 @@ msgstr "Quelltext anzeigen" msgid "Overview" msgstr "Übersicht" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +#, python-format +msgid "the documentation for" +msgstr "die Dokumentation für" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "Indizes und Tabellen:" @@ -656,13 +694,13 @@ msgstr "Nächstes Thema" msgid "next chapter" msgstr "nächstes Kapitel" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Bitte aktivieren Sie JavaScript, wenn Sie die Suchfunktion nutzen wollen." -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -675,17 +713,21 @@ msgstr "" "all diesen Worten suchen wird. Seiten, die nicht alle Worte enthalten, " "werden nicht in der Ergebnisliste erscheinen." -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "suchen" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "Suchergebnisse" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." -msgstr "Deine Suche ergab leider keine Treffer." +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -723,25 +765,42 @@ msgstr "C API-Änderungen" msgid "Other changes" msgstr "Andere Änderungen" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "Permalink zu dieser Überschrift" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "Permalink zu dieser Definition" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "Suchergebnisse ausblenden" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +msgid "Searching" +msgstr "Suchen" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr ", in " + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "Sidebar ausklappen" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "Sidebar einklappen" @@ -749,24 +808,28 @@ msgstr "Sidebar einklappen" msgid "Contents" msgstr "Inhalt" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "Release" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "Fußnoten" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "Fortsetzung der vorherigen Seite" -#: sphinx/writers/latex.py:681 +#: sphinx/writers/latex.py:710 msgid "Continued on next page" msgstr "Fortsetzung auf der nächsten Seite" -#: sphinx/writers/text.py:437 +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 +#, python-format +msgid "[image: %s]" +msgstr "[Bild: %s]" + +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[Bild]" - diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index bd83d10077a9c04ff974d423f194762f656affd5..64d6a3411ee7b47403ecfa3d17dfdf057a12288f 100644 GIT binary patch delta 2989 zcmYM!drX&A7{Ku(0$wmsDHK8dk>CZjLE*{~7kcukm&~ zhgsN;#7%~Dej7L&=?ewufZ>>l`Xg_a*W3ewEY0GMwp77a3(r`Ho9OkzTbszY(Khz zqv-rLv|@i^(giaa^)U9vbbJoG;yld51vnblqB}T@)Mv%1?oQ$4A zHM*f%bY2}=fh0O^4I2L)>}Y>I50+$e9Iy>dWH%bH317z+bYe9JY~ZKRadTsPer&&t zCa?_2F|5J9xEW303pAk?Bu+A%<-xOWMN4-Xt;h{Dv3$NsCl;UqhoYb1y|KRda?iLOH9uSfrIy?^sP=YNm~cXl{>Guth!&+{b^S7WCXh3(|h$i}7^dcr5aE%8OFimfFAEf%>E;Qpw=+3Lq05#|WFUI#v zV*g6?Y&W45*p4RNjK=#4UFUp!|8E}WZ@?@LJc0et9aiAY1<@VWpqFS4dIy$cKYSMx z*o2%$IE{W*?Z_ITHSS&%u%|jDd ziT**UM~~=Z^sel|N!X0;IE_ih%SXqRAjJ;lXaZHqIA9ezp&pqV8qo!gqdWQ$4Um@L z?>}at3qFB2D}>}8=HO&pj&9%t8uv`J9Wy#`ECeNFNak`gJmY)N%qr2#^$Zr_Y;>VF z(1bR`c0F3skI+E-(aZM(mf#=AeGCJsw-u;}PDRJfLheX1EaJh-v;qyd0lhRk&_tSI zdq0}U5j4@`=)B)?7~a6aIIJ*)N3aTw_W>GjAMz8v_x z?yM3A;%sD%uo^A-F7!y6(D8@RyKx3x;0iv5SxokQ4LWZTdL*x4H`Wgud9Wl~&{FO7 z1-3*_VH)iV=z?w0t7rvM2HpBKl8s3p@_8`xA|z%g zNBd{S{@Q2~O=K;a=ti_c+c6be&;*a7@xDjzz-2Unj3Kw;=AiTY525~k?<45wgq7%7 zO+mkc8CZ-<(S^67<90;%M4PcQ{fDp%9ziR564UV#`u+;~hv}c#&Mc<>4(!D$W>k!x z@p$x%YOo_NL<22BKeJb3yB_^|wqh4-ME?RFK<9spR;CqA;5Q73L}KF1x@YUk6Ge3m v3p0N0+ORt3N=jzg@RHI*X=(Y$(L+n_E_v(C+<_fNH8kc<%WS9^oY(O`3=|$$ delta 3042 zcmYM!drX&A7{KutK?J;@pg%>t{JeoT3KH-#%w_6YlMHVw$rYNJQz28anDukDHZxP3 zv!-s&+g#=!4Yl0#4^1&$-d3&}mRM;mb2VK~^IG4poGpiZ-gDk_p7WgNoR`~E&P`1; zWu>f(`1cwAyYauFrLF(}&1)S+ZD`KNwpfP_S&qGN6{cf-@IZKf6tn3+fgSJycEoF# ziKztTClST?ZQwr0yQl~qFcRBgIU3-(&|i&?e-m9`CB|?ww#R+wyyF9d^Z4*adeYv7*D_{TX!pMJ&a8*b|G%q8KNm3%`q2 zZXFilM$BdX=p+xF@OLz``@uBIkVZQTAI03zo`$Ru&BRu?0GYz5(6XH|Pc~ zqVevd6>G)IgbViIp&a{TD%N5KzJa;89Eaj|bO%2oIYz&r^RHo)6h(K?z;~&)31(+C zSFjhhpj{H$!!U*R_$=ygfC@ScT#4?aD!2qag7>i(Zb6cdj-W?yHne|2OMEr--$gf& z&ScNNBihbG7cN2*EX}6=mShYaE?gc4&P2b4YP59k;b`1}{6v@eWd-hGUu?tGw!a8X zY%E&IiRckMizZlw#+#3BXnBGM7y1MpcnqC*2KkA;7e(-$3J~aIUVC+l~4=po9(sj>9-kL3db-4;DmsxE{SkThTjk z2z%hS7{}|#DMpp&MvVIgA?%7GUcn&VLLKtPwrU&G3w0K{H#1 zUapPU4>zL=eTgP?I0M_Rp(S9CW z@N2YmO=zjEh5nZL&F{0YCH+0o1^WdbMk_EJ{c6VIeyl_*5#yKfN1G2x4s zcu2#A!KLU9-a&GRHiZ5!LjPC63ur>u(S&cKm1;Mj`N$qZ6CHxa8;Rb9iD&|I2T=bs z9%|_@Kmy&tT5N?o(KD+@zlMW25S!42(`h&^GuS!U6OEgX=~#$Xb_Awkd3Zm0Aoch1 zO%EN_Vc-%pp%v&^Z$dwx!Jd;?*_rni-20*Ve?V=Ty%=vcEds9HZ*Rnmy<9yC?q#Vyz}% diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.po b/sphinx/locale/es/LC_MESSAGES/sphinx.po index 3a45a14c7..742d9444a 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.po @@ -7,15 +7,14 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 0.5\n" "Report-Msgid-Bugs-To: guillem@torroja.dmt.upm.es\n" -"POT-Creation-Date: 2013-03-03 15:44-0630\n" -"PO-Revision-Date: 2013-03-03 16:26-0430\n" +"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"PO-Revision-Date: 2013-03-03 16:26-0530\n" "Last-Translator: Leonardo J. Caballero G. \n" "Language-Team: Leonardo J. Caballero G.\n" -"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\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 0.9.6\n" #: sphinx/config.py:81 @@ -23,27 +22,27 @@ msgstr "" msgid "%s %s documentation" msgstr "documentación de %s - %s" -#: sphinx/transforms.py:51 sphinx/writers/latex.py:202 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 -#, python-format -msgid "%B %d, %Y" -msgstr "%d de %B de %Y" - -#: sphinx/environment.py:1507 +#: sphinx/environment.py:1510 #, python-format msgid "see %s" msgstr "ver %s" -#: sphinx/environment.py:1510 +#: sphinx/environment.py:1513 #, python-format msgid "see also %s" msgstr "ver también %s" -#: sphinx/roles.py:176 +#: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "%d de %B de %Y" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "Funciones incorporadas" @@ -52,24 +51,24 @@ msgstr "Funciones incorporadas" msgid "Module level" msgstr "Nivel de módulo" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "%d de %B de %Y" -#: sphinx/builders/html.py:312 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Índice General" -#: sphinx/builders/html.py:312 +#: sphinx/builders/html.py:309 msgid "index" msgstr "índice" -#: sphinx/builders/html.py:372 +#: sphinx/builders/html.py:369 msgid "next" msgstr "siguiente" -#: sphinx/builders/html.py:381 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "anterior" @@ -158,6 +157,10 @@ msgstr "tipo" msgid "variable" msgstr "variable" +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "Lanzamientos" + #: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" @@ -212,10 +215,6 @@ msgstr "%s (atributo de %s)" msgid "Arguments" msgstr "Argumentos" -#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "Lanzamientos" - #: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "dato" @@ -382,8 +381,8 @@ msgstr "opción de programa" #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 -#: sphinx/themes/basic/genindex.html:68 sphinx/writers/latex.py:191 -#: sphinx/writers/texinfo.py:475 +#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "Índice" @@ -405,12 +404,12 @@ msgstr " Clases base: %s" msgid "alias of :class:`%s`" msgstr "alias de :class:`%s`" -#: sphinx/ext/graphviz.py:301 sphinx/ext/graphviz.py:309 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 #, python-format msgid "[graph: %s]" msgstr "[gráfica: %s]" -#: sphinx/ext/graphviz.py:303 sphinx/ext/graphviz.py:311 +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 msgid "[graph]" msgstr "[gráfica]" @@ -549,8 +548,9 @@ msgstr "función incorporada" msgid "Table Of Contents" msgstr "Tabla de Contenidos" -#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/search.html:11 -#: sphinx/themes/basic/search.html:20 sphinx/themes/basic/searchresults.html:10 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Búsqueda" @@ -560,7 +560,9 @@ msgstr "Ir a" #: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." -msgstr "Introduzca los términos de búsqueda o un nombre de módulo, clase o función." +msgstr "" +"Introduzca los términos de búsqueda o un nombre de módulo, clase o " +"función." #: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" @@ -575,7 +577,6 @@ msgid "Welcome! This is" msgstr "¡Bienvenido! Este es" #: sphinx/themes/basic/defindex.html:16 -#, python-format msgid "the documentation for" msgstr "la documentación para" @@ -596,7 +597,6 @@ msgid "lists all sections and subsections" msgstr "muestra todas las secciones y subsecciones" #: sphinx/themes/basic/defindex.html:26 -#, python-format msgid "search this documentation" msgstr "buscar en esta documentación" @@ -694,7 +694,7 @@ msgstr "Próximo tema" msgid "next chapter" msgstr "próximo capítulo" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." @@ -702,7 +702,7 @@ msgstr "" "Por favor, active JavaScript para habilitar la funcionalidad\n" " de búsqueda." -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -714,18 +714,24 @@ msgstr "" " automáticamente todas las palabras. Las páginas que contengan \n" " menos palabras no aparecerán en la lista de resultados." -#: sphinx/themes/basic/search.html:36 sphinx/themes/basic/searchresults.html:17 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "buscar" -#: sphinx/themes/basic/search.html:40 sphinx/themes/basic/searchresults.html:21 -#: sphinx/themes/basic/static/searchtools.js_t:274 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "Resultados de la búsqueda" -#: sphinx/themes/basic/search.html:42 sphinx/themes/basic/searchresults.html:23 -msgid "Your search did not match any results." -msgstr "Tu consulta no obtuvo ningún resultado." +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" +"Su búsqueda no coincide con ningún documentos. Por favor, asegúrese de " +"que todas las palabras estén correctamente escritas y que usted allá " +"seleccionado las suficientes categorías." #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -763,8 +769,8 @@ msgstr "Cambios en la API C" msgid "Other changes" msgstr "Otros cambios" -#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:513 -#: sphinx/writers/html.py:519 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "Enlazar permanentemente con este título" @@ -776,31 +782,22 @@ msgstr "Enlazar permanentemente con esta definición" msgid "Hide Search Matches" msgstr "Ocultar coincidencias de la búsqueda" -#: sphinx/themes/basic/static/searchtools.js_t:114 +#: sphinx/themes/basic/static/searchtools.js_t:119 msgid "Searching" msgstr "Buscando" -#: sphinx/themes/basic/static/searchtools.js_t:119 +#: sphinx/themes/basic/static/searchtools.js_t:124 msgid "Preparing search..." msgstr "Preparando búsqueda..." -#: sphinx/themes/basic/static/searchtools.js_t:276 -msgid "" -"Your search did not match any documents. Please make sure that all words " -"are spelled correctly and that you've selected enough categories." -msgstr "" -"Su búsqueda no coincide con ningún documentos. Por favor, asegúrese de que " -"todas las palabras estén correctamente escritas y que usted allá " -"seleccionado las suficientes categorías." - -#: sphinx/themes/basic/static/searchtools.js_t:278 +#: sphinx/themes/basic/static/searchtools.js_t:285 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" "Búsqueda finalizada, encontró %s página(s) acorde con la consulta de " "búsqueda." -#: sphinx/themes/basic/static/searchtools.js_t:330 +#: sphinx/themes/basic/static/searchtools.js_t:337 msgid ", in " msgstr ", en " @@ -821,24 +818,24 @@ msgstr "Contenidos" msgid "Release" msgstr "Publicación" -#: sphinx/writers/latex.py:618 sphinx/writers/manpage.py:187 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 #: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "Notas a pie de página" -#: sphinx/writers/latex.py:702 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "proviene de la página anterior" -#: sphinx/writers/latex.py:708 +#: sphinx/writers/latex.py:710 msgid "Continued on next page" msgstr "Continúa en la página siguiente" -#: sphinx/writers/manpage.py:232 sphinx/writers/text.py:536 +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 #, python-format msgid "[image: %s]" msgstr "[imagen: %s]" -#: sphinx/writers/manpage.py:233 sphinx/writers/text.py:537 +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[imagen]" diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.js b/sphinx/locale/et/LC_MESSAGES/sphinx.js index abf00ee5e..98e728c41 100644 --- a/sphinx/locale/et/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/et/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "et", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "Varja otsingutulemused", "Permalink to this definition": "P\u00fcsiviit sellele definitsioonile", "Expand sidebar": "N\u00e4ita k\u00fclgriba", "Permalink to this headline": "P\u00fcsiviit sellele pealkirjale", "Collapse sidebar": "Varja k\u00fclgriba"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "et", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "Varja otsingutulemused", "Permalink to this definition": "P\u00fcsiviit sellele definitsioonile", "Permalink to this headline": "P\u00fcsiviit sellele pealkirjale"}}); \ No newline at end of file diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.mo b/sphinx/locale/et/LC_MESSAGES/sphinx.mo index 176d513e16dc7a61fa3a6825454626979a6d1975..2ae16d391677e6f7efbbe906e6ab341d75a33606 100644 GIT binary patch delta 3640 zcmd7US!`5Q9LMofXepL`SW79~vXre1R5mT7$XYa5$`&OA$uM)sU(<2AZQ>qh)CQ}c@UHUk|1#jK7d3;{Qk-zAdkien_)ipo_o&!{LlZK zJK^NRm#3!A`qDQU{`T>&8~?Uu=`-${gcDfxkjN<~(2O@H4i?8>j#+>8oQ2ldJEANjg@hDW>iP#jUpej*jpQmPVp##R)!k* z1Zv_SZsawKpaQ3Hl2p=msQ$UAl@3J3DYZV1s?2<3H%%Co@N(o_n)R5{9=*YZR{XBD z0TuXj)QZ2e{)8I%hrMsZa+OebBsb$n9+?tkx6FLh_!`uyUxi9w4{8DL<*@(C_#+yq zmN{uVTt+_TcfJ&`6DLIz7h-puh&?cbO8hzG4K^E4E8U5s@DTRKYd8RNIH9V@BQEW(N1crZ9FHeZm1#{DT3I(#zk#SYBXKyEVq;>c3T;4DdOK=M z>roYZKgERtox)jo5%r!Hu{?DwMw(0s7GXK+Y-~rB@=er=4`4lhimK!@&aH)PK~-=k zYTOZ2qDN7cNS)zAD?E=nrI%41uAoYnNm*3-0_=qkp%M;RJ?je8iZ@tav(}+jeh^iO z6R7!4BZ;TX1uk?3uA?$enACnk$-DTe5gdap?;DFp$3jam2@&Hu^Fg- zE;hr(s6>~c5?hUhxEVG6xb?Gq>felpuW68HP#Ir9orxb&rM!yGusO?8dmGdQ*_era zPzek|9kOC%Ev6Jz`UIxqv({C}i(=OG9dc{Jy)-D`epH4HsFfW@O?(G&$XZ0_AxgSj4gEYoSETD&#Clk{T+Iw zLa|_Sp&Lzjey1$r20WKY3y6@6yMziPoIoVvRL9~W&k4}vRk@J}SqDkq4JINrPJlcb zJJ!UKeHUx)2oLDuMq|l}uoDa<+=^Jd()Iji4zqc4&76vOpekHM`g1ewP5qn>*=bn; zFX1GsLX4#Ww6 z*&G*eQBkc{rbg6FH(R*UwS~8q=jiJHzgHuSiR5w*MqwZ7k^Pv712_*ytQYP5D;Q7z4UENG zn1HeKjfue=WM04V(9pzX$j5BpOApjzG;Tvpu*3GhhI+mqwZI`v#IJAxo=1(liY}Z& zjZbDZnkE+&um=-a-;~hMz#2@#t+)_(q88}G6db^097aCo5?{LiC+hhSqVixGW?(h0 z#C9yek8lxQKqpS(Jk~dngsX@WaW1;>e!Rn8Z$+LpZ5WPz)C4c17I@3vA4MhdGb-Sl zsQDr(rz+$`t+Nc*qX+$AG+v~^_L$wM2zzlAeumoX>&RSY0yV)cG!ELVrimk{uL4|* zsz^TGhGq78ErxPkiyHqZYTm|J>aR>%>5wm>CU^rE<0q)KMo=aH#a@r2_HxGdN5su0 zkc4!ZOnbc&wQw;iz%{6fY(%YB7f1b-c^e%%{X0;ldmUHf=cvr5(2Ze4rvR7orGSc2 z6g@Fvd%qQR`k%Jo(-ciKaHx` z7;52Z)VLYsW9Cv{y)9{|eh+HF64X{y%<4BaG&Hdn6>$^lhs9_6dr^_UX?@Rn0QLN* zr~r`lc-F6ScF}uGjR%4p;1(#mobRbei|y_$Ba@Y z-yq4G?@or!SjrwpS|htr9=pNgv33RKA-#w=_`1-#e#wsioNuz$!lPFl~S zGXE7-iAmIgVXoQ8qfvYBMg_hcRnoPnE!l|VWZF@c?LuwAx2OQmp(^in6@ zG&G?$Or;G+WfqJ2Da}L;T!pI8eW*anQP0()#y6oVvmFcZdDOT;>k-s*Us_L~Uy+`q zp@q+&O7(+%V8ZrKp(b{)fvQLpYGEhpjO1W8dQhc(1VgdO`V?}EOb2Sc9@KpOZn_oW z0Xme?AS%M+sD*~z!Ib$KA;IG44RZqT$NK_p2_=E?gxt{5W?yR{-dP>!bf!md_xd`T z+kMMT-R9N?UobUsp(D6DX}=??Ft6b5ygLhBg#|?gp5Rn+WoU3+TGgDuU}k4vS5`@& zD=RJ#>&^-+b=NMeZ1**`Y;k!TU5~eHZt2+UYVT, 2011 # Ivar Smolin , 2012 - msgid "" msgstr "" -"Project-Id-Version: Sphinx 1.1.3" +"Project-Id-Version: Sphinx 1.1.3Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2011-09-21 10:06+0200\n" +"POT-Creation-Date: 2013-04-01 11:57+0200\n" "PO-Revision-Date: 2012-09-15 12:56+0300\n" "Last-Translator: Ivar Smolin \n" "Language-Team: \n" @@ -27,18 +24,12 @@ msgstr "" msgid "%s %s documentation" msgstr "%s %s dokumentatsioon" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#, python-format -msgid "%B %d, %Y" -msgstr "%d. %B %Y" - -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1510 #, python-format msgid "see %s" msgstr "vaata %s" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1513 #, python-format msgid "see also %s" msgstr "vaata ka %s" @@ -48,6 +39,12 @@ msgstr "vaata ka %s" msgid "Python Enhancement Proposals; PEP %s" msgstr "Pythoni täiustusettepanekud, PEP %s" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "%d. %B %Y" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "Sisseehitatud" @@ -56,69 +53,63 @@ msgstr "Sisseehitatud" msgid "Module level" msgstr "Mooduli tase" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "%d. %b %Y" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Üldindeks" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:309 msgid "index" msgstr "indeks" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:369 msgid "next" msgstr "järgmine" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "eelmine" #: sphinx/builders/latex.py:141 sphinx/builders/texinfo.py:196 -# paistab olevat ristviitamiseks. ei oska öelda, kas siia sobiks paremini -# 'Sektsioonis' või 'Teema' või midagi muud. sestap panin enamvähem lollikindla -# 'Pealkirjas'. (okul) msgid " (in " msgstr " (pealkirjas " -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr "Sektsiooni autor:" -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "Mooduli autor:" -#: sphinx/directives/other.py:140 +#: sphinx/directives/other.py:142 msgid "Code author: " msgstr "Koodi autor:" -#: sphinx/directives/other.py:142 +#: sphinx/directives/other.py:144 msgid "Author: " msgstr "Autor: " -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "Vaata ka" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "Parameetrid" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "Tagastab" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "Tagastustüüp" @@ -147,58 +138,62 @@ msgstr "%s (C tüüp)" msgid "%s (C variable)" msgstr "%s (C muutuja)" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 msgid "function" msgstr "funktsioon" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 msgid "member" msgstr "liige" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "tüüp" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 msgid "variable" msgstr "muutuja" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "" + +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ klass)" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ tüüp)" -#: sphinx/domains/cpp.py:938 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ liige)" -#: sphinx/domains/cpp.py:990 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ funktsioon)" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "klass" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "%s() (sisseehitatud funktsioon)" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s meetod)" @@ -213,7 +208,7 @@ msgstr "%s() (klass)" msgid "%s (global variable or constant)" msgstr "%s (globaalmuutuja või konstant)" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atribuut)" @@ -222,15 +217,11 @@ msgstr "%s (%s atribuut)" msgid "Arguments" msgstr "Argumendid" -#: sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "" - -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "andmed" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "atribuut" @@ -242,58 +233,58 @@ msgstr "Muutujad" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "%s() (moodulis %s)" -#: sphinx/domains/python.py:258 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "%s (sisseehitatud muutuja)" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "%s (moodulis %s)" -#: sphinx/domains/python.py:275 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "%s (sisseehitatud klass)" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "%s (klass moodulis %s)" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s meetod)" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s staatiline meetod)" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s staatiline meetod)" -#: sphinx/domains/python.py:341 +#: sphinx/domains/python.py:340 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (klassi %s.%s meetod)" -#: sphinx/domains/python.py:344 +#: sphinx/domains/python.py:343 #, python-format msgid "%s() (%s class method)" msgstr "%s() (klassi %s meetod)" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s atribuut)" @@ -311,49 +302,49 @@ msgstr "Pythoni moodulite indeks" msgid "modules" msgstr "moodulid" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "Iganenud" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "erind" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "meetod" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 msgid "class method" msgstr "klassi meetod" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "staatiline meetod" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "moodul" -#: sphinx/domains/python.py:695 +#: sphinx/domains/python.py:696 msgid " (deprecated)" msgstr " (iganenud)" -#: sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "%s (direktiiv)" -#: sphinx/domains/rst.py:57 +#: sphinx/domains/rst.py:55 #, python-format msgid "%s (role)" msgstr "%s (roll)" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "direktiiv" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 msgid "role" msgstr "roll" @@ -367,70 +358,97 @@ msgstr "keskkonnamuutuja; %s" msgid "%scommand line option; %s" msgstr "%s käsurea valik; %s" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "sõnastiku termin" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "grammatika märk" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "viite pealkiri" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "keskkonnamuutuja" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "programmi valik" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 #: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "Indeks" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "Mooduli indeks" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Otsinguleht" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr " Pärineb: %s" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr "klassi :class:`%s` sünonüüm" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:234 +#, fuzzy, python-format +msgid "(in %s v%s)" +msgstr "(in %s v%s)" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "[lähtekood]" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "Teha" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<> asub failis %s real %d.)" -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "algne kirje" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "[lähtekood]" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "[dokumentatsioon]" @@ -481,7 +499,7 @@ msgid "Note" msgstr "Märkus" #: sphinx/locale/__init__.py:162 -msgid "See Also" +msgid "See also" msgstr "Vaata ka" #: sphinx/locale/__init__.py:163 @@ -527,25 +545,26 @@ msgstr "lause" msgid "built-in function" msgstr "sisseehitatud funktsioon" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "Sisukord" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Otsing" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "Otsi" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." msgstr "Sisesta otsingusõna või mooduli/klassi/funktsiooni nimi." -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "Näita lähtekoodi" @@ -553,6 +572,19 @@ msgstr "Näita lähtekoodi" msgid "Overview" msgstr "Ülevaade" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +#, fuzzy, python-format +msgid "the documentation for" +msgstr "dokumentatsioon" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "Indeksid ja tabelid" @@ -663,13 +695,13 @@ msgstr "Järgmine teema" msgid "next chapter" msgstr "järgmine peatükk" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Otsingu võimaldamiseks tuleb aktiveerida JavaScript." -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -680,17 +712,21 @@ msgstr "" "allolevasse lahtrisse ning klõpsa \"Otsi\". Tulemuseks antakse " "leheküljed, mis sisaldavad kõiki otsisõnasid." -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "otsi" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "Otsingutulemused" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." -msgstr "Otsing ei andnud tulemusi." +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -728,25 +764,43 @@ msgstr "C API muutused" msgid "Other changes" msgstr "Ülejäänud muutused" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "Püsiviit sellele pealkirjale" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "Püsiviit sellele definitsioonile" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "Varja otsingutulemused" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +#, fuzzy +msgid "Searching" +msgstr "otsi" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "Näita külgriba" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "Varja külgriba" @@ -754,24 +808,28 @@ msgstr "Varja külgriba" msgid "Contents" msgstr "Sisukord" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "Väljalase" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "Joonealused märkused" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "jätk eelmisele leheküljele" -#: sphinx/writers/latex.py:681 +#: sphinx/writers/latex.py:710 msgid "Continued on next page" msgstr "Jätkub järgmisel lehel" -#: sphinx/writers/text.py:437 +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 +#, fuzzy, python-format +msgid "[image: %s]" +msgstr "[pilt: %s]" + +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[pilt]" - diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.js b/sphinx/locale/eu/LC_MESSAGES/sphinx.js index 2407a0e6f..019339845 100644 --- a/sphinx/locale/eu/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/eu/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "eu", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "Bilaketa bat-etortzeak ezkutatu", "Permalink to this definition": "Definizio honetarako esteka iraunkorra", "Expand sidebar": "Alboko barra luzatu", "Permalink to this headline": "Goiburu honetarako esteka iraunkorra", "Collapse sidebar": "Alboko barra tolestu"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "eu", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "Bilaketa bat-etortzeak ezkutatu", "Permalink to this definition": "Definizio honetarako esteka iraunkorra", "Permalink to this headline": "Goiburu honetarako esteka iraunkorra"}}); \ No newline at end of file diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo index 9088838f921dc6ec8f6e1b49938f4f38bfe6666c..d5fa9682f11b3e4128d7d7e8a63d30d4d7554e4f 100644 GIT binary patch delta 3678 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 W@wK*lI~)Dp@VL7yBD{QlL&SgOrXflI diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.po b/sphinx/locale/eu/LC_MESSAGES/sphinx.po index 0ade62c42..9d4201607 100644 --- a/sphinx/locale/eu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eu/LC_MESSAGES/sphinx.po @@ -1,4 +1,4 @@ -# Translations template for Sphinx. +# Basque translations for Sphinx. # Copyright (C) 2011 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # Ales Zabala Alava , 2011. @@ -7,33 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 1.1pre/9523af9ba9aa+\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2011-09-21 10:06+0200\n" +"POT-Creation-Date: 2013-04-01 11:57+0200\n" "PO-Revision-Date: 2013-02-07 11:51+0100\n" "Last-Translator: Ales Zabala Alava (Shagi) \n" "Language-Team: Basque\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 0.9.6\n" -"Language: eu\n" #: sphinx/config.py:81 #, python-format msgid "%s %s documentation" msgstr "%s %s dokumentazioa" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#, python-format -msgid "%B %d, %Y" -msgstr "%Y %B %d" - -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1510 #, python-format msgid "see %s" msgstr "%s ikusi" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1513 #, python-format msgid "see also %s" msgstr "ikusi %s baita ere" @@ -43,6 +37,12 @@ msgstr "ikusi %s baita ere" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Hobekuntza Proposamena; PEP %s" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "%Y %B %d" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "" @@ -51,24 +51,24 @@ msgstr "" msgid "Module level" msgstr "Modulu maila" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "%Y %b %d" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indize orokorra" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:309 msgid "index" msgstr "indizea" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:369 msgid "next" msgstr "hurrengoa" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "aurrekoa" @@ -76,41 +76,38 @@ msgstr "aurrekoa" msgid " (in " msgstr " (hemen: " -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr "Atalaren egilea: " -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "Moduluaren egilea: " -#: sphinx/directives/other.py:140 +#: sphinx/directives/other.py:142 msgid "Code author: " msgstr "Kodearen egilea: " -#: sphinx/directives/other.py:142 +#: sphinx/directives/other.py:144 msgid "Author: " msgstr "Egilea:" -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "Ikusi baita ere" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "Parametroak" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "Itzultzen du" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "Itzulketa mota" @@ -139,58 +136,62 @@ msgstr "%s (C mota)" msgid "%s (C variable)" msgstr "%s (C aldagaia)" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 msgid "function" msgstr "funtzioa" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 msgid "member" msgstr "partaidea" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" msgstr "makroa" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "mota" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 msgid "variable" msgstr "aldagaia" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "Jaurtitzen du" + +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ klasea)" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ mota)" -#: sphinx/domains/cpp.py:938 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ partaidea)" -#: sphinx/domains/cpp.py:990 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ funtzioa)" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "klasea" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodoa)" @@ -205,7 +206,7 @@ msgstr "%s() (klasea)" msgid "%s (global variable or constant)" msgstr "%s (aldagai globala edo konstantea)" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributua)" @@ -214,15 +215,11 @@ msgstr "%s (%s atributua)" msgid "Arguments" msgstr "Argumentuak" -#: sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "Jaurtitzen du" - -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "datuak" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "atributua" @@ -234,58 +231,58 @@ msgstr "Aldagaiak" msgid "Raises" msgstr "Goratzen du" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s moduluan)" -#: sphinx/domains/python.py:258 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "%s (%s moduluan)" -#: sphinx/domains/python.py:275 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "%s (klasea %s-(e)n)" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metodoa)" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s metodo estatikoa)" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metodo estatikoa)" -#: sphinx/domains/python.py:341 +#: sphinx/domains/python.py:340 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s klaseko metodoa)" -#: sphinx/domains/python.py:344 +#: sphinx/domains/python.py:343 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klaseko metodoa)" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s atributua)" @@ -303,49 +300,49 @@ msgstr "Python moduluen indizea" msgid "modules" msgstr "moduluak" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "Zaharkitua" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "salbuespena" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "metodoa" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 msgid "class method" msgstr "klaseko metodoa" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "metodo estatikoa" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "modulua" -#: sphinx/domains/python.py:695 +#: sphinx/domains/python.py:696 msgid " (deprecated)" msgstr " (zaharkitua)" -#: sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:57 +#: sphinx/domains/rst.py:55 #, python-format msgid "%s (role)" msgstr "%s (rola)" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 msgid "role" msgstr "rola" @@ -359,70 +356,97 @@ msgstr "inguruneko aldagaia; %s" msgid "%scommand line option; %s" msgstr "%skomando lerroko aukera; %s" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "glosarioko terminoa" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "gramatikako token-a" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "erreferentzia etiketa" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "inguruneko aldagaia" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "programako aukera" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 #: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "Indizea" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "Moduluen indizea" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Bilaketa orria" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr "" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "[iturburua]" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "Egitekoa" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "jatorrizko sarrera" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "[iturburua]" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "[dokumentazioa]" @@ -473,7 +497,7 @@ msgid "Note" msgstr "Nota" #: sphinx/locale/__init__.py:162 -msgid "See Also" +msgid "See also" msgstr "Ikusi baita ere" #: sphinx/locale/__init__.py:163 @@ -519,25 +543,26 @@ msgstr "sententzia" msgid "built-in function" msgstr "" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "Eduki taula" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Bilatu" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "Joan" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." msgstr "Sartu bilaketa terminoa edo modulu, klase edo funtzioaren izena." -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "Iturburua ikusi" @@ -545,6 +570,19 @@ msgstr "Iturburua ikusi" msgid "Overview" msgstr "Gainbegirada" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +#, fuzzy, python-format +msgid "the documentation for" +msgstr "dokumentazioa" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "Indizeak eta taulak:" @@ -631,8 +669,8 @@ msgid "" "Created using Sphinx " "%(sphinx_version)s." msgstr "" -"Sphinx %(sphinx_version)s erabiliz " -"sortutakoa." +"Sphinx %(sphinx_version)s erabiliz" +" sortutakoa." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -655,13 +693,13 @@ msgstr "Hurrengo gaia" msgid "next chapter" msgstr "hurrengo kapitulua" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Mesedez, gaitu JavaScript-a bilaketa erabili ahal izateko." -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -673,17 +711,21 @@ msgstr "" "hitz guztiak bilatuko dituela. Hitz gutxiago dituzten orriak ez dira \n" "emaitzen zerrendan agertuko." -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "bilatu" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "Bilaketa emaitzak" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." -msgstr "Zure bilaketak ez du emaitzarik eman." +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -721,25 +763,43 @@ msgstr "C API aldaketak" msgid "Other changes" msgstr "Beste aldaketak" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "Goiburu honetarako esteka iraunkorra" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "Definizio honetarako esteka iraunkorra" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "Bilaketa bat-etortzeak ezkutatu" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +#, fuzzy +msgid "Searching" +msgstr "bilatu" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "Alboko barra luzatu" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "Alboko barra tolestu" @@ -747,23 +807,28 @@ msgstr "Alboko barra tolestu" msgid "Contents" msgstr "Edukiak" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "Argitalpena" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "Oin-oharrak" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "aurreko orritik jarraitzen du" -#: sphinx/writers/latex.py:681 +#: sphinx/writers/latex.py:710 msgid "Continued on next page" msgstr "Hurrengo orrian jarraitzen du" -#: sphinx/writers/text.py:437 +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 +#, fuzzy, python-format +msgid "[image: %s]" +msgstr "[irudia: %s]" + +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[irudia]" diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.js b/sphinx/locale/fa/LC_MESSAGES/sphinx.js index 72b0ee94d..d8ec65e03 100644 --- a/sphinx/locale/fa/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/fa/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "fa", "plural_expr": "(n > 1)", "messages": {"Hide Search Matches": "\u0639\u062f\u0645 \u0646\u0645\u0627\u06cc\u0634 \u0646\u062a\u0627\u06cc\u062c \u06cc\u0627\u0641\u062a \u0634\u062f\u0647", "Permalink to this definition": "\u0644\u06cc\u0646\u06a9 \u062b\u0627\u0628\u062a \u0628\u0647 \u0627\u06cc\u0646 \u062a\u0639\u0631\u06cc\u0641", "Expand sidebar": "", "Permalink to this headline": "\u0644\u06cc\u0646\u06a9 \u062b\u0627\u0628\u062a \u0628\u0647 \u0627\u06cc\u0646 \u0633\u0631 \u0645\u0642\u0627\u0644\u0647", "Collapse sidebar": ""}}); \ No newline at end of file +Documentation.addTranslations({"locale": "fa", "plural_expr": "(n > 1)", "messages": {"Hide Search Matches": "\u0639\u062f\u0645 \u0646\u0645\u0627\u06cc\u0634 \u0646\u062a\u0627\u06cc\u062c \u06cc\u0627\u0641\u062a \u0634\u062f\u0647", "Permalink to this definition": "\u0644\u06cc\u0646\u06a9 \u062b\u0627\u0628\u062a \u0628\u0647 \u0627\u06cc\u0646 \u062a\u0639\u0631\u06cc\u0641", "Permalink to this headline": "\u0644\u06cc\u0646\u06a9 \u062b\u0627\u0628\u062a \u0628\u0647 \u0627\u06cc\u0646 \u0633\u0631 \u0645\u0642\u0627\u0644\u0647"}}); \ No newline at end of file diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo index a4900c710c8b2735536029bcc525946dfaf97cc3..fca5a7b2731855f98bd06bf8cec152066e7452c2 100644 GIT binary patch delta 3375 zcmdVaeN5F=9LMp4q6UIID5Au}&jf`828gmT%!LnyGt$&-k=gCupK$eZFWm=`mfnA? zh-K++tcPWDQ`1#udAIDJL|xV@u{PHXolcvhGR0|gCDzvagTH38|JwQ^cDb)}&hI>Y z&-a|)?VR&rL-b5$Vz=RMEC0FtCyr3<*5Ab>V^XMILOmM9yYx8O7>Z`HV;Sms4UWZG zn1PFN9J(Od< zjSAowyaWHhdvGM%RDB-uF^znU!pAU+^^J#u7J3>L`Ce3{2T=o0p(Z|$58wcf#5&SJ zGRz!QAdRR1S0f+O#+SxLQJH)J8EUqnGV(q~hfz4}G#tT1>V2qzXHXOVh}z+RVvrn9(l~!DxQ_-!wjZ_QBd7(BIUUcVF6U)b zW>QE~Jx)ahvKooaY`{X?gbHLIDpNhElz)ag%44W`PNtK8?cf>>S|FS7)Ug_eQjEI2 zb5H{xK`rFLIt-yw{{b?EIf~lAX;lAy9?rK=u39sh@W0KcN=Bf(m#L^DvF{XyGzcAT_9Y8c;_YT}DBvYC>h81r^Y< zsDWLm*X0$bz6Xbn%JB$lqT{H*`cU(oL;X$+IL|YPN*l>`%t!i1O%VkxScV!{<#d>h z+R=Pe${%#W|xd}DFZq&{XpoP82#|-eLiAOR>0gXpx#KHosLQTHrb4_|0zAj(d=# zn4_pn^rP0hfjZ*EDBISV=Aas?P?zX_EXF1*!;M&v`%tO9=9t8}6;jVbwb!G@Ka2{% z>$I;$1=@uQbSJVG6aAcm-rMu2onJ(*gZULTVY+oQutKb(UW){8+8w)5nTVtMpG0kF z0G0ZYtfrJtK<&H$m7!u}y{MT@L3dyQ>KCsGHJ~4L2``}nyzbN!IC#}lQ4?mNQk##p zI30Bd{HTnsL(TIN>N3B9%FH&*)%(APg5LixQ3Jn53;R%)Y7q6_CQZI+HY!s^s2x|J zCY+12a4~A3mr)z(M)iLab*Xou0^hGX>zjiV)bSfs#}lZ9zejbvf*LsJv?p`mdL1XC z+83ZU@F;5hN+elkHEP}$o%R@NBX40MzK5~R<9zYmNmGVp6np(vQOH_b6e=;L7L|DK z=rhC9+FU`ezu5}euAsZ6ygc@HnrDf%*5!-Xwbs49c2`HpYFxH(VYzw84o8CizaG^G zg26z$?XiOPDm!TV-S+K08twMKJ&X-czi-AWuiqPLu|1{MszAi=Q8;a`X1h34Vzs)$ z?iK|SZn2$UtfwM&u%kRypI#MPpFS^rx$ScYTJ1^J(iU&X@`hrE(hH)VfIHG^`@^Af zYmv`(g=}V8!wiw2%~YPVe8%x) zS14>n+B}Sp_hodf*>{h~Tokl#Kbljy uFZ?G*vm$SK-IAg6xBlG;#q;dg?EJw0<%Hq``LzitzFX(xiBGj$34a1SUH@bN delta 2576 zcmYM!e@s?Y9LMp)4-=4|@=HMBf{X}(L1UCC455F-Y-TlGGN}x<7?XnhgMRpgWVm`{ z(9ImSsI-C+;plmqQnRi8fi34|Y;^%)x^y!q3oDk*Eqj0PY_W&?I_KW=<9oj6+&i}Q zNUd*vb@(yE-@E*;<$okxwg3M%M;a4NwGvlg9p>N;fkMUT6vA7K#d>S>utEm1*k*=m6)&3NwVh}an zc}&O4xCZYm-}ez6z0o5Q_AhFnG^9NdnDcptuk1Z_G|f%s7=A3|kj6xHt>DsvOa z&&+dC25w>~sn2Tpn0bD|5=r>fV7m-~u zw{1O~1EJ^9sKc0udY-TRYrryYD5bT?&oppRU@uxbP#q4TR@8&a*vF`WhcOJtP%Hcz z705T3hd!MX<3Fbg%&{ipy6?emSOl~kiLxz*Np zBWp9y+WT#&40j^CVm?I1^O-LxC^cW9Uc+%)pF*u@2DO5#r~v-J{t#pSMg`JG`m~|} z)IvT*^_#F>w9jWzhxiK8)huB$^P31xo+8Rbl3P_sB!f!Dxi2&M$%E=mkpSx_kSA&Mc#ng(?h6Ce1r~;V>!;CIwmlB8J1!R zHlb2`95qe=mC>J30nFi3xPZz)EvsPhW*7RD!WIe}umkl4`wSK7Rm{XC)E*}hl?Ggg zyRZl~(P32P{HOp1?EUXinVCdo;1|rpE2#Dn>EvG@lyvf`fi`0y*5dN(XYY5Qz6)<4 zKl2V3wfh_$oWh6jFVqBuq=TY)0yX}ABzdM6wctS{1{2I6|4PLLZfL?^k!>?Kk!+bz z_Cxh_)S)TCe5}PHY{42lflBQh=He||PvM\n" "Language-Team: Omid Raha \n" @@ -18,18 +21,12 @@ msgstr "" msgid "%s %s documentation" msgstr "" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#, python-format -msgid "%B %d, %Y" -msgstr "" - -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1510 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1513 #, fuzzy, python-format msgid "see also %s" msgstr "همچنین ملاحظه نمائید %s" @@ -39,6 +36,12 @@ msgstr "همچنین ملاحظه نمائید %s" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "درونی سازی" @@ -47,24 +50,24 @@ msgstr "درونی سازی" msgid "Module level" msgstr "در سطح ماژول" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "فهرست کلی" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:309 msgid "index" msgstr "فهرست" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:369 msgid "next" msgstr "بعدی" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "قبلی" @@ -72,42 +75,39 @@ msgstr "قبلی" msgid " (in " msgstr "" -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr ":نویسنده این بخش" -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "نویسنده این ماژول:" -#: sphinx/directives/other.py:140 +#: sphinx/directives/other.py:142 #, fuzzy msgid "Code author: " msgstr "نویسنده این ماژول:" -#: sphinx/directives/other.py:142 +#: sphinx/directives/other.py:144 msgid "Author: " msgstr ":نویسنده" -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "همچنین ملاحظه نمائید" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "پارامترها" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "نوع برگشتی" @@ -136,61 +136,65 @@ msgstr "%s (C نوع)" msgid "%s (C variable)" msgstr "%s (C متغیر)" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 #, fuzzy msgid "function" msgstr "تابع" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 #, fuzzy msgid "member" msgstr "عضو" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" msgstr "" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 #, fuzzy msgid "variable" msgstr "متغیر" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "" + +#: sphinx/domains/cpp.py:1038 #, fuzzy, python-format msgid "%s (C++ class)" msgstr "%s (C++ کلاس در)" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, fuzzy, python-format msgid "%s (C++ type)" msgstr "%s (C++ نوع)" -#: sphinx/domains/cpp.py:938 +#: sphinx/domains/cpp.py:1081 #, fuzzy, python-format msgid "%s (C++ member)" msgstr "%s (C++ عضو)" -#: sphinx/domains/cpp.py:990 +#: sphinx/domains/cpp.py:1137 #, fuzzy, python-format msgid "%s (C++ function)" msgstr "%s (C++ تابع)" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "%s() (توابع درونی)" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s متد)" @@ -205,7 +209,7 @@ msgstr "%s() (کلاس در)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s مشخصه)" @@ -215,15 +219,11 @@ msgstr "%s (%s مشخصه)" msgid "Arguments" msgstr "پارامترها" -#: sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "" - -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "" @@ -236,58 +236,58 @@ msgstr "متغیر" msgid "Raises" msgstr "برانگیختن" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "%s() (در ماژول %s)" -#: sphinx/domains/python.py:258 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "%s (متغیر درونی)" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "%s (در ماژول %s)" -#: sphinx/domains/python.py:275 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "%s (کلاس درونی)" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "%s (کلاس در %s)" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s متد)" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s متد استاتیک)" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s متد استاتیک)" -#: sphinx/domains/python.py:341 +#: sphinx/domains/python.py:340 #, fuzzy, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s متد)" -#: sphinx/domains/python.py:344 +#: sphinx/domains/python.py:343 #, fuzzy, python-format msgid "%s() (%s class method)" msgstr "%s() (%s متد)" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s مشخصه)" @@ -306,50 +306,50 @@ msgstr "فهرست ماژول ها" msgid "modules" msgstr "ماژول ها" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "منسوخ شده" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "استثناء" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 msgid "class method" msgstr "" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "ماژول" -#: sphinx/domains/python.py:695 +#: sphinx/domains/python.py:696 #, fuzzy msgid " (deprecated)" msgstr " (منسوخ شده)" -#: sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:57 +#: sphinx/domains/rst.py:55 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 msgid "role" msgstr "" @@ -363,71 +363,98 @@ msgstr "%s متغیرهای عمومی؛" msgid "%scommand line option; %s" msgstr "%sگزینه خط فرمان; %s" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 #, fuzzy msgid "environment variable" msgstr "متغیرهای عمومی؛" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 #: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "فهرست" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "فهرست ماژول ها" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "صفحه جستجو" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr "" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "در دست انجام" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "" @@ -479,7 +506,7 @@ msgid "Note" msgstr "توجه" #: sphinx/locale/__init__.py:162 -msgid "See Also" +msgid "See also" msgstr "همچنین ملاحظه نمائید" #: sphinx/locale/__init__.py:163 @@ -525,26 +552,27 @@ msgstr "گذاره" msgid "built-in function" msgstr "توابع درونی" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "فهرست عناوین" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "جستجو" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "برو" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 #, fuzzy msgid "Enter search terms or a module, class or function name." msgstr "نام یک ماژول ، کلاس و یا تابع را وارد نمائید" -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "نمایش سورس" @@ -552,6 +580,19 @@ msgstr "نمایش سورس" msgid "Overview" msgstr "بررسی اجمالی" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +#, fuzzy +msgid "the documentation for" +msgstr "جستجو در این اسناد" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "ایندکس ها و جداول:" @@ -638,8 +679,8 @@ msgid "" "Created using Sphinx " "%(sphinx_version)s." msgstr "" -". Sphinx %(sphinx_version)s " -"ایجاد شده با" +". Sphinx %(sphinx_version)s ایجاد " +"شده با" #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -662,13 +703,13 @@ msgstr "موضوع بعدی" msgid "next chapter" msgstr "فصل بعدی" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 #, fuzzy msgid "" "From here you can search these documents. Enter your search\n" @@ -681,17 +722,21 @@ msgstr "" "گر امر جستجو را بطور خودکار برای تمامی کلمات دنبال خواهد کرد .صفحاتی که " "شامل کلمات کمتری هستند ، در لیست جستجو نمایش داده نخواهند شد." -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "جستجو" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "نتایج جستجو" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." -msgstr ".جستجوی شما نتیجه ایی در بر نداشت" +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -729,25 +774,43 @@ msgstr "C API تغییرات" msgid "Other changes" msgstr "دگر تغییرات" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "لینک ثابت به این سر مقاله" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "لینک ثابت به این تعریف" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "عدم نمایش نتایج یافت شده" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +#, fuzzy +msgid "Searching" +msgstr "جستجو" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "" @@ -755,25 +818,29 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "انتشار" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "" -#: sphinx/writers/latex.py:681 +#: sphinx/writers/latex.py:710 #, fuzzy msgid "Continued on next page" msgstr "فهرست کامل در یک صفحه" -#: sphinx/writers/text.py:437 -msgid "[image]" +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 +#, python-format +msgid "[image: %s]" msgstr "" +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 +msgid "[image]" +msgstr "" diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.js b/sphinx/locale/fi/LC_MESSAGES/sphinx.js index 1f1600377..718be998e 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "fi", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "Piilota l\u00f6ydetyt", "Permalink to this definition": "", "Expand sidebar": "", "Permalink to this headline": "", "Collapse sidebar": ""}}); \ No newline at end of file +Documentation.addTranslations({"locale": "fi", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "Piilota l\u00f6ydetyt", "Permalink to this definition": "", "Permalink to this headline": ""}}); \ No newline at end of file diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index 992d6dc2b4b3d2a370c6f0972b1b2e33d758b89d..600ed07d3edac9d830d15aab1b32c224957f9887 100644 GIT binary patch delta 3755 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 Im4=Y{58dG=kpKVy diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.po b/sphinx/locale/fi/LC_MESSAGES/sphinx.po index a59dbade1..2de0ca9d2 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 0.6\n" "Report-Msgid-Bugs-To: sphinx@awot.fi\n" -"POT-Creation-Date: 2011-09-21 10:06+0200\n" +"POT-Creation-Date: 2013-04-01 11:57+0200\n" "PO-Revision-Date: 2011-01-22 14:41+0100\n" "Last-Translator: Jukka Inkeri \n" "Language-Team: fi \n" @@ -22,18 +22,12 @@ msgstr "" msgid "%s %s documentation" msgstr "" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#, python-format -msgid "%B %d, %Y" -msgstr "%d.%m.%Y" - -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1510 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1513 #, fuzzy, python-format msgid "see also %s" msgstr "katso myös %s" @@ -43,6 +37,12 @@ msgstr "katso myös %s" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "%d.%m.%Y" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "" @@ -51,24 +51,24 @@ msgstr "" msgid "Module level" msgstr "Moduulitaso" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "%d.%m.%Y" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Yleinen sisällysluettelo" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:309 msgid "index" msgstr "hakemisto" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:369 msgid "next" msgstr ">" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "<" @@ -76,42 +76,39 @@ msgstr "<" msgid " (in " msgstr "" -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr "Luvun kirjoittaja: " -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "Moduulin kirjoittaja: " -#: sphinx/directives/other.py:140 +#: sphinx/directives/other.py:142 #, fuzzy msgid "Code author: " msgstr "Moduulin kirjoittaja: " -#: sphinx/directives/other.py:142 +#: sphinx/directives/other.py:144 msgid "Author: " msgstr "Tekijä: " -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "Katso myös" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "" @@ -140,59 +137,63 @@ msgstr "" msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 #, fuzzy msgid "function" msgstr "Varoitus" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 msgid "member" msgstr "" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" msgstr "" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 msgid "variable" msgstr "" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "" + +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "" -#: sphinx/domains/cpp.py:938 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "" -#: sphinx/domains/cpp.py:990 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "" @@ -207,7 +208,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -216,15 +217,11 @@ msgstr "" msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "" - -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "" @@ -236,58 +233,58 @@ msgstr "" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:258 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:275 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:341 +#: sphinx/domains/python.py:340 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:344 +#: sphinx/domains/python.py:343 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" msgstr "" @@ -306,49 +303,49 @@ msgstr "Moduuli sisällysluettelo" msgid "modules" msgstr "moduulit" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "Poistettu" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 msgid "class method" msgstr "" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "moduuli" -#: sphinx/domains/python.py:695 +#: sphinx/domains/python.py:696 msgid " (deprecated)" msgstr " (poistettu)" -#: sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:57 +#: sphinx/domains/rst.py:55 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 msgid "role" msgstr "" @@ -362,70 +359,97 @@ msgstr "" msgid "%scommand line option; %s" msgstr "" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 #: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "Sisällysluettelo" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "Moduuli sisällysluettelo" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Etsi sivu" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr "" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "Tehtävä vielä" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "" @@ -477,7 +501,7 @@ msgid "Note" msgstr "Muista" #: sphinx/locale/__init__.py:162 -msgid "See Also" +msgid "See also" msgstr "Katso myös" #: sphinx/locale/__init__.py:163 @@ -523,25 +547,26 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "Sisällysluettelo" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Etsi" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "Siirry" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." msgstr "Anna etsittävä termi tai moduuli, luokka tai funktio" -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "Näytä lähdekoodina" @@ -549,6 +574,18 @@ msgstr "Näytä lähdekoodina" msgid "Overview" msgstr "Yhteenveto" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +msgid "the documentation for" +msgstr "" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "" @@ -657,13 +694,13 @@ msgstr ">>" msgid "next chapter" msgstr ">>" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Javascript pitää olla sallittu, jotta etsintä toimii." -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -671,17 +708,21 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Anna hakusanat kokonaan, osasanoilla ei haeta." -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "etsi" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "Etsinnän tulos" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." -msgstr "Ei löytynyt ko. ehdoilla yhtään." +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -719,25 +760,43 @@ msgstr "" msgid "Other changes" msgstr "" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "Piilota löydetyt" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +#, fuzzy +msgid "Searching" +msgstr "etsi" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "" @@ -745,25 +804,28 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "" -#: sphinx/writers/latex.py:681 -#, fuzzy +#: sphinx/writers/latex.py:710 msgid "Continued on next page" msgstr "" -#: sphinx/writers/text.py:437 -msgid "[image]" +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 +#, python-format +msgid "[image: %s]" msgstr "" +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 +msgid "[image]" +msgstr "" diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.js b/sphinx/locale/fr/LC_MESSAGES/sphinx.js index 5d6fafbde..ed38a28d4 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "fr", "plural_expr": "(n > 1)", "messages": {"Hide Search Matches": "Cacher les r\u00e9sultats de la recherche", "Permalink to this definition": "Lien permanent vers cette d\u00e9finition", "Expand sidebar": "Agrandir le menu", "Permalink to this headline": "Lien permanent vers ce titre", "Collapse sidebar": "R\u00e9duire le menu"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "fr", "plural_expr": "(n > 1)", "messages": {"Hide Search Matches": "Cacher les r\u00e9sultats de la recherche", "Permalink to this definition": "Lien permanent vers cette d\u00e9finition", "Permalink to this headline": "Lien permanent vers ce titre"}}); \ No newline at end of file diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo index bc97170335816a71696c806560065907b5df6656..e0bcd45d9715b434a82e201843f16ed0dc06661f 100644 GIT binary patch delta 3552 zcmd7SYitx%7{>8aTv{j;Xv_UNg%(PHwI~Gw1+)TQK#JuiRD{WPXbaojva?HDFfK&V zQ2b!h5(Gp@1knO2DG-Aa4Ty?CUa482;+{@5z6#rLJ!OeUNNSTQ2uw3Vx32at8ZiBeuqbHqEv{J@166 z*aJJ_5Nwb6sQC(!`Qm0C4L+uvFLkKKcDM>P!7JYVdQ<}YFdaX`&UhX>;5F1ZAG2GS zjv7Apaw2Q1$r5^f(et9bO&!ADq4aM4vD)}eg^+{AozxD24L9O6V z?Bp#pC~&9eh*a6hX5Ba}t+#S3VtW07Y76>t&K*F>=w zu0jRehDu-;YJ!8gBzp~m?*K$@=|>h0=>+>e_)8VWcOwRZ)cb5Rp7 zLM6Bu6`&gR!}Ego{4Laq-tpY)xgRy|V^ktXP~(q#&l|Co-v94uXbUbk-7w}Rs$_{> zn(uc(ZApLBALu za6YnaChA?+pepnlDzTkNk<2kvfQzV=UPE3Oa}!mu4t!~z!Ppz~kwqID6|cGn_19r| zksEq#Hsf$SfPL@=j>c}BCMV3;v_5H7*u6v z_M-m8F!Q)E4ws=y`#$n9NBGhqx`Yb!3o1Yg%bA2-P-h^3y1x+lm?&Rku@?3G1Zv*1 zsJGw}&fyH)iqo*TF^4a0#WGYvtFZ-c!z`>vO>_(u=rpPl7f>a>h%D0FL~UVr%1P7s zk&h|hOY<*AJzs&^()b!0ns^K9CvrP#qP?g+I*B^97f_l1fGXV|s4enwAhb1^s6=y6 z<7eUsbWs7fqqg8f%*5l!R>aM98Y)fue$6YgP$ln=%FvH0{TL*sc@h<1DJqe*sETYx z?QK0O&_UF=Q<#TWQCm8M=sJXxFj?<^fQANyP?;`odcaRAs>GX6721jlxC52o9#rD{ zQ9rFmQT=99232G}s$bAEiW>h6s*)=)i}+@}_uwPcgojbD(K*zFKY7=`qE?X9zj>l8 z)XM#+m5)SK<_Yh92omcaXZGJwA1kvPeRvc#!AWG>Od}>? zi|pn@nT!h56}5G}QR8y58@eZ-Ymu5=7P7KjYe|+n&sPRLk}icBCv+V!4hT z36%Q%wb^M^)2t96)vh&V#^lLU6=N7?t-#VnOo`<54IMBW1(WDQ(>1l+3rBA+>QoHl}NPI@shC?$DByD zzxGVpeYNT76FSUtf`M?klVMFSEpx3hw{})~pLlUN5G!{=QP*!x4LY{#Fw-Jth(#Qx zvZIzA3|f`pNU>|#+;S_NV34c>r0)cx!D`DUkEV{*;n;vBiXG$uU7S!jR#IvO?5I-` zj+8mB-xLweook9pB6daTDAJ#sd{_hN9yoV;mG8*cr(Em@h7Uwa~> X;QzfP)B8S}(B}4*6gO<>7f$#K4yOid delta 2777 zcmYk-eN5F=9LMnkTu=y=Cy{3_Z~@1<3TP-M3g)cgEH;aXHr@5gz*N}o<)N1C)*srm z0b5t+bheb7lhLAado%_%Y8gXo<}!5IVu2%mGZ(9TORU8B?$e z7hx}Iy+LHXfEl6j5CfO&4HLMK{tRk?`*u8zo0LEXCgUX&*FUa;Cg&Ped3!w8hp$kU-R$+YT`xI!Z%SFC$l{z=t3>D0abw~Pyu$}R@{v- z_%TvEGmJ{;Yg~;}s3XkgJOZ>$J`F8UrUQzgq^N}}iArqqG^zqSF%mm$|0Q(L??TOg z6SeS3)CPL3pP=Sn#$234g>ocPf2w6tI4BL|BGosgsPRhF4r-8(dB*meP=S4@1Upd` zIe-e>jhc4`^-vF>DmRWB@fK?1#YxoPMWZ4qoZ)s~Z40o0KkL?za3`zP%6Uewdw zXRi;V79K;Dd;;05`3sd`3}ujuQ0t`yXpoF?p-Nbe3S5Oz_&92(TTqGAVjIi(+S5XUhqY^%X`kgpw$45|!e;GDl#_hm&s0r6m2~46AyJfH6Lk0W?RbmGRt$s49 z#963uH>&jOP|s97YQ1Ju;C-mqxNWY_`FGP$Nsgj+d>XZ*e$>QI@qONkVN^n`OTz9) z?eq|8hdro-2Cbjj>tCP}97Bq1ZlDtT9pm->&(cu9cyg|{Cn{hMGS|F? zdXGOs{Sy9wOK}nJ*rT`tAHhAS*Y31+2o?C6_2&%U|Hl}(&46~ef-DrE8db^$aQEVXFv=8h&*5B z4mNP+QABal-_9%@NdSpqdN30Eu>jvgt#cI>=mzT9m_k+bHnOCNpiDZl9CTt?fQCxB z4Hcl>-f#eQhR0D0pF{nk4WJe}k2;cTsE2e4mH4ly%FQAlGv66L^JS<+SE1%N;A#wX z(opFK(1o9)j$j&9ky+GE639}ePDLe_g9_wE?YJB@uL`x^bEqTPgF32%sAuU6Y9m8o z1Li9lns5bGnqTY<_fdhPc!X7fSX96SR3ho<#$0>-DLY<=x^FwGB2B2B@3-TLLGuA&)89zWR7{@uOgbAqeOw@b*FlxtZP?g+@Md(4^P;&?! z_zr6RIb6<~CPYI4uc02QpHP8*LmkasbYOHr=zQGu$k5pZ716=FN&eu4q0O0lDQ zufH|8Go>bY*_E@<*XVEG+vZ\n" "Language-Team: French Translation Team \n" @@ -25,18 +25,12 @@ msgstr "" msgid "%s %s documentation" msgstr "%s %s documentation" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#, python-format -msgid "%B %d, %Y" -msgstr "%d %B %Y" - -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1510 #, python-format msgid "see %s" msgstr "voir %s" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1513 #, python-format msgid "see also %s" msgstr "voir aussi %s" @@ -46,6 +40,12 @@ msgstr "voir aussi %s" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "%d %B %Y" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "Fonctions de base" @@ -54,24 +54,24 @@ msgstr "Fonctions de base" msgid "Module level" msgstr "Module" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "%d %b %Y" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Index général" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:309 msgid "index" msgstr "index" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:369 msgid "next" msgstr "suivant" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "précédent" @@ -79,42 +79,39 @@ msgstr "précédent" msgid " (in " msgstr "(dans" -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr "Auteur de la section : " -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "Auteur du module : " -#: sphinx/directives/other.py:140 +#: sphinx/directives/other.py:142 #, fuzzy msgid "Code author: " msgstr "Auteur du module : " -#: sphinx/directives/other.py:142 +#: sphinx/directives/other.py:144 msgid "Author: " msgstr "Auteur : " -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "Voir aussi" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "Paramètres" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "Retourne" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "Type retourné" @@ -143,59 +140,63 @@ msgstr "%s (type C)" msgid "%s (C variable)" msgstr "%s (variable C)" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 msgid "function" msgstr "fonction" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 msgid "member" msgstr "membre" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" msgstr "" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "type" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 #, fuzzy msgid "variable" msgstr "Variable" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "Lance" + +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "%s (classe C++)" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "%s (type C++)" -#: sphinx/domains/cpp.py:938 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "%s (membre C++)" -#: sphinx/domains/cpp.py:990 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "%s (fonction C++)" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "classe" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "%s() (fonction de base)" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "%s() (méthode %s)" @@ -210,7 +211,7 @@ msgstr "%s() (classe)" msgid "%s (global variable or constant)" msgstr "%s (variable globale ou constante)" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "%s (attribut %s)" @@ -220,15 +221,11 @@ msgstr "%s (attribut %s)" msgid "Arguments" msgstr "Paramètres" -#: sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "Lance" - -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "données" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "attribut" @@ -241,58 +238,58 @@ msgstr "Variable" msgid "Raises" msgstr "Lève" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "%s() (dans le module %s)" -#: sphinx/domains/python.py:258 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "%s (variable de base)" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "%s (dans le module %s)" -#: sphinx/domains/python.py:275 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "%s (classe de base)" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "%s (classe dans %s)" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (méthode %s.%s)" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (méthode statique %s.%s)" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "%s() (méthode statique %s)" -#: sphinx/domains/python.py:341 +#: sphinx/domains/python.py:340 #, fuzzy, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (méthode de classe %s.%s)" -#: sphinx/domains/python.py:344 +#: sphinx/domains/python.py:343 #, fuzzy, python-format msgid "%s() (%s class method)" msgstr "%s() (méthode de classe %s)" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (attribut %s.%s)" @@ -310,49 +307,49 @@ msgstr "Index des modules Python" msgid "modules" msgstr "modules" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "Obsolète" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "exception" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "méthode" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 msgid "class method" msgstr "méthode de classe" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "méthode statique" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "module" -#: sphinx/domains/python.py:695 +#: sphinx/domains/python.py:696 msgid " (deprecated)" msgstr " (obsolète)" -#: sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:57 +#: sphinx/domains/rst.py:55 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 msgid "role" msgstr "" @@ -366,70 +363,97 @@ msgstr "variable d'environnement; %s" msgid "%scommand line option; %s" msgstr "%soption de ligne de commande; %s" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "terme du glossaire" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "élément de grammaire" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "étiquette de référence" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "variable d'environnement" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "option du programme" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 #: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "Index" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "Index du module" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Page de recherche" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr "" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr "alias de :class:`%s`" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "À faire" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(L'<> se trouve dans %s, à la ligne %d.)" -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "entrée orginale" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "" @@ -480,7 +504,7 @@ msgid "Note" msgstr "Note" #: sphinx/locale/__init__.py:162 -msgid "See Also" +msgid "See also" msgstr "Voir aussi" #: sphinx/locale/__init__.py:163 @@ -526,25 +550,26 @@ msgstr "état" msgid "built-in function" msgstr "fonction de base" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "Table des matières" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Recherche" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "Go" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." msgstr "Saisissez un mot clef ou un nom de module, classe ou fonction." -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "Montrer la source" @@ -552,6 +577,19 @@ msgstr "Montrer la source" msgid "Overview" msgstr "Résumé" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +#, fuzzy, python-format +msgid "the documentation for" +msgstr "documentation" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "Indices et tables :" @@ -662,13 +700,13 @@ msgstr "Sujet suivant" msgid "next chapter" msgstr "Chapitre suivant" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Activez le JavaScript pour que la recherche fonctionne." -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -683,17 +721,21 @@ msgstr "" " contenant moins de mots n'apparaîtront pas dans la liste des " "résultats." -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "rechercher" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "Résultats de la recherche" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." -msgstr "Votre recherche n'a retourné aucun résultat" +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -731,25 +773,43 @@ msgstr "Modifications de l'API C" msgid "Other changes" msgstr "Autres modifications" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "Lien permanent vers ce titre" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "Lien permanent vers cette définition" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "Cacher les résultats de la recherche" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +#, fuzzy +msgid "Searching" +msgstr "rechercher" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "Agrandir le menu" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "Réduire le menu" @@ -757,24 +817,28 @@ msgstr "Réduire le menu" msgid "Contents" msgstr "Contenu" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "Version" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "Notes de bas de page" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "Suite de la page précédente" -#: sphinx/writers/latex.py:681 +#: sphinx/writers/latex.py:710 msgid "Continued on next page" msgstr "Suite sur la page suivante" -#: sphinx/writers/text.py:437 +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 +#, fuzzy, python-format +msgid "[image: %s]" +msgstr "[image : %s]" + +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[image]" - diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.js b/sphinx/locale/he/LC_MESSAGES/sphinx.js index fc46bc671..caf3e5769 100644 --- a/sphinx/locale/he/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/he/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "he", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "\u05d4\u05e1\u05ea\u05e8 \u05ea\u05d5\u05e6\u05d0\u05d5\u05ea \u05d7\u05d9\u05e4\u05d5\u05e9", "Permalink to this definition": "\u05e7\u05d9\u05e9\u05d5\u05e8 \u05e7\u05d1\u05d5\u05e2 \u05dc\u05d4\u05d2\u05d3\u05e8\u05d4 \u05d6\u05d5", "Expand sidebar": "\u05d4\u05e8\u05d7\u05d1 \u05e1\u05e8\u05d2\u05dc \u05e6\u05d3", "Permalink to this headline": "\u05e7\u05d9\u05e9\u05d5\u05e8 \u05e7\u05d1\u05d5\u05e2 \u05dc\u05db\u05d5\u05ea\u05e8\u05ea \u05d6\u05d5", "Collapse sidebar": "\u05db\u05d5\u05d5\u05e5 \u05e1\u05e8\u05d2\u05dc \u05e6\u05d3"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "he", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "\u05d4\u05e1\u05ea\u05e8 \u05ea\u05d5\u05e6\u05d0\u05d5\u05ea \u05d7\u05d9\u05e4\u05d5\u05e9", "Permalink to this definition": "\u05e7\u05d9\u05e9\u05d5\u05e8 \u05e7\u05d1\u05d5\u05e2 \u05dc\u05d4\u05d2\u05d3\u05e8\u05d4 \u05d6\u05d5", "Permalink to this headline": "\u05e7\u05d9\u05e9\u05d5\u05e8 \u05e7\u05d1\u05d5\u05e2 \u05dc\u05db\u05d5\u05ea\u05e8\u05ea \u05d6\u05d5"}}); \ No newline at end of file diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.mo b/sphinx/locale/he/LC_MESSAGES/sphinx.mo index d092cae7fc09616d547f6d09193546a2f67fe73b..bc7453979d75e490726b6a1b07048d9feabc6156 100644 GIT binary patch delta 3673 zcmd7Sd2EzL7{~EhTLB9#&{7WD+P9^ZmSbrVDAo#r2%;P!RROV(&F)LLVc9Kv^oYks zJRl?jx)4!J3=#wlAZERZA`*dwLqKCa03$(2FqKG*SK{&g(IFo3FB21+?S9^Q-m|irCFdK)Wx{Sk89FJF_&$`$?PhcMR z@5R2j8vEf!?2WG>^CrzcE;R9n$j5ximpXJ}4*r6gpclP${~A<(FDgJC_QzS+2OCl2 z+R(w}sPS7-^S^~kcpvsBzB$T;2A;zK_#+O&K15M~p?Ecp$ALHx>0+Yxc@ot>g=29$ z7ULNljhSSlz}KTHHyNvN8Ws@W+{Z;eu196I!}$Ah+=MH!ge3-IgaZ8IcnwSP$m8eHE#y1%)l&EC2~;DlX+Yyfg;p|<+u{Zq6Y3kO?&{= z?<4C8RNym64AY54cm)SR6FaCxhN8yTp|*M|s!}tN3M9>ZE|gIlYT*5-374Z@w`c7A zS5X0XqxSHC^<&h;XHW^AM+LZu`hoh*J}>3n)`BXmBQMGRkL5xGZ$u?B88yMJmpT|T z2Nie$YAYITy9HITq`kiewKdNoFOJ!Tn(rVg@KMz7M2BsEi#_%J|Hy?_p2>2xvK-XF zLR8=qe2~{{C@QgS%%Xm8qQ>n__d{Qq=SNkppWUL*_Ia?fqS-{s-;zPmyYyPE^25%Atzoql0Cr1SX^ApHsm8YXyF8 zXy6jmz=x5dn02Ut+ffPZN9H!4BgHV^qZ04UNz(H|9EMdm1@FO;xCtlYhp51VIH{^k zc@g!m<6;;$hF}mi@fuWOFQ6)rw(Y$*gZ5$6))ZXRRe>^8BBM~_C*Tb@7x@V>Yf%f_ zf_%(7d};j2Bo|uIS=35B#dc!UFIgFCMI&)8&bRkpK~1c0@RfEenqJ%AdQLdDyJEI4VlaiM_wtS3;1<|1k(p21xXL6v?6D!>NRVR{M6aF4xz z*7`GQg*iOb!tzlGmZB=|#S-G1Te#p{n8m2yffcCC*Pt@rfXaL)YKz`Qote*&V_*i5 zrS^CXD!^1!|2t3>3ZUMS`%nq3v_6hm#5e1?P==dy19zg{f?c>0583B)uI&mCKqcCY z8rOyz_XsNCHCTh2QHS^>s#51r3;hYzzdt8FsR>HB&;u`K;xyF2S*WeK8@2Lgdw(Tr zi`Jr6w#oW3YQEj5fQM}R6tbJ0UG2jVGev%a0~SqR~jJ8*rlTA~))W{qEm;%ye7- z^e`37yLrr_rf^d%=mv&6iz10|Ksh!08r_OmrL)8r_Xm|oJm}hFoTUjj+U`wl$s3hA zop)QGIc~@wS>l#BcLbYaPE#yZ)vq`ii1-sr+;BYRb!LTJU(98u#mtb1x=iJZJHAlJ zX^lh!F~`TPShE`nk+q-nU4J~(?)b>#Qpfg4Vn~Z(hj>62HylYc1|7dI?lwlEO>WF< z<`XT}VCFYQea*pI(r@T)8|j9AgFHQbvAC0H4lp8+N|cwS*XKt)+1HJz8a<+_+NrLt z9aEDYFrY2-ANFHa!9`E{SWz-FcUIK>`L6Xgw_-vN9A5aIv; delta 3081 zcmb`}`%l$%9LMp`5kwU5%0)=xc({l+;8epaCYraLp+=K3bEpKE0&)(F864ee_&LbmF#bw=tM}i}OZ|+Ar`v=H*p9m85PI+!_Qh`NSN8h%IE3+^ za1j23i8v_Em;soBtQ#$^o!1H$eWz_w9Pyvo&GM>eO=%D7^ zKsVk+%^ylMnr0L#;X+I%zL`ox6Bl6$R$(f>fC|u#X?P5W;sxZ_T;oI6e@5LOMOKBF zju}{r51=0l@G#zkmoW){$G*fj@uaJak}($DI0Z-Aeid@BS%ZBrfLdS+D!^`g{Ss;; z-=Y$}g<3D3a;ic}s5oP=1Pd_`Lt`@y9*=24Ww;Z^;Yrl9zKN`5Zle}(DT<47q85&) zzDh6?RS_@t!Wp(d8>8tziJD)ITKAbj)L%PU!$5dPs0DW8aC{4iX+A@h{JQP`f_j!_ zaAZ6lwSiRRlF73DLR8>lRDv^66)8o&`8WdFY5j>JH8YZCs0X)UsK0NI&MNOun!gRO;iH!qMq5u zsGWDCDs}}G_;1ua)s?2{hk9EwP~+oK0jHrJ#oUMi^EeGHT#3qfHR_9{!H(}lWxmJy zy7egP{tzmG)2PJG+Upll0Y68T`WxH7iK_H(;c=dS3`baxAPIHYyr>0>QGsWo-tT#~ zUx}(n4QglWP&?X)n%9B~yaPAzmUN;L^H2`mmyeoPgdV;Bv+Tf1s~=U7^{7lYq8>#n zs(zCq)7g=m^g)cQrJw`u_&z{X7#NKQa3)^D zd`#uJ%)mJ~8DGH>*o9i?S5zVioJ8#`1=Syc^U#aoQ;yp4i>Sb_qUP@#M*SzzIKu$1 zxcLLMqc~oLd(nehpcu)?JdD~|1b2W&IlU2zv1@>+HriK*1!MH@e`mPC4p4!Pp%Qu9_Rpc0ezzTuVjH?X5Ose#DzRJ~hefDE*nrx3 z06A8s8N=&iczul%-<+cnjn`2VZ=gzi8@0n&>Z)-Ms?=jpJD6mhgIaJAD&PvFIA$#> zU>mB!`>k)-@e>$OiQlmoK140tW&4*=&;BZ^bU&gN?3EKKX#y&tbkyM+W5>%-8>&Lx zzZ&(rHKI1sjGEVx!+(@CaD)K`K8c$69%|zGoKRX^MpS5S|0Y+-^!kc&f5i%SgRi=# z(mlD{T~%N4bdjgZ@2{JfpYN-ys;+6wtE*jJTbox~UzzWj@@RNya(?*~cXn>%`qH%( z^}g!bnvuS|kTc-fsNk|8zF>ah)Zo#?QPIV#e6_*u#L{3__Pzbv7uthwRca zHbe)HXKr%&f>(2g1ovi*52j=n#, 2011. @@ -7,34 +7,27 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 1.1pre/9523af9ba9aa+\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2011-09-21 10:06+0200\n" +"POT-Creation-Date: 2013-04-01 11:57+0200\n" "PO-Revision-Date: 2013-02-18 17:56+0200\n" "Last-Translator: alonisser \n" "Language-Team: \n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 0.9.6\n" -"X-Generator: Poedit 1.5.5\n" -"Language: hebrew\n" #: sphinx/config.py:81 #, python-format msgid "%s %s documentation" msgstr "תיעוד %s %s" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#, python-format -msgid "%B %d, %Y" -msgstr "" - -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1510 #, python-format msgid "see %s" msgstr "ראה %s" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1513 #, python-format msgid "see also %s" msgstr "ראה גם %s" @@ -44,6 +37,12 @@ msgstr "ראה גם %s" msgid "Python Enhancement Proposals; PEP %s" msgstr "" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "" @@ -52,24 +51,24 @@ msgstr "" msgid "Module level" msgstr "רמת המודול" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:309 msgid "index" msgstr "אינדקס" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:369 msgid "next" msgstr "הבא" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "הקודם" @@ -77,41 +76,38 @@ msgstr "הקודם" msgid " (in " msgstr "(בתוך" -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr "מחבר הקטע:" -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "מחבר המודול:" -#: sphinx/directives/other.py:140 +#: sphinx/directives/other.py:142 msgid "Code author: " msgstr "מחבר הקוד:" -#: sphinx/directives/other.py:142 +#: sphinx/directives/other.py:144 msgid "Author: " msgstr "מחבר:" -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "ראה גם" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "פרמטרים" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "" @@ -140,58 +136,62 @@ msgstr "" msgid "%s (C variable)" msgstr "" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 msgid "function" msgstr "פונקציה" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 msgid "member" msgstr "" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" msgstr "מאקרו" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 msgid "variable" msgstr "משתנה" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "" + +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "%s (מחלקת C++)" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "" -#: sphinx/domains/cpp.py:938 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "" -#: sphinx/domains/cpp.py:990 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "%s (פונקציית C++)" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "מחלקה" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "" @@ -206,7 +206,7 @@ msgstr "" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "" @@ -215,15 +215,11 @@ msgstr "" msgid "Arguments" msgstr "" -#: sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "" - -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "" @@ -235,58 +231,58 @@ msgstr "משתנים" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "" -#: sphinx/domains/python.py:258 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "" -#: sphinx/domains/python.py:275 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" msgstr "" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" msgstr "" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "" -#: sphinx/domains/python.py:341 +#: sphinx/domains/python.py:340 #, python-format msgid "%s() (%s.%s class method)" msgstr "" -#: sphinx/domains/python.py:344 +#: sphinx/domains/python.py:343 #, python-format msgid "%s() (%s class method)" msgstr "" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" msgstr "" @@ -304,49 +300,49 @@ msgstr "" msgid "modules" msgstr "" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 msgid "class method" msgstr "" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "מודול" -#: sphinx/domains/python.py:695 +#: sphinx/domains/python.py:696 msgid " (deprecated)" msgstr "" -#: sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:57 +#: sphinx/domains/rst.py:55 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 msgid "role" msgstr "" @@ -360,70 +356,97 @@ msgstr "משתנה סביבה; %s" msgid "%scommand line option; %s" msgstr "%sאופציית שורת הפקודה ; %s" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "משתנה סביבה" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 #: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "אינדקס" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "מודול אינדקס" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "דף חיפוש" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr "" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "[מקור]" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "לעשות" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(ה <<הרשומה המקורית>> ממוקמת ב %s, שורה %d.)" -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "הטקסט המקורי" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "[מקור]" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "[תיעוד]" @@ -474,8 +497,8 @@ msgid "Note" msgstr "הערה" #: sphinx/locale/__init__.py:162 -msgid "See Also" -msgstr "ראו גם" +msgid "See also" +msgstr "ראה גם" #: sphinx/locale/__init__.py:163 msgid "Tip" @@ -520,25 +543,26 @@ msgstr "" msgid "built-in function" msgstr "" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "תוכן עניינים" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "חיפוש" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "לך" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." msgstr "הכנס מושגים לחיפוש או שם מודול, מחלקה או פונקציה." -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "הצג מקור" @@ -546,6 +570,19 @@ msgstr "הצג מקור" msgid "Overview" msgstr "סקירה כללית" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +#, fuzzy, python-format +msgid "the documentation for" +msgstr "תיעוד" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "" @@ -627,12 +664,13 @@ msgid "Last updated on %(last_updated)s." msgstr "עודכן לאחרונה ב %(last_updated)s." #: sphinx/themes/basic/layout.html:198 -#, python-format +#, fuzzy, python-format msgid "" -"Created using Sphinx " +"Created using Sphinx " "%(sphinx_version)s." msgstr "" -"נוצר ע\"י Sphinx %(sphinx_version)s." +"נוצר ע\"י Sphinx " +"%(sphinx_version)s." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -655,7 +693,7 @@ msgstr "נושא הבא" msgid "next chapter" msgstr "פרק הבא" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." @@ -663,7 +701,7 @@ msgstr "" "אנא הפעל ג'אואסקריפט ע\"מ לאפשר את\n" " החיפוש." -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -671,17 +709,21 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "חיפוש" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "תוצאות החיפוש" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." -msgstr "החיפוש שלך לא הניב כל תוצאה" +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -719,25 +761,43 @@ msgstr "" msgid "Other changes" msgstr "שינויים אחרים" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "קישור קבוע לכותרת זו" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "קישור קבוע להגדרה זו" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "הסתר תוצאות חיפוש" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +#, fuzzy +msgid "Searching" +msgstr "חיפוש" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "הרחב סרגל צד" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "כווץ סרגל צד" @@ -745,23 +805,28 @@ msgstr "כווץ סרגל צד" msgid "Contents" msgstr "תוכן" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "מהדורה" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "הערות שוליים" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "המשך מעמוד קודם" -#: sphinx/writers/latex.py:681 +#: sphinx/writers/latex.py:710 msgid "Continued on next page" msgstr "המשך בעמוד הבא" -#: sphinx/writers/text.py:437 +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 +#, fuzzy, python-format +msgid "[image: %s]" +msgstr "[תמונה: %s]" + +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[תמונה]" diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.js b/sphinx/locale/hr/LC_MESSAGES/sphinx.js index d4284716f..2141234b8 100644 --- a/sphinx/locale/hr/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/hr/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "hr", "plural_expr": "0", "messages": {"Hide Search Matches": "Sakrij rezultate pretrage", "Permalink to this definition": "Link na tu definiciju", "Expand sidebar": "", "Permalink to this headline": "Link na taj naslov", "Collapse sidebar": ""}}); \ No newline at end of file +Documentation.addTranslations({"locale": "hr", "plural_expr": "0", "messages": {"Hide Search Matches": "Sakrij rezultate pretrage", "Permalink to this definition": "Link na tu definiciju", "Permalink to this headline": "Link na taj naslov"}}); \ No newline at end of file diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo index 31dbb290f3331426c9fcde51136228014a119a82..dbb54d3ce408d8bed931f771410b9192cec33356 100644 GIT binary patch delta 3493 zcmd7SYiv|S7{>8g+6qOmH$cj*r$V_1)N(1r+Mq2GNhlR8mmn0gb`R}_?QYpiOBLA& zm`DXg3Mhn_h(gqWAr>rx8bAmN35Fmb6#-FVKnMnm6+ZcY+A%18Gk&l+-QPKLX5M+{ zo!NbT!k3fc=h73`8UD8N--rK_Bt6~vTh!T@E zzr{4Xj@{66uQ4gu1Bn|q1G!P)QOISA_)v$*cpsLd0t9UPVpRWCs0lV<58Q#Nco;SA z8+7m|)c8)!#;xgvN_ZfqGQY{==6)KAPyuIQFRaF%_%d>txA@Te4=@uC;21oMS(rgq znqU;FLXTn|PQcz+i`{VzDuH*g6Z4x7xfzFh)quB=%OtRjj+llTn2DqDA=FBJs6=C^ zajQ|4*npZ~2TsO4cn@}>tn7kGK_%1+<72rQ!;LZyB7IF16<{eEk1;DzfmboB65E2R zL=$$v!}j?ICh~j^HU0-w+-s->+_WaM9~z&PM*Xw78AXHUnvPV{xb``0pO>IAe-*jR zM*F-CHDNOF!g&FHLeJC>L;Scm80hIV<9e#bECc3g;d8JN3Gx@YQWD( z(xw$v(qy73a0Vt|FH{Bkp(gH+iZc`&un^V%Fe=_LRKFH${317+@CtI7n|$=ePSj5m z4n!r8hYC=P+S5{0g{Gla?nNcC7~9ScD&9)ew`j9%-;0{>5VB=)bFBTwoJ9q`g39n0 z)C9kyerS?7fqFj}wW3^WzO@iFZagZHNvQEt?E7-m#6Hv(RJT2||BJX$$zHNA)}yv$ z3+hnrM+H2Nn)npz`~MwkrLCyL=ix_0{Zeo(-2Mjl|XOge3_y4c^qnGrPkS~Q(lEyNCY)*8EWg+qE@^WHEtJbYYt$XB+Y4V zH1ImAqmH%%DX8{5)C5JSL`!V@4CFGEd??{1sI#*k31xPoR(=e%fU~HxavdMTF1^|R zA>2%+-a1@$s0u8_JY0@kW)B|PQGHNTXqkcJmv+whXt_dfi&cX~-B6D#xE<`P8 zJ5p@(Ss&`JLvfl02QQ#j;$ayj*d6u$SyTn)qXO3AAY6@_Xg8{I`%o473iZo*2K#Z_ z!iOfjg&Y@?p4A?ANSqr59En;{iM0$B@M+`=VEjmKM*X#dO{fI6qxSkFYHu&0#@#?w z)Z?@#-W7EgdZPM2h+0^@z&4CWt)vV!;cV1O7TD+KQCsjD7T`OmN}Wdqyom!aA-lbO zFe+XlDzV2=6`YD}znOzvaZ|^qR<;3Efsd@8qE6{S)W9>S1b)OqY(E|(x(ySV-!yTffxA(q{Tv(cYt(>e`nQ*I9%@Bl>vO0QE}>O+O4-)K4WJfLcK=>d=fwO*F^qqE30xx(HQ)2J1%D z1n(n7GR>%O%^B-?R3eu!t`}Er!wu9#w@`cAA*a1#4^(?!)ZrS4Ntlo7_lRwO61BH; zQ3=&!A}&WwxC-@qv(7$m&!L-2zLSOoJe1SalKgRpw88$MlM``jb0R~`Fo%c66`7?? z7rI~4^eLqpZ>2jpGQ_F& zMk}h6NVLke$v6vQZn!?Tac26+#x>~^QfIn>icqzi?M$okM;w2o@l<+N+!v~dRlC7x zB-fb|aJ>Au7ryT|f7ag%{$K9Jq^#n? lvbGI({@s?W$SP<&o;BnDy(MMNNKco*ojvh2Ez8dE`~lLO{)qqp delta 2696 zcmZwIduY{V7{Kv&x>L@Y&28@Dyqqm>d1I5MdC8nqW@AG-C@&yn zghw&5KaxR)C}hJTn<=JAre*Yp)pRT}w2OhQEX1_$*S*j`$=Uh*-rwbU-sgGW-|@2< zTklD?=VxyT{CktXe*9g@cJ$xB(>WpB%oJe~;WZA5Ik6oL_#yVi6Ig=h(GFzs<@H`ziWN8(C*eR$VI^j;3=d-; z>_8JH?6 z8h9dFKuxq3y?+^&<4fosXtw`!CA7p72hs6KbmnK!wL2fjm(hd?PCBukXeUb0gyraS z1W)1h3C8mY`e}k(bV5bg zA4i~pr=y8xqlp{PrCE*^ybA45dMyVg+>So@HX86L=iAYQ=h4<*j9xIPndn}b+n4@xEzIXcHNJpWum{N<4xxLX4U>2l zoq2++GqDuCz6h`=JkvMkg>i zj;EoO)S?ON&`MUuv2k32EjR(+LF4>@gRm3rT*<($I3v*srK>q`0ySubGo!Q7O*c1Q zZ$uL`p_Oh#6YPxF_eGDO&z(dI`Z4+!8b2r5WghZ&r9&|XPM{wS!J+7l5191FL(Wp=x%fZEpfarjt`>okD^O)((~jGXXAxm(9Q7&8n8RRI^LLrp6`#m z0AVCLk!ff}wP?bp(BFpzar`{G8DB>KZ^>XtCX-X^Qw^yJ$-$|R9McXKVQE&& z4MhvHa;rvFjvqCqDp^%Ip>k~Vs^aXH4P|o@nLm?@Gw+wzWU4F1XXaPb|6h#fZXJ`= K^1-0|tbYNanF#R! diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.po b/sphinx/locale/hr/LC_MESSAGES/sphinx.po index e063212d8..7f3969661 100644 --- a/sphinx/locale/hr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hr/LC_MESSAGES/sphinx.po @@ -1,9 +1,13 @@ +# Croatian translations for Sphinx. +# Copyright (C) 2011 ORGANIZATION +# This file is distributed under the same license as the Sphinx project. +# msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2011-09-21 10:06+0200\n" +"POT-Creation-Date: 2013-04-01 11:57+0200\n" "PO-Revision-Date: 2011-01-22 14:41+0100\n" "Last-Translator: Bojan Mihelač \n" "Language-Team: Bojan Mihelač \n" @@ -18,18 +22,12 @@ msgstr "" msgid "%s %s documentation" msgstr "" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#, python-format -msgid "%B %d, %Y" -msgstr "%d %B, %Y" - -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1510 #, fuzzy, python-format msgid "see %s" msgstr "pogledaj %s" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1513 #, fuzzy, python-format msgid "see also %s" msgstr "pogledaj i %s" @@ -39,6 +37,12 @@ msgstr "pogledaj i %s" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "%d %B, %Y" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "Ugrađeni dijelovi" @@ -47,24 +51,24 @@ msgstr "Ugrađeni dijelovi" msgid "Module level" msgstr "Nivo modula" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Opceniti abecedni indeks" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:309 msgid "index" msgstr "abecedni indeks" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:369 msgid "next" msgstr "naprijed" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "nazad" @@ -72,42 +76,39 @@ msgstr "nazad" msgid " (in " msgstr " (u " -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr "Autor sekcije: " -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "Autor modula: " -#: sphinx/directives/other.py:140 +#: sphinx/directives/other.py:142 #, fuzzy msgid "Code author: " msgstr "Autor modula: " -#: sphinx/directives/other.py:142 +#: sphinx/directives/other.py:144 msgid "Author: " msgstr "Autor:" -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "Pogledaj i" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "Vraća" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "Vraća tip" @@ -136,59 +137,63 @@ msgstr "%s (C tip)" msgid "%s (C variable)" msgstr "%s (C varijabla)" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 msgid "member" msgstr "član" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" msgstr "" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "tip" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 #, fuzzy msgid "variable" msgstr "Varijabla" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "" + +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ razred)" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ tip)" -#: sphinx/domains/cpp.py:938 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ član)" -#: sphinx/domains/cpp.py:990 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ funkcija)" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "razred" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "%s() (ugrađene funkcije)" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" @@ -203,7 +208,7 @@ msgstr "%s() (razred)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atribut)" @@ -213,15 +218,11 @@ msgstr "%s (%s atribut)" msgid "Arguments" msgstr "Parametri" -#: sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "" - -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "atribut" @@ -234,58 +235,58 @@ msgstr "Varijabla" msgid "Raises" msgstr "Podiže" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "%s() (u modulu %s)" -#: sphinx/domains/python.py:258 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "%s (ugrađene variable)" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "%s (u modulu %s)" -#: sphinx/domains/python.py:275 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "%s (ugrađen razred)" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "%s (razred u %s)" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metoda)" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statična metoda)" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statična metoda)" -#: sphinx/domains/python.py:341 +#: sphinx/domains/python.py:340 #, fuzzy, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s metoda)" -#: sphinx/domains/python.py:344 +#: sphinx/domains/python.py:343 #, fuzzy, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metoda)" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s atribut)" @@ -304,49 +305,49 @@ msgstr "Popis modula" msgid "modules" msgstr "Moduli" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "Zastarjelo" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "izuzetak" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 msgid "class method" msgstr "" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "statična metoda" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "modul" -#: sphinx/domains/python.py:695 +#: sphinx/domains/python.py:696 msgid " (deprecated)" msgstr " (zastarjelo)" -#: sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:57 +#: sphinx/domains/rst.py:55 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 msgid "role" msgstr "" @@ -360,70 +361,97 @@ msgstr "varijabla okruženja; %s" msgid "%scommand line option; %s" msgstr "%scommand line parameter; %s" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "varijabla okruženja" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 #: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "Abecedni popis" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "Popis modula" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Tražilica" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr " Osnove: %s" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr "nadimak za :class:`%s`" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, fuzzy, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "(Originalan unos se nalazi u %s, u retku %d.)" +msgstr "(<> se nalazi u %s, u retku %d.)" -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "" @@ -475,7 +503,7 @@ msgid "Note" msgstr "Napomena" #: sphinx/locale/__init__.py:162 -msgid "See Also" +msgid "See also" msgstr "Pogledaj i" #: sphinx/locale/__init__.py:163 @@ -521,25 +549,26 @@ msgstr "izjava" msgid "built-in function" msgstr "ugrađen funkcije" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "Pregled sadržaja" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Traži" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "Naprijed" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." msgstr "Unesi ime modula, razreda ili funkcije." -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "Prikaži izvorni kod" @@ -547,6 +576,19 @@ msgstr "Prikaži izvorni kod" msgid "Overview" msgstr "Pregled" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +#, fuzzy +msgid "the documentation for" +msgstr "traži po dokumentaciji" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "Kazala i tabele:" @@ -657,7 +699,7 @@ msgstr "Slijedeća tema" msgid "next chapter" msgstr "slijedeće poglavje" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." @@ -665,7 +707,7 @@ msgstr "" "Molimo omogućite JavaScript\n" " za djelovanje tražilice." -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -677,17 +719,21 @@ msgstr "" " function will automatically search for all of the words. Pages\n" " containing fewer words won't appear in the result list." -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "traži" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "Rezultati pretrage" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." -msgstr "Your search did not match any results." +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -725,25 +771,43 @@ msgstr "C API changes" msgid "Other changes" msgstr "Ostale promjene" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "Link na taj naslov" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "Link na tu definiciju" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "Sakrij rezultate pretrage" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +#, fuzzy +msgid "Searching" +msgstr "traži" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "" @@ -751,24 +815,28 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "Distribucija" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "nastavak sa prethodne stranice" -#: sphinx/writers/latex.py:681 +#: sphinx/writers/latex.py:710 msgid "Continued on next page" msgstr "nastavak na slijedećoj stranici" -#: sphinx/writers/text.py:437 +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 +#, fuzzy, python-format +msgid "[image: %s]" +msgstr "[slika: %s]" + +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[slika]" - diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.js b/sphinx/locale/hu/LC_MESSAGES/sphinx.js index 856311d19..074c98f17 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/hu/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "hu", "plural_expr": "0", "messages": {"Hide Search Matches": "Keres\u00e9si Tal\u00e1latok Elrejt\u00e9se", "Permalink to this definition": "Hivatkoz\u00e1s erre a defin\u00edci\u00f3ra", "Expand sidebar": "Oldals\u00e1v kinyit\u00e1sa", "Permalink to this headline": "Hivatkoz\u00e1s erre a fejezetc\u00edmre", "Collapse sidebar": "Oldals\u00e1v \u00f6sszez\u00e1r\u00e1sa"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "hu", "plural_expr": "0", "messages": {"Hide Search Matches": "Keres\u00e9si Tal\u00e1latok Elrejt\u00e9se", "Permalink to this definition": "Hivatkoz\u00e1s erre a defin\u00edci\u00f3ra", "Permalink to this headline": "Hivatkoz\u00e1s erre a fejezetc\u00edmre"}}); \ No newline at end of file diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo index 8b908e9c2e4b3c49da9d28e9d025d9b7ef5869bf..e6ecdcb152db1e165d8bd7016e60a3c9fd2efadf 100644 GIT binary patch delta 4221 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 JbbG0M$$#W3NZ0@X diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.po b/sphinx/locale/hu/LC_MESSAGES/sphinx.po index 1a51d3bfc..d7ffdae6c 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hu/LC_MESSAGES/sphinx.po @@ -1,42 +1,48 @@ -# Translations template for PROJECT. +# Hungarian translations for Sphinx. # Copyright (C) 2011 ORGANIZATION -# This file is distributed under the same license as the PROJECT project. +# This file is distributed under the same license as the Sphinx project. # FIRST AUTHOR , 2011. # msgid "" msgstr "" "Project-Id-Version: Sphinx 1.0\n" "Report-Msgid-Bugs-To: szunyog@gmail.com\n" -"POT-Creation-Date: 2011-09-25 20:04+0200\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"PO-Revision-Date: 2013-04-01 11:58+0200\n" "Last-Translator: Tibor Toth \n" -"Language-Team: LANGUAGE \n" +"Language-Team: hu \n" +"Plural-Forms: nplurals=1; plural=0\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 0.9.6\n" -#: sphinx/environment.py:113 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#, python-format -msgid "%B %d, %Y" -msgstr "%Y. %m. %d." +#: sphinx/config.py:81 +#, fuzzy, python-format +msgid "%s %s documentation" +msgstr "%s %s dokumentációban" -#: sphinx/environment.py:1619 +#: sphinx/environment.py:1510 #, python-format msgid "see %s" msgstr "lásd %s" -#: sphinx/environment.py:1622 +#: sphinx/environment.py:1513 #, python-format msgid "see also %s" msgstr "lásd még %s" -#: sphinx/roles.py:176 +#: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Fejlesztési Javaslatok; PEP %s" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "%Y. %m. %d." + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "Beépített" @@ -45,24 +51,24 @@ msgstr "Beépített" msgid "Module level" msgstr "Modul szint" -#: sphinx/builders/html.py:276 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:295 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Általános tárgymutató" -#: sphinx/builders/html.py:295 +#: sphinx/builders/html.py:309 msgid "index" msgstr "nyitóoldal" -#: sphinx/builders/html.py:355 +#: sphinx/builders/html.py:369 msgid "next" msgstr "következő" -#: sphinx/builders/html.py:364 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "előző" @@ -86,15 +92,25 @@ msgstr "Kód szerző: " msgid "Author: " msgstr "Szerző: " -#: sphinx/directives/other.py:219 -msgid "See also" -msgstr "Lásd még" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "%s %s" +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 +msgid "Parameters" +msgstr "" + +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 +msgid "Returns" +msgstr "" + +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 +msgid "Return type" +msgstr "" + #: sphinx/domains/c.py:141 #, python-format msgid "%s (C function)" @@ -120,26 +136,59 @@ msgstr "%s (C típus)" msgid "%s (C variable)" msgstr "%s (C változó)" -#: sphinx/domains/cpp.py:999 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#, fuzzy, python-format +msgid "function" +msgstr "függvény" + +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 +#, fuzzy, python-format +msgid "member" +msgstr "tagváltozó" + +#: sphinx/domains/c.py:205 +msgid "macro" +msgstr "" + +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 +msgid "type" +msgstr "" + +#: sphinx/domains/c.py:207 +#, fuzzy, python-format +msgid "variable" +msgstr "változó" + +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "" + +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ osztály)" -#: sphinx/domains/cpp.py:1014 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ típus)" -#: sphinx/domains/cpp.py:1034 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ tagváltozó)" -#: sphinx/domains/cpp.py:1090 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ függvény)" +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 +msgid "class" +msgstr "" + #: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" @@ -165,6 +214,28 @@ msgstr "%s (globális változó vagy konstans)" msgid "%s (%s attribute)" msgstr "%s (%s attribútum)" +#: sphinx/domains/javascript.py:122 +msgid "Arguments" +msgstr "" + +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 +msgid "data" +msgstr "" + +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 +#, fuzzy, python-format +msgid "attribute" +msgstr "attribútum" + +#: sphinx/domains/python.py:100 +#, fuzzy, python-format +msgid "Variables" +msgstr "változó" + +#: sphinx/domains/python.py:104 +msgid "Raises" +msgstr "" + #: sphinx/domains/python.py:254 sphinx/domains/python.py:311 #: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format @@ -221,16 +292,49 @@ msgstr "%s() (%s osztály metódus)" msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s attribútum)" -#: sphinx/domains/python.py:433 +#: sphinx/domains/python.py:434 #, python-format msgid "%s (module)" msgstr "%s (modul)" -#: sphinx/domains/python.py:536 +#: sphinx/domains/python.py:491 +#, fuzzy +msgid "Python Module Index" +msgstr "Teljes modul tárgymutató" + +#: sphinx/domains/python.py:492 +#, fuzzy, python-format +msgid "modules" +msgstr "modul" + +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "Elavult" -#: sphinx/domains/python.py:693 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 +msgid "exception" +msgstr "" + +#: sphinx/domains/python.py:564 +msgid "method" +msgstr "" + +#: sphinx/domains/python.py:565 +#, fuzzy, python-format +msgid "class method" +msgstr "osztály metódus" + +#: sphinx/domains/python.py:566 +#, fuzzy, python-format +msgid "static method" +msgstr "statikus metódus" + +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 +#, fuzzy, python-format +msgid "module" +msgstr "modul" + +#: sphinx/domains/python.py:696 msgid " (deprecated)" msgstr " (elavult)" @@ -244,7 +348,17 @@ msgstr "%s (direktíva)" msgid "%s (role)" msgstr "%s (szerepkör)" -#: sphinx/domains/std.py:86 +#: sphinx/domains/rst.py:104 +#, fuzzy, python-format +msgid "directive" +msgstr "direktíva" + +#: sphinx/domains/rst.py:105 +#, fuzzy, python-format +msgid "role" +msgstr "szerepkör" + +#: sphinx/domains/std.py:70 sphinx/domains/std.py:86 #, python-format msgid "environment variable; %s" msgstr "környezeti változó; %s" @@ -254,30 +368,86 @@ msgstr "környezeti változó; %s" msgid "%scommand line option; %s" msgstr "%sparancssor opció; %s" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/domains/std.py:414 +msgid "glossary term" +msgstr "" + +#: sphinx/domains/std.py:415 +msgid "grammar token" +msgstr "" + +#: sphinx/domains/std.py:416 +msgid "reference label" +msgstr "" + +#: sphinx/domains/std.py:418 +#, fuzzy, python-format +msgid "environment variable" +msgstr "környezeti változó" + +#: sphinx/domains/std.py:419 +msgid "program option" +msgstr "" + +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 +#: sphinx/themes/basic/genindex-split.html:11 +#: sphinx/themes/basic/genindex-split.html:14 +#: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 +#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 +msgid "Index" +msgstr "Tárgymutató" + +#: sphinx/domains/std.py:450 +#, fuzzy +msgid "Module Index" +msgstr "Modul forráskód" + +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 +msgid "Search Page" +msgstr "Keresés" + +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr " Alapul: %s" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr "álneve :class:`%s`" -#: sphinx/ext/graphviz.py:300 sphinx/ext/graphviz.py:306 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 #, python-format msgid "[graph: %s]" msgstr "[graph: %s]" -#: sphinx/ext/graphviz.py:301 sphinx/ext/graphviz.py:307 +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 msgid "[graph]" msgstr "[graph]" -#: sphinx/ext/intersphinx.py:218 +#: sphinx/ext/intersphinx.py:234 #, python-format msgid "(in %s v%s)" msgstr "(%s v%s)" +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "[source]" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + #: sphinx/ext/todo.py:42 msgid "Todo" msgstr "Tennivaló" @@ -291,10 +461,6 @@ msgstr "(Az <> megtalálható a(z) %s, %d sor.)" msgid "original entry" msgstr "eredeti bejegyzés" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "[source]" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "[docs]" @@ -316,13 +482,91 @@ msgstr "Áttekintés: modul forráskód" msgid "

      All modules for which code is available

      " msgstr "

      Az összes modul, melynek forrása elérhető

      " +#: sphinx/locale/__init__.py:155 +msgid "Attention" +msgstr "" + +#: sphinx/locale/__init__.py:156 +msgid "Caution" +msgstr "" + +#: sphinx/locale/__init__.py:157 +msgid "Danger" +msgstr "" + +#: sphinx/locale/__init__.py:158 +msgid "Error" +msgstr "" + +#: sphinx/locale/__init__.py:159 +msgid "Hint" +msgstr "" + +#: sphinx/locale/__init__.py:160 +msgid "Important" +msgstr "" + +#: sphinx/locale/__init__.py:161 +#, fuzzy +msgid "Note" +msgstr "Lábjegyzetek" + +#: sphinx/locale/__init__.py:162 +msgid "See also" +msgstr "Lásd még" + +#: sphinx/locale/__init__.py:163 +msgid "Tip" +msgstr "" + +#: sphinx/locale/__init__.py:164 +msgid "Warning" +msgstr "" + +#: sphinx/locale/__init__.py:168 +#, python-format +msgid "New in version %s" +msgstr "" + +#: sphinx/locale/__init__.py:169 +#, python-format +msgid "Changed in version %s" +msgstr "" + +#: sphinx/locale/__init__.py:170 +#, python-format +msgid "Deprecated since version %s" +msgstr "" + +#: sphinx/locale/__init__.py:176 +msgid "keyword" +msgstr "" + +#: sphinx/locale/__init__.py:177 +msgid "operator" +msgstr "" + +#: sphinx/locale/__init__.py:178 +msgid "object" +msgstr "" + +#: sphinx/locale/__init__.py:180 +msgid "statement" +msgstr "" + +#: sphinx/locale/__init__.py:181 +#, fuzzy, python-format +msgid "built-in function" +msgstr "beépített függvény" + #: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "Tartalomjegyzék" #: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Keresés" @@ -342,6 +586,19 @@ msgstr "Forrás megtekintése" msgid "Overview" msgstr "Áttekintés" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +#, fuzzy +msgid "the documentation for" +msgstr "dokumentációban" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "Tárgymutató és táblázatok" @@ -354,10 +611,6 @@ msgstr "Teljes tartalomjegyzék" msgid "lists all sections and subsections" msgstr "kilistázza az összes fejezetet és alfejezetet" -#: sphinx/themes/basic/defindex.html:25 -msgid "Search Page" -msgstr "Keresés" - #: sphinx/themes/basic/defindex.html:26 msgid "search this documentation" msgstr "keresés ebben a dokumentációban" @@ -374,15 +627,6 @@ msgstr "gyors hozzáférés az összes modulhoz" msgid "all functions, classes, terms" msgstr "összes funkció, osztály és kifejezés" -#: sphinx/themes/basic/genindex-single.html:32 -#: sphinx/themes/basic/genindex-split.html:11 -#: sphinx/themes/basic/genindex-split.html:14 -#: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 -#: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 -msgid "Index" -msgstr "Tárgymutató" - #: sphinx/themes/basic/genindex-single.html:35 #, python-format msgid "Index – %(key)s" @@ -441,8 +685,8 @@ msgid "" "Created using Sphinx " "%(sphinx_version)s." msgstr "" -"Sphinx " -"%(sphinx_version)s használatával készült." +"Sphinx %(sphinx_version)s " +"használatával készült." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -465,7 +709,7 @@ msgstr "Következő témakör" msgid "next chapter" msgstr "következő fejezet" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." @@ -473,7 +717,7 @@ msgstr "" "Kérem engedélyezze a JavaScriptet a kereső funkció\n" " használatához." -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -486,17 +730,21 @@ msgstr "" " figyelembe veszi, így azok az oldalak, melyek nem tartalmazzák az\n" " összes kifejezést, nem jelennek meg a találati listában." -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "keresés" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "Keresési Eredmények" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." -msgstr "Nincs találat." +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -534,25 +782,43 @@ msgstr "C API változások" msgid "Other changes" msgstr "Egyéb változások" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "Hivatkozás erre a fejezetcímre" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "Hivatkozás erre a definícióra" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "Keresési Találatok Elrejtése" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +#, fuzzy +msgid "Searching" +msgstr "keresés" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "Oldalsáv kinyitása" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "Oldalsáv összezárása" @@ -560,33 +826,28 @@ msgstr "Oldalsáv összezárása" msgid "Contents" msgstr "Tartalom" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "Kiadás" -#: sphinx/writers/latex.py:599 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "Lábjegyzetek" -#: sphinx/writers/latex.py:683 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "folytatás az előző oldalról" -#: sphinx/writers/latex.py:689 +#: sphinx/writers/latex.py:710 msgid "Continued on next page" msgstr "A következő oldalon folytatódik" -#: sphinx/writers/manpage.py:233 sphinx/writers/text.py:438 +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 #, python-format msgid "[image: %s]" msgstr "[image: %s]" -#: sphinx/writers/manpage.py:234 sphinx/writers/text.py:439 +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[image]" - -#: tests/test_build_gettext.py:81 -msgid "Testing various markup" -msgstr "Különféte leíró tesztelése" - diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.js b/sphinx/locale/it/LC_MESSAGES/sphinx.js index 590de16ee..806f4255f 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "it", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "Nascondi i risultati della ricerca", "Permalink to this definition": "link permanente per questa definizione", "Expand sidebar": "", "Permalink to this headline": "link permanente per questa intestazione", "Collapse sidebar": ""}}); \ No newline at end of file +Documentation.addTranslations({"locale": "it", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "Nascondi i risultati della ricerca", "Permalink to this definition": "link permanente per questa definizione", "Permalink to this headline": "link permanente per questa intestazione"}}); \ No newline at end of file diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo index 04dfdec214a1e9219e92e47ade45e72cd15918ec..838dde425c9837a674b03297bde5356d74d2a4f4 100644 GIT binary patch delta 3510 zcmd7Se@vBC9LMp4KqiXF^#}gu5dmcih$0kX1~86b zjC7M}<|4CNSYy^An=8{fT{Sm#G;NuiX6okr(Oh$Bsax+4JT0^TT7SeYyv}p(Ip_O5 z-*X;XX78F8J?V+tX!z;icQn6?;`Q{`PiulP19*H56LAY_$aYM_9oP@MT~D~*pTlJO zFX9lqg-Ph?-@9HKvR>5W(%@re@<#*a;6QvFwSdpuAl#3dcN8r= zgPI>l_B72fRHA99@slxy_+};zEw~s*q92Fj8suZz`J?YY#1Xg$3-EhP#U!%I$6QpP zYE*^la0)iyDD1$YxF40salD)O<_wMd@RB-k65F6@^06!|s+Q0w-k{z^R2bv$bRy*Li%B~yRJ3eiC|O%(Oq>OQ}T%KQW5V?K4Czd{A< zMkV$gssd+G0WYKG#d>-#^*~gmCSfT)gi7QU5B1m1+v!NhPE;b@sM4K89l<%&*BFa4jxDjX#ZA?>uVURo9!Sc+oiOMcX9e7)(P2d;pa|8ESzi zQD^EyRVawsc{3`J&De8yQ0sM|-lE-Z|1ng+Q>Y_5-)q$TN<$0BanqDx0xEz9^$#W$ z^?fO7M-RI$a9x6$SBXl*M$LcL{k{@wiXa9s+PyyzSqW-BgYUs$r zmr#Lrp(=0yr{F>4V{Y(A<5ReKdcO-%6)VL#_z3DQY(%b=X-AFgLSmaeI0KKPHZXJy z^&d+kldG?VW}$XCAIor=+yAcH--$}(Gkg%gMcs`Q7U`)RYJN6maQ21B5K~FkI+A8o zrC&w8#_drWy5-wY6Az#=K8#xUIC9_2kI2Vdi46Lq8T-RJ*uLc zP)Gd^>L@-(UDD_g8p`Y_s&r>jrMrYms1FCGKm%|BPDA|*tw05O3$@@Un2ukgDsc(5 z-VN7ScBwf1QAaTf`6_A(XmA{68EQfVb@r=J0am-uucLO*j>WhWRheI0`;G6doP`QB z3AK?Ks7v@Lsv^s==k3A1djB1_qZxH6T5v7Cftrxcwp7ANs00g9M|3~x&Xl17EktrL zepKaJQAe@~^%iYMZR`tF0{d_@@y%fxad;6m@d~P>zoX7JDWkW4A}Zii)Q)Dj&Os%* z6qVpp*t0{-=Gnn`+=d$0;kpB(>e%Ua>_+WuKdSVHQ49WrO6&saY_Fom#b)-78;I&p zLnWMtI)XCP#-6}m%XdpI?=R!r@S(U2TQ!8ar$UtL!^R%(okF`?77SXZG|Of6(vv?CQx@O(+tq zR!Vi=T6?0CWv%emSNW7kz0Y=&u~tUxa8pj(O3&1`PS31COYJ~aXoWq_TIBOPmfvZ+ z;z^BGhpHkg>|niI&r_K%p$hwO3?W+1f zljS9ko`FrF$b<&P4)6s->|iKT>$9r7^>%G2?6;j9Q$aMR(p1!jy>-4K(y#36K6H&4 zJR&B+>(pD3x@u;0O&hW*CUIK!l>F=|c~)Lt(e%QuFNY?_{qrQc4vjb#?>#fTF_o0j&mle}LaNDVrq|J``1GGT?WdHyG delta 2725 zcmYM!4@}f$9LMqJ=s*MckMie8PC%~M4(|{#xs@eCQ?iz`QIm2Pu!%!1xkE;|u3@fP z7}nW_6_~BER%_*rQ8rsEYDBZPEHLMvwpbR@mX_&ct=^w_w%Cu~>-Rjr-|zc;pYQYh z?t=|a-4Q*T<$S^LH^_e>|IS3U{{Ne~-k1e6f5TL~hI(XvvN6S&hIARfHGsNbhnd)b zIrspkV<#$JFA^_m`ngDRB4MHs>=>_;Dtq6;tM zLd+y<4eY`B=*L^JMs3D7JzQ{@UQY9HAL_*cRN!|}8UKVz@K02rbf&AodAI?KF$o_= zietJ_iS*)196~M41ag?uoT3VFK`jRvqe}W03&j{Fl~Gk07bf5`+pa_>?RwPv4XD8P zq7vV1-GO@lNnC<2q4vNrq&Vhy2K86RDcdoP%KQpy?GiYtor4;%2$fhVssfd$0RyP# z?m=zhCRC+*a1HK9&2bV-@n=*5DOuECCCkg2D}52N+{Rv&ZcNdr<@KN0oTcw%=YRr)$47t@GJtQ{3+7ivOJqY@dw41NEvaiIr?Q2{=;?MYP0&!YlfMh=tA z`slf0RKO~9V=b~>Obcp&Zq!V7qbj!-Im{3zR@IDPR3-e%-Z+mMP<7LQX{hhE1oewo zhefyx{rEEa@M~0@f9!o1-=03l0IE{;xDM||t^EO{$mUQ1_1A+Vba0qYIR)?xD&u^j zF2-_HpmnGjZN&B1Wcv@>{`Zi>9ObkYCs2FA#g`1W{CJ z`%$0eA=IvZ9rfZED&cQYfzP0RF{eAd5hWZ-Dkwl_q(srD~ z8@VxqdT=2-Pk{?jYwtk?^r4od9#w%hRB6Mg-MEIFIqo5iXR` zQPdiZq8>bfdho36zl2KEQ8HKJ0@RGkQ3)(VwuM=NN^lcu0!^s++feZ%sP}ebyf67= zLTuc1S9~;e%o%$nYfJ3@?Au}!+2zjL+ry#QZ1(!tfs(~(ovq=n_DHzGY;FlPhvV0B z@*Q#aqDLI5ey?wpx6<$S`)YjE@x!^9&iJ_NyTsU$CEH>Ij;=_Ee#H+)+Ux+gl-}fshnLnl{sjVU4^037 diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index 1877c786d..3c3f7c8a0 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 0.5\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2011-09-21 10:06+0200\n" +"POT-Creation-Date: 2013-04-01 11:57+0200\n" "PO-Revision-Date: 2011-01-22 14:41+0100\n" "Last-Translator: Sandro Dentella \n" "Language-Team: \n" @@ -21,18 +21,12 @@ msgstr "" msgid "%s %s documentation" msgstr "%s %s documentazione" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#, python-format -msgid "%B %d, %Y" -msgstr "%d %B %Y" - -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1510 #, python-format msgid "see %s" msgstr "vedi %s" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1513 #, python-format msgid "see also %s" msgstr "vedi anche %s" @@ -42,6 +36,12 @@ msgstr "vedi anche %s" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "%d %B %Y" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "Builtin" @@ -50,24 +50,24 @@ msgstr "Builtin" msgid "Module level" msgstr "Modulo" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "%d/%b/%Y" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indice generale" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:309 msgid "index" msgstr "indice" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:369 msgid "next" msgstr "successivo" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "precedente" @@ -75,42 +75,39 @@ msgstr "precedente" msgid " (in " msgstr " (in " -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr "Autore della sezione: " -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "Autore del modulo: " -#: sphinx/directives/other.py:140 +#: sphinx/directives/other.py:142 #, fuzzy msgid "Code author: " msgstr "Autore del modulo: " -#: sphinx/directives/other.py:142 +#: sphinx/directives/other.py:144 msgid "Author: " msgstr "Autore: " -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "Vedi anche" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "Ritorna" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "Tipo di ritorno" @@ -139,59 +136,63 @@ msgstr "%s (tipo C)" msgid "%s (C variable)" msgstr "%s (variabile C)" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 msgid "function" msgstr "funzione" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 msgid "member" msgstr "membro" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" msgstr "" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 #, fuzzy msgid "variable" msgstr "Variabile" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "" + +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "%s (classe C++)" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "%s (tipo C++)" -#: sphinx/domains/cpp.py:938 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "%s (membro C++)" -#: sphinx/domains/cpp.py:990 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "%s (funzione C++)" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "%s() (funzione built-in)" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodo)" @@ -206,7 +207,7 @@ msgstr "%s() (classe)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attributo)" @@ -216,15 +217,11 @@ msgstr "%s (%s attributo)" msgid "Arguments" msgstr "Parametri" -#: sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "" - -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "attributo" @@ -237,58 +234,58 @@ msgstr "Variabile" msgid "Raises" msgstr "Solleva" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "%s() (nel modulo %s)" -#: sphinx/domains/python.py:258 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "%s (variabile built-in)" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "%s (nel modulo %s)" -#: sphinx/domains/python.py:275 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "%s (classe built-in)" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "%s (classe in %s)" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metodo)" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s metodo statico)" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metodo statico)" -#: sphinx/domains/python.py:341 +#: sphinx/domains/python.py:340 #, fuzzy, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s metodo)" -#: sphinx/domains/python.py:344 +#: sphinx/domains/python.py:343 #, fuzzy, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metodo)" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s attributo)" @@ -307,49 +304,49 @@ msgstr "Indice dei Moduli" msgid "modules" msgstr "moduli" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "Deprecato" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "eccezione" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 msgid "class method" msgstr "" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "metodo statico" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "modulo" -#: sphinx/domains/python.py:695 +#: sphinx/domains/python.py:696 msgid " (deprecated)" msgstr " (deprecato)" -#: sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:57 +#: sphinx/domains/rst.py:55 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 msgid "role" msgstr "" @@ -363,70 +360,97 @@ msgstr "variabile d'ambiente, %s" msgid "%scommand line option; %s" msgstr "%sopzione di linea di comando; %s" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "variabile d'ambiente" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 #: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "Indice" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "Indice dei Moduli" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Cerca" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr "" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr "alias per :class:`%s`" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "Da fare" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(La <> si trova in %s, linea %d.)" -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "riga originale" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "" @@ -478,7 +502,7 @@ msgid "Note" msgstr "Nota" #: sphinx/locale/__init__.py:162 -msgid "See Also" +msgid "See also" msgstr "Vedi anche" #: sphinx/locale/__init__.py:163 @@ -524,25 +548,26 @@ msgstr "statement" msgid "built-in function" msgstr "funzione built-in" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "Tabella dei contenuti" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Cerca" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "Vai" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." msgstr "Inserisci un termine di ricerca un modulo, classe o nome di funzione" -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "Mostra sorgente" @@ -550,6 +575,19 @@ msgstr "Mostra sorgente" msgid "Overview" msgstr "Sintesi" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +#, fuzzy, python-format +msgid "the documentation for" +msgstr "documentazione" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "Indici e tabelle:" @@ -660,13 +698,13 @@ msgstr "Argomento successivo" msgid "next chapter" msgstr "capitolo successivo" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -680,17 +718,21 @@ msgstr "" " di ricerca cerca automaticamente per tutte le parole. Le pagine\n" " che contendono meno parole non compariranno nei risultati di ricerca." -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "cerca" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "Risultati della ricerca" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." -msgstr "La tua ricerca non ha ottenuto risultati" +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -728,25 +770,43 @@ msgstr "Modifiche nelle API C" msgid "Other changes" msgstr "Altre modifiche" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "link permanente per questa intestazione" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "link permanente per questa definizione" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "Nascondi i risultati della ricerca" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +#, fuzzy +msgid "Searching" +msgstr "cerca" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "" @@ -754,25 +814,29 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "Release" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "" -#: sphinx/writers/latex.py:681 +#: sphinx/writers/latex.py:710 #, fuzzy msgid "Continued on next page" msgstr "Indice completo in una pagina" -#: sphinx/writers/text.py:437 +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 +#, fuzzy, python-format +msgid "[image: %s]" +msgstr "[immagine: %s]" + +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[immagine]" - diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.js b/sphinx/locale/ja/LC_MESSAGES/sphinx.js index feb321596..1d4f2971f 100644 --- a/sphinx/locale/ja/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ja/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "ja", "plural_expr": "0", "messages": {"Hide Search Matches": "\u691c\u7d22\u7d50\u679c\u3092\u96a0\u3059", "Permalink to this definition": "\u3053\u306e\u5b9a\u7fa9\u3078\u306e\u30d1\u30fc\u30de\u30ea\u30f3\u30af", "Expand sidebar": "\u30b5\u30a4\u30c9\u30d0\u30fc\u3092\u5c55\u958b", "Permalink to this headline": "\u3053\u306e\u30d8\u30c3\u30c9\u30e9\u30a4\u30f3\u3078\u306e\u30d1\u30fc\u30de\u30ea\u30f3\u30af", "Collapse sidebar": "\u30b5\u30a4\u30c9\u30d0\u30fc\u3092\u305f\u305f\u3080"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "ja", "plural_expr": "0", "messages": {"Hide Search Matches": "\u691c\u7d22\u7d50\u679c\u3092\u96a0\u3059", "Permalink to this definition": "\u3053\u306e\u5b9a\u7fa9\u3078\u306e\u30d1\u30fc\u30de\u30ea\u30f3\u30af", "Permalink to this headline": "\u3053\u306e\u30d8\u30c3\u30c9\u30e9\u30a4\u30f3\u3078\u306e\u30d1\u30fc\u30de\u30ea\u30f3\u30af"}}); \ No newline at end of file diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo index aadbb401014de0804a07b380d9d4773e8fdffceb..07bdaad748ff2181da58f50cdb7467900126e804 100644 GIT binary patch delta 3684 zcmd7Td2EzL7{~FcZ7E`FX$wkirEhI16zNiw!!}5?@u*M=q2dw5@Vb55t}MG{-(4zV zTxC59Xhs<>OTWDK@*;Vi*Pu0 zp~iKigAbs_zlw_gJ}Tk;cn0&Euei{_pYco_O7voMP!rVSS=fxDFobk9EA8{OsQ#O9 zD)wU;{)m%t1leffD^Qi2kF~e}OPJr>!^KGKMP>G;^<5lFdoRww1Gaq@Wgxbxz#N=} z8efN+aE^U`2WnyWp%$1|%ml3(v+ysEKbyCDM%=|1jzdZ9yuPG|zIO3cQBOXg_M;0aU zpw~X%j+%G}YAfEh?R}_p!2?eklZ^J!M1wq!l({Fz=Zw1R%y zVGnA8uaT;ocSD&45j>Gyjy4*t+!CHGUPJ?phTkJ^ft@p{~eIwPZrt_qxs+LB99i8kX5T#Q=i z)5zk@PSm&qNiK9q4xOX|6HGVj%e>Fxj_&q>9 zf1Gk@!mX%&FQfV;KjcDtx*yf?JNw`#>j~5u$f`*1c?s$e1(3y?24oK7qT-}bXW${! zL@!x)+vkT+3pk!`CrvSR*2EK0hpG;hSraU2**{Ul$8n&2bUDL#Zb_yg*2 z9<%o|$ECL@AGu`$s0Cexs>mWts#Lyx@F1#$8&P}vs=fcIy?+q3;-66oWmTsW9*KjM zLItj})}a>Egj#V6YJAYPJFBU`ZrsKV4ZPQOc*1sg&f1R(wA()4hw6V2PsJZ?`&U%I z0$zT_9fexR7}OSAf=Xl&YFy{|i_!ybwjFLqm2`u3D`wK(j;hRSr~n_LCi-%G-|Asy znFZrQ5oe6=EF0rjn+Xn$zTUif+4-GrEEH*Xe9w&qI|6~8qlGuMILq8{!mD>K4tKfB zeW!VTQ&Ygq^WuqEWuhH(ZrL6VYP3}5 zJmFpQ($dtZJg&@&Ic;msKMGxQQ)k+PV%SWl%ZjGGKl0sThx2-Vm*@Na{l35FIoD>L zn&Mqbjc<1R?c;wS|1%TR`u}fjvU4dk*I^&rikh+?3$O)yVVilu#;;<3`fp%Ae1K`# zueWoLU=b46b0IDics%lP)A-VaIoKE9Km}M~{Y|L(J5dP^VFn(@NAVo$zU!Ee_fYp| zk&R1Nf?9A0Gsy48a-kb%Vl-X5)EG$3L+b`CSUj)rvAO3G;Cb7F)X(nd_EdPxMd$8c_*$*!UULMlPckd>a)n zg>tGw>8LzU;ENbSFOiE?TyQ*Y4QhoOaReSlopmP?%iTf+cz`azHQ5w6nfhvhgHRPI z#U41`+Lahj`(@Pq^H6aY^rQaTNgW+>H7dY19E6{taR zxdLmKqY_u37B~S_k?E*>RjJfpJ6}SFp8gf6(rv-#@Ca(>_plHXS)CR*gfA_q0#(5m zP)9QZwXiB{zh>igsHcCKjjut)-Q;nhl7EakyA!Ato;5F`0$xS!>^7=|aYR$%J{X5- zsGVk^#&b{$3StqKqUOJ3{c})xyc#a}xJ7*B;7U}0-Kc~IQ49DEb!MkfJO2??v5Tn0 zf1~cZk9=Gb_0`*wgX#~V5{^Y3#iVXMH=7Fuu0gH%b<___*!nl3R=(ZbYaT$&{{ppu zuTcwYwei!aglABtzF_T6RHg4c?C1RBd4zQY{ZS8FDJozED)9u=`#ss(HK>X#MD1)j zYDW#I`_`ipH{%N4lAWmgvnhw>KaJXO1s3T2f1V4Ktk!(TCTu{C+igZ2#UUGSMeX3M zjklu`{DtIlsWdcRjBL`4LY`kY6}8c7WUBMf)6>403;puNPzyPY>c5P|*k$8`>D2gW zR7t0!j_Orpid%(wxDy9sE9x0(N6ib6UGoZ23mlWp`>&2Ebd=x%4B-c;K&P#J1NAx< z5KX@eHCTv^s3SUL#!#g{hI8>G>X|6u$<~fbQAaQl8FJHesK0({>*&zVT991sB0;K2ifMOnM0a0@+D)4TcjIF5o$?Qh=r=jK##YH?DhrKF&r}YB}miR%00+z=?PP6{qm=?(tEm3eQ90dG2j46tD>u zs2NrAJ*dQoZTwr*%1_$(CDi3fqKw zv(aqA3dWmJ34TUBWSywrfjg*DKfoa7^5|>fm8gnMMTT6p^}mOz$OgS*W@m0M+rsUfm2X{Gt6R4r2Q;vXXDKos5sTA`HQW+(#F@LryF*0k%*t8Zukmy z!}qA2oU`^7Or(7mHLnY`^CY&d5(n|&0#NtOK+T_H}BW;}(YNqNV9Gqm{wjzHioq-&(jd{G_Xz zUsoNDJ(DpY5SyF%ZlKSwp=Be74j-03tZY`EA$gj%_V|WUU`*@EhLuBdva9 ho8J)iBm4ZwCO`6_U*8b@DVQ1S3f2Z\n" "Language-Team: Japanese\n" @@ -24,18 +24,12 @@ msgstr "" msgid "%s %s documentation" msgstr "" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#, python-format -msgid "%B %d, %Y" -msgstr "%Y 年 %m 月 %d 日" - -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1510 #, python-format msgid "see %s" msgstr "%sを参照" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1513 #, python-format msgid "see also %s" msgstr "%sも参照" @@ -45,6 +39,12 @@ msgstr "%sも参照" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "%Y 年 %m 月 %d 日" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "組み込み" @@ -53,24 +53,24 @@ msgstr "組み込み" msgid "Module level" msgstr "モジュールレベル" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "%Y 年 %m 月 %d 日" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "総合索引" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:309 msgid "index" msgstr "索引" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:369 msgid "next" msgstr "次へ" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "前へ" @@ -78,41 +78,38 @@ msgstr "前へ" msgid " (in " msgstr "" -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr "この節の作者: " -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "モジュールの作者: " -#: sphinx/directives/other.py:140 +#: sphinx/directives/other.py:142 msgid "Code author: " msgstr "コードの作者: " -#: sphinx/directives/other.py:142 +#: sphinx/directives/other.py:144 msgid "Author: " msgstr "作者: " -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "参考" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "パラメタ" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "戻り値" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "戻り値の型" @@ -141,58 +138,62 @@ msgstr "%s (C のデータ型)" msgid "%s (C variable)" msgstr "%s (C の変数)" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 msgid "function" msgstr "の関数" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 msgid "member" msgstr "のメンバ変数" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" msgstr "のマクロ" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "のデータ型" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 msgid "variable" msgstr "変数" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "例外" + +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ のクラス)" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ のデータ型)" -#: sphinx/domains/cpp.py:938 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ のメンバ変数)" -#: sphinx/domains/cpp.py:990 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ の関数)" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "クラス" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "%s() (組み込み関数)" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s のメソッド)" @@ -207,7 +208,7 @@ msgstr "%s() (クラス)" msgid "%s (global variable or constant)" msgstr "%s (グローバル変数または定数)" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s の属性)" @@ -216,15 +217,11 @@ msgstr "%s (%s の属性)" msgid "Arguments" msgstr "引数" -#: sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "例外" - -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "データ" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "の属性" @@ -236,58 +233,58 @@ msgstr "変数" msgid "Raises" msgstr "例外" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s モジュール)" -#: sphinx/domains/python.py:258 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "%s (組み込み変数)" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "%s (%s モジュール)" -#: sphinx/domains/python.py:275 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "%s (組み込みクラス)" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "%s (%s のクラス)" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s のメソッド)" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s の静的メソッド)" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s の静的メソッド)" -#: sphinx/domains/python.py:341 +#: sphinx/domains/python.py:340 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s のクラスメソッド)" -#: sphinx/domains/python.py:344 +#: sphinx/domains/python.py:343 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s のクラスメソッド)" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s の属性)" @@ -305,49 +302,49 @@ msgstr "Pythonモジュール索引" msgid "modules" msgstr "モジュール" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "撤廃" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "例外" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "メソッド" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 msgid "class method" msgstr "クラスメソッド" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "の静的メソッド" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "モジュール" -#: sphinx/domains/python.py:695 +#: sphinx/domains/python.py:696 msgid " (deprecated)" msgstr " (撤廃)" -#: sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "%s (ディレクティブ)" -#: sphinx/domains/rst.py:57 +#: sphinx/domains/rst.py:55 #, python-format msgid "%s (role)" msgstr "%s (ロール)" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "ディレクティブ" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 msgid "role" msgstr "ロール" @@ -361,70 +358,97 @@ msgstr "環境変数; %s" msgid "%scommand line option; %s" msgstr "%sコマンドラインオプション; %s" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "用語集の項目" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "文法トークン" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "参照ラベル" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "環境変数" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "プログラムオプション" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 #: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "索引" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "モジュール索引" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "検索ページ" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr " ベースクラス: %s" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr ":class:`%s` のエイリアス" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "[ソース]" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "課題" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<<元のエントリ>> は、 %s の %d 行目です)" -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "元のエントリ" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "[ソース]" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "[ドキュメント]" @@ -475,7 +499,7 @@ msgid "Note" msgstr "ノート" #: sphinx/locale/__init__.py:162 -msgid "See Also" +msgid "See also" msgstr "参考" #: sphinx/locale/__init__.py:163 @@ -521,25 +545,26 @@ msgstr "文" msgid "built-in function" msgstr "組み込み関数" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "目次" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "検索" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "検索" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." msgstr "モジュール、クラス、または関数名を入力してください" -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "ソースコードを表示" @@ -547,6 +572,19 @@ msgstr "ソースコードを表示" msgid "Overview" msgstr "概要" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +#, fuzzy +msgid "the documentation for" +msgstr "ドキュメントを検索" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "索引と表一覧:" @@ -657,13 +695,13 @@ msgstr "次のトピックへ" msgid "next chapter" msgstr "次の章へ" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "検索機能を使うには JavaScript を有効にしてください。" -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -671,17 +709,21 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "このページからドキュメントを検索できます。キーワードを下のボックスに入力して、「検索」をクリックしてください。入力された全てのキーワードを含むページが検索されます。一部のキーワードしか含まないページは検索結果に表示されないので注意してください。" -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "検索" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "検索結果" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." -msgstr "検索条件に一致する項目がありませんでした。" +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -719,25 +761,43 @@ msgstr "C API に関する変更" msgid "Other changes" msgstr "その多の変更" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "このヘッドラインへのパーマリンク" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "この定義へのパーマリンク" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "検索結果を隠す" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +#, fuzzy +msgid "Searching" +msgstr "検索" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "サイドバーを展開" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "サイドバーをたたむ" @@ -745,24 +805,28 @@ msgstr "サイドバーをたたむ" msgid "Contents" msgstr "コンテンツ" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "リリース" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "注記" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "前のページからの続き" -#: sphinx/writers/latex.py:681 +#: sphinx/writers/latex.py:710 msgid "Continued on next page" msgstr "次のページに続く" -#: sphinx/writers/text.py:437 +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 +#, fuzzy, python-format +msgid "[image: %s]" +msgstr "[画像: %s]" + +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[画像]" - diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.js b/sphinx/locale/ko/LC_MESSAGES/sphinx.js index 0beffaa2f..21ce80f37 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "ko", "plural_expr": "0", "messages": {"Hide Search Matches": "\uac80\uc0c9 \uacb0\uacfc \uc228\uae30\uae30", "Permalink to this definition": "\uc815\uc758 \uc8fc\uc18c", "Expand sidebar": "\uc0ac\uc774\ub4dc\ubc14 \uc5f4\uae30", "Permalink to this headline": "\uc81c\ubaa9 \uc8fc\uc18c", "Collapse sidebar": "\uc0ac\uc774\ub4dc\ubc14 \ub2eb\uae30"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "ko", "plural_expr": "0", "messages": {"Hide Search Matches": "\uac80\uc0c9 \uacb0\uacfc \uc228\uae30\uae30", "Permalink to this definition": "\uc815\uc758 \uc8fc\uc18c", "Permalink to this headline": "\uc81c\ubaa9 \uc8fc\uc18c"}}); \ No newline at end of file diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index d671331ac840d2055e7dbd1fcd24af5acb815a01..ecce9aa531b5c6e88ce63c05c64da8d6d2406c8a 100644 GIT binary patch delta 3335 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 i(1F&_zE7q)+NV1DS#s+5aHyp>_c? diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.po b/sphinx/locale/ko/LC_MESSAGES/sphinx.po index 5bee2ab75..5cb448316 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 1.1pre\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2011-09-21 10:06+0200\n" +"POT-Creation-Date: 2013-04-01 11:57+0200\n" "PO-Revision-Date: 2011-06-09 21:25+0900\n" "Last-Translator: Channy Yun \n" "Language-Team: Korean\n" @@ -22,18 +22,12 @@ msgstr "" msgid "%s %s documentation" msgstr "" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#, python-format -msgid "%B %d, %Y" -msgstr "%Y년 %m월 %d일" - -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1510 #, python-format msgid "see %s" msgstr "%s 문서" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1513 #, python-format msgid "see also %s" msgstr "%s 참조" @@ -43,6 +37,12 @@ msgstr "%s 참조" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "%Y년 %m월 %d일" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "기본" @@ -51,71 +51,67 @@ msgstr "기본" msgid "Module level" msgstr "모듈 수준" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "%Y년 %m월 %d일" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "전체 색인" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:309 msgid "index" msgstr "색인" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:369 msgid "next" msgstr "다음" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "이전" #: sphinx/builders/latex.py:141 sphinx/builders/texinfo.py:196 -#, fuzzy msgid " (in " -msgstr "(" +msgstr "" -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 #, fuzzy msgid "Section author: " msgstr "항목 저자:" -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 #, fuzzy msgid "Module author: " msgstr "모듈 개발자:" -#: sphinx/directives/other.py:140 +#: sphinx/directives/other.py:142 #, fuzzy msgid "Code author: " msgstr "코드 개발자:" -#: sphinx/directives/other.py:142 +#: sphinx/directives/other.py:144 #, fuzzy msgid "Author: " msgstr "저자:" -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "더 보기" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "매개 변수" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "반환" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "반환 형식" @@ -144,58 +140,62 @@ msgstr "%s (C 데이터 형식)" msgid "%s (C variable)" msgstr "%s (C 변수)" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 msgid "function" msgstr "함수" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 msgid "member" msgstr "멤버 변수" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" msgstr "매크로" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "데이터 형식" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 msgid "variable" msgstr "변수" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "예외" + +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ 클래스)" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ 데이터 형식)" -#: sphinx/domains/cpp.py:938 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "%s (C++의 멤버 변수)" -#: sphinx/domains/cpp.py:990 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ 함수)" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "클래스" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "%s() 내장 함수)" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 메서드)" @@ -210,7 +210,7 @@ msgstr "%s() (클래스)" msgid "%s (global variable or constant)" msgstr "%s (전역 변수 또는 상수)" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s의 속성)" @@ -219,15 +219,11 @@ msgstr "%s (%s의 속성)" msgid "Arguments" msgstr "인수" -#: sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "예외" - -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "데이터" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "속성" @@ -239,58 +235,58 @@ msgstr "변수" msgid "Raises" msgstr "예외" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s 모듈)" -#: sphinx/domains/python.py:258 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "%s (내장 변수)" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "%s (%s 모듈)" -#: sphinx/domains/python.py:275 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "%s (내장 변수)" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "%s (%s 종류)" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, fuzzy, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s. %s 메서드)" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, fuzzy, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s. %s의 정적 메서드)" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s의 정적 메서드)" -#: sphinx/domains/python.py:341 +#: sphinx/domains/python.py:340 #, fuzzy, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s. %s 클래스 메서드)" -#: sphinx/domains/python.py:344 +#: sphinx/domains/python.py:343 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s 클래스 메서드)" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, fuzzy, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s. %s의 속성)" @@ -308,50 +304,50 @@ msgstr "Python 모듈 목록" msgid "modules" msgstr "모듈" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "폐지" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "예외" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "메소드" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 msgid "class method" msgstr "클래스 메소드" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "정적 메서드" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "모듈" -#: sphinx/domains/python.py:695 +#: sphinx/domains/python.py:696 #, fuzzy msgid " (deprecated)" msgstr "(폐지)" -#: sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "%s (지시문)" -#: sphinx/domains/rst.py:57 +#: sphinx/domains/rst.py:55 #, python-format msgid "%s (role)" msgstr "%s (역할)" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "지시자" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 msgid "role" msgstr "역할" @@ -365,70 +361,97 @@ msgstr "환경 변수; %s" msgid "%scommand line option; %s" msgstr "%s 명령; %s" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "용어의 항목" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "문법 토큰" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "참조 레이블" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "환경 변수" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "프로그램 옵션" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 #: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "색인" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "모듈 목록" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "검색 페이지" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, fuzzy, python-format msgid " Bases: %s" msgstr "기본 클래스: %s" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, fuzzy, python-format msgid "alias of :class:`%s`" msgstr ": class:`%s`의 별칭" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "[소스]" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "과제" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, fuzzy, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "(<<원래 항목\" \"는 %s %d 번째)" +msgstr "(<<원래 항목>> 는 %s %d 번째)" -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "원래 항목" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "[소스]" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "[문서]" @@ -480,7 +503,7 @@ msgid "Note" msgstr "주석" #: sphinx/locale/__init__.py:162 -msgid "See Also" +msgid "See also" msgstr "더 보기" #: sphinx/locale/__init__.py:163 @@ -526,25 +549,26 @@ msgstr "글" msgid "built-in function" msgstr "내장 함수" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "목차" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "검색" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "바로 가기" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." msgstr "모듈, 클래스 또는 함수 이름을 입력하십시오." -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "소스 코드를 보려면" @@ -552,6 +576,19 @@ msgstr "소스 코드를 보려면" msgid "Overview" msgstr "개요" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +#, fuzzy +msgid "the documentation for" +msgstr "문서 검색" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "색인 및 표 목록:" @@ -620,12 +657,12 @@ msgstr "저작권" #: sphinx/themes/basic/layout.html:189 #, fuzzy, python-format msgid "© Copyright %(copyright)s." -msgstr "©Copyright %(copyright)s." +msgstr "©Copyright %(copyright)s." #: sphinx/themes/basic/layout.html:191 #, fuzzy, python-format msgid "© Copyright %(copyright)s." -msgstr "©Copyright %(copyright)s." +msgstr "©Copyright %(copyright)s." #: sphinx/themes/basic/layout.html:195 #, python-format @@ -662,14 +699,14 @@ msgstr "다음 항목" msgid "next chapter" msgstr "다음 장" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 #, fuzzy msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "검색 기능을 사용하려면 JavaScript를 활성화하십시오." -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 #, fuzzy msgid "" "From here you can search these documents. Enter your search\n" @@ -680,17 +717,21 @@ msgstr "" "이 문서에서 문서를 검색할 수 있습니다. 키워드를 아래 입력란에 입력하고 '검색'을 클릭하세요. 입력된 모든 키워드를 포함하는 " "페이지가 검색됩니다. 일부 키워드 밖에 없는 페이지는 검색 결과에 표시되지 않으므로 주의하십시오. " -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "검색" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "검색 결과" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." -msgstr "검색 조건에 일치하는 항목이 없습니다." +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -709,7 +750,7 @@ msgstr "버전 %(version)s의 변경 사항-%(docstitle)s" #: sphinx/themes/basic/changes/rstsource.html:5 #, fuzzy, python-format msgid "%(filename)s — %(docstitle)s" -msgstr "%(filename)s-%(docstitle)s" +msgstr "%(filename)s — %(docstitle)s" #: sphinx/themes/basic/changes/versionchanges.html:17 #, python-format @@ -728,25 +769,43 @@ msgstr "C API에 대한 변경" msgid "Other changes" msgstr "다른 변경 사항" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "제목 주소" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "정의 주소" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "검색 결과 숨기기" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +#, fuzzy +msgid "Searching" +msgstr "검색" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "사이드바 열기" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "사이드바 닫기" @@ -754,24 +813,28 @@ msgstr "사이드바 닫기" msgid "Contents" msgstr "내용" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "출시" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "참고" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "이전 페이지에서 계속" -#: sphinx/writers/latex.py:681 +#: sphinx/writers/latex.py:710 msgid "Continued on next page" msgstr "일반 색인" -#: sphinx/writers/text.py:437 +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 +#, fuzzy, python-format +msgid "[image: %s]" +msgstr "[그림: %s]" + +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[그림]" - diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.js b/sphinx/locale/lt/LC_MESSAGES/sphinx.js index 2ab4266bb..b2190ad26 100644 --- a/sphinx/locale/lt/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/lt/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "lt", "plural_expr": "(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)", "messages": {"Hide Search Matches": "Pasl\u0117pti paie\u0161kos rezultatus", "Permalink to this definition": "Nuoroda \u012f \u0161\u012f apibr\u0117\u017eim\u0105", "Expand sidebar": "I\u0161pl\u0117sti \u0161onin\u0119 juost\u0105", "Permalink to this headline": "Nuoroda \u012f \u0161i\u0105 antra\u0161t\u0119", "Collapse sidebar": "Pasl\u0117pti \u0161onin\u0119 juost\u0105"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "lt", "plural_expr": "(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)", "messages": {"Hide Search Matches": "Pasl\u0117pti paie\u0161kos rezultatus", "Permalink to this definition": "Nuoroda \u012f \u0161\u012f apibr\u0117\u017eim\u0105", "Permalink to this headline": "Nuoroda \u012f \u0161i\u0105 antra\u0161t\u0119"}}); \ No newline at end of file diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo index d9444da49662a52ad5191a234ce526cce93e722f..567b9453ad3fd97d6f370bf3fbd7d208a980a902 100644 GIT binary patch delta 3673 zcmd7Sd2EzL7{~D`Q0{7JsZa~_Ed|;dx)iyaYM=zEp@4EmYt`58+wSVJ+wR+?B8h9L z2Lgs@5t3?zh!{MgG>sPm!9=+{0|a6!1T`w+k&u9>QR4U49fBJFGX7z+-OoGkJ2THS z&&<1LtJ@YPPiFOc((u>8|1kcaOIPdi-`D}h45V3#8CZ_$QiUUN9`?f~>q`6lAp^3jlKISZ6>hL>Wff@AD1jA7G1E~JjqXJapRd^?6Vhd{A zYIJZDYW$n1`46EIK89Bj-<;w?125nZ?91%A=%50Wrwr;;$+;7 z`FIW|;$X5-;2TkuTa0B`gL%X^>$u3l?WoN5SPx)d+K2Ia?6U2vDFbtxLhOU%QRAnf z0?xP3A4Dze3Dg3%qUPI!s@Q%^D&R>j=HhAWjguMGAFsnatimZ6M6KXyBp356YJ3Np zG-KXIO}vYGE5ReE3Vx0~@VssRjJ;?N%%c99U{F?S;ylz!3anF56U@Z|bdelQD{2ec zY&QVt-vrt=^^?NZ%ZN2~Vxln1ApjLhtYGo1B z!23{vllU30*=qaT<0NUEk4iL&TIo7e|5vSVqAK$aaz4#|)RuIi&Y$^#3uW4awACRC zHQ^ZR1k`}(sFg3UZP&Ja>ndc?=5f@PzJR=GW}kijDHhQ_jf$5!jQv+2hu(VaN>Qbm ziVC;@$;||jk4f^Sgr7zovJTYqk5Lsng9`XFj=}+S(l2KjDsT)Z;3ib%-XBi=Rhr}6 z7>y@TfqRZf{gUONI*vt^bSf&*88{28Q44qibp|%0wr~gX;+UN{6+c0(xLxTkQR9-|a6xkBN7TR!PLLi9K?NLvoHtX1>Ng#E6U`l1g3E1t3o5`Hs4X~v+LA8o zx2Vcpu+MuGcE?Ma94=IWd{l{wQV+}&RNxt?fw!Vo?jh&Lv|<%*MjhJIsIB-7wfFt_ z()|FcqLrvPi%<)@4Tp37jK_rzQ7cje^9*u+%wE)KK7kr=9<}m|s1@dLV00LZu>!9{ zC3YVw@J7@bc+t8SmB2AnWlpM1eDggQD*ZWBpo^##_ZgEqd|9Z{j=(iI4z<#q_W6F) z#79sS?6UX2Lym{JfaGk36s6)+pc20UlUhj)7rilxnjnEH^+TwHwxSYz8MU(4QI$Dl zpMPQf4ppIZsCfqzr^b&!o%SMB;*(Jc%`CR>e~26D+(=*_Txo5^zO>h(o^L=^rrqA( zhI&0;K_#}+-v07dv3fg6bQ7P&$@S^ zv)qj&ymDtoq{Us~JM$J-R|m`juQ?HqUV2m+i^pRvUeJkq^MavaC!UMW^(O9A(?9h4jOc92X-~_TP+B&zv~0XHeth|)DV;-y9PITE zyKpM+ir$&t-?!mR!K1hQwc`KfX2eIj6$`s}-1&EVa(LwIwsD2G|3CKRp6(OihV9N| Zq_*bL&b(V#n>H|Vd2525&gh%d{s0{w4;cUe delta 2890 zcmYM!e@vBC9LMp4{7_IRehTW93+hE71B_iQU0VFg(v&2fF$_kxxPhSFt2uOgDs#>u zuI&bxm7CGB)NFb657#1AqsGdb+GHiuwJp(M=+J~TbPXZ zFb$KZ8gn0dka->BrJ;#Sk&mh3OE=VF5^hFKu-lFwMBRS`72qUhU?1L(gQ(|zLpR<< zJ)cQ5nkFBWuop9kZ&uLIgBx%R-B9uYJz>J0PorB7f}njhD!K0 zYQAZdQx!@_#d!c%qZgex8gI~GdrUhj!!BHmr%`)-6Pe5Wg___Vnkd>t)5HnXR|)2z zDpH7(u+;V|FoynfsOO(Y&FfF5{#r>Z19C5Ff_E?nKSjm5fGYWQ+y4`_m*aLkAtkba z>Bx}Dwfz!Q;N_?U%TN`01{JR+h5BpdTN%*l-;FBW+xR%1L9P5Q&c!&gQ-TG2DWT=4 z3a&zJ%{o+KHMakfz21sC{X6XScGSGx4h@z3L)6}Vh05@fbqF=#2x?`wQ6-FKHU&<^ zXiP(`G!u2*g-R$7Jy?jkf4v>AMa6M^H29bnzFfEmHNjC-z!RthzCi8S0BYqwqAE6o z3Ot5-ZXEfTDb!bQiwiaGMFm`e+KQDC9kYRkCibB+ZbJRA1nhVhD)V=(J=Wu>`#(b^ za1NDNuf6^qD&R#_sjt}nO;n}-nHXpPV>rUvf>hLDD@0AW92K|>^?pBP`#w}fno%p; ziCWR?sOR291@6Ql-jXBs`Yy_$=k}u#?ZjNY|L@b#1O3(?P!$X)wq6?iW`grDF% zyp9Sqnc1nT$wHO12vxylsKm;#9M_@}?n3Q(4{FQKAlq+xXHowpG=5@0D@-I!W#~ec zZVBp;Riak929Q-Hd!3{{y1T!3x1{{gB3pQE<;d(;*;X%#5eZ(Wn_2E4b%!J@um6lPze^J60SgP=|(NnQKaE)2hFbYf)c77$1rDGRI%LOBqDpwyj(?48s~JSS9b*`aQ$3M+l2M0x2C4!j zsCk!qD4a5?WI(5L4eG%!?SwYpz!ZSr$vo3D)s c^}+tIVl-{v>}v_u`@=tbYNNuX^VdfG2Mm-WjQ{`u diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.po b/sphinx/locale/lt/LC_MESSAGES/sphinx.po index fdffdcad3..4c107fe1e 100644 --- a/sphinx/locale/lt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lt/LC_MESSAGES/sphinx.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 1.0pre/8b971dbc7d36\n" "Report-Msgid-Bugs-To: dalius@sandbox.lt\n" -"POT-Creation-Date: 2011-09-21 10:06+0200\n" +"POT-Creation-Date: 2013-04-01 11:57+0200\n" "PO-Revision-Date: 2011-01-22 14:41+0100\n" "Last-Translator: Dalius Dobravolskas \n" "Language-Team: lt \n" @@ -22,18 +22,12 @@ msgstr "" msgid "%s %s documentation" msgstr "" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#, python-format -msgid "%B %d, %Y" -msgstr "%Y-%m-%d" - -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1510 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1513 #, python-format msgid "see also %s" msgstr "" @@ -43,6 +37,12 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "%Y-%m-%d" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "Įtaisytieji" @@ -51,24 +51,24 @@ msgstr "Įtaisytieji" msgid "Module level" msgstr "Modulio lygis" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "%Y-%m-%d" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Bendras indeksas" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:309 msgid "index" msgstr "indeksas" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:369 msgid "next" msgstr "kitas" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "praeitas" @@ -76,41 +76,38 @@ msgstr "praeitas" msgid " (in " msgstr " (kuris yra " -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr "Skyriaus autorius: " -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "Modulio autorius: " -#: sphinx/directives/other.py:140 +#: sphinx/directives/other.py:142 msgid "Code author: " msgstr "Kodo autorius: " -#: sphinx/directives/other.py:142 +#: sphinx/directives/other.py:144 msgid "Author: " msgstr "Autorius: " -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "Taip pat žiūrėkite" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "Parametrai" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "Grąžinamos reikšmės" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "Grąžinamos reikšmės tipas" @@ -139,58 +136,62 @@ msgstr "%s (C tipas)" msgid "%s (C variable)" msgstr "%s (C kintamasis)" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 msgid "member" msgstr "narys" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" msgstr "makrokomanda" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "tipas" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 msgid "variable" msgstr "kintamasis" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "Išmeta" + +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ tipas)" -#: sphinx/domains/cpp.py:938 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ narys)" -#: sphinx/domains/cpp.py:990 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ funkcija)" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "klasė" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "%s() (itaisytoji funkcija)" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodas)" @@ -205,7 +206,7 @@ msgstr "%s() (klasė)" msgid "%s (global variable or constant)" msgstr "%s (globalus kintamasis arba konstanta)" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributas)" @@ -214,15 +215,11 @@ msgstr "%s (%s atributas)" msgid "Arguments" msgstr "Argumentais" -#: sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "Išmeta" - -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "duomenys" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "atribudas" @@ -234,58 +231,58 @@ msgstr "Kintamieji" msgid "Raises" msgstr "Sukelia" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "%s() (modulyje %s)" -#: sphinx/domains/python.py:258 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "%s (įtaisytasis kintamasis)" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "%s (modulje %s)" -#: sphinx/domains/python.py:275 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "%s (įtaisytoji klasė)" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "%s (klasė iš %s)" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metodas)" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statinis metodas)" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statinis metodas)" -#: sphinx/domains/python.py:341 +#: sphinx/domains/python.py:340 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s klasės metodas)" -#: sphinx/domains/python.py:344 +#: sphinx/domains/python.py:343 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klasės metodas)" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s atributas)" @@ -303,49 +300,49 @@ msgstr "" msgid "modules" msgstr "moduliai" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "Atmestas" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "išimtis" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "metodas" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 msgid "class method" msgstr "klasės metodas" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "statinis metodas" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "modulis" -#: sphinx/domains/python.py:695 +#: sphinx/domains/python.py:696 msgid " (deprecated)" msgstr " (atmestas)" -#: sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "%s (direktyva)" -#: sphinx/domains/rst.py:57 +#: sphinx/domains/rst.py:55 #, python-format msgid "%s (role)" msgstr "%s (rolė)" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "direktyva" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 msgid "role" msgstr "rolė" @@ -359,70 +356,97 @@ msgstr "aplinkos kintamasis; %s" msgid "%scommand line option; %s" msgstr "%skomandinės eilutės parinktis; %s" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "aiškinamasis terminas" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "gramatinė leksema" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "nuorodos požymis" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "aplinkos kintamasis" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "programos parinktis" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 #: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "Indeksas" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "Modulio indeksas" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Paieškos puslapis" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr " Bazės: %s" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr ":class:`%s` alternatyvus vardas" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "[šaltinis]" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "Padaryti" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<> galima rasti %s, eilutėje %d.)" -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "originalus įrašas" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "[šaltinis]" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "[dokumentai]" @@ -473,7 +497,7 @@ msgid "Note" msgstr "Pastaba" #: sphinx/locale/__init__.py:162 -msgid "See Also" +msgid "See also" msgstr "Taip pat žiūrėkite" #: sphinx/locale/__init__.py:163 @@ -519,25 +543,26 @@ msgstr "sakinis" msgid "built-in function" msgstr "įtaisytoji funkcija" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "Turinys" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Paieška" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "Pirmyn" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." msgstr "Įveskite paieškos terminą arba modulio, klasės ar funkcijos vardą." -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "Rodyti pirminį kodą" @@ -545,6 +570,19 @@ msgstr "Rodyti pirminį kodą" msgid "Overview" msgstr "Apžvalga" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +#, fuzzy +msgid "the documentation for" +msgstr "ieškoti šiame dokumente" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "Indeksai ir lentelės:" @@ -655,7 +693,7 @@ msgstr "Kita tema" msgid "next chapter" msgstr "kita dalis" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." @@ -663,7 +701,7 @@ msgstr "" "Prašome aktyvuoti JavaScript, kad veiktų paieškos\n" " funkcionalumas." -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -676,17 +714,21 @@ msgstr "" " funkcija automatiškai ieškos visų žodžių. Puslapiai,\n" " kuriuose yra mažiau žodžių nepasirodys tarp paieškos rezultatų." -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "ieškoti" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "Paieškos rezultatai" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." -msgstr "Jūsų paieška neatitiko jokių rezultatų" +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -724,25 +766,43 @@ msgstr "C API pakeitimai" msgid "Other changes" msgstr "Kiti pakeitimai" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "Nuoroda į šią antraštę" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "Nuoroda į šį apibrėžimą" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "Paslėpti paieškos rezultatus" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +#, fuzzy +msgid "Searching" +msgstr "ieškoti" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "Išplėsti šoninę juostą" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "Paslėpti šoninę juostą" @@ -750,24 +810,28 @@ msgstr "Paslėpti šoninę juostą" msgid "Contents" msgstr "Turinys" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "Leidimas" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "Išnašos" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "tęsinys iš praeito puslapio" -#: sphinx/writers/latex.py:681 +#: sphinx/writers/latex.py:710 msgid "Continued on next page" msgstr "Tęsinys kitame puslapyje" -#: sphinx/writers/text.py:437 +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 +#, fuzzy, python-format +msgid "[image: %s]" +msgstr "[paveiksliukas: %s]" + +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[paveiksliukas]" - diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.js b/sphinx/locale/lv/LC_MESSAGES/sphinx.js index 7809a8108..336e53dd1 100644 --- a/sphinx/locale/lv/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/lv/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "lv", "plural_expr": "(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)", "messages": {"Hide Search Matches": "Pasl\u0113pt atlases v\u0101rdus", "Permalink to this definition": "Past\u0101v\u012bga nor\u0101de uz \u0161o defin\u012bciju", "Expand sidebar": "Izplest s\u0101njoslu", "Permalink to this headline": "Past\u0101v\u012bga nor\u0101de \u0161o virsrakstu", "Collapse sidebar": "Sav\u0113rst s\u0101njoslu"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "lv", "plural_expr": "(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)", "messages": {"Hide Search Matches": "Pasl\u0113pt atlases v\u0101rdus", "Permalink to this definition": "Past\u0101v\u012bga nor\u0101de uz \u0161o defin\u012bciju", "Permalink to this headline": "Past\u0101v\u012bga nor\u0101de \u0161o virsrakstu"}}); \ No newline at end of file diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo index c173f6f5d9c364695cb266fa43677c00ff511f46..96f449dfc6352bc15ee4af05cb8d0f3d9b321734 100644 GIT binary patch delta 3806 zcmc)Ldu&ui6vy!?v=o5~ETyf0a0@N8+BQWBN^OuL5y4srf&>fEW%tsq-R{=CyRG%L zK7ybqq8q>m@dZS|L~KeTBE~2P0nr2m5)~g&67WG{{XuV zwo|AQZ?OGaQ483K%whK0_Q$A+kE0U&233)tebiqi)NFb%2lW=@qe?dgr{O~6*R1D5 z6?hE`@NL_F9F3>H!7j!s5nodwtN#(v7~v03zcF!DzhV~2R}gt zJdS$pPTPJT@2Dmmf!fPL>jYHbYE+^#P+Kw^^+mPF-cOZQa6?JIy$X@Y^P!pG;zBek=*85+}g-SCYwQ@gd zWsRr@+fWnVgL`@1mfQQYIZ+z77$2@kmZ8LQQF}NBb$_C5Pq*HPN~8ffHl_u&rH`QEZ$`y`3ybgrR02N@Xa7~=Oh#+v z*+|vQNYsEy$XGK2$;kvz0q?<)_=N3mM_y@j09D#Aa1x%zQCQB2EXO&h1>J|L$fFli z|1vI8bm+l%Q7brxO6W)Huc#9DVOD)54@3p3MUB4+b-x*PXxp#?SD`Ai3zgtO)Pj$r z&O&FB3w})(ADS?ibmwC}Dqt%rz`dvntil<%8Fg4YQCo8w6|ld<$~hxGBxf^|ZyQyt z9#zRZQS+=rj*&^ez=bB-Vcmrad;ql-hf#sPM+NG~2`j{r$Qx;45xv6-4QCs1|Va#s|xnOZ-Dso=T5>!Q!sDxIa&c&&?fJu~l0J$0O5ThrWd-GsQ&9=l zpvKQb#aV)VFpOH5hpOBf)WWu-D)$a1mGKcSGVlZ{&?zj!UoagD#`XMnEJm%U0#%V& zwm*mp97R>;cGMQG#7x|PTF5J?3hYEen|>qX+uv(24Td-^gc-qiz&(FNt=oFe&D5nsW=vcfiiErdH(25Vw3uOZ|)Au7ar}`sCm0PRn%qd-D|6!Y!d>y?>0rt=n?y84*Exj}nz<{Cpy zERw#CQQ5=N`uV-MlV}d|Y{#UbE7Gzil$KYNmXCMFkFT6~dB^)X&1wD5*~E@3@^X9s z&EC}x|2@MuC+42NeY5f(SoqhS`Y$)}Kz>ct4c#Zj`FDGnJ9={JrqK)k@4cM)PkY(e leRM)+Hu1a-^~dA8Q{nDcuH)qBMQH=VXE!z2adkmB?N95zHn;!) delta 2875 zcmYM#eN5F=9LMp4+?$|+^86seO&&A^g2b!XgXky{mB?~yAPq!Xj4LoN56cxl&0H;~ z({823rc&ZEBWhRCnYooHFlP>%t}Ok7vNq>3H(Hk2dVlb2x$AwM-}(K{`F_v${Lba@ z%D!dJ)o9l{hJQW$PvL)wTUY=8^Gz~l3YY6pw>IER+=$`$p|#iEKZ-H*e~D2zg0c7$ zPQ}}(`NAd}6Jd;F;%M+O>3r#d2Qd;Cp(ZG|{WZt{(}D`niShUrPQ!z!amUev!>IAs zk&pR@FC`pCbd8I~X~Z`V&`6+TAtvEUQ~)0)<3>!xF57)PcDygQoG~L@Yr~upAX&jlI7MwelWRqW!4xBd8T# zMg_cuEAS59hf66lyI?BNQHE7C=3@tHkNc2k%@NcD1872w`35!dd7>)8Ur?1A!wDEh zy>&eqU6_U%pMjb;54Dg&YgrWa*MJ&2?#EVCtap*BngjMah}y$bw*Ne81wSGm^Q*o7 z3l-QEeJ{aqR7Da{fjy{kUewFJIGXyabkEbV1Ybg}`~+s;SyY0*qY`p)p%O-+wk8pk zn8#k{*!zX3xBg*!zXCPyYE;D=QCs)ALqi$vwsxZ?{1~;eepCsEP=POCD1MJx=@ol_ z6qV2o%)&9$^V7*f{WDQ+OzGbmA{QDSvM;1Nz}Mg z$j6-HOQ&Si_TNDTbW?Y|E0NX|)V$e9VvfnDp&yh5_C^&d^IGeR)@Ia7+EEE~q7vI| z@9#hb+=VLjK6~AVD)lkjKaARf?{KQl{}>HT=;GB@;BeIWo@TGJQ57jbt@u&Yib_%A zR-pn{;vlD_&fcFxIn-Z-THq3UU2kndx6XeD4Ytd?g35HKz5W1o8v0QyI%BUdq7u4> z+Ok{rekfV%I@+3nO4N(2(UhRJuo4xo104m}N@F&5p%NHCmG&ZP#iOWS$Q$;)izA~F z#-UD60biPMIi_Nb?RSuaW8O!GnqKtcAg1BJ$=ZJ!smzv#PoW;{L}k1imB6RgW2lmT zjrzqri>kyVmZj(8QTKCDFXcQe#4=PR98^NvPz&6bLjASpy>uw^!>EAY;wrp?ns6>> zMH4)NByY;F6zfqhWiP7qM^N((qF29|$j7)@t}2v{XaNp&GQ**3yvdk9dnL`0$xJx z{Z-W7+(tdR)7pg*I{!U1vbhmN zmFTK{;5ur;F(emr2l<#8>GvvDj9U3pRASYrfX%3Pr447}W>f_}LH+Uh9F_11Od`Iy zU~k+&ZN;Ccm8+iGf*4eV=Ae$}T+~*S*#1V;I6o@kmu>%M>sD0Y0BZam+uw(dN^+Ej zj>}i5%rBub{28^fzcCG`@WyGyIq1S-RAP^#PR|Nd0zOnF{WyN?Q1fgB z;AAWdOw3#mn3q{Mue`S1v%Y=<6Af%?ZOif0wytUL`CFS$cei=UP9O5O(c>elhVd|s VZR_frS{s5jS*t^W!?PMg{sSv*Cp7>7 diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.po b/sphinx/locale/lv/LC_MESSAGES/sphinx.po index 381aa4b56..312bc5521 100644 --- a/sphinx/locale/lv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lv/LC_MESSAGES/sphinx.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 1.0.7\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2011-09-21 10:06+0200\n" +"POT-Creation-Date: 2013-04-01 11:57+0200\n" "PO-Revision-Date: 2011-05-10 16:40+0200\n" "Last-Translator: alexander smishlajev \n" "Language-Team: lv \n" @@ -21,18 +21,12 @@ msgstr "" msgid "%s %s documentation" msgstr "" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#, python-format -msgid "%B %d, %Y" -msgstr "%d.%m.%Y" - -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1510 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1513 #, python-format msgid "see also %s" msgstr "" @@ -42,6 +36,12 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "%d.%m.%Y" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "Iebūvētie" @@ -50,24 +50,24 @@ msgstr "Iebūvētie" msgid "Module level" msgstr "Moduļu līmenis" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "%d.%m.%Y" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Vispārējs indekss" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:309 msgid "index" msgstr "indekss" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:369 msgid "next" msgstr "nākošais" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "iepriekšējs" @@ -75,41 +75,38 @@ msgstr "iepriekšējs" msgid " (in " msgstr " (iekš " -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr "Sekcijas autors: " -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "Moduļa autors: " -#: sphinx/directives/other.py:140 +#: sphinx/directives/other.py:142 msgid "Code author: " msgstr "Koda autors: " -#: sphinx/directives/other.py:142 +#: sphinx/directives/other.py:144 msgid "Author: " msgstr "Autors: " -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "Skat.arī" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "Atgriež" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "Atgriežamais tips" @@ -138,58 +135,62 @@ msgstr "%s (C tips)" msgid "%s (C variable)" msgstr "%s (C mainīgais)" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 msgid "member" msgstr "loceklis" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" msgstr "makross" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "tips" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 msgid "variable" msgstr "mainīgais" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "Izmet" + +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ klase)" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ tips)" -#: sphinx/domains/cpp.py:938 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ loceklis)" -#: sphinx/domains/cpp.py:990 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ funkcija)" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "klase" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "%s() (iebūvēta funkcija)" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metods)" @@ -197,14 +198,14 @@ msgstr "%s() (%s metods)" #: sphinx/domains/javascript.py:109 #, fuzzy, python-format msgid "%s() (class)" -msgstr "%s (C++ klase)" +msgstr "%s() (klase)" #: sphinx/domains/javascript.py:111 #, python-format msgid "%s (global variable or constant)" msgstr "%s (globālais mainīgais vai konstanta)" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atributs)" @@ -213,15 +214,11 @@ msgstr "%s (%s atributs)" msgid "Arguments" msgstr "Argumenti" -#: sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "Izmet" - -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "dati" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "atributs" @@ -233,58 +230,58 @@ msgstr "Mainīgie" msgid "Raises" msgstr "Ceļ" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "%s() (moduļī %s)" -#: sphinx/domains/python.py:258 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "%s (iebūvētais mainīgais)" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "%s (moduļī %s)" -#: sphinx/domains/python.py:275 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "%s (iebūvēta klase)" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "%s (klase iekš %s)" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metods)" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statiskais metods)" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statiskais metods)" -#: sphinx/domains/python.py:341 +#: sphinx/domains/python.py:340 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s klases metods)" -#: sphinx/domains/python.py:344 +#: sphinx/domains/python.py:343 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klases metods)" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s atributs)" @@ -302,50 +299,49 @@ msgstr "" msgid "modules" msgstr "moduļi" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "Nav ieteicams" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "izņēmums" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "metods" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 msgid "class method" msgstr "klases metods" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "statiskais metods" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "modulis" -#: sphinx/domains/python.py:695 -#, fuzzy +#: sphinx/domains/python.py:696 msgid " (deprecated)" -msgstr "Nav ieteicams" +msgstr "" -#: sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "%s (direktīva)" -#: sphinx/domains/rst.py:57 +#: sphinx/domains/rst.py:55 #, python-format msgid "%s (role)" msgstr "%s (role)" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "direktīva" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 msgid "role" msgstr "role" @@ -359,70 +355,97 @@ msgstr "apkārtnes mainīgais; %s" msgid "%scommand line option; %s" msgstr "%skomandrindas opcija; %s" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "glosārija termins" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "gramatiskais marķieris" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "atsauces virsraksts" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "apkārtnes mainīgais" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "programmas opcija" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 #: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "Indekss" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "Moduļu indekss" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Atlases lapa" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr " Bāzes: %s" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr "aizstājvārds klasei :class:`%s`" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "[kods]" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "Jāizdara" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<> atrodas iekš %s, rinda %d.)" -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "sākotnējs ieraksts" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "[kods]" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "[dokumenti]" @@ -473,7 +496,7 @@ msgid "Note" msgstr "Piezīme" #: sphinx/locale/__init__.py:162 -msgid "See Also" +msgid "See also" msgstr "Skat.arī" #: sphinx/locale/__init__.py:163 @@ -519,25 +542,26 @@ msgstr "priekšraksts" msgid "built-in function" msgstr "iebūvēta funkcija" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "Saturs" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Meklēt" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "Izpildīt" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." msgstr "Ievadiet meklējamus terminus vai moduļa, klases vai funkcijas vārdu." -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "Rādīt izejas tekstu" @@ -545,6 +569,19 @@ msgstr "Rādīt izejas tekstu" msgid "Overview" msgstr "Apskats" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +#, fuzzy +msgid "the documentation for" +msgstr "meklēt šajā dokumentācijā" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "Indeksi un tabulas:" @@ -655,13 +692,13 @@ msgstr "nākoša tēma" msgid "next chapter" msgstr "nākoša sadaļa" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Lai iespējotu meklēšanu, lūdzu aktivizēt JavaScript." -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -674,17 +711,21 @@ msgstr "" " visi ievadītie vārdi. Dokumenti, kuros ir tikai daļa no ievadītiem\n" " vārdiem, netiks atlasīti." -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "meklēt" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "Atlases rezultāti" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." -msgstr "Nav rezultātu, atbilstošu Jūsu atlasei." +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -722,25 +763,43 @@ msgstr "Izmaiņas iekš C API" msgid "Other changes" msgstr "Citas izmaiņas" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "Pastāvīga norāde šo virsrakstu" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "Pastāvīga norāde uz šo definīciju" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "Paslēpt atlases vārdus" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +#, fuzzy +msgid "Searching" +msgstr "meklēt" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "Izplest sānjoslu" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "Savērst sānjoslu" @@ -748,24 +807,28 @@ msgstr "Savērst sānjoslu" msgid "Contents" msgstr "Saturs" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "Izlaidums" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "Vēres" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "turpinājums no iepriekšējās lappuses" -#: sphinx/writers/latex.py:681 +#: sphinx/writers/latex.py:710 msgid "Continued on next page" msgstr "Turpnājums nākošā lappusē" -#: sphinx/writers/text.py:437 +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 +#, python-format +msgid "[image: %s]" +msgstr "[attēls: %s]" + +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[attēls]" - diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.js b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.js index 9f3099224..38040cffb 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "nb_NO", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "Skjul s\u00f8keresultat", "Permalink to this definition": "Permalink til denne definisjonen", "Expand sidebar": "Utvid sidepanelet", "Permalink to this headline": "Permalink til denne oversikten", "Collapse sidebar": "Skjul sidepanelet"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "nb_NO", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "Skjul s\u00f8keresultat", "Permalink to this definition": "Permalink til denne definisjonen", "Permalink to this headline": "Permalink til denne oversikten"}}); \ No newline at end of file diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index 88a5343951af85bc383e3b8a8dbb242e76b16770..b57c9f9e0b252694931311e5839fa6264528ea2b 100644 GIT binary patch delta 3669 zcmd7TYiv|S7{>7_Z3TgH*%qW!?5WT~m2S!%D&B}f5lRsSJ~SxD?PSj@|J95;tXzaG}7bkdJBQOC2s_H_W1!0$h)352E_thMHh9_Qu)R0~=7| zR-%JzQR8=_;(vxp_z3o9eshuw4g49e!%jrcMF%xO8TQ2~*ayQ%SM#`iz6RBQ6OP2a zn2$fz ze5nF^aR45)?X9T9GCAt1WB|2Axu^sSQ1MDo3o1`>p^4_8I<7zsT!Vbf3w&wdo2Uuj z!?Ab(wKeHvt?K8a7E+4pKL)k(yHORMiHhrDI@X~ok&4(3^HB*bMg?4ojrbgDU_KkG zz(uHjL#<_~iN_&1nMv3WXQL*56qU$I)cAF%GqeS%RLZ=?g(|QMmC+H@z+u^-yai|2#QCl$;^+PqwK7S0gpyh3{|Eq1obEttYqY~MK3b55a z-+`LA1+^6)+55w&ihX0-&!M*FGU~AAlD*;;qb3fbelJGoUhjV;7b?vR)XE=1tt^5X zxCk|I3M0H`D^ZDEAd1Fy;6!OpyP;MZK*bqhy&YAViOBghm8gV6sPktMTqx5gQGs7V zC9nlG!MpbPe(RU0Jw0jfe?;}~z_Jyu2eMnH5H-kj0uWP$fH!T7eD>mnH}Gyc9LTL{wrkZF?9;a{oBy<1W-M=~2|e`t+mzD$M|n z?9F%+YN8paiRw|Me*#tF)u@5bpaQK&mHIep;?t=9mr&!=ZeSa*7xE&RNvM7Hjc&;)bkot;JK)NOYjj~j)j=+v{$$o)o(az zL8bgKmzZwy+iT{5RAdcjISH?KfD9 zu`Pl2`;-~ag)+GpHDEew1s-Z|qo@EY(7|VsqL^kJiic1O$mHnjwamoTgHbX{;P=Asgwfl4Tb zTF6pVzg4z<9qJ5i!?yQ-Hy4`Ved__##Gj)Ae2sb=PGBRRM^$PO%T%C7)ERog`l@vc zYU{S47WN@3?rGF(`U9r)zGremwC4fTeJ*lVm%B;XtV5*l zg%Xj4j!PbG9T&!u0~cuS2oLDuMPtd@Iw#~NyxLei?D;`c#ccj8Q&k&x>+8x$e^y6( z(_EF4o7UO&6Hce`uF+Lhvcop(78~Ds0BLh{pV2Q526Ab!Au;&dH4fr-XG}3 zDb#!y(P)}NRKh;YB)+Mnp^3Gagm;h=zu4<@sI$Ce?Vl|DxtyLOv#*`s!`TLEZPE0#>4qV$F<>simQX{iuvvQ9mppd%qWzd7t%F>tWRR zcTov^j7sct+y5;p;3-t8NA2|ls?vW=-{<_}c!YHX>8OXT2(@4ZDsUC*{jRpxepE%; zP&<1BwWFs{^Y)?w_h1`u$w5?NNt8qLT&N?<$2`6NOKE7KYU?IcMH-OfHhxsbkD^Mu z8%^3BP!5FJ75cXxZaKm*n@go zUbDV~n)fMc-YF!8IfH!6MZUCwOkOEfxDeI98kIo90^WaRw#{}p=;L}nF2-ThFX1FE z!{w}^g*T%X4x>u_463BhqbksYn%9r2>}gb-3Do$DsQI%NQvWg<**wZT4`w}Tpda;g z@8C-h*$b$^eW(RL#5-^Zb><1YI$AgdH7*Owu>{rMf?79-8uui2;%d3Qt zaXJBey%v?oCe(y`Q9Ecxon<>}emAx^-Khy9SkT9cp8ZsE6<&d;f9Nyek6R%9qW6xlPsGLo247SZqsEJH^7NxZNLmh45 z&~j7vU~o$)TArC56TL6%v6$o%Z}Iis(h_$`@eRek=(y{;xM*R{Xj~*auRSuJR~D)D zltp%W>bzCW;jlaO\n" "Language-Team: \n" @@ -18,18 +21,12 @@ msgstr "" msgid "%s %s documentation" msgstr "" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#, python-format -msgid "%B %d, %Y" -msgstr "%B %d, %Y" - -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1510 #, python-format msgid "see %s" msgstr "se %s" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1513 #, python-format msgid "see also %s" msgstr "se også %s" @@ -39,6 +36,12 @@ msgstr "se også %s" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "%B %d, %Y" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "Innebygde" @@ -47,24 +50,24 @@ msgstr "Innebygde" msgid "Module level" msgstr "Modulnivå" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Hovedindex" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:309 msgid "index" msgstr "index" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:369 msgid "next" msgstr "neste" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "forrige" @@ -72,41 +75,38 @@ msgstr "forrige" msgid " (in " msgstr "(i " -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr "Seksjon forfatter: " -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "Modul forfattar: " -#: sphinx/directives/other.py:140 +#: sphinx/directives/other.py:142 msgid "Code author: " msgstr "Kildekode forfatter: " -#: sphinx/directives/other.py:142 +#: sphinx/directives/other.py:144 msgid "Author: " msgstr "Forfatter: " -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "Se også" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "Parametere" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "Returnere" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "Retur type" @@ -135,58 +135,62 @@ msgstr "%s (C-type)" msgid "%s (C variable)" msgstr "%s (C-variabel)" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 msgid "function" msgstr "funksjon" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 msgid "member" msgstr "medlem" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "type" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 msgid "variable" msgstr "variabel" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "Kaster" + +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ klasse)" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ type)" -#: sphinx/domains/cpp.py:938 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ medlem)" -#: sphinx/domains/cpp.py:990 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ funksjon)" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "klasse" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "%s() (innebygd funksjon)" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metode)" @@ -201,7 +205,7 @@ msgstr "%s() (klasse)" msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribut)" @@ -210,15 +214,11 @@ msgstr "%s (%s attribut)" msgid "Arguments" msgstr "Argument" -#: sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "Kaster" - -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "attributt" @@ -230,58 +230,58 @@ msgstr "Variabler" msgid "Raises" msgstr "Hever" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modul %s)" -#: sphinx/domains/python.py:258 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "%s (innebygd variabel)" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "%s (i modul %s)" -#: sphinx/domains/python.py:275 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "%s (innebygd klasse)" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse i %s)" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metode)" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statisk metode)" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statisk metode)" -#: sphinx/domains/python.py:341 +#: sphinx/domains/python.py:340 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s klassemetode)" -#: sphinx/domains/python.py:344 +#: sphinx/domains/python.py:343 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassemetode)" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s attributt)" @@ -299,49 +299,49 @@ msgstr "Python Modulindex" msgid "modules" msgstr "moduler" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "Foreldet" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "untak" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "metode" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 msgid "class method" msgstr "klassemetode" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "statisk metode" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "modul" -#: sphinx/domains/python.py:695 +#: sphinx/domains/python.py:696 msgid " (deprecated)" msgstr " (foreldet)" -#: sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "%s (direktiv)" -#: sphinx/domains/rst.py:57 +#: sphinx/domains/rst.py:55 #, python-format msgid "%s (role)" msgstr "%s (rolle)" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "direktiv" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 msgid "role" msgstr "rolle" @@ -355,70 +355,97 @@ msgstr "miljøvariabel; %s" msgid "%scommand line option; %s" msgstr "%skommandolinje valg; %s" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "ordliste" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "grammatikk token" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "referanse-etikett" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "miljøvariabel" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "programvalg" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 #: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "Index" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "Modulindex" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Søkeside" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr " Baser: %s" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr "alias for :class:`%s`" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "[kilde]" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(Den <> finnes i %s, på linje %d.)" -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "opprinnelig oppføring" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "[kilde]" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "[dokumentasjon]" @@ -469,7 +496,7 @@ msgid "Note" msgstr "Obs" #: sphinx/locale/__init__.py:162 -msgid "See Also" +msgid "See also" msgstr "Se også" #: sphinx/locale/__init__.py:163 @@ -515,25 +542,26 @@ msgstr "uttrykk" msgid "built-in function" msgstr "innebygde funksjoner" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "Innholdsfortegnelse" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Søk" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "Gå" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." msgstr "Angi søkeord eller modul-, klasse- eller funksjonsnavn." -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "Vis kildekode" @@ -541,6 +569,19 @@ msgstr "Vis kildekode" msgid "Overview" msgstr "Oversikt" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +#, fuzzy +msgid "the documentation for" +msgstr "søk i dette dokumentet" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "Index og tabeller" @@ -626,9 +667,7 @@ msgstr "Sist oppdatert %(last_updated)s." msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" -"Lagd med Sphinx " -"%(sphinx_version)s." +msgstr "Lagd med Sphinx %(sphinx_version)s." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -651,34 +690,38 @@ msgstr "Neste emne" msgid "next chapter" msgstr "neste kapittel" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Vennligst aktiver JavaScript for å aktivere søk." -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" " function will automatically search for all of the words. Pages\n" " containing fewer words won't appear in the result list." msgstr "" -"her kan du søke blant disse dokumentene. Angi søkeord nedfor og " -"klikk \"søk\".\n" +"her kan du søke blant disse dokumentene. Angi søkeord nedfor og klikk " +"\"søk\".\n" " Søket må treffe på samtlige søkeord." -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "søk" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "Søkeresultat" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." -msgstr "Ditt søk ga ingen resultater." +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -716,25 +759,43 @@ msgstr "Endringer i C API" msgid "Other changes" msgstr "Andre endringer" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "Permalink til denne oversikten" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "Permalink til denne definisjonen" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "Skjul søkeresultat" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +#, fuzzy +msgid "Searching" +msgstr "søk" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "Utvid sidepanelet" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "Skjul sidepanelet" @@ -742,23 +803,28 @@ msgstr "Skjul sidepanelet" msgid "Contents" msgstr "Innhold" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "Utgivelse" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "Fotnoter" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "fortsettelse fra forrige side" -#: sphinx/writers/latex.py:681 +#: sphinx/writers/latex.py:710 msgid "Continued on next page" msgstr "Fortsetter på neste side" -#: sphinx/writers/text.py:437 +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 +#, fuzzy, python-format +msgid "[image: %s]" +msgstr "[bilde: %s]" + +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[bilde]" diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.js b/sphinx/locale/ne/LC_MESSAGES/sphinx.js index d45d217eb..0860676a9 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ne/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "ne", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "\u0916\u094b\u091c\u0947\u0915\u094b \u0928\u0924\u093f\u091c\u093e\u0939\u0930\u0941 \u0932\u0941\u0915\u093e\u0909\u0928\u0941\u0939\u094b\u0938\u094d", "Permalink to this definition": "\u092f\u094b \u0905\u0930\u094d\u0925\u0915\u094b \u0932\u093e\u0917\u093f \u092a\u0930\u094d\u092e\u093e\u0932\u093f\u0928\u094d\u0915", "Expand sidebar": "\u0938\u093e\u0907\u0921\u092c\u0930 \u0920\u0941\u0932\u094b \u092c\u0928\u093e\u0909\u0928\u0941\u0939\u094b\u0938\u094d", "Permalink to this headline": "\u092f\u094b \u0936\u093f\u0930\u094d\u0937\u0915\u0915\u094b \u0932\u093e\u0917\u093f \u092a\u0930\u094d\u092e\u093e\u0932\u093f\u0928\u094d\u0915 \u0964 ", "Collapse sidebar": "\u0938\u093e\u0907\u0921\u092c\u0930 \u0938\u093e\u0928\u094b \u092c\u0928\u093e\u0909\u0928\u0941\u0939\u094b\u0938\u094d"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "ne", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "\u0916\u094b\u091c\u0947\u0915\u094b \u0928\u0924\u093f\u091c\u093e\u0939\u0930\u0941 \u0932\u0941\u0915\u093e\u0909\u0928\u0941\u0939\u094b\u0938\u094d", "Permalink to this definition": "\u092f\u094b \u0905\u0930\u094d\u0925\u0915\u094b \u0932\u093e\u0917\u093f \u092a\u0930\u094d\u092e\u093e\u0932\u093f\u0928\u094d\u0915", "Permalink to this headline": "\u092f\u094b \u0936\u093f\u0930\u094d\u0937\u0915\u0915\u094b \u0932\u093e\u0917\u093f \u092a\u0930\u094d\u092e\u093e\u0932\u093f\u0928\u094d\u0915 \u0964 "}}); \ No newline at end of file diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index 0e3576638f5ad91379563a1bedf459afc00076bb..f7423d18ed157da95f84bf9cf114cecf9b674a5c 100644 GIT binary patch delta 3674 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 QHkv)f6Qja6efOgN18BZfX#fBK diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.po b/sphinx/locale/ne/LC_MESSAGES/sphinx.po index 3ded0ab09..2add529a5 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ne/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 1.1pre/47a94f723e80+\n" "Report-Msgid-Bugs-To: sharma.arati11@gmail.com\n" -"POT-Creation-Date: 2011-09-21 10:06+0200\n" +"POT-Creation-Date: 2013-04-01 11:57+0200\n" "PO-Revision-Date: 2011-09-21 10:13+0200\n" "Last-Translator: Tika Karki \n" "Language-Team: ne_NP \n" @@ -22,18 +22,12 @@ msgstr "" msgid "%s %s documentation" msgstr "" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#, python-format -msgid "%B %d, %Y" -msgstr "%B %d, %Y" - -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1510 #, python-format msgid "see %s" msgstr "%s हेर्नुहोस्" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1513 #, python-format msgid "see also %s" msgstr "%s पनि हेर्नुहोस् " @@ -43,6 +37,12 @@ msgstr "%s पनि हेर्नुहोस् " msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "%B %d, %Y" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "बिइल्टिन्स" @@ -51,24 +51,24 @@ msgstr "बिइल्टिन्स" msgid "Module level" msgstr "मडुलको तह" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "सामान्य अनुसुची" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:309 msgid "index" msgstr "अनुसुची" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:369 msgid "next" msgstr "पछिल्लो" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "अघिल्लो" @@ -76,41 +76,38 @@ msgstr "अघिल्लो" msgid " (in " msgstr "(in" -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr "सेक्सनको लेखक" -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "मडुलको लेखक" -#: sphinx/directives/other.py:140 +#: sphinx/directives/other.py:142 msgid "Code author: " msgstr "Codeको लेखक " -#: sphinx/directives/other.py:142 +#: sphinx/directives/other.py:144 msgid "Author: " msgstr "लेखक" -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "पनि हेर्नुहोस" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "Parameters" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "Returns" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "Return type" @@ -139,58 +136,62 @@ msgstr "%s (C किसिम)" msgid "%s (C variable)" msgstr "%s (C चल)" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 msgid "function" msgstr "फन्क्सन" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 msgid "member" msgstr "सदस्य" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" msgstr "बृहत" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "किसिम" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 msgid "variable" msgstr "चल" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "Throws" + +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ कक्षा)" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ किसिम)" -#: sphinx/domains/cpp.py:938 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ सदस्य)" -#: sphinx/domains/cpp.py:990 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "%s (C++कार्य)" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "कक्षा" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "%s() (built-in function)" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s विधी)" @@ -205,7 +206,7 @@ msgstr "%s() (कक्षा)" msgid "%s (global variable or constant)" msgstr "%s (global variable or constant)" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribute)" @@ -214,15 +215,11 @@ msgstr "%s (%s attribute)" msgid "Arguments" msgstr "Arguments" -#: sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "Throws" - -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "attribute" @@ -234,58 +231,58 @@ msgstr "चलहरू" msgid "Raises" msgstr "Raises" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "%s() (in मडुल %s)" -#: sphinx/domains/python.py:258 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "%s (built-in चल)" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "%s (in मडुल %s)" -#: sphinx/domains/python.py:275 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "%s (built-in कक्षा)" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "%s (कक्षा in %s)" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s विधी)" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s static विधी)" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s static विधी)" -#: sphinx/domains/python.py:341 +#: sphinx/domains/python.py:340 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s कक्षा विधी)" -#: sphinx/domains/python.py:344 +#: sphinx/domains/python.py:343 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s कक्षा विधी)" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s attribute)" @@ -303,49 +300,49 @@ msgstr "Python Module Index" msgid "modules" msgstr "modules" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "Deprecated" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "अपबाद" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "विधी" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 msgid "class method" msgstr "कक्षा विधी" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "static विधी" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "मडुल" -#: sphinx/domains/python.py:695 +#: sphinx/domains/python.py:696 msgid " (deprecated)" msgstr "(deprecated)" -#: sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "%s (निर्देशिक)" -#: sphinx/domains/rst.py:57 +#: sphinx/domains/rst.py:55 #, python-format msgid "%s (role)" msgstr "%s (भूमिका)" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "निर्देशिक" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 msgid "role" msgstr "भूमिका" @@ -359,70 +356,97 @@ msgstr "environment variable; %s" msgid "%scommand line option; %s" msgstr "%scommand line option; %s" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "शब्द-अर्थमा भएको" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "grammar token" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "सन्दर्व सामग्री" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "environment variable" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "कार्यक्रमका बिकल्प" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 #: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "अनुसुची" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "मडुल अनुसुची" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "पानामा खोज्नुहोस्" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr "Bases: %s" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr "alias of :class:`%s`" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "[स्रोत]" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<> यहाँ %s, line %d रहेको छ । " -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "मौलिक इन्ट्री" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "[स्रोत]" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "[docs]" @@ -473,8 +497,8 @@ msgid "Note" msgstr "टिप्पणी" #: sphinx/locale/__init__.py:162 -msgid "See Also" -msgstr "पनि हेर्नुहोस्" +msgid "See also" +msgstr "पनि हेर्नुहोस" #: sphinx/locale/__init__.py:163 msgid "Tip" @@ -519,25 +543,26 @@ msgstr "भनाई" msgid "built-in function" msgstr "built-in फन्क्सन" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "विषयसूची" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "खोज्नुहोस् " -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "जानुहोस्" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." msgstr "खोज्ने टर्मस् अथवा एक मडुल्, कक्षा अथवा फन्क्सनको नाम लेख्नुहोस " -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "स्रोत देखाउनुहोस् " @@ -545,6 +570,19 @@ msgstr "स्रोत देखाउनुहोस् " msgid "Overview" msgstr "पुनरावलोकन " +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +#, fuzzy +msgid "the documentation for" +msgstr "यो डकुमेन्ट खोज्नुहोस्" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "इन्डीसीस्स र तलिका" @@ -653,13 +691,13 @@ msgstr "पछिल्लो विषय" msgid "next chapter" msgstr "पछिल्लो खन्ड" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "खोज्ने कार्य आगाडी बढाउनको लागि जाभास्कृप्ट चलाईदिनुहोस " -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -671,17 +709,21 @@ msgstr "" "फन्क्सनले आफै सबै शब्दहरु खोज्छ । \n" "थोरै शब्दहरु भएको पानाहरु नतिजामा देखिन्न । " -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "खोज्नुहोस्" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "खोजेको नतिजा" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." -msgstr "तपाईंले खोजेको कुरा कुनै नतिजासँग मिलेन " +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -719,25 +761,43 @@ msgstr "C API का परिवर्तनहरु " msgid "Other changes" msgstr "अरु परिवर्तनहरु " -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "यो शिर्षकको लागि पर्मालिन्क । " -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "यो अर्थको लागि पर्मालिन्क" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "खोजेको नतिजाहरु लुकाउनुहोस्" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +#, fuzzy +msgid "Searching" +msgstr "खोज्नुहोस्" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "साइडबर ठुलो बनाउनुहोस्" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "साइडबर सानो बनाउनुहोस्" @@ -745,24 +805,28 @@ msgstr "साइडबर सानो बनाउनुहोस्" msgid "Contents" msgstr "विषयसूची" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "रीलीज" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "फूट्नोट्स" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "अघिल्लो पानासँग जोडीएको" -#: sphinx/writers/latex.py:681 +#: sphinx/writers/latex.py:710 msgid "Continued on next page" msgstr "अर्को पानासँग जोडीएको" -#: sphinx/writers/text.py:437 +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 +#, fuzzy, python-format +msgid "[image: %s]" +msgstr "[चित्र: %s]" + +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[चित्र]" - diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.js b/sphinx/locale/nl/LC_MESSAGES/sphinx.js index e33900afb..6ec25ffbd 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "nl", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "Zoekresultaten verbergen", "Permalink to this definition": "Permalink naar deze definitie", "Expand sidebar": "", "Permalink to this headline": "Permalink naar deze titel", "Collapse sidebar": ""}}); \ No newline at end of file +Documentation.addTranslations({"locale": "nl", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "Zoekresultaten verbergen", "Permalink to this definition": "Permalink naar deze definitie", "Permalink to this headline": "Permalink naar deze titel"}}); \ No newline at end of file diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index 4b43d500a655ae259fe4c95332b9ffa7c5c6f0e9..a16f99904e31740d35a4e23a6ba4c3e59282de9c 100644 GIT binary patch delta 3537 zcmd7Td2EzL7{~D`Z8>@XU2Y2WrOPaw=TP751=);B9I6O z1~v$3h++tG1khMKLK7qe6%Yj@l4t-;fJ6{f62u_U`2Dr7k>GzOCX(%bX6BvanP=u* z)=W4&C3e}BwAJu$AAjBW^CqkI_rC)v#-vd_i0OC))#W5+I<$0PH`%xnsp*n@n`Qoht-CAP+ms0nsB?T1kPkD?YhgB|fZY>U65#U<9?$deja+LfhnKLNNa3{ z*-kwNlc*0tjUR!UcOq&7WsY9d_}UEe-;=^78no8isFWXb>Yt%fddX?Oj@rRpP))POJ`ex+QB5$fElPA zFGQub8Z~h(CgLho2G*h$UXPk*3$DjqsQ&q+L-Q4*`o%^&g-NIdrz3sM)7Tw@s0BBo z0@#L{U?1vi-$iAp0k!j!s6eiv#@#^8cL()Wwc;YFJsVjsX7VWL%!(byq9&e>if|5U zfkmhv9KZAY71WNlI__}Xg&MaX705fN@$Wm&PoOsXDYn-8f8J@hf=b!V#s|jyjyjUG zPED7yFKWRO)bGGZr#=srk!Mgl^P@Jj3>Cl{)Pn19GjG!tR6xC%Bu(#sAqDMt1Zszm zqb90A4P5FxuSM>oc>#44aa3w|qb}1C)WoMy0bD=@b``a;pRw_c=Eka?fiX2?Q_z4S zfjW{8undno&okJb+B>5b$i|^K40ZM^P?=ka>i04x za0gyRrZC%MY*!uLL+#`v)KBU+sMqBZYNETSU$FbAOfMNxXM7TM$1Y-Tyom}RgPV>q)187A>etj@3Q;>6j`THikz+HpsD9f}NAo%=us2bG zG@vs1F%HA8P)F(F#%kyNQRBy=Hu@x{>-}FyK@s^;6R*HTjG+dsMx|;4>W*wj{iNK0q5g$APn7=?PxCOXc>Wa?hj_$t)=5sdL?R`HdLdr$!!bUf_XfSUL?YN6Ap zJMyLT{F>8#6Lkc?IPFQfO=q8qYR^R7mHtlq#9XdQa~kH-px0~>s{Wkgi>Qd#VdF0z zDigb%_Wil_DJfT*W%Tt0temj5EGOL05zcx2blAe1QrpY`a6A%KZFzw#z%y zTITjg?NV#Bf4RFRY?aNLJUQRYup`k>;IBtxf}v1wx$U(=_F_9^2R!z}J<9Cm4?K*= zToZ~H`vSgjrR~kL76+pNufnNzSJ-{S{j4SKh^JD4L@I437;9MC#12Hl`PMYQ?GD?_^ei((LpD>nBbM9mx0VM( z-mvASDO_#){Y32{eA^T8*H~`iXzW-MjP_Zkwf#Jxiya6?D=ICIJ7QM^Lq0p4Z^~IM zyug%KgxuAYrG&qrg;S}oYS$$p#T|}V(P}Rv>R)KTDk1%`0R;mG6ck#8g{8%V>sxos zPx|L6#BZgQ)vxP1HrX{TWIucur?Y(j$zkMKBZtjwJaOyaok^8d8b4r7`G22D|DJsk OQvDAc%GB)Qgg*h3M)-~Z delta 2759 zcmYM#eN5F=9LMo<2~3Gg#DhG@!{yl$2tq;B5nu(?z|p{maBBoN-M~OV*(khXI&HD} zaLXwpr1`K==Ez$v$xWAKw&`Y@e^?;MX0<8yN6jr+QSXoUwAl6cI_La;=X}rkp7Z

      &qR3OM~1&6{EO#bWRPnA|Ahn_6GGLAPK-l6vJg`+2j^k6wa(smV+8F@_!N3D z68Gbicmf&MW6o00z?bj|{J}nO3qz^jM-A|oZ4c!kJ)ejQkcIQH1jBF*s^3O*VJE8p zA>?OHa?x{VF`D@1I|>?T665d>jKNT*rIFJbMZG^fJw|U z3YX)f4B=erby$pzsuSNFrNGY&b9o#`Q60ZV4SW+dV<*ef1QSsM6`@vMh6=C_E3pCR z;AcqE%$KMMUBW_~L~UU-`{1E$5-4bZENzT~)u9G1Br35@6)FSkF#ua_y&VIo??(0S zMGbrqwSa!>8C3r(n2h77P_tp=pKO^>Hb@N%knEd9sP;nC3SK~dW|ghiqXIXhCb$`u z5f3Wx9#p>p)S(_iW$rST;S_4&Y2oBQjY597Kj2za>fETUXhuz_!`8Rk`+HEQd9S^H z3^m{gD%BT|MVc|x#HOteP~*)ab1=ak@}ktmqXK8(W0;LvVIFEC1(<=w_-KN*y%`mt z12v&;Ouz%EaYs;rMp1#UqPFNJD#M-$3QEyERKU56qK;0~fYDs^He}iM7f}IMp;Eur z`W9;74%CFZP~V3gw*5G2;-{=<{Cdne3hHnXHGwOrnO*ZgV17acoI<7euB|^rr8s~M zS9=61^(m;cRE!E(g?epkZM_ARiLE$K@Ba=8T1hWz0)41}M{qxH!>6bTEsOSBj#_CA zYK5<(GS-dix7*&|hitPsh}wc7WX|R*)P%2Nh~EE63Yx$)YGyO2mCYgVT1hmjo@wh# zQO{SPPW5Wko^M74+KUSC38vzRZNGsU{})^T9X(1}Ao!)!-> z=0h&}0-nYs{Mpunm`yJA6{vAHp~ih5wG{)X3?0Xp@N^vcSHlAuH1Mo_Foxdx03~4& z7N9cFiX_MMpawjQ{LCO1ZNYi0!po@pQJieG$D_v2z~xwi+Uj@X$-h$7V;|gy4)(kc zm4SXPx<86q$@i!)-~^IAGld#x2KB-D2X!`rNh8O`gduA(8L0lHn2D=VncL=}pu;tQ z8t@cqkG`?(*HJ6Dg*r^XqV{+O_11(iiUy8EJ@+&!a6W26FC%j@HK+`<;q%ywI$NHr z6w)Y+qXIizex0ZQv9_LU>)EK(EbZ3OCsBJA>I@a3CRBzx^=nWWc?T767wQlnLiHcU z5WW9C3fiNKsJ$FRb-a!0co%gT|3(FhRhPx-}oQ_ob-*<(Q7uw!IS-xZAo@ z65o74K?5E@1?WTV@lid1U)c8Zs1$!|+i#%uaLl&fL+$m9ZI2-h>c0?qA%*QBc4JR0g)7+PhMHCxh<<_y(OtLEih}Z+K5clz3Akp9w5&Zg25cM84u3N=*!H zbGL74?r6_3b&V|z?Y{D;Sch-Z{A~_rUUqI#_H%izyxe8E1-?I{a{|4C&Pv~|_?1E4 z@#GEOk5iUzA<&RL`L9wOv Pzc`g?nGRo1dcNadL{$?y diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index 77de479de..659d4dffb 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 0.5\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2011-09-21 10:06+0200\n" +"POT-Creation-Date: 2013-04-01 11:57+0200\n" "PO-Revision-Date: 2011-01-22 14:41+0100\n" "Last-Translator: Marijn van der Zee \n" "Language-Team: nl \n" @@ -21,18 +21,12 @@ msgstr "" msgid "%s %s documentation" msgstr "%s %s documentatie" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#, python-format -msgid "%B %d, %Y" -msgstr "%d. %B %Y" - -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1510 #, python-format msgid "see %s" msgstr "zie %s" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1513 #, python-format msgid "see also %s" msgstr "zie %s" @@ -42,6 +36,12 @@ msgstr "zie %s" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "%d. %B %Y" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "Builtins" @@ -50,24 +50,24 @@ msgstr "Builtins" msgid "Module level" msgstr "Moduleniveau" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "%d.%b.%Y" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Algemene index" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:309 msgid "index" msgstr "Index" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:369 msgid "next" msgstr "volgende" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "vorige" @@ -75,42 +75,39 @@ msgstr "vorige" msgid " (in " msgstr "" -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr "Auteur van deze sectie: " -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "Auteur van deze module: " -#: sphinx/directives/other.py:140 +#: sphinx/directives/other.py:142 #, fuzzy msgid "Code author: " msgstr "Auteur van deze module: " -#: sphinx/directives/other.py:142 +#: sphinx/directives/other.py:144 msgid "Author: " msgstr "Auteur: " -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "Zie ook" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "Parameters" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "Returns" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "Return type" @@ -139,58 +136,62 @@ msgstr "%s (C type)" msgid "%s (C variable)" msgstr "%s (C-variabele)" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 msgid "function" msgstr "functie" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 msgid "member" msgstr "member" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "type" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 msgid "variable" msgstr "variabele" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "" + +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ klasse)" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ type)" -#: sphinx/domains/cpp.py:938 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ member)" -#: sphinx/domains/cpp.py:990 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ functie)" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "klasse" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "%s() (geïntegreerde functie)" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s methode)" @@ -205,7 +206,7 @@ msgstr "%s() (klasse)" msgid "%s (global variable or constant)" msgstr "%s (globale variabele of constante)" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribuut)" @@ -215,15 +216,11 @@ msgstr "%s (%s attribuut)" msgid "Arguments" msgstr "Parameters" -#: sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "" - -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "attribuut" @@ -236,58 +233,58 @@ msgstr "Variabele" msgid "Raises" msgstr "Veroorzaakt" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "%s() (in module %s)" -#: sphinx/domains/python.py:258 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "%s (geïntegreerde variabele)" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "%s (in module %s)" -#: sphinx/domains/python.py:275 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "%s (geïntegreerde klasse)" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "%s (klasse in %s)" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s methode)" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statische methode)" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statische methode)" -#: sphinx/domains/python.py:341 +#: sphinx/domains/python.py:340 #, fuzzy, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s methode)" -#: sphinx/domains/python.py:344 +#: sphinx/domains/python.py:343 #, fuzzy, python-format msgid "%s() (%s class method)" msgstr "%s() (%s methode)" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s attribuut)" @@ -306,49 +303,49 @@ msgstr "Module-index" msgid "modules" msgstr "modules" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "Verouderd" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "exceptie" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 msgid "class method" msgstr "" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "statische methode" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "module" -#: sphinx/domains/python.py:695 +#: sphinx/domains/python.py:696 msgid " (deprecated)" msgstr " (verouderd)" -#: sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:57 +#: sphinx/domains/rst.py:55 #, fuzzy, python-format msgid "%s (role)" msgstr "%s (rolle)" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 #, fuzzy msgid "role" msgstr "rolle" @@ -363,70 +360,97 @@ msgstr "omgevingsvariabele; %s" msgid "%scommand line option; %s" msgstr "%sopdrachtregel optie; %s" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "omgevingsvariabele" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 #: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "Index" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "Module-index" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Zoekpagina" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr "" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "Te doen" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(Het <> is te vinden in %s, regel %d.)" -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "originele item" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "" @@ -477,7 +501,7 @@ msgid "Note" msgstr "Notitie" #: sphinx/locale/__init__.py:162 -msgid "See Also" +msgid "See also" msgstr "Zie ook" #: sphinx/locale/__init__.py:163 @@ -523,25 +547,26 @@ msgstr "statement" msgid "built-in function" msgstr "ingebouwde functie" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "Inhoudsopgave" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Zoeken" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "Ga" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." msgstr "Geef zoekterm of de naam van een module, klasse of functie." -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "Broncode weergeven" @@ -549,6 +574,19 @@ msgstr "Broncode weergeven" msgid "Overview" msgstr "Overzicht" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +#, fuzzy, python-format +msgid "the documentation for" +msgstr "documentatie" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "Indices en tabellen:" @@ -659,13 +697,13 @@ msgstr "Volgend onderwerp" msgid "next chapter" msgstr "volgend hoofdstuk" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Activeer JavaSscript om de zoekfunctionaliteit in te schakelen." -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -679,17 +717,21 @@ msgstr "" "\n" " zullen niet tussen de resultaten verschijnen." -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "zoeken" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "Zoekresultaten" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." -msgstr "Uw zoekopdracht leverde geen resultaten op." +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -727,25 +769,43 @@ msgstr "Veranderingen in de C-API" msgid "Other changes" msgstr "Andere veranderingen" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "Permalink naar deze titel" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "Permalink naar deze definitie" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "Zoekresultaten verbergen" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +#, fuzzy +msgid "Searching" +msgstr "zoeken" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "" @@ -753,24 +813,28 @@ msgstr "" msgid "Contents" msgstr "Inhoud" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "Release" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "Voetnoten" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "Vervolgd van vorige pagina" -#: sphinx/writers/latex.py:681 +#: sphinx/writers/latex.py:710 msgid "Continued on next page" msgstr "Vervolgd op volgende pagina" -#: sphinx/writers/text.py:437 +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 +#, fuzzy, python-format +msgid "[image: %s]" +msgstr "[afbeelding: %s]" + +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[afbeelding]" - diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.js b/sphinx/locale/pl/LC_MESSAGES/sphinx.js index 6a3f5f311..b9b6c07ed 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "pl", "plural_expr": "(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)", "messages": {"Hide Search Matches": "Ukryj wyniki wyszukiwania", "Permalink to this definition": "Sta\u0142y odno\u015bnik do tej definicji", "Expand sidebar": "Rozwi\u0144 pasek boczny", "Permalink to this headline": "Sta\u0142y odno\u015bnik do tego nag\u0142\u00f3wka", "Collapse sidebar": "Zwi\u0144 pasek boczny"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "pl", "plural_expr": "(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)", "messages": {"Hide Search Matches": "Ukryj wyniki wyszukiwania", "Permalink to this definition": "Sta\u0142y odno\u015bnik do tej definicji", "Permalink to this headline": "Sta\u0142y odno\u015bnik do tego nag\u0142\u00f3wka"}}); \ No newline at end of file diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo index c6c8a0b0ee438f3cf260c150e009e25828ec178b..88cf3ed190db66613706d3bba6730e14223e2444 100644 GIT binary patch delta 3640 zcmd7SduY{V9LMoz?UuI9UA*L`?zg4$EcJM4bGVteLTgNIOOqN#r*nSWSv&5`^E=16 zG)^eytsq%a;uM0i47*O2p@|}iL|DQ|O-SvN2w-}SfZ8m0OA!>*ZOVN*mu-@8e-@91A z^H$8mBo4)GI0W|~ag(N(3k5!g{Fpv|X~0>`!3(GWSMBp0W@-EwRDy{(9OqyzE9-2#L3Qvb-h`jo`%{?4{SSHcUjZ)iK!JZltt2IXz!9hblduHmA~l*IY70Dj z|0Jr#&)VnRs0HjrLYn>d{x~XeAF9C5^Xb1@@+}XP_<|jnN>+UhIjGi6zpaVb)RnSi5l4l41(s6xW1`H!Qv`YEJSN%J%p>c9?EMZKtr2T=h(Kz(+n z?em{d34cfJVFur<9Eu8DiYm~D+KMTtKU8Fj?g4&w1sKa^%6>ku$P~sfa--}^5NZp6|w)Cc+3tsjpQ)r zQ7y{gU}yyn>QGf6%`gq90$NckT5X?i#p&F?gvIzJ*5Gfb#8m`QXYN8hzjrkKzm1Cx zJW!y$sLBr6fyYs2;v>|AllFb?n1K}*qB>TNd?2O*r(!Ltz_qBjn^6nxM#bwveg6lO zTqxmLT!!DHCd{UMRosAD@xwS9J5Yz{T~zB2qxSw&yq&Xh1_@y@iQa!!P@Swq&0B2m zA3()Vw%ZqLt?N;hZb7d1)PjZT!UIzEo$5n)HoNl z1qoz)(yZY^12>}few)4DhvYE5s4Y5$Gw~|wOw8b+0xra{xE$4~b*RqlM78=Y>jBi3 z96{yz7)!`+&T*lY4kn6PG~Vh*1*}9(T!c#8h$Q8V3s?ZRoV+Zzs|4(qCL$d|ba4)LjH&AjGTC%ge6$1q&*hTH0E?up64_G({6_A(hh}Xm)*G zxw9e=4~A7pJnY(HoRtYT*6HusP%y3QNWtRVWo{%GUE!8EOTsOl)8cjI3@uKEqQS%p zw=M4Zo%uFLjm@z@d$^kNmuK3Wo|>T}Qw9gTxRYoP zF{7t`n3s}$$D}D0lcr2{rcSM{tm^3-zBcV2cA>85QhHv@y>TCEO4dF2_m=;cyK$(b zwx)l_oqx9{X{B?z8cLV`KlY@x{{(bi+nB8Wow>F#XG*J6vLe@aCe$-*Y*osixFZ8b delta 2856 zcmYM$e@vBC9LMo<<)Q&9iFidrxOFdBBn3#91Qjhce+-ah_KRkSEQz1<0u96-wW%3N z>CLv>ENXM*niIT#xB)FA*&4Q#T$!t|rn4ezQJJn{_5Q%wVwdN2p7Wd^-}61^xo~6c zC##*IIQK!r&k=qT`CS&NyZ?Wxqm7x&Z4FMr7F3fL@D6OpDD1NK*ysH?o%%C44KHCl zj$kZKj2Ro(F&+vU*oS;fCKokWgj2BqH9)DYuSKdWengbCSx{HW@8Cv z;9k59yKx47flTNvMc9NncmTE614v(U4mH3fG%jO)L=8O5tP0RYo|TbU zoPa)ipNekob5Z^CQRA+fM*g*uA}VABYJjbHJHCvXs|(4h`Ow~firUK|TR)6izzyVM zCd7^3$D<}rMg{0cWh4tVUtS#fSI1&1boxtCscXgu@Kw~xFQ6Zrhb2ccb?1ZB&F|YcFcRe$>haQ7OEPn)qjoz&}tc zy=kA1q5_)4tf?4_Y9Bz=FG9`ZET_Q76mpq^<){gEpeAfX1#lR(XGc*hKaR>+FKXh8 zsD4Ap$Na!WZ_B8y_mFQ*=tXVCUE?|?hk^!Pj*4sz>WgKat#3j_-fDf``XZ|RepCRj zqXK)wK7S82;R#f#d+hxHD%0o3>e>G*6to4uqYhgvM_L0WqbByF-tW6nD_o9RK@qCm zlczqS{}y z&woX|EiNt;O(JRm0n}Mqjl^U&qXO80T2Q;Ke`_}He}IZ^Dw1&o^KcsbAq&uldr=*a zp#nLD%Gdzv44lI}{1Wv%o|CBsC808uj_j_vA2YEK70~uX@~?sSQK6M}pawjN`U3g@ zHQ;yn2>yg>{~*g#X4a!txDoSlE9%VjpiZAW4;M^FLvVJd!(TIoNiEsXPypCun^y!oh!^HB?P3Mr`Jqo_ky ziArrVs)K`S*oN$mIcV=YQ5ot+ZPC}b5LKyh7NH*tP#M~S%19e3!yV%~=3NTfi%wJq z-nX7cbv$FAUqKzN5hRNyl6Off_n}UCz`6{zpodZ8mZKI>kD9mzbtZPATYvxe*#`$u z9S&g{zJtoZXZHD!y}ye3KjAkd78A|#HSj#tH)b{}uob9GK86~118VQ9QQrq`IQIAd z6$;w3L#VURi8?d`sDaO;2K)-OvR_b{`WKbziR4+S_HfaJdFaNasCFx?1*q{#Q0+=l ze}BwI+n@3;q%J|`&gi5s^75KdvflE+< zEK4!rn3$x9aNgA7$WX`hV5la3NoY7e&AqfbSQm<&Q4%UnNt(K)BG_2n5WL4cv8k>+ z7*6oaa)lSqtanYxOwU-5o|Wm%%*f3MgnJTN-QiVpMj}InJ|{HSzbbUhzc}=bzx=+! z$_j5wZCQ0iOJ!YcowvWYY*TG>`DSl@S+Mb$)4R%54mND5s~wx7s\n" "Language-Team: \n" @@ -19,18 +22,12 @@ msgstr "" msgid "%s %s documentation" msgstr "" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#, python-format -msgid "%B %d, %Y" -msgstr "%B %d %Y" - -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1510 #, fuzzy, python-format msgid "see %s" msgstr "zobacz %s" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1513 #, fuzzy, python-format msgid "see also %s" msgstr "zobacz także %s" @@ -40,6 +37,12 @@ msgstr "zobacz także %s" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "%B %d %Y" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "Wbudowane" @@ -48,24 +51,24 @@ msgstr "Wbudowane" msgid "Module level" msgstr "Poziom modułu" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "%b %d %Y" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Indeks ogólny" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:309 msgid "index" msgstr "indeks" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:369 msgid "next" msgstr "dalej" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "wstecz" @@ -73,41 +76,38 @@ msgstr "wstecz" msgid " (in " msgstr " (w " -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr "Autor rozdziału: " -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "Autor modułu: " -#: sphinx/directives/other.py:140 +#: sphinx/directives/other.py:142 msgid "Code author: " msgstr "Autor kodu: " -#: sphinx/directives/other.py:142 +#: sphinx/directives/other.py:144 msgid "Author: " msgstr "Autor: " -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "Zobacz także" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "Parametry" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "Zwraca" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "Typ zwracany" @@ -136,58 +136,62 @@ msgstr "%s (typ C)" msgid "%s (C variable)" msgstr "%s (zmienna C)" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 msgid "function" msgstr "funkcja" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 msgid "member" msgstr "pole" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "typ" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 msgid "variable" msgstr "zmienna" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "Wyrzuca" + +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "%s (klasa C++)" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "%s (typ C++)" -#: sphinx/domains/cpp.py:938 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "%s (pole C++)" -#: sphinx/domains/cpp.py:990 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "%s (funkcja C++)" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "klasa" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "%s() (funkcja wbudowana)" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" @@ -202,7 +206,7 @@ msgstr "%s() (klasa)" msgid "%s (global variable or constant)" msgstr "%s (zmienna lub stała globalna)" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atrybut)" @@ -211,15 +215,11 @@ msgstr "%s (%s atrybut)" msgid "Arguments" msgstr "Argumenty" -#: sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "Wyrzuca" - -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "dane" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "atrybut" @@ -231,58 +231,58 @@ msgstr "Zmienne" msgid "Raises" msgstr "Wyrzuca" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "%s() (w module %s)" -#: sphinx/domains/python.py:258 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "%s (zmienna wbudowana)" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "%s (w module %s)" -#: sphinx/domains/python.py:275 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "%s (klasa wbudowana)" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "%s (klasa w module %s)" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metoda)" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s metoda statyczna)" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s metoda statyczna)" -#: sphinx/domains/python.py:341 +#: sphinx/domains/python.py:340 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s metoda klasy)" -#: sphinx/domains/python.py:344 +#: sphinx/domains/python.py:343 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metoda klasy)" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (atrybut %s.%s)" @@ -300,49 +300,49 @@ msgstr "Indeks modułów pythona" msgid "modules" msgstr "moduły" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "Niezalecane" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "wyjątek" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "metoda" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 msgid "class method" msgstr "metoda klasy" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "statyczna metoda" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "moduł" -#: sphinx/domains/python.py:695 +#: sphinx/domains/python.py:696 msgid " (deprecated)" msgstr " (niezalecane)" -#: sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "%s (dyrektywa)" -#: sphinx/domains/rst.py:57 +#: sphinx/domains/rst.py:55 #, python-format msgid "%s (role)" msgstr "%s (rola)" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "dyrektywa" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 msgid "role" msgstr "rola" @@ -356,70 +356,97 @@ msgstr "zmienna środowiskowa; %s" msgid "%scommand line option; %s" msgstr "%sopcja linii komend; %s" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "termin glosariusza" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "symbol gramatyki" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "etykieta odsyłacza" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "zmienna środowiskowa" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "opcja programu" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 #: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "Indeks" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "Indeks modułów" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Wyszukiwanie" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr " Klasy bazowe: %s" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr "alias klasy :class:`%s`" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "[źródło]" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<> znajduje się w pliku %s, w linii %d.)" -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "oryginalny wpis" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "[źródło]" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "[dokumenty]" @@ -470,7 +497,7 @@ msgid "Note" msgstr "Uwaga" #: sphinx/locale/__init__.py:162 -msgid "See Also" +msgid "See also" msgstr "Zobacz także" #: sphinx/locale/__init__.py:163 @@ -516,25 +543,26 @@ msgstr "instrukcja" msgid "built-in function" msgstr "funkcja wbudowana" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "Spis treści" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Szukaj" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "Szukaj" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." msgstr "Wprowadź szukany termin lub nazwę modułu, klasy lub funkcji." -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "Pokaż źródło" @@ -542,6 +570,19 @@ msgstr "Pokaż źródło" msgid "Overview" msgstr "Przegląd" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +#, fuzzy +msgid "the documentation for" +msgstr "przeszukaj tę dokumentację" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "Indeksy i tablice:" @@ -652,13 +693,13 @@ msgstr "Następny temat" msgid "next chapter" msgstr "następny rozdział" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Aby umożliwić wyszukiwanie, proszę włączyć JavaScript." -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -672,17 +713,21 @@ msgstr "" " nie zawierające wszystkich wpisanych słów nie znajdą się na wynikowej" " liście." -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "szukaj" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "Wyniki wyszukiwania" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." -msgstr "Nie znaleziono żadnych pasujących stron." +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -720,25 +765,43 @@ msgstr "Zmiany w C API" msgid "Other changes" msgstr "Inne zmiany" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "Stały odnośnik do tego nagłówka" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "Stały odnośnik do tej definicji" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "Ukryj wyniki wyszukiwania" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +#, fuzzy +msgid "Searching" +msgstr "szukaj" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "Rozwiń pasek boczny" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "Zwiń pasek boczny" @@ -746,24 +809,28 @@ msgstr "Zwiń pasek boczny" msgid "Contents" msgstr "Treść" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "Wydanie" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "Przypisy" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "kontynuacja poprzedniej strony" -#: sphinx/writers/latex.py:681 +#: sphinx/writers/latex.py:710 msgid "Continued on next page" msgstr "Kontynuacja na następnej stronie" -#: sphinx/writers/text.py:437 +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 +#, fuzzy, python-format +msgid "[image: %s]" +msgstr "[obraz: %s]" + +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[obraz]" - diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js index 288c9692c..0a86c4813 100644 --- a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "pt_BR", "plural_expr": "(n > 1)", "messages": {"Hide Search Matches": "Esconder Resultados da Pesquisa", "Permalink to this definition": "Link permanente para esta defini\u00e7\u00e3o", "Expand sidebar": "Expandir painel lateral", "Permalink to this headline": "Link permanente para este t\u00edtulo", "Collapse sidebar": "Recolher painel lateral"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "pt_BR", "plural_expr": "(n > 1)", "messages": {"Hide Search Matches": "Esconder Resultados da Pesquisa", "Permalink to this definition": "Link permanente para esta defini\u00e7\u00e3o", "Permalink to this headline": "Link permanente para este t\u00edtulo"}}); \ No newline at end of file diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index 824ba0482432c49f0d5645b1368d2e666e74c8f3..0a4aa4c54a761af6389bf1df5e669fc3d1cf3eb9 100644 GIT binary patch delta 3624 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\n" "Language-Team: pt_BR \n" @@ -22,18 +22,12 @@ msgstr "" msgid "%s %s documentation" msgstr "%s %s documentação" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#, python-format -msgid "%B %d, %Y" -msgstr "%d/%m/%Y" - -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1510 #, fuzzy, python-format msgid "see %s" msgstr "veja %s" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1513 #, fuzzy, python-format msgid "see also %s" msgstr "veja também %s" @@ -43,6 +37,12 @@ msgstr "veja também %s" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "%d/%m/%Y" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "Internos" @@ -51,24 +51,24 @@ msgstr "Internos" msgid "Module level" msgstr "Módulo" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "%d/%m/%Y" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Índice Geral" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:309 msgid "index" msgstr "índice" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:369 msgid "next" msgstr "próximo" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "anterior" @@ -76,41 +76,38 @@ msgstr "anterior" msgid " (in " msgstr " (em " -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr "Autor da seção: " -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "Autor do módulo: " -#: sphinx/directives/other.py:140 +#: sphinx/directives/other.py:142 msgid "Code author: " msgstr "Autor do código: " -#: sphinx/directives/other.py:142 +#: sphinx/directives/other.py:144 msgid "Author: " msgstr "Autor: " -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "Veja também" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "Parâmetros" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "Retorna" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "Tipo de retorno" @@ -139,58 +136,62 @@ msgstr "%s (tipo C)" msgid "%s (C variable)" msgstr "%s (variável C)" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 msgid "function" msgstr "função" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 msgid "member" msgstr "membro" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" msgstr "macro" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "tipo" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 msgid "variable" msgstr "variável" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "Gera" + +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "%s (classe C++)" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "%s (tipo C++)" -#: sphinx/domains/cpp.py:938 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "%s (membro C++)" -#: sphinx/domains/cpp.py:990 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "%s (função C++)" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "classe" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "%s() (função interna)" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "%s() (método %s)" @@ -205,7 +206,7 @@ msgstr "%s() (classe)" msgid "%s (global variable or constant)" msgstr "%s (variável global ou constante)" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "%s (atributo %s)" @@ -214,15 +215,11 @@ msgstr "%s (atributo %s)" msgid "Arguments" msgstr "Parâmetros" -#: sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "Gera" - -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "dado" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "atributo" @@ -234,58 +231,58 @@ msgstr "Variáveis" msgid "Raises" msgstr "Levanta" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "%s() (no módulo %s)" -#: sphinx/domains/python.py:258 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "%s (variável interna)" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "%s (no módulo %s)" -#: sphinx/domains/python.py:275 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "%s (classe interna)" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "%s (classe em %s)" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (método %s.%s)" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (método estático %s.%s)" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "%s() (método estático %s)" -#: sphinx/domains/python.py:341 +#: sphinx/domains/python.py:340 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (método de classe %s.%s)" -#: sphinx/domains/python.py:344 +#: sphinx/domains/python.py:343 #, python-format msgid "%s() (%s class method)" msgstr "%s() (método de classe %s)" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (atributo %s.%s)" @@ -303,49 +300,49 @@ msgstr "Índice de Módulos do Python" msgid "modules" msgstr "módulos" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "Obsoleto" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "exceção" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "método" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 msgid "class method" msgstr "método de classe" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "método estático" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "módulo" -#: sphinx/domains/python.py:695 +#: sphinx/domains/python.py:696 msgid " (deprecated)" msgstr " (obsoleto)" -#: sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "%s (diretiva)" -#: sphinx/domains/rst.py:57 +#: sphinx/domains/rst.py:55 #, python-format msgid "%s (role)" msgstr "%s (papel)" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "diretiva" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 msgid "role" msgstr "papel" @@ -359,70 +356,97 @@ msgstr "váriavel de ambiente; %s" msgid "%scommand line option; %s" msgstr "%sopção de linha de comando; %s" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "Termo de glossário" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "token de gramática" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "rótulo de referência" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "váriavel de ambiente" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "opção de programa" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 #: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "Índice" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "Índice do Módulo" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Página de Pesquisa" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr " Bases: %s" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr "apelido de :class:`%s`" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "[código fonte]" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "Por fazer" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(A <> está localizada em %s, linha %d.)" -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "entrada original" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "[código fonte]" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "[documentos]" @@ -473,8 +497,8 @@ msgid "Note" msgstr "Nota" #: sphinx/locale/__init__.py:162 -msgid "See Also" -msgstr "Veja Também" +msgid "See also" +msgstr "Veja também" #: sphinx/locale/__init__.py:163 msgid "Tip" @@ -519,25 +543,26 @@ msgstr "comando" msgid "built-in function" msgstr "função interna" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "Tabela de Conteúdo" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Pesquisar" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "Ir" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." msgstr "Digite os termos da busca ou o nome de um módulo, classe ou função." -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "Exibir Fonte" @@ -545,6 +570,19 @@ msgstr "Exibir Fonte" msgid "Overview" msgstr "Visão geral" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +#, fuzzy, python-format +msgid "the documentation for" +msgstr "documentação" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "Índices e tabelas:" @@ -655,13 +693,13 @@ msgstr "Próximo tópico" msgid "next chapter" msgstr "próximo capítulo" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Por favor ative o JavaScript para habilitar a funcionalidade de pesquisa." -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -675,17 +713,21 @@ msgstr "" " Páginas contendo menos palavras não irão aparecer na lista de " "resultado." -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "pesquisar" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "Resultados da Pesquisa" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." -msgstr "Sua pesquisa não encontrou nenhum resultado." +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -723,25 +765,43 @@ msgstr "Alterações na API C" msgid "Other changes" msgstr "Outras alterações" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "Link permanente para este título" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "Link permanente para esta definição" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "Esconder Resultados da Pesquisa" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +#, fuzzy +msgid "Searching" +msgstr "pesquisar" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "Expandir painel lateral" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "Recolher painel lateral" @@ -749,24 +809,28 @@ msgstr "Recolher painel lateral" msgid "Contents" msgstr "Conteúdo" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "Versão" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "Notas de rodapé" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "continuação da página anterior" -#: sphinx/writers/latex.py:681 +#: sphinx/writers/latex.py:710 msgid "Continued on next page" msgstr "Continua na próxima página" -#: sphinx/writers/text.py:437 +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 +#, fuzzy, python-format +msgid "[image: %s]" +msgstr "[imagem: %s]" + +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[imagem]" - diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.js b/sphinx/locale/ru/LC_MESSAGES/sphinx.js index 294b82f96..97506dabd 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "ru", "plural_expr": "(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)", "messages": {"Hide Search Matches": "\u0421\u043d\u044f\u0442\u044c \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u0438\u0435", "Permalink to this definition": "\u0421\u0441\u044b\u043b\u043a\u0430 \u043d\u0430 \u044d\u0442\u043e \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435", "Expand sidebar": "\u0420\u0430\u0437\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0431\u043e\u043a\u043e\u0432\u0443\u044e \u043f\u0430\u043d\u0435\u043b\u044c", "Permalink to this headline": "\u0421\u0441\u044b\u043b\u043a\u0430 \u043d\u0430 \u044d\u0442\u043e\u0442 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", "Collapse sidebar": "\u0421\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0431\u043e\u043a\u043e\u0432\u0443\u044e \u043f\u0430\u043d\u0435\u043b\u044c"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "ru", "plural_expr": "(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)", "messages": {"Hide Search Matches": "\u0421\u043d\u044f\u0442\u044c \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u0438\u0435", "Permalink to this definition": "\u0421\u0441\u044b\u043b\u043a\u0430 \u043d\u0430 \u044d\u0442\u043e \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0435\u043d\u0438\u0435", "Permalink to this headline": "\u0421\u0441\u044b\u043b\u043a\u0430 \u043d\u0430 \u044d\u0442\u043e\u0442 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a"}}); \ No newline at end of file diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index 841afa9f96ba0b8e826f1da3654557fad7abb0fd..5174a99c9d689bac769fe320db116c81e1b4bd3c 100644 GIT binary patch delta 3435 zcmciCX>3$g7{>8K>9Dj#+5uWXpchJ6OIgZdl%)^}p-@0sgb=Zl_O>0E&eWL>O<5e4 zCWIx}FhS5L0#b|-Ov6A3L>7aDN)!e{NHD~R@IeU#0wPNk{Xfh#DDjgqHq-gtbM86s zdCz<9opx}J;iI`k2_?QB|G+-P)htp937C8OY$ON+jwZKNq#GROqhfwoQ zqlK4H^B*A}lg2KTaA(x`UYN!Drhp3toPu5P4eX3dkdKM-rTg2l3+~5}cm}i4MOIoM z7geF5I0Q%G^H_#P9#!<+V}!D_1A(`bf{!YP^DjqI@7hN0Gm;n zH=zQbM~%CMns*=dls`tz>%exkKsJuXeAE#vLW*G4pc3C2;X)I3AW53Ns8Sw71^x8Q7-%;{f_T5t{O$Qm5CA#o#S4;RXGA8LWas2`Y9 zi2>$1YG=0{?>jz5&2#ajDv@@m`EJzsY}CSiP)9M?X^%x!Zqk!}&VMc!I-3gAQ@I)y zFp3Ja74_bK=(G=^DsvpQ^RH1myNH^14Ug~^{e;@c$CN`AJdJ9{QHkA^djEfQ2Dn&- zV>GGAT$7DjcqCtJ*37`ZSdL0`BWmGos158v&2Ppmyo@@^pHbsm@g(=gOw7lZFrvT< zxloB#poMRv0yLolG^2Lyh>>}#S9-_`Tg(udFS*UR~QCPX7gbnf3$B!!bP) zukk|EMmF@I{@gP==qSNss0A$2Q-*{1nt;Vvg$=0tk8ud5T8Z{({Dm{0jI-%4Bx@bj zJ2(=LqUPO0t(QdBO4N#Qk-|j*YQk95Z*)11z-^d|7aSjg_2SkT~0UsLIu%5@0L~1H+CmHL_upO++k4|bV zxXSj|gz~K!KHC$riL{6a;h;?@PmSgA`K;PNuqjL7TcmhGHCDK~jLz7=j^P&3=1ytJqXrHc z7HjI%%jMMdT-V)g-7|vrv!xC9UN-OVRs1gte7kpK^voxxX#Kl7`*UYUFXTr5vCfhI zug;--Ge5pRel&jg-0Jw}@dNQA=T^m|>DjK>i9Sn{+WDTIK$(e_49JYl>VLAuA71tX ArvLx| delta 2795 zcmYM$4NR3)9LMp4f+;To7XrnG;!z5!I(?ubHh9kDaDI7|@7d63U+pbOwFe#`2S(t(4n1YX>#?8e5E<%le6Zx18 zd}+bkQ2lpeCh^S?3Yzd|9D#q~aExb}T4@endR~V2;tZUK^U;qXWQgg)GCYJM@hT3( zp{!bg$Kqft!KqlOI`PeN3Ve*i*FCrvH86w~xE;0PbEpMgK~0p%b~W)ZtVKT#!X-%3 z%rewM9IV6-QAhX#@-aX0!lb=eL8CV!>EZL zM=iY0`XXxlYd8kiq3*zbBsu0}3i(&VS=;a%YUS5aXLrZeQ>iH6DAdBnpfXU33OETh z?orewu195RIo9C2s6GCO3j8Z7Q+=uAUn##ugU;{{s-EDBc1T0r-VvzhrKpJ>K&3W_ ztkFD&T2QOC4b^`QGNlQjGPM;I_-h=9dmRee*#T7GLzs)-;N2CXCc0&x4DSHpKkT7cCUett#QE$Up+unx?_z&tR z2GU8Uq9*pE7B&v`J5g-gA46?uj&)vC$2?0x0~Vte(1Kdoif9MZfeQFGD)k{-{}h$_ z9k#s(btK=R?$jTs`Tj-)?nk}8aaI~{+j>prefwz&5 zN#>oJfCU)D2K3|SsLOQ>r{QVLK_9!hn<>;$)uWE~1zd!!Bgwxyo~MD2iQ^`6(ajiC zdj-zGIxNDEP(LImQ9HPVy6rK1J&k@;fHu^^)?y9rz$MscpU=;V{!}l{BL5n&frgu$ z^%pps`X_Jnuolyb3cMaQ zpA)8_z$Z{ga0WHe6;yy&R#A@0sCo@*qFUR&6g6%$YT-SoOM1$-_o4#*izL^i1$S@Cf&0I1nBiUGm zQ!x%59E=?}2;ad(;+v2PxEYoDuTU#KY}?PFcKRnOa6f7xN#mn;Asf|RgZJSq)Dd)` zHWWh5{{fOTvlX>~?@|AYGG{1gg7c`e?Xw+xh2fR)dj^CnlQQDmXMB_08@?*HIcdo?Xj!7vmE}K+5p*&DNVRFT!!m`S6Ff%(Y z+&t>DA#P#rO7~9gEAHsL3ioneAR!Q0?R9$lz1?1yJ2-#+L*Ayy>PQ<+-QM2F>jCee z*Awt|dYzFsye{uRq&?v6;o(8L^h91&wcG2`SEskn+eMdducyQ`xEli*;U@}K4RHI5 LGQw92kH-85k^4jE diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index 2e10a31f6..136646bd6 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -1,48 +1,49 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR , YEAR. +# Russian translations for Sphinx. +# Copyright (C) 2013 THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the Sphinx project. +# FIRST AUTHOR , 2013. # msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-08-12 21:48+0700\n" -"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" +"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"PO-Revision-Date: 2013-04-01 11:58+0200\n" "Last-Translator: FULL NAME \n" -"Language-Team: LANGUAGE \n" -"Language: \n" +"Language-Team: ru \n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " +"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 0.9.6\n" #: sphinx/config.py:81 #, python-format msgid "%s %s documentation" msgstr "" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#: sphinx/writers/latex.py:191 sphinx/environment.py:113 -#, python-format -msgid "%B %d, %Y" -msgstr "%d %B %Y" - -#: sphinx/environment.py:1625 sphinx/environment.py:1638 +#: sphinx/environment.py:1510 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment.py:1628 sphinx/environment.py:1641 +#: sphinx/environment.py:1513 #, python-format msgid "see also %s" msgstr "" -#: sphinx/roles.py:175 sphinx/roles.py:176 +#: sphinx/roles.py:175 #, fuzzy, python-format msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "%d %B %Y" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "Встроенные функции" @@ -51,25 +52,24 @@ msgstr "Встроенные функции" msgid "Module level" msgstr "Модуль" -#: sphinx/builders/html.py:274 sphinx/builders/html.py:276 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "%d %b %Y" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 -#: sphinx/builders/html.py:295 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Алфавитный указатель" -#: sphinx/builders/html.py:293 sphinx/builders/html.py:295 +#: sphinx/builders/html.py:309 msgid "index" msgstr "указатель" -#: sphinx/builders/html.py:353 sphinx/builders/html.py:355 +#: sphinx/builders/html.py:369 msgid "next" msgstr "следующий" -#: sphinx/builders/html.py:362 sphinx/builders/html.py:364 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "предыдущий" @@ -77,42 +77,39 @@ msgstr "предыдущий" msgid " (in " msgstr " (в " -#: sphinx/directives/other.py:136 sphinx/directives/other.py:138 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr "Автор раздела: " -#: sphinx/directives/other.py:138 sphinx/directives/other.py:140 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "Автор модуля: " -#: sphinx/directives/other.py:140 sphinx/directives/other.py:142 +#: sphinx/directives/other.py:142 #, fuzzy msgid "Code author: " msgstr "Автор модуля: " -#: sphinx/directives/other.py:142 sphinx/directives/other.py:144 +#: sphinx/directives/other.py:144 msgid "Author: " msgstr "Автор: " -#: sphinx/directives/other.py:215 sphinx/directives/other.py:219 -msgid "See also" -msgstr "См.также" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "Параметры" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "Результат" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "Тип результата" @@ -141,61 +138,63 @@ msgstr "%s (тип C)" msgid "%s (C variable)" msgstr "%s (переменная C)" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 msgid "function" msgstr "функция" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 msgid "member" msgstr "поле" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" msgstr "" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "тип" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 #, fuzzy msgid "variable" msgstr "Переменная" -#: sphinx/domains/cpp.py:904 sphinx/domains/cpp.py:1020 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "" + +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "%s (класс C++)" -#: sphinx/domains/cpp.py:919 sphinx/domains/cpp.py:1043 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "%s (тип C++)" -#: sphinx/domains/cpp.py:938 sphinx/domains/cpp.py:1063 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "%s (поле C++)" -#: sphinx/domains/cpp.py:990 sphinx/domains/cpp.py:1119 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "%s (функция C++)" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "класс" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 -#: sphinx/domains/python.py:253 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "%s() (встроенная функция)" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 -#: sphinx/domains/python.py:317 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "%s() (метод %s)" @@ -210,8 +209,7 @@ msgstr "%s() (класс)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 -#: sphinx/domains/python.py:355 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "%s (атрибут %s)" @@ -221,15 +219,11 @@ msgstr "%s (атрибут %s)" msgid "Arguments" msgstr "Параметры" -#: sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "" - -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "атрибут" @@ -242,61 +236,58 @@ msgstr "Переменная" msgid "Raises" msgstr "Исключение" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 #: sphinx/domains/python.py:254 sphinx/domains/python.py:311 #: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "%s() (в модуле %s)" -#: sphinx/domains/python.py:258 sphinx/domains/python.py:257 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "%s (встроенная переменная)" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 #: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "%s (в модуле %s)" -#: sphinx/domains/python.py:275 sphinx/domains/python.py:274 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "%s (встроенный класс)" -#: sphinx/domains/python.py:276 sphinx/domains/python.py:275 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "%s (класс в %s)" -#: sphinx/domains/python.py:316 sphinx/domains/python.py:315 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (метод %s.%s)" -#: sphinx/domains/python.py:328 sphinx/domains/python.py:327 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (статический метод %s.%s)" -#: sphinx/domains/python.py:331 sphinx/domains/python.py:330 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "%s() (статический метод %s)" -#: sphinx/domains/python.py:341 sphinx/domains/python.py:340 +#: sphinx/domains/python.py:340 #, fuzzy, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (метод %s.%s)" -#: sphinx/domains/python.py:344 sphinx/domains/python.py:343 +#: sphinx/domains/python.py:343 #, fuzzy, python-format msgid "%s() (%s class method)" msgstr "%s() (метод %s)" -#: sphinx/domains/python.py:354 sphinx/domains/python.py:353 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (атрибут %s.%s)" @@ -315,50 +306,50 @@ msgstr "Состав модуля" msgid "modules" msgstr "модули" -#: sphinx/domains/python.py:537 sphinx/domains/python.py:538 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "Не рекомендуется" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "исключение" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 msgid "class method" msgstr "" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "статический метод" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "модуль" -#: sphinx/domains/python.py:695 sphinx/domains/python.py:696 +#: sphinx/domains/python.py:696 #, fuzzy msgid " (deprecated)" msgstr " (не рекомендуется)" -#: sphinx/domains/rst.py:55 sphinx/domains/rst.py:53 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:57 sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:55 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 msgid "role" msgstr "" @@ -372,71 +363,97 @@ msgstr "переменная окружения; %s" msgid "%scommand line option; %s" msgstr "Опция командной строки %s; %s" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "переменная окружения" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 #: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 -#: sphinx/writers/latex.py:180 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "Алфавитный указатель" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "Состав модуля" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Поиск" -#: sphinx/ext/autodoc.py:1002 sphinx/ext/autodoc.py:1010 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr " Базовые классы: %s" -#: sphinx/ext/autodoc.py:1038 sphinx/ext/autodoc.py:1046 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr "псевдоним класса :class:`%s`" -#: sphinx/ext/todo.py:41 sphinx/ext/todo.py:42 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 +#, python-format +msgid "[graph: %s]" +msgstr "[иллюстрация: %s]" + +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 +msgid "[graph]" +msgstr "[иллюстрация]" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "[исходный код]" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "План" -#: sphinx/ext/todo.py:109 sphinx/ext/todo.py:110 +#: sphinx/ext/todo.py:110 #, fuzzy, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(Исходный элемент находится в %s, в строке %d.)" -#: sphinx/ext/todo.py:117 sphinx/ext/todo.py:119 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "[исходный код]" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "[документация]" @@ -488,8 +505,8 @@ msgid "Note" msgstr "Примечание" #: sphinx/locale/__init__.py:162 -msgid "See Also" -msgstr "См. также" +msgid "See also" +msgstr "См.также" #: sphinx/locale/__init__.py:163 msgid "Tip" @@ -534,25 +551,26 @@ msgstr "команда" msgid "built-in function" msgstr "базовая функция" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "Оглавление" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Поиск" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "Искать" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." msgstr "Введите слова для поиска или имя модуля, класса или функции." -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "Исходный текст" @@ -560,6 +578,19 @@ msgstr "Исходный текст" msgid "Overview" msgstr "Обзор" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +#, fuzzy +msgid "the documentation for" +msgstr "поиск в документации" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "Таблицы и указатели:" @@ -670,35 +701,39 @@ msgstr "Следующий раздел" msgid "next chapter" msgstr "следующая глава" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Для работы поиска включите JavaScript в браузере." -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" " function will automatically search for all of the words. Pages\n" " containing fewer words won't appear in the result list." msgstr "" -"Здесь можно делать поиск по всем разделам этой документации. Введите " -" ключевые слова в текстовое поле и нажмите кнопку «искать». Внимание: будут " -" найдены только те страницы, в которых есть все указанные слова. Страницы, " -" где есть только часть этих слов, отобраны не будут." +"Здесь можно делать поиск по всем разделам этой документации. Введите " +"ключевые слова в текстовое поле и нажмите кнопку «искать». Внимание: " +"будут найдены только те страницы, в которых есть все указанные слова." +" Страницы, где есть только часть этих слов, отобраны не будут." -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "искать" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "Результаты поиска" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." -msgstr "Страниц по вашему запросу не найдено." +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -736,26 +771,43 @@ msgstr "Изменения в API C" msgid "Other changes" msgstr "Другие изменения" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 sphinx/writers/html.py:516 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "Ссылка на этот заголовок" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 -#: sphinx/writers/html.py:94 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "Ссылка на это определение" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "Снять выделение" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +#, fuzzy +msgid "Searching" +msgstr "искать" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "Развернуть боковую панель" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "Свернуть боковую панель" @@ -763,44 +815,29 @@ msgstr "Свернуть боковую панель" msgid "Contents" msgstr "Содержание" -#: sphinx/writers/latex.py:177 sphinx/writers/latex.py:178 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "Выпуск" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 sphinx/writers/latex.py:601 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "Сноски" -#: sphinx/writers/latex.py:676 sphinx/writers/latex.py:685 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "продолжение с предыдущей страницы" -#: sphinx/writers/latex.py:681 sphinx/writers/latex.py:691 +#: sphinx/writers/latex.py:710 #, fuzzy msgid "Continued on next page" msgstr "Продолжается на следующей странице" -#: sphinx/writers/text.py:437 sphinx/writers/manpage.py:234 -#: sphinx/writers/text.py:439 -msgid "[image]" -msgstr "[рисунок]" - -#: sphinx/writers/manpage.py:233 sphinx/writers/text.py:438 +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 #, python-format msgid "[image: %s]" msgstr "[рисунок: %s]" -#: sphinx/ext/graphviz.py:302 sphinx/ext/graphviz.py:310 -#, python-format -msgid "[graph: %s]" -msgstr "[иллюстрация: %s]" - -#: sphinx/ext/graphviz.py:304 sphinx/ext/graphviz.py:312 -msgid "[graph]" -msgstr "[иллюстрация]" - -#: sphinx/ext/intersphinx.py:224 -#, python-format -msgid "(in %s v%s)" -msgstr "" +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 +msgid "[image]" +msgstr "[рисунок]" diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.js b/sphinx/locale/sk/LC_MESSAGES/sphinx.js index 9c2d6a75f..5f665ceb4 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "sk", "plural_expr": "(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)", "messages": {"Hide Search Matches": "Skry\u0165 v\u00fdsledky vyh\u013ead\u00e1vania", "Permalink to this definition": "Trval\u00fd odkaz na t\u00fato defin\u00edciu", "Expand sidebar": "", "Permalink to this headline": "Trval\u00fd odkaz na tento nadpis", "Collapse sidebar": ""}}); \ No newline at end of file +Documentation.addTranslations({"locale": "sk", "plural_expr": "(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)", "messages": {"Hide Search Matches": "Skry\u0165 v\u00fdsledky vyh\u013ead\u00e1vania", "Permalink to this definition": "Trval\u00fd odkaz na t\u00fato defin\u00edciu", "Permalink to this headline": "Trval\u00fd odkaz na tento nadpis"}}); \ No newline at end of file diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index 375159dc2c7519011b78fa6d66d19117741b2b31..8de655f63cb0327bf8f6f18d5a92a3b5a2c0a931 100644 GIT binary patch delta 3477 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 H6}kQec9jsa diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index fdc5e1371..8825c95f2 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 0.5\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2011-11-26 13:53+0200\n" +"POT-Creation-Date: 2013-04-01 11:57+0200\n" "PO-Revision-Date: 2011-11-26 14:00+0100\n" "Last-Translator: Jozef Sevcik \n" "Language-Team: Jozef Sevcik \n" @@ -23,18 +23,12 @@ msgstr "" msgid "%s %s documentation" msgstr "%s %s dokumentácia" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#, python-format -msgid "%B %d, %Y" -msgstr "%d.%m.%Y" - -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1510 #, fuzzy, python-format msgid "see %s" msgstr "viz %s" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1513 #, fuzzy, python-format msgid "see also %s" msgstr "viz tiež %s" @@ -44,6 +38,12 @@ msgstr "viz tiež %s" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "%d.%m.%Y" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "Zabudované funkcie" @@ -52,24 +52,24 @@ msgstr "Zabudované funkcie" msgid "Module level" msgstr "Úroveň modulov" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "%d.%m.%Y" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Register indexov" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:309 msgid "index" msgstr "index" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:369 msgid "next" msgstr "ďalší" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "predchádzajúci" @@ -77,42 +77,39 @@ msgstr "predchádzajúci" msgid " (in " msgstr "(v" -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr "Autor sekcie: " -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "Autor modulu: " -#: sphinx/directives/other.py:140 +#: sphinx/directives/other.py:142 #, fuzzy msgid "Code author: " msgstr "Autor modulu: " -#: sphinx/directives/other.py:142 +#: sphinx/directives/other.py:144 msgid "Author: " msgstr "Autor: " -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "Viz tiež" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "Parametre" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "Vracia" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "Typ návratovej hodnoty" @@ -141,59 +138,63 @@ msgstr "%s (C typ)" msgid "%s (C variable)" msgstr "%s (C premenná)" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 msgid "function" msgstr "funkcia" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 msgid "member" msgstr "člen" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" msgstr "" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "typ" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 #, fuzzy msgid "variable" msgstr "Premenná" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "" + +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ trieda)" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ typ)" -#: sphinx/domains/cpp.py:938 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "%s (člen C++)" -#: sphinx/domains/cpp.py:990 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ funkcia)" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "trieda" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "%s() (zabudovaná funkcia)" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "%s() (metóda %s)" @@ -208,7 +209,7 @@ msgstr "%s() (trieda)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "%s() (atribút %s)" @@ -218,15 +219,11 @@ msgstr "%s() (atribút %s)" msgid "Arguments" msgstr "Parametre" -#: sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "" - -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "atribút" @@ -239,58 +236,58 @@ msgstr "Premenná" msgid "Raises" msgstr "Vyvolá" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v module %s)" -#: sphinx/domains/python.py:258 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "%s() (zabudovaná premenná)" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "%s() (v module %s)" -#: sphinx/domains/python.py:275 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "%s () (zabudovaná premenná)" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "%s() (trieda v %s)" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (metoda %s.%s)" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (statická metóda %s.%s)" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "%s() (statická metóda %s)" -#: sphinx/domains/python.py:341 +#: sphinx/domains/python.py:340 #, fuzzy, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (metóda %s.%s)" -#: sphinx/domains/python.py:344 +#: sphinx/domains/python.py:343 #, fuzzy, python-format msgid "%s() (%s class method)" msgstr "%s() (metóda %s)" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s() (atribút %s.%s)" @@ -309,49 +306,49 @@ msgstr "Register modulov" msgid "modules" msgstr "moduly" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "Zastaralé" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "výnimka" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 msgid "class method" msgstr "" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "statická metóda" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "modul" -#: sphinx/domains/python.py:695 +#: sphinx/domains/python.py:696 msgid " (deprecated)" msgstr " (zastaralé)" -#: sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:57 +#: sphinx/domains/rst.py:55 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 msgid "role" msgstr "" @@ -365,70 +362,97 @@ msgstr "premenná prostredia, %s" msgid "%scommand line option; %s" msgstr "%s parametre príkazového riadku; %s" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "premenná prostredia" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 #: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "Index" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "Register modulov" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Vyhľadávacia stránka" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr "" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, fuzzy, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "(Pôvodný záznam je v %s, riadok %d.)" +msgstr "(<> je v %s, riadok %d.)" -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "" @@ -480,7 +504,7 @@ msgid "Note" msgstr "Poznámka" #: sphinx/locale/__init__.py:162 -msgid "See Also" +msgid "See also" msgstr "Viz tiež" #: sphinx/locale/__init__.py:163 @@ -526,25 +550,26 @@ msgstr "príkaz" msgid "built-in function" msgstr "zabudovaná funkcia" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "Obsah" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Hľadanie" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "OK" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." msgstr "Zadaj názov modulu, triedy alebo funkcie." -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "Ukázať zdroj" @@ -552,6 +577,19 @@ msgstr "Ukázať zdroj" msgid "Overview" msgstr "Prehľad" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +#, fuzzy, python-format +msgid "the documentation for" +msgstr "dokumentácia" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "Register a tabuľky:" @@ -662,13 +700,13 @@ msgstr "Ďalšia téma" msgid "next chapter" msgstr "dalšia kapitola" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -677,20 +715,24 @@ msgid "" msgstr "" "Toto je vyhľadávacia stránka. Zadajte kľúčové slová a kliknete na " "\"hľadaj\". \n" -"Vyhľadávanie hľadá automaticky všetky slová. Nebudú teda nájdené " -"stránky obsahujúce menej slov." +"Vyhľadávanie hľadá automaticky všetky slová. Nebudú teda nájdené stránky " +"obsahujúce menej slov." -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "hľadaj" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "Výsledky vyhľadávania" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." -msgstr "Nič nebolo nájdené." +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -728,25 +770,43 @@ msgstr "Zmeny API" msgid "Other changes" msgstr "Ostatné zmeny" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "Trvalý odkaz na tento nadpis" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "Trvalý odkaz na túto definíciu" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "Skryť výsledky vyhľadávania" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +#, fuzzy +msgid "Searching" +msgstr "hľadaj" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "" @@ -754,25 +814,29 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "Vydanie" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "" -#: sphinx/writers/latex.py:681 +#: sphinx/writers/latex.py:710 #, fuzzy msgid "Continued on next page" msgstr "Celý index na jednej stránke" -#: sphinx/writers/text.py:437 +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 +#, fuzzy, python-format +msgid "[image: %s]" +msgstr "[obrázok: %s]" + +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[obrázok]" - diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.js b/sphinx/locale/sl/LC_MESSAGES/sphinx.js index 2bcb33dad..c79265af1 100644 --- a/sphinx/locale/sl/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/sl/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "sl", "plural_expr": "0", "messages": {"Hide Search Matches": "Skrij resultate iskanja", "Permalink to this definition": "Povezava na to definicijo", "Expand sidebar": "", "Permalink to this headline": "Povezava na naslov", "Collapse sidebar": ""}}); \ No newline at end of file +Documentation.addTranslations({"locale": "sl", "plural_expr": "0", "messages": {"Hide Search Matches": "Skrij resultate iskanja", "Permalink to this definition": "Povezava na to definicijo", "Permalink to this headline": "Povezava na naslov"}}); \ No newline at end of file diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index a4fe3d63ad8965800719d0524a0b32a7b2bb71dd..d39870249053bbfb6f190712b570687b2ec626bd 100644 GIT binary patch delta 3521 zcmd7TX>3$g7{>9_g}q2yz_PZtLZuZbt!&biMF?P|EU};vKy#V7bQ-2Jbrx#XX3#(g ztA>hT0(<~9Xablv5-Y}~3GOij6%1R#76KTSR8f(||I;3W+b81(o9X<{x%ZxP-t)fa zwtFU@n3gz^nYz*NvyyxnxRE0Z+kn);F_gWO2boO<0S4a2@u-oyf<0#Fy@Wg}w0Gi06xWztZxp|7>7r70s9a>O)~&HU@>ao7#x8!Q9E6Z3UniC z+*_zjG@%wafYb2^w#R(ZN;S+dR6r$|7)|3*8j5&5@~n9YHNg%vNyh9#O}v{`71(}M zCcegGJZJkCFqQr-)c6$gu6etnHqhN#fEqtOgZ$^xDCdIKiX+)HD{Oy*?Qcg#z6bf3 zcWwVm)PjdmfgM9-;sR>H7Sy;-nQe!=2P$L5I1$S-$-g3bfeYIC4jhOLs6Y;*Qg;Sb zii@Zkx1c7vjoLsTCehndih6DyYMhHY^#RnlI@CI=uoO2ZXs8z7B3Uz6Q9DRxlm>J` zHes?*DJ?)vJRDQ71eJktsD&q?=9z}8aRKW2bEx?)p`N>LO(c^iE!Y{kX1Zg4%ttLa z1r@+7)C7xAH4ULM6hrO&IaDCqu=VVq=G%pOi<<5Aqp0=HA|*?hOKlBv12u7HPMRW2 zM=j6`^@k=8b^jsMj%HZrSQnti`A~r@L5;7r_v=s#FGrPNU2C8EZ=s=-y=HIhMU`Yf z>QJ6UO?VZx@HN!?f7AA}_~W6>WTSR|AL=lUK#iM->v@Z&qMkcMIuzI`Ox62;nTB@w z18RaSW|z6B9S=s1g(*e_G#NQ}W{&L#P!m37U4c6F8&D_B_+i$_k z^sggHHW#wn0!dBev`x?-HE^Wum)ibpROItfJMp6eiXmAvYf!0t9Th+ms^%wA0bH}T zbJ{Z6164W)bruqXY3RYRr~t}P87W8Y)Q`$c5VhmyQ9D?RtqbE=`c0^s|Ad;aOK#g= z(mtqCj7MFcj#_5{vay8m(a=tU$j7YYi|m^>P_NI&r~zM~c6Jbzk#ndWT)|RI<`q(H z$D=Ye7j=dLs13wW0j##Zg6&z~>}+lD&jq#MUer$ap)#=_SK}d6AnpJ=F)Bkb>$9l9 zmZM6v4k@>J)!uJL1^hWGz+>2+_09J*bedbxLH!3(Ai1bO?nO;lgv!)ZR3M8`3s$01 z9I-A#EwJ9Y4K@F6Bw1!3>a97B2{lgB(1hphjVrc)&3Y46>(soq=dw@>XQNU&2;1Q( z)N`fw`b<kzW~d z@}kbtyl8=SF;i!ovEa8UAu-sT+)YCC-Dv8n-s;%$QSF zR%jmaV)01m_gfRgkx014^E(l5u@~_|KJTwj%2QAgwL2mGf7YfHK0*=p(c@^PEr57zU^I0vr(9ExhxYdCY!e7|Ib{YqC z@14}yjmDgKwVx490 t|ChCxpEI_!ytUxYzbnb6oYD11a%TO%OET9Pk(3s^QxkvVn%sd&zX6~V0~7!N delta 2739 zcmYM#drZ}39LMnoImjg-ZX$xh?{G1r4wnKH%>t{@05{8}ED&~xlMnHTL?$m`r~? zCSn(+;2yjg4P=G7P?r3A#bntGxRc+#%R!;bsr#M7n5cS|*EWsnFnSF~&>=)EPbEug|GF=78#ErNL z7vnQXvCM8%LjAZJkD``v9D{t#&m1(spK62|Gm9GdItxV%lT38Y+>48_)V9~4hjuOM z`3F%0*P|xjxAvl*-;Z7#MD2kw)t@Sv?`+3KRQnH9<~LAl7sWyCbX34RRATw4N~}Qz ztVG?n6}6e0Q56f~1{^@maRPI3Dv|mtU}Dlj$udz(kcTY4@!58{yB=s;89K#a1{06S=4}Eqjvu#+dqd27{x`EKGB+m z8rX+Q>`v70!aCdEh)TT0+HT!}+#fX0a-szGpfc;TH@K*P1E>UB-FZ6B&4B^a&uzk(CZs2cTP9UkB<*oL}sidR92T|-@u;KxEU zj6qe*XI+h|L?u!zQ-w;X9$7upZrjhJ#ycSO{=dnIcI`1Fc@siC_!(*qzeiQz3hKeX zQ2`dSKAL$tsv>2m`>N2vEw;ZGHGV%TVb}H_!JuA`VNNvQ=cr9Ifqcv?2URA8`e_E) zs7+If_u@l%J08L!9784a7b?*N23JK^p!P-%uEpC><35&7{Wa4bI<(d=p#ty6QXE3f zY#dn)a}{-8I8hvoMg36uuo~|}1v-eD>0zW;W)N?|6R17$6RJ{|GpN5hX6Ts4IV5@W zJJVDmQItaicv1J2+jfO**P#+>LQSLY(iCJD{7{#sLDKvnsFa$0pynu=`ZJk5n1x=i@5I6-D zFatFc2UlS}DzVL|89#zbuo+eAcBF{rMb!1TQHdQxC3F(?{1>QA`3>?hlN>yH|NrGg z0X^P@0pn3?mxp?=0u`_dwQDz78&Lr|tj{4IvyX#z{jl{T)Ho+?d(^f+mBcq+aiX<4 zZ!cU%1)N5e>>6soNPcy6UmU96LA{QJs6=XUe#uY){iw~`YTGZMmS(SQyBM#{G{A}e z`Mj4M8i+Zu$UT#>F*Fi)(c=y!HMvd674CR)zNfOIyUPtrsdgJuGUImyx}Wao=`Jw! zEnSaxk1Sah7FwCw8x~jWD=PQhQS1~Ktt~1G9bX#m37yGU7vaWx8{MrL_ E2ecm!M*si- diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index 297d1cdba..3ba898964 100644 --- a/sphinx/locale/sl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sl/LC_MESSAGES/sphinx.po @@ -1,9 +1,12 @@ - +# Slovenian translations for Sphinx. +# Copyright (C) 2011 ORGANIZATION +# This file is distributed under the same license as the Sphinx project. +# msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2011-09-21 10:06+0200\n" +"POT-Creation-Date: 2013-04-01 11:57+0200\n" "PO-Revision-Date: 2011-09-21 10:14+0200\n" "Last-Translator: Luka Marinko \n" "Language-Team: Rok Garbas \n" @@ -18,18 +21,12 @@ msgstr "" msgid "%s %s documentation" msgstr "" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#, python-format -msgid "%B %d, %Y" -msgstr "%d %B, %Y" - -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1510 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1513 #, python-format msgid "see also %s" msgstr "" @@ -39,6 +36,12 @@ msgstr "" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "%d %B, %Y" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "Vgrajeni deli" @@ -47,24 +50,24 @@ msgstr "Vgrajeni deli" msgid "Module level" msgstr "Nivo modula" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "%d %b, %Y" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Splošni abecedni seznam" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:309 msgid "index" msgstr "abecedni seznam" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:369 msgid "next" msgstr "naprej" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "nazaj" @@ -72,42 +75,39 @@ msgstr "nazaj" msgid " (in " msgstr " (v " -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr "Avtor sekcije: " -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "Avtor modula: " -#: sphinx/directives/other.py:140 +#: sphinx/directives/other.py:142 #, fuzzy msgid "Code author: " msgstr "Avtor modula: " -#: sphinx/directives/other.py:142 +#: sphinx/directives/other.py:144 msgid "Author: " msgstr "Avtor: " -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "Poglej Tudi" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "Parametri" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "Vrne" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "Vrne tip" @@ -136,59 +136,63 @@ msgstr "%s (C tip)" msgid "%s (C variable)" msgstr "%s (C spremenljivka)" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 msgid "function" msgstr "funkcija" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 msgid "member" msgstr "član" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" msgstr "" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "tip" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 #, fuzzy msgid "variable" msgstr "Spremenljivka" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "" + +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ razred)" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ tip)" -#: sphinx/domains/cpp.py:938 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ član)" -#: sphinx/domains/cpp.py:990 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ funkcija)" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "razred" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "%s() (vgrajene funkcije)" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metoda)" @@ -203,7 +207,7 @@ msgstr "%s() (razred)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s atribut)" @@ -213,15 +217,11 @@ msgstr "%s (%s atribut)" msgid "Arguments" msgstr "Parametri" -#: sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "" - -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "atribut" @@ -234,58 +234,58 @@ msgstr "Spremenljivka" msgid "Raises" msgstr "Sproži izjemo" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "%s() (v modulu %s)" -#: sphinx/domains/python.py:258 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "%s (vgrajene spremenljivke)" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "%s (v modulu %s)" -#: sphinx/domains/python.py:275 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "%s (vgrajen razred)" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "%s (razred v %s)" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metoda)" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statična metoda)" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statična metoda)" -#: sphinx/domains/python.py:341 +#: sphinx/domains/python.py:340 #, fuzzy, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s metoda)" -#: sphinx/domains/python.py:344 +#: sphinx/domains/python.py:343 #, fuzzy, python-format msgid "%s() (%s class method)" msgstr "%s() (%s metoda)" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s atribut)" @@ -304,49 +304,49 @@ msgstr "Seznam modulov" msgid "modules" msgstr "Moduli" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "Zastarelo" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "izjema" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 msgid "class method" msgstr "" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "statična metoda" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "modul" -#: sphinx/domains/python.py:695 +#: sphinx/domains/python.py:696 msgid " (deprecated)" msgstr " (zastarelo)" -#: sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:57 +#: sphinx/domains/rst.py:55 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 msgid "role" msgstr "" @@ -360,70 +360,97 @@ msgstr "okoljska spremenljivka; %s" msgid "%scommand line option; %s" msgstr "%scommand line parameter; %s" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "okoljska spremenljivka" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 #: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "Abecedni seznam" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "Seznam modulov" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Iskalnik" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr " Baza: %s" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr "vzdevek za :class:`%s`" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "Todo" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, fuzzy, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<> se nahaja v %s, v vrstici %d.)" -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "" @@ -475,7 +502,7 @@ msgid "Note" msgstr "Opomba" #: sphinx/locale/__init__.py:162 -msgid "See Also" +msgid "See also" msgstr "Poglej Tudi" #: sphinx/locale/__init__.py:163 @@ -521,25 +548,26 @@ msgstr "izjava" msgid "built-in function" msgstr "vgrajene funkcije" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "Seznam Vsebine" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Išči" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "Potrdi" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." msgstr "Vnesi ime modula, razreda ali funkcije." -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "Prikaži izvorno kodo" @@ -547,6 +575,19 @@ msgstr "Prikaži izvorno kodo" msgid "Overview" msgstr "Pregled" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +#, fuzzy +msgid "the documentation for" +msgstr "išči po dokumentaciji" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "Kazalo in seznami:" @@ -657,7 +698,7 @@ msgstr "Naslednja tema" msgid "next chapter" msgstr "naslednje poglavje" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." @@ -665,7 +706,7 @@ msgstr "" "Za pravilno delovanje Iskanja morete vklopiti\n" " JavaScript." -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -677,17 +718,21 @@ msgstr "" " bo iskalo po vseh besedah v iskalnem nizu. Strani, ki ne\n" " vsebujejo vseh besed ne bodo prikazane na seznamu rezultatov." -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "išči" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "Rezultati Iskanja" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." -msgstr "Vaše iskanje ni imelo nobenega zadetka." +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -725,25 +770,43 @@ msgstr "C API spremembe" msgid "Other changes" msgstr "Ostale spremembe" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "Povezava na naslov" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "Povezava na to definicijo" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "Skrij resultate iskanja" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +#, fuzzy +msgid "Searching" +msgstr "išči" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "" @@ -751,24 +814,28 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "Izdaja" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "Opombe" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "nadaljevanje iz prejšnje strani" -#: sphinx/writers/latex.py:681 +#: sphinx/writers/latex.py:710 msgid "Continued on next page" msgstr "Nadaljevanje na naslednji strani" -#: sphinx/writers/text.py:437 +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 +#, fuzzy, python-format +msgid "[image: %s]" +msgstr "[slika: %s]" + +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[slika]" - diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.js b/sphinx/locale/sv/LC_MESSAGES/sphinx.js index 15821abac..fa24a121b 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/sv/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "sv", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "D\u00f6lj S\u00f6kresultat", "Permalink to this definition": "Permalink till denna definition", "Expand sidebar": "Expandera sidolist", "Permalink to this headline": "Permalink till denna rubrik", "Collapse sidebar": "D\u00f6lj sidolist"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "sv", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "D\u00f6lj S\u00f6kresultat", "Permalink to this definition": "Permalink till denna definition", "Permalink to this headline": "Permalink till denna rubrik"}}); \ No newline at end of file diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index 40280d85d7add3ef1fc20f0e6b0dc7126cc513f3..b92b2affd760ac3f4a3aba4cee8d965e77ac5ea4 100644 GIT binary patch delta 3648 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 diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.po b/sphinx/locale/sv/LC_MESSAGES/sphinx.po index 6d0ed166e..a9236fa26 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sv/LC_MESSAGES/sphinx.po @@ -1,9 +1,12 @@ - +# Swedish translations for Sphinx. +# Copyright (C) 2011 ORGANIZATION +# This file is distributed under the same license as the Sphinx project. +# msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2011-09-21 10:06+0200\n" +"POT-Creation-Date: 2013-04-01 11:57+0200\n" "PO-Revision-Date: 2011-09-21 10:14+0200\n" "Last-Translator: Henrik Holmboe \n" "Language-Team: \n" @@ -18,18 +21,12 @@ msgstr "" msgid "%s %s documentation" msgstr "" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#, python-format -msgid "%B %d, %Y" -msgstr "%B %d, %Y" - -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1510 #, python-format msgid "see %s" msgstr "se %s" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1513 #, python-format msgid "see also %s" msgstr "se även %s" @@ -39,6 +36,12 @@ msgstr "se även %s" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "%B %d, %Y" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "Inbyggda" @@ -47,24 +50,24 @@ msgstr "Inbyggda" msgid "Module level" msgstr "Modulnivå" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Huvudindex" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:309 msgid "index" msgstr "index" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:369 msgid "next" msgstr "nästa" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "föregående" @@ -72,41 +75,38 @@ msgstr "föregående" msgid " (in " msgstr "(i " -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr "Sektionsförfattare" -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "Modulförfattare" -#: sphinx/directives/other.py:140 +#: sphinx/directives/other.py:142 msgid "Code author: " msgstr "Källkodsförfattare" -#: sphinx/directives/other.py:142 +#: sphinx/directives/other.py:144 msgid "Author: " msgstr "Upphovsman:" -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "Se även" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "Parametrar" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "Returnerar" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "Returtyp" @@ -135,58 +135,62 @@ msgstr "%s (C-typ)" msgid "%s (C variable)" msgstr "%s (C-variabel)" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 msgid "function" msgstr "funktion" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 msgid "member" msgstr "medlem" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" msgstr "makro" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "typ" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 msgid "variable" msgstr "variabel" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "Kastar" + +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "%s (C++-klass)" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "%s (C++-typ)" -#: sphinx/domains/cpp.py:938 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "%s (C++-medlem)" -#: sphinx/domains/cpp.py:990 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "%s (C++-funktion)" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "klass" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "%s() (inbyggd funktion)" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metod)" @@ -201,7 +205,7 @@ msgstr "%s() (klass)" msgid "%s (global variable or constant)" msgstr "%s (global variabel eller konstant)" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s attribut)" @@ -210,15 +214,11 @@ msgstr "%s (%s attribut)" msgid "Arguments" msgstr "Argument" -#: sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "Kastar" - -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "data" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "attribut" @@ -230,58 +230,58 @@ msgstr "Variabler" msgid "Raises" msgstr "Väcker" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "%s() (i modul %s)" -#: sphinx/domains/python.py:258 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "%s (inbyggd variabel)" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "%s (i modul %s)" -#: sphinx/domains/python.py:275 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "%s (inbyggd klass)" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "%s (klass i %s)" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metod)" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statisk metod)" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statisk metod)" -#: sphinx/domains/python.py:341 +#: sphinx/domains/python.py:340 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s klassmetod)" -#: sphinx/domains/python.py:344 +#: sphinx/domains/python.py:343 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s klassmetod)" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s attribut)" @@ -299,50 +299,50 @@ msgstr "Python Modulindex" msgid "modules" msgstr "moduler" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "Ersatt" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "undantag" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "metod" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 msgid "class method" msgstr "klassmetod" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "statisk metod" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "modul" -#: sphinx/domains/python.py:695 +#: sphinx/domains/python.py:696 #, fuzzy msgid " (deprecated)" msgstr " (ersatt)" -#: sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "%s (direktiv)" -#: sphinx/domains/rst.py:57 +#: sphinx/domains/rst.py:55 #, python-format msgid "%s (role)" msgstr "%s (roll)" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "direktiv" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 msgid "role" msgstr "roll" @@ -356,70 +356,97 @@ msgstr "miljövariabel; %s" msgid "%scommand line option; %s" msgstr "%skommandorad växel; %s" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "ordlista" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "grammatisk token" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "referensetikett" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "miljövariabel" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "programväxel" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 #: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "Index" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "Modulindex" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Söksida" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr " Baserad: %s" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr "alias för :class:`%s`" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "[source]" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "Att göra" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<> finns i %s, på rad %d.)" -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "ursprungsvärde" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "[source]" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "[docs]" @@ -470,7 +497,7 @@ msgid "Note" msgstr "Observera" #: sphinx/locale/__init__.py:162 -msgid "See Also" +msgid "See also" msgstr "Se även" #: sphinx/locale/__init__.py:163 @@ -516,25 +543,26 @@ msgstr "uttryck" msgid "built-in function" msgstr "inbyggda funktioner" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "Innehållsförteckning" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Sök" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "Gå" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." msgstr "Ange sökord eller modul-, klass- eller funktionsnamn." -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "Visa källfil" @@ -542,6 +570,19 @@ msgstr "Visa källfil" msgid "Overview" msgstr "Översikt" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +#, fuzzy +msgid "the documentation for" +msgstr "sök i det här dokumentet" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "Index och tabeller" @@ -652,13 +693,13 @@ msgstr "Nästa titel" msgid "next chapter" msgstr "Nästa kapitel" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "Var god aktivera JavaScript för sökfunktionalitet." -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -669,17 +710,21 @@ msgstr "" "\"sök\".\n" " Sökningen måste träffa på samtliga angivna sökord." -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "sök" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "Sökresultat" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." -msgstr "Din sökning gav inga resultat." +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -717,25 +762,43 @@ msgstr "Förändringar i C-API" msgid "Other changes" msgstr "Övriga förändringar" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "Permalink till denna rubrik" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "Permalink till denna definition" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "Dölj Sökresultat" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +#, fuzzy +msgid "Searching" +msgstr "sök" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "Expandera sidolist" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "Dölj sidolist" @@ -743,24 +806,28 @@ msgstr "Dölj sidolist" msgid "Contents" msgstr "Innehåll" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "Utgåva" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "Fotnoter" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "fortsättning från föregående sida" -#: sphinx/writers/latex.py:681 +#: sphinx/writers/latex.py:710 msgid "Continued on next page" msgstr "Fortsätter på nästa sida" -#: sphinx/writers/text.py:437 +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 +#, fuzzy, python-format +msgid "[image: %s]" +msgstr "[image: %s]" + +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[image]" - diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.js b/sphinx/locale/tr/LC_MESSAGES/sphinx.js index 4ba20a32b..555a20eab 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/tr/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "tr", "plural_expr": "0", "messages": {"Hide Search Matches": "Arama Sonu\u00e7lar\u0131n\u0131 Gizle", "Permalink to this definition": "Bu tan\u0131m\u0131n kal\u0131c\u0131 ba\u011flant\u0131s\u0131", "Expand sidebar": "Yan \u00e7ubu\u011fu geni\u015flet", "Permalink to this headline": "Bu ba\u015fl\u0131\u011f\u0131n kal\u0131c\u0131 ba\u011flant\u0131s\u0131", "Collapse sidebar": "Yan \u00e7ubu\u011fu daralt"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "tr", "plural_expr": "0", "messages": {"Hide Search Matches": "Arama Sonu\u00e7lar\u0131n\u0131 Gizle", "Permalink to this definition": "Bu tan\u0131m\u0131n kal\u0131c\u0131 ba\u011flant\u0131s\u0131", "Permalink to this headline": "Bu ba\u015fl\u0131\u011f\u0131n kal\u0131c\u0131 ba\u011flant\u0131s\u0131"}}); \ No newline at end of file diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo index 2bf9e7a3351ac2d61deedf9de38d6ba7ad90c70b..70008622da498efc2045b3c5f1ca59a4aeaf2c5b 100644 GIT binary patch delta 3712 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 diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.po b/sphinx/locale/tr/LC_MESSAGES/sphinx.po index cd8d7395e..6f97fd37d 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/tr/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 1.1pre/339c7a794c1a\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2011-09-21 10:06+0200\n" +"POT-Creation-Date: 2013-04-01 11:57+0200\n" "PO-Revision-Date: 2011-09-21 10:14+0200\n" "Last-Translator: Firat Ozgul \n" "Language-Team: tr \n" @@ -22,18 +22,12 @@ msgstr "" msgid "%s %s documentation" msgstr "" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#, python-format -msgid "%B %d, %Y" -msgstr "%d %B %Y" - -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1510 #, python-format msgid "see %s" msgstr "bkz. %s" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1513 #, python-format msgid "see also %s" msgstr "ayrıca bkz. %s" @@ -43,6 +37,12 @@ msgstr "ayrıca bkz. %s" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python'u İyileştirme Önerileri; PEP %s" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "%d %B %Y" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "Gömülüler" @@ -51,24 +51,24 @@ msgstr "Gömülüler" msgid "Module level" msgstr "Modül düzeyi" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "%d %b %Y" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Genel Dizin" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:309 msgid "index" msgstr "dizin" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:369 msgid "next" msgstr "sonraki" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "önceki" @@ -76,41 +76,38 @@ msgstr "önceki" msgid " (in " msgstr " (şunun içinde: " -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr "Bölümü yazan: " -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "Modülü yazan: " -#: sphinx/directives/other.py:140 +#: sphinx/directives/other.py:142 msgid "Code author: " msgstr "Kodu yazan: " -#: sphinx/directives/other.py:142 +#: sphinx/directives/other.py:144 msgid "Author: " msgstr "Yazan: " -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "Ayrıca bkz." - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "Parametreler" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "Dönüş değeri:" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "Dönüş tipi" @@ -139,58 +136,62 @@ msgstr "%s (C tipi)" msgid "%s (C variable)" msgstr "%s (C değişkeni)" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 msgid "function" msgstr "fonksiyonu" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 msgid "member" msgstr "öğesi" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" msgstr "makrosu" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "tipi" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 msgid "variable" msgstr "değişkeni" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "Şunu verir: " + +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ sınıfı)" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ tipi)" -#: sphinx/domains/cpp.py:938 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ öğesi)" -#: sphinx/domains/cpp.py:990 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ fonksiyonu)" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "sınıfı" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "%s() (gömülü fonksiyon)" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s metodu)" @@ -205,7 +206,7 @@ msgstr "%s() (sınıfı)" msgid "%s (global variable or constant)" msgstr "%s (global değişken veya sabit)" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s niteliği)" @@ -214,15 +215,11 @@ msgstr "%s (%s niteliği)" msgid "Arguments" msgstr "Argümanlar" -#: sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "Şunu verir: " - -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "verisi" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "niteliği" @@ -234,58 +231,58 @@ msgstr "Değişkenler" msgid "Raises" msgstr "Şunu üretir:" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "%s() (%s modülü içinde)" -#: sphinx/domains/python.py:258 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "%s (gömülü değişken)" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "%s (%s modülü içinde)" -#: sphinx/domains/python.py:275 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "%s (gömülü sınıf)" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "%s (%s içinde bir sınıf)" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s metodu)" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s statik metodu)" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s statik metodu)" -#: sphinx/domains/python.py:341 +#: sphinx/domains/python.py:340 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s sınıf metodu)" -#: sphinx/domains/python.py:344 +#: sphinx/domains/python.py:343 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s sınıf metodu)" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s niteliği)" @@ -303,49 +300,49 @@ msgstr "Python Modül Dizini" msgid "modules" msgstr "modüller" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "Önerilmiyor" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "istisnası" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "metodu" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 msgid "class method" msgstr "sınıf metodu" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "statik metodu" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "modülü" -#: sphinx/domains/python.py:695 +#: sphinx/domains/python.py:696 msgid " (deprecated)" msgstr " (önerilmiyor)" -#: sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "%s (yönerge)" -#: sphinx/domains/rst.py:57 +#: sphinx/domains/rst.py:55 #, python-format msgid "%s (role)" msgstr "%s (rol)" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "yönergesi" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 msgid "role" msgstr "rolü" @@ -359,70 +356,97 @@ msgstr "çevre değişkeni; %s" msgid "%scommand line option; %s" msgstr "%skomut satırı seçeneği; %s" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "sözlük terimi" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "dilbilgisi girdisi" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "referans etiketi" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "çevre değişkeni" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "program seçeneği" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 #: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "Dizin" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "Modül Dizini" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Arama Sayfası" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr " Taban: %s" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr "şunun takma adı: :class:`%s`" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "[kaynak]" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "Yapılacaklar" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<<özgün girdi>> %s içinde ve %d satırında bulunuyor.)" -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "özgün girdi" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "[kaynak]" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "[belgeler]" @@ -473,7 +497,7 @@ msgid "Note" msgstr "Not" #: sphinx/locale/__init__.py:162 -msgid "See Also" +msgid "See also" msgstr "Ayrıca bkz." #: sphinx/locale/__init__.py:163 @@ -519,25 +543,26 @@ msgstr "deyim" msgid "built-in function" msgstr "gömülü fonksiyon" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "İçindekiler Tablosu" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Ara" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "Git" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." msgstr "Aranacak terimleri veya modül, sınıf ya da fonksiyon adını yazınız" -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "Kaynağı Göster" @@ -545,6 +570,19 @@ msgstr "Kaynağı Göster" msgid "Overview" msgstr "Genel Bakış" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +#, fuzzy +msgid "the documentation for" +msgstr "Bu belgelerde ara" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "Dizinler ve tablolar" @@ -655,7 +693,7 @@ msgstr "Sonraki konu" msgid "next chapter" msgstr "sonraki bölüm" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." @@ -663,7 +701,7 @@ msgstr "" "Arama işlevini kullanabilmek için lütfen JavaScript'i\n" " etkinleştirin." -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -675,17 +713,21 @@ msgstr "" "otomatik olarak bütün kelimeleri arayacaktır. Eksik kelime içeren \n" "sayfalar sonuç listesinde görünmez." -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "ara" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "Arama Sonuçları" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." -msgstr "Arama sonucunda herhangi bir belge bulunamadı." +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -723,25 +765,43 @@ msgstr "C API'sindeki değişiklikler" msgid "Other changes" msgstr "Diğer değişiklikler" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "Bu başlığın kalıcı bağlantısı" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "Bu tanımın kalıcı bağlantısı" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "Arama Sonuçlarını Gizle" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +#, fuzzy +msgid "Searching" +msgstr "ara" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "Yan çubuğu genişlet" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "Yan çubuğu daralt" @@ -749,24 +809,28 @@ msgstr "Yan çubuğu daralt" msgid "Contents" msgstr "İçindekiler" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "Sürüm" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "Dipnotları" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "önceki sayfadan devam" -#: sphinx/writers/latex.py:681 +#: sphinx/writers/latex.py:710 msgid "Continued on next page" msgstr "Devamı sonraki sayfada" -#: sphinx/writers/text.py:437 +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 +#, python-format +msgid "[image: %s]" +msgstr "[resim: %s]" + +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[resim]" - diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.js b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.js index 1c7babb77..25078c55b 100644 --- a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "uk_UA", "plural_expr": "(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)", "messages": {"Hide Search Matches": "\u041f\u0440\u0438\u0445\u043e\u0432\u0430\u0442\u0438 \u0441\u043f\u0456\u0432\u043f\u0430\u0434\u0456\u043d\u043d\u044f \u043f\u043e\u0448\u0443\u043a\u0443", "Permalink to this definition": "\u041f\u043e\u0441\u0442\u0456\u0439\u043d\u0435 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f \u043d\u0430 \u0446\u0435 \u0432\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f", "Expand sidebar": "", "Permalink to this headline": "\u041f\u043e\u0441\u0442\u0456\u0439\u043d\u0435 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f \u043d\u0430 \u0446\u0435\u0439 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a", "Collapse sidebar": ""}}); \ No newline at end of file +Documentation.addTranslations({"locale": "uk_UA", "plural_expr": "(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)", "messages": {"Hide Search Matches": "\u041f\u0440\u0438\u0445\u043e\u0432\u0430\u0442\u0438 \u0441\u043f\u0456\u0432\u043f\u0430\u0434\u0456\u043d\u043d\u044f \u043f\u043e\u0448\u0443\u043a\u0443", "Permalink to this definition": "\u041f\u043e\u0441\u0442\u0456\u0439\u043d\u0435 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f \u043d\u0430 \u0446\u0435 \u0432\u0438\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f", "Permalink to this headline": "\u041f\u043e\u0441\u0442\u0456\u0439\u043d\u0435 \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u043d\u044f \u043d\u0430 \u0446\u0435\u0439 \u0437\u0430\u0433\u043e\u043b\u043e\u0432\u043e\u043a"}}); \ No newline at end of file diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index 5fa633d3660f05861329e2db534f8f98bd388067..9c64c26c8e5e1e07d4a82811b45945703bf991d2 100644 GIT binary patch delta 3534 zcmdVbYiv|S7{>8wX`$32bPG~0!hvqNQ-M;@hA7lv4Pv1{6+$pscTd}e?QYpiD_XJ` zZwRQ7LNE}(popLlU@?LTLV%zsi2)K&Y77t*A{Y>&sPXoH+A%7AGk&qz?r&z!T;6$S zPJ69#{mkSSo{W`-pH2Ms=66P>YJdJL%Qhy5>I>KjSEIVTiT!aKcEn@W7W@25%%lAh z=HhSI6?1PfrZWye=1rP06g2U@$j4Ojr4DoOR;)u!&}7?RMD<^XTHtNG4fkUgJcSx} z5gojN8lTT<6wMG+z+znZuy3ib z1@1*NVmI7?3Sc*8vA#J#;com`4VX>%6ips>z<#KKgK;$8gW72v73edl zaj&8#-i!}o3fp5E=_LCm3l&Hnj>S7LsYq)m(AU(VCTK#FM#QMpKF4YbXdSku9Mh@q zxAlXVLH!hJ{O727zd{9m*_zHdXna2Q!(qAPUu#v+Ko-p-sQNrxe*zWxV&r3*ZG9tZ z!R@HP-a%#HAZo#*sBz~|m--u2rm{W8lwlz%kXjG<*Up=0@ZwTbAlp%?+lxAaL#VSo zikj$C)DEtr7U;%o>Ng5Ct`v3KC!oeXgj(lO9EbB!N3ktQf$W%%P&;Tr4LFYkZLXqH zn$B#RI0xHd9x4OfQ49A*&Ev%-Sc2-mA2r_xsD3AGy~Wm(7bs}qE6B(Ez}M~Ai9BlI zp{PJgP!pA-&UQK~Q?pPRs73|!6l&aJ)O^cPZ_y^(z8|&TN6677&55>xIg6V33M$g? zPz(Hm`a_e=P1N(@sGSvCORW=7)HrEZCRum*KD zTTqwrFlxe+sD)cl@BcYl{~5L8cKi|1W$c9N-wQwCEpm`On5(3LqG``yZKMzO*Zc3K zpb5&YmA1odl@1Z7WK}~QS6>uhL(iwNgf#^l`n~Xy+fP?TQ)PlQ_n9PSb0?+l* z-+u~u+@QWV33bWlqEgg=>ez&gF(3;QJL9|dpP?8SW3N# z)hU{Hu?SD00&lPUw`Kqp@g&rQvr!%9BAYXfI2Ko+c6bzv@hb8$UK*95a#V`_)`h4I ztg_Fy*!IJy^^#{O=*+)Gr8JX^pxfF7HE;ly;a%1yRA%;}#uXK|rM3)dG67To&!ZN2 z4K?pBRDk=C>tkAwBqYuE6tu(q0c`_HPy_Bmon0mBNai8~%wp6TZn5nbPzz>q19g;r zaTJb4%`+FZp#-+arKrp<$JYP<>nUiV?X3-5E?h$WG-`m$71pH;VF!H7))(3OGR&fV z1!`w&aU||W9p%@kz<)$yHN6J6^)JJmBn=NxPzGjV1}3m0K91V?)2InHAg5#wp(ehF zdf#tYGl#V8EDx0t$JR@6JoR#0UyNDQS7K5-TxTC_wC+Tm{XW#KJ&wx2HPo5@iVC3f z(6+at4=TW7RC^WbEeW9B`?aWzZN+TdiA-Vk4rO`;aM3=vg4*#2Y=${hn*BX1QfG3GWOT0gMT6lQC+7O1{@S9V=GSur)13xiDB+em6GDx? z1u>_hYVzbFGtG@BqTxRtl|`b_NTVBYqHeVtb;Ex5<{lMp<6j;&r+Lats)ONRtkw+- zbE+eWa6lo|`)b@lvB6HAFYd2ZAn{t)2II_6xX}eg&Eq|znxF7Y?DDW1@<;02e$I^A zV9W`|n)iA7CIbc0_d~wGY3OS9DXdveJXo}Ulp%78~ z3E%a{Lkk=qakO?^5J?Pd(Aps$(8Uc$5;e7s-xqglBGI55D>AcLEjGu@u8I2UYfA}# zj>lGL4A!v~8dH}%J=3y%vAC0{4=^~D-gSOjr{duwMh_n`(iu6jv}9~*QMdCM|2&kG zzh^4TGd1eod?sBB*39~Q`v1$5*;ddnZhGtSJOA#03cS;rU+}*Czd4{_;f}PN(4Qw1 KNc9-_S=#TI#t~fr delta 2753 zcmYM!e@vBC9LMo<>577a2>uEQ9tgP%h5@PIj}_jUnoJ#Swk8@mp52wzL~Hyi$1_)p`1$gkS}f4yi!H&!8te% zm*RL_g=6t;WZbZ+r=Wpd9E}HThp#Y^dM9dtpKbd!RR00g1VcCxlXy4@1E}Xp(ZL0% z=hq-V^DY+!T#rf2Z+26dM8g5pfbE!y7jZJ)L}kFoMfVf&am>P*I2SW8goWth6#O11 z;C0l5gE$Hm{WB1UqnO_;q@Wd5a2bhJs0Uxi>9`fOvQ|`J-=PM&h8nmZ7vmj_#b;SQ zNip+LfmC1#u0?IlA>?Pif!j7L4^ zpbl|9DpLzFh^tX+{0y`4Br1TOapYeq>!(4fA3(O-4BC23^6>q5)af0Ex}Sp@uo#u% zc}PrVB`UCW*3GE?+mInmBPwH`pyvHNOyMyK$51PbpaMCCIoOT=1!&s`P!kNI0(yi` z;CS+^fs0WS%|%VT1hqBGQ7e8Gm7%q$`NAJk(1W{B1MWqg`lGh}N7RH-RO)-IH&Fu* zq5>X5eGmK$qV@nP@B-^}>l{@7AQC{>ETW*umf8+0P!q03rMTAC-$SMN1KZw=O8r69 z8R|x@$U{wh3H6%x+WH`Bp$||C8Og!%>;0cV;TKMSD(W!Z;uX;MKo_lKGHPY%r~&3# z%kBMT$l^^U>g`#Nnz-K9_uKp5paQ*s3gD{R_5S}!L3{Q9`I)igU-ba$fmx^kUchXu zMNPN|m7zoEU>oZBOQ`2>qXK?}EZW2oRRGgb{pMphkHRYya&aeW!dB#G&TuKjUeuQ^ zfp;ncpGUPa0;E3neEm+s7&m~cDDKpoK3wtgZyhn`?yTQ zE>z?Ls1@HwMO^F*5BMDF{)@<5rV2}N3u=XJ_%vQdZP^%B$6Cx&sEn3dYfuXahi!)@ zd*di-!gHuSzJf~WZPekshk7uP(Sw+2twv?$Fw(_LBpRKSQq;sNQR8k#jn{w*EbQ7F z$Lx)6)ZSb`vSj*D1I93#>e;9PgQzW9Vcm$u)EiL~bfE%1k9r-iqcYcz3gjPTp0F7) zm6J$AI;vw0>H|@W+WU>j`7v9u2tP*c?RivSS1Gx<*0>J zW2WB!?G#v~Ifxqg9P0i2)%pi&z`LlG>m4eCR8)HAN1 g6Mf(7ihjhMF7LS4MyWH}XlLJk diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po index a5141fad5..e9cab1154 100644 --- a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 0.6\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2011-09-21 10:06+0200\n" +"POT-Creation-Date: 2013-04-01 11:57+0200\n" "PO-Revision-Date: 2011-09-21 10:15+0200\n" "Last-Translator: Petro Sasnyk \n" "Language-Team: uk_UA \n" @@ -23,18 +23,12 @@ msgstr "" msgid "%s %s documentation" msgstr "" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#, python-format -msgid "%B %d, %Y" -msgstr "" - -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1510 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1513 #, fuzzy, python-format msgid "see also %s" msgstr "дивись також %s" @@ -44,6 +38,12 @@ msgstr "дивись також %s" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python Enhancement Proposals; PEP %s" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "Вбудовані елементи" @@ -52,24 +52,24 @@ msgstr "Вбудовані елементи" msgid "Module level" msgstr "Рівень модуля" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "%b %d, %Y" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "Загальний індекс" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:309 msgid "index" msgstr "індекс" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:369 msgid "next" msgstr "наступний" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "попередній" @@ -77,42 +77,39 @@ msgstr "попередній" msgid " (in " msgstr " (в " -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr "Автор секції: " -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "Автор модуля: " -#: sphinx/directives/other.py:140 +#: sphinx/directives/other.py:142 #, fuzzy msgid "Code author: " msgstr "Автор модуля: " -#: sphinx/directives/other.py:142 +#: sphinx/directives/other.py:144 msgid "Author: " msgstr "Автор: " -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "Дивись також" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "Параметри" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "Повертає" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "Тип повернення" @@ -141,59 +138,63 @@ msgstr "%s (C тип)" msgid "%s (C variable)" msgstr "%s (C змінна)" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 msgid "function" msgstr "функція" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 msgid "member" msgstr "член" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" msgstr "макрос" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "тип" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 #, fuzzy msgid "variable" msgstr "Змінна" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "" + +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ клас)" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ тип)" -#: sphinx/domains/cpp.py:938 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ член)" -#: sphinx/domains/cpp.py:990 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ функція)" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "клас" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "%s() (вбудована функція)" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s метод)" @@ -208,7 +209,7 @@ msgstr "%s() (клас)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s атрибут)" @@ -218,15 +219,11 @@ msgstr "%s (%s атрибут)" msgid "Arguments" msgstr "Параметри" -#: sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "" - -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "атрибут" @@ -239,58 +236,58 @@ msgstr "Змінна" msgid "Raises" msgstr "Викликає" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "%s() (в модулі %s)" -#: sphinx/domains/python.py:258 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "%s (вбудована змінна)" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "%s (в модулі %s)" -#: sphinx/domains/python.py:275 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "%s (вбудований клас)" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "%s (клас в %s)" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s метод)" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s статичний метод)" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s статичний метод)" -#: sphinx/domains/python.py:341 +#: sphinx/domains/python.py:340 #, fuzzy, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s метод)" -#: sphinx/domains/python.py:344 +#: sphinx/domains/python.py:343 #, fuzzy, python-format msgid "%s() (%s class method)" msgstr "%s() (%s метод)" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s атрибут)" @@ -309,49 +306,49 @@ msgstr "Індекс модулів" msgid "modules" msgstr "модулі" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "Застарілий" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "виняткова ситуація" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 msgid "class method" msgstr "" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "статичний метод" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "модуль" -#: sphinx/domains/python.py:695 +#: sphinx/domains/python.py:696 msgid " (deprecated)" msgstr " (застарілий)" -#: sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:57 +#: sphinx/domains/rst.py:55 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 msgid "role" msgstr "" @@ -365,70 +362,97 @@ msgstr "змінна оточення; %s" msgid "%scommand line option; %s" msgstr "%sопція командного рядка; %s" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "змінна оточення" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 #: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "Індекс" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "Індекс модулів" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "Сторінка пошуку" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr " Базовий: %s" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr "синонім :class:`%s`" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "Доробити" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, fuzzy, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(Початкове входження знаходиться в %s, рядок %d.)" -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "" @@ -480,7 +504,7 @@ msgid "Note" msgstr "Примітка" #: sphinx/locale/__init__.py:162 -msgid "See Also" +msgid "See also" msgstr "Дивись також" #: sphinx/locale/__init__.py:163 @@ -526,25 +550,26 @@ msgstr "вираз" msgid "built-in function" msgstr "вбудована функція" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "Зміст" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "Пошук" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "Вперед" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." msgstr "Введіть пошуковий термін, модуль, клас чи назву функції." -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "Відобразити вихідний текст" @@ -552,6 +577,19 @@ msgstr "Відобразити вихідний текст" msgid "Overview" msgstr "Огляд" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +#, fuzzy +msgid "the documentation for" +msgstr "шукати цю документацію" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "Індекси та таблиці:" @@ -662,7 +700,7 @@ msgstr "Наступна тема" msgid "next chapter" msgstr "наступний розділ" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." @@ -671,7 +709,7 @@ msgstr "" "\"\n" "\" пошук." -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -683,17 +721,21 @@ msgstr "" " пошуку автоматично шукатиме за всіма словами. Сторінки\n" " що містять менше слів не з'являться в результуючому списку." -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "пошук" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "Результати пошуку" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." -msgstr "Ваш пошук не виявив жодних співпадінь." +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -731,25 +773,43 @@ msgstr "зміни C API" msgid "Other changes" msgstr "Інші зміни" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "Постійне посилання на цей заголовок" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "Постійне посилання на це визначення" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "Приховати співпадіння пошуку" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +#, fuzzy +msgid "Searching" +msgstr "пошук" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "" @@ -757,25 +817,29 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "Реліз" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "" -#: sphinx/writers/latex.py:681 +#: sphinx/writers/latex.py:710 #, fuzzy msgid "Continued on next page" msgstr "Повний індекс на одній сторінці" -#: sphinx/writers/text.py:437 -msgid "[image]" +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 +#, python-format +msgid "[image: %s]" msgstr "" +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 +msgid "[image]" +msgstr "" diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.js b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.js index 8bd588e22..866021537 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "zh_CN", "plural_expr": "0", "messages": {"Hide Search Matches": "\u9690\u85cf\u641c\u7d22\u7ed3\u679c", "Permalink to this definition": "\u6c38\u4e45\u94fe\u63a5\u81f3\u76ee\u6807", "Expand sidebar": "\u5c55\u5f00\u8fb9\u680f", "Permalink to this headline": "\u6c38\u4e45\u94fe\u63a5\u81f3\u6807\u9898", "Collapse sidebar": "\u6298\u53e0\u8fb9\u680f"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "zh_CN", "plural_expr": "0", "messages": {"Hide Search Matches": "\u9690\u85cf\u641c\u7d22\u7ed3\u679c", "Permalink to this definition": "\u6c38\u4e45\u94fe\u63a5\u81f3\u76ee\u6807", "Permalink to this headline": "\u6c38\u4e45\u94fe\u63a5\u81f3\u6807\u9898"}}); \ No newline at end of file diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index bc151b7178fc26e2cfa4b2099ff21eb170f990a7..4eecd29cc0f0ec3d70faa6d561379f7305f842b3 100644 GIT binary patch delta 3665 zcmd7Td2Ccw6vy#fTNZ2CI#4YX`-(Ks25O7aBGxJ>Vnl&ZjX?rtY#*J5VW!TTDHJiI z60PzFV8(?AE(8~%u@XnbNJIri6r%*(OE4;Kjl_r=#l+?NYmaOE%lL;)>F3@1?mhS1 zbKiTse&POE>BEJ2cQ}5w@~?z{8~dsC$4|*g&K1xcjf1cfHDn5o!3I1L!{!pZpTZFR z*Wxf-i^Fjf4#B68xM{bC3k5!i{JIbMqX9>8F#d!JP{3&QpNbk^g<7B+B2YW@~f{AW-J@4+J0cl)`}#Lw_#`~iz`D643JN*sv|cnZ!(hPZ^?Pou_XuofS~ zQaplZVjkIO;j>Vcn}O9h3rDfOTgk-;T#w4E%X}IK(%yv)xX;@8l!4eTgafb)HNOJ2 z;JJ1`iQ3qWs10OL@w!kI+m2~1_&OK;@m)`+iZX9Na&Q-*<~1sMj&lo9 z0T)qcC6+=}ZWW$@cUk*x%%k0fnx7p;{T29GI<$k`=6k3BUtt;M7WSQeIjZ!Ntvwx8 z+IiN$2(^JF$W+&E?ORX_XHW^QM^)mXLh7%DAGd)oq27Z1sFEGU={S&Vl+Y~xr~+5v zSd3YJ29?;us7gMGI+`7*1b3t2y@A?L4{Du)H1C84R-h)Cw@)PnP|9wVru zc@S0o7f?GnfEwS8+WBXw5+6s!&1ILln2)N&VATC|hzlh!8Wpe{S7R+|;tQz2dr{-w zG!LN`K7y>_j^b!Mfd@f>Jyar3%6{d^u|VB-GJNLw&qlBNuvY!l-uC zTw&gV3UDWCXPeEexf>PuAS&=j=C{`0pR#!Lk3jb7YEjR`>`|P*c77!tyb-P$Rnq0i zvAJ8#`|bXAWOHtxwLd{6ejF7zk0*-f(3Rj>I0;pmsJRxk@Dr%Y>@1=FW4U;d4o&<5 zdF9MpbMVYTN--{0~rZkEQL#akKxa zeK$g=1xKPLj75Ej>g@gsRKOdoy#~8!-+|i5HKl#?J5lp*LoN7#wI8*1dZ%5yWWI(f z{Xyh;b3LdXV_hs(&*wKkXi|j_s(-cUt>R zYj>MpqY@av_fyZx>8QZxBggL=tv`-RY!zyub>>~xe=qV}x<|2$_1zvWIBxejYC^v; zeHNfzrw}UOcylt=)1Ho6IBoqKPzh}@pSJ$JsJL&Lhfo##ShBu5YB#<&e?~n-{Z8xq z6c?es1DjA!?<1%W)>GEM)B0aVRq!Axu`jT9Lp zLQT9JmC)6wfPuLJ^}V>kTxiqvm&(SNC1HMpnmKuKYpgYh_{|f%#qm_ESvj?ZTm11sg|{@EY>Ft6WW={*ylYZ^qN6JFaA;EI zqtKk8SNPGU_)@>jyDZWgc&$OEdU$ENIo_07>c^5nl{Yu)hXbETONfw4_=E~4y>K+@ zEsH0b120Th(B?;@WZgviep52q;f2YgcVI_6HLhK2N4dceKNe55M7*YO(r<|;TK%BP zEnu}^p?K67GqjaO4Mb#h&H z$jQZd|8NxJM$OI1K3`Ij8=9N&|8^QxneNio`G2kae|ae9dkyuCy(jPeyR*68o0@sm myY&BXHlN$BLe?O|s%(7zz(LYY7IXh)cQO>VCgATs{ delta 3044 zcmb`}i%->M9LMp80P})31QbL#f+;w;r5(eRaVgU=GtH8w#GpDq2Ji=f(w191;(NE0UEG3gp>OQ?A_(Sv`Z=8qs6 zMK>Omuoq*9?{X<<;(Q#A6&Q*ZENY@2K&iWaY(Cn27Um5;kBa zeuyKn1EcXT>_>bTLAuH)2K%B1b1>EF706guhYzD4wZKMHfc@709cm-jPznEmS}%g* z)ConS;!MEV=tX}Y3U5;2dR!wa!(BKTTTpj>3t7wEMJ*7bC?OmtYT*dZR|zJgP9zH- z!l$f01H-53q-tL0-9Za^(?7!~j%R05|_clI@E=k2HyyNU|@ z4{Dyym7?p9dRr1v?T@1Z=A*8nuvfo(k%AU3M`gSW^~JK>+IOKcKVZIZ9z~6BMkUaS zO03QL&!YnVfI8|cR=3hL;?!OO@u&y8)^{{237R*Bho{oCIXIZ@*bt2WMovlXg zXgzA)c2wY>Tx{^;(0necx z-b+@$Zr(8;pyo%Ay*3tWrkdHP?-DnYf)*|^m!R6$paxg1Uw}%yCXV-C3$Lbu>u}pK8=Fwiz;!d6`x!$$1vPFK@RKmjVi3)Wt2F2NbJ zueAO)RNyaB^V(70ADz}ej#o?TrlZz-0xx5}pMrLjkkGrpB-8>qsDX2=US#zuv)+6a zb>wT2>vlU)8##{Sunm>iO;iGRt-r_W{=td89r37usi*}q&0K4L7PY{9t1m_+US;)l zR^MbEKqb(ETJI<1kliiRGtt)*T+i>~DFg$XnY|ruveln73sG;$TvQ_EW&>*BbynYx z3V6i)-24hPuLBjYJE)(#r=TOcXZ8d;XyY%C1`fd#9FBUgbIqBkw_z^oBwj)#(tw(` z4Ha-FDxvpKU)3$Bc%Mn)yEE4Cjd>9@@fzwW{SCF?12ddgL+^it8HegmK`oqtT(8SU z1uU}ug=VR_1cQJ7>nLdAD)S8+u*K>DR6_f$e#C4+eNUW1?fg7yr@x@S3GZVtan$_q zLHI!=08drFo6aQm}moX&8L%_;|3&#HWv4JSX@);Ywn1S z4LLDo&AUg$hBcp!pB*xz^W^F7x10Wlv?3Emg$4>nR|LY7 zrUm>-*@32{;>^yI2fO#I@7lJnyXD=k6NkF?ZSLB9>c*zyovp2%CwI`*-5TgRu#arJ U-r3l7=y2eRU;1s!E#@&Et; diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index 46be6a6a5..7cf612526 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po @@ -8,34 +8,27 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 0.6\n" "Report-Msgid-Bugs-To: zhutao.iscas@gmail.com\n" -"POT-Creation-Date: 2011-09-21 10:06+0200\n" +"POT-Creation-Date: 2013-04-01 11:57+0200\n" "PO-Revision-Date: 2013-02-21 18:31+0800\n" "Last-Translator: yinian1992 \n" "Language-Team: cn \n" -"Plural-Forms: nplurals=1; plural=0;\n" +"Plural-Forms: nplurals=1; plural=0\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 0.9.6\n" -"X-Generator: Poedit 1.5.5\n" #: sphinx/config.py:81 #, python-format msgid "%s %s documentation" msgstr "%s %s 文档" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#, python-format -msgid "%B %d, %Y" -msgstr "%Y 年 %m 月 %d 日" - -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1510 #, python-format msgid "see %s" msgstr "见 %s" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1513 #, python-format msgid "see also %s" msgstr "也可以参考 %s" @@ -45,6 +38,12 @@ msgstr "也可以参考 %s" msgid "Python Enhancement Proposals; PEP %s" msgstr "Python 建议文件; PEP %s" +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "%Y 年 %m 月 %d 日" + #: sphinx/builders/changes.py:73 msgid "Builtins" msgstr "内置" @@ -53,24 +52,24 @@ msgstr "内置" msgid "Module level" msgstr "模块级别" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "%Y 年 %m 月 %d 日" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "总目录" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:309 msgid "index" msgstr "索引" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:369 msgid "next" msgstr "下一页" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "上一页" @@ -78,41 +77,38 @@ msgstr "上一页" msgid " (in " msgstr "" -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr "节作者:" -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "模块作者:" -#: sphinx/directives/other.py:140 +#: sphinx/directives/other.py:142 msgid "Code author: " msgstr "代码作者:" -#: sphinx/directives/other.py:142 +#: sphinx/directives/other.py:144 msgid "Author: " msgstr "作者:" -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "也可以参考" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "%s %s" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "参数" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "返回" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "返回类型" @@ -141,58 +137,62 @@ msgstr "%s (C 类型)" msgid "%s (C variable)" msgstr "%s (C 变量)" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 msgid "function" msgstr "函数" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 msgid "member" msgstr "成员" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" msgstr "宏" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "类型" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 msgid "variable" msgstr "变量" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "抛出" + +#: sphinx/domains/cpp.py:1038 #, python-format msgid "%s (C++ class)" msgstr "%s (C++ 类)" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ 类型)" -#: sphinx/domains/cpp.py:938 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ 成员)" -#: sphinx/domains/cpp.py:990 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ 函数)" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "类" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "%s() (內置函数)" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 方法)" @@ -207,7 +207,7 @@ msgstr "%s() (类)" msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s 属性)" @@ -216,15 +216,11 @@ msgstr "%s (%s 属性)" msgid "Arguments" msgstr "参数" -#: sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "抛出" - -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "全局量" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "属性" @@ -236,58 +232,58 @@ msgstr "变量" msgid "Raises" msgstr "引发" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "%s() (在 %s 模块中)" -#: sphinx/domains/python.py:258 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "%s (內置变量)" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "%s() (在 %s 模块中)" -#: sphinx/domains/python.py:275 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "%s (內置类)" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "%s (%s 中的类)" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s 方法)" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s 静态方法)" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s 静态方法)" -#: sphinx/domains/python.py:341 +#: sphinx/domains/python.py:340 #, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s 类方法)" -#: sphinx/domains/python.py:344 +#: sphinx/domains/python.py:343 #, python-format msgid "%s() (%s class method)" msgstr "%s() (%s 类方法)" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s 属性)" @@ -305,49 +301,49 @@ msgstr "Python 模块索引" msgid "modules" msgstr "模块" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "已移除" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "例外" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "方法" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 msgid "class method" msgstr "类方法" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "静态方法" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "模块" -#: sphinx/domains/python.py:695 +#: sphinx/domains/python.py:696 msgid " (deprecated)" msgstr " (已移除)" -#: sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:57 +#: sphinx/domains/rst.py:55 #, python-format msgid "%s (role)" msgstr "" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 msgid "role" msgstr "" @@ -361,70 +357,97 @@ msgstr "环境变量; %s" msgid "%scommand line option; %s" msgstr "%s命令行选项; %s" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "环境变量" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 #: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "索引" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "模块索引" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "搜索页面" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr " 基类:%s" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr ":class:`%s` 的别名" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "[源代码]" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "待处理" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<<原始记录>> 见 %s,行 %d)" -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "原始记录" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "[源代码]" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "[文档]" @@ -475,7 +498,7 @@ msgid "Note" msgstr "注解" #: sphinx/locale/__init__.py:162 -msgid "See Also" +msgid "See also" msgstr "也可以参考" #: sphinx/locale/__init__.py:163 @@ -521,25 +544,26 @@ msgstr "语句" msgid "built-in function" msgstr "內置函数" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "內容目录" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "搜索" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "搜索" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." msgstr "输入相关的模块,术语,类或者函数名称进行搜索" -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "显示源代码" @@ -547,6 +571,19 @@ msgstr "显示源代码" msgid "Overview" msgstr "概述" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +#, fuzzy, python-format +msgid "the documentation for" +msgstr "%s %s 文档" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "索引和表格" @@ -628,12 +665,11 @@ msgid "Last updated on %(last_updated)s." msgstr "最后更新日期是 %(last_updated)s." #: sphinx/themes/basic/layout.html:198 -#, python-format +#, fuzzy, python-format msgid "" -"Created using Sphinx " +"Created using Sphinx " "%(sphinx_version)s." -msgstr "" -"使用 Sphinx %(sphinx_version)s." +msgstr "使用 Sphinx %(sphinx_version)s." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -656,33 +692,35 @@ msgstr "下一个主题" msgid "next chapter" msgstr "下一章" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "请激活 JavaScript 开启搜索功能" -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" " function will automatically search for all of the words. Pages\n" " containing fewer words won't appear in the result list." -msgstr "" -"在这儿,你可以对这些文档进行搜索。向搜索框中输入你所要搜索的关键字并点击\"搜" -"索\"。注意:搜索引擎会自动搜索所有的关键字。将不会搜索到部分关键字的页面." +msgstr "在这儿,你可以对这些文档进行搜索。向搜索框中输入你所要搜索的关键字并点击\"搜索\"。注意:搜索引擎会自动搜索所有的关键字。将不会搜索到部分关键字的页面." -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "搜索" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "搜索结果" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." -msgstr "你的搜索没有找到任何的结果." +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -720,25 +758,43 @@ msgstr "C API 更改" msgid "Other changes" msgstr "其他更改" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "永久链接至标题" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "永久链接至目标" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "隐藏搜索结果" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +#, fuzzy +msgid "Searching" +msgstr "搜索" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "展开边栏" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "折叠边栏" @@ -746,23 +802,28 @@ msgstr "折叠边栏" msgid "Contents" msgstr "目录" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "发布" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "脚注" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "续上页" -#: sphinx/writers/latex.py:681 +#: sphinx/writers/latex.py:710 msgid "Continued on next page" msgstr "下页继续" -#: sphinx/writers/text.py:437 +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 +#, fuzzy, python-format +msgid "[image: %s]" +msgstr "[图片: %s]" + +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[图片]" diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js index 9bfcec76c..82382e732 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "zh_TW", "plural_expr": "0", "messages": {"Hide Search Matches": "", "Permalink to this definition": "", "Expand sidebar": "", "Permalink to this headline": "", "Collapse sidebar": ""}}); \ No newline at end of file +Documentation.addTranslations({"locale": "zh_TW", "plural_expr": "0", "messages": {"Hide Search Matches": "", "Permalink to this definition": "", "Permalink to this headline": ""}}); \ No newline at end of file diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index 98c5d6e82a0f6a0ac31aa8ce95205b096b8b8fa3..a255d9e36df26b594e4944ba62a96dd10bcad464 100644 GIT binary patch delta 3486 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 K|Ig12x_<#~dIV(v diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po index 5d178af1f..1e881e997 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 0.5\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2011-09-21 10:06+0200\n" +"POT-Creation-Date: 2013-04-01 11:57+0200\n" "PO-Revision-Date: 2011-01-22 14:41+0100\n" "Last-Translator: Fred Lin \n" "Language-Team: tw \n" @@ -22,18 +22,12 @@ msgstr "" msgid "%s %s documentation" msgstr "" -#: sphinx/environment.py:119 sphinx/writers/latex.py:190 -#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:203 -#, python-format -msgid "%B %d, %Y" -msgstr "%Y 年 %m 月 %d 日" - -#: sphinx/environment.py:1625 +#: sphinx/environment.py:1510 #, python-format msgid "see %s" msgstr "" -#: sphinx/environment.py:1628 +#: sphinx/environment.py:1513 #, python-format msgid "see also %s" msgstr "" @@ -41,7 +35,13 @@ msgstr "" #: sphinx/roles.py:175 #, fuzzy, python-format msgid "Python Enhancement Proposals; PEP %s" -msgstr "Python 建議文件!PEP %s" +msgstr "Python 建議文件; PEP %s" + +#: sphinx/transforms.py:52 sphinx/writers/latex.py:202 +#: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 +#, python-format +msgid "%B %d, %Y" +msgstr "%Y 年 %m 月 %d 日" #: sphinx/builders/changes.py:73 msgid "Builtins" @@ -51,24 +51,24 @@ msgstr "" msgid "Module level" msgstr "" -#: sphinx/builders/html.py:274 +#: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" msgstr "%Y 年 %m 月 %d 日" -#: sphinx/builders/html.py:293 sphinx/themes/basic/defindex.html:30 +#: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" msgstr "總索引" -#: sphinx/builders/html.py:293 +#: sphinx/builders/html.py:309 msgid "index" msgstr "索引" -#: sphinx/builders/html.py:353 +#: sphinx/builders/html.py:369 msgid "next" msgstr "下一頁" -#: sphinx/builders/html.py:362 +#: sphinx/builders/html.py:378 msgid "previous" msgstr "上一頁" @@ -76,42 +76,39 @@ msgstr "上一頁" msgid " (in " msgstr "" -#: sphinx/directives/other.py:136 +#: sphinx/directives/other.py:138 msgid "Section author: " msgstr "Section 作者:" -#: sphinx/directives/other.py:138 +#: sphinx/directives/other.py:140 msgid "Module author: " msgstr "模組作者:" -#: sphinx/directives/other.py:140 +#: sphinx/directives/other.py:142 #, fuzzy msgid "Code author: " msgstr "模組作者:" -#: sphinx/directives/other.py:142 +#: sphinx/directives/other.py:144 msgid "Author: " msgstr "作者:" -#: sphinx/directives/other.py:215 -msgid "See also" -msgstr "" - #: sphinx/domains/__init__.py:244 #, python-format msgid "%s %s" msgstr "" -#: sphinx/domains/c.py:51 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "參數" -#: sphinx/domains/c.py:54 sphinx/domains/javascript.py:128 -#: sphinx/domains/python.py:107 +#: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" msgstr "返回" -#: sphinx/domains/c.py:56 sphinx/domains/python.py:109 +#: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:109 msgid "Return type" msgstr "返回類別" @@ -140,59 +137,63 @@ msgstr "%s (C 類別)" msgid "%s (C variable)" msgstr "%s (C 變數)" -#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1060 -#: sphinx/domains/javascript.py:162 sphinx/domains/python.py:559 +#: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 msgid "function" msgstr "函式" -#: sphinx/domains/c.py:205 sphinx/domains/cpp.py:1061 +#: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 msgid "member" msgstr "成員" -#: sphinx/domains/c.py:206 +#: sphinx/domains/c.py:205 msgid "macro" msgstr "巨集" -#: sphinx/domains/c.py:207 sphinx/domains/cpp.py:1062 +#: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" msgstr "類別" -#: sphinx/domains/c.py:208 +#: sphinx/domains/c.py:207 #, fuzzy msgid "variable" msgstr "變數" -#: sphinx/domains/cpp.py:904 +#: sphinx/domains/cpp.py:942 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "" + +#: sphinx/domains/cpp.py:1038 #, fuzzy, python-format msgid "%s (C++ class)" -msgstr "%s (內建類別)" +msgstr "%s (C++ 內建類別)" -#: sphinx/domains/cpp.py:919 +#: sphinx/domains/cpp.py:1061 #, python-format msgid "%s (C++ type)" msgstr "%s (C++ 類別)" -#: sphinx/domains/cpp.py:938 +#: sphinx/domains/cpp.py:1081 #, python-format msgid "%s (C++ member)" msgstr "%s (C++ 成員)" -#: sphinx/domains/cpp.py:990 +#: sphinx/domains/cpp.py:1137 #, python-format msgid "%s (C++ function)" msgstr "%s (C++ 函式)" -#: sphinx/domains/cpp.py:1059 sphinx/domains/javascript.py:163 -#: sphinx/domains/python.py:561 +#: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:562 msgid "class" msgstr "" -#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:254 +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format msgid "%s() (built-in function)" msgstr "%s() (內建函式)" -#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:318 +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:317 #, python-format msgid "%s() (%s method)" msgstr "%s() (%s 方法)" @@ -200,14 +201,14 @@ msgstr "%s() (%s 方法)" #: sphinx/domains/javascript.py:109 #, fuzzy, python-format msgid "%s() (class)" -msgstr "%s (內建類別)" +msgstr "%s() (內建類別)" #: sphinx/domains/javascript.py:111 #, python-format msgid "%s (global variable or constant)" msgstr "" -#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:356 +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:355 #, python-format msgid "%s (%s attribute)" msgstr "%s (%s 屬性)" @@ -217,15 +218,11 @@ msgstr "%s (%s 屬性)" msgid "Arguments" msgstr "參數" -#: sphinx/domains/javascript.py:125 -msgid "Throws" -msgstr "" - -#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" msgstr "" -#: sphinx/domains/javascript.py:165 sphinx/domains/python.py:566 +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 msgid "attribute" msgstr "屬性" @@ -238,58 +235,58 @@ msgstr "變數" msgid "Raises" msgstr "" -#: sphinx/domains/python.py:255 sphinx/domains/python.py:312 -#: sphinx/domains/python.py:324 sphinx/domains/python.py:337 +#: sphinx/domains/python.py:254 sphinx/domains/python.py:311 +#: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" msgstr "%s() (在 %s 模組中)" -#: sphinx/domains/python.py:258 +#: sphinx/domains/python.py:257 #, python-format msgid "%s (built-in variable)" msgstr "%s (內建變數)" -#: sphinx/domains/python.py:259 sphinx/domains/python.py:350 +#: sphinx/domains/python.py:258 sphinx/domains/python.py:349 #, python-format msgid "%s (in module %s)" msgstr "%s() (在 %s 模組中)" -#: sphinx/domains/python.py:275 +#: sphinx/domains/python.py:274 #, python-format msgid "%s (built-in class)" msgstr "%s (內建類別)" -#: sphinx/domains/python.py:276 +#: sphinx/domains/python.py:275 #, python-format msgid "%s (class in %s)" msgstr "" -#: sphinx/domains/python.py:316 +#: sphinx/domains/python.py:315 #, python-format msgid "%s() (%s.%s method)" msgstr "%s() (%s.%s 方法)" -#: sphinx/domains/python.py:328 +#: sphinx/domains/python.py:327 #, python-format msgid "%s() (%s.%s static method)" msgstr "%s() (%s.%s 靜態方法)" -#: sphinx/domains/python.py:331 +#: sphinx/domains/python.py:330 #, python-format msgid "%s() (%s static method)" msgstr "%s() (%s 靜態方法)" -#: sphinx/domains/python.py:341 +#: sphinx/domains/python.py:340 #, fuzzy, python-format msgid "%s() (%s.%s class method)" msgstr "%s() (%s.%s 方法)" -#: sphinx/domains/python.py:344 +#: sphinx/domains/python.py:343 #, fuzzy, python-format msgid "%s() (%s class method)" msgstr "%s() (%s 方法)" -#: sphinx/domains/python.py:354 +#: sphinx/domains/python.py:353 #, python-format msgid "%s (%s.%s attribute)" msgstr "%s (%s.%s 屬性)" @@ -308,51 +305,51 @@ msgstr "模組索引" msgid "modules" msgstr "模組" -#: sphinx/domains/python.py:537 +#: sphinx/domains/python.py:538 msgid "Deprecated" msgstr "已移除" -#: sphinx/domains/python.py:562 sphinx/locale/__init__.py:179 +#: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" msgstr "例外" -#: sphinx/domains/python.py:563 +#: sphinx/domains/python.py:564 msgid "method" msgstr "" -#: sphinx/domains/python.py:564 +#: sphinx/domains/python.py:565 #, fuzzy msgid "class method" -msgstr "%s() (%s 方法)" +msgstr "方法" -#: sphinx/domains/python.py:565 +#: sphinx/domains/python.py:566 msgid "static method" msgstr "靜態方法" -#: sphinx/domains/python.py:567 sphinx/locale/__init__.py:175 +#: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 msgid "module" msgstr "模組" -#: sphinx/domains/python.py:695 +#: sphinx/domains/python.py:696 #, fuzzy msgid " (deprecated)" msgstr "已移除" -#: sphinx/domains/rst.py:55 +#: sphinx/domains/rst.py:53 #, python-format msgid "%s (directive)" msgstr "" -#: sphinx/domains/rst.py:57 +#: sphinx/domains/rst.py:55 #, fuzzy, python-format msgid "%s (role)" msgstr "%s (模組)" -#: sphinx/domains/rst.py:106 +#: sphinx/domains/rst.py:104 msgid "directive" msgstr "" -#: sphinx/domains/rst.py:107 +#: sphinx/domains/rst.py:105 #, fuzzy msgid "role" msgstr "模組" @@ -367,70 +364,97 @@ msgstr "環境變數; %s" msgid "%scommand line option; %s" msgstr "%s命令列選項; %s" -#: sphinx/domains/std.py:393 +#: sphinx/domains/std.py:414 msgid "glossary term" msgstr "" -#: sphinx/domains/std.py:394 +#: sphinx/domains/std.py:415 msgid "grammar token" msgstr "" -#: sphinx/domains/std.py:395 +#: sphinx/domains/std.py:416 msgid "reference label" msgstr "" -#: sphinx/domains/std.py:396 +#: sphinx/domains/std.py:418 msgid "environment variable" msgstr "環境變數" -#: sphinx/domains/std.py:397 +#: sphinx/domains/std.py:419 msgid "program option" msgstr "" -#: sphinx/domains/std.py:427 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 +#: sphinx/themes/basic/genindex-single.html:57 #: sphinx/themes/basic/genindex-split.html:11 #: sphinx/themes/basic/genindex-split.html:14 #: sphinx/themes/basic/genindex.html:32 sphinx/themes/basic/genindex.html:35 #: sphinx/themes/basic/genindex.html:68 sphinx/themes/basic/layout.html:134 -#: sphinx/writers/latex.py:179 sphinx/writers/texinfo.py:456 +#: sphinx/writers/latex.py:191 sphinx/writers/texinfo.py:475 msgid "Index" msgstr "索引" -#: sphinx/domains/std.py:428 +#: sphinx/domains/std.py:450 msgid "Module Index" msgstr "模組索引" -#: sphinx/domains/std.py:429 sphinx/themes/basic/defindex.html:25 +#: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" msgstr "搜尋頁面" -#: sphinx/ext/autodoc.py:1002 +#: sphinx/ext/autodoc.py:1042 #, python-format msgid " Bases: %s" msgstr "" -#: sphinx/ext/autodoc.py:1038 +#: sphinx/ext/autodoc.py:1078 #, python-format msgid "alias of :class:`%s`" msgstr "" -#: sphinx/ext/todo.py:41 +#: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:234 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 +msgid "[source]" +msgstr "" + +#: sphinx/ext/refcounting.py:83 +msgid "Return value: Always NULL." +msgstr "" + +#: sphinx/ext/refcounting.py:85 +msgid "Return value: New reference." +msgstr "" + +#: sphinx/ext/refcounting.py:87 +msgid "Return value: Borrowed reference." +msgstr "" + +#: sphinx/ext/todo.py:42 msgid "Todo" msgstr "待辦" -#: sphinx/ext/todo.py:109 +#: sphinx/ext/todo.py:110 #, python-format msgid "(The <> is located in %s, line %d.)" msgstr "" -#: sphinx/ext/todo.py:117 +#: sphinx/ext/todo.py:119 msgid "original entry" msgstr "" -#: sphinx/ext/viewcode.py:70 -msgid "[source]" -msgstr "" - #: sphinx/ext/viewcode.py:117 msgid "[docs]" msgstr "" @@ -482,7 +506,7 @@ msgid "Note" msgstr "註解" #: sphinx/locale/__init__.py:162 -msgid "See Also" +msgid "See also" msgstr "" #: sphinx/locale/__init__.py:163 @@ -528,26 +552,27 @@ msgstr "" msgid "built-in function" msgstr "內建函式" -#: sphinx/themes/agogo/layout.html:45 sphinx/themes/basic/globaltoc.html:10 -#: sphinx/themes/basic/localtoc.html:11 +#: sphinx/themes/agogo/layout.html:46 sphinx/themes/basic/globaltoc.html:10 +#: sphinx/themes/basic/localtoc.html:11 sphinx/themes/scrolls/layout.html:35 msgid "Table Of Contents" msgstr "內容目錄" -#: sphinx/themes/agogo/layout.html:49 sphinx/themes/basic/layout.html:137 -#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:20 +#: sphinx/themes/agogo/layout.html:50 sphinx/themes/basic/layout.html:137 +#: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 +#: sphinx/themes/basic/searchresults.html:10 msgid "Search" msgstr "搜尋" -#: sphinx/themes/agogo/layout.html:52 sphinx/themes/basic/searchbox.html:15 +#: sphinx/themes/agogo/layout.html:53 sphinx/themes/basic/searchbox.html:15 msgid "Go" msgstr "" -#: sphinx/themes/agogo/layout.html:57 sphinx/themes/basic/searchbox.html:20 +#: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 #, fuzzy msgid "Enter search terms or a module, class or function name." msgstr "輸入一個模組、類別、或是函式名稱." -#: sphinx/themes/agogo/layout.html:78 sphinx/themes/basic/sourcelink.html:14 +#: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" msgstr "顯示原始碼" @@ -555,6 +580,18 @@ msgstr "顯示原始碼" msgid "Overview" msgstr "" +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "" + +#: sphinx/themes/basic/defindex.html:16 +msgid "the documentation for" +msgstr "" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "" + #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" msgstr "" @@ -663,13 +700,13 @@ msgstr "下一個主題" msgid "next chapter" msgstr "下一章" -#: sphinx/themes/basic/search.html:24 +#: sphinx/themes/basic/search.html:27 msgid "" "Please activate JavaScript to enable the search\n" " functionality." msgstr "" -#: sphinx/themes/basic/search.html:29 +#: sphinx/themes/basic/search.html:32 msgid "" "From here you can search these documents. Enter your search\n" " words into the box below and click \"search\". Note that the search\n" @@ -677,16 +714,20 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: sphinx/themes/basic/search.html:36 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "搜尋" -#: sphinx/themes/basic/search.html:40 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "搜尋結果" -#: sphinx/themes/basic/search.html:42 -msgid "Your search did not match any results." +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:283 +msgid "" +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." msgstr "" #: sphinx/themes/basic/searchbox.html:12 @@ -725,25 +766,43 @@ msgstr "C API 改變" msgid "Other changes" msgstr "其他改變:" -#: sphinx/themes/basic/static/doctools.js:154 sphinx/writers/html.py:504 -#: sphinx/writers/html.py:510 +#: sphinx/themes/basic/static/doctools.js:142 sphinx/writers/html.py:510 +#: sphinx/writers/html.py:516 msgid "Permalink to this headline" msgstr "" -#: sphinx/themes/basic/static/doctools.js:160 sphinx/writers/html.py:92 +#: sphinx/themes/basic/static/doctools.js:148 sphinx/writers/html.py:97 msgid "Permalink to this definition" msgstr "" -#: sphinx/themes/basic/static/doctools.js:189 +#: sphinx/themes/basic/static/doctools.js:177 msgid "Hide Search Matches" msgstr "" -#: sphinx/themes/default/static/sidebar.js:69 +#: sphinx/themes/basic/static/searchtools.js_t:119 +#, fuzzy +msgid "Searching" +msgstr "搜尋" + +#: sphinx/themes/basic/static/searchtools.js_t:124 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:285 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:337 +msgid ", in " +msgstr "" + +#: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" msgstr "" -#: sphinx/themes/default/static/sidebar.js:82 -#: sphinx/themes/default/static/sidebar.js:110 +#: sphinx/themes/default/static/sidebar.js_t:96 +#: sphinx/themes/default/static/sidebar.js_t:124 msgid "Collapse sidebar" msgstr "" @@ -751,24 +810,28 @@ msgstr "" msgid "Contents" msgstr "" -#: sphinx/writers/latex.py:177 +#: sphinx/writers/latex.py:189 msgid "Release" msgstr "釋出" -#: sphinx/writers/latex.py:594 sphinx/writers/manpage.py:182 -#: sphinx/writers/texinfo.py:589 +#: sphinx/writers/latex.py:620 sphinx/writers/manpage.py:181 +#: sphinx/writers/texinfo.py:612 msgid "Footnotes" msgstr "" -#: sphinx/writers/latex.py:676 +#: sphinx/writers/latex.py:704 msgid "continued from previous page" msgstr "" -#: sphinx/writers/latex.py:681 +#: sphinx/writers/latex.py:710 msgid "Continued on next page" msgstr "" -#: sphinx/writers/text.py:437 +#: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 +#, fuzzy, python-format +msgid "[image: %s]" +msgstr "[圖片: %s]" + +#: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[圖片]" - From 56ac8a19eea8db6c62837fc714af3d1b39356847 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Mon, 1 Apr 2013 15:11:18 +0200 Subject: [PATCH 68/76] test suite fixes --- sphinx/websupport/__init__.py | 2 ++ tests/test_autodoc.py | 3 ++- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/sphinx/websupport/__init__.py b/sphinx/websupport/__init__.py index 55d56fa03..e82ac8bb1 100644 --- a/sphinx/websupport/__init__.py +++ b/sphinx/websupport/__init__.py @@ -19,6 +19,7 @@ from jinja2 import Environment, FileSystemLoader from docutils.core import publish_parts from sphinx.application import Sphinx +from sphinx.locale import _ from sphinx.util.osutil import ensuredir from sphinx.util.jsonimpl import dumps as dump_json from sphinx.util.pycompat import htmlescape @@ -217,6 +218,7 @@ class WebSupport(object): 'search_performed': True, 'search_results': results, 'docroot': '../', # XXX + '_': _, } document = { 'body': self.results_template.render(ctx), diff --git a/tests/test_autodoc.py b/tests/test_autodoc.py index 769827d33..aabc1bd72 100644 --- a/tests/test_autodoc.py +++ b/tests/test_autodoc.py @@ -13,7 +13,8 @@ import sys from StringIO import StringIO -from util import TestApp, Struct +# "raises" imported for usage by autodoc +from util import TestApp, Struct, raises from nose.tools import with_setup from docutils.statemachine import ViewList From 4201b08bbef77cd7c937bf80b97c0817b19b383e Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Tue, 2 Apr 2013 10:34:22 +0200 Subject: [PATCH 69/76] translate the "Symbols" heading for the genindex --- sphinx/environment.py | 2 +- sphinx/locale/bn/LC_MESSAGES/sphinx.mo | Bin 12970 -> 13002 bytes sphinx/locale/bn/LC_MESSAGES/sphinx.po | 7 ++++- sphinx/locale/ca/LC_MESSAGES/sphinx.mo | Bin 9968 -> 10000 bytes sphinx/locale/ca/LC_MESSAGES/sphinx.po | 9 ++++-- sphinx/locale/cs/LC_MESSAGES/sphinx.mo | Bin 9522 -> 9554 bytes sphinx/locale/cs/LC_MESSAGES/sphinx.po | 9 ++++-- sphinx/locale/da/LC_MESSAGES/sphinx.mo | Bin 10177 -> 10209 bytes sphinx/locale/da/LC_MESSAGES/sphinx.po | 9 ++++-- sphinx/locale/de/LC_MESSAGES/sphinx.mo | Bin 10618 -> 10650 bytes sphinx/locale/de/LC_MESSAGES/sphinx.po | 8 ++++-- sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 11002 -> 11034 bytes sphinx/locale/es/LC_MESSAGES/sphinx.po | 9 ++++-- sphinx/locale/et/LC_MESSAGES/sphinx.mo | Bin 10217 -> 10249 bytes sphinx/locale/et/LC_MESSAGES/sphinx.po | 9 ++++-- sphinx/locale/eu/LC_MESSAGES/sphinx.mo | Bin 10406 -> 10438 bytes sphinx/locale/eu/LC_MESSAGES/sphinx.po | 9 ++++-- sphinx/locale/fa/LC_MESSAGES/sphinx.mo | Bin 9393 -> 9425 bytes sphinx/locale/fa/LC_MESSAGES/sphinx.po | 7 ++++- sphinx/locale/fi/LC_MESSAGES/sphinx.mo | Bin 9814 -> 9846 bytes sphinx/locale/fi/LC_MESSAGES/sphinx.po | 7 ++++- sphinx/locale/fr/LC_MESSAGES/sphinx.mo | Bin 10293 -> 10325 bytes sphinx/locale/fr/LC_MESSAGES/sphinx.po | 9 ++++-- sphinx/locale/he/LC_MESSAGES/sphinx.mo | Bin 10567 -> 10599 bytes sphinx/locale/he/LC_MESSAGES/sphinx.po | 9 ++++-- sphinx/locale/hr/LC_MESSAGES/sphinx.mo | Bin 9673 -> 9705 bytes sphinx/locale/hr/LC_MESSAGES/sphinx.po | 8 ++++-- sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 10009 -> 10041 bytes sphinx/locale/hu/LC_MESSAGES/sphinx.po | 33 +++++++++++++--------- sphinx/locale/it/LC_MESSAGES/sphinx.mo | Bin 9912 -> 9944 bytes sphinx/locale/it/LC_MESSAGES/sphinx.po | 9 ++++-- sphinx/locale/ja/LC_MESSAGES/sphinx.mo | Bin 10982 -> 11014 bytes sphinx/locale/ja/LC_MESSAGES/sphinx.po | 7 ++++- sphinx/locale/ko/LC_MESSAGES/sphinx.mo | Bin 7957 -> 7989 bytes sphinx/locale/ko/LC_MESSAGES/sphinx.po | 7 ++++- sphinx/locale/lt/LC_MESSAGES/sphinx.mo | Bin 10643 -> 10675 bytes sphinx/locale/lt/LC_MESSAGES/sphinx.po | 7 ++++- sphinx/locale/lv/LC_MESSAGES/sphinx.mo | Bin 10548 -> 10580 bytes sphinx/locale/lv/LC_MESSAGES/sphinx.po | 7 ++++- sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo | Bin 9969 -> 10001 bytes sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po | 7 ++++- sphinx/locale/ne/LC_MESSAGES/sphinx.mo | Bin 13024 -> 13056 bytes sphinx/locale/ne/LC_MESSAGES/sphinx.po | 7 ++++- sphinx/locale/nl/LC_MESSAGES/sphinx.mo | Bin 9908 -> 9940 bytes sphinx/locale/nl/LC_MESSAGES/sphinx.po | 9 ++++-- sphinx/locale/pl/LC_MESSAGES/sphinx.mo | Bin 10359 -> 10391 bytes sphinx/locale/pl/LC_MESSAGES/sphinx.po | 7 ++++- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 10468 -> 10500 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 9 ++++-- sphinx/locale/ru/LC_MESSAGES/sphinx.mo | Bin 11703 -> 11735 bytes sphinx/locale/ru/LC_MESSAGES/sphinx.po | 7 ++++- sphinx/locale/sk/LC_MESSAGES/sphinx.mo | Bin 9720 -> 9752 bytes sphinx/locale/sk/LC_MESSAGES/sphinx.po | 9 ++++-- sphinx/locale/sl/LC_MESSAGES/sphinx.mo | Bin 9694 -> 9726 bytes sphinx/locale/sl/LC_MESSAGES/sphinx.po | 7 ++++- sphinx/locale/sphinx.pot | 6 +++- sphinx/locale/sv/LC_MESSAGES/sphinx.mo | Bin 9976 -> 10008 bytes sphinx/locale/sv/LC_MESSAGES/sphinx.po | 7 ++++- sphinx/locale/tr/LC_MESSAGES/sphinx.mo | Bin 10561 -> 10593 bytes sphinx/locale/tr/LC_MESSAGES/sphinx.po | 7 ++++- sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo | Bin 11295 -> 11327 bytes sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po | 7 ++++- sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo | Bin 9680 -> 9712 bytes sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po | 9 ++++-- sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo | Bin 9274 -> 9306 bytes sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po | 7 ++++- 66 files changed, 224 insertions(+), 62 deletions(-) diff --git a/sphinx/environment.py b/sphinx/environment.py index 426ab99e9..6376ec14b 100644 --- a/sphinx/environment.py +++ b/sphinx/environment.py @@ -1567,7 +1567,7 @@ class BuildEnvironment: return letter else: # get all other symbols under one heading - return 'Symbols' + return _('Symbols') return [(key, list(group)) for (key, group) in groupby(newlist, keyfunc2)] diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo index 43c778cd48e0771307cc76be4bdd129fdda5d4e8..80c3d0a68bca6f354e41d58acc844e64e26190cf 100644 GIT binary patch delta 2741 zcmYM#e@vBC9LMo*{JdNU1tgJxdlg7i0)!A#ei%WL4$INjN@b1GO#>y{EHZp*Y%Iat z%!QK7GK&?3TV0eXVls0r%ZanKSx%W&CbNH_Ywb7_+K8b+W-IRyk;>}>rszh#aZ||M&Uu%9`|`4CUAcM0k}00Nd~$d>g0YC#ZhM(2w7s`i~%& z-Qh>=Jw#V~A5JH}=dX7m8nY1 z#T9rjI+%$2P?`H2J;b+u3MKfJZeS?OplC4|iOHyrv+zM&h+08CYNFdv{W?%9`~Vf; zC|2PqjKDb3OZF`ZHKBBL3MrIQ(2QS3+FBE8fE{RenYE(^-a}MP><}sw$1wzl-1-F! zqkbLL|0ZhOKT!*~;~LMtsQ;We@;{S85jPa82Fa#vbn9E)dK+rydy&fyy7j}TfG1HC zJB`Z31ysOGsD6K-4)-`JW6AMmWmphT{xy?VxS^Hrzzp1nn#f61>dvCJ;(OE{UqTJ^ z8)^Ze459#;sCH$je#=m&etCpW!#R1HU^FT~ z0_p?gN3G-$*JY@7D^Y=;MzybTpTB^Lvl+DoTPN%6e=7y0Xt(>|L)4Z8P>1pyD$o_w zd;cqHMSMLbC+tP$YDsv4wO- zB$jod1{gr4b{N%u95XSFlc)(7qEcIpX;_DvSR2m61Gos!BA0pSTLv6jZH@^Jw^fE$px*trr*K5Nf4SEK6r32e)G}Dl=armyPhFeo?;QmogKVQ-21v#a-_GKGa#b z>2rbsM!BI>W&6!mVL2+5@1x%DqgakV;k)SPrrP(TGI-vt4`X8pUp%bfenSRdIXr?T zcm=ihX{_c6oa0c?DQ!faSqp05Pm#+8`6Cpm7aP delta 2724 zcmYM#4NR3)9LMp$DDRgS??o^Rc`UDHUPTmwfI*U2>uqMuEMFEGSTWIJvoTmtv__(3 zO{6U>n^VRxGZ#2zEmosVMy_V*DnnZqH|L~jtcF%w-(Q?9_V|3xInQ&>`Jewe&vmH! zV6}ffIHleAJHWr2_*WXM+W&uRlgt8C*P$Lgi#OvIOvE-T#>UR)5>_hcGi(Gb@ zo8BKsy`M%DS zjG-o&#$bAHF{)oN>hv!~^;?CS=SeKZ=X?sw)2Nkiy;J`NOD%J&sEK23LO`)Aju~x(BbJwqg(JFdjoqbOQCge~DVr zMO47QBQfb$#QOP4GEwbkSf;*;pHTrvQT-AbM21ic%*K$u|63@`!$OQ;6*9K%L=Di1 zO6?%B{WgMOyoL%mhm)w(mf%c$1Ql34&c{|P#-qq(SGXw?$#nKT3Nt9^K?!QFR^c41 zMFp}87h^Xn&|ze;7DrS|a3(Iml}JqX5^`AwH}yM)6?h31&;kyY&d_7oE4_+JZ5GRG#V{%}A0n51%}xETVm_winB9jJsIOors{K9GSvZXv|6Gng zk*ZA3Yz++&R4TWjzUzIs38D`{Uno1baii)DBM6ETj} ztiW{CA+7Q$@XYE^1GgcUb#q&WUtu9;upevjepJ01_1;fNax8xC#D79z)B-9|&)1_e z^$KdjF3iJTTIn>jbD!(18YYD_3a}H+Pg1MnfMi%%L2@zNDHtOH=^z#A|QUqCJNMP&PJ_kVTvzn6jz$q;VGA5a}?IMT_u3FEQB)tfPa`s=6( z-@+2?L#^-+RA5;P2?onhzb7@Qm2bsLY{LNa+xHZ-qA1>lS5T?X&z)FF6Ka5VSMNma zZ9i&7zqt167@!{FQ@RH|RQ(xD!>ymHhKXSvG1bO1Y73 ztHW~aKn;8rwfC1$6aRzS%H@3g8ow4b;chg~^D3(9tLuxsaJ_jwjY)4L_5?HbOped< Y^74uc3VV994rjELM`C+6N7lss3&WBK0{{R3 diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.po b/sphinx/locale/bn/LC_MESSAGES/sphinx.po index 689829dfc..966664a0c 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bn/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 1.0pre/[?1034h2e1ab15e035e\n" "Report-Msgid-Bugs-To: nasim.haque@gmail.com\n" -"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"POT-Creation-Date: 2013-04-02 10:33+0200\n" "PO-Revision-Date: 2011-09-21 10:08+0200\n" "Last-Translator: Nasimul Haque \n" "Language-Team: Nasimul Haque \n" @@ -32,6 +32,10 @@ msgstr "আরও %s" msgid "see also %s" msgstr "আরও দেখুন %s" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -845,3 +849,4 @@ msgstr "[ছবি: %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[ছবি]" + diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo index 44d26d61700df12928ba647a7cbd81ae6c275a53..7b98a23c988b872fa274ba099932e2d6e8a02cbc 100644 GIT binary patch delta 2832 zcmYM!3uu;A7{KwPQ#WWzT&U4Q9otwUCMsgyj zQ+42H2Y=V`x4g4Y|Nk877D6VEhp`8?qCt zj@ygQ+mGJ(DQrSK|AR&>b~Kzla_{ z=N&~8X+h^7kMB=ohM)iQG(3yTS3Ag-F9S=KgZ2+ZkERg4oHNjX51|WJqTdG#zoK4FgS!FXp2C%VPgJ?!R6SJDVFfm#iM)veaTiX&Z_uyUOm0>ojzAZx zKr68bN8wUrXxN5qI_yPD-GbhQlQ;!Wp&J?5kMlR9+epW=EJaQu%)xQE6fIpH8n^)s zcntgFadfAD;#BNHr*USX3qFX>tH2U`7EQPjt>C_dh5?S^MQlZ4g(Ga&0d45VA& zbJ5GQ1eqH)pgY@%jz5Sd@-@2i7IY(L(ZtNA7xbPmm=pG+15cw1 zUqJ6b$HDCjWus@FLT~pV?1U51J1_-3)9L8WD`NlCXxs#?^b65yOw9Bh8V24T{TPSx z+>D*E4IOtOdMO%)vtXJFiA} z_8ywRcJ%CaqYE8E$9;=l)}PQLIERk!K=zJHA6oxOw-39f&tCb&!;2qZR=+5(HZ8rd XVDzY>F=Og;`&4!R@6AgC=coM(h|UG* delta 2800 zcmYM#3uu;A7{Kx4F0DD6x-^&Dblzsog^0!%J!!=xnKJEJMm6QA1KAMqXf9v=obti0uF04m9R|=RNN^&pFR?&iC0g@9Nw{ zXI9FVz|UU(Z;w1Kz+)+=>R+7yG|J$A611@DtvKS8)iY5!HFwn2!_D`Blh} z@Ho2R~MQG{nL62f4dd5{~poM4x ztI!4BLdSiA&TB<)|8aC)2f9vYf<`%w-_fHeWRzz*8_i%5I^iiK`B00NbR8P_bxg)a zv;uFV3%`rT*@g{x03BaWIgD3{j!VpsjYa5!HOSbo0`qV!y5Rfh26mzWK10v+E3`tV z(9C~8H*y{O?hYC+iHqZ>X$0C|jI5UkWi&jq%IE?#a1FY{W#|Gc(J!1=;`^;=M%$x% zqX*D=htZ9+q4Q71_Z?`W=P}dI|HasG4K3NzhNk4^bQoEcWM?=O z8C9W|XE8D-)S;PeLB}6NH*yrsybVp{EV{8@upIwIkK$f-=b0};?_4eR{r~?m4NK90 zF1!^j>3%fxL+FA>&;`Fl7y26gYCVUJUrJh5;yHBu8uZSri@t_#tO=PCc41nAMmr4` z?m*A}BD&Bubf-P&*{4kC-_R)Z?8l*Jc^4YEBKALuZlDG&`7_bg=tkG0aT_pUqnXA; z+<~ch8XedXJsBe20#|fR5`bXlWmKFui5Nux-g{CHW;KWz(j&Ov-*S Lqh;^7<;nj66g>T= diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.po b/sphinx/locale/ca/LC_MESSAGES/sphinx.po index 27576c60f..b127355c8 100644 --- a/sphinx/locale/ca/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ca/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 1.0\n" "Report-Msgid-Bugs-To: pau.fernandez@upc.edu\n" -"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"POT-Creation-Date: 2013-04-02 10:33+0200\n" "PO-Revision-Date: 2011-01-22 14:41+0100\n" "Last-Translator: Pau Fernández \n" "Language-Team: ca \n" @@ -32,6 +32,10 @@ msgstr "vegeu %s" msgid "see also %s" msgstr "vegeu també %s" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -580,7 +584,7 @@ msgid "Welcome! This is" msgstr "" #: sphinx/themes/basic/defindex.html:16 -#, fuzzy, python-format +#, fuzzy msgid "the documentation for" msgstr "documentació" @@ -839,3 +843,4 @@ msgstr "[imatge: %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[imatge]" + diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo index d489c100e062150e8565b6f800a58bbc7532b7ea..088c68971f0a282facbb23e4a45176daf356193d 100644 GIT binary patch delta 2736 zcmYM!duWzb9Ki9T@6=tKyI4-0m)AA53DwjkI<<6#%TY2~NzIk%uxx2FHqmPCr3*&G z8(5%~U2vEtk~9{PW{u1wD#hF%HcA+IL&GxqrxN>q-J!<2=X0LtJ(u6_ch2*ERCS^% z^>cpO>w&*^{zvgYYk+tE|J7xNFqqp%FdG}tE^Dy}TQLLQi|&ozcVZsT58w^>9p+#! zI^Pv!zErqIBZ~*wTYLHsLtocpQl{a5z4Ie8NgDe*YYfz)d&}cjH(*jV^EvtxOhCmSP?jVg=ra zkD>uIV>-6t9jqT-i4Tq-pKy%JAp8j(cm~VxZ#42!(lpSy=tOns#LMtLY{Y^18B*ME z7!BkY8sJ6b6MpBCa^Us4_oFlQx1?FD!djsS&Ab%*qvH;tr~E5) z+>hu&XK@z(iEhCZq9Dhx08LeIp~5_=+@Olmmu?|LL&_$T#YWU4*g+i>+2Bqp&4~VKaF;wt3dFX@-(S;YG@BLCV(-t(7^=QA>@H}tN zb~Jz&N#E}`qi@X)G@*CVfWC}=ivxWByJ=YR9<+qNq7(FIRVU1ijz&-UB((qSXeO0t z;18jhE=R|$!7=zUy2U$@;}N>he%+W#()fi22Q&=esJrLG(M*fc1#U$?;Z812P>W9Z zG%_@7KquUV&eMq#@hDEi-*7BWq|DA=iJqyNLh4^i<6$1S1#Mi|rmzbQ;2^rkM{ovy zk1mkT3A7T0Xr>d;aZ_+LKgLnuRqop0g#eilbv4v{%%&b5&ZbHw3wL8NUW(82 zn8lJ$Km#d9Gnk(M+@02Q$b+7bwCc-iCf(9bJgdQy1^+vW)&Kwi delta 2686 zcmYM!duWwq9Ki8M&)l51xp`gFJZ%%*KXXUcW^T!vfjDQ1nJ#0fv~DIN#7mTTj3MPE zyN(PIB<*6-lD5Qh1iVQ_*!&t{Qh0c<^EwDi=CK* zXVG|6HTFk>e0Xt;X+)AnfMXX z)X;$@(uF2?5&48)Iiwxf>(!tT`p}l%q~FXH@|exalQuwaJ>K>zZea?0!?^T zbR#-`7v6>Y(WU$nX;L^ln*Mv^mw2NG&G=t*?Xoy{osUjfj3!osR$hrtSc5*d4Bf=5 z(GG3FT6`N#ae~LtACz_RfmXDlz0r4~htSH7pottq$9Kl> zPofi_L6_h{yuN~V>{`5^V5b-O{^xPxCM-n*&Os-hi@xu5XhltECC%t_oAD3cnitRn z)=<9RZ$jUeZD>I+p$Q$1cAy>TME74f!HF$AhX(i)4R}2|ge=_MdFT>NMk|?tCSHS9 zx)>d|67R&d=o;@twnsRGKG%s!{1($}%y5+x*W9gcr6bS@#-qD`8V3W^q5+p7L&ADA z;BGX|KAeU}umXR?DVW37H~tK?@+vID`|Q83#X1fwOW2Jja1dSNHoOOqq7(F@ok*|~ zt#lMRt^iY*LKA-!O>8~d`W7UYunU*q`)ERaljy$zGbxK@47q5A)6oE>XhQem=Qs~- zZ6*g3nu_EUW}$m#DO&L(=pK0cNd!Q>*$hykmkgRJFyslh+o`5TRw_tCQ^u2 zmO?A4Mfbu2bk8)Ri9U_)i4Ev;+wgX0#YV4_+yp$E|f zpGBAC6*TZ$I05>v!bRLVk~QH~fQkB#)aWmXAJPgvP5v=1YeqoK$n;aU_Ru0Ilc* zI`B-qzKFK)O1$ntC+J6iAv1W_Z23@hNk^g`n}|EG1bw~(U6SLN<@^6NCk{A`R(1hh zo8OR6xX!`K3yKETya;V+1$w_8-Hc1o%2%U_Y(WcXK`VY4?bJbZo-WK}{_qVaR(v{o z39Ymnt>ABTg2Aju5_8b+%c2!%W!3R|ZoHn4Cb$@l(-7}Jg(mh4HoCc<-h)g{cptLTK+(28!L6^)%bFwta8a9!H|@UVjH_RV89C$dt>RBHC!mF>62 M4<6p0T{u7SA9uFv{Qv*} diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.po b/sphinx/locale/cs/LC_MESSAGES/sphinx.po index 75763dba3..71b80c531 100644 --- a/sphinx/locale/cs/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cs/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 0.5\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"POT-Creation-Date: 2013-04-02 10:33+0200\n" "PO-Revision-Date: 2011-01-22 14:41+0100\n" "Last-Translator: Pavel Kosina \n" "Language-Team: Pavel Kosina \n" @@ -33,6 +33,10 @@ msgstr "viz %s" msgid "see also %s" msgstr "viz také %s" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -583,7 +587,7 @@ msgid "Welcome! This is" msgstr "" #: sphinx/themes/basic/defindex.html:16 -#, fuzzy, python-format +#, fuzzy msgid "the documentation for" msgstr "dokumentaci" @@ -841,3 +845,4 @@ msgstr "[obrázek: %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[obrázek]" + diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.mo b/sphinx/locale/da/LC_MESSAGES/sphinx.mo index 4d488ae9795db57524fa31ff5e4bc10958d2eaf9..6a3b82185865d730fbf267111c1eabd6f5d8d571 100644 GIT binary patch delta 2928 zcmYM!duWzb9Ki9Do7;3Qr&Dv&c7cd1(b%8hyXMhZ^tR&w0*s&hPxr?>x`@>7?dK z$@$LdYXg6~`R~d9mbPB~|2Hr@gbrNZgE=??9WoAk<3wzSi=s90{&MU@|0?W)8?htq zLE{}n;w9lY4L;!cmQ0=r`sG9)aB_iNDc4Oohe*bBeMVQ4lkd>>k| z2XP2Kf<5pB?8^G#4H{;)J-QdOxc(R)z{Bx6gEA01bi_<7#ID#6UGV;Re<50tm(dM0 zpz*e&J8weQJBrB!8mDPwU~gu%#{p=D!>|k=M|ZFi$tBdI0XAZ|C4{YL;BC~~1V2G5 z_!YLn=6L-hrgQx#I{!u|>Tlr8&Z(W`MEjrt%JB}IfaDme(IZIW^=h=l8)E-9bOY}p zYlH*w`XsvWIW)l*v?5nJQ-4c%Ee`C+s=fsUXz9vuG)_T2VJ%-)pb`7x2eJPgn%Gse zlK-Gb)Rsrz1ar`M`RIm*q3cXfXgF{QI>y6`UaNcP9;BWT4=#Qqla zh_0d!Z4TKRuMl0hH~PCVz-!s(J;{G=)$MagqqR&zeaDMXPLwH?C*t+AB+YZ ziEKJdMJw`LykCobxUNIzzl$b#pa(M}a(W5wm?(`%&u?0us zB{cDYx2F;=L&sO55A8HGfoIYAn~>)>?7|{Ej6Q2WCp6sQ6*NEx(yhd9=$Sr+_Rm3g zwh+hRs(Al2TCua}Gx7_z;veXSE)=B_NaI(>jpdHi z2AYi&Csar4@nNoaqT^c8hc}ZatS@#!D^iXwI3C^5jOZ*h?p!Qj{jihH(<7kn*V*Q00rCQ_uZ1C4teP4o;V2EItc5?x12 znO2;79dj|A>jCJ*LFg}E85&?Lx|1j3{b$hkdw#s1U#h4xtq}g;wNDQ+{?<`^>2?&VRak-jb%Gt{_fn}ldBW14AMCYd>?uv8{$(d8ktlyZ=m zxrqdshJS>v4bsdDiwaZ(O|#T)qCytspjO#5`+j{7G~T_R^PJ~7=lp)ZbDsC?^w#Og z_qmxH0)I{X58;1vmRJA(4ao_iJC{ST2aZM`nSeLqMC^w1qYLBxW!Q)Q=dmBwV=vr- z&ex30mxKc}_=F>T`M@dci5Jlc{*L|Gj52^h*cWfY{#c2d?>~lCWD%M` zg3h-I&HO!dy*-%J(D;l-XUt_(HV#B1Okp|RiDvLDvUYe0ouD4W4IykqCvKqL2Cx&Y z&_3*h$Kv$~%;fqfbo{SPCSB#Tz5}MJgd|81;OyTy}e*_Ke zELzFm&@F051H6jP*Ns=fgi`1_cO^7@Z~;1SA@T`zd^vD6y5M@O#4YI7{D4-!1I?s6 zS@?V&nt2gg;&JG_RhWU3(MnXu`$-KA1DK6YI1gXPCFsBobmC5Iu+R03_D2^UhQttx zaVS=z3(r9VsYS;xN4I(oo4^&0GKNn5t@#s_6W&fAZaNr6wkOZAz)%6ELScfj$fNsUR@wy4E*vGN| z5V|#|(8Jn}&X+|NE}V`2Ui69AV=%|}zm$fVPee1SMh8BKF8l~K^P1J7f#q|OG=)A_ zf@WHVp8kiUwP_16`{d5@N*T@>-XXF#II3X@jgdVPPw1f|! z0W3z|tneZ_ZXK542UvjTZ~|s9*u*N)id5q`oHmsDJK;(?oM_s!fxqK-XhO#d(*gW~Cf0$D>&35+743)q9weh_7||{0DJ?@Iu0oOx zv(O3ZkWYAxFEibaR%Rc%=LgY%PsjfAXrWFm7??X#C7hR|}UN1uTb~#dvuoj(nCmP^xbl$^gAm8Hk_x~IXU&A)c z#BL+g1AC&sc=_lABhgGM;{D0!dtDRn&%@4K*P($uhi=g;Scq?87Ji7Gao0%dZ)1PF z@j05=VYL4^8o=pzeG$#54PE#$`g~4tdTaWk&ksk>PHF6)fi65BP4Efy3_M+YYx>4& yIy}wwXoijGL|f4TE$G6#TSnz{&2Fj4+mq3yq_Cvq_S?!^{u%H_PD_1iR>pr&HUl^S diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.po b/sphinx/locale/da/LC_MESSAGES/sphinx.po index 2c0252c9c..8a2c9fa5d 100644 --- a/sphinx/locale/da/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/da/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 1.0pre/[?1034h2e1ab15e035e\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"POT-Creation-Date: 2013-04-02 10:33+0200\n" "PO-Revision-Date: 2011-01-22 14:41+0100\n" "Last-Translator: Ask Hjorth Larsen \n" "Language-Team: Danish \n" @@ -32,6 +32,10 @@ msgstr "se %s" msgid "see also %s" msgstr "se også %s" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -575,7 +579,7 @@ msgid "Welcome! This is" msgstr "" #: sphinx/themes/basic/defindex.html:16 -#, fuzzy, python-format +#, fuzzy msgid "the documentation for" msgstr "dokumentation" @@ -834,3 +838,4 @@ msgstr "[billede: %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[billede]" + diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo index 84e7c2a540dea981216a2ee9d787a88cb2c2040c..29b937b2db53acd0e68dd194a1462d4d6d0c243d 100644 GIT binary patch delta 2992 zcmYM!3uu;A7{KwPo4cv0o6gIcPB(Q%!luhxn&HYUHzYM`TG-NxXevv*t@48uHJh5o zSXhBtNsAI_Mfl^{*FEI5_ZEB zCgm>?viWu5eB@auMmtQvJFpy`;K|s&0PVj5U7!}TaVvJmUFf(UFb|v2@z>D#GZ<{Z z*_h4xA&-IsM`LfCf_?F6bb%V|ha0dDHXw6_@8a_#X#X=f3UA^7EFp>#oQW>{I-0pU zEW&p%hxNlD3cc_w8riLA8fi$Qo{9HiPOQ&D)(CSk6|2$l%h3fl#^?LdjU7cda0Z?4 z7MihC9wuC{KZSBE#1veD8TcyZ;94AwAD}xpiNqLAqvJ1O=n%pUbmBJhZGc&s?HL@1 z9jV_F>tisPdRZp_XbYF9mroe$B!Afi3Qk&t8IHR8rXwq zCa0rERDlLqiOx44-O$Sup3Ry-q@iD9e5a>_!nGlSn{`&`QCHuAz4znRn0>W}unrjRsbN4jhY4Sc<-mPsH|WbitR= zvt1S4jLy3i4Ri-O|4tm_`@bi4XhC=ONAyDUGCJ@&8b}9Lb%GSMe-^rMKlF(5V|@gg zxqD-K8G2;1(M!A(lYRf!P;jDJ^h5GitbdAT=5uuC`_P>oL{1_6iU#y28o(7?&1=|( zUdEN&G{@JY8F(N4WH+F1!y!yqXpS9DqXW;PDQ-hH9eNP95f4LmJ{ApRGCF={d_E_- z5WQ@PSl@(>+lJ1&6FKeBltcdQc!CB~cM%Kl2AaA&E`SRZN5`Xg;vs&_z&sp)HPJ1| z=EH7ur^jObZ#3X;+(14JAs5+OD9R=OqbN+J!HHhO(YPH=-3c^xt+D+gIBXgrKVkz}S=+W##H@Yv@kD{6VEkR)ng)8We?j{N&oP>TL9z*ZOQq0E{=z`m^ z3_pp_ucHfvy!O(+p?72)daLh`^~cdm{S=PJs`$JCJ(7LaSw9@0;KD8F4$q+h zw4oi7hqPbD&e(~1Z%oEqOu<2DhK8ZzM&j)c53ZwLhAG&LUg{RK-+8?K{$Hk$Lc>k; z5+x69Kf|ubv4woJeKLA9)6nlhB|5Ge-RUyS!!>B2AEANmM8|!F-i?E?{nSwM@5JY6 zaDpr7#2pLUC&)zG`=CcO6v=)liO(z00OnvSJ{Ri?qKl)ipaHCm^*T(W{%#@p_sl+| z!3n-Wk6=H#a5H-5t+AdqEFJ;6a4vf33NQ^z(GN`-rsFJh;d$sfOE3x7qy0BER&*Yc okve1f{AU(cEoxlR>tIsqh`i#WaU(}IPU~CO<-aFq2G=M33qbJ|w*UYD delta 2976 zcmYM!duY~G7{Kwt5Jp*$UmHyq`qI@1Ic_pzjJ=)Jm)#jIq$o<;>J_S zvt2Sa2LA2le=q(YXlLvHe{*s|$fY?K@5Cx}NDcPI)z}`lMeF1HJ(x%Te(a3jV^?g! zyYMO!HyJYdG;ki$7YfkBln{gyw!ai6;7Q=B8y6|$e za%*r1uEPS>4+nVYhCiX1U5;MEY}#p*;~~sJ+m9n_gbK{U1?c>j(FK$7{cdz)N6-y4 zqw_DL6>Gz!3wC7GG|b0LT!bBP2^L@tj=~M-4vrzYg_G#~77TZUZ~+Z`k$Rh8dY4oM zJ7XH{;@B?34BBJ5P=5oAr^CQg(4EYPR-#An1{Pu+l5}W5kKkx*pFm4|F7{tUH*g(2 z`wW8E?v5^8h$dK)NBu3ya5`LgY#dmDejDbYrCW&;a1-(uPV->}E@2V=6Z;Ff;wCl% zt>gssh$f>6&OqbMMK@HFp2942 zLsjU!YP14LbX*-8|3gf-e>)GBWJerOk0!DQ4fr+I;&F81EDqSfFQDTV$M&+=eiKb# zEs|rX!``?9P2d|eq2oxLWH`rzXMYhb-4(PV|DuWY;ydZYLNwsL=-2S!*gp$ha3Ol8 zi=!*hxNFfw*Q4<_p+8(7-+s^eH}c@ljzycJKcf>{&_w=116+>pZ=wsQk&Q=_gSLC3 zmFpM#hoeU|5xuD}RZ}atQ zMK9+o+%V@S(F&|XcU*^l3wB2jVbTFjJUHi*-GrQKs7J>gDd7Aq-6=YX@OQLy*<1h@=n*YK@5Ep}tiV+4gD*zk zLN*_^qdVOn+h@^)+mN4v(2kqPo5ib4IUf5@p%ZiONgY)w zdNkwFJ2E9&ffH%ZMvrDIy3?Jp{S{i-qc|GRBzbU0UCF`>2cSO;W6`@XAN%1VbirDj ziW}nl7IdNWXleh(DVUu|&7XoI$%g~K%#s0Vl-RZCBQMRFpq_G?COgE%I8H!U6VF;SYgK@w#G~>DG z#7Z>K3gnuEHSzs6q==y&6WD~4@dCP`5oGC|nv5p=JRh!;#9Y=7bvzjOBXp;q-F^|m zm*|-vM2ZqlBljrWL=(#|PTi5dXz9yhdmMVHAHgv=Grq4wk922je}NrXKQ!{-4u6OP zTG2~*0o!34X5cL}Kw3#Ef%a&^dFT!cuoeemChkS!97M-8p&LDknfMDPy*#Zvcy^bN zV+!e|sY_LYmTEA1X5-O`GteDAhY74i6J3i|W<5IZeKhXpvHvi-UK2XMxs>`F_%}KX za3#LDhW>D5m8H(CEBgKcG=XuLg^$Me6Va!mbI=49#`f!&O?wr3RBO=rTgs@vrT>Hu zGun%ubz^LwM;C5G7rupFwv7I%fc?-Pn1Sfd%h81=p$k2O>9_>5@ih#IL}J2%>X)j^ m6UEgH%X7MSXn3#Ncj;L}6GMlVj~LZZ*<)jFLq^G_^#1_wR1wMm diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.po b/sphinx/locale/de/LC_MESSAGES/sphinx.po index f9a506749..6bcaa0463 100644 --- a/sphinx/locale/de/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/de/LC_MESSAGES/sphinx.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: PROJECT VERSION\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"POT-Creation-Date: 2013-04-02 10:33+0200\n" "PO-Revision-Date: 2011-01-22 14:41+0100\n" "Last-Translator: Georg Brandl \n" "Language-Team: de \n" @@ -31,6 +31,10 @@ msgstr "siehe %s" msgid "see also %s" msgstr "siehe auch %s" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -576,7 +580,6 @@ msgid "Welcome! This is" msgstr "" #: sphinx/themes/basic/defindex.html:16 -#, python-format msgid "the documentation for" msgstr "die Dokumentation für" @@ -833,3 +836,4 @@ msgstr "[Bild: %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[Bild]" + diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index 64d6a3411ee7b47403ecfa3d17dfdf057a12288f..7f4f1d50a533693c1c66e639564e10fa60f865e7 100644 GIT binary patch delta 3000 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 diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.po b/sphinx/locale/es/LC_MESSAGES/sphinx.po index 742d9444a..eb2a03922 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.po @@ -7,8 +7,8 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 0.5\n" "Report-Msgid-Bugs-To: guillem@torroja.dmt.upm.es\n" -"POT-Creation-Date: 2013-04-01 11:57+0200\n" -"PO-Revision-Date: 2013-03-03 16:26-0530\n" +"POT-Creation-Date: 2013-04-02 10:33+0200\n" +"PO-Revision-Date: 2013-03-03 16:26-0630\n" "Last-Translator: Leonardo J. Caballero G. \n" "Language-Team: Leonardo J. Caballero G.\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" @@ -32,6 +32,10 @@ msgstr "ver %s" msgid "see also %s" msgstr "ver también %s" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -839,3 +843,4 @@ msgstr "[imagen: %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[imagen]" + diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.mo b/sphinx/locale/et/LC_MESSAGES/sphinx.mo index 2ae16d391677e6f7efbbe906e6ab341d75a33606..e87aee88f90dd2d6eaf96ce4a4344143546a4d7b 100644 GIT binary patch delta 2928 zcmYM!e@xaz9Ki8I5ljLMeMC_M3DGo6{M95z8fLjvN@uelf^$x3OS8FUiTOBFOZ-FK z2$$1Yp-XEmk#d^SN;k8d>8x-u*AL63uG%Wg)Y^K#;kFp?y6-)A_xarC?)zM-TK`b; zo1D~F0zb|C4d8EQH=q9hxg#Tln|Un3Oe{l(Jb;Bb9dE*CqIL1}wb+aP4R{Ogz~0!5 z*?0_DHyPS!xbP3iZ}^RW4)_0h-_da5Rm{citlkd`&;VtahtshyK8XwstK;Vz(eX_<4qGuFuizN$O*U3+ z3Xa4o?2oH3LHw|dh8gXP9>(rGAHxbf6`!-%K5K?tOvk~Pz!Ef2W&Hd(bVKXV#J8a9 z?L#Yd2#t3JlhbINqmhQgnAHPI(G1J+E}V_-U=xx{Xhav-g&`$`chQCSQfCwV1g+dx z*aa`e=btf^=aADmzgrIVcj0V0+({xj99>`{4#HVTj$s*E`j_H!1A3-AWB*=s1FcA` za6CS@qk%7=30_7k@^=pPH*gBkoS2Kg1%+to?!kNUG2}OF=bsg5#v=SE_Fq5~yM|UW zjjQevWugft(DeqP8!AWRR3~XTunwL0BJvyR`RBwPXu!9z96vyh<|T z=z8PP3QRJB;o^|50UI&lk{$PRRYo$>Q#H1GlRNIs6wr_qXi9s4h% zM|2Inv9X({kT!iyB!@r z7Tswjy3T^=60|bQk<$#T(1aT?$%PGX((sH9p*ubqZATaW3ElCZ(NwnQyk2Pk5Hz82 zNN!;=GBng6rxuo@<2IwW|1~s$BmFslckl%rX8bKuwQwm8Na1483_0k6BhbK8@K&6I z`M3g2d>is=hdt;{598f<28%F@n>h?eqZO$hNc{)Xm`{h9)}tA|j(#5;MHBoSy&LUV ziRaPE6qAKJ8-tFkMAxapvA6&`5<@Gr2d(r$^hi%6X;`u^(S?4&S@;k7p3Y!<4txaZ z3N=`UE77}g5H010=#Ece3tm7g`D#JuMw-zI9!BS#MH5Y)qhTrjKzDczy`?FX!2#XT z(&eM2pM=GW0X(32}{=6PsIM6<_XTG9kMZfNYk6AdsP)A2qufobSvt48(~7Nezaz*KA+GNH4vn-1QX@D3XA zB)VW5n%H@CXBW}H*D)PahPLEoWcNs)`TU}JPd~M^WoY7f*Yr^Zr6bEmk8Ziz_u-7R L_`&3&rmp`1or(#M delta 2897 zcmYM$duY~G7{KwPyS%pP=9XLTs;fC`&dX4akJkN8^Z@8(U_papW z+|-?cpEmv#^KVa@PyhcEXNEA4#}XWbmFSRL@OrGpYw*G7lKB1OcrE=;VGcIo5NyV5 z>_FB{hNCoG_#5Om^zh+;-!Ka=qYDgVwEd;%_%Y}PQ!pPJa4+lj5;9z!fgGwyKS{#b^Aw$Bl_D-~gpXn#`-d$wjA&o<9UQ=O2i9U|eEt_%GbAWO0`o8rOVEwRqu(z^6IzJ|z5!it zA6lsvbiXc4-bv$A8tGWbtPCteBdo$nI2+C2X(Wd5Ji5S64E;iQ4PAIIbvA&5Xyrb} z{`g&d{vK0#K9A17kVE}l_zE3nl9t!0P{*!26y=Wyb zqDOQY4KR(X?|M0CLRIKK^+_5IT!Kzqj{Jtzd^oWQ-SB0cf(Ou}Ifqt1h3L&>2s*w5 z&HN^`#FNo=XJQJ@K`YS^zfaDkVF2^c1sicQu0kiKaIh|%fsV_MmZBS1AhCq8Sc12s z8_!1rS&GhIiyrl6v{KuU3M9iTG>qslIS-5d7`gfurK99#t-~SpKWHg_#wj<3^$DOu~s+k5>ajE3_T0bTfLS?P$e5NYZejlQ7gRW>)ka zNiG^lG5RNYG&*rQTGH8QVE3To7GgTCL<3!e2DS;SaThxOc=YoM>Yq->w{++!G~zSp zo%jVUY#|O#UbU diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.po b/sphinx/locale/et/LC_MESSAGES/sphinx.po index f46a60e97..48d4c1ccf 100644 --- a/sphinx/locale/et/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/et/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 1.1.3Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"POT-Creation-Date: 2013-04-02 10:33+0200\n" "PO-Revision-Date: 2012-09-15 12:56+0300\n" "Last-Translator: Ivar Smolin \n" "Language-Team: \n" @@ -34,6 +34,10 @@ msgstr "vaata %s" msgid "see also %s" msgstr "vaata ka %s" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -577,7 +581,7 @@ msgid "Welcome! This is" msgstr "" #: sphinx/themes/basic/defindex.html:16 -#, fuzzy, python-format +#, fuzzy msgid "the documentation for" msgstr "dokumentatsioon" @@ -833,3 +837,4 @@ msgstr "[pilt: %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[pilt]" + diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo index d5fa9682f11b3e4128d7d7e8a63d30d4d7554e4f..76cd07650e5dc790d4cb3b859a57e07e34d66a6f 100644 GIT binary patch delta 2944 zcmYM#duW$c7{Ku}chz~F&Ner5+LpJ_t$88Qd8?UAiz&ifso^cr)Wi&D!p};WW=XhA zO;O3xh=H|rQAAPbBIG7ftQ3!VPAX>dtxm*ZZ{U-5p?`nbpDHI z!dI~`@k1*O2c|RYJ(z>JSd0d!zXBSR13LZ;hNKX_MkhW;y-n~Jw1PLW z6Q*W$TxVbk*ZEo0-w6iN;l#tym6SxMp%cu*fw%_AG1Q@3a424Xh?e+t>_3Mt-~zh$ zSK{?wXy7C!HNmvr)Zdcyp~Jxa(SfDt+fas`&r|n^-nl z$wBBA4Mh_yLFb!*E~qL&!$2F*2X~2v$72h+HNDB&>W@ShG6{Wt zIy&DRv;yUl#AE{ln3KqtU%Ai_SpL zQZ<_3)9C!m&@ZfY@&0a1^Zno7-U#8nXgxZx5l!R-I>G69zX=We9l9ky#_K=OirtR= zX=LjbWuu3-1f6d(TFG+E_5Gh2JDx#HvkG0|26Sbc(SbYAz`JliuiHU1v5A~0pPPY> zt43G47=6Ar`UYB=J?J4mfC=}ck%lGy0?qUyI^pl=irUb`IIG91Ba9V%r@5(mPVQIGDNZgJ-cnY2PGWy&d^tDO8 zx8sbY<7BRTprx)vD^!i{@p9zF32SgP)}jkKi7w!Lf`%2if*!itNQ`h7twbJK%*G-# zKn?l@^)mVe@;Xk!qv-fnwDfIg!d(kOxQ;n!Mbj8$f(2+|iDDWau5x5dcnl4^0xjh_ zbmCW#gB`Y^0}r7qIF5WmbG&Xv7nI5gG?BjOo)1H}_#t!w$IZneT#6?C8k*R<=scgao8Z3}4Kr*)57{Mj zMR(A^xkPcoG3cI7MOR*dj$454=_(wLo6s|JGWNHi3;HeEhE_C#>@tZTdeU%j^U+Ea zc>_yh|3q|49z_$Fg|1{S`qjJ~4R9MBmr8jI&Z#cN|9=q;SFjQ- zVFJ^z4xRXI^iX~f`_G~YokyR)fR^|=wkI&SBXBSDe!u7lOy_zEdIl;6^Zr}fIdo8! zun^O*77ef+({Xq7AiARW(fc2v@A-*%zd81|#QvYq=Wn44{5#rxNXHfz40)pCG*6); zg$Jt81m+>%L18gw;3hQCRy6Z{=oTD7#~s5AJlQxjGrvpv?3$GeS3kS9@!{-`lhYq8 WC@CISTH5$e&dtpK?)+K!S@ORrCJIIX delta 2912 zcmYM!3uu;A7{KwPo4V9Zo!2?%Zr-|VI@`1jwfrht>82(bA){GRYLbdwM5|A;a;PDd zWoX*P9Fwjx)Wi!RwJs=xGZ~n=h(#1yUs#r8^#8j9jc?!Yeb0N&bDr~@^L{O}8fPWX zW~aXz_}jz(F#g}|=H35)H}ndjH@792iB)KqYAnK9yaty=SHVRRxIpau(Z9+G2Ni*CUy@%}Be#2?4@L+Ap& zLgor522P*} zR-;=n6aAs8i_cf13wq(I?Ej0gVKX{#8=A;YG(b~)z89VN5V{qg$NQ6L#m>a`3+UEd zK@V#V*&FX#bmCI<_oBjk-~Sn0SeiNL${#>iwiq3_5}i1SJ9y0+(8NY_lI&NGj!U2` zosRZj5?z5-W({&a!#Z?JwxQ=Qe87d79z_G5Kv&d`CYFlNuS7Fho&oZZHz|xo$0g7S zW+J;4=EwV0XvH>RG44R)AI)X|T}dkquAm()&Clor=^PB^41>@!QpT4F*P@5)L8KUA z4Vu7KG@&Ns6Atn<0oyPi`!J{+$D#|HpGW;I%~Bf1;uC1cMl^6s?061+ZGJ(|$gemR zFQKKb9Nt;M1iHs}BQH+44=Zp9x}aU?0`{X7IF{tXfM<|cp#!Z%8d=Q7Omu>I=nvB( z^oQedyal(Q59^H*u%pdl0;UW7BNjjWEC+@;5 z1{{v=>GkN!$D=E|1Kra(I0+Y^XJ%JyKY}jkn`k?lz;Ec5{)3s!AG(pQ5Bj4I^3kmr zgHAjiT|p)KlYAE%_*-;b2f9@$bo}43y({H1;Vg8Ei_y5ZqKVgF($d|}MR#0|240CC z#`Uqi2_5(m+W!Dr+T(aN0d(S2e118aHM%pgB6RPsLn~T=EIuSgQ~&NPV zMRYY9xB-3s68e5`i_brd?fYW;r)d9HbcNqVFQ8i+#&jOyB24G@rZG2nu6!~L{N{w) zFazt+i58-nKZS0=I&|Rcn1S1yD|-#=*<3fUIju)oL0MT<#l+^pIjLUFeMjy~`w#8- B0;m80 diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.po b/sphinx/locale/eu/LC_MESSAGES/sphinx.po index 9d4201607..263cdbebd 100644 --- a/sphinx/locale/eu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eu/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 1.1pre/9523af9ba9aa+\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"POT-Creation-Date: 2013-04-02 10:33+0200\n" "PO-Revision-Date: 2013-02-07 11:51+0100\n" "Last-Translator: Ales Zabala Alava (Shagi) \n" "Language-Team: Basque\n" @@ -32,6 +32,10 @@ msgstr "%s ikusi" msgid "see also %s" msgstr "ikusi %s baita ere" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -575,7 +579,7 @@ msgid "Welcome! This is" msgstr "" #: sphinx/themes/basic/defindex.html:16 -#, fuzzy, python-format +#, fuzzy msgid "the documentation for" msgstr "dokumentazioa" @@ -832,3 +836,4 @@ msgstr "[irudia: %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[irudia]" + diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo index fca5a7b2731855f98bd06bf8cec152066e7452c2..c1bc66e53fd7fdd4e22c7de4ca89c8f648a58db3 100644 GIT binary patch delta 2622 zcmYM$duWzb9KiA8HaF**yErY^)OTg`Qs!kkr)?9&Q5z1UA!5|hE>yC0VG^{E$1tdd zP5&uW)P~?6f~7GeXj6w2gRG{J4x+3uA(dqds~I-?e%+zQ_I}Pe&$;~0@0{mlAJv_y zOU@T&yc_u0$6pD5w~e*-|IdwV+Nl16J{mthgu5^wX$s}hYV`SoI1wAL05@O}wqhQ> zh0eDVb3;hN0SY-Zbj1!Q&4(z_wo`moXg()=rf)$uXc++tyF2Z%lqtJowa5v7!PP`M(;3OPG14w6E<1iO% zaB{4#L4HFMA6eLplUP4&qToX9Xyhl*NKc~^T|pE&B$>~(kOf#8_r?|^-Ji$U(pGN(H)LNi#SLpn1iKQgP!erK1f1% zDb_c~`a5W#yU`;%5bGc3asDoNk_IE|Lw9@@UGRMDcn!UrH_^e?t2W#`+(z zK8AD{KsFk9Ax_1a=)$!~Okp)TPqKl6XWW9OtQF0~7Brx}=)nExYjY^pKSPhKKl(j7 z&lNPVA#}d$==Vh?(fE8ex{-OKCZU3Y1FF#lYte!AqaDIpbVp5S>Yt7ESI`V4v3&=6 z6z?O~By^+mokABpjlSjsu|9;^+`lkP!JVXW;~bEWyT)(<(LfIK?ihIwx|5S=MlMFL z#^=|O&4!!EX@rS<`*?}V(15DY)UQIGl7wn7=4x-;!N08V; zH`?zUrZAm%Y6;Fj7kCWqw-sGrA94*sFS_FaBuU|CG!rA}dJ_}2>lv4zXSy)f>(NWJ z9%o@I&c!{r0zXGno6C7=DbB#fvHmDJ{slCE*JFDJ8t8sB(Bv2eHWhwAU&9;d&NEV@ zmoX1rU=|u^6;|OR$R@(}=m%&fPNDsON9W6A6*o2kJ%Tbc^_55llCYeDsd@-q_zCnb zY{Yha4IPllL3qq_!$$Njbf6p9iO%yOj`jWjgn}vRMKkdw z`aN(N9e5Q}cpbf5#di|~&W2}R&hA!NiUKlRHH=2+&(ux)pWn{Kqpr{eK=N~H_ zS&EHHGK48grK?@Y{>hnTQK=OYHe)hFtW2+HNVygC{mui8yZbrkJm=+ie&;;*ho+C3 zk`v=ooq@lt{7>RPHOkume`gCqD581}eKd&I`?xR!ieYNB27R8vYp@Z=VKZKf591hY zL+4wE#UUi2lfq~kx?+cJbb?+i!=pGB&tM4-VHyh=vM;P=QnMCiHCY;EPR% z2V?z-SYLw%+JPQfXRPlW!}+^l4-H1P7v1qebipIB<0%k=Q~z zR^tXVkRCKsy=cn6M33?aI?wU3Tp5*$grG@)PyCZY>hq7zNW4$Po|96%@h8twOEtoO(I z@94r8(0~VVGL9iVE?k2Kl0oNbLXS3CLBUkDpcz<&2J{j-umgQv-iYk^ax%- zu1DxX=gXoCeuBQ>TY!6 zZ_yOz(10%C3LM2Q44?%`W_SwC=vthKo6ujzPb+fM(=8PRGk=|1{h8HLpYGS&p-?WfJ*!!FBP$CiIu;EhMJU6+7<3 zH1$6)gGIbsF0csg_c*%1%gFJEUFeQ`k)(t}XeLgh>kXktoJ!cXXIgt;7br8NCBfq8V*N=Xnji%v;dRY{N;u|GO#p{(plG z{0`IDhhC~d^t~;Zdc|@yQ`68L&qgO)gpJsYF7!IOkxsP#JLsj}i3YycI_ro16zupt z+VL2=@Goe`3+TYX*j~ti`#MfU+n1snxECG&0Ftb*8lCsm*uELv$h(-r4{-CIvexXX f!Y%pP!tt#m^J~+!wGDGJ*)^r>M`uf>d_M9&h9>XF diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.po b/sphinx/locale/fa/LC_MESSAGES/sphinx.po index 7969854a4..c197513ed 100644 --- a/sphinx/locale/fa/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fa/LC_MESSAGES/sphinx.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 1.0.3\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"POT-Creation-Date: 2013-04-02 10:33+0200\n" "PO-Revision-Date: 2011-01-22 14:41+0100\n" "Last-Translator: Omid Raha \n" "Language-Team: Omid Raha \n" @@ -31,6 +31,10 @@ msgstr "" msgid "see also %s" msgstr "همچنین ملاحظه نمائید %s" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -844,3 +848,4 @@ msgstr "" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "" + diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo index 600ed07d3edac9d830d15aab1b32c224957f9887..64c6448700ed518d53919b15de4b4750eeef63db 100644 GIT binary patch delta 2895 zcmYM!duW$c7{Ku}x4F5T>!-_f7dLedZ`s;(scAJ^k)cZqFHn+rAz(mR;LivAE8^eFnU4Pd)AO1TdNRz#Tr5DR48=h>3VY!6=mYWjLhQr+#hAhb^Km2Q z;af=DB<$tFz@H(1!x8>-!uQw<&!GYSiT8W4%J~D(1S7F8-j3JeEOgx>EX60$^{*l! z!aL}O_hMi2hXY)=@Eg1yf5!f3784X;0gl3cI2oA|=Edg?==`-;W=N+^S(rlC_eT@nh!(T}-S~1e z&IYtouc3K%VKSAAeOz?MY*yu99u{H&-i+1g&X*#&!{caxwHVSucpeS>0)2L4JJ8NG zV>dh$$A>Y4aT~h+bc+5P_#8K^;8L_l@2&tPIFS2Q$R5KCwDk+)cv&2;K{x&)5+XFk z@w;fk7Ib6#(M}vj^R@P-|1Lbk4d4C_v}Gx_KM6;ol{E05m9NDz+=OnV1?}8H^eDbS z&$<^urI!A0a0 zLMCmnGezjS8?Y27pzG(L`5Mp;JXJ{lUD(JC7j8ki6y8UQ3ZJ71P9Ql#2hxm?$D3oI zq3H85=={l8jq|Ytn{YJlLkl~PcII!az_eoePs~ustLxia$A9ju9zBXD;&>I-FkXkY z_z>EGuj053J;I-`68}XDsu<9<@fvj9gJ{7Ev9kjS7gM>>i0rj$J|LWfPQqN$A6cH-@1Vj7HCTI*!G9 zbR#>^fFEHQ?nf&)i6;03{T;Z7Zs;-^CzDTv%TS8OpM=hP2s8ZtALhc(q8@GOYP8a4 zaRR=Mz9ZkF8|gq3WYb?emX8J;j#gfYKCeYLHVtk0EcBh2gXUR^+2ju^;)B)bPw*ym zVKHSIs0>X|5yxZWxEAfe6tsXD=+QljCRmSdXcPLiY)3b;JC0j0u_Xt&$iS26!ge&^ z1@v>v9MW}v0D6W)qt)?#ExN%vG|^0?Nnt)_Vk276bJ3U3`AtLUzZGobMjGzKZunlD zxC?#Wg1+?!(0N~?^Nz&(N6{lXjUL@qw4l85F7wfswm-U&Dzwn?Y!wG?t` z6ygigA7(atLybv=ROR=htO^SOQx4!~tN z5TC(*xDJV%3C%PN+=6^UD_;)y3Ul!|8sOJ>{SrDpm)R~*goCjh`{N9B-W)8!#pwL! zkf~uKns74?X8o{(h7&)-Yw#!z!A^96B&!wTFf71{$gOY(dVfATz8=%K8i(VjI37=; z3lAYHD_4r;I2wntez=#$AbcFn?1ktC>`i|&PR6%lzXORG{={CGMY)`xgDyB6-B2x> z`2A>{r_oBSMAzAbnHm~z(zpu$MUFXK#-W%bN+pg$GoOd785W@d>M>-6@Dv)jfjXPm zTC_5+Vh?;T_IF`|{sDCU;Q`d&z{k1Z4o*b7&;b4NLKuM~k(|PGwDhxM|GwC-Lle&+ zQ$thizl<)p6;14Iv=Y0}_4edZe` zK8=>N3k{sj_OdaFRv;I>pN}R`jK<59(rBWQMkltSf%l;Uzm5I&*#8Ahpc7dubYU^( z@&LHN7&M_Y8fPYY#IQjF~)2!?S9L1DepCZ$tyU5wGvYD@TDY(1uh! zoJA{>pd8K{ge90l=TAo$ybG)@J|uQ%M~V^tK?C*Y z3G#k1I=%waI17hkBaX+-=*Etql{tascm@d-3X7?~Pj8wpGpj|9VqWYo#HsWjK})F(wr2=R|XX5qDA2i%SqNID_LbSA1=r30_ z`p_&z7id6tvH>macJvo?H@eVX^f&(~n!qu%Vn3tfI??scclR@40IRrzBJ`{$Vine+ ziL6EgzJe*-g6`mRbb&+Y``m^m^b;EAEb!ehLjR27R9=pwG&!=mJa7gzC_@WI3A1OR>Kmt;7~gU@K;vxR-_jzeZoP zQ|R?e=-Kry?RGGFJ%uJX7F{Tf6eCQ-p7;Q|p@*aO==dkm4K!jFK3_`xd(c=N2fi2w ztVf^rO>y9Mblf}f`cCv{_Mk`hBPQ_o=sEOZ?LrgDAJv_BA-bUydW7RfG24kVxnO2B jEjfLD%W1hha7T8pijsCvgL-6)3W~q&0hc% diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.po b/sphinx/locale/fi/LC_MESSAGES/sphinx.po index 2de0ca9d2..732e45c5f 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 0.6\n" "Report-Msgid-Bugs-To: sphinx@awot.fi\n" -"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"POT-Creation-Date: 2013-04-02 10:33+0200\n" "PO-Revision-Date: 2011-01-22 14:41+0100\n" "Last-Translator: Jukka Inkeri \n" "Language-Team: fi \n" @@ -32,6 +32,10 @@ msgstr "" msgid "see also %s" msgstr "katso myös %s" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -829,3 +833,4 @@ msgstr "" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "" + diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo index e0bcd45d9715b434a82e201843f16ed0dc06661f..22933ce43872c272230ecd9fd06c4d59de6dd41f 100644 GIT binary patch delta 2831 zcmYM#3usqW9Ki9jO`XnH)6Hpa=3}~*g|DS6*MfW`L^;YutdLluVCpojwal(4M7klG zN(xcFqC_QOYG%gDS7au=)Mf z^Hn4BC835Beqjj*JFLJSxDlP;o!EW=P2f28#_zEYUc#F&gIOJyg9C90I({P3B|M5I zT8;LfgL%XcOE_`D^>{OG$G&(3`Gqqayng}v;SC&%eaYq)oQfq_g9h4$R$w=d#C_Nw zTQCqA|wNFkwB+B$>tE55UXAT-=nA^^O6_ePdVMPzxCBk` zF0>-|qk${XelyXBd;wayRlTVHeVlBk!Hh1U74V`EdZO(m987EqTFOdvYo0(8oPka_ zA6-yA8fX{V?>IW{EA(yn0Ug(xaALsgScYA=>)uR8_qZBe$wG9%i|B-}AjJr)(Nb?g z1MI{MY(y*a9@_sPI^PjoiOp#L{AqNr zThK~fMk{a~O(c&8$Z`4Te8Z5pED7V|jcI7W>F6HLiav`@yc|t%1sY%t`T=?)-v1a~ z(I?T9(Pnhqk7y!i(edZo@3a4Zb7J6s(5>i{m%7eHOEv&)AAxR7Ir^|xp%czV1J|J6 zhv(w;YP2%1p)22tE^HS%?gQMN@Opj3i5V?mw7!I{xE@{M8Z^N@(GTPOV`zdWkjE#S zK@+=z&XdLyX}}(6BKhe3;%F%*?%|Z!P=yYdjZXMHvVEZ;UT;Awu@6n`C{na=4h_(T zuCyy<;zbI%XvK;-IL|~JfK|wvLtTIN-+*gq@RR!{`ugn0v3Lso#Afp(jmJ@Fpt)#; z>hMlXkl0~w^b0hRi_yPu0@rQmf+z4K8?Ul}{kOF9XdqUo#d~orTH3FXUpULbhbW!& z4U~lj7>WIhNdwT}`#I~aS>L`bmS&H^+h_1u-zyGguVoBdZ ze&K*O@E3H#^XThz9i6cIu+()9x{@Na|0J{m51|!!46V?D*uDzww*j4RGbX;jdpPNc zpT!Peq92e`I09SZ{k)=70tM(qh4K0h%;dTxT81V*5uLXZt?=WqeI{Cw+M+PMedWt( zu+$rnU)afkk68EyJ76n1!Bu1%!wt;D!NsYE^ENb4DY}K_=(vi;_p_S1WIj?ix4LG| f!p7R1wHcYC2aXzf_n0w_*?nue{dXrR+?Vk$5*rJW delta 2799 zcmYM!duWzb9Ki9Td)?-|>ul=0tbFGM(b^l*j)7L9~NqV zNKMqr9Hd#(F0u<@4MVds%(Ssgv4PzrA+-#{YS{O?_dw&_^EuDuoZs*K&Uv1;c}??D z?fnzm0)O@V59NPlH_!h6`#2|ro}9K|FZ>dH5;YvdVe7H!+gxe@z@7T z(ecWV@ls(44Sr!22Op@$-na=JU`M=Ok0x*k2jCZY3!cZmcn$5BVDthUfcBq++zPYM zM9a|UAHh80hgCEja3c=Eoj3>^kze?VgZIzjV7!dQm`ye#a3)T|C1{{pv;uWlgl}O! zp22~54Nasw*=7?z44^Rshk5}QBhQ4#F$VGSZS}qu?87=u|@w^o+>5uXH6?6vwBEOK;KYczJ4V*+1 z9E(<@1Py!_+OHhlQ@Dm(tkD1v5I2R^Tco@n*c93c zT#8Pp1`V_eeeMw2?+E%f97p@Lr)U`P5>CS#=-L$Xlxtju&ZGkEuo9hl6gN}0mH)9L>{C$+g@ltbX_~7Db1sZS#@@%NYVYmqmxDQR>AUeQN?A$wO zh1$@W|9~cP6YZB^136xA^z9mnTu+5*Gz>TkUAwu_N6~>-pb4%)15~3Qo)_Z%chDKV zA8n4dp#45Y6FGtQKOOJ4W47=A&oo?u%bgcO=s-)BnU}tvhc3w|bd#2%1D2tI7ogvT z$KrVvc9s^M`4)6y+t7Y*;s?A{Z(~p2|Aq86vnS9QuSI8AjaKIM=-zn$Jv6~aWV?i8 zXkus4aehSuUPlv2urs~iH(G!$VG*V}XGFseW$1uQk!1^&@q9B{p*PUP-bIQOPN4xV zqBFgQyfC2ytyo_Uj&nN>$5Ld{VHp~)I-mNx8D8XquT32m;}INzH*hKrW=9$5A+$ov za56rL#0tBjAEJr0M!(0qIlqX`cpN*~c+=6!mJg%;#0X2cFcWLg(td>e!U+y;qDyF? zKhOZZn9gj>L-#-hdVM+a3zZyZ;4A3;Z_shiqHn<^T*Mx@nW9m^g+&}(iW)SbE!Y+J zVIkI|1D!$xok1&c0WI-GWRjr+UBV%hlV+HJ{K8xgj=u)IzX4s+)HWIpya)Y6?neh| zM%Snn-L)6c%zr^k_Yb;62{wdFlSC6OLi?9v39dy0?njs4FedRdvJ|Osorb09GcrA+ z0<`3#&jSe zC+L93(bwo4I^b{d{7-ZSS)iJ7!_mG3ia2g9aLeF5PgnUs1#HoWtE4w&uQ^ku|Yk;>0^A Qmo$tW^mNaLx@1$ve}3KqZ2$lO diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.po b/sphinx/locale/fr/LC_MESSAGES/sphinx.po index 3c2f1fd07..5ffbe0b20 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.po @@ -10,7 +10,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 0.5\n" "Report-Msgid-Bugs-To: larlet@gmail.com\n" -"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"POT-Creation-Date: 2013-04-02 10:33+0200\n" "PO-Revision-Date: 2011-01-22 14:41+0100\n" "Last-Translator: Sébastien Douche \n" "Language-Team: French Translation Team \n" @@ -35,6 +35,10 @@ msgstr "voir %s" msgid "see also %s" msgstr "voir aussi %s" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -582,7 +586,7 @@ msgid "Welcome! This is" msgstr "" #: sphinx/themes/basic/defindex.html:16 -#, fuzzy, python-format +#, fuzzy msgid "the documentation for" msgstr "documentation" @@ -842,3 +846,4 @@ msgstr "[image : %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[image]" + diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.mo b/sphinx/locale/he/LC_MESSAGES/sphinx.mo index bc7453979d75e490726b6a1b07048d9feabc6156..87b0ffdda37b18806cf55eeab54630e0e6beb6b7 100644 GIT binary patch delta 2932 zcmYM!3uu;A7{Kw9m(6=RZSJOidD#rzoH<>a^BP_jxnL;;@2jmWHUvG$l2%ktTv0jY`oJ%MiqA|GzuY`1bwYbKduy=Q+?fl;s4Xlw*LPc**%0FH1n}1mZFc$#KBmBUGceSO}t-=ed%9|eQ+!G!<~3H zeuvDP45zqo;#TAnuJYvrZP*KY@{|+gp#25t^Aphk4`Vu3VQ*Z8j(ZCexCtG<2c7?W zG~rX2PW;fqg#)i+f9%5SnV3KWlwuZEU>u?#d6-T7@D3OEU_F}I{^(KcLi;D2h-YIvi!v~G7=o!d8XaGP27DymUyUy8eRKhJ z=zROpiXFkE0nc%fg6FXtUcqd zx5xGl>_mG%I=-^YEbhv`1=mm6w+juYbO>5u#v1sY1#dalH+J&)y8M=TPWN3IZ zwl|}J>(B)2(Mo)iM*R(ZAU^mr`WCdHC2PZ}m_arsG>nDXGx>7hd^F%9EW;Pjt@#?Q{z-HtzoO4yMCZGX zR^T>T>OQQ}`LnSj4n`}I%;mxdMxX=7q7zTRHCTZTJc9;kL7%%6y@n=m6Nwc%a}Wk# z7CP?(Xd+Y5@w3q_uR>1JqLBLg#Bm1D{8KFRs}3{qM^1EKP582beL%kIbl8pt z-iMa<0v2E!T9J{QI0KiViOfbzyBK|b6}o`6=vn&!9rqa$FB$f7;ffET0nbIRp@*j1 zkoJ{iMkk@Ae+CWEfF7nJI26ys{#(&BI$dBcy0CmS!BWg3ewfY$iwO&ma}nM^e+NE7 zGp|Q8Z$L9YiYELEdS?DYjzJhjz1`zkXn-p8`6cLlFQb)Ojc&;nyz~C=@Pdw=Xuv&a zrj4=vBl--d~m59%wZhU_Cl+Gdj;UH1RL77!RX|xecvYY994>#hF|rKZ z6tuqrJKIb?`uzV zrMc+9!q}dK1};Yj&P4+~(U95whpwrQzPNN@^^z40zxUhKG4=k$=)%%5V;VlrXzcOd Poeld2W;E0cJKphMH>wms delta 2896 zcmYM!3uu;A7{KwPTicv#UgxE4?&6l)gw07hvo%SYSZ0}qmnO1X@+H9qA~}@k|aWdvj5-jK;zr@JMa6RbDrls=e%Fn^uyDW zi~Tb<1^)K(U&Q~`+r0Y!uc&tjd0ZCb?O20$8HeTAguU>o=#uz+IS%0dOV|%L;6U7l zeefe>-Xt8N;l!trPxy&1J9J|{{)0}CM{n;BL;KgF0UB`-PQ$*q2pzW)OK}}K{ylX5 zPtk-A;UMCNlQbOIg@f@r4#mDiF+dI8flW9B=OA6eviLkf`?uj(+=V503Gc#8vN7=8 zXyux56i&fH;)hi<3UD);+3x5kn8Wp#*n~&pbuMLK?l1teu?!twjRu?$pFfW-Yz?}A zHgvw-XvIFp#DFJgWa0Oii$7u^Ucm;;Viq%RLUIWAqvK{cdyf#FL?@g_olR^xTDe!T zC%zT0-^NU?ccbG|{iweaf5r`0&>208PH+{=Fr$BZ?<>*LkBQe4(b7(j_vfJtSb_`< zE8_KfG;kZ5;AXTE@Ajwu2Hq1peucgTC()91<3!9M8xxwsmlc?g75GfN--af(1Fhsf zbZa`$1Uu3BzD5^x1&x!J@J`sV8XZ`Ve8M=s95@vXI0qYXF}gL|(dr*WSMm+o{~WsV zF0{lq(0MahWd`P=mB>e*Cj)4hKruRDCAQ#Lbl^dB;v;CkZ=>hYz?YC1p&N^_CkMfa zOVLDX(D9AvR!>GN^)OO_B+R8@Mk~>QtI-M9p|9K4c>hB*-~n_Gk3`R)6JJ6Tyn+U} zhWSYGo>msedDlk=z)8i_wW&(Zt?IE0BuUoj8^2 z{0!?HzI(`D)gR_yJkgyS5;11*yKIhBv7ZMt-=rX#}9wl*N^p~sxT~Qs* z#<}tSK6JtZXr<1eKgGXeCC#g)>BI{7wW;EIIC`cYLLP-j(L1)4}BTG|QUv z!3fO8(XqpLG{AlF`Vq|GdL~-h`RKS8(2}n~6MGXqyxZda!16QL18_\n" "Language-Team: \n" @@ -32,6 +32,10 @@ msgstr "ראה %s" msgid "see also %s" msgstr "ראה גם %s" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -575,7 +579,7 @@ msgid "Welcome! This is" msgstr "" #: sphinx/themes/basic/defindex.html:16 -#, fuzzy, python-format +#, fuzzy msgid "the documentation for" msgstr "תיעוד" @@ -830,3 +834,4 @@ msgstr "[תמונה: %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[תמונה]" + diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo index dbb54d3ce408d8bed931f771410b9192cec33356..549b03c33b3313bbfa9bd131dd0ed1ab6d11e1ad 100644 GIT binary patch delta 2767 zcmYM!4QQ2B7{KwP+q}A&b6e$ZYP*{*aTzU@1!lUOh^7|SjLL$@4-&s1wV0T%l}cG@ zsD1cZ3Xz%&WC)+54AMSzC=?hhh~|U*#EzKsBw3H=RNOxp7WgNocn$<^32HO zyW-r}0)OxF-;MwJJg@%$dpSRZj$FQi*WfDjk&Re^jo1Odj2?^kPhtuEzhDtw#cQ#s zAcR7^35lD88X5+!Lq1^)Uq0|CcEV|BfVr`M3Htmxbb>8-J?_HJco-db8Z&qi9bd|9 zG(#1da1C~5{!mM!3ms$7fRphCd}{^5y-Vn8pKGgTG=K_8==Ks6#7sFIMAN z?23!D;H1oHRPuLuFT7H2C~jzhQ}SWNxRB%#BVFUOv^0Zn8NTDn8%Rvbh3_yk(|7IXpm z1aX2s=yM~`abwU^{~$VU8aht{4#XD{8tz3iQl;=Cx`OlQfWOgzDWb55P>7bc9G&21 z%)!2BC2G*;??B_#;bN>upZ^|>dkTFnIUgIB(TUqqH=3aUyJH5Oa1ffna5TWf=-y63 zD>W6ZKm(e{>*%=EXuNmOU(@#3e-N233CC%;cc-Ek(7MsnvPsdI=xLviF61S2+!}Q2wxEY^CpvCFChpBq8YCH7(19tAwhxwK2796X!_f&I zLKB@3`==wHknm-~tI)I4h=dILuyu>k1zbSSN~$aMucgtGI`_tj=;2z5R$w(&<9g&1 z4)A4wv*`UcL~$!p=o_>XdVe%J;bZ7on2sj$6!yng(FHYkqyAJsd`*Xkq6IVf7rK%( z%NT{Xp!esX6?h&ExCDFQMs%Vt(8?V_EA%t^20e#2(mc6jy4FlhW2D}?x z(S+y}G~koS4M#jDzq!a5I{~Cz!$f;R_m5@UR_t8@WO%%Sgu@bl_l|fcK*-osTB^Iy!D6T8ZuG1pBZK z58+*yL0Q>_kc}pkkBLb%CekqDCCIzsH8j9l3@IV3Lj$j8RugMPE76QSur1!VV;c9D z(DA>aac`gt=!#~tAC51~q5i{Zl+oc_Pa)L|3*!CKc)teCd;@ZY9r1oII$;Z%*jH#J z+R+J5qvJZz!~Hi}v7Foxrs93M)Za{Aro)x5#bVryCenhI?l`&?C(u1UjRv}mF5osg zK>@*h??H52C3@7yTEI|_}MFUJl_jDRsp(oLm z&qEVgjd#ut8gCu?E!rLX52N$7B3qUSCzFkE5e<9|&G0XDf`8E;nx33MpN~dYG%i{m ztw6_Bp^4O>`w*=n7Ma&US}%G=U+=`3hs>{SbiCJJAH1(7ir`?(J1{+)cEiDMiV|`=DoG5c>YT=)w|{V@DObk{RfP zv(S~i67Szcw_p=a#*fiTT}A_TVKJr-Pxg;S<5i%EJ&IOvI2Y-6c{G9Fu>!l%aTEA1nZR`Py?N-kMd*s(j(&i~Z;bB6H0BS@G#q#kE$z41 zfIp%Go*kJi<@4x@mPX$|OSlHz)A!MB-yNSHK@<2cdI61h9j!lx6MTjgDYT&9n)A`iXd+iJ;e+e3<0d-MEp%^t zj7q+khxQLe4_68H#B%h#hhqQZ=-$pn6IzLBSdUJ)9{s)98to!pHw?_`)x2v&b?SdCQ1#6K diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.po b/sphinx/locale/hr/LC_MESSAGES/sphinx.po index 7f3969661..9f89da014 100644 --- a/sphinx/locale/hr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hr/LC_MESSAGES/sphinx.po @@ -2,12 +2,11 @@ # Copyright (C) 2011 ORGANIZATION # This file is distributed under the same license as the Sphinx project. # - msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"POT-Creation-Date: 2013-04-02 10:33+0200\n" "PO-Revision-Date: 2011-01-22 14:41+0100\n" "Last-Translator: Bojan Mihelač \n" "Language-Team: Bojan Mihelač \n" @@ -32,6 +31,10 @@ msgstr "pogledaj %s" msgid "see also %s" msgstr "pogledaj i %s" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -840,3 +843,4 @@ msgstr "[slika: %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[slika]" + diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo index e6ecdcb152db1e165d8bd7016e60a3c9fd2efadf..b0094de3401813df44efbbe2051a64eb13eaa4b3 100644 GIT binary patch delta 2686 zcmYM!3uu;A7{KwPySe4uylm55+~(F~S~2IQrOSq;*2XL;)Io|UBdLjsUD5iIgod&T zMRXXgMr9!@Vr6r%kQPM}R+6pEsg#yNnPnj^i2naP)cE%O&N=V7Jm)#*{W=yOTAVmF zE_rw0uZ#ae{%=UJ_Wxg9MhK&+-in#nfOc7qQ*b4wY>#3n#x%SUbFda&urWS=8qLUa=mt8` z`TEeE51{Lvz(f;;vlLRXnmm*Ja0?pY9XK0Tp*z@%bPX?|6Le!35yJcE#J#L)fS;oo z8p4tITde(PEI&~Yv3ThW@J;J~fuLhV?GFQP~AEt0kHC%S`FM%h0Lov;AeOejNB zT8l1l8z$jGH02Fw|GUxomf?0xtfk<9%jm?zXvb9YWPJ=;&qo88f^-Sfu?XwYek;+V zd=TC726W+e^zGS+26zBHlJ~Be2m=%x_$9i~Ae!RS=nu@#@p%?E%s_L{i3`zwrLp}c zG{9Oklk;M|3ElD1*!}>T*+((U_kSk^C+9qPS&tJ zFW*M=wr@cLPoU$w(D84f8|_6-Gkk!#zW>K4c!n3y3IB>6(uu};5xRrvXumpig2hO3 z!fN#GcpUkJHom-sUFf)e^!ZV&z*Dh3g-!`0&!u38QZzL)kc%9eVto}(roIJTa9^yy zgWiEJ(D4`1aet$~sAHMTx2Y1RV=KlDI)(yvY7_YY#TaoKQ?1OdN=ae zz7tPIVhk17fb-EaZAagVUFea$fy=og2eE{D7GG|x3Q10Az>(OJpioRgp< z6YW7_2(KacEes%Yh7))_UPX6O%&(0{FdMxii_pw8M_Xe1Ms$PEpm!+ILBZFk8x5on zy%Q&}1kXiNNlzp7sp!B>=t9q;m#PB|_%NEWqiDvCqk#;eJHLQT8IsHX{hdgJ3JP|- z9X*Ohbf@>l`a@{M4`Ur}#}fPm4d6T)@G#mhg^S~S1?cTBLj$Nm1FOd*T!b0E|BVzJ zuoNAz61U@ebign=!3gqgzf82A6YHgD;FV}*s<9FmqJeF|6x@tvcq=C3D>#Yu!|N10 z^TTKgk3_#g7y1!h_;>WEhOr9M$a@Ojj0QRn?Y{sGWJzpqK?7_>-;zhr`P#6_OY;H+ zUyqk@D!z@j526EqLXIt5iuLhyGSEUa@M-9dYI-U&zE4lP_lb3@*SBu!$(T@)lvZ6b WqiW8~nLV@fJ{$etlab|lN&f&Nd+@{n delta 2652 zcmYM#duY~G7{Kx4?wdMq)6L7=a<_C{%-oi`mJ2L#&W&o|P`aQ{P~?n+Q0#R`5$m$T zOe748W=sEwd}C>p!f38?(hP|(vNo#`G$AZa$n5)_2O96*&pGFJF3)++`E5tn>|K*M zH#Kc{;OA|A=kQyaZtee{n{q;!K=o#vh)dBfD{&sK!ED?d-4>rehf`>O5%X{#PQt_J ze7(qgiSRXr@ihDpJN$;Z)UTiuWbx2}v(Nw*;557gXW(j_j2qB#Ph&CeM9062d_oUj z2HJ~`8^Fn|AI?+Ar{PbWi4zFV1OK3rN@S3Od0)4C6w051qK1RSobs znxRveftGnKqF|% zFQS3xGKupqMEf}!ZO2-C2|a=@k!*!u&>dVt`(Hyg5ymr%sVqb% zuE12h1x@uLbm1Cwp1ZIEo6-J>?u=sA!J-49HrpG$I;aGqkmY=T<;Jrqmf=kCr;z0*)JPypMeHg zh-R=n)~nDR*TwcGG@}oqcWEnT`2KfL@I8KQtRaL$=*|wKksm`B{sOmi+fSi8X<&O^ zx>od-Z$txs6dm7zj(-Eq(0=69!U1H8@CkbV!f6Ulcs_RcBi7T2${kEY&$<+ypc+X= zScUH7VdN9q`10~~pyRsG=RH`CCt~|38u-7MutPSZOwCN>;)beNUx{<6Z$uZ|8S8t| zJ8%RY|1CQ1SM)FG74$8d!lae>04~EF=uv%&W~6U6`LCvMk_LhaDcqn^oP(yWKH3m% z!4L)UHC)v4t{F2r`m+Klj zaRzB1#*mAvZ~?l5E$CaZ4L!nFaV>Y`Ei9&fx#;@F3aF5jun1GI5qT7v6BN8$ZRn1- zpcC27+TmsNvK&I@482%}L+DO2`77fQ6rp$IRx~s9(Z<-`if-_6^bWP7Z&6}51tWO} zy%fDzjHjX(uz~s{(&WH(=t7&&OVy4B+>K_e2hG@LXdr#)&QBv#h2N1=3ArU>{Su*) zf@g6%y3^WNzaNcwJ=Wq=Sd1T_0Sux652O7?(OaL&1#;m$G@xQk#R{~4B^qEgj{X0y zqtHP^6FT55I>8XyaWvNdiuG~i-+;5xj7-J(SdK2xjOn-z&FmwXhVAGje;z&R{Wvi} z;h+UPf-ZalUHBXHjLzah9Km!fAnyh`7wun$269_$Ux5a=8htxj(D@!i?@Al`R_wq# zD=2iv2OpyY`;lV`gRy=Q4e%c{@*D=aqrBvjoZ;+bNnTm%uD1M)aW%=N{DBF{lF}Ke F{{eQ;>52dV diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.po b/sphinx/locale/hu/LC_MESSAGES/sphinx.po index d7ffdae6c..024a6f562 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hu/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 1.0\n" "Report-Msgid-Bugs-To: szunyog@gmail.com\n" -"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"POT-Creation-Date: 2013-04-02 10:33+0200\n" "PO-Revision-Date: 2013-04-01 11:58+0200\n" "Last-Translator: Tibor Toth \n" "Language-Team: hu \n" @@ -32,6 +32,10 @@ msgstr "lásd %s" msgid "see also %s" msgstr "lásd még %s" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -138,12 +142,12 @@ msgstr "%s (C változó)" #: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 #: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 -#, fuzzy, python-format +#, fuzzy msgid "function" msgstr "függvény" #: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 -#, fuzzy, python-format +#, fuzzy msgid "member" msgstr "tagváltozó" @@ -156,7 +160,7 @@ msgid "type" msgstr "" #: sphinx/domains/c.py:207 -#, fuzzy, python-format +#, fuzzy msgid "variable" msgstr "változó" @@ -223,12 +227,12 @@ msgid "data" msgstr "" #: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 -#, fuzzy, python-format +#, fuzzy msgid "attribute" msgstr "attribútum" #: sphinx/domains/python.py:100 -#, fuzzy, python-format +#, fuzzy msgid "Variables" msgstr "változó" @@ -303,7 +307,7 @@ msgid "Python Module Index" msgstr "Teljes modul tárgymutató" #: sphinx/domains/python.py:492 -#, fuzzy, python-format +#, fuzzy msgid "modules" msgstr "modul" @@ -320,17 +324,17 @@ msgid "method" msgstr "" #: sphinx/domains/python.py:565 -#, fuzzy, python-format +#, fuzzy msgid "class method" msgstr "osztály metódus" #: sphinx/domains/python.py:566 -#, fuzzy, python-format +#, fuzzy msgid "static method" msgstr "statikus metódus" #: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 -#, fuzzy, python-format +#, fuzzy msgid "module" msgstr "modul" @@ -349,12 +353,12 @@ msgid "%s (role)" msgstr "%s (szerepkör)" #: sphinx/domains/rst.py:104 -#, fuzzy, python-format +#, fuzzy msgid "directive" msgstr "direktíva" #: sphinx/domains/rst.py:105 -#, fuzzy, python-format +#, fuzzy msgid "role" msgstr "szerepkör" @@ -381,7 +385,7 @@ msgid "reference label" msgstr "" #: sphinx/domains/std.py:418 -#, fuzzy, python-format +#, fuzzy msgid "environment variable" msgstr "környezeti változó" @@ -555,7 +559,7 @@ msgid "statement" msgstr "" #: sphinx/locale/__init__.py:181 -#, fuzzy, python-format +#, fuzzy msgid "built-in function" msgstr "beépített függvény" @@ -851,3 +855,4 @@ msgstr "[image: %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[image]" + diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.mo b/sphinx/locale/it/LC_MESSAGES/sphinx.mo index 838dde425c9837a674b03297bde5356d74d2a4f4..8cdb9cbf22ea3e8635190a25b4891ec6b4b5624a 100644 GIT binary patch delta 2783 zcmYM!3uu;A7{Kw9+q}%F)6G^ob@wpP%`Md2P_#`mTb6cHlSIkV%2rd#puH7nX@t=< zO3k91Bb)^?=av+~Kq*`o%Wjse#IkH4DkduQ|8IvH-}XE2`OZ1dbDneF?W_I1Hu+^( z>XyJy6Ti9q-jn9j|3BN)L&)IqbsU86qeJ##0e*}Fuq*mk{QevcrT-#keu|But~hC)D!C0Sj<2u0R)fBKB`Y6WEGb*o0T&e$2$f=)B{YhiB0F*+iomO3*~h z(eYK7L;O%n!v*id5x5qw!p+DhH1o&r+wp4b#EJL^j=?cxbsbJa1Fc3Y^fZ>?dK`(Z zI2;e7iJZj##1Cg^OvOufU?tn28LF`#&O;|IL<7~KJ9rmOcrQBdD|F!>u@;YGUo5Ar zoI*+4Li^UnlW5K#%PK65zU0YKr8Vx_QBKf`7EaL+@E?oe-OHE z4x0F=XazcdHs<5vq14}42^~~3Y(k&6$LC#W=55F)bj0T)XuvKsu@h(o&Y}S?qw}(c z^Z$>L|D?0uT zbiKv65m%w(FQDsM9>--wlWZCW&PB$AVjP82(13TN2`ohySdBfm8?DrOv;vK2A|Imj zTF~`ALEoltV*lT0yz|J>QGafjXE+#LI2X;Z01a?0`j2K({C*+2qb1S%qpQ$)YtTfV zLgzmlzu$xgeg!>>H+r6lzng|7YmHwVM9=0s^fI177fi|N4cs67KQJUdk3}m}hVHxy z-Ox;Q-tG7@Z_@%ap;MGYFJPMQe_vK}hZ$&wrP0Y~MW&-iFbgf|0yMEz=t2$Xj$S|$ z*@|xHJ#<_vI{!d?{sB$!BqlC+o(9Q<46e2Vi_irpVjk8Y7e6dV1FS`Nx(*Gr2|eRC zk$W84&Mw+e|IpBD?b{iq6;lXceosH!n)Z1QS9$P z6Y0ci{1d&Dr7Y4@Idpyv7IXGaAD#B}U4$i=OG|*mj!OyS=kD--FWmm436&;DjDMXGU2^BOL8*V|4CDfr4UPRA+ z3mRZseEtC4K?_#lA+$2-g}vsZm79zPx&d8pKDwbr=w*Bq`}+SUq2X(^9v#>ipSPiR zqX{=+8(PY0wr45lpyTgC1Kx|?ot0>ydL*~70j=OJ^l0{?Z_`2SdH;W+VFF!f1-da6 z2Nw5E%tT8&0zKo>*ncA$a2~p&MbQ;#qK~5qHek;NaU9Q$n1-KX;=ltmv@`l`^eDQs z-_RrIMi=Z;(wkU1ddAu4xI%Q?_}D)KP53tSC|05ydlJ(yDGB3yUb}U4xbQpZPIjRs zYexfgpc4=8*^vJHfPVAWKD_jihwAraX1|ouuRL!;*_4WkJv(zY5B%?&DTNIw{{p)J B{8#`0 delta 2751 zcmYM!4QQ2B7{Kw9+gh7W-I`v@uXQ)AvDRFztx_vTMlNQCW!5q)QZ(oTq=bfDNU3E@ zLE2Jji51OaSadU_#37Rcp~+%}L(t3#;$}#Uv{dN--#yT{+wZ*Ro^zh(Jmx9|tVL@%SXVz?#_q2AaTTydJmXWbDF;*n`gN#}Yh^&d(-$nqe}U zXc8TND<+5^=F@P&$MHs7i&JnD@(CUM@%u0F20VzhcnoLa1hT5ZDm2gwXoX(IIrutG z#ZH`rJ!m2WcpdS>X&U$9upL;zHfV+#%*A?iVgnlJS#$?&Xu_YP^A4d4AHhcK$7?Z3 zS*d;~M-!>RI$VM&Gi{;4*suj%paa7-WQ>-057A7h8?D68I0jF}=RwTo`4T$+D!Ohi z^*8Z?Xem1XZoCN_3#q@cUZI0(h7|hT8lOKxGyeklgm2^Xk7&R?G_l{%3JjtF&!h9Q ziZYjaJX)y=tj7n@MBXi;{_ebkjxy{*6X`=scLF_vGw9i#M;H1B-9a&{_}0{-XMokhouM6aOnQrXmtb|}E8BJt6j@}(~ zy-xHkIuQGRMFXBhkL+y5RQQ{Q3uklF%rGAfP=x-2nTdX1kM8K9=p)f(=)4tZBCF8( zFUIfJqk-QR4{|98bNzDCca8@+_b(FKRlz!%W>|6+VDOk^rE1>JcWy0hER zdGl}^Z_xrYp?=Dtr_c@kiAmr85gKNgV0A4)2b7~nP=%Is0h-t{bfMMgj@F?^^cH#t zwxHv7q4U3r&xg&a&VVr|UkWaYGAIB%SdA{Fu zXvOMr5k8FGg*N0`g${IF8i^ea;#?d+H!x{B^`AjwHdo(;7NR>`j19Ov_J11tyU;|w z!w2ve^ll_rWVCYV{7Rg~+1DXM!V0qXNSe_~zlXlY9Vr^#^4;jf!)V66=)wcYeG9)M zpKy^sE|4f8X)H&NUSn{fv^ zp^R-=!U{COI`oL{L+?xj8fYn!OIV9mt`$9!cJwXUgKq2xG=W1njrgILMm7$i6EC18 z{TDsk39~Z&x1a%UM|U(gx(H452{gfHaCC=Q$@4nQ!QJS%&gfoD*|9Hn96)#0gOU-|2OLr$e7@KY?-H`Pkm|pf) diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index 3c3f7c8a0..492649e37 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 0.5\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"POT-Creation-Date: 2013-04-02 10:33+0200\n" "PO-Revision-Date: 2011-01-22 14:41+0100\n" "Last-Translator: Sandro Dentella \n" "Language-Team: \n" @@ -31,6 +31,10 @@ msgstr "vedi %s" msgid "see also %s" msgstr "vedi anche %s" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -580,7 +584,7 @@ msgid "Welcome! This is" msgstr "" #: sphinx/themes/basic/defindex.html:16 -#, fuzzy, python-format +#, fuzzy msgid "the documentation for" msgstr "documentazione" @@ -840,3 +844,4 @@ msgstr "[immagine: %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[immagine]" + diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo index 07bdaad748ff2181da58f50cdb7467900126e804..6ae0821c2c225e20ff8b9ccadfd6a9f9348f9728 100644 GIT binary patch delta 2944 zcmYM#X>3(R7=YoqwzTYGX<1t+P=Nvot%X8Nxl)uC5HO$^KtRH#5d;iMEYVyD1mg08 zP&TQNDiQuvR2mc|kU~swp-nWhM*M+V6BV!mYD`eympjqsa-TDEX1@96n{zI$vo=4P z`ZgzXN8s-e|ML0Q(9YKXe-)iV=uC4QcEKs=kl8p87hnh65Pc=y-+|rfufx0WUChN3 zcqg7k;-*3?7Y4qLd_sa=2Xw)%Sbzo?5&M(q`03~Z^RNf5#%{O;owpkc@c=siQ#AfX zG~rh4!TRA>E}WQ6)SlQ2dt(W@z!dC*3$Pc~AXCD&cz-WCz7fl@8T(@=Ldx6lnV zqVZbLik-uh3tr`78vcn{SjDW4I1T&aY#f8nqC03natVjf`6nR{$4uJ!In>_(1L!dDaC9f7(P}ind>nw!AUTFw^a%FF_IqfFn_~ZIbORUA zv;RJ}e@7Qi5Yz;-x>J8kl1qmR7oZc%(6=FpmhLf}fNPOY_=qnn(2Pa+P3%wbh?`g* zTFHUv5f!5emZI^-p&Oc=;=+a2p#yiJ6ZayYu%9m{9z_>Cg%x-fJ(})hZS_Z@8ySy| zpNz(vg;robTIp42{2I)_)Os!~$)-5qC3Ipf8n_N$#s+la7!KG4lIXZ8(V1uhbCKM_ zVl2St(S>)SiPWR>4>z{ zS(=L`xDbv1B>IE(T)e*KD4BdpgUNMCa@X%V?ExDO~@y- z^5wV;o;1e|MiU$#+cR(&?d4dGJJC4Jv3;e0`djj%e(BPc-~`&`==)iNMOcTPSyS{B zdK4|V0MDV%NIB81!2Rfv%tI4hhDqFrZuBHlgm5m!g%hu%4@oFY2k3?dD8@Bdh9+zzQyrCPXf;E(8;UPT9H4odfTjpm`x zKt6irW#~gxg={{|Mb-#4Xq-Cq8F(LE=yddlc>ix?1F4WpeVtH>E?kW+Fau3&2^QjV zH1k)HPk4>55iPctj}N;{)8sdhW@^E8A3nnhdeF}ly3))Km(S= z_V{RZbUON!&q9Bim!S)_p$~J`(DVX1*q(MDw0{tKR3nk0VLIOa|9>qPmS#O#vRd>g zj-aJHiB3Ep`~QgjiQ;skJ<)`U&<%{n4p@Q4t%}Y;@2@~Nyr!7?yVH%aV=LOOM<>1$ z+fDI)bMz7#=t{hQ10A2>W$%EwXuBUet`vu>A-zuSg{kV&%=hhi<-r5@XGwU^P0v2AyzDeEtHuuvgIq zw4w11q80lFlTLVsi&=OcGjJ-S2IC!Afb}>HA46C04w6gQfsWsUp9U_2`|R>6-=j{nM3^zke!nXT!5~mBsvWZFbhj?0g_{ALAT(w*xrto_>*}50J?zh zkh#Li*zQFq?n4v2ltcY3NjkGQ@lbT&SoCeELQB_xb@&AG3A_2S0$o^&-^crXXkz_2 z>Q*ub-J*On!4foHCAy&cBo|KfG}`ecbl^th6E^eZzz@&~Kga2K7~PsQvbOrg=t3r; z{cF&b--TBA0W|IcOv9(pN+cJ>4olGlR-ge}@MYYD4lHJ44P1uyyFFTqPF#oN6dG_0 zHlq`-LKA64$G?T1ppXy7_D z!FqHn?n8g5=Evu&(FLu$A^X1}-q?f=d>c)q4Gqv9pLe1YA3(R_>)1YtR_t`V{};M7 z*U`h8Pxi*EKqsz3e=nxk_Whs3g{5giSN;gPvPI~?<>4UnA(VHp;n32cmR zMgwof2K)l;pF!4+ACC5~z{UOeJwTstqg+n78|}9j?Uy{xg?rkKcKkCwxD>sPo`LkS zsXZ@14^b7e_)v$;5f-3vTF^7_COXk)(WCKsFS>whsdh5tQ)efhh#smMG_yub;9NBG z=a5fW!`CF-h4pv}O(?+uF@ecwzkAVAKa0j)kH&o$jkgoC{Qv(`F3k8VbS0#SGesXnC{> zJ>65#pX9sI34TCNaW4+QztO{aHQrAfpW31<nP?)-=(r^l?o16>9y_c-OS(0>8`Efa rqLtZ?1~`sR^h-z0kix+o^YeD54X933SJzIN)-fnQeOO0cd0*Op;8g=o diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.po b/sphinx/locale/ja/LC_MESSAGES/sphinx.po index 8c0025a74..1f46ed04b 100644 --- a/sphinx/locale/ja/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ja/LC_MESSAGES/sphinx.po @@ -9,7 +9,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 1.1pre\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"POT-Creation-Date: 2013-04-02 10:33+0200\n" "PO-Revision-Date: 2011-08-27 17:50+0900\n" "Last-Translator: Akitoshi Ohta \n" "Language-Team: Japanese\n" @@ -34,6 +34,10 @@ msgstr "%sを参照" msgid "see also %s" msgstr "%sも参照" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -830,3 +834,4 @@ msgstr "[画像: %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[画像]" + diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo index ecce9aa531b5c6e88ce63c05c64da8d6d2406c8a..0ba76ae61b7a49b74893672e11cacc6ac30cf8d7 100644 GIT binary patch delta 2608 zcmYM#eP~xz7{Kvk(@o9k^q21~e@j;*q;!iJL)UPS7&?|Op=Qi#g}O>psFv6d|B$Gl z_o-=OW`x2dWND$5SlNrUD0?wdXC=L%ONwDhYJI=%p~m%o?m727&w0+d_x^0D-dUaN z7}T>R@%IA%F6H0Zp0@t~JJKhmUNny)M>-yMM*p9fq5m8X#DRTN8i1p*A68%?*5Jih z7x(93|CDlRF&73l$BoC)fDLHkZ8!wq!Xo?<2~0m?7Q4{+!DM%WD>+e1szBo=p>eZt zDBg*~a3%I*{CbG_DCP zU=@zQXVCH6aR~FLU0j&B9rN)JvZ&O7Bk@<9fW63WL6guOs72#upevn^9BDZx7qkj5 z!j@>SL!WLd8n**;Cfvh?mF`0W4`B(OK%ZqHvr$7TMi!s0igqPhXf65(>Y}{>ou~;( zk(Qz>ei)tS5j1XNfA-&(ZYv#b&3?3i?~o&PaT3G?U5^$v2hG!n zE+B{I-;9oX8;yG(FTwT!?7x9O(BXu?;Y2)#ZhaLG&dP5_$2Fjdn$Q(5N4Ih{n)pe~ z!!_s*tdIMf(70{Lk#=x;4ByFdVc>MKIl(M+;DT@=TEJ2)#%6TFwaAe+b26?CeUy9A z9omns{2*G$DKxGNUHN(RE68OAb>A3^PE?6Lv+Kj@XyRMY!frz+ScI43{c-8J&0v`uWyH zdm*|rOVE|CKo_ws)nf$qc&;cU#(ZjAP7bY;(lFQV^8D_Y=z zXm>>WELva@RcQ%Ycsb@wRKtZUoQAG^2D+t3d~oC^QK(G2LpEA2$3=)_~ul~$oI(R_3Z??R6BQ1q`0Uqa(r(RXAwn(veF3oP>c z|CS2}o`@S~&_Q(UlBE`^(Vr<VqXpL5Q8&hwnh`@SA*=xE3c z6p!sl{O#o5RQ~-n*4qDnpXH~NL-ljyN+-kbqWug`qWv6Rido}RD#S@R0jqE#UXPbx zL)>4A1u11xGX)2(i5qR`fX!&&9XJ{HV-X%h2Btofg?4$)08g&*dUs?c$>&~bO* z6ub{hu@xtfKRrvqL@#3*b|P2$n4giA<7L!OqJe)6&tn7iVa&sNmg~e9VJ)rE3M|o1+B#~ zxIXF|(bL_9j(Y<$2HZ=*nI1p~_TrWJEqa#2NbWR|tSmN_qxI?NMCYJK&=B<|G*JsO zG_6Ee{4knl9Xjs$0`}jB?iCu`nuF*BP9Rqr%(fAuPe3LiXQ*U(sN~0j$S!=+@V8aL#-&+V5_3r7h?dwxR*oVKzR6 zuDm_&Z$J}oL$0)gpXcyhbX;AAXa=rFJ1z;E(8TxS<+ut>Xn(G>i66)9M31l&-I@L9 zijSZZ`5GN}8eQ?v=+i$G?U|C|(L~eGvzigsp@DBlCw3Q_U>RP8561mx(3NZmUkE$U zal6ooyp4|E6Za1x3(TY*3U2-J(T3EAZq-1v|A8LGMdVacIS+^dYtY2A(bslv)SJ+q zS%I#6HM+1?bX*&{vrpr?EY5!u1y`EIqsgwM+^`I7zXs`&YNLG-8gKxYHA#+X#(1{;ICweOU-TS`(dAz)KtU!0-x^N*@Qg4iUE4s2L!;R>(u^pXYSJaP3 zeGr}Cg)pDlIq`Bd&P*J6|8Jn+$`_zp+88d!ChE;m-;2abT~Yre>L<_%oIw)|#r=Gq zH0wp^QA|VQ&kSdma{kV6E)5Iu&bYB24Y(!hucLuF!-MFAk4C)@$(epc6AXo8*l+9k zXuKkH0o8al-c-i^S5jC-g9+Nht>J5EfPH9y?r86g_CECNPe=Vvn=oM(c>F5sMipISM z{lKk^`lPzdYL50N!gh4r7WCP86^*wq>_#Ve1nu|f zNIU1>Pr(G=qhF}s(2oB^d)~Cs0mW#)N;GgySR2kqck<0qd4gS z3T+g8dS65nccKXnhaaHh($ diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.po b/sphinx/locale/ko/LC_MESSAGES/sphinx.po index 5cb448316..60ca5be7b 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 1.1pre\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"POT-Creation-Date: 2013-04-02 10:33+0200\n" "PO-Revision-Date: 2011-06-09 21:25+0900\n" "Last-Translator: Channy Yun \n" "Language-Team: Korean\n" @@ -32,6 +32,10 @@ msgstr "%s 문서" msgid "see also %s" msgstr "%s 참조" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -838,3 +842,4 @@ msgstr "[그림: %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[그림]" + diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo index 567b9453ad3fd97d6f370bf3fbd7d208a980a902..01c7ed6378a106395d8cf464494760cd06301bc5 100644 GIT binary patch delta 2944 zcmYM$32aqG6oBDrp^Fp*OA8bzP!^#efl{SJ;Q@wSDrkc#WpTkRh~k21(dKDFfb60dZ}_^btWx2)G1{fJ+d8ATB5vF;!AQ6XWv#eG_fk_uV^pX3m*2b02J|N>wFK z<+ra7{512|o4=+k@BaT8n-@YyZpUFKoPl`HqhUWVJT0QX^M zJc`Vl3}?7-;#TB0WYB7dPIxI6qZ3>a+Y@O2>(K!7u^ZlxU2qjTZX@=?SJ3eX(D_fG z37^4k#1Fr6;lLbb?T$UL2uGp;W?)ZTh&`|t84}jV=bO;}DIAT5urIbJiz{&;8h9>R zxjS$q-h;h}A70?15O<-O9gZHuT<*Wa1fGlcLn#k2LOJH(M0EUgG~mtg`LpQ4wxA10 zq4OO^EA}NO4cNj(CH{fgIE7Iiuo8P=HCEsbk4KMTIz};xT{WunnqFd9ItgZeCbRiSa z{?pO<=Aac=fL3}bI)5#;!{ifOSdx{o!)kQk26W;^T!T&MzzR0l0133;jOdMM0yRi( zVG$PNqiEpg&_p()VU)PfFdMJN0Vef{!zM{OU52D}R0%S3c0 zdX{R?1aCp-zZ?C+dN@Ach}pjXFScETur1nz4osnm>_#Wp8=oIS10O-R1&e(DD`Uf5Xld?4SGWRQ*-CWadNgnYp5%4g9G};5q8zst zO|$`B=}Tz;{n1a+${a@z@z$NSoNzc%_j zQiSjtx~2P&H!qxu&(Gsv?s=GO3pj*c1{#CDev{F!)Y)jj#Ym3fapX5N@L|F`&_nhS z`ur?fu}m5b*aZjT0Q4Jl8X9;NmgDwf>Tl^z(_m?S!9jQd4cx0w`WtOH+HVqC(%ERD zb8#}>jxOMJ^bG7ox9|Y+;)Ks}4E~5#xTJ47;j$zbmU1R~=;om-UxX%5hd1EU=!D;* z37kW648P%2%zR5eI-!>wrlIvmPbS%rS#H1lDCN6T!_f*xR1(1?b+F@L~HDw4ya=oF$m+`@f8fwh7Tg)QA)# zyp5cva11@o7tl&{;()mFZs-b!qla+S1>V(ZbsZ=z@5z34GCffglxxX6Vi`a3@8 zczL=a1!%xN=*kD9hj0{H;smb2S?G#S#OG(x0Ig^x|BUT5i-=RAAe`|MR(U z1$Uw=dJMC19XdfhTA^)dLhqwnb`V|RQM5uo#pjtr(*5$#N)@2<4vXyx^w3WoLjBGB zCK}9W5qkd=W??<%U}JPE=5qfA`g{jknRjFRhiHWkqluk}?Ja19e~;~1oLINGsB~8P zP+UWU6INm_R-v!Qe6$kF(TVHOgjSV_AzB+C0YU-xpmdnd@Ow)-q@m5*}nWW)DLlO}a6nesC4K*aM zuq35bXh}InYBt6G$Xi!ZCNY&RSe7LS-jbBQU*7|bckkzU&U4QB{m$>4=WUs_X;yMR z)p1MUubKaR{@?55-T!|>vqI?3Z5d``722g1AHeC@6_-X=#pi3V7wzk?C+@)B*o^n# zQDojEv~l6YzapP-g)ckY#(OcFUQUpYwwI&*$DskHVjrA`J#Ym&t^td28#?{~I{!&D z;Wq3;{O}VO4!nVVu?w^3Vlf(^3j5)7ydM`KUBl}5d;{9Q2}j`}EW)ce0(+BpiVSBvqM;Vwq48TmRK*x_k1I~!gUqctR5nVtN zI^SWmV#hEs;CU{l;YI9>qZri<$6_AVVkIs>SFjz)CA^D{Z^m#>2%n=9w^DBtJcU;9 zXY7F2;{8qR$bI(|^>>1vsr1Bo=t}xWE71w2VSk*DTgLp62-vT=)eK!+fa^{ZVJ}m3&YVW1b$j&Gm?Hz1#|l`jW=ga+J?)p!)$nhdhG`bFqMhN1n( zpevt*R`_Xj-uak;3(-m>i(`kSXacLy3F~n!Zbkq*6)P!-W<249%zw9oUXecmaLwZpHRqyrTvzK=-gDIs%=z22HRQ z-HON2AF8?W`K#!HUcW2*|7L91j1GJoO{58(U{`$pDH^yH-HI>c{b{sf=VJS1bZc&- zhc%b%oo@&lxE%ex80o$5{|qiH&1`h#&!a0_j1F9h22SuSuUSKUUdKst+%h!L1YPNR zwErj3188NwK+b14hHgnadj7)ST$pJG(zZhiov^i%9o|B> zbT{&*g`@HLk66n6MKoTIeD>c!#q{>ID?>{&8VxuT$t^5EJ|W@Dgtw!ItQmd&9a^zJ z(SSE`AZF3YU(R7@;3YU5x1p8$s(|`inlm&E!gFZgjKcIUSq|E9C|c6dXrdEv5>7=I zun|22JJ2oMi@Z4DAdbfG(G_aSTt)|GbAo)(7Y$g5oVQSl z_8X79iQzdMf-lGWooIml=oTDDx1>G#2U@us@p*>uT1UXE6@295J1y0B-lfb$pXxbP6wBSi@BAm=9> zK~M8Jbig%q<#*5(=5Sy?ot;Y*>VEyT6>5W3QX@%b@y;!|h^+hhAB*Gw!e?Qo*$!$9gOYYq9r~P+b^J7`ww~+@;JH9S2pC4bb#SB z_*zt>m6(lAJQq!95xNCS(SfVcL>gMgWaW2jnVYjOBeSBoqM~YKWlO)@)7@LH4?2|b EA623SZU6uP diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.po b/sphinx/locale/lt/LC_MESSAGES/sphinx.po index 4c107fe1e..0724f3ddc 100644 --- a/sphinx/locale/lt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lt/LC_MESSAGES/sphinx.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 1.0pre/8b971dbc7d36\n" "Report-Msgid-Bugs-To: dalius@sandbox.lt\n" -"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"POT-Creation-Date: 2013-04-02 10:33+0200\n" "PO-Revision-Date: 2011-01-22 14:41+0100\n" "Last-Translator: Dalius Dobravolskas \n" "Language-Team: lt \n" @@ -32,6 +32,10 @@ msgstr "" msgid "see also %s" msgstr "" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -835,3 +839,4 @@ msgstr "[paveiksliukas: %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[paveiksliukas]" + diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo index 96f449dfc6352bc15ee4af05cb8d0f3d9b321734..1d573a122d507c517a2b2cae8c0ae1c94a2d7780 100644 GIT binary patch delta 2943 zcmYM#ZETKL7{Kv^zNpuhmQvNCs79t}YOEF6CNss%x{Rb@lSQ{hZ5bj)@@%s(CK@j- zvMiOL6O{?I#AF+t4`w9H#uh|oLE>fEVikMwVgG-hldO5#-+j(~pX*%bI_G|RWX_Ls z64&~qGz5MQ^E-&&1F5$D|EcI6LJyji*b}FtkIcoPI3F|cz34~regpQU|6|O;gP4tN z*c&e)aTDPd7Y6bPx zDed`~hxM4l{Go*lGir;T!LGC~;$*xQ+xe7**kJ^wV;SaP1v=rJcz+$bpawMYW;9+K zTB+~Q`L1JPCKq?PNW+PY>V{L$46ASg)}kwDLUIXv(EvvC(dLx2aZ7Bg0X1nX5o|gI`Rnz_+tf5U=f~+{q1OCT{+@b zG6&tFL1=l5KCE-c+iv?S-z%zi@$-bVvILSMfu-ckEY&j%mLCpLAS=uqWDr4m^w|atsY{Jl;QxPW%J9HCJQ%E?T+v z*q=(aZdEpVcuUcEQ_zY|#R0zmGh)Xgv@~_-3Rj{lTZ0bVj85E$r+Dp};{94qmd`Cm z@2^2ux-qs7MvtPEX+zFyIE4u_z7jj`p_!VtE6YUN1!!Vp&^>%2-k%xUHPIz#BJU!{ zCTv2tbPqaV8yfE-7URu4>Td$Qc*+tNperAZR56sJ_h%tv!U816unG;>h=Xx|>_3gX z+TjNJ)%+04F^iK}fYY!PUqctPGoSiflD%|1hArs8%jgQ)(S*7&i)N!G9*mQ5BpPTD z`uyAI{SVPYyBW){8Li9}G{M{Gf*&Qg@GxYM9+x2#ooEcch!fF(^=N<{Xa$<_8Eiuj zYer#mYqHRI!?2t)Qi7}@yu!DR6-%I%+=|YVILHO(D13oVbRl{L4SWOLihF3F6i$|b zhT?E6N8Zd(gYNB8bj#MDXJ}h&??x+i1U*A1lJ^tg0vAqv9Sv{?o%kPg;?Bd8nGVDe zw2P2ip$aGB5;UQG(J!%x_W9U;fKHe}r*Bany7EHw|4%64!je`Ziwtv-a}(Y{6Wfj^ zvz6c)o5kji2Wa+aqH0v?LfD(1=H~)x{xy?slTPXN(Xa>+wp-+ zW-~x8rr{8DU~#k*P2h1f&{MI$8eMS>`uZ(GE3pbqbUnJjCgjBlhl-y|uKasCT-i-@ zqC4p8cppt5YgDqtxoE&5G|)Kgs0emcq;*vH-rdq)SXsC5&BaSwC*&OJl0L3*Z0V%& S<6D2vt?iK(Z&VNerOSWy=n3Bd delta 2912 zcmYM#duWzb9Ki9TySz*1rMI~`ud{8rh04UKZH{?Cvc#r{8l_^HU}9uZ%*^sJ!8B)P zirPiGY19X4(7yXGG5sa_Nr5URaIZau42)b$AOt8C@N(ugBXMZ@^peZOp?a z?1LwexJkG`!@$2FzoDHEZ}8Lg$A_>lu0)^Ph()*yeZB>a ze;Q5r0_HP+_=$!OUdIB=A$lPep%YZ&0Ib9QxGavZL+{&(DWg(cVzN1ziI^S7L?xXQNjchFEsUBE?W;g-I<>TH51(8{%9 zcf1n&zhfr-f6?bN)70OTXdknqVFpuLxbx1azK-2@P+27JYCX@*7^_!w26&C)|fM_zAi-*U;*x$=;O|qxX+M zSAG{-;^}DIIhcX-(Ml|e*OMhQOyF@eU_EZa4d{buHrBv}=zXQJKQi{K&;%wUIfdys z7#E=lJdY-{0gdxIy5;X96-&Z?8kV93&Fnn-;CE=iHuSZ-5y#WKqfR&o-OJMG7&P!? zG|_43mdr%Is20TQ3A(WLowEO%SB6eJ68+w&wD0?0N5j(0MOXeXy0YcygR9Vq*WgKBw+-?7Oiq;dEkv&` zM_2lE?C*-cgI1;yIiKMGn(#499B8FsrdQCFb;N#(Wtdn2x`)N+^|7%(H98MX2?z(fFTY8GeN(aBU#_Z;4af?aK3zs)Zrw4dak|!!#tP@CX`k4GzI=al8q6 zrNbGtv_IlFyn#cpf)iPRv(N>-fL7$?!PI{gjqMEh;1}o$E}{wj6}^d;IGb7hO74RO zszdL85WW5cdT3W+C2m10a|})JEV|$}^enU|H24i2d^lkN>CVMrXuy?dfVF4^w%{~u zL=S5_x-~b@fIW*?IcFq|t3g@8-ZH?~568bH%{{uQ!QxOw9N^jV!#32D*x6 z_%~)^$?&fKj^*fzD$$BekK;?wz$?(oJcDjw1Ez2fx{&>71&$)2!>Qra-y8m9zyKYX zjop~t@tkO1^xt!TG*EFIuS8c|gT8imqYIdiCb|q=V1m3L;Z=0yP3Xdomrd-N=rjYq zhUd@(+R+kspaC<>y8@-Lvm$6h<;_(+`}Am@)$d?NYIM=)(bZ$eH>V1h<~G-tUds3n D#jpV` diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.po b/sphinx/locale/lv/LC_MESSAGES/sphinx.po index 312bc5521..e9054d08c 100644 --- a/sphinx/locale/lv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lv/LC_MESSAGES/sphinx.po @@ -5,7 +5,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 1.0.7\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"POT-Creation-Date: 2013-04-02 10:33+0200\n" "PO-Revision-Date: 2011-05-10 16:40+0200\n" "Last-Translator: alexander smishlajev \n" "Language-Team: lv \n" @@ -31,6 +31,10 @@ msgstr "" msgid "see also %s" msgstr "" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -832,3 +836,4 @@ msgstr "[attēls: %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[attēls]" + diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo index b57c9f9e0b252694931311e5839fa6264528ea2b..654bb81ddc1a99d5580826d6767270998701ce91 100644 GIT binary patch delta 2945 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 diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index c6797517b..66af0d104 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"POT-Creation-Date: 2013-04-02 10:33+0200\n" "PO-Revision-Date: 2011-09-21 10:14+0200\n" "Last-Translator: Espen Høgbakk \n" "Language-Team: \n" @@ -31,6 +31,10 @@ msgstr "se %s" msgid "see also %s" msgstr "se også %s" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -828,3 +832,4 @@ msgstr "[bilde: %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[bilde]" + diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo index f7423d18ed157da95f84bf9cf114cecf9b674a5c..d5143055af8c1a2dca5a87d0673ca56441430098 100644 GIT binary patch delta 2944 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 O6g=0xsd4zsoc{osN)bW; diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.po b/sphinx/locale/ne/LC_MESSAGES/sphinx.po index 2add529a5..66d137227 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ne/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 1.1pre/47a94f723e80+\n" "Report-Msgid-Bugs-To: sharma.arati11@gmail.com\n" -"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"POT-Creation-Date: 2013-04-02 10:33+0200\n" "PO-Revision-Date: 2011-09-21 10:13+0200\n" "Last-Translator: Tika Karki \n" "Language-Team: ne_NP \n" @@ -32,6 +32,10 @@ msgstr "%s हेर्नुहोस्" msgid "see also %s" msgstr "%s पनि हेर्नुहोस् " +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -830,3 +834,4 @@ msgstr "[चित्र: %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[चित्र]" + diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo index a16f99904e31740d35a4e23a6ba4c3e59282de9c..a8f5b83c860fc4c5f93579e220921b9f5c04cd79 100644 GIT binary patch delta 2815 zcmYM!4QSRy9Ki9@y*XW`)1|hY(@o7XTP~HRnUgR#mup8!MSG*a!V>w=p z)yTX_m`%ZnYmrY_#+Mylz|Po!PVjDQZ$_$F&|H1 z9$rQ>){RwmAb#jgVKfe~0Ut#Agn5{SOVNRKXrT4z4i2IVZbQdiLNk$0`V5edRoEXh zu@*V4@FcpR<(Q11u#ti*{sx&Ne1}eO7DGFBj81%!s4lDv`7|R1*dB+*`Y=qVUV)CE zfX+J=-N1d(h3NQ|UCDo63L9uJ*2ied55@WkG^J-^`$cpInYpPm?TXfm(7;2`1(u>2 zDMtfWqWxx~m;4blb1QPm|5yr*G`ON4(G2{9#h6W_3mSr^a3p#pW6_0Gq7zl48(Dw` zcp2^2jE>uh-u^x4xFcwswuHhc3g^%>8B8zFc09U+Y3P7i=!El-B!oq1idUck>M;#p zMKjTW_TPlg*Muu^7utUuX>s19ih>=dMej!g&q4Zz$FVm)iw1lfUBEVUf=|#h-j8PL zFq(ljbRn0~aqYQ4&XNNMD+JyN~|wH zGqMETaUHs$7tsa0j&5`#uI8<3!W`fKQOx4XD$pHQqdUA8ohU&EJ{O*vvoW%A|1`e6Z%KBw2fm3OaT|K+&SNpAbHiCc5(cFTVHg^y zJk~4F9Zg2YgvXF$4E1QgZRi<(fG(^RUC3cHlP7T$ohtU4>(M!1$UGQ=&B7Rs; z!IZY5ss9{J*)ep&bLa$rqZvu-pSlYL=(r+u+)e0Z9)kv&f-Ybty0Mz*BFvy(hlvxc zq+ozG$R}*%D+5167qCBiBzg>;_%*Eo*4u VEhS~8r7ahF%H0|QRM69%|Em}gM7MPG`7r~5@qW|9=Xnf!IJMVeVInO!IIq$1oGxpC& z&J?6K2mW^R9m2OR!>j-Q-s%%V4wri|7Z0LMj$tW&iM{bs^lH4HksU%m>a#H)i?KhZ z@H(tQ#!W&E1qWV)e8LibY_J0R;s$hp)>yv}ZGQ+2Z~_P7515C4qW!WMy#xoL{VR}L z;Xbro4GtoHSWLlz61)MMa4_yeKH*b-yx)b_<4-sidoqh+9FJpg9vWaHnxPgPjoYvg zzrq3d3!1SsW|>9&kV~Nw2U>v-B5gt~_QD3V<5D!xI&=jep%d;z`~8e&;xZZ_n>5bA z0ho!4klhLO=!BlZWE_P}6rAyKq;Kdz2RMVF2P;MgK2KC9W{BXSf0!``ZSbrW}!4>2adK7eD_d^30p%Wa2 zW+a6Mo`Ck7g&y+xXy%p|kpH_VG*RJY! zum%mh4jpGRuEXtU``bx}k&Y}G-pyORepQ_#*B(qk*191FXkk*b?gx zp#eJM^(i!CzoHZC!$lDmqvKVgaTXxwJ=7PHe)+4-BRN@Ss0>GA z1#&Aqfd*QGZcPiCu{W>^_r&W;%cKw+RyBi9JlK=4(%BV0U4aoL{6==g|G*BzL zB_H5SJQDBcvpnkuqX9~BB2Gg0emR=C6==Jcu?J`1Rb+^;HDS3ncn@94$LK5dJM?im zjSh4LeS=*^Gm%-+{btKSvK>m%{*&=0oP#tCjp&(ZLC4#PX7n&xpPZoJ%)Uhr*I9JW zub_`n7Oyo2&O_UcKpy3A2Rfm9(3Q+WGw>u%!I#iIK8BvLQ#c$iq7%sHq+=3>QZUdh z-4!8)u4ppSHq1q~Ei|I-wxC<{Iy$j8(TTL9nfwGN;Wy}37I0!+`6#siG<2c&W3JDC zEd^)PfDXJI(=b6htVUC{9z7#l(O2qjwEY;CW&eq2`+L#$51@x}0XosgkS?JS&E#w7 zzdvCY1yj|I4%mSXa1zbLSxm=&(T-^&x>t~kp5hWT&^UAgQ_;t)I$DDnT-Txf>(TL- zV!}79;wJ-lq7&E~-5+g72R?!Z`V2iIU&s6BV*N#Q3;u}p=_9-MJ{zqsM9<2oSYJJo z|Mz54F_#J-vxVsObI}*j8L!1_Z#*;;J7WEwwh#Lp=-sxge^XkoR7ol|p?q9h-r&cx K+g1*%N&642>GWR! diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index 659d4dffb..9a4885b38 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 0.5\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"POT-Creation-Date: 2013-04-02 10:33+0200\n" "PO-Revision-Date: 2011-01-22 14:41+0100\n" "Last-Translator: Marijn van der Zee \n" "Language-Team: nl \n" @@ -31,6 +31,10 @@ msgstr "zie %s" msgid "see also %s" msgstr "zie %s" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -579,7 +583,7 @@ msgid "Welcome! This is" msgstr "" #: sphinx/themes/basic/defindex.html:16 -#, fuzzy, python-format +#, fuzzy msgid "the documentation for" msgstr "documentatie" @@ -838,3 +842,4 @@ msgstr "[afbeelding: %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[afbeelding]" + diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo index 88cf3ed190db66613706d3bba6730e14223e2444..b72d467e8f4528736eac263f6dd396164c215f58 100644 GIT binary patch delta 2911 zcmYM!ZD^KN7{KwPo0~dI=QdyWYHRAy(rLQX&9qWMhfYniKBQtv=8{~RrTIjfMolzl zXqo9MuooxE#Io#zwZt%%vXVh0E!2!GLLCMv_5W`N8qc2JeV_ZBb6w{;=YFow+F6-6 z*E{+3z~9IGXY>D77w`W6%T5cS2e&zR3l^hYN^uaDV>etBeIh{En1Fq77WTrW=(shQkDJl)@1yg7 zh9-Oh`w%~z=E8x$Vqg3l`(rPn7@!yjU^(`~1xS~$GCohB{cCXy)?*%?$I+NfHU_>M zt=#=M0;l6Z;)iuyWZ^C}vxCu3u`BmqVmY3Q_uVN2bB7E}#R7EvP&DAg`21;fVK1T! zs72>Hh*sD1o|I`!_DI1OD%dUP;4K^YccC6Z&PMz>%?yx)eFcwcNkfG*%D z5-T*u`?F}^Ry4tjy{W$?xkiJ5Z^n)pMD=aRMN2mxC*wTi6W-v<3e;mE9*ga*Xku+> zB|CHE-J))2g6ZgdIp~5)6I>YRA++N&=s?@~giU-oa5oxoKTg0S=+<0CtKXCCT}VFK ze<(WNU1$Z$&`Qrl=U;$Hm{`b#C0PuTD zxEFKqK{W7cG?5q3@!OHJln8HgVaeV@D{%--s0kg|j86Cy`ubgo?P_#Wp7oXRofe)iw@tMQ!MzO(%QjD?lq*g#CU0hjZadr=lyVL_0o$23ms0c)hBSa}|m?K?W{I`&FPT zn~nBg63Vlz5!3z|qBa?ZmcOgK>^7p|}w-J74$*XJ_&{CYHn<+#EuG|?h-+-P)* zCLy~M=0&T}@f$H8YtiwC(KufZjPL&$8XWjz>~IB%8Im{<{mGttUCoJ0M6u!x4+a1T1sadb<*j~&mUXW~5C|8jgj zB)4OQC1}MaAumdpfg^D-n&1v}-a2%lhtc^?CAjd1pcxI=hV$`XbijPlH{)gKidW-A z+=?Ee@6ghpMfd)9Eat3SL#7CMOx}K0&`MUIqLpbtOMNnW8r_l>9N_zZfeQmT+LaDMOEfV$1)Z=0 z9rzd;xEf7lGjbe4BU+(f(6^%vU2)Rw9SLNj5VH6i0p7EHBQ+$Ba(E)SN zi58+i#ZRFXyAkcme%L=VnvFg$M1Fh12y}td;`3$bPw`4jnDIs~y5LSU;2!kwe26CW z4VrNiy5}wEVfqt2bX^B`B#@5I*B?!I7^Ywux<&V)^Up>)ToBf`%UhV5+D3ixGw2G DWiJF> delta 2880 zcmYM!duWzb9Ki8on_JVl=DcomI+xpCTWzj3hxbcSIW(JOLZU=o5?ri{rnto$j`CL2 zATeI5Hg?7Pf039Wg)*h%aCCewny>Z~$t<>8Ibf6VH ziMQdm@%{p)a{v2q>TiInG#K~>x{^UT1CBuh+=CNw9x}(U3f+Pi;{D5LiQkOvt>^;U zkdWa>yg!X5?nWp0T@LlPB)`yL;w!OZ3R!&{ve43%;e31$`Gg&OS%LjH3EN|PH#)Ij z(MtY_Zqapgf`fPkj5iEjP$J2NiE7b~Poo1HkWYA#F9+^I6Yjy8cnIB^pV8{yLKl+F zD(s(&uDlqna19!F9;V>KXeE*hV~09)0?W~Wt8gc7KnLDJ1E;aU_RERpp^1x-IfODS zz`1DRmFPs)q2srpTm33hsbqMK3oEb}olz$`unP_NCHmT3jO~A+32&l%n8rJ+BhkP` z=mZn!R!l*EsAk3IPofK2+b{e7Ol;VI4s1jx(u@Y!9-r?<6StyU@ov07f>!K{*nSq> znjZA9UPt3)unH4rp}!ZSFvIu1f(utL4ej_4nrI;&tr3 zis)Lj5)J6Mjp#&nAm=;mMdP$%(iL`b;oh7!%xva&=uZ9Cz{3b95)W#qRGf^ zgxS%hXo7ky#71;{E1Ks6bc;XFXa5~|Dt5StV3r(KGQiI^cYKo;`kG zg?VVjCL=FMsKQFDMJL#V#@&G~v=xolfxiD;NiIy-gUj$Ybif>@?~IqAD_)6na1(ln zK0`}?9NqhKco%2o5)vY$6TSbepp~pf$1RTckE8LE&&CH$(Png}JCUk|gXn~gV+nSn zEBy!E(=1M)hid{FumVjy16^1x+V3&6-x_oaHX{9#p^*zaZbSFJCEm9qIYKA8MHg@; z_MvBD8jS{Agp+UuTB)sQW%i+^{y2IR-I5b%o^Nm>`9m)ku5<`dEKzB+91U2F4txYn zyd0fK19BWfJ6fTy(6^%pUGZgfTpzl?jN*X_jX=*#KBkgCl*9*R=z#ms0CUlw;5xLl zm!iGs%C1HGVtXq4!*5NlI?8H=TLudRUy4Oe1 zLv$8BY`tjUt7yRM=!7#%2P#;AZp|cgK~+c*!aOwbS~O36DfLg|;yD_0Gp1t_?YIps z`RnNOgXjbfqX|BV?I+QGXVAlU37J#49NTje0|`seIA!RT-<#ldaW59r;0m6=6kLz# k*wB$Xbli}RS)<-aNv|xdtejq5({XO>{LGGm;w>rv0k`D(ivR!s diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index b87fa5a29..027b84c56 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 0.5\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"POT-Creation-Date: 2013-04-02 10:33+0200\n" "PO-Revision-Date: 2011-09-21 10:14+0200\n" "Last-Translator: Michał Kandulski \n" "Language-Team: \n" @@ -32,6 +32,10 @@ msgstr "zobacz %s" msgid "see also %s" msgstr "zobacz także %s" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -834,3 +838,4 @@ msgstr "[obraz: %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[obraz]" + diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index 0a4aa4c54a761af6389bf1df5e669fc3d1cf3eb9..e6088ccdd3578cbe64676e3192843ae3c01395a6 100644 GIT binary patch delta 2895 zcmYM!drX&A7{Kup2ngYgKmjjc-dJkk4VzMPVmWoWUr{qZ~+pgp#Cp$TL#`v%O#!8id2Vi`JbITqqW==|--)KHHmdJLWS z1`cHX@F5RFX!r{A@HcdUR94H!e9XmZNLMIF`&XjltFQ!XumDfvRQv&5IESpP*hnnK zaX1w3#vIlUkMm$=wbA|9m-iR(c6=?q|ANE}S1=8)VGgEHHWwU<_Af>&av!>ZDl}d# zy7PVLddD%bkcYQ92Hr`%P2ezEp$1IC z590er*oXJ;(D@ezQGWwpqQRY9jwWaI2FSyav`<8G42#esxIezHLrc6Rw(mqYP=|yH zN8!82$@TC=FX3!jezub^K+7h1X@Y-2V~MtAfCzpOwFj>ZGAy#-C|99qeX z=n?&lCU_Z**NJW@n@_@ZN)kLca2YyrCGrzi@ym&u&;_?)Degs&<_om?zoI+oM#rbH z8{-W^E0BkldOR9`8YW{YT9L%8IN%O+;vzKg3arISbmE`r0$u31R1RGGqX`T~atH-D z9H*iSFGUlnKING^69_#6~pWDfILEJhop#7yJV~%dTi&zF`9o zMiU!`9?59*57ngDzZ~7rJw0;%55|T{bYc~n$R;$vme^l|F1!all7sR6b+lq{#r8Ak z5uHOX?PWCHHFV)5cH`fTbWHdAAH{<^nTQUYi7qq?8~MEEp^0=d%Mzw?liX<*y0ct# z{LJW_*uM}>Y#DOz!oz4nPoeR4V#0;%crfrw=!8ae;A!;iTI2hV==iH>K(|TtLpC~Y zJlcO7n%Dy5LkjEB1-GJ~=WgUD930B|JMo>^a27}K-iDri5*NewAxQN?3A#Wz+FyZw zP8+ZU_hA8kiZieS-Pjmzq!pWl{zaXRbcH8}Q-61`j|K-GM=#&I=v_FCW%w~#;!LvP z0|+^2|9Eu%6ucGZqdVS)CR~p$^d=hjv-tjXe7~CDVLlz*=;fG8`Yu$CmS_dui5tCp97F>jMKeByp7A$$ z6Lz2hb2wOcSR5^j-i5|li&k<&Y_CQW-GeTC6pi~Tawig@nTJ9e&Y~0BaSZ;2tQqo0 z@daQhI&lXY@DPs16Uga=*4X|#n#e!VGzNK@2cR1$K;zE9VXPl2cyPjI^o+Km19xFh zrsx?rV=10P1N0}$o=Tv%yDYjGjdw3Pe|2o%jD2|D5#5D7-~S#SJc~n^g0G-EJb|_N z9=gEXvAq>qjxO*3dRHpZ9d1Aq-HL^HAoia^-&O|2^p#5Xf9o-V&XQ4+i4^5~7DOz|8tw=q(a09x5CiKp<6!A^C@b@%Wi8izX xf5(AcO`REiGt!oAesopUx{W7uUPw-xTsWzC#*`^dFXtZ3{I8>F&X^;~{{oa$2DShI delta 2864 zcmYM!e`u9e7{KwP`*C%f`C~1&+}xU*t}JS)Q`S(^C7Pwq$Pz=dTqR~GmQJNEnnr4x zOiGk3aRfvMQOQ87sYzy3!|bOv19W z#?@%NMkHP`?4ZFX?B>f32k<&Pf(G~|-tRyYxP-abgD5v(A@;#x=(t)e!3WUs&mu#@ zOK75v=(r~A!~7vdqdzx3#R5EuPH+)##4Kjb$8zLW7>z!kjP{>{Rk$3BaW4+Xqv*sL zWM#$r;vLu@2jE1^WBxFYhMBF1uE8E$Z^F^IHC`V_VusV0z+W*BFQ5}TrgQxnI{u5k)Zf5gbHkOKivEQL=-DrXo3IGUDU3n4U~0U61TFE? z@qPokfVD`7usL40pcCWoVZhw%g{Q$xB=aYRq=W= zTCr{M{@du*96%52F*M$f=)@i9@5LYJLbF+2FW>(>8g?9nPE>(=c&#eYM80Q~B|ML= z!~5I;xvz9U{=MXD7B za#Eb23VmLSzD6^#3Rhw=?!#(qLl@SI6KO>X&|lJGyl%&PxqmiE!^3eq={r#s zvgj}dC*UmfY_y<(-$J+Q5Dw>z97R4MgK~6j0kSJ$7&SLD^3Ur~#RWuB| z4$XKcy2l^kE!c(zyn?PUpAFWb(a~t2I<%5A^DIKQU&A0}AJ^@|f)ac`w;CdN)_>ySi8\n" "Language-Team: pt_BR \n" @@ -32,6 +32,10 @@ msgstr "veja %s" msgid "see also %s" msgstr "veja também %s" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -575,7 +579,7 @@ msgid "Welcome! This is" msgstr "" #: sphinx/themes/basic/defindex.html:16 -#, fuzzy, python-format +#, fuzzy msgid "the documentation for" msgstr "documentação" @@ -834,3 +838,4 @@ msgstr "[imagem: %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[imagem]" + diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo index 5174a99c9d689bac769fe320db116c81e1b4bd3c..b9dab23ced8458aaa4cd9a90d6a37ca405a54ba6 100644 GIT binary patch delta 2767 zcmYM!ZD^KN7{Kx4%iMf?+vdwmx4F5jwbX6uoaAe*5Gu2nla+{8SSC&bKjbRC#q2}F zz{;`A&|YSa47Hg`;7V~q8ituPOMFTCU?2-if^1O#f6t-Dv*<eV=ok>s;r)pTmo~ z7A2Q*`!)yucJrUl|AGvA|Nm`Hg)orr>*%d_a4f!u{qcD8biCh%L%DttbMOWZ!#)E- z7=k0wc%?Wfgd|ka;1g>2a=?5Xj7!h}tK#(y$b_&3U0?@}z;?{Wljyu3u?T-b=cibW zX2?eqE=9*r!aUXwH8c#k2uI;+9EnZHCw$14_xIy%*ojl|5{|*)WaR=?Xoc>@3Y?3h zaV-wVt!M%tV-|jfvsgcL#0x#hCuFdVOdN_%9F0@363zS>G|?B(KyRXfx8pqAh5hh% zr263&nn(uat;S+B(Z@02URXlI0IM+cB4f0)jjU!uTkzkKV{iKHv40Tz(m#pL{{{_w z9!>mG^d>q##d#ECA-dF@9O_RM!=v%SVzl3YX8t1b39rU}3%cM3Xkxq33LHci`~sbK z4tI0I*)NAMC-jL?E6-j>jC!l!7!4kX!d0xfA5y1-A^2d|+OxQ>p$fd>2& zn=nNdj&DZezKf1)i~aqve*{e+>7>CYoaU&q9x6ZtO3_Y~TMS@y7G$871h`xg8C-2VHnS`u-n|{cq9AoJV*5GrF^G zbY2g3@HX|zOK;>$%Hc+@q8q!0S-$@Rh-!wz&;bR=afT8kMyN(U;Ss(lMp%w_;(9dE zkI;n=p&RH#=U+kA4mZ)G9LSUG_(HrLCt@;@MlB5kZ$wM z2k*ulR(0G=G+rH+;U;w6J|u^53@h;hK8SGHGTn^9@PeV)lbaWlMKnq%_R&?G$bR!qg4gVGUNj7&~xB@G1 zI-1Z*EXM>V;68i|FQN}u`5oyJ)}RS2Ljxyh0$b6ecprI8LI+y%^T;WNTgW;|$YZ-E zP==GRD)yJ76V~7iY>xNOqJc9?(@%3T+ONb+oQEb-hn!+qf&K6`be%1jh1=2RFSOFI zRL8Ih&!QPGzAK&STJ)E!84bJ_9e*6%`8o70=*Iatsx18$tw7JX5v^bgrtkz>p))v} z^}|IPeX)Qj{c$X^$uJ%bynrtk-hjTI&FK5y8f{09>?m4^@6ZK)#W~o688~x%dgnE0 zMIOe)fweSrDH^B&&3r?=z60Iy9yEa?XhL7357m`;-EB^$KLq`usX;eZivzJ9Irgv& zOhGjRVdcXiQD%pIO`3@YL#+YYu!ebZei?Nkx?v_e`FAU~XP_ M_J4P#l)jSj4<~yETmS$7 delta 2740 zcmYM!ZD^KN7{Kx4+@^cc<}^1;-E_^&cbmE(Uxp;%Y|Nm-kaQo)rB0AS0(0H72I7>p z9HxXVHCIG4hBHDzU6^Q6Q$h?wBGV5gmZ2?ml=c7n97rCY-+k`qoa?&Ib?$rLFa2U^ z@?(Db_Q1c7_&<{WPh~jz|KEn}5ONvTqdzs_SZu*8?1~2n}e0W*m-tF%J)+>rP`aUO?CPA)k=T zE-bhZoj(=}$REnMFyJD50GDGSu17whl`ntajU(_N&cYrn!VIc1K`Gjy={OC`@j-kU z@5e^8fcJ19?!&p{5BuYdYse?`@-+bavmF=a;0zptR{k7XXe}D(O*HTptitV>iIH^5W4;-8u%1i zcu({Sy1oy`;9$%KxC z<}+xguHk$fke@1~65aT+eEM&~HQcae>(SP4M9*|H8eltGc_$k9J9OT4blolVDZh)Z z8_IS~P=vE_3VH;qktT#qXyH2(E?lq&DKhLwTX_r({5AH+v*^yxp@}b`fi7Va-azNq zQ-$#w(RnR#yfcpXp@}G!O06aI^y@Xh9X|x&_FR zP>sGlFUI@zXu?hCk+nqIkhn?c;KE7|pa~A6e_&3gCWNc#&i;trirz)nW$>h0$RKom zK03b$O*{@gim7ot7wz1W_wIB4OStfCYSE|iEi_;&8fYi_-hU9shtSS+qdWfw-Pw6` z-4#5-Tl6csk&kJI9XySW&!UChRNw!<uCDVZ($ENYVa7EpqTQka57)> zu?p8<3;O$AoQ65Ysqt+5i!)z{&vL(lsy(WAaTXp$*Y%?L(x}=(ixV!gxhO*y%til3 zufUnuhNXBe+K0Bdn1i&ni=r=~2@r$l@d)kcU(Rmi^uo_*o_~=7l911~ALYg< zw4%l6f~7bc>*Mc-(ZIi9>x5Z&=X^y%-xYV1Sbp2`WSvwa@z+-qn7?PzB@aULGQbo>Xi z$RE;(#->6p8h8d@CaysPuS4JS#^^S*g}c#?bfF2(Up3>-Bnweu3RBa_g1Wzh;u z3{=I1Pi0N~;SF@hThIb_p#^=4K1|*5{!duO_&RzdC2ZTBm0>PEh8%NPfEG}PIru6X wH<=8cb#t81*|j-)MpoB}p{@N}8wxV}m3J*K_&qP}Y+LI)qla~^9$%O7A5g>vqyPW_ diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index 136646bd6..78e1b8804 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"POT-Creation-Date: 2013-04-02 10:33+0200\n" "PO-Revision-Date: 2013-04-01 11:58+0200\n" "Last-Translator: FULL NAME \n" "Language-Team: ru \n" @@ -33,6 +33,10 @@ msgstr "" msgid "see also %s" msgstr "" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, fuzzy, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -841,3 +845,4 @@ msgstr "[рисунок: %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[рисунок]" + diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo index 8de655f63cb0327bf8f6f18d5a92a3b5a2c0a931..9d124be3c63559364c77a14f524cd88830dbb215 100644 GIT binary patch delta 2752 zcmYM#eQ1?c9KiA8cIU3M@@3AsIrX~SAY-(7#YA+mg+}?Z(8MC97}*~>F|e$#d4-T_ zs7YdMptcx=VlT3ZluDW*D^@PDX*9JWsp+6lDsA;g-|u!Pd3-+SoaZ^`{Lb&3=kC_R z=0%yyV-tG<|K8z$3I7-6So{Cqi+Lg3Mzs-d$0qcZW-P`1I08S3cE#sCm`{5zj=|q> z91a^9!YCY%jGGDN6dX8>T%m@WFD%A8upS+tA+~Qp-`|N&uouVUVH}N}XuoeUg}V ziSuzHZo&e59Sz_BCYe99Q>ez{HsAnqg>06Qi(}A^MK}}hL09@D8tAiVzg_6SEw~ul za5!E^vL9}tfn<~3dvOY8jC2JBo`rgJfCdc1h!{=nbIfKyJ8>}Om__|?tao67dMDcd z3v}G`Xy6y4H_-k`_G2oRj3NKdRZRm~3`@}Z0R77NA>1@h=v^6$zUXqbkZ(Lh?!)V+sp!4Y(CPoM*RhOXczbb=g~ z<$I-Qzv<{{uR{ARK<8PCb8$7g75g(3$VxbduAmF;@C`cP4@l6V4^8a=IzfWbvvDMv ziBahLpzoOl-{atjvqsZ1}!pWgR_!1qs7me^obb_ns56z$Pc@Zbl6-|kj zM=Q{NGtofiqWx>)^CjrS%h9b^Iap`^*HbWMo8p6)(Y<*CJ&f(>fTz)kJJIj|EV|M@ z^bp=a-}A@h3SUnS8o)J{@AI4JSCd0$7nH=o@BeNKG|WUZFb~=0a6fXs!U|;ZVJ#Z@ zR&?OkqI=QPeh^*A5j5~KvEGCB`x))`2fD>soaBsqm!jZA^UxO`#uToK?OV~k-;J*L zP4rA0L^E|94fq01#(v}qc|3IGW$5^6EW-sj3mYb~|NeBg(clE1q8aGMO6)<{aSlF&2CywYZ$ZavL;HPzRd@!?&`orq$w}W8u5Pe}a`U|%X zSzOqGwRi|k^{>c*4_Ul44U5ovHM%v+qxER!)}Uvi5xGJ$H+CTtj#2Qlx`0l68BJ9m z+A)i7#UGGjoQrAn`P1l%o6vqOvEGIT(2i#ESZqIq&eM(la-PQo^M~&!IKcO4Dz9P_ z4xk;j-8r;1+tGoWF%MhO%pF3v<_HpV_&m1vqnY|0&1{l1Io@RSGc3ar<_|L{B(M$* zXpiEhP)*#0VVg=TJkJs)EN&!T~!L%)jNSRW|kHGfF52s0bU tm3OSodul}PvKQ7rv7upOM|XZ>cJ7Q+Rpp#?x?@@410(-?(o(uA`(I;d`F;QZ delta 2720 zcmYM#eP~uy9Ki82x2c=Xm)W%3(#OrmXp!?N-D2nhsZ4A{Y815mCuWATppZr@uSQb2 z5Je@EnnMfAm);)IaEXy7i7U)S(ICa;A7f-KE%cAfzTamD8rSIJoj48;q3yoG6#j&^ zzlvO;nAsTcL>w0qKB6#*2N|@(g*X`>#~ZN~xx!{{zVE=B@KdbCZk&qwMCAZgXohNV z7S6$PT#jY9sMCLT=3m1rQF(A2$yF2TF#+U`d?`W&4>4?4i# z=y#<|&vuj1-98O%SBs7_ALrsj=u&JJ19rj^cFNjx1%$! zM+12Tb9)EvZ#jB;+T!!A=ztyQlI#`k&bL}xT2Iwo3% zwyQt`nU1!tFa#MKm%A6->*aaYe(C?i5WbAX6PI`(Lr;+82kq!*G_ZdB5-*{d$Z~VQGid+6qI=*PI&*LCnN&i-h|_4t88q^`Xd`-@ zoI zq=aFdnYmbwzJC;*!Lw+)b+O)#W^hNWcVh0?qQ962(Uc!X+a1N+`9Dcv0}p!92F+DN zOVWbQs1;4=S~O+t=#p$jVhkU|=cmvN{eWh)AMNj7^!OE$E@xhf22z7X35D4d?63iy z@e*{P7Bqm>=y7@}+K$fjEp!j;LGJSmCN$~1Ky4I%m4rY diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index 8825c95f2..c4ddd610c 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 0.5\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"POT-Creation-Date: 2013-04-02 10:33+0200\n" "PO-Revision-Date: 2011-11-26 14:00+0100\n" "Last-Translator: Jozef Sevcik \n" "Language-Team: Jozef Sevcik \n" @@ -33,6 +33,10 @@ msgstr "viz %s" msgid "see also %s" msgstr "viz tiež %s" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -582,7 +586,7 @@ msgid "Welcome! This is" msgstr "" #: sphinx/themes/basic/defindex.html:16 -#, fuzzy, python-format +#, fuzzy msgid "the documentation for" msgstr "dokumentácia" @@ -840,3 +844,4 @@ msgstr "[obrázok: %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[obrázok]" + diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo index d39870249053bbfb6f190712b570687b2ec626bd..3dcfe79901a7ac55cfd25589f6de9c8656b985c2 100644 GIT binary patch delta 2798 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 diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index 3ba898964..181ac8ae4 100644 --- a/sphinx/locale/sl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sl/LC_MESSAGES/sphinx.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"POT-Creation-Date: 2013-04-02 10:33+0200\n" "PO-Revision-Date: 2011-09-21 10:14+0200\n" "Last-Translator: Luka Marinko \n" "Language-Team: Rok Garbas \n" @@ -31,6 +31,10 @@ msgstr "" msgid "see also %s" msgstr "" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -839,3 +843,4 @@ msgstr "[slika: %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[slika]" + diff --git a/sphinx/locale/sphinx.pot b/sphinx/locale/sphinx.pot index b8126ac71..f8ebb3a32 100644 --- a/sphinx/locale/sphinx.pot +++ b/sphinx/locale/sphinx.pot @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 1.2b1\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"POT-Creation-Date: 2013-04-02 10:33+0200\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" @@ -32,6 +32,10 @@ msgstr "" msgid "see also %s" msgstr "" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo index b92b2affd760ac3f4a3aba4cee8d965e77ac5ea4..932c40932b79fc314f9170436b895511a3cad8e8 100644 GIT binary patch delta 2932 zcmYM!4QQ2B7{KwPn_AB4++5DN+STctIOj^8wWdz9G|lj<57aQ!L@|j>%UO2Qv{FdO zwi0DgQv?H@Iq)OHgvvBXh9Q|?jfSOBDArN~v;TkhK;!QI&U@bXobx=-Iq$tbb?c+a zAG6cz0)Ly)PG0^0SDFz*H!g>ww<@teR^#osAi6Bxe+hHwUxPjI9qffWum>JO z=R1L!Atb{Y8hk=4Up{adyW=f%g6=$Re*zg0%FzYJ;2k&vvv3JIZZ#%wBRc+LbpFrK zfKQ;~PGc79hf6ei)A0}X!E9D>fl|!JYRtnq$RlAzyuTKGz78v}5exAb9D$vQ#)a=k zD>o6#aVqx3S236M!!{a5wlDfA-p2KpI0nCs*WD-sbBA2)f<>5%L(m1s#rrR!60U956%2Ax?VFTr_wk_qcfH;sw)mdBdo+x_&A!uW+awSi%zfuLx&LdpcC(<-Uj#; zTEXwIBmNq%f5UXH|3$~AWmA7A&dg3_k`o<_PB0ex;Y=jPuoB&Z4e@#lTH=P-zZXs5 z2(m^v9aAC?fd^Q4NEf(&3rDJ*&=k{3UuKbT*m9R4h`T6v$&VH z&Xk~scp#FntT&2T3Dd6ZjQ3YD^NoWSs(Sh^u zAzT{o??=vMID(#?(`W$auoC}76DzwbRlx_)fM%eHFHh1Snea;N*ou?6Zb0|`5A@Jn zMJsXx&8#Q0xc8IL$~=MwJP$YGVr)+gEpJl2frbmUpb=k) zUPcGrKugmZKF}8~bac_0e5uz>U}mkD-YjM=RHi!|?n->hA-Y#i@*P(ChqY z0?n*A-Y-J~7#Xi8pn*+6e{g1@3oJwr+w*9GZ=kPtE&AMEG_j+_)v3l8bao6h%6D_MH6mA z=N-jN;)ky84; zHKUauK;yMzqKb5W_&geLFV4djbZahPU-!x0O0v-R z^U%s~KwCTqU3VcS;Zn2{)$w_vh6@u|i7vPX>v0o0aR3|Z!b8yaMn?0|z{N-|VH%FX z3N-L4G?6-V{uAg{KZAB^7t(=5c$Et?YC|U;K^OcC{p`Mr9o&9bKTl?}ZQ=(7;XTR=gGO52GFXG>)G{ zx8@vrSg)Y#rBQ`}Gts{nqvCxTruqHP=EBM=(Tb|kiFcuaYjGW)Ssj|d8CG#GFQOH8 zqw~`_VVa9}WE^t-!Xz}&dGWpqO|TXdR=S=G18+e;pXcHW4cJ#P_I*xq{5U%A4D#WG z3&?Q^z43WEZE(E;9FJ4cfGg1TSD}eMkjMVJ*Bj#t^+?x3WAuGAzzJmS&=tpf(F8I% zK_)f^X-=4qGjRzPVge`OKJ*YCM?3QsPR7oB`tP13b97y(0Bw0GTEQH2;$mEcHSu{P zat_0O^z3|sCU6wz;bLy+4f}nohJM=h4dk zLifIu)$B|;n($)Wi7T+LGPKpnMg4_kp!3F}^CqBi60^Cmg867`ZbA2Q8BWDobiyul zFW*47q5}=^1A4f+(T-h3$5Z(;r`c#HiqI{afp(w*>0lx(j|2ChEnJ6A+<_DkUP4>- z9+u-5=&2sa(KoRiEXK*`7FMGHR-uK}MIS*s^*CC<(>Rv+p@|F5Luf|>ccHEM84Yj= zooM-1Fcjxu4w`Tcn$Uyjdt1>?>_pE<1G?@(bW1-**Kfz6#19=_;FoB|XVI3P$9nt? zow%7YJ&fDX_g;+dK?66V0S_Qe3hiN51G_h;wRu7v%|IKU!7yN_*ekEfiy5Ozo z_kTOuiP|{6A-Xxb15Nk^Ou=Tfpf}Nu9m45&1XJ)5TF~VQ^xuKM7GK2c;YhP>CM0+t3QvqM!8!^u1kZVNKEf=ox64SlXY_F$Qey=V)tBqYHIm o5_Y43dnUG)qzy}LU68#uX>eIlS=rnfvs%yPo=k21Xnbwbe_0ItW&i*H diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.po b/sphinx/locale/sv/LC_MESSAGES/sphinx.po index a9236fa26..6779c77ca 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sv/LC_MESSAGES/sphinx.po @@ -6,7 +6,7 @@ msgid "" msgstr "" "Project-Id-Version: \n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"POT-Creation-Date: 2013-04-02 10:33+0200\n" "PO-Revision-Date: 2011-09-21 10:14+0200\n" "Last-Translator: Henrik Holmboe \n" "Language-Team: \n" @@ -31,6 +31,10 @@ msgstr "se %s" msgid "see also %s" msgstr "se även %s" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -831,3 +835,4 @@ msgstr "[image: %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[image]" + diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo index 70008622da498efc2045b3c5f1ca59a4aeaf2c5b..5202bb631434e04c63d6b28f8447b691d01d4bac 100644 GIT binary patch delta 2965 zcmYM#duWzb9Ki8o@2*~En>sI3=WV$}&8aBPkxu`R)QP%GoLVpnC({X;QfRzgL{O4a zSDDs|maQVkD>vVVLm>G_u}j5ybo{y?nmc;i>`ka zP536}6aVgNPVC95J+T;j<76~I752e8?1dYUx#8V-zZo5W1jpe8EX3|)F&4+7ftR9{ zTZN-=4Hg*xBQAR2F*LKb=r5Q>`%iojZ^w2if#e2*^NO1(|+8d|{) zc_G|`J*aUedA}rq>yb}5&X*OqfJ5-t*q_TIZem4f zB}b!2GyzSp99^#h-B3-E3j=LL2R5M-n~_i0$CndNq5;og8D2t{YmIXW~1X5 zpzA$>R$w_==_I=T229v~g$qkk9|ydFPHaRM-h~^n1)VsJ12(`cbX-+zSI2f8n#gJ- z$B@K+SdS*K2TiC2Stl93BO$+g1yn#aAfSCh6bF2o@rII z23>bGn&?_|{dMRM*XFzTIsd&}xU|KoI@9AjrXshfqzGj=C9b!B0DRW zi}nvfkE#THcq`EL7Gs9*e>E5WfGo8GUqnm15#9M~=+53jCw`0uPT?kAyB0LD={#8m zn2$cBOVFLJLB}^lo6ySa#-s!Hap9SqKug>j+kc=tNRYnfp@|Jd-l#AlIvHK365aU{ zG~uU_Qw;0T4ZekZ!hXKIf2M%*_cgdk2b%~94&DHL(Tt1H{t|TI=}48sLUf^(XyBKT zTtj2@06PABY+uDf+UY!ro`InKt1(4*LnObJcsxT9zVPT^F%gpM1QBn@{k9t|`DElnM|)3xX`P>=Jl0S$N^ zUEmHnFM9yNaX9*ntVT<}2Hn^eyp0WLBHJmu{mH#tc;<)DAB1nvQl3XMzm5jHjaDW> zG%JyfR5cW$^UIJ=m=pV-LN~G*J&L!{fVo`t{Dki4M!cU^)czBlkCwU;@BRd%2_<9uCCns#XyC#MypKNhEog>E zF&)pu_W9^#^k{CNrM-jxM0cSK{^zv~Ep;QhvF6y`AKORJI43d5gBZ?o;nRK%ec1XB zZ7*RlnphdyKNsEUBJ^l#F#}&f18+bpQXlU(#r^})7MaQi|13ZhayD9c>MJu`^wm(G2eNy~bdnSkJ;5iFt z(L`>c3uN)+c-A@S8RnsZhM)@!N5_?+0j6LY&PI=5UTQ+8z8y0wpIKhLV%f^n!#xfr gGDi<68C5!FOsY@sWu3F)ov?LsVSeh(qMeEV0QYDWn*aa+ delta 2928 zcmYM#4QQ2B7{Kwf_HpM|*>ub0mbzws1#??dY}0C5v8ic>VyP?AkWeGbN=>?GG%JZw zW=ak%U6y1dyQ7lP$3oId1q;7w3VtBMQq-U_LHhr_2a@akz305=ea>^9bKbj?(>kUl zPvm8-3;b*4e-Zz8WZU}xUrmn?deR(=y|5k~G80R%0lVSK=$d$c9rmGrBi@XkV_)pR zoA59aHyO@yVcEJg#|8T-ef;~zpNn2iPaEcV9L=yMxzAbyNKzZZ@F z8=CN0EMWd{kqaM85cL-9hlMy2ouD3X#Rlw$%aBLHJMsQzbbJa&;eH%|S!8h+mZB3s zidOC^9El6CKl6uXF7oj!G_wQIqnJzk6pq8L*d9)Km?KnT0`EhguR|w%Jl=m7UDy_M z0Vy=z0kmRAFzJLBxR{LpU=BXOQ{8bg_Q#nx8ke9e*n#8{TG8h_Fl2=AGa7gw^)|uN zXaz6f4VaymZs%ea?V>#DZ-7B`7n-mXopq6{~wMW3((R$hpzAybY-uj559*^yb<5xb!$NrtKdXA z!9D2VoPw@&E;_z3+JshS13GRKCf$=(E-dkGw0#U+Sy%L5G_h_hhc_tXM~9+;s?n8C zK@)xg*|qQt`pftl@(G*y@_svd`hVc@Zh%rWkuiMPKO0@hGIT3eqZ4jG&r}NW_*JyDO|iW`wzr~h)u+h$3vK8j{}r$Q{lCVArOO?X z&a4PMd==;lYtSv3h&lKqI`PwJC6>hdt7HGB=yvpnsSO>s8?*5Ux{%{TsK2GTKt~x~ z#RQHRnzj<1uo_)KEt=Rwblh}wf;nj5MX~>Rw4yJ^_8aK9x6wpCM2=Nx8#*PO$q_mX za1Pz$3+SF-MkmVRBpIM5I<5$vpaipUB)SDvsk$CT-BXM5zsXFL4=gXgyJ~c*qHtl) K)V9Ixng0R*g$Wq| diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.po b/sphinx/locale/tr/LC_MESSAGES/sphinx.po index 6f97fd37d..bb9d6bc83 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/tr/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 1.1pre/339c7a794c1a\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"POT-Creation-Date: 2013-04-02 10:33+0200\n" "PO-Revision-Date: 2011-09-21 10:14+0200\n" "Last-Translator: Firat Ozgul \n" "Language-Team: tr \n" @@ -32,6 +32,10 @@ msgstr "bkz. %s" msgid "see also %s" msgstr "ayrıca bkz. %s" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -834,3 +838,4 @@ msgstr "[resim: %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[resim]" + diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo index 9c64c26c8e5e1e07d4a82811b45945703bf991d2..08779a63cf4a136337b3b6b5bda3bfd4dd5f1882 100644 GIT binary patch delta 2783 zcmYM!ZD`e19Ki8Yo8G&bPN$}BZ9YzytDMfJ*~P@r7s)VNkV&~5sfo=fi8LQB4hved zdg08n2P+{l(Qp|_x#?uk3(YYL#Y|HKvxS1IP*d#t-3~SG?&qBIKM%k2JLi8tp4&V( zeL6R@A@H}I|GW5qs)x1z|31hL;SQ=FVsG4mcKHTJU=wEH*=R?6{ulPA{U7XyIlV#{ zfWt8d%aM80VI~D9u0%dz0bh2g!9KVKouEFpe}wkmg)Z@O93?ngtMI zC-x(qoI)6k1~L*S;X{}<(pM^P?sK;;{5u>Snm(>ht7j~r_Z>QcC>&GyY`UQ0S zALzV)qk-Ru=5h{>FUH}R>PP-vYd#HRF)Tytt7834H1f^JCwvy`d(j0Cpn0I$y1*#Rz!EeQ z4{=-bpB+fN|trNcQ2o?%Dy8ai=;n`flG(FF#gKR6@M=QGfq&5Ax2 zeG(n_3>wID==hrW{8e#&dSe_d>N4^7>tT@ONNM9-)Ny_BcX2``}wccQ-o*JFJE zKO*ipAKg$9+P@5s@-|II_7;*1q8JLXhwpzm1$UN0C#Z@pu>QFztXRC>X$E9EEl0guBsOdkBYNJ32upI$GLZzIw* zv|=HiMc;F8s%P8_7vf+XiEFXzNYTsJh`zRmF@={3$iE#*n9Yb&=;e4E=@XvDWw;7? z<-_mjPH*C5%q7}II1A0xp6Ed|Gi|t!vpDl+&;<*)fga@~oPe`2fwky-b?C+#u&3|;7ZgnK9(3Vm zbiuY*zle3zuVYVqjjQbCtj7dyj`gjvz7vzQe}(KY?8otV0zJ~~ySq0q1V^)ec#whv zs?k7}qG!DVGqC})@O?A`+t3WOAg312qZ22`cE9(7qDAO@WoTxm#riy)Mtw1+?XaDK z0qjM0*o3yXM%&Rla0b1-SI`XPmUL&V5Dj1)`gTl31FVegFQaeEdi4F@k8bQp2`@o5 zg?1X4GyH-Eki4h+ta8vD=b`PB8{f!YoRz3tSyTPO^UE7A_kSlNF=5#F(kW$SjjsvA=lQ?D~M&AH}kNa~~(_OMZlg%sp7R|ZK|)Z`Yu)?5ib zuoPz)W?G6lr4`tQij@hWf<}u-(Hv#WlCq@N_q!cv+}+PP=YJl*^E>Cib<}UFPklEy zV{PDPE5F0|y)V<+|358xA@ryEIu5|~XqWeJB<{pqJR0qa&(C6l_MdPN{)Xbk9*5&7qH=+mXohCvB&@?C zd<6?|Ga5iU=CFR)PvI8)(gw^Ue2O7~**F3nI2LcjY3NR$L<4;p9rrdm@ix2*+b|3J zkxsH7a?n5$Scx}a%19Scpl?`$PSA*<9}%OeeU;S=s1ey5JFX z+-dYu|BPlTZ*U0JI2sM)k-_BOoj1~u#1&{DyU^6_LyzDfdbUT$SiiO%;K+V6O*cg1?@90eEdK|bLRzOKaqG zL<4#e9oK};w+elWw#N2ObiKpK(WS!izCt*KPTYe=`Ww2y-{>EjJZ_@TC!jkkk5)xz zpyO^w1GxtsUl*UxMHgO-9>vn$I_Lia1yk1?A8bI+W;=Qr51|vDKo{;p-~ZFG{ujFA zbpD8V83&;Ki|{Mnq7q~e;R0!(7_u1bMv8Hy?|+hl6Vya&V~07&@rQ?zHNrCF6Ix>Z zUG(`rG|;1H0H|-#_BH6vHewmJqeuB88u*_`tf6RZU;k?CpQ7Oo z3TB`lGjJK^;(IAkKKkBoL^rkr^KdsZMc6l< vx7h%?\n" "Language-Team: uk_UA \n" @@ -33,6 +33,10 @@ msgstr "" msgid "see also %s" msgstr "дивись також %s" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -843,3 +847,4 @@ msgstr "" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "" + diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo index 4eecd29cc0f0ec3d70faa6d561379f7305f842b3..cb3c84b52ac485f8e2e837d632644b28a680d3b7 100644 GIT binary patch delta 2928 zcmYM!e@vBC9LMn^Kf;SpULZiY0wLHIY9b)P@JDRT-`6d*R*a2kb2Cy_F3YT*%|RBn zGR%?j2O2Htr*oLPk@N$XPA6K->x!Z~afRZtrj3n3_Wp3cD+autbDnd)=X<`-d7cZa z{#@k^CdKS?{2b;lz~2Y4YW@E+XPR>fH0NR>mZOF&$6O4e51%o2*!@OKrhhm3u?UkiU_123Z9f-tIN6IhAqWTS+t_@@fgV;;U@{q3m4j-e`f z67^`#q7v*!#rqYtp)u4t0grb=1IthoA4GoLa{g&zHEO|4Sb;B~9?ci1>VJ>g$z{~| z5mdZUR0VFMO6_Ntil2$mn2V~2H=7F$C_qgtK?PofO&CN?{1LT47&Y#?c?*@mII@0)P>EEc=C4OR@*1RKp4-TUO0gA{(H_*qeW-wKsMqd@^`Ap6cnS3^!{#5T zz~iU{qj;C~Na9f+sx;L7a@2;FPRjFNW*tG)#0{uKs!;)I?S4IK;cci#;#vDmRK;4X zzZ3O{jv+6Q>qo^KLM=Ru`d-{nTkpS*?Wr`=Q9BQyb~YO|u^6>*88-5|RiY9&O%x?~ z3AM8;sGVLzRW6YeCv#EvOHtz&q2{kdPtWEtF0^1B>h;-f?FO^iJb()DIcjI!=2>$9 z6?g;{cg#$n9O}=)9Gr`6-UTyx{@VFQI<)g=kvGG=gevJCnm^|;Ui@mY}@elrWzUw~S00ct`8>Vve_?l+?X z?zi@bI6(U|)J9&iR-=TVu5tbN_uH%%YkPbH9zIxEXifvb>X z;OeY@7b?8X`r5pJ`mTiS{xB-;-;(v+I2S5q^sI=9r~zqa7V0qNV-qe!eGk6D$y1D4AY}c6 z*8e-Ik~dKa`Z(c=n~&Pa9Q2fF85hyG0+q-b^HK8&vko=!IaESBQ33aw@1edU2hBs) ze*zWvBx-&iaz5Qa9`)D4V>a*~Gd4dGIKfOt1;{Y-tbd-hOHhHASbMek24+ghXQnwx^!E+&+cEe_GR;G*Nka>zPNSUH`mrby|wGNlux7M Y7UUGpFE1+U+Mj-Z{C{^&<@%!k1)ii0?f?J) delta 2896 zcmYM#duW$c7{KvUn^Wgnx~X}Y?$SnXRBM)-)>>%^(a1uHuxOza21=5pm>R!KLi3L_ zmMLi$(Mpt-wY-otQPT{?#MxC*Dn%WQ(uy=F`+m0v8grlbocEmPIp;a=`}$ks;l|8~ zg6tKEpUwO$;@_Gcw*LPq>XT9)&0%;IR-r>iV;MGJZ=4cNkNdN+kpB7D50_zoT#HxZ zRwQmF?c>70?Z|KXkv|UT#C-e*4UorZ`-h|BZ$uN+<3M}>`{Fco-drrf#pwJEX#7vn z1@FUw`N9CRN)Y8z(F_}8Ioqj{R}$38Ef$aEXGrK3udz#6OTbF zHy&@oMjT51w1A5NxC&iaOSm0-(cX;>cp%!jl!4f(5PM=NI=>Q4ct_lS7Tws3=mwh6 zcr9qfwqeGEhq%bW?=Tln;!y0sI?N%8D{ny7knTq3O)~lwDLsk?Y@*ICY&KfCMR+By zjP@ItO}ho1-`bD*8~8Ii+`*pkdo;kWSc+K%-Dh8cmVQ*U$DyU282wG?2BsrZ)0}88 zK@&Hl3tWX(;=KauZ{iPQ;9m4CIE(y^mJ%6ZB|y zpbOlC#`_B0PzRbPFT*?Gz)Eyt4f2~t^T&zzp$R8rJwAyZ&AVvzccD8uf{s6i?)(f| z;!9}UEOwcNxo9Qw(fgS~E?mGcG++fT#aeXYE;R6dbllPKIGXqrk|TBEFualn!N4Wx zLaNaD_2^OGgH~z+Qh`i*gbP=o#)0zd-|^LKoP9Cb)op zpf1P#GTv=BG$O3-lJl?S!il$|3mK0FxVLLSN)Mrlo6w_}7VSA`#WK;q96g%1kryZJ zK;s=i6CXyu6W>PrJofSZzsQ9<&t|*sEFYa%geES<_zz?QHUlSf=(z$KSXtLe;yieVYFYtW3*SG z8+p38d;Vf{{;O!h_0irG?Mz!->#z`A*lp+n#-sNqMtf>F z6HT}Py}u}IM*G(x^D}8n=--dV z{W?63R`6#ff9i}Ie}(^|4^fY6yFbMP(eJ=o^y%G*ez3Mie_Ql_fmW~`UD!G7+7M5; z8^}W!I2g0A61)EYzkv%^R2Pm78_|gmq6?ae27D%*hkh>>hRdS=O*Gzmbbbr+T&5jp z;vdjBC(5b67pJ4+m+*Hqz~5nZMfZe!w0{5^xH#I^hqdU3=uWf(_oF+Wj@dXL&G!O2 ze{n^1cgJgV_?oPa0WC3LOSE@~U$$2EIn=xLa{o*ZR?*>fF||WxcZg E17=(U1ONa4 diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index 7cf612526..f0911f6c7 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po @@ -8,7 +8,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 0.6\n" "Report-Msgid-Bugs-To: zhutao.iscas@gmail.com\n" -"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"POT-Creation-Date: 2013-04-02 10:33+0200\n" "PO-Revision-Date: 2013-02-21 18:31+0800\n" "Last-Translator: yinian1992 \n" "Language-Team: cn \n" @@ -33,6 +33,10 @@ msgstr "见 %s" msgid "see also %s" msgstr "也可以参考 %s" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -576,7 +580,7 @@ msgid "Welcome! This is" msgstr "" #: sphinx/themes/basic/defindex.html:16 -#, fuzzy, python-format +#, fuzzy msgid "the documentation for" msgstr "%s %s 文档" @@ -827,3 +831,4 @@ msgstr "[图片: %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[图片]" + diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo index a255d9e36df26b594e4944ba62a96dd10bcad464..13622db4ed695a5892c5611cbb5b8afbc1c4b974 100644 GIT binary patch delta 2702 zcmYM#duWzb9Ki9Dn{K*v?wu`lt8FTpX0Yj!TF%Nc#S5m(k&?GYIm{fPqKojYmKI*f zLX#v3W}u}KwJy3Y{vkz}(Za}#jFd>z$}%OQ3w^)tN4>mzKj%EpbAIP{e&>0fbxitd zQudon?v})72Y+S!)pWP_|7U8ilrE<`4Lvmn2jK$jiLK$rIKLH(Ildi>@HOm*2eA;p zMB|;t-YI3%MH&Sh$l=Ee3ekb((XU1>Ot+$er(+2=Vqbh1``~)4z-{RGcaU%TgdeXv zhF9VlG)_0N7|8soghqc3RHG**;{cq8V{jFgOu6`FC_ZeE+ z<2V+7L`y%M*;#CwfF|C6UOyj=_du2gNv36JN!OqgJdHW{99n^G=ztf|fID#=?nAG? zjcg1&8NIF{oQF<)Kk`k@{9J`kpz~$hXqdnrG{F1lo*qJ1-iapg6FT5L@=bs7<5N?_ zK6rctI#CU}RdwMMG~R49vH9p0EJEHR*|a<^*ov-Xd-zhg8y)yMnn(v4;6R)|j81$6 z-GZ;9e-^FOg*e`wJKQblhu(};*u&@l78*Y96E7X$@j@%ngsyBkx}w!cth515qzzZ{ z^z1|vDyJN-bR_zQ9EDbDR=7CMXOUe?Yp{>c|MN85f?eoD9pOje7vXo|d2|J4t$o7^ zG)`4G9<9J#Xl3rh3S5r93AbR@mF}hCh5M1kq(f+iCy;Nt82v&X4F?WJD{&K!!5LVN zPhk!2LgOAsEAj(Y;W=~*D)@2y*i!26p3mffrJjwxA{)^?Z9_}D8@+BHn&<&^qR!}d z=T0SdDnZ9pqYJ4;$IrlNI1i1p2c56IjQaDaruX7RCt9kbal!ZK8}b)4;IBM84$Qy0 zt3ny{4LLOW!_f)q!rQ|s=!$2CO=yKzXK4(h@hrNR9cadfqJK2{r_jI`;`pCo0d@Cy zDLQ@-T7gk`X^Z0g40J7bqm^2Lz9F-lXqd?nG{7k|f#1=A!{SUN-$k!@IVSXl7oCCNctj?rYHiCn8%=h^pd8xs_Sv2Eu=qs`wo$w(vfmLXLHRxUa47&2I z==JI?*^M!qezueomP`{T(L?26qL>paIH|Q)xIFU}{(&&IuQWO=tqm zVM`oujs80H=H49r9XQtkd*j60$eyGR(JeTMPJAAH5Bw4R;vrp?7>JG^iY8oz-gI^7 vxcc@RdkyNDSKspBz0FIOwa+QuoRc@IqPnVf^yv1BCD--(?@VRofSi8;@Q&%2 delta 2677 zcmYM!duW$c7{KvUv)!Dxsku#^yC_Mm=9(9K44TR}u>qLe8uQu}o=gpp`% z5*d{))S&(lS1?*7hJiw58IjIQe^eBdVJ_G*yL`XyfyQsY&pGG!p65L0Iq&=SF8W|m z=1k#`?TNom{wMHXb%nkE{~GdBDxf!)neDPo`;{h=O&*;&eQK%uRpbrDBoYH2T>%9%tfMY(^{e z2y%MZL11&`>a4)*R8eEL)F&mE{MND6! z37td}?MFW8Z@!#YKzTFiGJ?@C;5b%e&2$}Fi3YqJo1)*0L+CF@1FS*=KY=E`A$%E~ z|2CH6hv-qBL5h}si~e6DS>J)79GDpwp=Vba{Tb+jbJ4_ZK`YRVF4%(3dmO!aH=>o= zf%EZwG?4*x=LLm>35-W8HMNlXTl#7SJkyzIfSb_FA3y^?gI@PKI&n98SHFwSJBTju zIX2)awDiTS&SujLH1P%K^^HhQ>AnmNOSu{i+=^NFG`jQW(1kanfwp2B?nJM@hAa$t zJ$l`oZ~?mD66BNa;%g$VLf30U6UcPXFu)%4Ecc^3?nV>%2A$B0e9{km`Lz5QMmyWNuoACentjJT+UJ0aVABUfXz32{p4hOog8K2)-%`(Gz*pn#=$W>mrEQN3ccO{zMHlLh{#hh;`Ujm? z%$@5-D$x0}a4{}G7wkaSdkuL))9wk>-ygaeuv7=)f-lfF<8d_L37#D%oN@c&43b#`~jxAo@qqz^7vT`>-#@v#7uG^U(^F z;H4u%=gmU*G8e7X{pg$VNi>m64-EqxMHBcAo%n0m7vmSu06ArYZ^jBV@XhG;4~8qy zyZ=!%-lp&+Y@q)Ja$4yma?@r~KMga_<9%x)h3LczG;noThaSP~=r0VHp!dd|=$mm_ zjQ@__j05OlB1zag5J@DGgtZwdjIN(FE>B13Zl0&1=vdx1#TX4m6=x(d*wr z6WNExIT#*BAMc~#=@|b7^H@Kfr(uAL$S37h4hE0}omY$PrA0S%ZOZ>C dw`=X__N<(mvYMLu88f?vjk`9#YkqlA)_-+*=4Su^ diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po index 1e881e997..14cfaaa5a 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po @@ -7,7 +7,7 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 0.5\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" -"POT-Creation-Date: 2013-04-01 11:57+0200\n" +"POT-Creation-Date: 2013-04-02 10:33+0200\n" "PO-Revision-Date: 2011-01-22 14:41+0100\n" "Last-Translator: Fred Lin \n" "Language-Team: tw \n" @@ -32,6 +32,10 @@ msgstr "" msgid "see also %s" msgstr "" +#: sphinx/environment.py:1570 +msgid "Symbols" +msgstr "" + #: sphinx/roles.py:175 #, fuzzy, python-format msgid "Python Enhancement Proposals; PEP %s" @@ -835,3 +839,4 @@ msgstr "[圖片: %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[圖片]" + From 66bb0d27c7f2ff223e25f3566ba382fdefc65153 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Tue, 2 Apr 2013 10:39:13 +0200 Subject: [PATCH 70/76] Update Portuguese translation, thanks to Gilberto dos Santos Alves. --- sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 11034 -> 11034 bytes sphinx/locale/es/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo | Bin 10500 -> 10856 bytes sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po | 66 ++++++++++++---------- 4 files changed, 37 insertions(+), 31 deletions(-) diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index 7f4f1d50a533693c1c66e639564e10fa60f865e7..7bc9c3470d0c62dee3780fc52e78243f9236ba37 100644 GIT binary patch delta 14 VcmbOgHY;qyOi4zI&9fvM1OY8&1#\n" "Language-Team: Leonardo J. Caballero G.\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo index e6088ccdd3578cbe64676e3192843ae3c01395a6..8face0d7c52c5d6ecd86b4bd806410ac069b2ca0 100644 GIT binary patch delta 3852 zcmY+^3vg6d9mnyL7!nBBl!SK-91=o9c$feM8o*Yd#X3ogDYigr>FwqwEVH{exp#L# zd~BWK2$aI;f_1E8$)IgPu{>zvQk;w*!l`&KYJnX%4fo*`Jc7hBKXLC* zqQ<|5OYjoTz{O;-7}ui~-i@lIfdf znK*T5`$ zO7|eH!pD#w^CrJkflD|G$8ojQ-;PS`W>h7+QAe~9m7s@;mqcx7SB?iQbQCr4S=7Xn z$d7rEUz&Ipwcvkn1y+)+j%GEgf}2sN5Jzoj2Ws8}sJQ!4m3SC6{s?NFT!Dx8@bDz6 zG{@Y4B5LBVP=Qb39()5eagc-70^3pJcDnXn*ZvYJkwd7B9Ki-WhDzWxl2FdP!Gi)_ zK;3}~zCo3+8daIesKgedCfwF6}@oiKhWvr?Im8kJ`sD-DYj;P7C7osY+-1T>&j;sfDiML^ezW>kh zpg?<3e@ODKJ&dZ%_fR|kF=}VOKu*E@4wcZ~Q3?DLKhI})5tZORZkpylf~vsds6W}m zsPVtXoF0Df2E2+Y?HN?&mr%F*8q!wAji|s2QHk7$TA&Lxej{q!R@7zN;o5sqv*|i68I_-y08~CPcKZBf_ zc?Ffg1^2#^o2bvPzJdBL;bA2mGcb)EcmTDtlc>`D5%nkd&qxeoSxq}wi5j;abwu}~ z?#fnNjUlSSKR_MX)9(E#)clunJS^kkU#K0=CkthK6KbIisK6Oi#yQs>!Y}sj@?vn4&^ul^}Z1mXcg)x z)}nUWjS9R8m2ikUoX^J2-Isc9+&YDAT?6*X`PD$`q03vWUN-i*2v z5n8+-HE#%;aTwWyc^=o{dE|pIx6CTV+l>5}0e&^;`#a()nRj;Ja{S$F4uZ z3i|JNeipUx9@LQ>z)|=p>hH+c@i0D(iXXeK^apAHH9m(qz1YKpF3-cL9Unqv{%y4Q ztb2b3btLCdBsN3IzN^B67_=7FfUjq)(p`Cu!`CY7{ z{WH|1Jb?;u8o4*-E!0jY&M75Oj~d_TY{k*E7dn@t?$jEr#JgPoJ#(nPcGT}Ww!49! zK_zqmIWF@Asv;*)3;zYj;92BPf;o>$ppGlA%G9IUb5WI9go<}Fsxli<^Y1BZ%~y}@ zy|y{By+JIK^iyds9S>54tz#b;Q{{!RE%8);;cpXK%PKl-b5s~NX-fHxzR#nHz)M8I z$TPEiO*WC{$86G1ZwY!$dW-+=xVA3{^Bq&xRQ5++HoiT-Z_2GJ7R_&4Jio2owlD2y zYn$J;sI9HK(~Hvc*N0vzN_goY?69TbH}xmIcw#{;NZJ)HK*Q8V7prjl)T*-aS8t^F zc=2#h=$`gMd5xbWO`C0w=9qcbPZq9kc%p37$ou?D(`Q#^A}`e&X! zYi&NT3r2+$CCneTsgbV2_?a8ZtEwBT8}&Zk)KsHs*0TeCG?R2N^Llf1 z#DXyN)1K~`Z%ebXL9BSxMt;JNacfyH#zpK8!Z^dDOkX?}*WhS@>A8HpgXm+Xr#~zX z@sip$U)|(QJn8lON!MR$&>Jfj(z95P|%@9;`D>_^u%mQBw3TRnXW nBa-BO#Ur|N`9HMOH(g%4G@c!Xo=L|C0+aQ^cyTD}C(Qo<_4Q3k delta 3159 zcmZY9eN5F=9LMnk2#BH}0rDVmc}5WfLu`o6iRIM!kW#w9ir^|Yg$rE3Y`UA%nP55Q zPfY#8r&c-5Sl(*MWcko$*;cr+a!qSm$tZJL{UO8E`va%?Lx;S6=lst3p6~gd^P{hP z%ToWVaMT|Dq(dibRQpW#@%j0(_a`v*`7jAHf!n1Jy(8KbcbHLo09SdE&$1(|Ag zqY^!gn)ePyv%WdU!+1Kr#zg!LwLloFC1DaK;56iwS%i9Dfg10{Vr;`yJdH*8BWmF| zvQov;umE!~8CPH&>zigClv%rV7mlR8A0NfHZTlA_rn!aTcn{++l(K2TWYqg5sERy; z+JF}ouN}2>2esZ&^e^P$eICLvm|3GR0+nGbPR9b&4r-A#O+6~WMl?ajyn+h6je0AA z1E>le$6!2T+n?YF+TWq(Ul~XJ75D}n+R068NX&46L`R?_|q^1OHmc^&$0s^Lrq+a3cMWKu@*J)57Yt!sBvK& zxEza0ARfuVq+$vdp%z|>N~97szaDkuFCi84o0oY|DPBWmbQCqQ3l;Dr>ht@;_TNA) zcpG(=1J;pz!wMXaN^An^NHS4>s0!`-a@2;N9+LB~vK_UkiC$D9>reqU*!OLyg*#A3 zve&kcpepvB?LUh;qKl|YdlMD!9%|uWcB8)=5g4KGKZ6JDBp)?!25O;M*v02H50%JW zW~qc>+$8NZ2DP&U)c6_JIrjZRRAS4JduM7;3B8Dlw+;PTxRVD3egie33pMaG>g;-L z`xF=@j=?xQD+~_ z#ZY@ZQaw|QT3`|CeI@F1YQ$o6FcmLg3HGBlmc@-!#R^e>QKuuXOlu1D*A5&yH1H_u z@_mT93#YLRKSh-|l5F?@OdRTc9%}x>_z2EN?RYaP;oYc(-bKaz+_o>-_8mVD^La6d zx*T&!Ukfclm1sFWjy}}g=tc$p7%-g{7S+E7Q~ z-@$`+vKJNj5Gv!7s5AZsCt*J-U>pal9Tr&2tWTlhcuuMB;xXiOOt0<#9hJ!6)^G;tGDo2{kcx_1 zf)iNZRPvw+>rrR42{mv#4rPiu<8Ca)i>Lr&$#SR?sM}p;U4n|Y5;fm#``6`DNYsQ>)cb7Ijvlh@S*W9!hf1gtDVk|ORb)46 z;p3sf%6d%+Gq#35%QQ3}&S} z`KjSfVRo}~Deho$OP#yE+3Q&YZbHk!!1b&90V)nyO}ZP2hHJ ZdXSShDJiPi)8I9&RZX6Ahg#ih%|8!!V(S0^ diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po index 3404c74a5..0d50c4893 100644 --- a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po @@ -6,11 +6,11 @@ msgid "" msgstr "" "Project-Id-Version: Sphinx 0.5\n" -"Report-Msgid-Bugs-To: roger.demetrescu@gmail.com\n" +"Report-Msgid-Bugs-To: gsavix@gmail.com\n" "POT-Creation-Date: 2013-04-02 10:33+0200\n" -"PO-Revision-Date: 2011-01-22 14:41+0100\n" -"Last-Translator: Roger Demetrescu \n" -"Language-Team: pt_BR \n" +"PO-Revision-Date: 2013-04-01 17:00-0300\n" +"Last-Translator: gsavix@gmail.com \n" +"Language-Team: pt_BR \n" "Plural-Forms: nplurals=2; plural=(n > 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" @@ -18,17 +18,17 @@ msgstr "" "Generated-By: Babel 0.9.6\n" #: sphinx/config.py:81 -#, fuzzy, python-format +#, python-format msgid "%s %s documentation" msgstr "%s %s documentação" #: sphinx/environment.py:1510 -#, fuzzy, python-format +#, python-format msgid "see %s" msgstr "veja %s" #: sphinx/environment.py:1513 -#, fuzzy, python-format +#, python-format msgid "see also %s" msgstr "veja também %s" @@ -411,16 +411,16 @@ msgstr "apelido de :class:`%s`" #: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 #, python-format msgid "[graph: %s]" -msgstr "" +msgstr "[gráfico: %s]" #: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 msgid "[graph]" -msgstr "" +msgstr "[gráfico]" #: sphinx/ext/intersphinx.py:234 #, python-format msgid "(in %s v%s)" -msgstr "" +msgstr "(em %s v%s)" #: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 msgid "[source]" @@ -428,15 +428,15 @@ msgstr "[código fonte]" #: sphinx/ext/refcounting.py:83 msgid "Return value: Always NULL." -msgstr "" +msgstr "Valor Retorno: Sempre NULL." #: sphinx/ext/refcounting.py:85 msgid "Return value: New reference." -msgstr "" +msgstr "Valor Retorno: Nova referência." #: sphinx/ext/refcounting.py:87 msgid "Return value: Borrowed reference." -msgstr "" +msgstr "Valor Retorn: Referência emprestada." #: sphinx/ext/todo.py:42 msgid "Todo" @@ -576,16 +576,15 @@ msgstr "Visão geral" #: sphinx/themes/basic/defindex.html:15 msgid "Welcome! This is" -msgstr "" +msgstr "Bem Vindo(a)! É isso aí" #: sphinx/themes/basic/defindex.html:16 -#, fuzzy msgid "the documentation for" -msgstr "documentação" +msgstr "documentação para" #: sphinx/themes/basic/defindex.html:17 msgid "last updated" -msgstr "" +msgstr "última atualização" #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" @@ -673,7 +672,7 @@ msgid "" "Created using Sphinx " "%(sphinx_version)s." msgstr "" -"Criado com Sphinx " +"Criado usando Sphinx " "%(sphinx_version)s." #: sphinx/themes/basic/opensearch.xml:4 @@ -701,7 +700,10 @@ msgstr "próximo capítulo" msgid "" "Please activate JavaScript to enable the search\n" " functionality." -msgstr "Por favor ative o JavaScript para habilitar a funcionalidade de pesquisa." +msgstr "" +"Por favor ative o JavaScript para habilitar a\n" +"\"\n" +"\" funcionalidade de pesquisa." #: sphinx/themes/basic/search.html:32 msgid "" @@ -711,11 +713,11 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" "A partir daqui você pode pesquisar estes documentos. Preencha suas \n" -" palavras de pesquisa na caixa abaixo e clique em \"pesquisar\". " -"Observe que a função de pesquisa\n" -" irá pesquisar automaticamente por todas as palavras.\n" -" Páginas contendo menos palavras não irão aparecer na lista de " -"resultado." +" palavras de pesquisa na caixa abaixo e clique em \"pesquisar\".\n" +" Observe que a função de pesquisa\n" +" irá procurar automaticamente por todas as palavras.\n" +" Páginas contendo menos palavras não irão aparecer na lista de\n" +" resultado." #: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" @@ -732,6 +734,9 @@ msgid "" "Your search did not match any documents. Please make sure that all words " "are spelled correctly and that you've selected enough categories." msgstr "" +"Sua pesquisa não encontrou nenhum documento. Por favor, confirme que " +"todas as palavras estão grafadas corretamente e que você selecionou " +"categorias suficientes." #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -783,22 +788,23 @@ msgid "Hide Search Matches" msgstr "Esconder Resultados da Pesquisa" #: sphinx/themes/basic/static/searchtools.js_t:119 -#, fuzzy msgid "Searching" -msgstr "pesquisar" +msgstr "Pesquisando" #: sphinx/themes/basic/static/searchtools.js_t:124 msgid "Preparing search..." -msgstr "" +msgstr "Preparando a pesquisa..." #: sphinx/themes/basic/static/searchtools.js_t:285 #, python-format msgid "Search finished, found %s page(s) matching the search query." msgstr "" +"Pesquisa concluída, foram encontrada(s) %s página(s) que \"\n" +"\"combinam com a consulta feita." #: sphinx/themes/basic/static/searchtools.js_t:337 msgid ", in " -msgstr "" +msgstr ", em " #: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar" @@ -828,10 +834,10 @@ msgstr "continuação da página anterior" #: sphinx/writers/latex.py:710 msgid "Continued on next page" -msgstr "Continua na próxima página" +msgstr "Continuação na próxima página" #: sphinx/writers/manpage.py:226 sphinx/writers/text.py:541 -#, fuzzy, python-format +#, python-format msgid "[image: %s]" msgstr "[imagem: %s]" From 028a24b8177170e657064e6a16bf4e929450fe7a Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Tue, 2 Apr 2013 11:05:25 +0200 Subject: [PATCH 71/76] Update German translation. --- sphinx/locale/de/LC_MESSAGES/sphinx.mo | Bin 10650 -> 10679 bytes sphinx/locale/de/LC_MESSAGES/sphinx.po | 75 ++++++++++++------------- 2 files changed, 36 insertions(+), 39 deletions(-) diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo index 29b937b2db53acd0e68dd194a1462d4d6d0c243d..897ce96b6c370737e2c049cd20978d17e739b937 100644 GIT binary patch delta 1984 zcmZY8Z%Cb09Ki8o=AXH(Y+IUc)3dqjpPDzDvu1stox8(^(24p#}}|3r>*bq$SFnf>Kq+X=~pP{MzCZbgbyjrb@YK-p*x zAH$OCX#WFmavkeCi(&1t`o z(QdMk1Y@`h2eA|nJrfG2SXKepqyQR3wOpdm-QhJ#q83mc4~Z0w?Juz)?hm1Ee- z_cfwPf_G5fKq<#pjI}70)}d4wv-YA~<BJ6%c9JG6L}^oZ^zGK9r4u?4b8v}9Kb(ODmX}*@~B2p zGWPf*f$}Ji^AnVf&!bd&$@X7Gx$|$38q_W18K}xgA+adR8;M~R@m06&7)E*3BiM&8 z%LF`&a;Mkq_XOxLmJ!i*fP!d?cGJL(6^Ougd z?Z64^DU<|0vft;iobM%+E4hra!M7+^@FPm#JIFtTDsCx!M^F;mj}oU7`Oj4cupD1% zqak~w+uz!@Pq)Q7J05wc zjh~7kCkR`Q_>LE3oN&tT)MKunHr|BEBy?9YI>tyM)0>=}i+Uzpyi)U4MO8dIo-%sY z^%Ht#${#bnaYGa4NB7JhUA{P;PC8>|*7#wk9+;dozCJWOG!#{b|2x!gGOkG(&*;Nu zf*rj1|4lh$vj2|eqmk~uKG*0%a5o4w%R)D~SDQf3X8nX|_F8l#&~eE|+LLamkN9SS zd7e(1iL93}UNqkm*_po@iEWzV)1NmkwRrjB#>aDRCX=2bV{exxP@svS22%b%A&pOA zI&EBXw%bPaQ*Ia<9fT&6F`kZ-UmzR$dv(GI0`1VPpI^Sv83D>7a)kxn|Iytx)(<$M;~o0CO<19qZ9G5`Po delta 1657 zcmXZce@N7K9LMpGspqfktTeN-eP?HCb#>QdTk2M5WtL0vtgwjq&b!X&cIWPNTQNFF zaBM87juAxtvBoGNA`r60{%90LQ7{%H6h!n#RP;{;MP#GrtNVcX`26^OKA-pd^Lgt; z=y>S-)%^5mjxkenjhStX8JTBH2_D0I`~z!n42$umb<)m1M6G*_gJ!+p`JHKnbNq_h-!N5!=(stqqYT@swjnCm6yn_1fF3!Mb=)<>IhR%ZQ0YPgE z@?+ZhRe@pr2=`l$FGw3h^5zl)%Jep>{|Xhcx7wIlSdAoS0{AIzLTz*qKf_a~o4bp; zxkq;V8ETzxp)pms8jG+G3$Qn>8}Jq?)7PkC@sfrDnTIMWKWh97>jqRH zAv+&I1w4#emqvYm6e$yP($4>d3pw9hq2Vy`5IZoJ@RZS4sG@RF5hwYjgN~t!a}2fd z1yrX0*zxPAH@|~ij(LuhlbKzc4J?4FktUqO`DTqB*oLa=o!EjgeSl-AC%J6<*H8!F zM`ic~6~GkgyS&BOVl2UY`jwc6)#$+*)D1OYS_?m+p-h|c7wkk2PNJ&%KI*%tsDodi z2j8KJD6cO2gr&%}TK6p~(I4uv^=E!!K#`t7MRpFg@FJ=b(V8|)LH&Z$QJa*YoQu`NJD|7bd~2)CmS4x1A*dBH#Ow% zO}g<^%pFQ3o1FGYA{ljB841UnmZ*Ab2KNmOB;w0yj$f+!xwx!585wkwd*V?i6>*dO z1DQVG{!F}lduBy#bH-EgW#)Ws$g}U8uM@FU#=Ce`=1#?l^0kS*!#mB6Xwn@VXmV;( aYLDmCHRnu^5rQ*37, 2013. msgid "" msgstr "" -"Project-Id-Version: PROJECT VERSION\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2013-04-02 10:33+0200\n" -"PO-Revision-Date: 2011-01-22 14:41+0100\n" -"Last-Translator: Georg Brandl \n" -"Language-Team: de \n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"PO-Revision-Date: 2013-04-02 08:51+0000\n" +"Last-Translator: birkenfeld \n" +"Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=utf-8\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 0.9.6\n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinx/config.py:81 #, python-format @@ -33,7 +36,7 @@ msgstr "siehe auch %s" #: sphinx/environment.py:1570 msgid "Symbols" -msgstr "" +msgstr "Sonderzeichen" #: sphinx/roles.py:175 #, python-format @@ -100,7 +103,8 @@ msgstr "Autor: " msgid "%s %s" msgstr "%s-%s" -#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 +#: sphinx/domains/python.py:95 msgid "Parameters" msgstr "Parameter" @@ -410,11 +414,11 @@ msgstr "Alias von :class:`%s`" #: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 #, python-format msgid "[graph: %s]" -msgstr "" +msgstr "[Graph: %s]" #: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 msgid "[graph]" -msgstr "" +msgstr "[Graph]" #: sphinx/ext/intersphinx.py:234 #, python-format @@ -427,15 +431,15 @@ msgstr "[Quelle]" #: sphinx/ext/refcounting.py:83 msgid "Return value: Always NULL." -msgstr "" +msgstr "Rückgabewert: Immer NULL." #: sphinx/ext/refcounting.py:85 msgid "Return value: New reference." -msgstr "" +msgstr "Rückgabewert: Neue Referenz." #: sphinx/ext/refcounting.py:87 msgid "Return value: Borrowed reference." -msgstr "" +msgstr "Rückgabewert: Geliehene Referenz." #: sphinx/ext/todo.py:42 msgid "Todo" @@ -563,9 +567,7 @@ msgstr "Los" #: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." -msgstr "" -"Geben Sie Suchbegriffe oder einen Modul-, Klassen- oder Funktionsnamen " -"ein." +msgstr "Geben Sie Suchbegriffe oder einen Modul-, Klassen- oder Funktionsnamen ein." #: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" @@ -577,7 +579,7 @@ msgstr "Übersicht" #: sphinx/themes/basic/defindex.html:15 msgid "Welcome! This is" -msgstr "" +msgstr "Willkommen! Dies ist" #: sphinx/themes/basic/defindex.html:16 msgid "the documentation for" @@ -585,7 +587,7 @@ msgstr "die Dokumentation für" #: sphinx/themes/basic/defindex.html:17 msgid "last updated" -msgstr "" +msgstr "zuletzt aktualisiert" #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" @@ -672,9 +674,7 @@ msgstr "Zuletzt aktualisiert am %(last_updated)s." msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" -"Mit Sphinx %(sphinx_version)s " -"erstellt." +msgstr "Mit Sphinx %(sphinx_version)s erstellt." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -709,28 +709,26 @@ msgid "" " words into the box below and click \"search\". Note that the search\n" " function will automatically search for all of the words. Pages\n" " containing fewer words won't appear in the result list." -msgstr "" -"Von hier aus können Sie die Dokumentation durchsuchen. Geben Sie Ihre " -"Suchbegriffe in das untenstehende Feld ein und klicken Sie auf " -"\"Suchen\". Bitte beachten Sie, dass die Suchfunktion automatisch nach " -"all diesen Worten suchen wird. Seiten, die nicht alle Worte enthalten, " -"werden nicht in der Ergebnisliste erscheinen." +msgstr "Von hier aus können Sie die Dokumentation durchsuchen. Geben Sie Ihre Suchbegriffe in das untenstehende Feld ein und klicken Sie auf \"Suchen\". Bitte beachten Sie, dass die Suchfunktion automatisch nach all diesen Worten suchen wird. Seiten, die nicht alle Worte enthalten, werden nicht in der Ergebnisliste erscheinen." -#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 +#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "suchen" -#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/searchresults.html:21 #: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "Suchergebnisse" -#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/searchresults.html:23 #: sphinx/themes/basic/static/searchtools.js_t:283 msgid "" -"Your search did not match any documents. Please make sure that all words " -"are spelled correctly and that you've selected enough categories." -msgstr "" +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "Ihre Suche ergab keine Treffer. Bitte stellen Sie sicher, dass alle Wörter richtig geschrieben sind und genügend Kategorien ausgewählt sind." #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -787,12 +785,12 @@ msgstr "Suchen" #: sphinx/themes/basic/static/searchtools.js_t:124 msgid "Preparing search..." -msgstr "" +msgstr "Suche wird vorbereitet..." #: sphinx/themes/basic/static/searchtools.js_t:285 #, python-format msgid "Search finished, found %s page(s) matching the search query." -msgstr "" +msgstr "Die Suche ist fertig, es wurde(n) %s Seite(n) mit Treffern gefunden." #: sphinx/themes/basic/static/searchtools.js_t:337 msgid ", in " @@ -836,4 +834,3 @@ msgstr "[Bild: %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[Bild]" - From d7e6ab3cfc431e70e7a06c0361e8c804d76ec4f0 Mon Sep 17 00:00:00 2001 From: Takayuki Shimizukawa Date: Wed, 3 Apr 2013 00:11:55 +0900 Subject: [PATCH 72/76] add first draft for sphinx document translation --- doc/contents.rst | 1 + doc/translationguide.rst | 319 +++++++++++++++++++++++++++++++++++++++ 2 files changed, 320 insertions(+) create mode 100644 doc/translationguide.rst diff --git a/doc/contents.rst b/doc/contents.rst index 5e0ae6c12..044c2d648 100644 --- a/doc/contents.rst +++ b/doc/contents.rst @@ -23,6 +23,7 @@ Sphinx documentation contents faq glossary devguide + translationguide changes examples diff --git a/doc/translationguide.rst b/doc/translationguide.rst new file mode 100644 index 000000000..a03109a9a --- /dev/null +++ b/doc/translationguide.rst @@ -0,0 +1,319 @@ +================================= +Sphinx Document Translation Guide +================================= + +.. topic:: Abstract + + This document describes the translation cycle of Sphinx based document. + As the subject, use Sphinx document its self. + +The Sphinx document is included in the Sphinx code and that managed using +`Mercurial`_ and is hosted on `BitBucket`_. + + hg clone https://bitbucket.org/birkenfeld/sphinx + + +.. _`BitBucket`: http://bitbucket.org +.. _`Mercurial`: http://mercurial.selenic.com/ + + +Translate the document +====================== + +Getting Started +--------------- + +These are the basic steps needed to start translating the Sphinx document. + + +#. Clone the sphinx repository to your machine. + + .. code-block:: bash + + hg clone https://bitbucket.org/birkenfeld/sphinx + cd sphinx/doc + + +#. Add below settings to sphinx document's conf.py if not exists. + + .. code-block:: bash + + locale_dirs = ['locale/'] #for example + gettext_compact = False #optional + + This case-study postulate :confval:`locale_dirs` set to 'locale/' and + :confval:`gettext_compact` set to `False` (the Sphinx document is + configured as such). + +#. Generate pot files from the document. + + .. code-block:: bash + + make gettext + ... + + As a result, many pot files are generated under ``_build/locale`` + directory. By the way, :confval:`locale_dirs` is set to ``locale/`` + then ``locale/pot`` directory is proper location for pot files. + + .. code-block:: bash + + mkdir locale + cp -R _build/locale locale/pot + + +#. Generate po files from pot files. + + Sphinx expects translated po files under ``locale//LC_MESSAGES/`` + directory. For the Japanese, you need ``locale/ja/LC_MESSAGE/`` and + po files copy and renamed from pot files: + + .. code-block:: bash + + mkdir -p locale/ja/LC_MESSAGES + cp -R locale/pot/* ja/LC_MESSAGES + cd locale/ja/LC_MESSAGES + + find . -name "*.pot" -type f -print0 |while read -r -d '' file; do + mv "$file" "${file%.*}.po"; + done + +#. Translating! + + Translate po file under ``sphinx/doc/locale/ja/LC_MESSAGES`` directory. + The case of builders.po: + + .. code-block:: po + + # a5600c3d2e3d48fc8c261ea0284db79b + #: ../../builders.rst:4 + msgid "Available builders" + msgstr "" + + Another case, msgid is multi-line text and contains reStructuredText + syntax: + + .. code-block:: po + + # 302558364e1d41c69b3277277e34b184 + #: ../../builders.rst:9 + msgid "" + "These are the built-in Sphinx builders. More builders can be added by " + ":ref:`extensions `." + msgstr "" + "FILL HERE BY TARGET LANGUAGE FILL HERE BY TARGET LANGUAGE FILL HERE " + "BY TARGET LANGUAGE :ref:`EXTENSIONS ` FILL HERE." + + Please be careful not to break reST notation. + + +#. Compile po files into mo. + + You need msgfmt_ command line tool to compile po files. For example, + the case of debian, you can install the command by this command: + + .. code-block:: bash + + sudo apt-get install gettext + + and do compile each po files: + + .. code-block:: bash + + cd sphinx/doc/locale/ja/LC_MESSAGES + msgfmt builders.po -o builders.mo + ... + + in one command: + + find . -name "*.po" -type f -print0 |while read -r -d '' file; do + msgfmt "$file" -o "${file%.*}.mo"; + done + + + +#. Make translated html (or other format). + + Now you was ready to make the translated document in the + :command:`make html` command. You need :confval:`language` parameter in + ``conf.py`` or you may also be specified the parameter on the command line. + + .. code-block:: bash + + $ cd sphinx/doc + $ make -e SPHINXOPTS="-D language='ja'" html + + Congratulations!! You got the translated document in ``_build/html`` + directory. + + +Update your po files by new pot files +-------------------------------------- + +If the document is updated, it is necessary to generate a updated pot files +and to apply difference to translated po file. +In order to apply the updating difference of a pot file to po file, +using msgmerge_ command. + +.. code-block:: bash + + $ msgmerge -U locale/pot/builders.pot locale/ja/LC_MESSAGES/builders.po + ........... done. + + +.. TODO: write loop command + + +Using Transifex service for team translation +============================================ + +.. TODO: why use transifex? + + +Make new translation project +---------------------------- + +1. Create your transifex_ account (if not have) and login. + + For example: + + :Transifex UserName: + :Transifex Password: + +2. Create new project for your document. + + In the current transifex, since one translation project cannot treat two + or more version of a document, a version number is included in a project + name. + + For example: + + :Project ID: ``sphinx-document-test_1_0`` + :Project URL: https://www.transifex.com/projects/p/sphinx-document-test_1_0/ + + +Install transifex client: tx +----------------------------- + +You need ``tx`` command to upload resources (pot files). + +.. code-block:: bash + + $ pip install transifex-client + +.. seealso:: `Transifex Client v0.8 — Transifex documentation`_ + + +Create config files for tx command +---------------------------------- + +.. code-block:: bash + + $ tx init --user= --pass= + Creating .tx folder... + Transifex instance [https://www.transifex.com]: + Creating skeleton... + Creating config file... + No authentication data found. + No entry found for host https://www.transifex.com. Creating... + Updating /home/ubuntu/.transifexrc file... + Done. + +This process will create ``~/.transifexrc`` file that include auth +information and create ``.tx/config`` in current directory. + + +..... + + +registration pot files in transifex +----------------------------------- + +.. code-block:: bash + + $ cd $BASEDIR/sphinx/doc + $ tx push -s + Pushing translations for resource sphinx-document-test_1_0.builders: + Pushing source file (locale/pot/builders.pot) + Resource does not exist. Creating... + ... + Done. + + +.. note:: + + there is tx command wrapper tool to easier. + + https://bitbucket.org/shimizukawa/sphinx-transifex + + +Forward the translation on transifex +------------------------------------ + + +Pull translated po files and make translated html +------------------------------------------------- + +Get translated catalogs and build mo files (ex. for 'ja'): + +.. code-block:: bash + + $ cd $BASEDIR/sphinx/doc + $ tx pull -l ja + Pulling translations for resource sphinx-document-test_1_0.builders (source: locale/pot/builders.pot) + -> ja: locale/ja/LC_MESSAGES/builders.po + ... + Done. + + +convert po files into mo:: + + $ msgfmt .... + + +Build html (ex. for 'ja'):: + + $ make -e SPHINXOPTS="-D language='ja'" html + +Done. + + + +Tranlating Tips +================ + +* Translating local vs Transifex + + If you want to push all language's po files, you can use `tx push -t`. + (this operatoin overwrite translations in transifex.) + + +* rebuild + + :command:`make clean && make html` + + +Contributing to Sphinx reference translation +============================================ + +The recommended way for new contributors to translate to Sphinx reference +is to join a translation team on Transifex. + +There is `sphinx translation page`_ for Sphinx-1.2 document. + +1. login to transifex_ service. +2. go to `sphinx translation page`_. +3. push ``Request language`` and fill form. +4. wait acceptance by transifex sphinx translation maintainers. +5. (after acceptance) translate on transifex. + + + +.. _Transifex: https://www.transifex.com/ +.. _msgmerge: http://www.gnu.org/software/gettext/manual/html_node/index.html +.. _msgfmt: http://www.gnu.org/software/gettext/manual/html_node/index.html + +.. _`sphinx translation page`: https://www.transifex.com/projects/p/sphinx-doc-1_2_0/ + +.. _`Transifex Client v0.8 — Transifex documentation`: http://help.transifex.com/features/client/index.html + From 244df4e3ba269a31cec5bb9a705a54ab2b8c0ffc Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Tue, 2 Apr 2013 20:15:00 +0200 Subject: [PATCH 73/76] add transifex client configuration --- sphinx/locale/.tx/config | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 sphinx/locale/.tx/config diff --git a/sphinx/locale/.tx/config b/sphinx/locale/.tx/config new file mode 100644 index 000000000..ead6c9fde --- /dev/null +++ b/sphinx/locale/.tx/config @@ -0,0 +1,39 @@ +[main] +host = https://www.transifex.com + +[sphinx-1.sphinx-pot] +source_file = sphinx.pot +source_lang = en +trans.bn = bn/LC_MESSAGES/sphinx.po +trans.ca = ca/LC_MESSAGES/sphinx.po +trans.cs = cs/LC_MESSAGES/sphinx.po +trans.da = da/LC_MESSAGES/sphinx.po +trans.de = de/LC_MESSAGES/sphinx.po +trans.es = es/LC_MESSAGES/sphinx.po +trans.et = et/LC_MESSAGES/sphinx.po +trans.eu = eu/LC_MESSAGES/sphinx.po +trans.fa = fa/LC_MESSAGES/sphinx.po +trans.fi = fi/LC_MESSAGES/sphinx.po +trans.fr = fr/LC_MESSAGES/sphinx.po +trans.he = he/LC_MESSAGES/sphinx.po +trans.hr = hr/LC_MESSAGES/sphinx.po +trans.hu = hu/LC_MESSAGES/sphinx.po +trans.it = it/LC_MESSAGES/sphinx.po +trans.ja = ja/LC_MESSAGES/sphinx.po +trans.ko = ko/LC_MESSAGES/sphinx.po +trans.lt = lt/LC_MESSAGES/sphinx.po +trans.lv = lv/LC_MESSAGES/sphinx.po +trans.nb_NO = nb_NO/LC_MESSAGES/sphinx.po +trans.ne = ne/LC_MESSAGES/sphinx.po +trans.nl = nl/LC_MESSAGES/sphinx.po +trans.pl = pl/LC_MESSAGES/sphinx.po +trans.pt_BR = pt_BR/LC_MESSAGES/sphinx.po +trans.ru = ru/LC_MESSAGES/sphinx.po +trans.sk = sk/LC_MESSAGES/sphinx.po +trans.sl = sl/LC_MESSAGES/sphinx.po +trans.sv = sv/LC_MESSAGES/sphinx.po +trans.tr = tr/LC_MESSAGES/sphinx.po +trans.uk_UA = uk_UA/LC_MESSAGES/sphinx.po +trans.zh_CN = zh_CN/LC_MESSAGES/sphinx.po +trans.zh_TW = zh_TW/LC_MESSAGES/sphinx.po + From f1f7347669ca3606610528a4c03ba05f2e04dfa9 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Tue, 2 Apr 2013 20:16:49 +0200 Subject: [PATCH 74/76] i18n update from transifex: de and hu --- sphinx/locale/de/LC_MESSAGES/sphinx.mo | Bin 10679 -> 10730 bytes sphinx/locale/de/LC_MESSAGES/sphinx.po | 60 +++++++----- sphinx/locale/es/LC_MESSAGES/sphinx.mo | Bin 11034 -> 11034 bytes sphinx/locale/es/LC_MESSAGES/sphinx.po | 2 +- sphinx/locale/hu/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/hu/LC_MESSAGES/sphinx.mo | Bin 10041 -> 11024 bytes sphinx/locale/hu/LC_MESSAGES/sphinx.po | 127 +++++++++++-------------- 7 files changed, 92 insertions(+), 99 deletions(-) diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.mo b/sphinx/locale/de/LC_MESSAGES/sphinx.mo index 897ce96b6c370737e2c049cd20978d17e739b937..720a74472e5ecdf5a71e4a3a0800d8c9b4ca1a46 100644 GIT binary patch delta 1584 zcmXxjduYvJ9LMozINR6^GncdLaoA0qA2Pf6Lpd`U63bjt930!s+4Zo6Iwf-XV;f6S zCW=C28Cz1K7=Ms*DgIC>iuQ+ptgRI9kKd!#UeD$CJkR(0e4jH=^`olyi6_<@XUy-J z#!NNF+)6hl2_K^eU!ou1U?L7%|JeD&40l}$rZMlw8CZ;ya2+P&cASX&Z~`8*^T#qw z?B9oH8JNPvRXZ_&TKEjL@mrjZ-%;P0Ok+|Y73bhAoQxHy12$QAB7Y{rziD_1bMTV& zQD)2-k~g0iP^P1(erA>%aS^7{4hK^^!U*WhbA zpW}1SiRIDI)jGHuD^MGpL2Y~ia{el6B!+F2dZSp-etuAr7N5^%1^mS%UvcfO=Hbc6^Vu8Ff>K?R*C+;ESkr*HHUB zK%S2owDVsuoAb>O4IdLpgtZFip)xptdQ@G=pSjFG9W;n~obOQ^e??{b(~ggzYVOH( z-;@t|9wvwiEQB7c$LXAJn(e>|)T{2ma_rFu_ytvxQQJ3p?!hxq8TwH_uOf`cAnGwz zq6e#S9B#vS450$4#h4;*p`qFw#7^wQc+AOnH_AhOw+NMS8ESq7>angtm2e|cJyUPT zJ5V=v4pqAAsCD;Ii9X8b{(UrFF`!6)q9PkcEi?u0#;K_B0@Q(vP#Y{oZCr_3ztxWK zKqb_ORKpy#^Vd-U+{Og#FW~+)@X$^?wZ1?F@W%GPVj}$^R7rlJHb^dXOOS>NC?EM@ zm?gHq85LL!>YNDjOEyu|e%%XbsCE}{Jl;SZd>3`lAdbb4s0E+<>XN)Eo`pqai%YwY zd&`%v47Wr=4ZecfXtb%!aoXD20@0RGLu=ihaC=}^W5j7{Y1|v$6>W8zoYtn=x`y`o z3!QzThMN7Mny|Aw>=br?@D3&CMgqB8Oz!RgjlOs3E5^h{`ZBUUjO#w)PwVse?8i%YWv1o|)P2jjtNVUps>R5yt%6 zWlXX$=6bp@aX5qy9Kl?Cgj;dOI&bF}QR_b84*ZF!=*%!?JLcdv+=ua4j@sv>oo~u8 z!Oai-3?wqqV31eu^nLh5Bv*6L1;#;16_RN@h4ff%O3LXO8l3C!WC^ykfnV z88n9C%{T+9^c||dg38#DWlRz#BgL6~JdD+-jr#Bi4x>(P0d;a8?f5ckU3#`LX;_M} zcnY1^9JGz|Si?X7V{jBz=}X&xi#po(=)-TQigL+93Hoq1)?+kwVjf;a1sui(d}8O< zP;r8PXy|A+upU#~;SDaJHV&XR=*LRl$^aJApCg(QTt~fuXpS!u(@~XXqbl@St58>Y z0(E7rxR?0mCJj|GibXh!s&p0gSR9n0L|mvxm4_NXXstjcQfKE|Pzhf`t?NO3e;auw zCS>QwFq`;hiiVqsMXbZWs0wOGQ;(_@m2nsU6exsxoX=1jPoOHDw&QP5cm4sX!K@i&#Js3C;=>f;n+iM7gnHF2Sc@0+0gj>Wbk6qYQGvgrDqKT7)-Czr?_8+In2HX} z!ze7W^Ip^mm10ntSJKek9LKwO7NcRKN|?1~G-JH>d@m}2estokLe5_UckIM{>j)}=$F@I#G4!WUS2BazUS9kspMKEDHBM zsKgGT;*=r3TvLrPc&>zo?k<3_cnuZ!1}abpBk?(E!Hda2Tv~#o#8+0jKQx$Do6zQW zmp3$2bp*VZyW1;5@#!lrx2MzV_B0z$8_=9|WE|TP(KT70wG@?D-O, 2013. msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2013-04-02 10:33+0200\n" -"PO-Revision-Date: 2013-04-02 08:51+0000\n" +"PO-Revision-Date: 2013-04-02 15:49+0000\n" "Last-Translator: birkenfeld \n" -"Language-Team: LANGUAGE \n" +"Language-Team: German " +"(http://www.transifex.com/projects/p/sphinx-1/language/de/)\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 0.9.6\n" -"Language: de\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinx/config.py:81 #, python-format @@ -47,7 +47,7 @@ msgstr "Python Enhancement Proposals; PEP %s" #: sphinx/writers/manpage.py:67 sphinx/writers/texinfo.py:217 #, python-format msgid "%B %d, %Y" -msgstr "%d. %m. %Y" +msgstr "%d.%m.%Y" #: sphinx/builders/changes.py:73 msgid "Builtins" @@ -60,11 +60,11 @@ msgstr "Modulebene" #: sphinx/builders/html.py:290 #, python-format msgid "%b %d, %Y" -msgstr "%d. %m. %Y" +msgstr "%d.%m.%Y" #: sphinx/builders/html.py:309 sphinx/themes/basic/defindex.html:30 msgid "General Index" -msgstr "Allgemeiner Index" +msgstr "Stichwortverzeichnis" #: sphinx/builders/html.py:309 msgid "index" @@ -103,8 +103,7 @@ msgstr "Autor: " msgid "%s %s" msgstr "%s-%s" -#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 -#: sphinx/domains/python.py:95 +#: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" msgstr "Parameter" @@ -242,7 +241,7 @@ msgstr "Verursacht" #: sphinx/domains/python.py:323 sphinx/domains/python.py:336 #, python-format msgid "%s() (in module %s)" -msgstr "%s() (in Modul %s)" +msgstr "%s() (im Modul %s)" #: sphinx/domains/python.py:257 #, python-format @@ -567,7 +566,9 @@ msgstr "Los" #: sphinx/themes/agogo/layout.html:58 sphinx/themes/basic/searchbox.html:20 msgid "Enter search terms or a module, class or function name." -msgstr "Geben Sie Suchbegriffe oder einen Modul-, Klassen- oder Funktionsnamen ein." +msgstr "" +"Geben Sie Suchbegriffe oder einen Modul-, Klassen- oder Funktionsnamen " +"ein." #: sphinx/themes/agogo/layout.html:79 sphinx/themes/basic/sourcelink.html:14 msgid "Show Source" @@ -674,7 +675,9 @@ msgstr "Zuletzt aktualisiert am %(last_updated)s." msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "Mit Sphinx %(sphinx_version)s erstellt." +msgstr "" +"Mit Sphinx %(sphinx_version)s " +"erstellt." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -709,26 +712,30 @@ msgid "" " words into the box below and click \"search\". Note that the search\n" " function will automatically search for all of the words. Pages\n" " containing fewer words won't appear in the result list." -msgstr "Von hier aus können Sie die Dokumentation durchsuchen. Geben Sie Ihre Suchbegriffe in das untenstehende Feld ein und klicken Sie auf \"Suchen\". Bitte beachten Sie, dass die Suchfunktion automatisch nach all diesen Worten suchen wird. Seiten, die nicht alle Worte enthalten, werden nicht in der Ergebnisliste erscheinen." +msgstr "" +"Von hier aus können Sie die Dokumentation durchsuchen. Geben Sie Ihre " +"Suchbegriffe in das untenstehende Feld ein und klicken Sie auf " +"\"Suchen\". Bitte beachten Sie, dass die Suchfunktion automatisch nach " +"all diesen Worten suchen wird. Seiten, die nicht alle Worte enthalten, " +"werden nicht in der Ergebnisliste erscheinen." -#: sphinx/themes/basic/search.html:39 -#: sphinx/themes/basic/searchresults.html:17 +#: sphinx/themes/basic/search.html:39 sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "suchen" -#: sphinx/themes/basic/search.html:43 -#: sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/search.html:43 sphinx/themes/basic/searchresults.html:21 #: sphinx/themes/basic/static/searchtools.js_t:281 msgid "Search Results" msgstr "Suchergebnisse" -#: sphinx/themes/basic/search.html:45 -#: sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/search.html:45 sphinx/themes/basic/searchresults.html:23 #: sphinx/themes/basic/static/searchtools.js_t:283 msgid "" -"Your search did not match any documents. Please make sure that all words are" -" spelled correctly and that you've selected enough categories." -msgstr "Ihre Suche ergab keine Treffer. Bitte stellen Sie sicher, dass alle Wörter richtig geschrieben sind und genügend Kategorien ausgewählt sind." +"Your search did not match any documents. Please make sure that all words " +"are spelled correctly and that you've selected enough categories." +msgstr "" +"Ihre Suche ergab keine Treffer. Bitte stellen Sie sicher, dass alle " +"Wörter richtig geschrieben sind und genügend Kategorien ausgewählt sind." #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -834,3 +841,4 @@ msgstr "[Bild: %s]" #: sphinx/writers/manpage.py:227 sphinx/writers/text.py:542 msgid "[image]" msgstr "[Bild]" + diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.mo b/sphinx/locale/es/LC_MESSAGES/sphinx.mo index 7bc9c3470d0c62dee3780fc52e78243f9236ba37..f8bbe168cbef3156ebc861382fc2a7b9b6bb6a4a 100644 GIT binary patch delta 14 VcmbOgHY;qyOi4z|&9fvM1OY8;1#|!a delta 14 VcmbOgHY;qyOi4zI&9fvM1OY8&1#\n" "Language-Team: Leonardo J. Caballero G.\n" "Plural-Forms: nplurals=2; plural=(n != 1)\n" diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.js b/sphinx/locale/hu/LC_MESSAGES/sphinx.js index 074c98f17..7d29147e4 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/hu/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "hu", "plural_expr": "0", "messages": {"Hide Search Matches": "Keres\u00e9si Tal\u00e1latok Elrejt\u00e9se", "Permalink to this definition": "Hivatkoz\u00e1s erre a defin\u00edci\u00f3ra", "Permalink to this headline": "Hivatkoz\u00e1s erre a fejezetc\u00edmre"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "hu", "plural_expr": "(n != 1)", "messages": {"Hide Search Matches": "Keres\u00e9si Tal\u00e1latok Elrejt\u00e9se", "Permalink to this definition": "Hivatkoz\u00e1s erre a defin\u00edci\u00f3ra", "Permalink to this headline": "Hivatkoz\u00e1s erre a fejezetc\u00edmre"}}); \ No newline at end of file diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo index b0094de3401813df44efbbe2051a64eb13eaa4b3..06e544451c26fca6d3021eb73335ed982791efa8 100644 GIT binary patch delta 4451 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 hNO~#PE@`_X_h#M(+d3C}PRt$iV)o&-k, 2011. # +# Translators: +# FIRST AUTHOR , 2011. +# , 2013. msgid "" msgstr "" -"Project-Id-Version: Sphinx 1.0\n" -"Report-Msgid-Bugs-To: szunyog@gmail.com\n" +"Project-Id-Version: Sphinx\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2013-04-02 10:33+0200\n" -"PO-Revision-Date: 2013-04-01 11:58+0200\n" -"Last-Translator: Tibor Toth \n" -"Language-Team: hu \n" -"Plural-Forms: nplurals=1; plural=0\n" +"PO-Revision-Date: 2013-04-02 16:08+0000\n" +"Last-Translator: szunyog \n" +"Language-Team: Hungarian " +"(http://www.transifex.com/projects/p/sphinx-1/language/hu/)\n" +"Plural-Forms: nplurals=2; plural=(n != 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" "Generated-By: Babel 0.9.6\n" #: sphinx/config.py:81 -#, fuzzy, python-format +#, python-format msgid "%s %s documentation" -msgstr "%s %s dokumentációban" +msgstr "%s %s dokumentáció" #: sphinx/environment.py:1510 #, python-format @@ -34,7 +37,7 @@ msgstr "lásd még %s" #: sphinx/environment.py:1570 msgid "Symbols" -msgstr "" +msgstr "Szimbólumok" #: sphinx/roles.py:175 #, python-format @@ -103,17 +106,17 @@ msgstr "%s %s" #: sphinx/domains/c.py:51 sphinx/domains/cpp.py:939 sphinx/domains/python.py:95 msgid "Parameters" -msgstr "" +msgstr "Paraméterek" #: sphinx/domains/c.py:54 sphinx/domains/cpp.py:945 #: sphinx/domains/javascript.py:128 sphinx/domains/python.py:107 msgid "Returns" -msgstr "" +msgstr "Visszatérési érték" #: sphinx/domains/c.py:56 sphinx/domains/javascript.py:130 #: sphinx/domains/python.py:109 msgid "Return type" -msgstr "" +msgstr "Visszatérés típusa" #: sphinx/domains/c.py:141 #, python-format @@ -142,25 +145,22 @@ msgstr "%s (C változó)" #: sphinx/domains/c.py:203 sphinx/domains/cpp.py:1207 #: sphinx/domains/javascript.py:164 sphinx/domains/python.py:560 -#, fuzzy msgid "function" msgstr "függvény" #: sphinx/domains/c.py:204 sphinx/domains/cpp.py:1208 -#, fuzzy msgid "member" -msgstr "tagváltozó" +msgstr "tag" #: sphinx/domains/c.py:205 msgid "macro" -msgstr "" +msgstr "makró" #: sphinx/domains/c.py:206 sphinx/domains/cpp.py:1209 msgid "type" -msgstr "" +msgstr "típus" #: sphinx/domains/c.py:207 -#, fuzzy msgid "variable" msgstr "változó" @@ -191,7 +191,7 @@ msgstr "%s (C++ függvény)" #: sphinx/domains/cpp.py:1206 sphinx/domains/javascript.py:165 #: sphinx/domains/python.py:562 msgid "class" -msgstr "" +msgstr "osztály" #: sphinx/domains/javascript.py:106 sphinx/domains/python.py:253 #, python-format @@ -220,21 +220,19 @@ msgstr "%s (%s attribútum)" #: sphinx/domains/javascript.py:122 msgid "Arguments" -msgstr "" +msgstr "Argumentum" #: sphinx/domains/javascript.py:166 sphinx/domains/python.py:561 msgid "data" -msgstr "" +msgstr "adat" #: sphinx/domains/javascript.py:167 sphinx/domains/python.py:567 -#, fuzzy msgid "attribute" msgstr "attribútum" #: sphinx/domains/python.py:100 -#, fuzzy msgid "Variables" -msgstr "változó" +msgstr "Változók" #: sphinx/domains/python.py:104 msgid "Raises" @@ -302,14 +300,12 @@ msgid "%s (module)" msgstr "%s (modul)" #: sphinx/domains/python.py:491 -#, fuzzy msgid "Python Module Index" -msgstr "Teljes modul tárgymutató" +msgstr "Python Modul Mutató" #: sphinx/domains/python.py:492 -#, fuzzy msgid "modules" -msgstr "modul" +msgstr "modulok" #: sphinx/domains/python.py:538 msgid "Deprecated" @@ -317,24 +313,21 @@ msgstr "Elavult" #: sphinx/domains/python.py:563 sphinx/locale/__init__.py:179 msgid "exception" -msgstr "" +msgstr "kivétel" #: sphinx/domains/python.py:564 msgid "method" -msgstr "" +msgstr "metódus" #: sphinx/domains/python.py:565 -#, fuzzy msgid "class method" -msgstr "osztály metódus" +msgstr "osztály szintű metódus" #: sphinx/domains/python.py:566 -#, fuzzy msgid "static method" msgstr "statikus metódus" #: sphinx/domains/python.py:568 sphinx/locale/__init__.py:175 -#, fuzzy msgid "module" msgstr "modul" @@ -353,12 +346,10 @@ msgid "%s (role)" msgstr "%s (szerepkör)" #: sphinx/domains/rst.py:104 -#, fuzzy msgid "directive" msgstr "direktíva" #: sphinx/domains/rst.py:105 -#, fuzzy msgid "role" msgstr "szerepkör" @@ -374,24 +365,23 @@ msgstr "%sparancssor opció; %s" #: sphinx/domains/std.py:414 msgid "glossary term" -msgstr "" +msgstr "szójegyzék" #: sphinx/domains/std.py:415 msgid "grammar token" -msgstr "" +msgstr "nyelvtani jel" #: sphinx/domains/std.py:416 msgid "reference label" -msgstr "" +msgstr "referencia cimke" #: sphinx/domains/std.py:418 -#, fuzzy msgid "environment variable" msgstr "környezeti változó" #: sphinx/domains/std.py:419 msgid "program option" -msgstr "" +msgstr "program opció" #: sphinx/domains/std.py:449 sphinx/themes/basic/genindex-single.html:32 #: sphinx/themes/basic/genindex-single.html:57 @@ -404,9 +394,8 @@ msgid "Index" msgstr "Tárgymutató" #: sphinx/domains/std.py:450 -#, fuzzy msgid "Module Index" -msgstr "Modul forráskód" +msgstr "Modulok" #: sphinx/domains/std.py:451 sphinx/themes/basic/defindex.html:25 msgid "Search Page" @@ -442,11 +431,11 @@ msgstr "[source]" #: sphinx/ext/refcounting.py:83 msgid "Return value: Always NULL." -msgstr "" +msgstr "Visszatérési érték: Mindig NULL." #: sphinx/ext/refcounting.py:85 msgid "Return value: New reference." -msgstr "" +msgstr "Visszatérési érték: Új referencia érték." #: sphinx/ext/refcounting.py:87 msgid "Return value: Borrowed reference." @@ -488,32 +477,31 @@ msgstr "

      Az összes modul, melynek forrása elérhető

      " #: sphinx/locale/__init__.py:155 msgid "Attention" -msgstr "" +msgstr "Figyelem" #: sphinx/locale/__init__.py:156 msgid "Caution" -msgstr "" +msgstr "Figyelem" #: sphinx/locale/__init__.py:157 msgid "Danger" -msgstr "" +msgstr "Veszély" #: sphinx/locale/__init__.py:158 msgid "Error" -msgstr "" +msgstr "Hiba" #: sphinx/locale/__init__.py:159 msgid "Hint" -msgstr "" +msgstr "Tipp" #: sphinx/locale/__init__.py:160 msgid "Important" -msgstr "" +msgstr "Fontos" #: sphinx/locale/__init__.py:161 -#, fuzzy msgid "Note" -msgstr "Lábjegyzetek" +msgstr "Megjegyzés" #: sphinx/locale/__init__.py:162 msgid "See also" @@ -521,45 +509,44 @@ msgstr "Lásd még" #: sphinx/locale/__init__.py:163 msgid "Tip" -msgstr "" +msgstr "Javaslat" #: sphinx/locale/__init__.py:164 msgid "Warning" -msgstr "" +msgstr "Figyelem" #: sphinx/locale/__init__.py:168 #, python-format msgid "New in version %s" -msgstr "" +msgstr "Új a(z) %s verzióban" #: sphinx/locale/__init__.py:169 #, python-format msgid "Changed in version %s" -msgstr "" +msgstr "A %s verzióban változott" #: sphinx/locale/__init__.py:170 #, python-format msgid "Deprecated since version %s" -msgstr "" +msgstr "Elavult a(z) %s verzió óta" #: sphinx/locale/__init__.py:176 msgid "keyword" -msgstr "" +msgstr "kulcsszó" #: sphinx/locale/__init__.py:177 msgid "operator" -msgstr "" +msgstr "operátor" #: sphinx/locale/__init__.py:178 msgid "object" -msgstr "" +msgstr "objektum" #: sphinx/locale/__init__.py:180 msgid "statement" msgstr "" #: sphinx/locale/__init__.py:181 -#, fuzzy msgid "built-in function" msgstr "beépített függvény" @@ -595,13 +582,12 @@ msgid "Welcome! This is" msgstr "" #: sphinx/themes/basic/defindex.html:16 -#, fuzzy msgid "the documentation for" -msgstr "dokumentációban" +msgstr "" #: sphinx/themes/basic/defindex.html:17 msgid "last updated" -msgstr "" +msgstr "utoljára frissítve" #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" @@ -800,18 +786,17 @@ msgid "Hide Search Matches" msgstr "Keresési Találatok Elrejtése" #: sphinx/themes/basic/static/searchtools.js_t:119 -#, fuzzy msgid "Searching" -msgstr "keresés" +msgstr "Keresés folyamatban" #: sphinx/themes/basic/static/searchtools.js_t:124 msgid "Preparing search..." -msgstr "" +msgstr "Felkészülés a keresésre..." #: sphinx/themes/basic/static/searchtools.js_t:285 #, python-format msgid "Search finished, found %s page(s) matching the search query." -msgstr "" +msgstr "A keresés befejeződött, %s oldal egyezik a keresési felételeknek." #: sphinx/themes/basic/static/searchtools.js_t:337 msgid ", in " From c505f70439cb254a49b56699a6a7542efa6ea112 Mon Sep 17 00:00:00 2001 From: Nozomu Kaneko Date: Wed, 3 Apr 2013 03:25:53 +0900 Subject: [PATCH 75/76] Update the draft of Sphinx Document Translation Guide --- doc/translationguide.rst | 54 +++++++++++++++++++++------------------- 1 file changed, 29 insertions(+), 25 deletions(-) diff --git a/doc/translationguide.rst b/doc/translationguide.rst index a03109a9a..87fe3c922 100644 --- a/doc/translationguide.rst +++ b/doc/translationguide.rst @@ -4,12 +4,13 @@ Sphinx Document Translation Guide .. topic:: Abstract - This document describes the translation cycle of Sphinx based document. - As the subject, use Sphinx document its self. + This document describes the translation cycle of Sphinx-based document. + For illustrative purpose, we use Sphinx document itself in this document. -The Sphinx document is included in the Sphinx code and that managed using +The Sphinx document is included in the Sphinx code. It is managed by `Mercurial`_ and is hosted on `BitBucket`_. + hg clone https://bitbucket.org/birkenfeld/sphinx @@ -41,9 +42,9 @@ These are the basic steps needed to start translating the Sphinx document. locale_dirs = ['locale/'] #for example gettext_compact = False #optional - This case-study postulate :confval:`locale_dirs` set to 'locale/' and - :confval:`gettext_compact` set to `False` (the Sphinx document is - configured as such). + This case-study assumes that :confval:`locale_dirs` is set to 'locale/' and + :confval:`gettext_compact` is set to `False` (the Sphinx document is + already configured as such). #. Generate pot files from the document. @@ -64,9 +65,10 @@ These are the basic steps needed to start translating the Sphinx document. #. Generate po files from pot files. - Sphinx expects translated po files under ``locale//LC_MESSAGES/`` - directory. For the Japanese, you need ``locale/ja/LC_MESSAGE/`` and - po files copy and renamed from pot files: + Sphinx expects that translated po files are under + ``locale//LC_MESSAGES/`` directory. For Japanese, you need + ``locale/ja/LC_MESSAGE/`` directory and po files under the + directory. The po files can be copied and renamed from pot files: .. code-block:: bash @@ -124,19 +126,21 @@ These are the basic steps needed to start translating the Sphinx document. msgfmt builders.po -o builders.mo ... - in one command: + in one line: - find . -name "*.po" -type f -print0 |while read -r -d '' file; do - msgfmt "$file" -o "${file%.*}.mo"; + .. code-block:: bash + + find . -name "*.po" -type f -print0 | while read -r -d '' file; do \ + msgfmt "$file" -o "${file%.*}.mo"; \ done #. Make translated html (or other format). - Now you was ready to make the translated document in the + Now you are ready to make the translated document by the :command:`make html` command. You need :confval:`language` parameter in - ``conf.py`` or you may also be specified the parameter on the command line. + ``conf.py`` or you may also specify the parameter on the command line. .. code-block:: bash @@ -150,8 +154,8 @@ These are the basic steps needed to start translating the Sphinx document. Update your po files by new pot files -------------------------------------- -If the document is updated, it is necessary to generate a updated pot files -and to apply difference to translated po file. +If the document is updated, it is necessary to generate updated pot files +and to apply differences to translated po files. In order to apply the updating difference of a pot file to po file, using msgmerge_ command. @@ -182,9 +186,9 @@ Make new translation project 2. Create new project for your document. - In the current transifex, since one translation project cannot treat two - or more version of a document, a version number is included in a project - name. + Currently, transifex does not allow for a translation project to + have more than one version of document, so you'd better include a + version number in your project name. For example: @@ -219,14 +223,14 @@ Create config files for tx command Updating /home/ubuntu/.transifexrc file... Done. -This process will create ``~/.transifexrc`` file that include auth -information and create ``.tx/config`` in current directory. +This process will create ``.tx/config`` in the current directory, as +well as ``~/.transifexrc`` file that includes auth information. ..... -registration pot files in transifex +Register pot files in transifex ----------------------------------- .. code-block:: bash @@ -285,7 +289,7 @@ Tranlating Tips * Translating local vs Transifex If you want to push all language's po files, you can use `tx push -t`. - (this operatoin overwrite translations in transifex.) + (this operation overwrites translations in transifex.) * rebuild @@ -296,8 +300,8 @@ Tranlating Tips Contributing to Sphinx reference translation ============================================ -The recommended way for new contributors to translate to Sphinx reference -is to join a translation team on Transifex. +The recommended way for new contributors to translate Sphinx reference +is to join the translation team on Transifex. There is `sphinx translation page`_ for Sphinx-1.2 document. From b812de2b3154e0da3178e9b5d019e5be5ad3ec68 Mon Sep 17 00:00:00 2001 From: Georg Brandl Date: Tue, 2 Apr 2013 21:52:45 +0200 Subject: [PATCH 76/76] locale update: turkish (thanks Firat Ozgul) --- sphinx/locale/tr/LC_MESSAGES/sphinx.js | 2 +- sphinx/locale/tr/LC_MESSAGES/sphinx.mo | Bin 10593 -> 10796 bytes sphinx/locale/tr/LC_MESSAGES/sphinx.po | 51 +++++++++++++------------ 3 files changed, 28 insertions(+), 25 deletions(-) diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.js b/sphinx/locale/tr/LC_MESSAGES/sphinx.js index 555a20eab..5a93444ce 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/tr/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "tr", "plural_expr": "0", "messages": {"Hide Search Matches": "Arama Sonu\u00e7lar\u0131n\u0131 Gizle", "Permalink to this definition": "Bu tan\u0131m\u0131n kal\u0131c\u0131 ba\u011flant\u0131s\u0131", "Permalink to this headline": "Bu ba\u015fl\u0131\u011f\u0131n kal\u0131c\u0131 ba\u011flant\u0131s\u0131"}}); \ No newline at end of file +Documentation.addTranslations({"locale": "tr", "plural_expr": "(n > 1)", "messages": {"Hide Search Matches": "Arama Sonu\u00e7lar\u0131n\u0131 Gizle", "Permalink to this definition": "Bu tan\u0131m\u0131n kal\u0131c\u0131 ba\u011flant\u0131s\u0131", "Permalink to this headline": "Bu ba\u015fl\u0131\u011f\u0131n kal\u0131c\u0131 ba\u011flant\u0131s\u0131"}}); \ No newline at end of file diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo index 5202bb631434e04c63d6b28f8447b691d01d4bac..785b56991955695c5dd4c400c9d6f66ab7e4321f 100644 GIT binary patch delta 3712 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, 2011. # +# Translators: +# Fırat Özgül , 2013. +# FIRST AUTHOR , 2011. msgid "" msgstr "" -"Project-Id-Version: Sphinx 1.1pre/339c7a794c1a\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2013-04-02 10:33+0200\n" -"PO-Revision-Date: 2011-09-21 10:14+0200\n" -"Last-Translator: Firat Ozgul \n" -"Language-Team: tr \n" -"Plural-Forms: nplurals=1; plural=0\n" +"PO-Revision-Date: 2013-04-02 18:09+0000\n" +"Last-Translator: istihza \n" +"Language-Team: Turkish " +"(http://www.transifex.com/projects/p/sphinx-1/language/tr/)\n" +"Plural-Forms: nplurals=2; plural=(n > 1)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" @@ -20,7 +23,7 @@ msgstr "" #: sphinx/config.py:81 #, python-format msgid "%s %s documentation" -msgstr "" +msgstr "%s %s belgelendirme çalışması" #: sphinx/environment.py:1510 #, python-format @@ -34,7 +37,7 @@ msgstr "ayrıca bkz. %s" #: sphinx/environment.py:1570 msgid "Symbols" -msgstr "" +msgstr "Simgeler" #: sphinx/roles.py:175 #, python-format @@ -411,16 +414,16 @@ msgstr "şunun takma adı: :class:`%s`" #: sphinx/ext/graphviz.py:294 sphinx/ext/graphviz.py:302 #, python-format msgid "[graph: %s]" -msgstr "" +msgstr "[çizim: %s]" #: sphinx/ext/graphviz.py:296 sphinx/ext/graphviz.py:304 msgid "[graph]" -msgstr "" +msgstr "[çizim]" #: sphinx/ext/intersphinx.py:234 #, python-format msgid "(in %s v%s)" -msgstr "" +msgstr "(%s v%s içinde)" #: sphinx/ext/linkcode.py:66 sphinx/ext/viewcode.py:70 msgid "[source]" @@ -428,15 +431,15 @@ msgstr "[kaynak]" #: sphinx/ext/refcounting.py:83 msgid "Return value: Always NULL." -msgstr "" +msgstr "Dönüş değeri: Her zaman NULL" #: sphinx/ext/refcounting.py:85 msgid "Return value: New reference." -msgstr "" +msgstr "Dönüş değeri: Yeni referans." #: sphinx/ext/refcounting.py:87 msgid "Return value: Borrowed reference." -msgstr "" +msgstr "Dönüş değeri: Ödünç referans" #: sphinx/ext/todo.py:42 msgid "Todo" @@ -576,16 +579,15 @@ msgstr "Genel Bakış" #: sphinx/themes/basic/defindex.html:15 msgid "Welcome! This is" -msgstr "" +msgstr "Hoşgeldiniz! Karşınızda" #: sphinx/themes/basic/defindex.html:16 -#, fuzzy msgid "the documentation for" -msgstr "Bu belgelerde ara" +msgstr "belgelendirme konusu: " #: sphinx/themes/basic/defindex.html:17 msgid "last updated" -msgstr "" +msgstr "son güncelleme" #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" @@ -732,6 +734,8 @@ msgid "" "Your search did not match any documents. Please make sure that all words " "are spelled correctly and that you've selected enough categories." msgstr "" +"Arama sonucunda herhangi bir belge bulunamadı. Bütün kelimeleri doğru " +"yazdığınızdan ve gerekli bütün kategorileri seçtiğinizden emin olun." #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -783,22 +787,21 @@ msgid "Hide Search Matches" msgstr "Arama Sonuçlarını Gizle" #: sphinx/themes/basic/static/searchtools.js_t:119 -#, fuzzy msgid "Searching" -msgstr "ara" +msgstr "Aranıyor" #: sphinx/themes/basic/static/searchtools.js_t:124 msgid "Preparing search..." -msgstr "" +msgstr "Aramaya hazırlanıyor..." #: sphinx/themes/basic/static/searchtools.js_t:285 #, python-format msgid "Search finished, found %s page(s) matching the search query." -msgstr "" +msgstr "Arama tamamlandı. Sorguyu içeren %s sayfa bulundu." #: sphinx/themes/basic/static/searchtools.js_t:337 msgid ", in " -msgstr "" +msgstr ", şunun içinde:" #: sphinx/themes/default/static/sidebar.js_t:83 msgid "Expand sidebar"