diff --git a/CHANGES b/CHANGES index 989b72551..bd846e1fc 100644 --- a/CHANGES +++ b/CHANGES @@ -19,9 +19,35 @@ Documentation Release 1.4.1 (in development) ============================== +Incompatible changes +-------------------- + +* The default format of `today_fmt` and `html_last_updated_fmt` is back to + strftime format again. Locale Date Markup Language is also supported for + backward compatibility until Sphinx-1.5. + +Translations +------------ + +* Added Welsh translation, thanks to Geraint Palmer. +* Added Greek translation, thanks to Stelios Vitalis. +* Added Esperanto translation, thanks to Dinu Gherman. +* Added Hindi translation, thanks to Purnank H. Ghumalia. +* Added Romanian translation, thanks to Razvan Stefanescu. + Bugs fixed ---------- +* C++, added support for ``extern`` and ``thread_local``. +* C++, type declarations are now using the prefixes ``typedef``, ``using``, and ``type``, + depending on the style of declaration. +* #2413: C++, fix crash on duplicate declarations +* #2394: Fix Sphinx crashes when html_last_updated_fmt is invalid +* #2408: dummy builder not available in Makefile and make.bat +* #2412: Fix hyperlink targets are broken in LaTeX builder +* Fix figure directive crashes if non paragraph item is given as caption +* #2418: Fix time formats no longer allowed in today_fmt + Release 1.4 (released Mar 28, 2016) =================================== diff --git a/doc/config.rst b/doc/config.rst index c87db8dd3..9fc086955 100644 --- a/doc/config.rst +++ b/doc/config.rst @@ -330,13 +330,12 @@ Project information replacement for ``|today|``. * If you set :confval:`today` to a non-empty value, it is used. - * Otherwise, the current time is formatted using `Locale Data Markup Language - `_ - and the format given in :confval:`today_fmt`. + * Otherwise, the current time is formatted using :func:`time.strftime` and + the format given in :confval:`today_fmt`. - The default is no :confval:`today` and a :confval:`today_fmt` of ``'MMMM dd, - YYYY'`` (or, if translation is enabled with :confval:`language`, an - equivalent %format for the selected locale). + The default is no :confval:`today` and a :confval:`today_fmt` of ``'%B %d, + %Y'`` (or, if translation is enabled with :confval:`language`, an equivalent + format for the selected locale). .. versionchanged:: 1.4 @@ -344,6 +343,12 @@ Project information Language. strftime format is also supported for backward compatibility until Sphinx-1.5. + .. versionchanged:: 1.4.1 + + Format specification was changed again from Locale Data Markup Language + to strftime. LDML format is also supported for backward compatibility + until Sphinx-1.5. + .. confval:: highlight_language The default language to highlight source code in. The default is @@ -696,9 +701,8 @@ that use Sphinx's HTMLWriter class. .. confval:: html_last_updated_fmt If this is not None, a 'Last updated on:' timestamp is inserted - at every page bottom, using the given `Locale Data Markup Language - `_ - format. The empty string is equivalent to ``'MMM dd, YYYY'`` (or a + at every page bottom, using the given :func:`strftime` format. + The empty string is equivalent to ``'%b %d, %Y'`` (or a locale-dependent equivalent). .. versionchanged:: 1.4 @@ -707,6 +711,13 @@ that use Sphinx's HTMLWriter class. Language. strftime format is also supported for backward compatibility until Sphinx-1.5. + .. versionchanged:: 1.4.1 + + Format specification was changed again from Locale Data Markup Language + to strftime. LDML format is also supported for backward compatibility + until Sphinx-1.5. + + .. confval:: html_use_smartypants If true, `SmartyPants `_ diff --git a/doc/domains.rst b/doc/domains.rst index 803a4343c..2aaf218c0 100644 --- a/doc/domains.rst +++ b/doc/domains.rst @@ -629,9 +629,26 @@ a visibility statement (``public``, ``private`` or ``protected``). A type alias can also be templated:: - .. cpp:type:: template + .. cpp:type:: template \ MyContainer = std::vector + The example are rendered as follows. + + .. cpp:type:: std::vector MyList + + A typedef-like declaration of a type. + + .. cpp:type:: MyContainer::const_iterator + + Declaration of a type alias with unspecified type. + + .. cpp:type:: MyType = std::unordered_map + + Declaration of a type alias. + + .. cpp:type:: template \ + MyContainer = std::vector + .. rst:directive:: .. cpp:enum:: unscoped enum declaration .. cpp:enum-struct:: scoped enum declaration diff --git a/doc/markup/code.rst b/doc/markup/code.rst index c76726441..6e8028fe4 100644 --- a/doc/markup/code.rst +++ b/doc/markup/code.rst @@ -21,8 +21,8 @@ an "unused" primary prompt; this is an example of what *not* to do:: 2 >>> -Syntax highlighting is done with `Pygments `_ (if it's -installed) and handled in a smart way: +Syntax highlighting is done with `Pygments `_ and handled +in a smart way: * There is a "highlighting language" for each source file. Per default, this is ``'python'`` as the majority of files will have to highlight Python snippets, @@ -77,7 +77,7 @@ installed) and handled in a smart way: Line numbers ^^^^^^^^^^^^ -If installed, Pygments can generate line numbers for code blocks. For +Pygments can generate line numbers for code blocks. For automatically-highlighted blocks (those started by ``::``), line numbers must be switched on in a :rst:dir:`highlight` directive, with the ``linenothreshold`` option:: diff --git a/sphinx/builders/epub.py b/sphinx/builders/epub.py index d1610bda9..cc839d757 100644 --- a/sphinx/builders/epub.py +++ b/sphinx/builders/epub.py @@ -530,7 +530,8 @@ class EpubBuilder(StandaloneHTMLBuilder): metadata['copyright'] = self.esc(self.config.epub_copyright) metadata['scheme'] = self.esc(self.config.epub_scheme) metadata['id'] = self.esc(self.config.epub_identifier) - metadata['date'] = self.esc(format_date('YYYY-MM-dd', language=self.config.language)) + metadata['date'] = self.esc(format_date('%Y-%m-%d', language=self.config.language, + warn=self.warn)) metadata['files'] = files metadata['spine'] = spine metadata['guide'] = guide diff --git a/sphinx/builders/html.py b/sphinx/builders/html.py index 367e28b8d..f541daa1a 100644 --- a/sphinx/builders/html.py +++ b/sphinx/builders/html.py @@ -292,8 +292,9 @@ class StandaloneHTMLBuilder(Builder): # typically doesn't include the time of day lufmt = self.config.html_last_updated_fmt if lufmt is not None: - self.last_updated = format_date(lufmt or _('MMM dd, YYYY'), - language=self.config.language) + self.last_updated = format_date(lufmt or _('%b %d, %Y'), + language=self.config.language, + warn=self.warn) else: self.last_updated = None diff --git a/sphinx/directives/patches.py b/sphinx/directives/patches.py index 7e00bc81c..dcdc41a17 100644 --- a/sphinx/directives/patches.py +++ b/sphinx/directives/patches.py @@ -19,10 +19,11 @@ class Figure(images.Figure): def run(self): name = self.options.pop('name', None) - (figure_node,) = images.Figure.run(self) - if isinstance(figure_node, nodes.system_message): - return [figure_node] + result = images.Figure.run(self) + if len(result) == 2 or isinstance(result[0], nodes.system_message): + return result + (figure_node,) = result if name: self.options['name'] = name self.add_name(figure_node) diff --git a/sphinx/domains/cpp.py b/sphinx/domains/cpp.py index a932227a6..6847d5abe 100644 --- a/sphinx/domains/cpp.py +++ b/sphinx/domains/cpp.py @@ -26,7 +26,9 @@ from sphinx.util.pycompat import UnicodeMixin from sphinx.util.docfields import Field, GroupedField """ - Important note on ids: + Important note on ids + ---------------------------------------------------------------------------- + Multiple id generation schemes are used due to backwards compatibility. - v1: 1.2.3 <= version < 1.3 The style used before the rewrite. @@ -38,6 +40,19 @@ from sphinx.util.docfields import Field, GroupedField All versions are generated and attached to elements. The newest is used for the index. All of the versions should work as permalinks. + + Tagnames + ---------------------------------------------------------------------------- + + Each desc_signature node will have the attribute 'sphinx_cpp_tagname' set to + - 'templateParams', if the line is on the form 'template<...>', + - 'declarator', if the line contains the name of the declared object. + No other desc_signature nodes should exist (so far). + + + Grammar + ---------------------------------------------------------------------------- + See http://www.nongnu.org/hcb/ for the grammar, or https://github.com/cplusplus/draft/blob/master/source/grammar.tex for the newest grammar. @@ -75,8 +90,13 @@ from sphinx.util.docfields import Field, GroupedField decl-specifier -> storage-class-specifier -> - "static" (only for member_object and function_object) + ( "static" (only for member_object and function_object) + | "extern" (only for member_object and function_object) | "register" + ) + thread_local[opt] (only for member_object) + (it can also appear before the others) + | type-specifier -> trailing-type-specifier | function-specifier -> "inline" | "virtual" | "explicit" (only for function_object) @@ -456,6 +476,17 @@ class DefinitionError(UnicodeMixin, Exception): return self.description +class _DuplicateSymbolError(UnicodeMixin, Exception): + def __init__(self, symbol, candSymbol): + assert symbol + assert candSymbol + self.symbol = symbol + self.candSymbol = candSymbol + + def __unicode__(self): + return "Internal C++ duplicate symbol error:\n%s" % self.symbol.dump(0) + + class ASTBase(UnicodeMixin): def __eq__(self, other): if type(self) is not type(other): @@ -755,6 +786,7 @@ class ASTTemplateDeclarationPrefix(ASTBase): _verify_description_mode(mode) for t in self.templates: templateNode = addnodes.desc_signature() + templateNode.sphinx_cpp_tagname = 'templateParams' t.describe_signature(templateNode, 'lastIsName', env, symbol) signode += templateNode @@ -1223,9 +1255,10 @@ class ASTParametersQualifiers(ASTBase): class ASTDeclSpecsSimple(ASTBase): - def __init__(self, storage, inline, virtual, explicit, + def __init__(self, storage, threadLocal, inline, virtual, explicit, constexpr, volatile, const, friend): self.storage = storage + self.threadLocal = threadLocal self.inline = inline self.virtual = virtual self.explicit = explicit @@ -1238,6 +1271,7 @@ class ASTDeclSpecsSimple(ASTBase): if not other: return self return ASTDeclSpecsSimple(self.storage or other.storage, + self.threadLocal or other.threadLocal, self.inline or other.inline, self.virtual or other.virtual, self.explicit or other.explicit, @@ -1250,6 +1284,8 @@ class ASTDeclSpecsSimple(ASTBase): res = [] if self.storage: res.append(self.storage) + if self.threadLocal: + res.append('thread_local') if self.inline: res.append('inline') if self.friend: @@ -1273,6 +1309,8 @@ class ASTDeclSpecsSimple(ASTBase): modifiers.append(addnodes.desc_annotation(text, text)) if self.storage: _add(modifiers, self.storage) + if self.threadLocal: + _add(modifiers, 'thread_local') if self.inline: _add(modifiers, 'inline') if self.friend: @@ -1906,6 +1944,12 @@ class ASTType(ASTBase): res.append(text_type(self.decl)) return u''.join(res) + def get_type_declaration_prefix(self): + if self.declSpecs.trailingTypeSpec: + return 'typedef' + else: + return 'type' + def describe_signature(self, signode, mode, env, symbol): _verify_description_mode(mode) self.declSpecs.describe_signature(signode, 'markType', env, symbol) @@ -1970,6 +2014,9 @@ class ASTTypeUsing(ASTBase): res.append(text_type(self.type)) return u''.join(res) + def get_type_declaration_prefix(self): + return 'using' + def describe_signature(self, signode, mode, env, symbol): _verify_description_mode(mode) self.name.describe_signature(signode, mode, env, symbol=symbol) @@ -2172,6 +2219,7 @@ class ASTDeclaration(ASTBase): # let's pop it so we can add templates before that parentNode = signode.parent mainDeclNode = signode + mainDeclNode.sphinx_cpp_tagname = 'declarator' parentNode.pop() assert self.symbol @@ -2182,7 +2230,9 @@ class ASTDeclaration(ASTBase): mainDeclNode += addnodes.desc_annotation(self.visibility + " ", self.visibility + " ") if self.objectType == 'type': - mainDeclNode += addnodes.desc_annotation('type ', 'type ') + prefix = self.declaration.get_type_declaration_prefix() + prefix += ' ' + mainDeclNode += addnodes.desc_annotation(prefix, prefix) elif self.objectType == 'member': pass elif self.objectType == 'function': @@ -2429,14 +2479,23 @@ class Symbol(object): # .. class:: Test symbol._fill_empty(declaration, docname) return symbol - # it may simply be a functin overload - # TODO: it could be a duplicate but let's just insert anyway - # the id generation will warn about it - symbol = Symbol(parent=parentSymbol, identifier=identifier, - templateParams=templateParams, - templateArgs=templateArgs, - declaration=declaration, - docname=docname) + # It may simply be a functin overload, so let's compare ids. + candSymbol = Symbol(parent=parentSymbol, identifier=identifier, + templateParams=templateParams, + templateArgs=templateArgs, + declaration=declaration, + docname=docname) + newId = declaration.get_newest_id() + oldId = symbol.declaration.get_newest_id() + if newId != oldId: + # we already inserted the symbol, so return the new one + symbol = candSymbol + else: + # Redeclaration of the same symbol. + # Let the new one be there, but raise an error to the client + # so it can use the real symbol as subscope. + # This will probably result in a duplicate id warning. + raise _DuplicateSymbolError(symbol, candSymbol) else: symbol = Symbol(parent=parentSymbol, identifier=identifier, templateParams=templateParams, @@ -3022,6 +3081,7 @@ class DefinitionParser(object): def _parse_decl_specs_simple(self, outer, typed): """Just parse the simple ones.""" storage = None + threadLocal = None inline = None virtual = None explicit = None @@ -3036,6 +3096,9 @@ class DefinitionParser(object): if self.skip_word('static'): storage = 'static' continue + if self.skip_word('extern'): + storage = 'extern' + continue if outer == 'member': if self.skip_word('mutable'): storage = 'mutable' @@ -3043,6 +3106,10 @@ class DefinitionParser(object): if self.skip_word('register'): storage = 'register' continue + if not threadLocal and outer == 'member': + threadLocal = self.skip_word('thread_local') + if threadLocal: + continue if outer == 'function': # function-specifiers @@ -3076,8 +3143,8 @@ class DefinitionParser(object): if const: continue break - return ASTDeclSpecsSimple(storage, inline, virtual, explicit, constexpr, - volatile, const, friend) + return ASTDeclSpecsSimple(storage, threadLocal, inline, virtual, + explicit, constexpr, volatile, const, friend) def _parse_decl_specs(self, outer, typed=True): if outer: @@ -3718,8 +3785,14 @@ class CPPObject(ObjectDescription): symbol = parentSymbol.add_name(name) self.env.ref_context['cpp:lastSymbol'] = symbol raise ValueError - symbol = parentSymbol.add_declaration(ast, docname=self.env.docname) - self.env.ref_context['cpp:lastSymbol'] = symbol + + try: + symbol = parentSymbol.add_declaration(ast, docname=self.env.docname) + self.env.ref_context['cpp:lastSymbol'] = symbol + except _DuplicateSymbolError as e: + # Assume we are actually in the old symbol, + # instead of the newly created duplicate. + self.env.ref_context['cpp:lastSymbol'] = e.symbol if ast.objectType == 'enumerator': self._add_enumerator_to_parent(ast) diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.js b/sphinx/locale/bn/LC_MESSAGES/sphinx.js index 5624e417a..e758ee2ee 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/bn/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "bn", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© \u0995\u09aa\u09bf\u09b0\u09be\u0987\u099f %(copyright)s.", "© Copyright %(copyright)s.": "© \u0995\u09aa\u09bf\u09b0\u09be\u0987\u099f %(copyright)s.", ", in ": "", "About these documents": "\u098f\u0987 \u09a1\u0995\u09c1\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09ae\u09cd\u09aa\u09b0\u09cd\u0995\u09c7", "Automatically generated list of changes in version %(version)s": "\u09b8\u09cd\u09ac\u09df\u0982\u0995\u09cd\u09b0\u09bf\u09df\u09ad\u09be\u09ac\u09c7 \u09a4\u09c8\u09b0\u09c0 %(version)s-\u098f \u09aa\u09b0\u09bf\u09ac\u09b0\u09cd\u09a4\u09a8 \u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 \u09a4\u09be\u09b2\u09bf\u0995\u09be\u0964", "C API changes": "C API \u09aa\u09b0\u09bf\u09ac\u09b0\u09cd\u09a4\u09a8", "Changes in Version %(version)s — %(docstitle)s": "%(version)s — %(docstitle)s-\u098f \u09aa\u09b0\u09bf\u09ac\u09b0\u09cd\u09a4\u09a8 \u09b8\u09ae\u09c2\u09b9", "Collapse sidebar": "", "Complete Table of Contents": "\u09aa\u09c2\u09b0\u09cd\u09a3\u09be\u0999\u09cd\u0997 \u09b8\u09c2\u099a\u09c0\u09aa\u09a4\u09cd\u09b0", "Contents": "", "Copyright": "\u0995\u09aa\u09bf\u09b0\u09be\u0987\u099f", "Created using Sphinx %(sphinx_version)s.": "Sphinx %(sphinx_version)s \u09a6\u09bf\u09df\u09c7 \u09a4\u09c8\u09b0\u09c0\u0964", "Enter search terms or a module, class or function name.": "\u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8\u09c7\u09b0 \u099c\u09a8\u09cd\u09af \u099f\u09be\u09b0\u09cd\u09ae, \u09ae\u09a1\u09bf\u0989\u09b2, \u0995\u09cd\u09b2\u09be\u09b8 \u0985\u09a5\u09ac\u09be \u09ab\u09be\u0982\u09b6\u09a8\u09c7\u09b0 \u09a8\u09be\u09ae \u09a6\u09bf\u09a8\u0964", "Expand sidebar": "", "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.": "\u098f\u0996\u09be\u09a8 \u09a5\u09c7\u0995\u09c7 \u098f\u0987 \u09a8\u09a5\u09bf\u0997\u09c1\u09b2\u09c7\u09be\u09a4\u09c7 \u0986\u09aa\u09a8\u09bf \u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8 \u0995\u09b0\u09a4\u09c7 \u09aa\u09be\u09b0\u09ac\u09c7\u09a8\u0964 \n \u0986\u09aa\u09a8\u09be\u09b0 \u0995\u09be\u0999\u09cd\u0995\u09cd\u09b7\u09bf\u09a4 \u09b6\u09ac\u09cd\u09a6\u09b8\u09ae\u09c2\u09b9 \u09a8\u09bf\u099a\u09c7\u09b0 \u09ac\u09be\u0995\u09cd\u09b8\u09c7 \u09b2\u09bf\u0996\u09c1\u09a8 \u098f\u09ac\u0982 \"\u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8\" \u09ac\u09be\u099f\u09a8\u09c7 \u0995\u09cd\u09b2\u09bf\u0995 \u0995\u09b0\u09c1\u09a8\u0964\n \u0989\u09b2\u09cd\u09b2\u09c7\u0996\u09cd\u09af, \u09b8\u0995\u09b2 \u09b6\u09ac\u09cd\u09a6\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 \u0989\u09aa\u09b8\u09cd\u09a5\u09bf\u09a4\u09bf \u09a8\u09bf\u09df\u09c7 \u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8 \u0995\u09b0\u09be \u09b9\u09ac\u09c7\u0964 \u09af\u09c7\u09b8\u09ac \u09aa\u09be\u09a4\u09be\u09df \u09b8\u0995\u09b2\n \u09b6\u09ac\u09cd\u09a6 \u09a8\u09c7\u0987 \u09b8\u09c7\u0997\u09c1\u09b2\u09c7\u09be \u09ac\u09be\u09a6 \u09a6\u09c7\u09df\u09be \u09b9\u09ac\u09c7\u0964", "Full index on one page": "\u098f\u0995 \u09aa\u09be\u09a4\u09be\u09df \u09b8\u09ae\u09cd\u09aa\u09c2\u09b0\u09cd\u09a3 \u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8", "General Index": "\u09b8\u09be\u09a7\u09be\u09b0\u09a3 \u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8", "Global Module Index": "\u0997\u09cd\u09b2\u09c7\u09be\u09ac\u09be\u09b2 \u09ae\u09a1\u09bf\u0989\u09b2 \u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8", "Go": "\u09af\u09be\u09a8", "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", "Index": "\u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8", "Index – %(key)s": "\u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8 – %(key)s", "Index pages by letter": "\u09ac\u09b0\u09cd\u09a3\u09be\u09a8\u09c1\u09b8\u09be\u09b0\u09c7 \u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8 \u09aa\u09be\u09a4\u09be", "Indices and tables:": "\u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8 \u0993 \u099f\u09c7\u09ac\u09bf\u09b2 \u09b8\u09ae\u09c2\u09b9:", "Last updated on %(last_updated)s.": "%(last_updated)s \u09b8\u09b0\u09cd\u09ac\u09b6\u09c7\u09b7 \u09aa\u09b0\u09bf\u09ac\u09b0\u09cd\u09a4\u09a8 \u0995\u09b0\u09be \u09b9\u09df\u09c7\u099b\u09c7\u0964", "Library changes": "\u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf\u09b0 \u09aa\u09b0\u09bf\u09ac\u09b0\u09cd\u09a4\u09a8", "Navigation": "\u09a8\u09c7\u09ad\u09bf\u0997\u09c7\u09b6\u09a8", "Next topic": "\u09aa\u09b0\u09ac\u09b0\u09cd\u09a4\u09c0 \u099f\u09aa\u09bf\u0995", "Other changes": "\u0985\u09a8\u09cd\u09af\u09be\u09a8\u09cd\u09af \u09aa\u09b0\u09bf\u09ac\u09b0\u09cd\u09a4\u09a8", "Overview": "\u09ad\u09c1\u09ae\u09bf\u0995\u09be", "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", "Please activate JavaScript to enable the search\n functionality.": "\u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8 \u0995\u09b0\u09be\u09b0 \u099c\u09a8\u09cd\u09af \u0985\u09a8\u09c1\u0997\u09cd\u09b0\u09b9\u09aa\u09c2\u09b0\u09cd\u09ac\u0995 \u099c\u09be\u09ad\u09be\u09b8\u09cd\u0995\u09cd\u09b0\u09bf\u09aa\u09cd\u099f \n \u09b8\u0995\u09cd\u09b0\u09bf\u09df \u0995\u09b0\u09c1\u09a8\u0964", "Preparing search...": "", "Previous topic": "\u09aa\u09c2\u09b0\u09cd\u09ac\u09ac\u09b0\u09cd\u09a4\u09c0 \u099f\u09aa\u09bf\u0995", "Quick search": "\u09a6\u09cd\u09b0\u09c1\u09a4 \u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8", "Search": "\u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8", "Search Page": "\u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8 \u09aa\u09be\u09a4\u09be", "Search Results": "\u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8\u09c7\u09b0 \u09ab\u09b2\u09be\u09ab\u09b2", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "%(docstitle)s \u098f\u09b0 \u09ae\u09a7\u09cd\u09af\u09c7 \u0996\u09c1\u0981\u099c\u09c1\u09a8", "Searching": "", "Show Source": "\u09b8\u09c7\u09be\u09b0\u09cd\u09b8 \u09a6\u09c7\u0996\u09c1\u09a8", "Table Of Contents": "\u09b8\u09c2\u099a\u09c0\u09aa\u09a4\u09cd\u09b0", "This Page": "\u098f\u0987 \u09aa\u09be\u09a4\u09be", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "\u09b8\u0995\u09b2 \u09ab\u09be\u0982\u09b6\u09a8, \u0995\u09cd\u09b2\u09be\u09b8, \u099f\u09be\u09b0\u09cd\u09ae", "can be huge": "\u0996\u09c1\u09ac \u09ac\u09dc \u09b9\u09a4\u09c7 \u09aa\u09be\u09b0\u09c7", "last updated": "", "lists all sections and subsections": "\u09b8\u0995\u09b2 \u0985\u09a8\u09c1\u099a\u09cd\u099b\u09c7\u09a6 \u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 \u09a4\u09be\u09b2\u09bf\u0995\u09be", "next chapter": "\u09aa\u09b0\u09ac\u09b0\u09cd\u09a4\u09c0 \u0985\u09a7\u09cd\u09af\u09be\u09df", "previous chapter": "\u09aa\u09c2\u09b0\u09cd\u09ac\u09ac\u09b0\u09cd\u09a4\u09c0 \u0985\u09a7\u09cd\u09af\u09be\u09df", "quick access to all modules": "\u09b8\u0995\u09b2 \u09ae\u09a1\u09bf\u0989\u09b2\u09c7 \u09a6\u09cd\u09b0\u09c1\u09a4 \u09aa\u09cd\u09b0\u09ac\u09c7\u09b6", "search": "\u0996\u09c1\u0981\u099c\u09c1\u09a8", "search this documentation": "\u098f\u0987 \u09b8\u09b9\u09be\u09df\u09bf\u0995\u09be\u09a4\u09c7 \u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be \u0995\u09b0\u09c1\u09a8", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ No newline at end of file +Documentation.addTranslations({"locale": "bn", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© \u0995\u09aa\u09bf\u09b0\u09be\u0987\u099f %(copyright)s.", "© Copyright %(copyright)s.": "© \u0995\u09aa\u09bf\u09b0\u09be\u0987\u099f %(copyright)s.", ", in ": "", "About these documents": "\u098f\u0987 \u09a1\u0995\u09c1\u09ae\u09c7\u09a8\u09cd\u099f \u09b8\u09ae\u09cd\u09aa\u09b0\u09cd\u0995\u09c7", "Automatically generated list of changes in version %(version)s": "\u09b8\u09cd\u09ac\u09df\u0982\u0995\u09cd\u09b0\u09bf\u09df\u09ad\u09be\u09ac\u09c7 \u09a4\u09c8\u09b0\u09c0 %(version)s-\u098f \u09aa\u09b0\u09bf\u09ac\u09b0\u09cd\u09a4\u09a8 \u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 \u09a4\u09be\u09b2\u09bf\u0995\u09be\u0964", "C API changes": "C API \u09aa\u09b0\u09bf\u09ac\u09b0\u09cd\u09a4\u09a8", "Changes in Version %(version)s — %(docstitle)s": "%(version)s — %(docstitle)s-\u098f \u09aa\u09b0\u09bf\u09ac\u09b0\u09cd\u09a4\u09a8 \u09b8\u09ae\u09c2\u09b9", "Collapse sidebar": "", "Complete Table of Contents": "\u09aa\u09c2\u09b0\u09cd\u09a3\u09be\u0999\u09cd\u0997 \u09b8\u09c2\u099a\u09c0\u09aa\u09a4\u09cd\u09b0", "Contents": "", "Copyright": "\u0995\u09aa\u09bf\u09b0\u09be\u0987\u099f", "Created using Sphinx %(sphinx_version)s.": "Sphinx %(sphinx_version)s \u09a6\u09bf\u09df\u09c7 \u09a4\u09c8\u09b0\u09c0\u0964", "Expand sidebar": "", "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.": "\u098f\u0996\u09be\u09a8 \u09a5\u09c7\u0995\u09c7 \u098f\u0987 \u09a8\u09a5\u09bf\u0997\u09c1\u09b2\u09c7\u09be\u09a4\u09c7 \u0986\u09aa\u09a8\u09bf \u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8 \u0995\u09b0\u09a4\u09c7 \u09aa\u09be\u09b0\u09ac\u09c7\u09a8\u0964 \n \u0986\u09aa\u09a8\u09be\u09b0 \u0995\u09be\u0999\u09cd\u0995\u09cd\u09b7\u09bf\u09a4 \u09b6\u09ac\u09cd\u09a6\u09b8\u09ae\u09c2\u09b9 \u09a8\u09bf\u099a\u09c7\u09b0 \u09ac\u09be\u0995\u09cd\u09b8\u09c7 \u09b2\u09bf\u0996\u09c1\u09a8 \u098f\u09ac\u0982 \"\u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8\" \u09ac\u09be\u099f\u09a8\u09c7 \u0995\u09cd\u09b2\u09bf\u0995 \u0995\u09b0\u09c1\u09a8\u0964\n \u0989\u09b2\u09cd\u09b2\u09c7\u0996\u09cd\u09af, \u09b8\u0995\u09b2 \u09b6\u09ac\u09cd\u09a6\u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 \u0989\u09aa\u09b8\u09cd\u09a5\u09bf\u09a4\u09bf \u09a8\u09bf\u09df\u09c7 \u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8 \u0995\u09b0\u09be \u09b9\u09ac\u09c7\u0964 \u09af\u09c7\u09b8\u09ac \u09aa\u09be\u09a4\u09be\u09df \u09b8\u0995\u09b2\n \u09b6\u09ac\u09cd\u09a6 \u09a8\u09c7\u0987 \u09b8\u09c7\u0997\u09c1\u09b2\u09c7\u09be \u09ac\u09be\u09a6 \u09a6\u09c7\u09df\u09be \u09b9\u09ac\u09c7\u0964", "Full index on one page": "\u098f\u0995 \u09aa\u09be\u09a4\u09be\u09df \u09b8\u09ae\u09cd\u09aa\u09c2\u09b0\u09cd\u09a3 \u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8", "General Index": "\u09b8\u09be\u09a7\u09be\u09b0\u09a3 \u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8", "Global Module Index": "\u0997\u09cd\u09b2\u09c7\u09be\u09ac\u09be\u09b2 \u09ae\u09a1\u09bf\u0989\u09b2 \u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8", "Go": "\u09af\u09be\u09a8", "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", "Index": "\u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8", "Index – %(key)s": "\u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8 – %(key)s", "Index pages by letter": "\u09ac\u09b0\u09cd\u09a3\u09be\u09a8\u09c1\u09b8\u09be\u09b0\u09c7 \u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8 \u09aa\u09be\u09a4\u09be", "Indices and tables:": "\u0987\u09a8\u09a1\u09c7\u0995\u09cd\u09b8 \u0993 \u099f\u09c7\u09ac\u09bf\u09b2 \u09b8\u09ae\u09c2\u09b9:", "Last updated on %(last_updated)s.": "%(last_updated)s \u09b8\u09b0\u09cd\u09ac\u09b6\u09c7\u09b7 \u09aa\u09b0\u09bf\u09ac\u09b0\u09cd\u09a4\u09a8 \u0995\u09b0\u09be \u09b9\u09df\u09c7\u099b\u09c7\u0964", "Library changes": "\u09b2\u09be\u0987\u09ac\u09cd\u09b0\u09c7\u09b0\u09bf\u09b0 \u09aa\u09b0\u09bf\u09ac\u09b0\u09cd\u09a4\u09a8", "Navigation": "\u09a8\u09c7\u09ad\u09bf\u0997\u09c7\u09b6\u09a8", "Next topic": "\u09aa\u09b0\u09ac\u09b0\u09cd\u09a4\u09c0 \u099f\u09aa\u09bf\u0995", "Other changes": "\u0985\u09a8\u09cd\u09af\u09be\u09a8\u09cd\u09af \u09aa\u09b0\u09bf\u09ac\u09b0\u09cd\u09a4\u09a8", "Overview": "\u09ad\u09c1\u09ae\u09bf\u0995\u09be", "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", "Please activate JavaScript to enable the search\n functionality.": "\u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8 \u0995\u09b0\u09be\u09b0 \u099c\u09a8\u09cd\u09af \u0985\u09a8\u09c1\u0997\u09cd\u09b0\u09b9\u09aa\u09c2\u09b0\u09cd\u09ac\u0995 \u099c\u09be\u09ad\u09be\u09b8\u09cd\u0995\u09cd\u09b0\u09bf\u09aa\u09cd\u099f \n \u09b8\u0995\u09cd\u09b0\u09bf\u09df \u0995\u09b0\u09c1\u09a8\u0964", "Preparing search...": "", "Previous topic": "\u09aa\u09c2\u09b0\u09cd\u09ac\u09ac\u09b0\u09cd\u09a4\u09c0 \u099f\u09aa\u09bf\u0995", "Quick search": "\u09a6\u09cd\u09b0\u09c1\u09a4 \u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8", "Search": "\u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8", "Search Page": "\u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8 \u09aa\u09be\u09a4\u09be", "Search Results": "\u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be\u09a8\u09c7\u09b0 \u09ab\u09b2\u09be\u09ab\u09b2", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "%(docstitle)s \u098f\u09b0 \u09ae\u09a7\u09cd\u09af\u09c7 \u0996\u09c1\u0981\u099c\u09c1\u09a8", "Searching": "", "Show Source": "\u09b8\u09c7\u09be\u09b0\u09cd\u09b8 \u09a6\u09c7\u0996\u09c1\u09a8", "Table Of Contents": "\u09b8\u09c2\u099a\u09c0\u09aa\u09a4\u09cd\u09b0", "This Page": "\u098f\u0987 \u09aa\u09be\u09a4\u09be", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "\u09b8\u0995\u09b2 \u09ab\u09be\u0982\u09b6\u09a8, \u0995\u09cd\u09b2\u09be\u09b8, \u099f\u09be\u09b0\u09cd\u09ae", "can be huge": "\u0996\u09c1\u09ac \u09ac\u09dc \u09b9\u09a4\u09c7 \u09aa\u09be\u09b0\u09c7", "last updated": "", "lists all sections and subsections": "\u09b8\u0995\u09b2 \u0985\u09a8\u09c1\u099a\u09cd\u099b\u09c7\u09a6 \u09b8\u09ae\u09c2\u09b9\u09c7\u09b0 \u09a4\u09be\u09b2\u09bf\u0995\u09be", "next chapter": "\u09aa\u09b0\u09ac\u09b0\u09cd\u09a4\u09c0 \u0985\u09a7\u09cd\u09af\u09be\u09df", "previous chapter": "\u09aa\u09c2\u09b0\u09cd\u09ac\u09ac\u09b0\u09cd\u09a4\u09c0 \u0985\u09a7\u09cd\u09af\u09be\u09df", "quick access to all modules": "\u09b8\u0995\u09b2 \u09ae\u09a1\u09bf\u0989\u09b2\u09c7 \u09a6\u09cd\u09b0\u09c1\u09a4 \u09aa\u09cd\u09b0\u09ac\u09c7\u09b6", "search": "\u0996\u09c1\u0981\u099c\u09c1\u09a8", "search this documentation": "\u098f\u0987 \u09b8\u09b9\u09be\u09df\u09bf\u0995\u09be\u09a4\u09c7 \u0985\u09a8\u09c1\u09b8\u09a8\u09cd\u09a7\u09be \u0995\u09b0\u09c1\u09a8", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ 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 ae40e0137..f2bc637f4 100644 Binary files a/sphinx/locale/bn/LC_MESSAGES/sphinx.mo and b/sphinx/locale/bn/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/bn/LC_MESSAGES/sphinx.po b/sphinx/locale/bn/LC_MESSAGES/sphinx.po index 1ba3098ab..4c941e1df 100644 --- a/sphinx/locale/bn/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/bn/LC_MESSAGES/sphinx.po @@ -1,23 +1,23 @@ -# Bengali translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# FIRST AUTHOR , 2009 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" "Last-Translator: Takayuki Shimizukawa \n" -"Language: bn\n" -"Language-Team: Bengali " -"(http://www.transifex.com/projects/p/sphinx-1/language/bn/)\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Language-Team: Bengali (http://www.transifex.com/sphinx-doc/sphinx-1/language/bn/)\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 2.2.0\n" +"Language: bn\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinx/config.py:91 #, python-format @@ -178,9 +178,8 @@ msgid "variable" msgstr "" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "প্যারামিটার" +msgstr "" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -698,9 +697,7 @@ msgstr "%(last_updated)s সর্বশেষ পরিবর্তন কর msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" -"Sphinx %(sphinx_version)s দিয়ে " -"তৈরী।" +msgstr "Sphinx %(sphinx_version)s দিয়ে তৈরী।" #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -727,9 +724,7 @@ msgstr "পরবর্তী অধ্যায়" msgid "" "Please activate JavaScript to enable the search\n" " functionality." -msgstr "" -"অনুসন্ধান করার জন্য অনুগ্রহপূর্বক জাভাস্ক্রিপ্ট \n" -" সক্রিয় করুন।" +msgstr "অনুসন্ধান করার জন্য অনুগ্রহপূর্বক জাভাস্ক্রিপ্ট \n সক্রিয় করুন।" #: sphinx/themes/basic/search.html:32 msgid "" @@ -737,28 +732,25 @@ 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 "" -"এখান থেকে এই নথিগুলোতে আপনি অনুসন্ধান করতে পারবেন। \n" -" আপনার কাঙ্ক্ষিত শব্দসমূহ নিচের বাক্সে লিখুন এবং \"অনুসন্ধান\" বাটনে " -"ক্লিক করুন।\n" -" উল্লেখ্য, সকল শব্দসমূহের উপস্থিতি নিয়ে অনুসন্ধান করা হবে। যেসব পাতায় " -"সকল\n" -" শব্দ নেই সেগুলো বাদ দেয়া হবে।" +msgstr "এখান থেকে এই নথিগুলোতে আপনি অনুসন্ধান করতে পারবেন। \n আপনার কাঙ্ক্ষিত শব্দসমূহ নিচের বাক্সে লিখুন এবং \"অনুসন্ধান\" বাটনে ক্লিক করুন।\n উল্লেখ্য, সকল শব্দসমূহের উপস্থিতি নিয়ে অনুসন্ধান করা হবে। যেসব পাতায় সকল\n শব্দ নেই সেগুলো বাদ দেয়া হবে।" -#: 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 "খুঁজুন" -#: 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:282 msgid "Search Results" msgstr "অনুসন্ধানের ফলাফল" -#: 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:284 msgid "" -"Your search did not match any documents. Please make sure that all words " -"are spelled correctly and that you've selected enough categories." +"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 @@ -861,9 +853,8 @@ msgid "Release" msgstr "রিলিজ" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "বিপজ্জনক" +msgstr "" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -886,16 +877,3 @@ msgstr "" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[ছবি]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%B %d, %Y" - -#~ msgid "%b %d, %Y" -#~ msgstr "%b %d, %Y" - -#~ msgid "(The <> is located in %s, line %d.)" -#~ msgstr "" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "অনুসন্ধানের জন্য টার্ম, মডিউল, ক্লাস অথবা ফাংশনের নাম দিন।" - diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.js b/sphinx/locale/ca/LC_MESSAGES/sphinx.js index c8cdc2bbb..d3ba424ad 100644 --- a/sphinx/locale/ca/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ca/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "ca", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": "", "About these documents": "Quant a aquests documents", "Automatically generated list of changes in version %(version)s": "Llista de canvis de la versi\u00f3 %(version)s generada autom\u00e0ticament", "C API changes": "Canvis a la API de C", "Changes in Version %(version)s — %(docstitle)s": "Canvis a la Versi\u00f3 %(version)s — %(docstitle)s", "Collapse sidebar": "", "Complete Table of Contents": "Taula de Contingut Completa", "Contents": "", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "Creat amb Sphinx %(sphinx_version)s.", "Enter search terms or a module, class or function name.": "Entra paraules de cerca o el nom d'un m\u00f2dul, classe o funci\u00f3.", "Expand sidebar": "", "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.": "Des d'aqu\u00ed pots fer cerques en aquests documents. Entra les \nparaules de la teva cerca i clica el bot\u00f3 \"cerca\". Tingues en compte\nque la cerca inclour\u00e0 totes les paraules que posis. Les p\u00e0gines que no\ntenen totes les paraules no sortir\u00e0n.", "Full index on one page": "\u00cdndex complet en una p\u00e0gina", "General Index": "\u00cdndex General", "Global Module Index": "\u00cdndex Global de M\u00f2duls", "Go": "Ves a", "Hide Search Matches": "Oculta Resultats de Cerca", "Index": "\u00cdndex", "Index – %(key)s": "\u00cdndes – %(key)s", "Index pages by letter": "P\u00e0gines d'\u00edndex per lletra", "Indices and tables:": "\u00cdndexs i taules:", "Last updated on %(last_updated)s.": "\u00daltima actualitzaci\u00f3 el %(last_updated)s.", "Library changes": "Canvis a la llibreria", "Navigation": "Navegaci\u00f3", "Next topic": "Tema seg\u00fcent", "Other changes": "Altres canvis", "Overview": "Resum", "Permalink to this definition": "Link permanent a aquesta definici\u00f3", "Permalink to this headline": "Link permanent a aquest t\u00edtol", "Please activate JavaScript to enable the search\n functionality.": "Activa JavaScript per utilitzar la funcionalitat\nde cerca.", "Preparing search...": "", "Previous topic": "Tema anterior", "Quick search": "Cerca r\u00e0pida", "Search": "Cerca", "Search Page": "P\u00e0gina de Cerca", "Search Results": "Resultats de la Cerca", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "Cerca dins de %(docstitle)s", "Searching": "", "Show Source": "Mostra Codi Font", "Table Of Contents": "Taula de Contingut", "This Page": "Aquesta P\u00e0gina", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "totes les funcions, classes, termes", "can be huge": "pot ser gegant", "last updated": "", "lists all sections and subsections": "llista totes les seccions i subseccions", "next chapter": "cap\u00edtol seg\u00fcent", "previous chapter": "cap\u00edtol anterior", "quick access to all modules": "acc\u00e9s r\u00e0pid a tots els m\u00f2duls", "search": "cerca", "search this documentation": "cerca aquesta documentaci\u00f3", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ No newline at end of file +Documentation.addTranslations({"locale": "ca", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": "", "About these documents": "Quant a aquests documents", "Automatically generated list of changes in version %(version)s": "Llista de canvis de la versi\u00f3 %(version)s generada autom\u00e0ticament", "C API changes": "Canvis a la API de C", "Changes in Version %(version)s — %(docstitle)s": "Canvis a la Versi\u00f3 %(version)s — %(docstitle)s", "Collapse sidebar": "", "Complete Table of Contents": "Taula de Contingut Completa", "Contents": "", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "Creat amb Sphinx %(sphinx_version)s.", "Expand sidebar": "", "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.": "Des d'aqu\u00ed pots fer cerques en aquests documents. Entra les \nparaules de la teva cerca i clica el bot\u00f3 \"cerca\". Tingues en compte\nque la cerca inclour\u00e0 totes les paraules que posis. Les p\u00e0gines que no\ntenen totes les paraules no sortir\u00e0n.", "Full index on one page": "\u00cdndex complet en una p\u00e0gina", "General Index": "\u00cdndex General", "Global Module Index": "\u00cdndex Global de M\u00f2duls", "Go": "Ves a", "Hide Search Matches": "Oculta Resultats de Cerca", "Index": "\u00cdndex", "Index – %(key)s": "\u00cdndes – %(key)s", "Index pages by letter": "P\u00e0gines d'\u00edndex per lletra", "Indices and tables:": "\u00cdndexs i taules:", "Last updated on %(last_updated)s.": "\u00daltima actualitzaci\u00f3 el %(last_updated)s.", "Library changes": "Canvis a la llibreria", "Navigation": "Navegaci\u00f3", "Next topic": "Tema seg\u00fcent", "Other changes": "Altres canvis", "Overview": "Resum", "Permalink to this definition": "Link permanent a aquesta definici\u00f3", "Permalink to this headline": "Link permanent a aquest t\u00edtol", "Please activate JavaScript to enable the search\n functionality.": "Activa JavaScript per utilitzar la funcionalitat\nde cerca.", "Preparing search...": "", "Previous topic": "Tema anterior", "Quick search": "Cerca r\u00e0pida", "Search": "Cerca", "Search Page": "P\u00e0gina de Cerca", "Search Results": "Resultats de la Cerca", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "Cerca dins de %(docstitle)s", "Searching": "", "Show Source": "Mostra Codi Font", "Table Of Contents": "Taula de Contingut", "This Page": "Aquesta P\u00e0gina", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "totes les funcions, classes, termes", "can be huge": "pot ser gegant", "last updated": "", "lists all sections and subsections": "llista totes les seccions i subseccions", "next chapter": "cap\u00edtol seg\u00fcent", "previous chapter": "cap\u00edtol anterior", "quick access to all modules": "acc\u00e9s r\u00e0pid a tots els m\u00f2duls", "search": "cerca", "search this documentation": "cerca aquesta documentaci\u00f3", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ 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 41b83e65b..373cb2c45 100644 Binary files a/sphinx/locale/ca/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ca/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ca/LC_MESSAGES/sphinx.po b/sphinx/locale/ca/LC_MESSAGES/sphinx.po index cbe0404c5..73ab50aa7 100644 --- a/sphinx/locale/ca/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ca/LC_MESSAGES/sphinx.po @@ -1,23 +1,23 @@ -# Catalan translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# FIRST AUTHOR , 2009 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" "Last-Translator: Takayuki Shimizukawa \n" -"Language: ca\n" -"Language-Team: Catalan " -"(http://www.transifex.com/projects/p/sphinx-1/language/ca/)\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Language-Team: Catalan (http://www.transifex.com/sphinx-doc/sphinx-1/language/ca/)\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 2.2.0\n" +"Language: ca\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinx/config.py:91 #, python-format @@ -178,9 +178,8 @@ msgid "variable" msgstr "variable" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "Paràmetres" +msgstr "" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -474,9 +473,9 @@ msgid "<>" msgstr "" #: sphinx/ext/todo.py:132 -#, fuzzy, python-format +#, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "(La <> està a %s, línia %d i.)" +msgstr "" #: sphinx/ext/todo.py:141 msgid "original entry" @@ -698,9 +697,7 @@ msgstr "Última actualització el %(last_updated)s." msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" -"Creat amb Sphinx " -"%(sphinx_version)s." +msgstr "Creat amb Sphinx %(sphinx_version)s." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -727,9 +724,7 @@ msgstr "capítol següent" msgid "" "Please activate JavaScript to enable the search\n" " functionality." -msgstr "" -"Activa JavaScript per utilitzar la funcionalitat\n" -"de cerca." +msgstr "Activa JavaScript per utilitzar la funcionalitat\nde cerca." #: sphinx/themes/basic/search.html:32 msgid "" @@ -737,26 +732,25 @@ 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 "" -"Des d'aquí pots fer cerques en aquests documents. Entra les \n" -"paraules de la teva cerca i clica el botó \"cerca\". Tingues en compte\n" -"que la cerca inclourà totes les paraules que posis. Les pàgines que no\n" -"tenen totes les paraules no sortiràn." +msgstr "Des d'aquí pots fer cerques en aquests documents. Entra les \nparaules de la teva cerca i clica el botó \"cerca\". Tingues en compte\nque la cerca inclourà totes les paraules que posis. Les pàgines que no\ntenen totes les paraules no sortiràn." -#: 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 "cerca" -#: 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:282 msgid "Search Results" msgstr "Resultats de la Cerca" -#: 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:284 msgid "" -"Your search did not match any documents. Please make sure that all words " -"are spelled correctly and that you've selected enough categories." +"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 @@ -859,9 +853,8 @@ msgid "Release" msgstr "Versió" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "Perill" +msgstr "" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -884,13 +877,3 @@ msgstr "" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[imatge]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%d de %B de %Y" - -#~ msgid "%b %d, %Y" -#~ msgstr "%d %b, %Y" - -#~ 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ó." - diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.js b/sphinx/locale/cs/LC_MESSAGES/sphinx.js index dd832f6e3..c2e3ea2ec 100644 --- a/sphinx/locale/cs/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/cs/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "cs", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", v ", "About these documents": "O t\u011bchto dokumentech", "Automatically generated list of changes in version %(version)s": "Automaticky generovan\u00fd seznam zm\u011bn ve verzi %(version)s", "C API changes": "Zm\u011bny API", "Changes in Version %(version)s — %(docstitle)s": "Zm\u011bny ve verzi %(version)s — %(docstitle)s", "Collapse sidebar": "Sbalit bo\u010dn\u00ed li\u0161tu", "Complete Table of Contents": "Celkov\u00fd obsah", "Contents": "Obsah", "Copyright": "Ve\u0161ker\u00e1 pr\u00e1va vyhrazena", "Created using Sphinx %(sphinx_version)s.": "Vytvo\u0159eno pomoc\u00ed Sphinx %(sphinx_version)s.", "Enter search terms or a module, class or function name.": "Zadejte hledan\u00e9 term\u00edny nebo jm\u00e9no modulu, t\u0159\u00eddy \u010di funkce.", "Expand sidebar": "Rozbalit bo\u010dn\u00ed li\u0161tu", "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.": "Toto je vyhled\u00e1vac\u00ed str\u00e1nka. Zadejte kl\u00ed\u010dov\u00e1 slova a klikn\u011bte na \"hledat\". \nVyhled\u00e1v\u00e1n\u00ed automaticky hled\u00e1 v\u0161echna slova, nebudou tedy nalezeny str\u00e1nky obsahuj\u00edc\u00ed jen n\u011bkter\u00e9 z nich.", "Full index on one page": "Cel\u00fd rejst\u0159\u00edk na jedn\u00e9 str\u00e1nce", "General Index": "Obecn\u00fd rejst\u0159\u00edk", "Global Module Index": "Celkov\u00fd rejst\u0159\u00edk modul\u016f", "Go": "OK", "Hide Search Matches": "Skr\u00fdt v\u00fdsledky vyhled\u00e1v\u00e1n\u00ed", "Index": "Rejst\u0159\u00edk", "Index – %(key)s": "Rejst\u0159\u00edk – %(key)s", "Index pages by letter": "Rejst\u0159\u00edk podle p\u00edsmene", "Indices and tables:": "Rejst\u0159\u00edky a tabulky:", "Last updated on %(last_updated)s.": "Aktualizov\u00e1no dne %(last_updated)s.", "Library changes": "Zm\u011bny v knihovn\u00e1ch", "Navigation": "Navigace", "Next topic": "Dal\u0161\u00ed t\u00e9ma", "Other changes": "Ostatn\u00ed zm\u011bny", "Overview": "P\u0159ehled", "Permalink to this definition": "Trval\u00fd odkaz na tuto definici", "Permalink to this headline": "Trval\u00fd odkaz na tento nadpis", "Please activate JavaScript to enable the search\n functionality.": "Pro podporu vyhled\u00e1v\u00e1n\u00ed aktivujte JavaScript.", "Preparing search...": "Vyhled\u00e1v\u00e1n\u00ed se p\u0159ipravuje...", "Previous topic": "P\u0159echoz\u00ed t\u00e9ma", "Quick search": "Rychl\u00e9 vyhled\u00e1v\u00e1n\u00ed", "Search": "Vyhled\u00e1v\u00e1n\u00ed", "Search Page": "Vyhled\u00e1vac\u00ed str\u00e1nka", "Search Results": "V\u00fdsledky vyhled\u00e1v\u00e1n\u00ed", "Search finished, found %s page(s) matching the search query.": "Vyhled\u00e1v\u00e1n\u00ed dokon\u010deno, str\u00e1nky odpov\u00eddaj\u00edc\u00ed hledan\u00e9mu v\u00fdrazu: %s.", "Search within %(docstitle)s": "Prohledat %(docstitle)s", "Searching": "Prob\u00edh\u00e1 vyhled\u00e1n\u00ed", "Show Source": "Uk\u00e1zat zdroj", "Table Of Contents": "Obsah", "This Page": "Tato str\u00e1nka", "Welcome! This is": "V\u00edtejte! Toto je", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Vyhled\u00e1v\u00e1n\u00ed nenalezlo \u017e\u00e1dn\u00fd odpov\u00eddaj\u00edc\u00ed dokument. Ujist\u011bte se, \u017ee jste v\u0161echna slova zapsal/a spr\u00e1vn\u011b a \u017ee jste vybral/a dostatek kategori\u00ed.", "all functions, classes, terms": "v\u0161echny funkce, t\u0159\u00eddy, term\u00edny", "can be huge": "m\u016f\u017ee b\u00fdt obrovsk\u00fd", "last updated": "naposledy aktualizov\u00e1no", "lists all sections and subsections": "seznam v\u0161ech sekc\u00ed a podsekc\u00ed", "next chapter": "dal\u0161\u00ed kapitola", "previous chapter": "p\u0159edchoz\u00ed kapitola", "quick access to all modules": "rychl\u00fd p\u0159\u00edstup ke v\u0161em modul\u016fm", "search": "hledat", "search this documentation": "prohledat tuto dokumentaci", "the documentation for": "dokumentace pro"}, "plural_expr": "(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2"}); \ No newline at end of file +Documentation.addTranslations({"locale": "cs", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", v ", "About these documents": "O t\u011bchto dokumentech", "Automatically generated list of changes in version %(version)s": "Automaticky generovan\u00fd seznam zm\u011bn ve verzi %(version)s", "C API changes": "Zm\u011bny API", "Changes in Version %(version)s — %(docstitle)s": "Zm\u011bny ve verzi %(version)s — %(docstitle)s", "Collapse sidebar": "Sbalit bo\u010dn\u00ed li\u0161tu", "Complete Table of Contents": "Celkov\u00fd obsah", "Contents": "Obsah", "Copyright": "Ve\u0161ker\u00e1 pr\u00e1va vyhrazena", "Created using Sphinx %(sphinx_version)s.": "Vytvo\u0159eno pomoc\u00ed Sphinx %(sphinx_version)s.", "Expand sidebar": "Rozbalit bo\u010dn\u00ed li\u0161tu", "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.": "Toto je vyhled\u00e1vac\u00ed str\u00e1nka. Zadejte kl\u00ed\u010dov\u00e1 slova a klikn\u011bte na \"hledat\". \nVyhled\u00e1v\u00e1n\u00ed automaticky hled\u00e1 v\u0161echna slova, nebudou tedy nalezeny str\u00e1nky obsahuj\u00edc\u00ed jen n\u011bkter\u00e9 z nich.", "Full index on one page": "Cel\u00fd rejst\u0159\u00edk na jedn\u00e9 str\u00e1nce", "General Index": "Obecn\u00fd rejst\u0159\u00edk", "Global Module Index": "Celkov\u00fd rejst\u0159\u00edk modul\u016f", "Go": "OK", "Hide Search Matches": "Skr\u00fdt v\u00fdsledky vyhled\u00e1v\u00e1n\u00ed", "Index": "Rejst\u0159\u00edk", "Index – %(key)s": "Rejst\u0159\u00edk – %(key)s", "Index pages by letter": "Rejst\u0159\u00edk podle p\u00edsmene", "Indices and tables:": "Rejst\u0159\u00edky a tabulky:", "Last updated on %(last_updated)s.": "Aktualizov\u00e1no dne %(last_updated)s.", "Library changes": "Zm\u011bny v knihovn\u00e1ch", "Navigation": "Navigace", "Next topic": "Dal\u0161\u00ed t\u00e9ma", "Other changes": "Ostatn\u00ed zm\u011bny", "Overview": "P\u0159ehled", "Permalink to this definition": "Trval\u00fd odkaz na tuto definici", "Permalink to this headline": "Trval\u00fd odkaz na tento nadpis", "Please activate JavaScript to enable the search\n functionality.": "Pro podporu vyhled\u00e1v\u00e1n\u00ed aktivujte JavaScript.", "Preparing search...": "Vyhled\u00e1v\u00e1n\u00ed se p\u0159ipravuje...", "Previous topic": "P\u0159echoz\u00ed t\u00e9ma", "Quick search": "Rychl\u00e9 vyhled\u00e1v\u00e1n\u00ed", "Search": "Vyhled\u00e1v\u00e1n\u00ed", "Search Page": "Vyhled\u00e1vac\u00ed str\u00e1nka", "Search Results": "V\u00fdsledky vyhled\u00e1v\u00e1n\u00ed", "Search finished, found %s page(s) matching the search query.": "Vyhled\u00e1v\u00e1n\u00ed dokon\u010deno, str\u00e1nky odpov\u00eddaj\u00edc\u00ed hledan\u00e9mu v\u00fdrazu: %s.", "Search within %(docstitle)s": "Prohledat %(docstitle)s", "Searching": "Prob\u00edh\u00e1 vyhled\u00e1n\u00ed", "Show Source": "Uk\u00e1zat zdroj", "Table Of Contents": "Obsah", "This Page": "Tato str\u00e1nka", "Welcome! This is": "V\u00edtejte! Toto je", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Vyhled\u00e1v\u00e1n\u00ed nenalezlo \u017e\u00e1dn\u00fd odpov\u00eddaj\u00edc\u00ed dokument. Ujist\u011bte se, \u017ee jste v\u0161echna slova zapsal/a spr\u00e1vn\u011b a \u017ee jste vybral/a dostatek kategori\u00ed.", "all functions, classes, terms": "v\u0161echny funkce, t\u0159\u00eddy, term\u00edny", "can be huge": "m\u016f\u017ee b\u00fdt obrovsk\u00fd", "last updated": "naposledy aktualizov\u00e1no", "lists all sections and subsections": "seznam v\u0161ech sekc\u00ed a podsekc\u00ed", "next chapter": "dal\u0161\u00ed kapitola", "previous chapter": "p\u0159edchoz\u00ed kapitola", "quick access to all modules": "rychl\u00fd p\u0159\u00edstup ke v\u0161em modul\u016fm", "search": "hledat", "search this documentation": "prohledat tuto dokumentaci", "the documentation for": "dokumentace pro"}, "plural_expr": "(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2"}); \ 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 60d7fa536..67bf7add6 100644 Binary files a/sphinx/locale/cs/LC_MESSAGES/sphinx.mo and b/sphinx/locale/cs/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/cs/LC_MESSAGES/sphinx.po b/sphinx/locale/cs/LC_MESSAGES/sphinx.po index 65bebafc5..ee322c991 100644 --- a/sphinx/locale/cs/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/cs/LC_MESSAGES/sphinx.po @@ -1,23 +1,24 @@ -# Czech translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# FIRST AUTHOR , 2008 +# Vilibald W. , 2014-2015 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" "Last-Translator: Takayuki Shimizukawa \n" -"Language: cs\n" -"Language-Team: Czech " -"(http://www.transifex.com/projects/p/sphinx-1/language/cs/)\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"Language-Team: Czech (http://www.transifex.com/sphinx-doc/sphinx-1/language/cs/)\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 2.2.0\n" +"Language: cs\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: sphinx/config.py:91 #, python-format @@ -178,9 +179,8 @@ msgid "variable" msgstr "proměnná" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "Parametry" +msgstr "" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -470,14 +470,13 @@ msgid "Todo" msgstr "Todo" #: sphinx/ext/todo.py:129 -#, fuzzy msgid "<>" -msgstr "původní záznam" +msgstr "" #: sphinx/ext/todo.py:132 -#, fuzzy, python-format +#, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "(<> se nachází v %s, řádka %d.)" +msgstr "" #: sphinx/ext/todo.py:141 msgid "original entry" @@ -699,9 +698,7 @@ msgstr "Aktualizováno dne %(last_updated)s." msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" -"Vytvořeno pomocí Sphinx " -"%(sphinx_version)s." +msgstr "Vytvořeno pomocí Sphinx %(sphinx_version)s." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -736,29 +733,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 "" -"Toto je vyhledávací stránka. Zadejte klíčová slova a klikněte na " -"\"hledat\". \n" -"Vyhledávání automaticky hledá všechna slova, nebudou tedy nalezeny " -"stránky obsahující jen některé z nich." +msgstr "Toto je vyhledávací stránka. Zadejte klíčová slova a klikněte na \"hledat\". \nVyhledávání automaticky hledá všechna slova, nebudou tedy nalezeny stránky obsahující jen některé z nich." -#: 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 "hledat" -#: 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:282 msgid "Search Results" msgstr "Výsledky vyhledávání" -#: 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:284 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 "" -"Vyhledávání nenalezlo žádný odpovídající dokument. Ujistěte se, že jste " -"všechna slova zapsal/a správně a že jste vybral/a dostatek kategorií." +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "Vyhledávání nenalezlo žádný odpovídající dokument. Ujistěte se, že jste všechna slova zapsal/a správně a že jste vybral/a dostatek kategorií." #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -860,9 +854,8 @@ msgid "Release" msgstr "Vydání" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "Nebezpečí" +msgstr "" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -885,13 +878,3 @@ msgstr "[obrázek: %s]" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[obrázek]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%d.%m.%Y" - -#~ msgid "%b %d, %Y" -#~ msgstr "%d.%m.%Y" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "Zadejte hledané termíny nebo jméno modulu, třídy či funkce." - diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.js b/sphinx/locale/cy/LC_MESSAGES/sphinx.js new file mode 100644 index 000000000..334620e94 --- /dev/null +++ b/sphinx/locale/cy/LC_MESSAGES/sphinx.js @@ -0,0 +1 @@ +Documentation.addTranslations({"locale": "cy", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Hawlfraint %(copyright)s.", "© Copyright %(copyright)s.": "© Hawlfraint %(copyright)s.", ", in ": ", yn ", "About these documents": "Yngl\u0177n \u00e2'r dogfennau hyn", "Automatically generated list of changes in version %(version)s": "Rhestr o newidiadau yn fersiwn %(version)s wedi'i cynhyrchu'n awtomatig", "C API changes": "Newidiadau i'r C-API", "Changes in Version %(version)s — %(docstitle)s": "Newidiadau yn Fersiwn %(version)s — %(docstitle)s", "Collapse sidebar": "Cyfangu'r bar ochr", "Complete Table of Contents": "Tabl Cynnwys Llawn", "Contents": "Cynnwys", "Copyright": "Hawlfraint", "Created using Sphinx %(sphinx_version)s.": "Cr\u8c37wyd gan ddefnyddio Sphinx %(sphinx_version)s", "Expand sidebar": "Ehangu'r bar ochr", "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.": "O'r fan hon gallwch chwilio'r dogfennau hyn. Rhowch eich geiriau chwilio yn y blwch isod a chliciwch \"chwilio\". Nodwch fod y ffwythiant chwilio yn chwilio am bob un o'r geiriau yn awtomatig. Ni fydd dudalennau sy'n cynnwys llai o eiriau yn ymddangos yn y rhestr canlyniadau.", "Full index on one page": "Indecs llawn ar un tudalen", "General Index": "Indecs cyffredinol", "Global Module Index": "Indecs Modiwl Byd-Eang", "Go": "Ewch", "Hide Search Matches": "Cuddio Canlyniadau Chwilio", "Index": "Indecs", "Index – %(key)s": "Indecs – %(key)s", "Index pages by letter": "Indecs tudalennau gan lythyren", "Indices and tables:": "Indecsau a tablau:", "Last updated on %(last_updated)s.": "Diweddarwyd yn ddiwethaf ar %(last_updated)s.", "Library changes": "Newidiadau i'r llyfrgell", "Navigation": "Llywio", "Next topic": "Pwnc nesaf", "Other changes": "Newidiadau arall", "Overview": "Trosolwg", "Permalink to this definition": "Permalink i'r diffiniad hwn", "Permalink to this headline": "Permalink i'r pennawd hwn", "Please activate JavaScript to enable the search\n functionality.": "Trwoch JavaScript ymlaen i alluogi'r chwilio.", "Preparing search...": "Paratoi chwilio...", "Previous topic": "Pwnc blaenorol", "Quick search": "Chwilio cyflym", "Search": "Chwilio", "Search Page": "Tudalen Chwilio", "Search Results": "Canlyniadau chwilio", "Search finished, found %s page(s) matching the search query.": "Chwiliad wedi gorffen, wedi ffeindio %s tudalen(nau) yn cyfateb a'r ymholiad chwilio.", "Search within %(docstitle)s": "Chwilio o fewn %(docstitle)s", "Searching": "Yn chwilio", "Show Source": "Dangos Ffynhonell", "Table Of Contents": "Tabl Cynnwys", "This Page": "Y Dudalen Hon", "Welcome! This is": "Croeso! Dyma", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Nid yw eich chwiliad yn cyfateb unrhyw ddogfennau. Gwnewch yn si\u0175r fod pob gair wedi'i sillafu'n gywir, ac eich bod wedi dewis digon o gategor\u00efau.", "all functions, classes, terms": "holl ffwythiannau, dosbarthau a thermau", "can be huge": "gall fod yn enfawr", "last updated": "diweddarwyd yn ddiwethaf", "lists all sections and subsections": "rhestru holl adrannau ac isadrannau", "next chapter": "pennod nesaf", "previous chapter": "pennod blaenorol", "quick access to all modules": "mynediad cloi i bob modiwl", "search": "chwilio", "search this documentation": "chwiliwch y ddogfennaeth", "the documentation for": "y dogfennaeth am"}, "plural_expr": "(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3"}); \ No newline at end of file diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.mo b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo new file mode 100644 index 000000000..6f88bd0ab Binary files /dev/null and b/sphinx/locale/cy/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/cy/LC_MESSAGES/sphinx.po b/sphinx/locale/cy/LC_MESSAGES/sphinx.po new file mode 100644 index 000000000..feebceb32 --- /dev/null +++ b/sphinx/locale/cy/LC_MESSAGES/sphinx.po @@ -0,0 +1,880 @@ +# Translations template for Sphinx. +# Copyright (C) 2016 ORGANIZATION +# This file is distributed under the same license as the Sphinx project. +# +# Translators: +# FIRST AUTHOR , 2016 +# Geraint Palmer , 2016 +msgid "" +msgstr "" +"Project-Id-Version: Sphinx\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2016-03-06 21:58+0900\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" +"Last-Translator: Takayuki Shimizukawa \n" +"Language-Team: Welsh (http://www.transifex.com/sphinx-doc/sphinx-1/language/cy/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.2.0\n" +"Language: cy\n" +"Plural-Forms: nplurals=4; plural=(n==1) ? 0 : (n==2) ? 1 : (n != 8 && n != 11) ? 2 : 3;\n" + +#: sphinx/config.py:91 +#, python-format +msgid "Fig. %s" +msgstr "Ffig. %s" + +#: sphinx/config.py:92 +#, python-format +msgid "Table %s" +msgstr "Tabl %s" + +#: sphinx/config.py:93 +#, python-format +msgid "Listing %s" +msgstr "Listing %s" + +#: sphinx/config.py:100 +#, python-format +msgid "%s %s documentation" +msgstr "Dogfennaeth %s %s " + +#: sphinx/environment.py:1829 +#, python-format +msgid "see %s" +msgstr "gweler %s" + +#: sphinx/environment.py:1833 +#, python-format +msgid "see also %s" +msgstr "gweler hefyd %s" + +#: sphinx/environment.py:1893 +msgid "Symbols" +msgstr "Symbolau" + +#: sphinx/roles.py:193 +#, python-format +msgid "Python Enhancement Proposals; PEP %s" +msgstr "Python Enhancement Proposals; PEP %s" + +#: sphinx/transforms.py:56 sphinx/writers/latex.py:374 +#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222 +msgid "MMMM dd, YYYY" +msgstr "" + +#: sphinx/builders/changes.py:75 +msgid "Builtins" +msgstr "" + +#: sphinx/builders/changes.py:77 +msgid "Module level" +msgstr "Lefel modiwl" + +#: sphinx/builders/html.py:295 +msgid "MMM dd, YYYY" +msgstr "" + +#: sphinx/builders/html.py:315 sphinx/themes/basic/defindex.html:30 +msgid "General Index" +msgstr "Indecs cyffredinol" + +#: sphinx/builders/html.py:315 +msgid "index" +msgstr "indecs" + +#: sphinx/builders/html.py:376 +msgid "next" +msgstr "nesaf" + +#: sphinx/builders/html.py:385 +msgid "previous" +msgstr "blaenorol" + +#: sphinx/builders/latex.py:180 sphinx/builders/texinfo.py:199 +msgid " (in " +msgstr " (yn " + +#: sphinx/directives/other.py:149 +msgid "Section author: " +msgstr "Awdur yr adran:" + +#: sphinx/directives/other.py:151 +msgid "Module author: " +msgstr "Awdur y fodiwl:" + +#: sphinx/directives/other.py:153 +msgid "Code author: " +msgstr "Awdur y cod:" + +#: sphinx/directives/other.py:155 +msgid "Author: " +msgstr "Awdur:" + +#: sphinx/domains/__init__.py:275 +#, python-format +msgid "%s %s" +msgstr "" + +#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605 +#: sphinx/domains/python.py:124 +msgid "Parameters" +msgstr "Paramedrau" + +#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136 +msgid "Returns" +msgstr "" + +#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:138 +msgid "Return type" +msgstr "" + +#: sphinx/domains/c.py:177 +#, python-format +msgid "%s (C function)" +msgstr "" + +#: sphinx/domains/c.py:179 +#, python-format +msgid "%s (C member)" +msgstr "" + +#: sphinx/domains/c.py:181 +#, python-format +msgid "%s (C macro)" +msgstr "" + +#: sphinx/domains/c.py:183 +#, python-format +msgid "%s (C type)" +msgstr "" + +#: sphinx/domains/c.py:185 +#, python-format +msgid "%s (C variable)" +msgstr "" + +#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589 +msgid "function" +msgstr "ffwythiant" + +#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954 +msgid "member" +msgstr "aelod" + +#: sphinx/domains/c.py:244 +msgid "macro" +msgstr "" + +#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:3955 +msgid "type" +msgstr "" + +#: sphinx/domains/c.py:246 +msgid "variable" +msgstr "" + +#: sphinx/domains/cpp.py:3608 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "" + +#: sphinx/domains/cpp.py:3733 +#, python-format +msgid "%s (C++ type)" +msgstr "" + +#: sphinx/domains/cpp.py:3744 +#, python-format +msgid "%s (C++ member)" +msgstr "" + +#: sphinx/domains/cpp.py:3755 +#, python-format +msgid "%s (C++ function)" +msgstr "" + +#: sphinx/domains/cpp.py:3766 +#, python-format +msgid "%s (C++ class)" +msgstr "" + +#: sphinx/domains/cpp.py:3786 +#, python-format +msgid "%s (C++ enum)" +msgstr "" + +#: sphinx/domains/cpp.py:3816 +#, python-format +msgid "%s (C++ enumerator)" +msgstr "" + +#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:591 +msgid "class" +msgstr "" + +#: sphinx/domains/cpp.py:3956 +msgid "enum" +msgstr "" + +#: sphinx/domains/cpp.py:3957 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282 +#, python-format +msgid "%s() (built-in function)" +msgstr "" + +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:346 +#, python-format +msgid "%s() (%s method)" +msgstr "" + +#: sphinx/domains/javascript.py:109 +#, python-format +msgid "%s() (class)" +msgstr "" + +#: sphinx/domains/javascript.py:111 +#, python-format +msgid "%s (global variable or constant)" +msgstr "%s (newidyn byd-eang neu cysonyn)" + +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:384 +#, python-format +msgid "%s (%s attribute)" +msgstr "" + +#: sphinx/domains/javascript.py:122 +msgid "Arguments" +msgstr "" + +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590 +msgid "data" +msgstr "" + +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596 +msgid "attribute" +msgstr "" + +#: sphinx/domains/python.py:129 +msgid "Variables" +msgstr "" + +#: sphinx/domains/python.py:133 +msgid "Raises" +msgstr "" + +#: sphinx/domains/python.py:283 sphinx/domains/python.py:340 +#: sphinx/domains/python.py:352 sphinx/domains/python.py:365 +#, python-format +msgid "%s() (in module %s)" +msgstr "" + +#: sphinx/domains/python.py:286 +#, python-format +msgid "%s (built-in variable)" +msgstr "" + +#: sphinx/domains/python.py:287 sphinx/domains/python.py:378 +#, python-format +msgid "%s (in module %s)" +msgstr "" + +#: sphinx/domains/python.py:303 +#, python-format +msgid "%s (built-in class)" +msgstr "" + +#: sphinx/domains/python.py:304 +#, python-format +msgid "%s (class in %s)" +msgstr "" + +#: sphinx/domains/python.py:344 +#, python-format +msgid "%s() (%s.%s method)" +msgstr "" + +#: sphinx/domains/python.py:356 +#, python-format +msgid "%s() (%s.%s static method)" +msgstr "" + +#: sphinx/domains/python.py:359 +#, python-format +msgid "%s() (%s static method)" +msgstr "" + +#: sphinx/domains/python.py:369 +#, python-format +msgid "%s() (%s.%s class method)" +msgstr "" + +#: sphinx/domains/python.py:372 +#, python-format +msgid "%s() (%s class method)" +msgstr "" + +#: sphinx/domains/python.py:382 +#, python-format +msgid "%s (%s.%s attribute)" +msgstr "" + +#: sphinx/domains/python.py:463 +#, python-format +msgid "%s (module)" +msgstr "" + +#: sphinx/domains/python.py:520 +msgid "Python Module Index" +msgstr "" + +#: sphinx/domains/python.py:521 +msgid "modules" +msgstr "" + +#: sphinx/domains/python.py:567 +msgid "Deprecated" +msgstr "" + +#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183 +msgid "exception" +msgstr "" + +#: sphinx/domains/python.py:593 +msgid "method" +msgstr "" + +#: sphinx/domains/python.py:594 +msgid "class method" +msgstr "" + +#: sphinx/domains/python.py:595 +msgid "static method" +msgstr "" + +#: sphinx/domains/python.py:597 sphinx/locale/__init__.py:179 +msgid "module" +msgstr "modiwl" + +#: sphinx/domains/python.py:762 +msgid " (deprecated)" +msgstr "" + +#: sphinx/domains/rst.py:55 +#, python-format +msgid "%s (directive)" +msgstr "" + +#: sphinx/domains/rst.py:57 +#, python-format +msgid "%s (role)" +msgstr "" + +#: sphinx/domains/rst.py:106 +msgid "directive" +msgstr "" + +#: sphinx/domains/rst.py:107 +msgid "role" +msgstr "" + +#: sphinx/domains/std.py:73 sphinx/domains/std.py:89 +#, python-format +msgid "environment variable; %s" +msgstr "" + +#: sphinx/domains/std.py:185 +#, python-format +msgid "%scommand line option; %s" +msgstr "" + +#: sphinx/domains/std.py:433 +msgid "glossary term" +msgstr "" + +#: sphinx/domains/std.py:434 +msgid "grammar token" +msgstr "" + +#: sphinx/domains/std.py:435 +msgid "reference label" +msgstr "" + +#: sphinx/domains/std.py:437 +msgid "environment variable" +msgstr "" + +#: sphinx/domains/std.py:438 +msgid "program option" +msgstr "" + +#: sphinx/domains/std.py:471 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:363 sphinx/writers/texinfo.py:481 +msgid "Index" +msgstr "Indecs" + +#: sphinx/domains/std.py:472 +msgid "Module Index" +msgstr "Indecs Modiwlau" + +#: sphinx/domains/std.py:473 sphinx/themes/basic/defindex.html:25 +msgid "Search Page" +msgstr "Tudalen Chwilio" + +#: sphinx/ext/autodoc.py:1265 +#, python-format +msgid " Bases: %s" +msgstr "" + +#: sphinx/ext/autodoc.py:1318 +#, python-format +msgid "alias of :class:`%s`" +msgstr "" + +#: sphinx/ext/graphviz.py:309 sphinx/ext/graphviz.py:318 +#, python-format +msgid "[graph: %s]" +msgstr "[graff: %s]" + +#: sphinx/ext/graphviz.py:311 sphinx/ext/graphviz.py:320 +msgid "[graph]" +msgstr "[graff]" + +#: sphinx/ext/intersphinx.py:359 +#, python-format +msgid "(in %s v%s)" +msgstr "(yn %s v%s)" + +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:99 +msgid "[source]" +msgstr "[ffynhonnell]" + +#: sphinx/ext/todo.py:56 +msgid "Todo" +msgstr "Todo" + +#: sphinx/ext/todo.py:129 +msgid "<>" +msgstr "" + +#: sphinx/ext/todo.py:132 +#, python-format +msgid "(The <> is located in %s, line %d.)" +msgstr "" + +#: sphinx/ext/todo.py:141 +msgid "original entry" +msgstr "eitem wreiddiol" + +#: sphinx/ext/viewcode.py:162 +msgid "[docs]" +msgstr "[docs]" + +#: sphinx/ext/viewcode.py:176 +msgid "Module code" +msgstr "Cod y modiwl" + +#: sphinx/ext/viewcode.py:182 +#, python-format +msgid "

Source code for %s

" +msgstr "

Cod ffynhonnell ar gyfer %s

" + +#: sphinx/ext/viewcode.py:208 +msgid "Overview: module code" +msgstr "Trosolwg: cod y modiwl" + +#: sphinx/ext/viewcode.py:209 +msgid "

All modules for which code is available

" +msgstr "

Holl fodiwlau lle mae'r cod ar gael

" + +#: sphinx/locale/__init__.py:159 +msgid "Attention" +msgstr "Sylw" + +#: sphinx/locale/__init__.py:160 +msgid "Caution" +msgstr "Gofal" + +#: sphinx/locale/__init__.py:161 +msgid "Danger" +msgstr "Perygl" + +#: sphinx/locale/__init__.py:162 +msgid "Error" +msgstr "Gwall" + +#: sphinx/locale/__init__.py:163 +msgid "Hint" +msgstr "Awgrym" + +#: sphinx/locale/__init__.py:164 +msgid "Important" +msgstr "Pwysig" + +#: sphinx/locale/__init__.py:165 +msgid "Note" +msgstr "Nodyn" + +#: sphinx/locale/__init__.py:166 +msgid "See also" +msgstr "Gweler hefyd" + +#: sphinx/locale/__init__.py:167 +msgid "Tip" +msgstr "Awgrym" + +#: sphinx/locale/__init__.py:168 +msgid "Warning" +msgstr "Rhybudd" + +#: sphinx/locale/__init__.py:172 +#, python-format +msgid "New in version %s" +msgstr "Newydd yn fersiwn %s" + +#: sphinx/locale/__init__.py:173 +#, python-format +msgid "Changed in version %s" +msgstr "Wedi newid yn fersiwn %s" + +#: sphinx/locale/__init__.py:174 +#, python-format +msgid "Deprecated since version %s" +msgstr "Dibrisiwyd ers fersiwn %s" + +#: sphinx/locale/__init__.py:180 +msgid "keyword" +msgstr "allweddair" + +#: sphinx/locale/__init__.py:181 +msgid "operator" +msgstr "gweithredydd" + +#: sphinx/locale/__init__.py:182 +msgid "object" +msgstr "gwrthrych" + +#: sphinx/locale/__init__.py:184 +msgid "statement" +msgstr "datganiad" + +#: sphinx/locale/__init__.py:185 +msgid "built-in function" +msgstr "ffwythiant built-in" + +#: 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 "Tabl Cynnwys" + +#: sphinx/themes/agogo/layout.html:51 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 "Chwilio" + +#: sphinx/themes/agogo/layout.html:54 sphinx/themes/basic/searchbox.html:15 +msgid "Go" +msgstr "Ewch" + +#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +msgid "Show Source" +msgstr "Dangos Ffynhonell" + +#: sphinx/themes/basic/defindex.html:11 +msgid "Overview" +msgstr "Trosolwg" + +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "Croeso! Dyma" + +#: sphinx/themes/basic/defindex.html:16 +msgid "the documentation for" +msgstr "y dogfennaeth am" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "diweddarwyd yn ddiwethaf" + +#: sphinx/themes/basic/defindex.html:20 +msgid "Indices and tables:" +msgstr "Indecsau a tablau:" + +#: sphinx/themes/basic/defindex.html:23 +msgid "Complete Table of Contents" +msgstr "Tabl Cynnwys Llawn" + +#: sphinx/themes/basic/defindex.html:24 +msgid "lists all sections and subsections" +msgstr "rhestru holl adrannau ac isadrannau" + +#: sphinx/themes/basic/defindex.html:26 +msgid "search this documentation" +msgstr "chwiliwch y ddogfennaeth" + +#: sphinx/themes/basic/defindex.html:28 +msgid "Global Module Index" +msgstr "Indecs Modiwl Byd-Eang" + +#: sphinx/themes/basic/defindex.html:29 +msgid "quick access to all modules" +msgstr "mynediad cloi i bob modiwl" + +#: sphinx/themes/basic/defindex.html:31 +msgid "all functions, classes, terms" +msgstr "holl ffwythiannau, dosbarthau a thermau" + +#: sphinx/themes/basic/genindex-single.html:35 +#, python-format +msgid "Index – %(key)s" +msgstr "Indecs – %(key)s" + +#: sphinx/themes/basic/genindex-single.html:63 +#: sphinx/themes/basic/genindex-split.html:24 +#: sphinx/themes/basic/genindex-split.html:38 +#: sphinx/themes/basic/genindex.html:74 +msgid "Full index on one page" +msgstr "Indecs llawn ar un tudalen" + +#: sphinx/themes/basic/genindex-split.html:16 +msgid "Index pages by letter" +msgstr "Indecs tudalennau gan lythyren" + +#: sphinx/themes/basic/genindex-split.html:25 +msgid "can be huge" +msgstr "gall fod yn enfawr" + +#: sphinx/themes/basic/layout.html:29 +msgid "Navigation" +msgstr "Llywio" + +#: sphinx/themes/basic/layout.html:122 +#, python-format +msgid "Search within %(docstitle)s" +msgstr "Chwilio o fewn %(docstitle)s" + +#: sphinx/themes/basic/layout.html:131 +msgid "About these documents" +msgstr "Ynglŷn â'r dogfennau hyn" + +#: sphinx/themes/basic/layout.html:140 +msgid "Copyright" +msgstr "Hawlfraint" + +#: sphinx/themes/basic/layout.html:189 +#, python-format +msgid "© Copyright %(copyright)s." +msgstr "© Hawlfraint %(copyright)s." + +#: sphinx/themes/basic/layout.html:191 +#, python-format +msgid "© Copyright %(copyright)s." +msgstr "© Hawlfraint %(copyright)s." + +#: sphinx/themes/basic/layout.html:195 +#, python-format +msgid "Last updated on %(last_updated)s." +msgstr "Diweddarwyd yn ddiwethaf ar %(last_updated)s." + +#: sphinx/themes/basic/layout.html:198 +#, python-format +msgid "" +"Created using Sphinx " +"%(sphinx_version)s." +msgstr "Cr谷wyd gan ddefnyddio Sphinx %(sphinx_version)s" + +#: sphinx/themes/basic/opensearch.xml:4 +#, python-format +msgid "Search %(docstitle)s" +msgstr "Chwilio %(docstitle)s" + +#: sphinx/themes/basic/relations.html:11 +msgid "Previous topic" +msgstr "Pwnc blaenorol" + +#: sphinx/themes/basic/relations.html:13 +msgid "previous chapter" +msgstr "pennod blaenorol" + +#: sphinx/themes/basic/relations.html:16 +msgid "Next topic" +msgstr "Pwnc nesaf" + +#: sphinx/themes/basic/relations.html:18 +msgid "next chapter" +msgstr "pennod nesaf" + +#: sphinx/themes/basic/search.html:27 +msgid "" +"Please activate JavaScript to enable the search\n" +" functionality." +msgstr "Trwoch JavaScript ymlaen i alluogi'r chwilio." + +#: 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 "O'r fan hon gallwch chwilio'r dogfennau hyn. Rhowch eich geiriau chwilio yn y blwch isod a chliciwch \"chwilio\". Nodwch fod y ffwythiant chwilio yn chwilio am bob un o'r geiriau yn awtomatig. Ni fydd dudalennau sy'n cynnwys llai o eiriau yn ymddangos yn y rhestr canlyniadau." + +#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/searchresults.html:17 +msgid "search" +msgstr "chwilio" + +#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:282 +msgid "Search Results" +msgstr "Canlyniadau chwilio" + +#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:284 +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 "Nid yw eich chwiliad yn cyfateb unrhyw ddogfennau. Gwnewch yn siŵr fod pob gair wedi'i sillafu'n gywir, ac eich bod wedi dewis digon o gategorïau." + +#: sphinx/themes/basic/searchbox.html:12 +msgid "Quick search" +msgstr "Chwilio cyflym" + +#: sphinx/themes/basic/sourcelink.html:12 +msgid "This Page" +msgstr "Y Dudalen Hon" + +#: sphinx/themes/basic/changes/frameset.html:5 +#: sphinx/themes/basic/changes/versionchanges.html:12 +#, python-format +msgid "Changes in Version %(version)s — %(docstitle)s" +msgstr "Newidiadau yn Fersiwn %(version)s — %(docstitle)s" + +#: sphinx/themes/basic/changes/rstsource.html:5 +#, python-format +msgid "%(filename)s — %(docstitle)s" +msgstr "%(filename)s — %(docstitle)s" + +#: sphinx/themes/basic/changes/versionchanges.html:17 +#, python-format +msgid "Automatically generated list of changes in version %(version)s" +msgstr "Rhestr o newidiadau yn fersiwn %(version)s wedi'i cynhyrchu'n awtomatig" + +#: sphinx/themes/basic/changes/versionchanges.html:18 +msgid "Library changes" +msgstr "Newidiadau i'r llyfrgell" + +#: sphinx/themes/basic/changes/versionchanges.html:23 +msgid "C API changes" +msgstr "Newidiadau i'r C-API" + +#: sphinx/themes/basic/changes/versionchanges.html:25 +msgid "Other changes" +msgstr "Newidiadau arall" + +#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668 +#: sphinx/writers/html.py:673 +msgid "Permalink to this headline" +msgstr "Permalink i'r pennawd hwn" + +#: sphinx/themes/basic/static/doctools.js_t:175 sphinx/writers/html.py:105 +msgid "Permalink to this definition" +msgstr "Permalink i'r diffiniad hwn" + +#: sphinx/themes/basic/static/doctools.js_t:208 +msgid "Hide Search Matches" +msgstr "Cuddio Canlyniadau Chwilio" + +#: sphinx/themes/basic/static/searchtools.js_t:121 +msgid "Searching" +msgstr "Yn chwilio" + +#: sphinx/themes/basic/static/searchtools.js_t:126 +msgid "Preparing search..." +msgstr "Paratoi chwilio..." + +#: sphinx/themes/basic/static/searchtools.js_t:286 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "Chwiliad wedi gorffen, wedi ffeindio %s tudalen(nau) yn cyfateb a'r ymholiad chwilio." + +#: sphinx/themes/basic/static/searchtools.js_t:338 +msgid ", in " +msgstr ", yn " + +#: sphinx/themes/classic/static/sidebar.js_t:83 +msgid "Expand sidebar" +msgstr "Ehangu'r bar ochr" + +#: sphinx/themes/classic/static/sidebar.js_t:96 +#: sphinx/themes/classic/static/sidebar.js_t:124 +msgid "Collapse sidebar" +msgstr "Cyfangu'r bar ochr" + +#: sphinx/themes/haiku/layout.html:24 +msgid "Contents" +msgstr "Cynnwys" + +#: sphinx/writers/html.py:349 +msgid "Permalink to this code" +msgstr "Permalink i'r cod hwn" + +#: sphinx/writers/html.py:353 +msgid "Permalink to this image" +msgstr "Permalink i'r ddelwedd hon" + +#: sphinx/writers/html.py:355 +msgid "Permalink to this toctree" +msgstr "Permalink i'r toctree hwn" + +#: sphinx/writers/html.py:677 +msgid "Permalink to this table" +msgstr "Permalink i'r tabl hwn" + +#: sphinx/writers/latex.py:361 +msgid "Release" +msgstr "Rhyddhad" + +#: sphinx/writers/latex.py:427 +msgid "page" +msgstr "" + +#: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 +#: sphinx/writers/texinfo.py:620 +msgid "Footnotes" +msgstr "Troednodiadau" + +#: sphinx/writers/latex.py:1022 +msgid "continued from previous page" +msgstr "wedi'i barhau o'r tudalen blaenorol" + +#: sphinx/writers/latex.py:1028 +msgid "Continued on next page" +msgstr "Yn parhau ar y tudalen nesaf" + +#: sphinx/writers/manpage.py:282 sphinx/writers/text.py:582 +#, python-format +msgid "[image: %s]" +msgstr "[delwedd: %s]" + +#: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 +msgid "[image]" +msgstr "[delwedd]" diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.js b/sphinx/locale/da/LC_MESSAGES/sphinx.js index 977d98f54..0fd225c60 100644 --- a/sphinx/locale/da/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/da/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "da", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Ophavsret %(copyright)s.", "© Copyright %(copyright)s.": "© Ophavsret %(copyright)s.", ", in ": "", "About these documents": "Om disse dokumenter", "Automatically generated list of changes in version %(version)s": "Automatisk oprettet liste af \u00e6ndringer i version %(version)s", "C API changes": "\u00c6ndringer i C-API", "Changes in Version %(version)s — %(docstitle)s": "\u00c6ndringer i version %(version)s — %(docstitle)s", "Collapse sidebar": "Sammenfold sidebj\u00e6lke", "Complete Table of Contents": "Fuldst\u00e6ndig indholdsfortegnelse", "Contents": "Indhold", "Copyright": "Ophavsret", "Created using Sphinx %(sphinx_version)s.": "Bygget med Sphinx %(sphinx_version)s.", "Enter search terms or a module, class or function name.": "Indtast s\u00f8geord eller navnet p\u00e5 et modul, en klasse eller en funktion.", "Expand sidebar": "Udfold sidebj\u00e6lke", "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.": "Her fra kan du s\u00f8ge i disse dokumenter. Indtast dine s\u00f8geord\n i boksen nedenfor og klik p\u00e5 \"s\u00f8g\". Bem\u00e6rk at s\u00f8gefunktionen\n automatisk vil s\u00f8ge p\u00e5 alle ordene. Sider, der indeholder\n f\u00e6rre ord, vil ikke indg\u00e5 i resultaterne.", "Full index on one page": "Fuldt indeks p\u00e5 \u00e9n side", "General Index": "Generelt indeks", "Global Module Index": "Globalt modulindeks", "Go": "S\u00f8g", "Hide Search Matches": "Skjul s\u00f8geresultater", "Index": "Indeks", "Index – %(key)s": "Indeks – %(key)s", "Index pages by letter": "Indeks\u00e9r sider efter bogstav", "Indices and tables:": "Indeks og tabeller:", "Last updated on %(last_updated)s.": "Sidst opdateret %(last_updated)s.", "Library changes": "Biblioteks\u00e6ndringer", "Navigation": "Navigation", "Next topic": "N\u00e6ste emne", "Other changes": "Andre \u00e6ndringer", "Overview": "Oversigt", "Permalink to this definition": "Permalink til denne definition", "Permalink to this headline": "Permalink til denne overskrift", "Please activate JavaScript to enable the search\n functionality.": "Aktiv\u00e9r venligst JavaScript for at aktivere\n s\u00f8gefunktionalitet.", "Preparing search...": "Forbereder s\u00f8gning...", "Previous topic": "Forrige emne", "Quick search": "Hurtig s\u00f8gning", "Search": "S\u00f8g", "Search Page": "S\u00f8geside", "Search Results": "S\u00f8geresultater", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "S\u00f8g i %(docstitle)s", "Searching": "S\u00f8ger", "Show Source": "Vis kilde", "Table Of Contents": "Indholdsfortegnelse", "This Page": "Denne side", "Welcome! This is": "Velkommen! Dette er", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "alle funktioner, klasser, begreber", "can be huge": "kan v\u00e6re enormt", "last updated": "sidst opdateret", "lists all sections and subsections": "viser alle afsnit og underafsnit", "next chapter": "n\u00e6ste kapitel", "previous chapter": "forrige kapitel", "quick access to all modules": "hurtig adgang til alle moduler", "search": "s\u00f8g", "search this documentation": "s\u00f8g i denne dokumentation", "the documentation for": "dokumentationen for"}, "plural_expr": "(n != 1)"}); \ No newline at end of file +Documentation.addTranslations({"locale": "da", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Ophavsret %(copyright)s.", "© Copyright %(copyright)s.": "© Ophavsret %(copyright)s.", ", in ": ", i", "About these documents": "Om disse dokumenter", "Automatically generated list of changes in version %(version)s": "Automatisk oprettet liste af \u00e6ndringer i version %(version)s", "C API changes": "\u00c6ndringer i C-API", "Changes in Version %(version)s — %(docstitle)s": "\u00c6ndringer i version %(version)s — %(docstitle)s", "Collapse sidebar": "Sammenfold sidebj\u00e6lke", "Complete Table of Contents": "Fuldst\u00e6ndig indholdsfortegnelse", "Contents": "Indhold", "Copyright": "Ophavsret", "Created using Sphinx %(sphinx_version)s.": "Bygget med Sphinx %(sphinx_version)s.", "Expand sidebar": "Udfold sidebj\u00e6lke", "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.": "Her fra kan du s\u00f8ge i disse dokumenter. Indtast dine s\u00f8geord\n i boksen nedenfor og klik p\u00e5 \"s\u00f8g\". Bem\u00e6rk at s\u00f8gefunktionen\n automatisk vil s\u00f8ge p\u00e5 alle ordene. Sider, der indeholder\n f\u00e6rre ord, vil ikke indg\u00e5 i resultaterne.", "Full index on one page": "Fuldt indeks p\u00e5 \u00e9n side", "General Index": "Generelt indeks", "Global Module Index": "Globalt modulindeks", "Go": "S\u00f8g", "Hide Search Matches": "Skjul s\u00f8geresultater", "Index": "Indeks", "Index – %(key)s": "Indeks – %(key)s", "Index pages by letter": "Indeks\u00e9r sider efter bogstav", "Indices and tables:": "Indeks og tabeller:", "Last updated on %(last_updated)s.": "Sidst opdateret %(last_updated)s.", "Library changes": "Biblioteks\u00e6ndringer", "Navigation": "Navigation", "Next topic": "N\u00e6ste emne", "Other changes": "Andre \u00e6ndringer", "Overview": "Oversigt", "Permalink to this definition": "Permalink til denne definition", "Permalink to this headline": "Permalink til denne overskrift", "Please activate JavaScript to enable the search\n functionality.": "Aktiv\u00e9r venligst JavaScript for at aktivere\n s\u00f8gefunktionalitet.", "Preparing search...": "Forbereder s\u00f8gning...", "Previous topic": "Forrige emne", "Quick search": "Hurtig s\u00f8gning", "Search": "S\u00f8g", "Search Page": "S\u00f8geside", "Search Results": "S\u00f8geresultater", "Search finished, found %s page(s) matching the search query.": "S\u00f8gning f\u00e6rdig, fandt %s sider der matcher s\u00f8geforesp\u00f8rgslen.", "Search within %(docstitle)s": "S\u00f8g i %(docstitle)s", "Searching": "S\u00f8ger", "Show Source": "Vis kilde", "Table Of Contents": "Indholdsfortegnelse", "This Page": "Denne side", "Welcome! This is": "Velkommen! Dette er", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Din s\u00f8gning matchede ikke nogen dokumenter. Sikr dig at alle ord er stavet korrekt og at du har valgt nok kategorier.", "all functions, classes, terms": "alle funktioner, klasser, begreber", "can be huge": "kan v\u00e6re enormt", "last updated": "sidst opdateret", "lists all sections and subsections": "viser alle afsnit og underafsnit", "next chapter": "n\u00e6ste kapitel", "previous chapter": "forrige kapitel", "quick access to all modules": "hurtig adgang til alle moduler", "search": "s\u00f8g", "search this documentation": "s\u00f8g i denne dokumentation", "the documentation for": "dokumentationen for"}, "plural_expr": "(n != 1)"}); \ 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 f1dc7f3f6..3667f7392 100644 Binary files a/sphinx/locale/da/LC_MESSAGES/sphinx.mo and b/sphinx/locale/da/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/da/LC_MESSAGES/sphinx.po b/sphinx/locale/da/LC_MESSAGES/sphinx.po index d26e87ba7..7c8dcaa08 100644 --- a/sphinx/locale/da/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/da/LC_MESSAGES/sphinx.po @@ -1,23 +1,25 @@ -# Danish translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# askhl , 2010-2011 +# Jakob Lykke Andersen , 2014,2016 +# Joe Hansen , 2016 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" -"Last-Translator: Takayuki Shimizukawa \n" -"Language: da\n" -"Language-Team: Danish " -"(http://www.transifex.com/projects/p/sphinx-1/language/da/)\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"PO-Revision-Date: 2016-03-13 09:55+0000\n" +"Last-Translator: Jakob Lykke Andersen \n" +"Language-Team: Danish (http://www.transifex.com/sphinx-doc/sphinx-1/language/da/)\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 2.2.0\n" +"Language: da\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinx/config.py:91 #, python-format @@ -32,7 +34,7 @@ msgstr "tabel %s" #: sphinx/config.py:93 #, python-format msgid "Listing %s" -msgstr "" +msgstr "Viser %s" #: sphinx/config.py:100 #, python-format @@ -178,9 +180,8 @@ msgid "variable" msgstr "variabel" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "Parametre" +msgstr "Template-parametre" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -209,12 +210,12 @@ msgstr "%s (C++-klasse)" #: sphinx/domains/cpp.py:3786 #, python-format msgid "%s (C++ enum)" -msgstr "" +msgstr "%s (C++ optæl)" #: sphinx/domains/cpp.py:3816 #, python-format msgid "%s (C++ enumerator)" -msgstr "" +msgstr "%s (C++-optælling)" #: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165 #: sphinx/domains/python.py:591 @@ -223,11 +224,11 @@ msgstr "klasse" #: sphinx/domains/cpp.py:3956 msgid "enum" -msgstr "" +msgstr "optæl" #: sphinx/domains/cpp.py:3957 msgid "enumerator" -msgstr "" +msgstr "optælling" #: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282 #, python-format @@ -450,16 +451,16 @@ msgstr "alias for :class:`%s`" #: sphinx/ext/graphviz.py:309 sphinx/ext/graphviz.py:318 #, python-format msgid "[graph: %s]" -msgstr "" +msgstr "[graf: %s]" #: sphinx/ext/graphviz.py:311 sphinx/ext/graphviz.py:320 msgid "[graph]" -msgstr "" +msgstr "[graf]" #: sphinx/ext/intersphinx.py:359 #, python-format msgid "(in %s v%s)" -msgstr "" +msgstr "(i %s v%s)" #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:99 msgid "[source]" @@ -470,14 +471,13 @@ msgid "Todo" msgstr "Todo" #: sphinx/ext/todo.py:129 -#, fuzzy msgid "<>" -msgstr "oprindeligt punkt" +msgstr "" #: sphinx/ext/todo.py:132 -#, fuzzy, python-format +#, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "(Det <> befinder sig i %s, linje %d.)" +msgstr "" #: sphinx/ext/todo.py:141 msgid "original entry" @@ -699,9 +699,7 @@ msgstr "Sidst opdateret %(last_updated)s." msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" -"Bygget med Sphinx " -"%(sphinx_version)s." +msgstr "Bygget med Sphinx %(sphinx_version)s." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -728,9 +726,7 @@ msgstr "næste kapitel" msgid "" "Please activate JavaScript to enable the search\n" " functionality." -msgstr "" -"Aktivér venligst JavaScript for at aktivere\n" -" søgefunktionalitet." +msgstr "Aktivér venligst JavaScript for at aktivere\n søgefunktionalitet." #: sphinx/themes/basic/search.html:32 msgid "" @@ -738,27 +734,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 "" -"Her fra kan du søge i disse dokumenter. Indtast dine søgeord\n" -" i boksen nedenfor og klik på \"søg\". Bemærk at søgefunktionen\n" -" automatisk vil søge på alle ordene. Sider, der indeholder\n" -" færre ord, vil ikke indgå i resultaterne." +msgstr "Her fra kan du søge i disse dokumenter. Indtast dine søgeord\n i boksen nedenfor og klik på \"søg\". Bemærk at søgefunktionen\n automatisk vil søge på alle ordene. Sider, der indeholder\n færre ord, vil ikke indgå i resultaterne." -#: 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 "søg" -#: 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:282 msgid "Search Results" msgstr "Søgeresultater" -#: 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:284 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 "Din søgning matchede ikke nogen dokumenter. Sikr dig at alle ord er stavet korrekt og at du har valgt nok kategorier." #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -820,11 +815,11 @@ msgstr "Forbereder søgning..." #: sphinx/themes/basic/static/searchtools.js_t:286 #, python-format msgid "Search finished, found %s page(s) matching the search query." -msgstr "" +msgstr "Søgning færdig, fandt %s sider der matcher søgeforespørgslen." #: sphinx/themes/basic/static/searchtools.js_t:338 msgid ", in " -msgstr "" +msgstr ", i" #: sphinx/themes/classic/static/sidebar.js_t:83 msgid "Expand sidebar" @@ -841,28 +836,27 @@ msgstr "Indhold" #: sphinx/writers/html.py:349 msgid "Permalink to this code" -msgstr "" +msgstr "Permahenvisning til denne kode" #: sphinx/writers/html.py:353 msgid "Permalink to this image" -msgstr "" +msgstr "Permahenvisning til dette billede" #: sphinx/writers/html.py:355 msgid "Permalink to this toctree" -msgstr "" +msgstr "Permahenvisning til dette toctree" #: sphinx/writers/html.py:677 msgid "Permalink to this table" -msgstr "" +msgstr "Permahenvisning til denne tabel" #: sphinx/writers/latex.py:361 msgid "Release" msgstr "Udgave" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "Fare" +msgstr "side" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -880,18 +874,8 @@ msgstr "Fortsættes på næste side" #: sphinx/writers/manpage.py:282 sphinx/writers/text.py:582 #, python-format msgid "[image: %s]" -msgstr "" +msgstr "[billede: %s]" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[billede]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%d. %B, %Y" - -#~ msgid "%b %d, %Y" -#~ msgstr "%d. %b, %Y" - -#~ 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." - diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.js b/sphinx/locale/de/LC_MESSAGES/sphinx.js index 9c91e5802..748aaf7d9 100644 --- a/sphinx/locale/de/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/de/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "de", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", in ", "About these documents": "\u00dcber dieses Dokument", "Automatically generated list of changes in version %(version)s": "Automatisch generierte Liste der \u00c4nderungen in Version %(version)s", "C API changes": "C API-\u00c4nderungen", "Changes in Version %(version)s — %(docstitle)s": "\u00c4nderungen in Version %(version)s — %(docstitle)s", "Collapse sidebar": "Seitenleiste einklappen", "Complete Table of Contents": "Vollst\u00e4ndiges Inhaltsverzeichnis", "Contents": "Inhalt", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "Mit Sphinx %(sphinx_version)s erstellt.", "Enter search terms or a module, class or function name.": "Geben Sie Suchbegriffe oder einen Modul-, Klassen- oder Funktionsnamen ein.", "Expand sidebar": "Seitenleiste ausklappen", "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.": "Von hier aus k\u00f6nnen 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 allen Worten sucht. Seiten, die nicht alle Worte enthalten, erscheinen nicht in der Ergebnisliste.", "Full index on one page": "Gesamtes Stichwortverzeichnis auf einer Seite", "General Index": "Stichwortverzeichnis", "Global Module Index": "Globaler Modulindex", "Go": "Los", "Hide Search Matches": "Suchergebnisse ausblenden", "Index": "Stichwortverzeichnis", "Index – %(key)s": "Stichwortverzeichnis – %(key)s", "Index pages by letter": "Stichwortverzeichnis nach Anfangsbuchstabe", "Indices and tables:": "Verzeichnisse und Tabellen:", "Last updated on %(last_updated)s.": "Zuletzt aktualisiert am %(last_updated)s.", "Library changes": "Bibliotheks-\u00c4nderungen", "Navigation": "Navigation", "Next topic": "N\u00e4chstes Thema", "Other changes": "Andere \u00c4nderungen", "Overview": "\u00dcbersicht", "Permalink to this definition": "Link zu dieser Definition", "Permalink to this headline": "Link zu dieser \u00dcberschrift", "Please activate JavaScript to enable the search\n functionality.": "Bitte aktivieren Sie JavaScript, wenn Sie die Suchfunktion nutzen wollen.", "Preparing search...": "Suche wird vorbereitet...", "Previous topic": "Vorheriges Thema", "Quick search": "Schnellsuche", "Search": "Suche", "Search Page": "Suche", "Search Results": "Suchergebnisse", "Search finished, found %s page(s) matching the search query.": "Die Suche ist fertig, es wurde(n) %s Seite(n) mit Treffern gefunden.", "Search within %(docstitle)s": "Suche in %(docstitle)s", "Searching": "Suchen", "Show Source": "Quellcode anzeigen", "Table Of Contents": "Inhalt", "This Page": "Diese Seite", "Welcome! This is": "Willkommen! Dies ist", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Ihre Suche ergab keine Treffer. Bitte stellen Sie sicher, dass alle W\u00f6rter richtig geschrieben sind und gen\u00fcgend Kategorien ausgew\u00e4hlt sind.", "all functions, classes, terms": "alle Funktionen, Klassen, Begriffe", "can be huge": "kann gro\u00df sein", "last updated": "zuletzt aktualisiert", "lists all sections and subsections": "Liste aller Kapitel und Unterkapitel", "next chapter": "n\u00e4chstes Kapitel", "previous chapter": "vorheriges Kapitel", "quick access to all modules": "schneller Zugriff auf alle Module", "search": "suchen", "search this documentation": "durchsuche diese Dokumentation", "the documentation for": "die Dokumentation f\u00fcr"}, "plural_expr": "(n != 1)"}); \ No newline at end of file +Documentation.addTranslations({"locale": "de", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", in ", "About these documents": "\u00dcber dieses Dokument", "Automatically generated list of changes in version %(version)s": "Automatisch generierte Liste der \u00c4nderungen in Version %(version)s", "C API changes": "C API-\u00c4nderungen", "Changes in Version %(version)s — %(docstitle)s": "\u00c4nderungen in Version %(version)s — %(docstitle)s", "Collapse sidebar": "Seitenleiste einklappen", "Complete Table of Contents": "Vollst\u00e4ndiges Inhaltsverzeichnis", "Contents": "Inhalt", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "Mit Sphinx %(sphinx_version)s erstellt.", "Expand sidebar": "Seitenleiste ausklappen", "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.": "Von hier aus k\u00f6nnen 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 allen Worten sucht. Seiten, die nicht alle Worte enthalten, erscheinen nicht in der Ergebnisliste.", "Full index on one page": "Gesamtes Stichwortverzeichnis auf einer Seite", "General Index": "Stichwortverzeichnis", "Global Module Index": "Globaler Modulindex", "Go": "Los", "Hide Search Matches": "Suchergebnisse ausblenden", "Index": "Stichwortverzeichnis", "Index – %(key)s": "Stichwortverzeichnis – %(key)s", "Index pages by letter": "Stichwortverzeichnis nach Anfangsbuchstabe", "Indices and tables:": "Verzeichnisse und Tabellen:", "Last updated on %(last_updated)s.": "Zuletzt aktualisiert am %(last_updated)s.", "Library changes": "Bibliotheks-\u00c4nderungen", "Navigation": "Navigation", "Next topic": "N\u00e4chstes Thema", "Other changes": "Andere \u00c4nderungen", "Overview": "\u00dcbersicht", "Permalink to this definition": "Link zu dieser Definition", "Permalink to this headline": "Link zu dieser \u00dcberschrift", "Please activate JavaScript to enable the search\n functionality.": "Bitte aktivieren Sie JavaScript, wenn Sie die Suchfunktion nutzen wollen.", "Preparing search...": "Suche wird vorbereitet...", "Previous topic": "Vorheriges Thema", "Quick search": "Schnellsuche", "Search": "Suche", "Search Page": "Suche", "Search Results": "Suchergebnisse", "Search finished, found %s page(s) matching the search query.": "Die Suche ist fertig, es wurde(n) %s Seite(n) mit Treffern gefunden.", "Search within %(docstitle)s": "Suche in %(docstitle)s", "Searching": "Suchen", "Show Source": "Quellcode anzeigen", "Table Of Contents": "Inhalt", "This Page": "Diese Seite", "Welcome! This is": "Willkommen! Dies ist", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Ihre Suche ergab keine Treffer. Bitte stellen Sie sicher, dass alle W\u00f6rter richtig geschrieben sind und gen\u00fcgend Kategorien ausgew\u00e4hlt sind.", "all functions, classes, terms": "alle Funktionen, Klassen, Begriffe", "can be huge": "kann gro\u00df sein", "last updated": "zuletzt aktualisiert", "lists all sections and subsections": "Liste aller Kapitel und Unterkapitel", "next chapter": "n\u00e4chstes Kapitel", "previous chapter": "vorheriges Kapitel", "quick access to all modules": "schneller Zugriff auf alle Module", "search": "suchen", "search this documentation": "durchsuche diese Dokumentation", "the documentation for": "die Dokumentation f\u00fcr"}, "plural_expr": "(n != 1)"}); \ 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 8ad71d192..4af08fc5e 100644 Binary files a/sphinx/locale/de/LC_MESSAGES/sphinx.mo and b/sphinx/locale/de/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/de/LC_MESSAGES/sphinx.po b/sphinx/locale/de/LC_MESSAGES/sphinx.po index d6361372f..be23ba72e 100644 --- a/sphinx/locale/de/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/de/LC_MESSAGES/sphinx.po @@ -1,23 +1,23 @@ -# German translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# Georg Brandl , 2013-2015 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" "Last-Translator: Takayuki Shimizukawa \n" -"Language: de\n" -"Language-Team: German " -"(http://www.transifex.com/projects/p/sphinx-1/language/de/)\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Language-Team: German (http://www.transifex.com/sphinx-doc/sphinx-1/language/de/)\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 2.2.0\n" +"Language: de\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinx/config.py:91 #, python-format @@ -178,9 +178,8 @@ msgid "variable" msgstr "Variable" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "Parameter" +msgstr "" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -470,14 +469,13 @@ msgid "Todo" msgstr "Zu tun" #: sphinx/ext/todo.py:129 -#, fuzzy msgid "<>" -msgstr "ursprüngliche Eintrag" +msgstr "" #: sphinx/ext/todo.py:132 -#, fuzzy, python-format +#, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "(Der <> steht in %s, Zeile %d.)" +msgstr "" #: sphinx/ext/todo.py:141 msgid "original entry" @@ -699,9 +697,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 @@ -736,30 +732,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 " -"allen Worten sucht. Seiten, die nicht alle Worte enthalten, erscheinen " -"nicht in der Ergebnisliste." +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 allen Worten sucht. Seiten, die nicht alle Worte enthalten, erscheinen nicht in der Ergebnisliste." -#: 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:282 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:284 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" @@ -861,9 +853,8 @@ msgid "Release" msgstr "Release" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "Gefahr" +msgstr "" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -886,15 +877,3 @@ msgstr "[Bild: %s]" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[Bild]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%d.%m.%Y" - -#~ msgid "%b %d, %Y" -#~ msgstr "%d.%m.%Y" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "" -#~ "Geben Sie Suchbegriffe oder einen " -#~ "Modul-, Klassen- oder Funktionsnamen ein." - diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.js b/sphinx/locale/el/LC_MESSAGES/sphinx.js new file mode 100644 index 000000000..f9dabdb84 --- /dev/null +++ b/sphinx/locale/el/LC_MESSAGES/sphinx.js @@ -0,0 +1 @@ +Documentation.addTranslations({"locale": "el", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", \u03c3\u03c4\u03bf ", "About these documents": "\u03a3\u03c7\u03b5\u03c4\u03b9\u03ba\u03ac \u03bc\u03b5 \u03b1\u03c5\u03c4\u03ac \u03c4\u03b1 \u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03b1", "Automatically generated list of changes in version %(version)s": "\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1 \u03c0\u03b1\u03c1\u03b1\u03b3\u03cc\u03bc\u03b5\u03bd\u03b7 \u03bb\u03af\u03c3\u03c4\u03b1 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ce\u03bd \u03c3\u03c4\u03b7\u03bd \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 %(version)s", "C API changes": "\u0391\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03c3\u03c4\u03bf API \u03c4\u03b7\u03c2 C", "Changes in Version %(version)s — %(docstitle)s": "\u0391\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03c3\u03c4\u03b7\u03bd \u0388\u03ba\u03b4\u03bf\u03c3\u03b7 %(version)s — %(docstitle)s", "Collapse sidebar": "\u039a\u03bb\u03b5\u03af\u03c3\u03b9\u03bc\u03bf \u03c0\u03bb\u03b1\u03ca\u03bd\u03ae\u03c2 \u03bc\u03c0\u03ac\u03c1\u03b1\u03c2", "Complete Table of Contents": "\u03a0\u03bb\u03ae\u03c1\u03b7\u03c2 \u03a0\u03af\u03bd\u03b1\u03ba\u03b1\u03c2 \u03a0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd", "Contents": "\u03a0\u03b5\u03c1\u03b9\u03b5\u03c7\u03cc\u03bc\u03b5\u03bd\u03b1", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b5 \u03bc\u03b5 \u03c4\u03bf Sphinx %(sphinx_version)s.", "Expand sidebar": "\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 \u03c0\u03bb\u03b1\u03ca\u03bd\u03ae\u03c2 \u03bc\u03c0\u03ac\u03c1\u03b1\u03c2", "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.": "\u0391\u03c0\u03cc \u03b5\u03b4\u03ce \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03bd\u03b1\u03b6\u03b7\u03c4\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03ac \u03c4\u03b1 \u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03b1. \u0395\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03c4\u03b9\u03c2 \u03bb\u03ad\u03be\u03b5\u03b9\u03c2\n \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2 \u03c3\u03c4\u03bf \u03c0\u03b1\u03c1\u03b1\u03ba\u03ac\u03c4\u03c9 \u03c0\u03bb\u03b1\u03af\u03c3\u03b9\u03bf \u03ba\u03b1\u03b9 \u03c0\u03b1\u03c4\u03ae\u03c3\u03c4\u03b5 \"\u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\". \u03a3\u03b7\u03bc\u03b5\u03b9\u03ce\u03c3\u03c4\u03b5 \u03cc\u03c4\u03b9 \u03b7 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \n \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2 \u03b8\u03b1 \u03b1\u03bd\u03b1\u03b6\u03b7\u03c4\u03ae\u03c3\u03b5\u03b9 \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b1 \u03b3\u03b9\u03b1 \u03cc\u03bb\u03b5\u03c2 \u03c4\u03b9\u03c2 \u03bb\u03ad\u03be\u03b5\u03b9\u03c2. \u03a3\u03b5\u03bb\u03af\u03b4\u03b5\u03c2\n \u03c0\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03bf\u03c5\u03bd \u03bb\u03b9\u03b3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03bb\u03ad\u03be\u03b5\u03b9\u03c2 \u03b4\u03b5 \u03b8\u03b1 \u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03bf\u03cd\u03bd \u03c3\u03c4\u03b7 \u03bb\u03af\u03c3\u03c4\u03b1 \u03b1\u03c0\u03bf\u03c4\u03b5\u03bb\u03b5\u03c3\u03bc\u03ac\u03c4\u03c9\u03bd.", "Full index on one page": "\u03a0\u03bb\u03ae\u03c1\u03b5\u03c2 \u03b5\u03c5\u03c1\u03b5\u03c4\u03ae\u03c1\u03b9\u03bf \u03c3\u03b5 \u03bc\u03af\u03b1 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1", "General Index": "\u039a\u03b5\u03bd\u03c4\u03c1\u03b9\u03ba\u03cc \u0395\u03c5\u03c1\u03b5\u03c4\u03ae\u03c1\u03b9\u03bf\u03bf", "Global Module Index": "\u039a\u03b1\u03b8\u03bf\u03bb\u03b9\u03ba\u03cc \u0395\u03c5\u03c1\u03b5\u03c4\u03ae\u03c1\u03b9\u03bf \u039c\u03bf\u03bd\u03ac\u03b4\u03c9\u03bd", "Go": "\u03a0\u03ac\u03bc\u03b5", "Hide Search Matches": "\u0391\u03c0\u03cc\u03ba\u03c1\u03c5\u03c8\u03b7 \u0395\u03c5\u03c1\u03b5\u03b8\u03ad\u03bd\u03c4\u03c9\u03bd \u0391\u03bd\u03b1\u03b6\u03b7\u03c4\u03ae\u03c3\u03b5\u03c9\u03bd", "Index": "\u0395\u03c5\u03c1\u03b5\u03c4\u03ae\u03c1\u03b9\u03bf", "Index – %(key)s": "\u0395\u03c5\u03c1\u03b5\u03c4\u03ae\u03c1\u03b9\u03bf – %(key)s", "Index pages by letter": "\u03a3\u03b5\u03bb\u03af\u03b4\u03b5\u03c2 \u03b5\u03c5\u03c1\u03b5\u03c4\u03b7\u03c1\u03af\u03bf\u03c5 \u03b1\u03bd\u03ac \u03b3\u03c1\u03ac\u03bc\u03bc\u03b1", "Indices and tables:": "\u0395\u03c5\u03c1\u03b5\u03c4\u03ae\u03c1\u03b9\u03b1 \u03ba\u03b1\u03b9 \u03c0\u03af\u03bd\u03b1\u03ba\u03b5\u03c2:", "Last updated on %(last_updated)s.": "\u03a4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c3\u03c4\u03b9\u03c2 %(last_updated)s.", "Library changes": "\u0391\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2", "Navigation": "\u03a0\u03bb\u03bf\u03ae\u03b3\u03b7\u03c3\u03b7", "Next topic": "\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf \u03b8\u03ad\u03bc\u03b1", "Other changes": "\u0386\u03bb\u03bb\u03b5\u03c2 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2", "Overview": "\u0395\u03c0\u03b9\u03c3\u03ba\u03cc\u03c0\u03b7\u03c3\u03b7", "Permalink to this definition": "\u039c\u03cc\u03bd\u03b9\u03bc\u03bf\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf\u03c2 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03cc\u03bd \u03c4\u03bf\u03bd \u03bf\u03c1\u03b9\u03c3\u03bc\u03cc", "Permalink to this headline": "\u039c\u03cc\u03bd\u03b9\u03bc\u03bf\u03c2 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03bc\u03bf\u03c2 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03ae\u03bd \u03c4\u03b7\u03bd \u03ba\u03b5\u03c6\u03b1\u03bb\u03af\u03b4\u03b1", "Please activate JavaScript to enable the search\n functionality.": "\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce, \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5 \u03c4\u03b7 JavaScript \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03c5\u03bd\u03b1\u03c4\u03ae \u03b7 \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03af\u03b1\n \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2.", "Preparing search...": "\u03a0\u03c1\u03bf\u03b5\u03c4\u03bf\u03b9\u03bc\u03b1\u03c3\u03af\u03b1 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2...", "Previous topic": "\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf \u03b8\u03ad\u03bc\u03b1", "Quick search": "\u03a3\u03cd\u03bd\u03c4\u03bf\u03bc\u03b7 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7", "Search": "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7", "Search Page": "\u03a3\u03b5\u03bb\u03af\u03b4\u03b1 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2", "Search Results": "\u0391\u03c0\u03bf\u03c4\u03b5\u03bb\u03ad\u03c3\u03bc\u03b1\u03c4\u03b1 \u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2", "Search finished, found %s page(s) matching the search query.": "\u0397 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03bf\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5, \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5/\u03b1\u03bd %s \u03c3\u03b5\u03bb\u03af\u03b4\u03b1/\u03b5\u03c2 \u03bc\u03b5 \u03b2\u03ac\u03c3\u03b7 \u03c4\u03bf\u03c5\u03c2 \u03cc\u03c1\u03bf\u03c5\u03c2 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2.", "Search within %(docstitle)s": "\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03c3\u03c4\u03bf %(docstitle)s", "Searching": "\u0395\u03ba\u03c4\u03b5\u03bb\u03b5\u03af\u03c4\u03b1\u03b9 \u03b7 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7", "Show Source": "\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1", "Table Of Contents": "\u03a0\u03af\u03bd\u03b1\u03ba\u03b1\u03c2 \u03a0\u03b5\u03c1\u03b9\u03b5\u03c7\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd", "This Page": "\u0391\u03c5\u03c4\u03ae \u03b7 \u03c3\u03b5\u03bb\u03af\u03b4\u03b1", "Welcome! This is": "\u039a\u03b1\u03bb\u03c9\u03c3\u03ae\u03c1\u03b8\u03b1\u03c4\u03b5! \u0391\u03c5\u03c4\u03ae \u03b5\u03af\u03bd\u03b1\u03b9", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "\u0397 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03ae \u03c3\u03b1\u03c2 \u03b4\u03b5\u03bd \u03c4\u03b1\u03c5\u03c4\u03bf\u03c0\u03bf\u03b9\u03ae\u03b8\u03b7\u03ba\u03b5 \u03bc\u03b5 \u03ba\u03b1\u03bd\u03ad\u03bd\u03b1 \u03ba\u03b5\u03af\u03bc\u03b5\u03bd\u03bf. \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce, \u03b5\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03b9\u03ce\u03c3\u03c4\u03b5 \u03cc\u03c4\u03b9 \u03cc\u03bb\u03b5\u03c2 \u03bf\u03b9 \u03bb\u03ad\u03be\u03b5\u03b9\u03c2 \u03ad\u03c7\u03bf\u03c5\u03bd \u03c4\u03b7 \u03c3\u03c9\u03c3\u03c4\u03ae \u03bf\u03c1\u03b8\u03bf\u03b3\u03c1\u03b1\u03c6\u03af\u03b1 \u03ba\u03b1\u03b9 \u03cc\u03c4\u03b9 \u03ad\u03c7\u03b5\u03c4\u03b5 \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03b5\u03b9\u03c2 \u03b1\u03c1\u03ba\u03b5\u03c4\u03ad\u03c2 \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b5\u03c2.", "all functions, classes, terms": "\u03cc\u03bb\u03b5\u03c2 \u03bf\u03b9 \u03c3\u03c5\u03bd\u03b1\u03c1\u03c4\u03ae\u03c3\u03b5\u03b9\u03c2, \u03ba\u03bb\u03ac\u03c3\u03b5\u03b9\u03c2, \u03cc\u03c1\u03bf\u03b9", "can be huge": "\u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03c4\u03b5\u03c1\u03ac\u03c3\u03c4\u03b9\u03bf", "last updated": "\u03c4\u03b5\u03bb\u03b5\u03c5\u03c4\u03b1\u03af\u03b1 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7", "lists all sections and subsections": "\u03b1\u03c0\u03b1\u03c1\u03b9\u03b8\u03bc\u03b5\u03af \u03cc\u03bb\u03b1 \u03c4\u03b1 \u03ba\u03b5\u03c6\u03ac\u03bb\u03b1\u03b9\u03b1 \u03ba\u03b1\u03b9 \u03c5\u03c0\u03bf\u03ba\u03b5\u03c6\u03ac\u03bb\u03b1\u03b9\u03b1", "next chapter": "\u03b5\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf \u03ba\u03b5\u03c6\u03ac\u03bb\u03b1\u03b9\u03bf", "previous chapter": "\u03c0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf \u03ba\u03b5\u03c6\u03ac\u03bb\u03b1\u03b9\u03bf", "quick access to all modules": "\u03b3\u03c1\u03ae\u03b3\u03bf\u03c1\u03b7 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03c3\u03b5 \u03cc\u03bb\u03b5\u03c2 \u03c4\u03b9\u03c2 \u03bc\u03bf\u03bd\u03ac\u03b4\u03b5\u03c2", "search": "\u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7", "search this documentation": "\u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03b1\u03c5\u03c4\u03ae\u03c2 \u03c4\u03b7\u03c2 \u03c4\u03b5\u03ba\u03bc\u03b7\u03c1\u03af\u03c9\u03c3\u03b7\u03c2", "the documentation for": "\u03b7 \u03c4\u03b5\u03ba\u03bc\u03b7\u03c1\u03af\u03c9\u03c3\u03b7 \u03c4\u03bf\u03c5"}, "plural_expr": "(n != 1)"}); \ No newline at end of file diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.mo b/sphinx/locale/el/LC_MESSAGES/sphinx.mo new file mode 100644 index 000000000..6abb3cd83 Binary files /dev/null and b/sphinx/locale/el/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/el/LC_MESSAGES/sphinx.po b/sphinx/locale/el/LC_MESSAGES/sphinx.po new file mode 100644 index 000000000..53fa6543b --- /dev/null +++ b/sphinx/locale/el/LC_MESSAGES/sphinx.po @@ -0,0 +1,879 @@ +# Translations template for Sphinx. +# Copyright (C) 2016 ORGANIZATION +# This file is distributed under the same license as the Sphinx project. +# +# Translators: +# Stelios Vitalis , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Sphinx\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2016-03-06 21:58+0900\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" +"Last-Translator: Takayuki Shimizukawa \n" +"Language-Team: Greek (http://www.transifex.com/sphinx-doc/sphinx-1/language/el/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.2.0\n" +"Language: el\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: sphinx/config.py:91 +#, python-format +msgid "Fig. %s" +msgstr "Σχήμα %s" + +#: sphinx/config.py:92 +#, python-format +msgid "Table %s" +msgstr "Πίνακας %s" + +#: sphinx/config.py:93 +#, python-format +msgid "Listing %s" +msgstr "Λίστα %s" + +#: sphinx/config.py:100 +#, python-format +msgid "%s %s documentation" +msgstr "Τεκμηρίωση του %s - %s" + +#: sphinx/environment.py:1829 +#, python-format +msgid "see %s" +msgstr "δείτε %s" + +#: sphinx/environment.py:1833 +#, python-format +msgid "see also %s" +msgstr "δείτε επίσης %s" + +#: sphinx/environment.py:1893 +msgid "Symbols" +msgstr "Σύμβολα" + +#: sphinx/roles.py:193 +#, python-format +msgid "Python Enhancement Proposals; PEP %s" +msgstr "Python Enhancement Proposals; PEP %s" + +#: sphinx/transforms.py:56 sphinx/writers/latex.py:374 +#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222 +msgid "MMMM dd, YYYY" +msgstr "" + +#: sphinx/builders/changes.py:75 +msgid "Builtins" +msgstr "Ενσωματωμένες λειτουργίες" + +#: sphinx/builders/changes.py:77 +msgid "Module level" +msgstr "Επίπεδο μονάδας λειτουργίας" + +#: sphinx/builders/html.py:295 +msgid "MMM dd, YYYY" +msgstr "" + +#: sphinx/builders/html.py:315 sphinx/themes/basic/defindex.html:30 +msgid "General Index" +msgstr "Κεντρικό Ευρετήριοο" + +#: sphinx/builders/html.py:315 +msgid "index" +msgstr "ευρετήριο" + +#: sphinx/builders/html.py:376 +msgid "next" +msgstr "επόμενο" + +#: sphinx/builders/html.py:385 +msgid "previous" +msgstr "προηγούμενο" + +#: sphinx/builders/latex.py:180 sphinx/builders/texinfo.py:199 +msgid " (in " +msgstr " (σε " + +#: sphinx/directives/other.py:149 +msgid "Section author: " +msgstr "Συντάκτης τμήματος: " + +#: sphinx/directives/other.py:151 +msgid "Module author: " +msgstr "Συντάκτης μονάδας: " + +#: sphinx/directives/other.py:153 +msgid "Code author: " +msgstr "Συντάκτης κώδικα: " + +#: sphinx/directives/other.py:155 +msgid "Author: " +msgstr "Συντάκτης: " + +#: sphinx/domains/__init__.py:275 +#, python-format +msgid "%s %s" +msgstr "%s %s" + +#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605 +#: sphinx/domains/python.py:124 +msgid "Parameters" +msgstr "Παράμετροι" + +#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136 +msgid "Returns" +msgstr "Επιστρέφει" + +#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:138 +msgid "Return type" +msgstr "Επιστρεφόμενος τύπος" + +#: sphinx/domains/c.py:177 +#, python-format +msgid "%s (C function)" +msgstr "%s (συνάρτηση C)" + +#: sphinx/domains/c.py:179 +#, python-format +msgid "%s (C member)" +msgstr "%s (μέλος C)" + +#: sphinx/domains/c.py:181 +#, python-format +msgid "%s (C macro)" +msgstr "%s (μακροεντολή C)" + +#: sphinx/domains/c.py:183 +#, python-format +msgid "%s (C type)" +msgstr "%s (τύπος C)" + +#: sphinx/domains/c.py:185 +#, python-format +msgid "%s (C variable)" +msgstr "%s (μεταβλητή C)" + +#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589 +msgid "function" +msgstr "συνάρτηση" + +#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954 +msgid "member" +msgstr "μέλος" + +#: sphinx/domains/c.py:244 +msgid "macro" +msgstr "μακροεντολή" + +#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:3955 +msgid "type" +msgstr "τύπος" + +#: sphinx/domains/c.py:246 +msgid "variable" +msgstr "μεταβλητή" + +#: sphinx/domains/cpp.py:3608 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "Προκαλεί" + +#: sphinx/domains/cpp.py:3733 +#, python-format +msgid "%s (C++ type)" +msgstr "%s (τύπος C++)" + +#: sphinx/domains/cpp.py:3744 +#, python-format +msgid "%s (C++ member)" +msgstr "%s (μέλος C++)" + +#: sphinx/domains/cpp.py:3755 +#, python-format +msgid "%s (C++ function)" +msgstr "%s (συνάρτηση C++)" + +#: sphinx/domains/cpp.py:3766 +#, python-format +msgid "%s (C++ class)" +msgstr "%s (κλάση C++)" + +#: sphinx/domains/cpp.py:3786 +#, python-format +msgid "%s (C++ enum)" +msgstr "%s (enum της C++)" + +#: sphinx/domains/cpp.py:3816 +#, python-format +msgid "%s (C++ enumerator)" +msgstr "%s (enumarator της C++)" + +#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:591 +msgid "class" +msgstr "κλάση" + +#: sphinx/domains/cpp.py:3956 +msgid "enum" +msgstr "enum" + +#: sphinx/domains/cpp.py:3957 +msgid "enumerator" +msgstr "enumerator" + +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282 +#, python-format +msgid "%s() (built-in function)" +msgstr "%s() (ενσωματωμένη συνάρτηση)" + +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:346 +#, python-format +msgid "%s() (%s method)" +msgstr "%s() (μέθοδος της %s)" + +#: sphinx/domains/javascript.py:109 +#, python-format +msgid "%s() (class)" +msgstr "%s() (κλάση)" + +#: sphinx/domains/javascript.py:111 +#, python-format +msgid "%s (global variable or constant)" +msgstr "%s (καθολική μεταβλητή ή σταθερά)" + +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:384 +#, python-format +msgid "%s (%s attribute)" +msgstr "%s (ιδιότητα της %s)" + +#: sphinx/domains/javascript.py:122 +msgid "Arguments" +msgstr "Παράμετροι" + +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590 +msgid "data" +msgstr "δεδομένα" + +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596 +msgid "attribute" +msgstr "ιδιότητα" + +#: sphinx/domains/python.py:129 +msgid "Variables" +msgstr "Μεταβλητές" + +#: sphinx/domains/python.py:133 +msgid "Raises" +msgstr "Προκαλεί" + +#: sphinx/domains/python.py:283 sphinx/domains/python.py:340 +#: sphinx/domains/python.py:352 sphinx/domains/python.py:365 +#, python-format +msgid "%s() (in module %s)" +msgstr "%s() (στη μονάδα %s)" + +#: sphinx/domains/python.py:286 +#, python-format +msgid "%s (built-in variable)" +msgstr "%s (ενσωματωμένη μεταβλητή)" + +#: sphinx/domains/python.py:287 sphinx/domains/python.py:378 +#, python-format +msgid "%s (in module %s)" +msgstr "%s (στη μονάδα %s)" + +#: sphinx/domains/python.py:303 +#, python-format +msgid "%s (built-in class)" +msgstr "%s (ενσωματωμένη κλάση)" + +#: sphinx/domains/python.py:304 +#, python-format +msgid "%s (class in %s)" +msgstr "%s (κλάση σε %s)" + +#: sphinx/domains/python.py:344 +#, python-format +msgid "%s() (%s.%s method)" +msgstr "%s() (μέθοδος %s.%s)" + +#: sphinx/domains/python.py:356 +#, python-format +msgid "%s() (%s.%s static method)" +msgstr "%s() (στατική μέθοδος %s.%s)" + +#: sphinx/domains/python.py:359 +#, python-format +msgid "%s() (%s static method)" +msgstr "%s() (στατική μέθοδος της %s)" + +#: sphinx/domains/python.py:369 +#, python-format +msgid "%s() (%s.%s class method)" +msgstr "%s() (μέθοδος κλάσης %s.%s)" + +#: sphinx/domains/python.py:372 +#, python-format +msgid "%s() (%s class method)" +msgstr "%s() (μέθοδος κλάσης της %s)" + +#: sphinx/domains/python.py:382 +#, python-format +msgid "%s (%s.%s attribute)" +msgstr "%s (ιδιότητα της %s.%s)" + +#: sphinx/domains/python.py:463 +#, python-format +msgid "%s (module)" +msgstr "%s (μονάδα)" + +#: sphinx/domains/python.py:520 +msgid "Python Module Index" +msgstr "Ευρετήριο Μονάδων της Python" + +#: sphinx/domains/python.py:521 +msgid "modules" +msgstr "μονάδες" + +#: sphinx/domains/python.py:567 +msgid "Deprecated" +msgstr "Αποσύρθηκε" + +#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183 +msgid "exception" +msgstr "εξαίρεση" + +#: sphinx/domains/python.py:593 +msgid "method" +msgstr "μέθοδος" + +#: sphinx/domains/python.py:594 +msgid "class method" +msgstr "μέθοδος της κλάσης" + +#: sphinx/domains/python.py:595 +msgid "static method" +msgstr "στατική μέθοδος" + +#: sphinx/domains/python.py:597 sphinx/locale/__init__.py:179 +msgid "module" +msgstr "μονάδα" + +#: sphinx/domains/python.py:762 +msgid " (deprecated)" +msgstr " (αποσύρθηκε)" + +#: sphinx/domains/rst.py:55 +#, python-format +msgid "%s (directive)" +msgstr "%s (οδηγία)" + +#: sphinx/domains/rst.py:57 +#, python-format +msgid "%s (role)" +msgstr "%s (ρόλος)" + +#: sphinx/domains/rst.py:106 +msgid "directive" +msgstr "οδηγία" + +#: sphinx/domains/rst.py:107 +msgid "role" +msgstr "ρόλος" + +#: sphinx/domains/std.py:73 sphinx/domains/std.py:89 +#, python-format +msgid "environment variable; %s" +msgstr "μεταβλητή περιβάλλοντος; %s" + +#: sphinx/domains/std.py:185 +#, python-format +msgid "%scommand line option; %s" +msgstr "%sπαράμετρος γραμμής εντολών; %s" + +#: sphinx/domains/std.py:433 +msgid "glossary term" +msgstr "γλωσσάρι" + +#: sphinx/domains/std.py:434 +msgid "grammar token" +msgstr "γραμματική ένδειξη" + +#: sphinx/domains/std.py:435 +msgid "reference label" +msgstr "ετικέτα αναφοράς" + +#: sphinx/domains/std.py:437 +msgid "environment variable" +msgstr "μεταβλητή περιβάλλοντος" + +#: sphinx/domains/std.py:438 +msgid "program option" +msgstr "επιλογή προγράμματος" + +#: sphinx/domains/std.py:471 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:363 sphinx/writers/texinfo.py:481 +msgid "Index" +msgstr "Ευρετήριο" + +#: sphinx/domains/std.py:472 +msgid "Module Index" +msgstr "Ευρετήριο μονάδων" + +#: sphinx/domains/std.py:473 sphinx/themes/basic/defindex.html:25 +msgid "Search Page" +msgstr "Σελίδα αναζήτησης" + +#: sphinx/ext/autodoc.py:1265 +#, python-format +msgid " Bases: %s" +msgstr " Βασικές κλάσεις: %s" + +#: sphinx/ext/autodoc.py:1318 +#, python-format +msgid "alias of :class:`%s`" +msgstr "ψευδώνυμο της :κλάσης:`%s`" + +#: sphinx/ext/graphviz.py:309 sphinx/ext/graphviz.py:318 +#, python-format +msgid "[graph: %s]" +msgstr "[γράφημα: %s]" + +#: sphinx/ext/graphviz.py:311 sphinx/ext/graphviz.py:320 +msgid "[graph]" +msgstr "[γράφημα]" + +#: sphinx/ext/intersphinx.py:359 +#, python-format +msgid "(in %s v%s)" +msgstr "(στη %s έκδοση %s)" + +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:99 +msgid "[source]" +msgstr "[πηγή]" + +#: sphinx/ext/todo.py:56 +msgid "Todo" +msgstr "Εκκρεμότητα" + +#: sphinx/ext/todo.py:129 +msgid "<>" +msgstr "" + +#: sphinx/ext/todo.py:132 +#, python-format +msgid "(The <> is located in %s, line %d.)" +msgstr "" + +#: sphinx/ext/todo.py:141 +msgid "original entry" +msgstr "αρχική εγγραφή" + +#: sphinx/ext/viewcode.py:162 +msgid "[docs]" +msgstr "[τεκμηρίωση]" + +#: sphinx/ext/viewcode.py:176 +msgid "Module code" +msgstr "Κώδικας μονάδας" + +#: sphinx/ext/viewcode.py:182 +#, python-format +msgid "

Source code for %s

" +msgstr "

Πηγαίος κώδικας για το %s

" + +#: sphinx/ext/viewcode.py:208 +msgid "Overview: module code" +msgstr "Επισκόπηση: κώδικας της μονάδας" + +#: sphinx/ext/viewcode.py:209 +msgid "

All modules for which code is available

" +msgstr "

Όλες οι μονάδες για τις οποίες υπάρχει διαθέσιμος κώδικας

" + +#: sphinx/locale/__init__.py:159 +msgid "Attention" +msgstr "Προσοχή" + +#: sphinx/locale/__init__.py:160 +msgid "Caution" +msgstr "Προσοχή" + +#: sphinx/locale/__init__.py:161 +msgid "Danger" +msgstr "Κίνδυνος" + +#: sphinx/locale/__init__.py:162 +msgid "Error" +msgstr "Σφάλμα" + +#: sphinx/locale/__init__.py:163 +msgid "Hint" +msgstr "Συμβουλή" + +#: sphinx/locale/__init__.py:164 +msgid "Important" +msgstr "Σημαντικό" + +#: sphinx/locale/__init__.py:165 +msgid "Note" +msgstr "Σημείωση" + +#: sphinx/locale/__init__.py:166 +msgid "See also" +msgstr "Δείτε επίσης" + +#: sphinx/locale/__init__.py:167 +msgid "Tip" +msgstr "Πρακτική συμβουλή" + +#: sphinx/locale/__init__.py:168 +msgid "Warning" +msgstr "Προειδοποίηση" + +#: sphinx/locale/__init__.py:172 +#, python-format +msgid "New in version %s" +msgstr "Νέο στην έκδοση %s" + +#: sphinx/locale/__init__.py:173 +#, python-format +msgid "Changed in version %s" +msgstr "Άλλαξε στην έκδοση %s" + +#: sphinx/locale/__init__.py:174 +#, python-format +msgid "Deprecated since version %s" +msgstr "Αποσύρθηκε στην έκδοση %s" + +#: sphinx/locale/__init__.py:180 +msgid "keyword" +msgstr "λέξη κλειδί" + +#: sphinx/locale/__init__.py:181 +msgid "operator" +msgstr "τελεστής" + +#: sphinx/locale/__init__.py:182 +msgid "object" +msgstr "αντικείμενο" + +#: sphinx/locale/__init__.py:184 +msgid "statement" +msgstr "δήλωση" + +#: sphinx/locale/__init__.py:185 +msgid "built-in function" +msgstr "ενσωματωμένη συνάρτηση" + +#: 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:51 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:54 sphinx/themes/basic/searchbox.html:15 +msgid "Go" +msgstr "Πάμε" + +#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +msgid "Show Source" +msgstr "Προβολή κώδικα" + +#: sphinx/themes/basic/defindex.html:11 +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 "Ευρετήρια και πίνακες:" + +#: sphinx/themes/basic/defindex.html:23 +msgid "Complete Table of Contents" +msgstr "Πλήρης Πίνακας Περιεχομένων" + +#: sphinx/themes/basic/defindex.html:24 +msgid "lists all sections and subsections" +msgstr "απαριθμεί όλα τα κεφάλαια και υποκεφάλαια" + +#: sphinx/themes/basic/defindex.html:26 +msgid "search this documentation" +msgstr "αναζήτηση αυτής της τεκμηρίωσης" + +#: sphinx/themes/basic/defindex.html:28 +msgid "Global Module Index" +msgstr "Καθολικό Ευρετήριο Μονάδων" + +#: sphinx/themes/basic/defindex.html:29 +msgid "quick access to all modules" +msgstr "γρήγορη πρόσβαση σε όλες τις μονάδες" + +#: sphinx/themes/basic/defindex.html:31 +msgid "all functions, classes, terms" +msgstr "όλες οι συναρτήσεις, κλάσεις, όροι" + +#: sphinx/themes/basic/genindex-single.html:35 +#, python-format +msgid "Index – %(key)s" +msgstr "Ευρετήριο – %(key)s" + +#: sphinx/themes/basic/genindex-single.html:63 +#: sphinx/themes/basic/genindex-split.html:24 +#: sphinx/themes/basic/genindex-split.html:38 +#: sphinx/themes/basic/genindex.html:74 +msgid "Full index on one page" +msgstr "Πλήρες ευρετήριο σε μία σελίδα" + +#: sphinx/themes/basic/genindex-split.html:16 +msgid "Index pages by letter" +msgstr "Σελίδες ευρετηρίου ανά γράμμα" + +#: sphinx/themes/basic/genindex-split.html:25 +msgid "can be huge" +msgstr "μπορεί να είναι τεράστιο" + +#: sphinx/themes/basic/layout.html:29 +msgid "Navigation" +msgstr "Πλοήγηση" + +#: sphinx/themes/basic/layout.html:122 +#, python-format +msgid "Search within %(docstitle)s" +msgstr "Αναζήτηση στο %(docstitle)s" + +#: sphinx/themes/basic/layout.html:131 +msgid "About these documents" +msgstr "Σχετικά με αυτά τα κείμενα" + +#: sphinx/themes/basic/layout.html:140 +msgid "Copyright" +msgstr "Copyright" + +#: sphinx/themes/basic/layout.html:189 +#, python-format +msgid "© Copyright %(copyright)s." +msgstr "© Copyright %(copyright)s." + +#: sphinx/themes/basic/layout.html:191 +#, python-format +msgid "© Copyright %(copyright)s." +msgstr "© Copyright %(copyright)s." + +#: sphinx/themes/basic/layout.html:195 +#, python-format +msgid "Last updated on %(last_updated)s." +msgstr "Τελευταία ενημέρωση στις %(last_updated)s." + +#: sphinx/themes/basic/layout.html:198 +#, python-format +msgid "" +"Created using Sphinx " +"%(sphinx_version)s." +msgstr "Δημιουργήθηκε με το Sphinx %(sphinx_version)s." + +#: sphinx/themes/basic/opensearch.xml:4 +#, python-format +msgid "Search %(docstitle)s" +msgstr "Αναζήτηση %(docstitle)s" + +#: sphinx/themes/basic/relations.html:11 +msgid "Previous topic" +msgstr "Προηγούμενο θέμα" + +#: sphinx/themes/basic/relations.html:13 +msgid "previous chapter" +msgstr "προηγούμενο κεφάλαιο" + +#: sphinx/themes/basic/relations.html:16 +msgid "Next topic" +msgstr "Επόμενο θέμα" + +#: sphinx/themes/basic/relations.html:18 +msgid "next chapter" +msgstr "επόμενο κεφάλαιο" + +#: sphinx/themes/basic/search.html:27 +msgid "" +"Please activate JavaScript to enable the search\n" +" functionality." +msgstr "Παρακαλώ, ενεργοποιήστε τη JavaScript για να είναι δυνατή η λειτουργία\n αναζήτησης." + +#: 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 "Από εδώ μπορείτε να αναζητήσετε σε αυτά τα κείμενα. Εισάγετε τις λέξεις\n αναζήτησης στο παρακάτω πλαίσιο και πατήστε \"αναζήτηση\". Σημειώστε ότι η λειτουργία \n αναζήτησης θα αναζητήσει αυτόματα για όλες τις λέξεις. Σελίδες\n που περιέχουν λιγότερες λέξεις δε θα εμφανιστούν στη λίστα αποτελεσμάτων." + +#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/searchresults.html:17 +msgid "search" +msgstr "αναζήτηση" + +#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:282 +msgid "Search Results" +msgstr "Αποτελέσματα Αναζήτησης" + +#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:284 +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" +msgstr "Σύντομη αναζήτηση" + +#: sphinx/themes/basic/sourcelink.html:12 +msgid "This Page" +msgstr "Αυτή η σελίδα" + +#: sphinx/themes/basic/changes/frameset.html:5 +#: sphinx/themes/basic/changes/versionchanges.html:12 +#, python-format +msgid "Changes in Version %(version)s — %(docstitle)s" +msgstr "Αλλαγές στην Έκδοση %(version)s — %(docstitle)s" + +#: sphinx/themes/basic/changes/rstsource.html:5 +#, python-format +msgid "%(filename)s — %(docstitle)s" +msgstr "%(filename)s — %(docstitle)s" + +#: sphinx/themes/basic/changes/versionchanges.html:17 +#, python-format +msgid "Automatically generated list of changes in version %(version)s" +msgstr "Αυτόματα παραγόμενη λίστα αλλαγών στην έκδοση %(version)s" + +#: sphinx/themes/basic/changes/versionchanges.html:18 +msgid "Library changes" +msgstr "Αλλαγές βιβλιοθήκης" + +#: sphinx/themes/basic/changes/versionchanges.html:23 +msgid "C API changes" +msgstr "Αλλαγές στο API της C" + +#: sphinx/themes/basic/changes/versionchanges.html:25 +msgid "Other changes" +msgstr "Άλλες αλλαγές" + +#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668 +#: sphinx/writers/html.py:673 +msgid "Permalink to this headline" +msgstr "Μόνιμος σύνδεσμος σε αυτήν την κεφαλίδα" + +#: sphinx/themes/basic/static/doctools.js_t:175 sphinx/writers/html.py:105 +msgid "Permalink to this definition" +msgstr "Μόνιμος σύνδεσμος σε αυτόν τον ορισμό" + +#: sphinx/themes/basic/static/doctools.js_t:208 +msgid "Hide Search Matches" +msgstr "Απόκρυψη Ευρεθέντων Αναζητήσεων" + +#: sphinx/themes/basic/static/searchtools.js_t:121 +msgid "Searching" +msgstr "Εκτελείται η αναζήτηση" + +#: sphinx/themes/basic/static/searchtools.js_t:126 +msgid "Preparing search..." +msgstr "Προετοιμασία αναζήτησης..." + +#: sphinx/themes/basic/static/searchtools.js_t:286 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "Η αναζήτηση ολοκληρώθηκε, βρέθηκε/αν %s σελίδα/ες με βάση τους όρους αναζήτησης." + +#: sphinx/themes/basic/static/searchtools.js_t:338 +msgid ", in " +msgstr ", στο " + +#: sphinx/themes/classic/static/sidebar.js_t:83 +msgid "Expand sidebar" +msgstr "Άνοιγμα πλαϊνής μπάρας" + +#: sphinx/themes/classic/static/sidebar.js_t:96 +#: sphinx/themes/classic/static/sidebar.js_t:124 +msgid "Collapse sidebar" +msgstr "Κλείσιμο πλαϊνής μπάρας" + +#: sphinx/themes/haiku/layout.html:24 +msgid "Contents" +msgstr "Περιεχόμενα" + +#: sphinx/writers/html.py:349 +msgid "Permalink to this code" +msgstr "Απευθείας σύνδεσμος σε αυτόν τον κώδικα" + +#: sphinx/writers/html.py:353 +msgid "Permalink to this image" +msgstr "Απευθείας σύνδεσμος σε αυτήν την εικόνα" + +#: sphinx/writers/html.py:355 +msgid "Permalink to this toctree" +msgstr "Απευθείας σύνδεσμος σε αυτόν τον πίνακα περιεχομένων" + +#: sphinx/writers/html.py:677 +msgid "Permalink to this table" +msgstr "Απευθείας σύνδεσμος σε αυτόν τον πίνακα" + +#: sphinx/writers/latex.py:361 +msgid "Release" +msgstr "Δημοσίευση" + +#: sphinx/writers/latex.py:427 +msgid "page" +msgstr "" + +#: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 +#: sphinx/writers/texinfo.py:620 +msgid "Footnotes" +msgstr "Σημειώσεις υποσέλιδου" + +#: sphinx/writers/latex.py:1022 +msgid "continued from previous page" +msgstr "συνεχίζεται από την προηγούμενη σελίδα" + +#: sphinx/writers/latex.py:1028 +msgid "Continued on next page" +msgstr "Συνεχίζεται στην επόμενη σελίδα" + +#: sphinx/writers/manpage.py:282 sphinx/writers/text.py:582 +#, python-format +msgid "[image: %s]" +msgstr "[εικόνα: %s]" + +#: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 +msgid "[image]" +msgstr "[εικόνα]" diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.js b/sphinx/locale/eo/LC_MESSAGES/sphinx.js new file mode 100644 index 000000000..ad495b790 --- /dev/null +++ b/sphinx/locale/eo/LC_MESSAGES/sphinx.js @@ -0,0 +1 @@ +Documentation.addTranslations({"locale": "eo", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© A\u016dtora rajto %(copyright)s.", "© Copyright %(copyright)s.": "© A\u016dtora rajto %(copyright)s.", ", in ": "", "About these documents": "", "Automatically generated list of changes in version %(version)s": "", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "", "Contents": "", "Copyright": "A\u016dtora rajto", "Created using Sphinx %(sphinx_version)s.": "", "Expand sidebar": "", "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.": "", "Full index on one page": "", "General Index": "Indico universala", "Global Module Index": "Universala modjulindico", "Go": "", "Hide Search Matches": "", "Index": "", "Index – %(key)s": "Indico – %(key)s", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", "Library changes": "", "Navigation": "", "Next topic": "Sekva temo", "Other changes": "", "Overview": "", "Permalink to this definition": "", "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "", "Previous topic": "Anta\u016da temo", "Quick search": "", "Search": "", "Search Page": "", "Search Results": "", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "", "Show Source": "", "Table Of Contents": "", "This Page": "", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "", "can be huge": "", "last updated": "", "lists all sections and subsections": "", "next chapter": "sekvo \u0109apitro", "previous chapter": "anta\u016da \u0109apitro", "quick access to all modules": "", "search": "ser\u0109u", "search this documentation": "", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ No newline at end of file diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.mo b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo new file mode 100644 index 000000000..457455488 Binary files /dev/null and b/sphinx/locale/eo/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/eo/LC_MESSAGES/sphinx.po b/sphinx/locale/eo/LC_MESSAGES/sphinx.po new file mode 100644 index 000000000..087dead17 --- /dev/null +++ b/sphinx/locale/eo/LC_MESSAGES/sphinx.po @@ -0,0 +1,879 @@ +# Translations template for Sphinx. +# Copyright (C) 2016 ORGANIZATION +# This file is distributed under the same license as the Sphinx project. +# +# Translators: +# Dinu Gherman , 2014 +msgid "" +msgstr "" +"Project-Id-Version: Sphinx\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2016-03-06 21:58+0900\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" +"Last-Translator: Takayuki Shimizukawa \n" +"Language-Team: Esperanto (http://www.transifex.com/sphinx-doc/sphinx-1/language/eo/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.2.0\n" +"Language: eo\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: sphinx/config.py:91 +#, python-format +msgid "Fig. %s" +msgstr "" + +#: sphinx/config.py:92 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:93 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:100 +#, python-format +msgid "%s %s documentation" +msgstr "%s %s dokumentaro" + +#: sphinx/environment.py:1829 +#, python-format +msgid "see %s" +msgstr "vidu %s" + +#: sphinx/environment.py:1833 +#, python-format +msgid "see also %s" +msgstr "vidu ankaŭ %s" + +#: sphinx/environment.py:1893 +msgid "Symbols" +msgstr "Simboloj" + +#: sphinx/roles.py:193 +#, python-format +msgid "Python Enhancement Proposals; PEP %s" +msgstr "Python Enhancement Proposals; PEP %s" + +#: sphinx/transforms.py:56 sphinx/writers/latex.py:374 +#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222 +msgid "MMMM dd, YYYY" +msgstr "" + +#: sphinx/builders/changes.py:75 +msgid "Builtins" +msgstr "" + +#: sphinx/builders/changes.py:77 +msgid "Module level" +msgstr "" + +#: sphinx/builders/html.py:295 +msgid "MMM dd, YYYY" +msgstr "" + +#: sphinx/builders/html.py:315 sphinx/themes/basic/defindex.html:30 +msgid "General Index" +msgstr "Indico universala" + +#: sphinx/builders/html.py:315 +msgid "index" +msgstr "indico" + +#: sphinx/builders/html.py:376 +msgid "next" +msgstr "sekva" + +#: sphinx/builders/html.py:385 +msgid "previous" +msgstr "antaŭa" + +#: sphinx/builders/latex.py:180 sphinx/builders/texinfo.py:199 +msgid " (in " +msgstr "" + +#: sphinx/directives/other.py:149 +msgid "Section author: " +msgstr "" + +#: sphinx/directives/other.py:151 +msgid "Module author: " +msgstr "" + +#: sphinx/directives/other.py:153 +msgid "Code author: " +msgstr "" + +#: sphinx/directives/other.py:155 +msgid "Author: " +msgstr "Aŭtoro:" + +#: sphinx/domains/__init__.py:275 +#, python-format +msgid "%s %s" +msgstr "%s %s" + +#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605 +#: sphinx/domains/python.py:124 +msgid "Parameters" +msgstr "Parametroj" + +#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136 +msgid "Returns" +msgstr "" + +#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:138 +msgid "Return type" +msgstr "" + +#: sphinx/domains/c.py:177 +#, python-format +msgid "%s (C function)" +msgstr "" + +#: sphinx/domains/c.py:179 +#, python-format +msgid "%s (C member)" +msgstr "" + +#: sphinx/domains/c.py:181 +#, python-format +msgid "%s (C macro)" +msgstr "" + +#: sphinx/domains/c.py:183 +#, python-format +msgid "%s (C type)" +msgstr "" + +#: sphinx/domains/c.py:185 +#, python-format +msgid "%s (C variable)" +msgstr "" + +#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589 +msgid "function" +msgstr "funkcio" + +#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954 +msgid "member" +msgstr "membro" + +#: sphinx/domains/c.py:244 +msgid "macro" +msgstr "nomaĵo" + +#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:3955 +msgid "type" +msgstr "tipo" + +#: sphinx/domains/c.py:246 +msgid "variable" +msgstr "" + +#: sphinx/domains/cpp.py:3608 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "" + +#: sphinx/domains/cpp.py:3733 +#, python-format +msgid "%s (C++ type)" +msgstr "" + +#: sphinx/domains/cpp.py:3744 +#, python-format +msgid "%s (C++ member)" +msgstr "" + +#: sphinx/domains/cpp.py:3755 +#, python-format +msgid "%s (C++ function)" +msgstr "" + +#: sphinx/domains/cpp.py:3766 +#, python-format +msgid "%s (C++ class)" +msgstr "" + +#: sphinx/domains/cpp.py:3786 +#, python-format +msgid "%s (C++ enum)" +msgstr "" + +#: sphinx/domains/cpp.py:3816 +#, python-format +msgid "%s (C++ enumerator)" +msgstr "" + +#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:591 +msgid "class" +msgstr "klaso" + +#: sphinx/domains/cpp.py:3956 +msgid "enum" +msgstr "" + +#: sphinx/domains/cpp.py:3957 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282 +#, python-format +msgid "%s() (built-in function)" +msgstr "" + +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:346 +#, python-format +msgid "%s() (%s method)" +msgstr "" + +#: sphinx/domains/javascript.py:109 +#, python-format +msgid "%s() (class)" +msgstr "%s() (klaso)" + +#: sphinx/domains/javascript.py:111 +#, python-format +msgid "%s (global variable or constant)" +msgstr "" + +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:384 +#, python-format +msgid "%s (%s attribute)" +msgstr "" + +#: sphinx/domains/javascript.py:122 +msgid "Arguments" +msgstr "" + +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590 +msgid "data" +msgstr "datenoj" + +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596 +msgid "attribute" +msgstr "atributo" + +#: sphinx/domains/python.py:129 +msgid "Variables" +msgstr "" + +#: sphinx/domains/python.py:133 +msgid "Raises" +msgstr "" + +#: sphinx/domains/python.py:283 sphinx/domains/python.py:340 +#: sphinx/domains/python.py:352 sphinx/domains/python.py:365 +#, python-format +msgid "%s() (in module %s)" +msgstr "" + +#: sphinx/domains/python.py:286 +#, python-format +msgid "%s (built-in variable)" +msgstr "" + +#: sphinx/domains/python.py:287 sphinx/domains/python.py:378 +#, python-format +msgid "%s (in module %s)" +msgstr "" + +#: sphinx/domains/python.py:303 +#, python-format +msgid "%s (built-in class)" +msgstr "" + +#: sphinx/domains/python.py:304 +#, python-format +msgid "%s (class in %s)" +msgstr "" + +#: sphinx/domains/python.py:344 +#, python-format +msgid "%s() (%s.%s method)" +msgstr "" + +#: sphinx/domains/python.py:356 +#, python-format +msgid "%s() (%s.%s static method)" +msgstr "" + +#: sphinx/domains/python.py:359 +#, python-format +msgid "%s() (%s static method)" +msgstr "" + +#: sphinx/domains/python.py:369 +#, python-format +msgid "%s() (%s.%s class method)" +msgstr "" + +#: sphinx/domains/python.py:372 +#, python-format +msgid "%s() (%s class method)" +msgstr "" + +#: sphinx/domains/python.py:382 +#, python-format +msgid "%s (%s.%s attribute)" +msgstr "" + +#: sphinx/domains/python.py:463 +#, python-format +msgid "%s (module)" +msgstr "" + +#: sphinx/domains/python.py:520 +msgid "Python Module Index" +msgstr "" + +#: sphinx/domains/python.py:521 +msgid "modules" +msgstr "" + +#: sphinx/domains/python.py:567 +msgid "Deprecated" +msgstr "" + +#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183 +msgid "exception" +msgstr "escepto" + +#: sphinx/domains/python.py:593 +msgid "method" +msgstr "" + +#: sphinx/domains/python.py:594 +msgid "class method" +msgstr "" + +#: sphinx/domains/python.py:595 +msgid "static method" +msgstr "" + +#: sphinx/domains/python.py:597 sphinx/locale/__init__.py:179 +msgid "module" +msgstr "" + +#: sphinx/domains/python.py:762 +msgid " (deprecated)" +msgstr "" + +#: sphinx/domains/rst.py:55 +#, python-format +msgid "%s (directive)" +msgstr "" + +#: sphinx/domains/rst.py:57 +#, python-format +msgid "%s (role)" +msgstr "" + +#: sphinx/domains/rst.py:106 +msgid "directive" +msgstr "" + +#: sphinx/domains/rst.py:107 +msgid "role" +msgstr "" + +#: sphinx/domains/std.py:73 sphinx/domains/std.py:89 +#, python-format +msgid "environment variable; %s" +msgstr "" + +#: sphinx/domains/std.py:185 +#, python-format +msgid "%scommand line option; %s" +msgstr "" + +#: sphinx/domains/std.py:433 +msgid "glossary term" +msgstr "" + +#: sphinx/domains/std.py:434 +msgid "grammar token" +msgstr "" + +#: sphinx/domains/std.py:435 +msgid "reference label" +msgstr "" + +#: sphinx/domains/std.py:437 +msgid "environment variable" +msgstr "" + +#: sphinx/domains/std.py:438 +msgid "program option" +msgstr "" + +#: sphinx/domains/std.py:471 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:363 sphinx/writers/texinfo.py:481 +msgid "Index" +msgstr "" + +#: sphinx/domains/std.py:472 +msgid "Module Index" +msgstr "" + +#: sphinx/domains/std.py:473 sphinx/themes/basic/defindex.html:25 +msgid "Search Page" +msgstr "" + +#: sphinx/ext/autodoc.py:1265 +#, python-format +msgid " Bases: %s" +msgstr "" + +#: sphinx/ext/autodoc.py:1318 +#, python-format +msgid "alias of :class:`%s`" +msgstr "" + +#: sphinx/ext/graphviz.py:309 sphinx/ext/graphviz.py:318 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:311 sphinx/ext/graphviz.py:320 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:359 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:99 +msgid "[source]" +msgstr "" + +#: sphinx/ext/todo.py:56 +msgid "Todo" +msgstr "" + +#: sphinx/ext/todo.py:129 +msgid "<>" +msgstr "" + +#: sphinx/ext/todo.py:132 +#, python-format +msgid "(The <> is located in %s, line %d.)" +msgstr "" + +#: sphinx/ext/todo.py:141 +msgid "original entry" +msgstr "" + +#: sphinx/ext/viewcode.py:162 +msgid "[docs]" +msgstr "" + +#: sphinx/ext/viewcode.py:176 +msgid "Module code" +msgstr "" + +#: sphinx/ext/viewcode.py:182 +#, python-format +msgid "

Source code for %s

" +msgstr "" + +#: sphinx/ext/viewcode.py:208 +msgid "Overview: module code" +msgstr "" + +#: sphinx/ext/viewcode.py:209 +msgid "

All modules for which code is available

" +msgstr "" + +#: sphinx/locale/__init__.py:159 +msgid "Attention" +msgstr "" + +#: sphinx/locale/__init__.py:160 +msgid "Caution" +msgstr "" + +#: sphinx/locale/__init__.py:161 +msgid "Danger" +msgstr "" + +#: sphinx/locale/__init__.py:162 +msgid "Error" +msgstr "Eraro" + +#: sphinx/locale/__init__.py:163 +msgid "Hint" +msgstr "" + +#: sphinx/locale/__init__.py:164 +msgid "Important" +msgstr "" + +#: sphinx/locale/__init__.py:165 +msgid "Note" +msgstr "" + +#: sphinx/locale/__init__.py:166 +msgid "See also" +msgstr "" + +#: sphinx/locale/__init__.py:167 +msgid "Tip" +msgstr "" + +#: sphinx/locale/__init__.py:168 +msgid "Warning" +msgstr "" + +#: sphinx/locale/__init__.py:172 +#, python-format +msgid "New in version %s" +msgstr "" + +#: sphinx/locale/__init__.py:173 +#, python-format +msgid "Changed in version %s" +msgstr "" + +#: sphinx/locale/__init__.py:174 +#, python-format +msgid "Deprecated since version %s" +msgstr "" + +#: sphinx/locale/__init__.py:180 +msgid "keyword" +msgstr "" + +#: sphinx/locale/__init__.py:181 +msgid "operator" +msgstr "" + +#: sphinx/locale/__init__.py:182 +msgid "object" +msgstr "" + +#: sphinx/locale/__init__.py:184 +msgid "statement" +msgstr "" + +#: sphinx/locale/__init__.py:185 +msgid "built-in function" +msgstr "" + +#: 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:51 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:54 sphinx/themes/basic/searchbox.html:15 +msgid "Go" +msgstr "" + +#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +msgid "Show Source" +msgstr "" + +#: sphinx/themes/basic/defindex.html:11 +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 "" + +#: sphinx/themes/basic/defindex.html:23 +msgid "Complete Table of Contents" +msgstr "" + +#: sphinx/themes/basic/defindex.html:24 +msgid "lists all sections and subsections" +msgstr "" + +#: sphinx/themes/basic/defindex.html:26 +msgid "search this documentation" +msgstr "" + +#: sphinx/themes/basic/defindex.html:28 +msgid "Global Module Index" +msgstr "Universala modjulindico" + +#: sphinx/themes/basic/defindex.html:29 +msgid "quick access to all modules" +msgstr "" + +#: sphinx/themes/basic/defindex.html:31 +msgid "all functions, classes, terms" +msgstr "" + +#: sphinx/themes/basic/genindex-single.html:35 +#, python-format +msgid "Index – %(key)s" +msgstr "Indico – %(key)s" + +#: sphinx/themes/basic/genindex-single.html:63 +#: sphinx/themes/basic/genindex-split.html:24 +#: sphinx/themes/basic/genindex-split.html:38 +#: sphinx/themes/basic/genindex.html:74 +msgid "Full index on one page" +msgstr "" + +#: sphinx/themes/basic/genindex-split.html:16 +msgid "Index pages by letter" +msgstr "" + +#: sphinx/themes/basic/genindex-split.html:25 +msgid "can be huge" +msgstr "" + +#: sphinx/themes/basic/layout.html:29 +msgid "Navigation" +msgstr "" + +#: sphinx/themes/basic/layout.html:122 +#, python-format +msgid "Search within %(docstitle)s" +msgstr "" + +#: sphinx/themes/basic/layout.html:131 +msgid "About these documents" +msgstr "" + +#: sphinx/themes/basic/layout.html:140 +msgid "Copyright" +msgstr "Aŭtora rajto" + +#: sphinx/themes/basic/layout.html:189 +#, python-format +msgid "© Copyright %(copyright)s." +msgstr "© Aŭtora rajto %(copyright)s." + +#: sphinx/themes/basic/layout.html:191 +#, python-format +msgid "© Copyright %(copyright)s." +msgstr "© Aŭtora rajto %(copyright)s." + +#: sphinx/themes/basic/layout.html:195 +#, python-format +msgid "Last updated on %(last_updated)s." +msgstr "" + +#: sphinx/themes/basic/layout.html:198 +#, python-format +msgid "" +"Created using Sphinx " +"%(sphinx_version)s." +msgstr "" + +#: sphinx/themes/basic/opensearch.xml:4 +#, python-format +msgid "Search %(docstitle)s" +msgstr "" + +#: sphinx/themes/basic/relations.html:11 +msgid "Previous topic" +msgstr "Antaŭa temo" + +#: sphinx/themes/basic/relations.html:13 +msgid "previous chapter" +msgstr "antaŭa ĉapitro" + +#: sphinx/themes/basic/relations.html:16 +msgid "Next topic" +msgstr "Sekva temo" + +#: sphinx/themes/basic/relations.html:18 +msgid "next chapter" +msgstr "sekvo ĉapitro" + +#: sphinx/themes/basic/search.html:27 +msgid "" +"Please activate JavaScript to enable the search\n" +" functionality." +msgstr "" + +#: 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:39 +#: sphinx/themes/basic/searchresults.html:17 +msgid "search" +msgstr "serĉu" + +#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:282 +msgid "Search Results" +msgstr "" + +#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:284 +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" +msgstr "" + +#: sphinx/themes/basic/sourcelink.html:12 +msgid "This Page" +msgstr "" + +#: sphinx/themes/basic/changes/frameset.html:5 +#: sphinx/themes/basic/changes/versionchanges.html:12 +#, python-format +msgid "Changes in Version %(version)s — %(docstitle)s" +msgstr "" + +#: sphinx/themes/basic/changes/rstsource.html:5 +#, python-format +msgid "%(filename)s — %(docstitle)s" +msgstr "%(filename)s — %(docstitle)s" + +#: sphinx/themes/basic/changes/versionchanges.html:17 +#, python-format +msgid "Automatically generated list of changes in version %(version)s" +msgstr "" + +#: sphinx/themes/basic/changes/versionchanges.html:18 +msgid "Library changes" +msgstr "" + +#: sphinx/themes/basic/changes/versionchanges.html:23 +msgid "C API changes" +msgstr "" + +#: sphinx/themes/basic/changes/versionchanges.html:25 +msgid "Other changes" +msgstr "" + +#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668 +#: sphinx/writers/html.py:673 +msgid "Permalink to this headline" +msgstr "" + +#: sphinx/themes/basic/static/doctools.js_t:175 sphinx/writers/html.py:105 +msgid "Permalink to this definition" +msgstr "" + +#: sphinx/themes/basic/static/doctools.js_t:208 +msgid "Hide Search Matches" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:121 +msgid "Searching" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:126 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:286 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:338 +msgid ", in " +msgstr "" + +#: sphinx/themes/classic/static/sidebar.js_t:83 +msgid "Expand sidebar" +msgstr "" + +#: sphinx/themes/classic/static/sidebar.js_t:96 +#: sphinx/themes/classic/static/sidebar.js_t:124 +msgid "Collapse sidebar" +msgstr "" + +#: sphinx/themes/haiku/layout.html:24 +msgid "Contents" +msgstr "" + +#: sphinx/writers/html.py:349 +msgid "Permalink to this code" +msgstr "" + +#: sphinx/writers/html.py:353 +msgid "Permalink to this image" +msgstr "" + +#: sphinx/writers/html.py:355 +msgid "Permalink to this toctree" +msgstr "" + +#: sphinx/writers/html.py:677 +msgid "Permalink to this table" +msgstr "" + +#: sphinx/writers/latex.py:361 +msgid "Release" +msgstr "" + +#: sphinx/writers/latex.py:427 +msgid "page" +msgstr "" + +#: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 +#: sphinx/writers/texinfo.py:620 +msgid "Footnotes" +msgstr "" + +#: sphinx/writers/latex.py:1022 +msgid "continued from previous page" +msgstr "" + +#: sphinx/writers/latex.py:1028 +msgid "Continued on next page" +msgstr "" + +#: sphinx/writers/manpage.py:282 sphinx/writers/text.py:582 +#, python-format +msgid "[image: %s]" +msgstr "" + +#: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 +msgid "[image]" +msgstr "" diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.js b/sphinx/locale/es/LC_MESSAGES/sphinx.js index 6f9c2698a..ae2d64259 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "es", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", en ", "About these documents": "Sobre este documento", "Automatically generated list of changes in version %(version)s": "Lista de cambios generada autom\u00e1ticamente en la versi\u00f3n %(version)s", "C API changes": "Cambios en la API C", "Changes in Version %(version)s — %(docstitle)s": "Cambios en la versi\u00f3n %(version)s — %(docstitle)s", "Collapse sidebar": "Contraer barra lateral", "Complete Table of Contents": "\u00cdndice de contenidos completo", "Contents": "Contenidos", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "Creado con Sphinx %(sphinx_version)s.", "Enter search terms or a module, class or function name.": "Introduzca los t\u00e9rminos de b\u00fasqueda o un nombre de m\u00f3dulo, clase o funci\u00f3n.", "Expand sidebar": "Expandir barra lateral", "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.": "Este es el di\u00e1logo de b\u00fasqueda. Introduce los t\u00e9rminos en el\n di\u00e1logo siguiente y pulsa \"buscar\". Note que el asistente buscar\u00e1 \n autom\u00e1ticamente todas las palabras. Las p\u00e1ginas que contengan \n menos palabras no aparecer\u00e1n en la lista de resultados.", "Full index on one page": "\u00cdndice completo en una p\u00e1gina", "General Index": "\u00cdndice General", "Global Module Index": "\u00cdndice Global de M\u00f3dulos", "Go": "Ir a", "Hide Search Matches": "Ocultar coincidencias de la b\u00fasqueda", "Index": "\u00cdndice", "Index – %(key)s": "\u00cdndice – %(key)s", "Index pages by letter": "\u00cdndice alfab\u00e9tico de p\u00e1ginas", "Indices and tables:": "\u00cdndices y tablas:", "Last updated on %(last_updated)s.": "Actualizado por \u00faltima vez en %(last_updated)s.", "Library changes": "Cambios en la biblioteca", "Navigation": "Navegaci\u00f3n", "Next topic": "Pr\u00f3ximo tema", "Other changes": "Otros cambios", "Overview": "Resumen", "Permalink to this definition": "Enlazar permanentemente con esta definici\u00f3n", "Permalink to this headline": "Enlazar permanentemente con este t\u00edtulo", "Please activate JavaScript to enable the search\n functionality.": "Por favor, active JavaScript para habilitar la funcionalidad\n de b\u00fasqueda.", "Preparing search...": "Preparando b\u00fasqueda...", "Previous topic": "Tema anterior", "Quick search": "B\u00fasqueda r\u00e1pida", "Search": "B\u00fasqueda", "Search Page": "P\u00e1gina de B\u00fasqueda", "Search Results": "Resultados de la b\u00fasqueda", "Search finished, found %s page(s) matching the search query.": "B\u00fasqueda finalizada, encontr\u00f3 %s p\u00e1gina(s) acorde con la consulta de b\u00fasqueda.", "Search within %(docstitle)s": "Buscar en %(docstitle)s", "Searching": "Buscando", "Show Source": "Mostrar el c\u00f3digo", "Table Of Contents": "Tabla de Contenidos", "This Page": "Esta p\u00e1gina", "Welcome! This is": "\u00a1Bienvenido! Este es", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Su b\u00fasqueda no coincide con ning\u00fan documentos. Por favor, aseg\u00farese de que todas las palabras est\u00e9n correctamente escritas y que usted all\u00e1 seleccionado las suficientes categor\u00edas.", "all functions, classes, terms": "todas las funciones, clases, t\u00e9rminos", "can be huge": "puede ser muy grande", "last updated": "actualizado por \u00faltima vez el", "lists all sections and subsections": "muestra todas las secciones y subsecciones", "next chapter": "pr\u00f3ximo cap\u00edtulo", "previous chapter": "cap\u00edtulo anterior", "quick access to all modules": "acceso r\u00e1pido a todos los m\u00f3dulos", "search": "buscar", "search this documentation": "buscar en esta documentaci\u00f3n", "the documentation for": "la documentaci\u00f3n para"}, "plural_expr": "(n != 1)"}); \ No newline at end of file +Documentation.addTranslations({"locale": "es", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", en ", "About these documents": "Sobre este documento", "Automatically generated list of changes in version %(version)s": "Lista de cambios generada autom\u00e1ticamente en la versi\u00f3n %(version)s", "C API changes": "Cambios en la API C", "Changes in Version %(version)s — %(docstitle)s": "Cambios en la versi\u00f3n %(version)s — %(docstitle)s", "Collapse sidebar": "Contraer barra lateral", "Complete Table of Contents": "\u00cdndice de contenidos completo", "Contents": "Contenidos", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "Creado con Sphinx %(sphinx_version)s.", "Expand sidebar": "Expandir barra lateral", "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.": "Este es el di\u00e1logo de b\u00fasqueda. Introduce los t\u00e9rminos en el\n di\u00e1logo siguiente y pulsa \"buscar\". Note que el asistente buscar\u00e1 \n autom\u00e1ticamente todas las palabras. Las p\u00e1ginas que contengan \n menos palabras no aparecer\u00e1n en la lista de resultados.", "Full index on one page": "\u00cdndice completo en una p\u00e1gina", "General Index": "\u00cdndice General", "Global Module Index": "\u00cdndice Global de M\u00f3dulos", "Go": "Ir a", "Hide Search Matches": "Ocultar coincidencias de la b\u00fasqueda", "Index": "\u00cdndice", "Index – %(key)s": "\u00cdndice – %(key)s", "Index pages by letter": "\u00cdndice alfab\u00e9tico de p\u00e1ginas", "Indices and tables:": "\u00cdndices y tablas:", "Last updated on %(last_updated)s.": "Actualizado por \u00faltima vez en %(last_updated)s.", "Library changes": "Cambios en la biblioteca", "Navigation": "Navegaci\u00f3n", "Next topic": "Pr\u00f3ximo tema", "Other changes": "Otros cambios", "Overview": "Resumen", "Permalink to this definition": "Enlazar permanentemente con esta definici\u00f3n", "Permalink to this headline": "Enlazar permanentemente con este t\u00edtulo", "Please activate JavaScript to enable the search\n functionality.": "Por favor, active JavaScript para habilitar la funcionalidad\n de b\u00fasqueda.", "Preparing search...": "Preparando b\u00fasqueda...", "Previous topic": "Tema anterior", "Quick search": "B\u00fasqueda r\u00e1pida", "Search": "B\u00fasqueda", "Search Page": "P\u00e1gina de B\u00fasqueda", "Search Results": "Resultados de la b\u00fasqueda", "Search finished, found %s page(s) matching the search query.": "B\u00fasqueda finalizada, encontr\u00f3 %s p\u00e1gina(s) acorde con la consulta de b\u00fasqueda.", "Search within %(docstitle)s": "Buscar en %(docstitle)s", "Searching": "Buscando", "Show Source": "Mostrar el c\u00f3digo", "Table Of Contents": "Tabla de Contenidos", "This Page": "Esta p\u00e1gina", "Welcome! This is": "\u00a1Bienvenido! Este es", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Su b\u00fasqueda no coincide con ning\u00fan documentos. Por favor, aseg\u00farese de que todas las palabras est\u00e9n correctamente escritas y que usted all\u00e1 seleccionado las suficientes categor\u00edas.", "all functions, classes, terms": "todas las funciones, clases, t\u00e9rminos", "can be huge": "puede ser muy grande", "last updated": "actualizado por \u00faltima vez el", "lists all sections and subsections": "muestra todas las secciones y subsecciones", "next chapter": "pr\u00f3ximo cap\u00edtulo", "previous chapter": "cap\u00edtulo anterior", "quick access to all modules": "acceso r\u00e1pido a todos los m\u00f3dulos", "search": "buscar", "search this documentation": "buscar en esta documentaci\u00f3n", "the documentation for": "la documentaci\u00f3n para"}, "plural_expr": "(n != 1)"}); \ 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 68abcd2a4..a302dd1be 100644 Binary files a/sphinx/locale/es/LC_MESSAGES/sphinx.mo and b/sphinx/locale/es/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/es/LC_MESSAGES/sphinx.po b/sphinx/locale/es/LC_MESSAGES/sphinx.po index 41c803e94..61baf6eb5 100644 --- a/sphinx/locale/es/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/es/LC_MESSAGES/sphinx.po @@ -1,23 +1,24 @@ -# Spanish translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# Guillem Borrell , 2011 +# Leonardo J. Caballero G. , 2013-2016 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" -"Last-Translator: Takayuki Shimizukawa \n" -"Language: es\n" -"Language-Team: Spanish " -"(http://www.transifex.com/projects/p/sphinx-1/language/es/)\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"PO-Revision-Date: 2016-03-14 14:54+0000\n" +"Last-Translator: Leonardo J. Caballero G. \n" +"Language-Team: Spanish (http://www.transifex.com/sphinx-doc/sphinx-1/language/es/)\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 2.2.0\n" +"Language: es\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinx/config.py:91 #, python-format @@ -61,7 +62,7 @@ msgstr "Python Enhancement Proposals; PEP %s" #: sphinx/transforms.py:56 sphinx/writers/latex.py:374 #: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222 msgid "MMMM dd, YYYY" -msgstr "" +msgstr "MMMM dd, YYYY" #: sphinx/builders/changes.py:75 msgid "Builtins" @@ -73,7 +74,7 @@ msgstr "Nivel de módulo" #: sphinx/builders/html.py:295 msgid "MMM dd, YYYY" -msgstr "" +msgstr "MMM dd, YYYY" #: sphinx/builders/html.py:315 sphinx/themes/basic/defindex.html:30 msgid "General Index" @@ -178,9 +179,8 @@ msgid "variable" msgstr "variable" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "Parámetros" +msgstr "Parametros de Plantilla" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -470,14 +470,13 @@ msgid "Todo" msgstr "Por hacer" #: sphinx/ext/todo.py:129 -#, fuzzy msgid "<>" -msgstr "entrada original" +msgstr "<>" #: sphinx/ext/todo.py:132 -#, fuzzy, python-format +#, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "(El <> se encuentra en %s, en la línea %d.)" +msgstr "(La <> se encuentra en %s, línea %d.)" #: sphinx/ext/todo.py:141 msgid "original entry" @@ -699,9 +698,7 @@ msgstr "Actualizado por última vez en %(last_updated)s." msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" -"Creado con Sphinx " -"%(sphinx_version)s." +msgstr "Creado con Sphinx %(sphinx_version)s." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -728,9 +725,7 @@ msgstr "próximo capítulo" msgid "" "Please activate JavaScript to enable the search\n" " functionality." -msgstr "" -"Por favor, active JavaScript para habilitar la funcionalidad\n" -" de búsqueda." +msgstr "Por favor, active JavaScript para habilitar la funcionalidad\n de búsqueda." #: sphinx/themes/basic/search.html:32 msgid "" @@ -738,30 +733,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 "" -"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." +msgstr "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:39 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: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:282 msgid "Search Results" msgstr "Resultados de la búsqueda" -#: 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:284 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." +"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" @@ -823,9 +814,7 @@ msgstr "Preparando búsqueda..." #: sphinx/themes/basic/static/searchtools.js_t:286 #, 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." +msgstr "Búsqueda finalizada, encontró %s página(s) acorde con la consulta de búsqueda." #: sphinx/themes/basic/static/searchtools.js_t:338 msgid ", in " @@ -854,7 +843,7 @@ msgstr "Enlace permanente a esta imagen" #: sphinx/writers/html.py:355 msgid "Permalink to this toctree" -msgstr "" +msgstr "Enlace permanente a la tabla de contenidos" #: sphinx/writers/html.py:677 msgid "Permalink to this table" @@ -865,9 +854,8 @@ msgid "Release" msgstr "Publicación" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "Peligro" +msgstr "página" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -890,16 +878,3 @@ msgstr "[imagen: %s]" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[imagen]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%d de %B de %Y" - -#~ msgid "%b %d, %Y" -#~ msgstr "%d de %B de %Y" - -#~ 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." - diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.js b/sphinx/locale/et/LC_MESSAGES/sphinx.js index fe7154363..a5dd685dc 100644 --- a/sphinx/locale/et/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/et/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "et", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Autori\u00f5igus %(copyright)s.", "© Copyright %(copyright)s.": "© Autori\u00f5igused %(copyright)s.", ", in ": "", "About these documents": "Info selle dokumentatsiooni kohta", "Automatically generated list of changes in version %(version)s": "Automaatselt genereeritud nimekiri versiooni %(version)s muutustest", "C API changes": "C API muutused", "Changes in Version %(version)s — %(docstitle)s": "Muutused versioonis %(version)s — %(docstitle)s", "Collapse sidebar": "Varja k\u00fclgriba", "Complete Table of Contents": "T\u00e4ielik sisukord", "Contents": "Sisukord", "Copyright": "Autori\u00f5igus", "Created using Sphinx %(sphinx_version)s.": "Loodud Sphinxiga (versioon: %(sphinx_version)s).", "Enter search terms or a module, class or function name.": "Sisesta otsingus\u00f5na v\u00f5i mooduli/klassi/funktsiooni nimi.", "Expand sidebar": "N\u00e4ita k\u00fclgriba", "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.": "Selle vormi abil saab otsida k\u00e4esolevast dokumentatsioonist. Sisesta allolevasse lahtrisse otsis\u00f5nad ning kl\u00f5psa \"Otsi\". Tasub t\u00e4hele panna, et otsingu tulemuses kuvatakse k\u00f5iki otsis\u00f5nasid sisaldavaid lehti.", "Full index on one page": "T\u00e4isindeks \u00fchel lehel", "General Index": "\u00dcldindeks", "Global Module Index": "Globaalne moodulite indeks", "Go": "Otsi", "Hide Search Matches": "Varja otsingu tulemused", "Index": "Indeks", "Index – %(key)s": "Indeks – %(key)s", "Index pages by letter": "Indeksi lehek\u00fcljed algust\u00e4he kaupa", "Indices and tables:": "Indeksid ja tabelid", "Last updated on %(last_updated)s.": "Viimati uuendatud %(last_updated)s.", "Library changes": "Teegi muutused", "Navigation": "Navigatsioon", "Next topic": "J\u00e4rgmine teema", "Other changes": "\u00dclej\u00e4\u00e4nud muutused", "Overview": "\u00dclevaade", "Permalink to this definition": "P\u00fcsiviit sellele definitsioonile", "Permalink to this headline": "P\u00fcsiviit sellele pealkirjale", "Please activate JavaScript to enable the search\n functionality.": "Otsingu v\u00f5imaldamiseks tuleb aktiveerida JavaScript.", "Preparing search...": "Otsingu ettevalmistamine...", "Previous topic": "Eelmine teema", "Quick search": "Kiirotsing", "Search": "Otsing", "Search Page": "Otsinguleht", "Search Results": "Otsingu tulemused", "Search finished, found %s page(s) matching the search query.": "Otsingu tulemusena leiti %s leht(e).", "Search within %(docstitle)s": "Otsi %(docstitle)s piires", "Searching": "Otsimine", "Show Source": "N\u00e4ita l\u00e4htekoodi", "Table Of Contents": "Sisukord", "This Page": "K\u00e4esolev leht", "Welcome! This is": "Tervitused! See on", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Sinu otsingule ei vastanud \u00fckski dokument. Palun veendu, et k\u00f5ik sisestatud s\u00f5nad on \u00f5igesti kirjutatud ja sa oled valikud piisaval hulgal kategooriaid.", "all functions, classes, terms": "k\u00f5ik funktsioonid, klassid ja terminid", "can be huge": "v\u00f5ib olla v\u00e4ga suur", "last updated": "viimati uuendatud", "lists all sections and subsections": "toob v\u00e4lja k\u00f5ik sektsioonid ja alamsektsioonid", "next chapter": "j\u00e4rgmine jaotis", "previous chapter": "eelmine jaotis", "quick access to all modules": "kiire ligip\u00e4\u00e4s k\u00f5igile moodulitele", "search": "otsi", "search this documentation": "otsi sellest dokumentatsioonist", "the documentation for": "dokumentatsioon projektile"}, "plural_expr": "(n != 1)"}); \ No newline at end of file +Documentation.addTranslations({"locale": "et", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Autori\u00f5igus %(copyright)s.", "© Copyright %(copyright)s.": "© Autori\u00f5igused %(copyright)s.", ", in ": "", "About these documents": "Info selle dokumentatsiooni kohta", "Automatically generated list of changes in version %(version)s": "Automaatselt genereeritud nimekiri versiooni %(version)s muutustest", "C API changes": "C API muutused", "Changes in Version %(version)s — %(docstitle)s": "Muutused versioonis %(version)s — %(docstitle)s", "Collapse sidebar": "Varja k\u00fclgriba", "Complete Table of Contents": "T\u00e4ielik sisukord", "Contents": "Sisukord", "Copyright": "Autori\u00f5igus", "Created using Sphinx %(sphinx_version)s.": "Loodud Sphinxiga (versioon: %(sphinx_version)s).", "Expand sidebar": "N\u00e4ita k\u00fclgriba", "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.": "Selle vormi abil saab otsida k\u00e4esolevast dokumentatsioonist. Sisesta allolevasse lahtrisse otsis\u00f5nad ning kl\u00f5psa \"Otsi\". Tasub t\u00e4hele panna, et otsingu tulemuses kuvatakse k\u00f5iki otsis\u00f5nasid sisaldavaid lehti.", "Full index on one page": "T\u00e4isindeks \u00fchel lehel", "General Index": "\u00dcldindeks", "Global Module Index": "Globaalne moodulite indeks", "Go": "Otsi", "Hide Search Matches": "Varja otsingu tulemused", "Index": "Indeks", "Index – %(key)s": "Indeks – %(key)s", "Index pages by letter": "Indeksi lehek\u00fcljed algust\u00e4he kaupa", "Indices and tables:": "Indeksid ja tabelid", "Last updated on %(last_updated)s.": "Viimati uuendatud %(last_updated)s.", "Library changes": "Teegi muutused", "Navigation": "Navigatsioon", "Next topic": "J\u00e4rgmine teema", "Other changes": "\u00dclej\u00e4\u00e4nud muutused", "Overview": "\u00dclevaade", "Permalink to this definition": "P\u00fcsiviit sellele definitsioonile", "Permalink to this headline": "P\u00fcsiviit sellele pealkirjale", "Please activate JavaScript to enable the search\n functionality.": "Otsingu v\u00f5imaldamiseks tuleb aktiveerida JavaScript.", "Preparing search...": "Otsingu ettevalmistamine...", "Previous topic": "Eelmine teema", "Quick search": "Kiirotsing", "Search": "Otsing", "Search Page": "Otsinguleht", "Search Results": "Otsingu tulemused", "Search finished, found %s page(s) matching the search query.": "Otsingu tulemusena leiti %s leht(e).", "Search within %(docstitle)s": "Otsi %(docstitle)s piires", "Searching": "Otsimine", "Show Source": "N\u00e4ita l\u00e4htekoodi", "Table Of Contents": "Sisukord", "This Page": "K\u00e4esolev leht", "Welcome! This is": "Tervitused! See on", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Sinu otsingule ei vastanud \u00fckski dokument. Palun veendu, et k\u00f5ik sisestatud s\u00f5nad on \u00f5igesti kirjutatud ja sa oled valikud piisaval hulgal kategooriaid.", "all functions, classes, terms": "k\u00f5ik funktsioonid, klassid ja terminid", "can be huge": "v\u00f5ib olla v\u00e4ga suur", "last updated": "viimati uuendatud", "lists all sections and subsections": "toob v\u00e4lja k\u00f5ik sektsioonid ja alamsektsioonid", "next chapter": "j\u00e4rgmine jaotis", "previous chapter": "eelmine jaotis", "quick access to all modules": "kiire ligip\u00e4\u00e4s k\u00f5igile moodulitele", "search": "otsi", "search this documentation": "otsi sellest dokumentatsioonist", "the documentation for": "dokumentatsioon projektile"}, "plural_expr": "(n != 1)"}); \ 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 8d9731f4e..b6bb3aef2 100644 Binary files a/sphinx/locale/et/LC_MESSAGES/sphinx.mo and b/sphinx/locale/et/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/et/LC_MESSAGES/sphinx.po b/sphinx/locale/et/LC_MESSAGES/sphinx.po index e6005d6eb..58273dca9 100644 --- a/sphinx/locale/et/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/et/LC_MESSAGES/sphinx.po @@ -1,23 +1,26 @@ -# Estonian translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# Aivar Annamaa , 2011 +# Ivar Smolin , 2012 +# Ivar Smolin , 2013-2015 +# Luc Saffre , 2015 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" "Last-Translator: Takayuki Shimizukawa \n" -"Language: et\n" -"Language-Team: Estonian " -"(http://www.transifex.com/projects/p/sphinx-1/language/et/)\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Language-Team: Estonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/et/)\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 2.2.0\n" +"Language: et\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinx/config.py:91 #, python-format @@ -178,9 +181,8 @@ msgid "variable" msgstr "muutuja" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "Parameetrid" +msgstr "" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -470,14 +472,13 @@ msgid "Todo" msgstr "Teha" #: sphinx/ext/todo.py:129 -#, fuzzy msgid "<>" -msgstr "algne kirje" +msgstr "" #: sphinx/ext/todo.py:132 -#, fuzzy, python-format +#, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "(<> asub failis %s real %d.)" +msgstr "" #: sphinx/ext/todo.py:141 msgid "original entry" @@ -699,9 +700,7 @@ msgstr "Viimati uuendatud %(last_updated)s." msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" -"Loodud Sphinxiga (versioon: " -"%(sphinx_version)s)." +msgstr "Loodud Sphinxiga (versioon: %(sphinx_version)s)." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -736,29 +735,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 "" -"Selle vormi abil saab otsida käesolevast dokumentatsioonist. Sisesta " -"allolevasse lahtrisse otsisõnad ning klõpsa \"Otsi\". Tasub tähele panna," -" et otsingu tulemuses kuvatakse kõiki otsisõnasid sisaldavaid lehti." +msgstr "Selle vormi abil saab otsida käesolevast dokumentatsioonist. Sisesta allolevasse lahtrisse otsisõnad ning klõpsa \"Otsi\". Tasub tähele panna, et otsingu tulemuses kuvatakse kõiki otsisõnasid sisaldavaid lehti." -#: 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 "otsi" -#: 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:282 msgid "Search Results" msgstr "Otsingu tulemused" -#: 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:284 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 "" -"Sinu otsingule ei vastanud ükski dokument. Palun veendu, et kõik " -"sisestatud sõnad on õigesti kirjutatud ja sa oled valikud piisaval hulgal" -" kategooriaid." +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "Sinu otsingule ei vastanud ükski dokument. Palun veendu, et kõik sisestatud sõnad on õigesti kirjutatud ja sa oled valikud piisaval hulgal kategooriaid." #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -860,9 +856,8 @@ msgid "Release" msgstr "Redaktsioon" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "Oht" +msgstr "" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -885,13 +880,3 @@ msgstr "[pilt: %s]" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[pilt]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%d. %B %Y" - -#~ msgid "%b %d, %Y" -#~ msgstr "%d. %b %Y" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "Sisesta otsingusõna või mooduli/klassi/funktsiooni nimi." - diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.js b/sphinx/locale/eu/LC_MESSAGES/sphinx.js index 01dfa4d96..0e5944082 100644 --- a/sphinx/locale/eu/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/eu/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "eu", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": "", "About these documents": "Dokumentu hauen inguruan", "Automatically generated list of changes in version %(version)s": "Automatikoki sortutako %(version)s bertsioaren aldaketen zerrenda", "C API changes": "C API aldaketak", "Changes in Version %(version)s — %(docstitle)s": "%(version)s bertsioko aldaketak — %(docstitle)s", "Collapse sidebar": "Alboko barra tolestu", "Complete Table of Contents": "Eduki taula osoa", "Contents": "Edukiak", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "Sphinx %(sphinx_version)s erabiliz sortutakoa.", "Enter search terms or a module, class or function name.": "Sartu bilaketa terminoa edo modulu, klase edo funtzioaren izena.", "Expand sidebar": "Alboko barra luzatu", "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.": "Honekin dokumentu hauetan bilatu dezakezu. Sartu zure bilaketa hitzak\nondoko kutxan eta \"bilatu\" sakatu. Kontutan eduki bilaketa funtzioak\nhitz guztiak bilatuko dituela. Hitz gutxiago dituzten orriak ez dira \nemaitzen zerrendan agertuko.", "Full index on one page": "Indize guztia orri batean", "General Index": "Indize orokorra", "Global Module Index": "Modulu indize globala", "Go": "Joan", "Hide Search Matches": "Bilaketa bat-etortzeak ezkutatu", "Index": "Indizea", "Index – %(key)s": "Indizea – %(key)s", "Index pages by letter": "Indize orriak hizkika", "Indices and tables:": "Indizeak eta taulak:", "Last updated on %(last_updated)s.": "Azken aldaketa: %(last_updated)s.", "Library changes": "Liburutegi aldaketak", "Navigation": "Nabigazioa", "Next topic": "Hurrengo gaia", "Other changes": "Beste aldaketak", "Overview": "Gainbegirada", "Permalink to this definition": "Definizio honetarako esteka iraunkorra", "Permalink to this headline": "Goiburu honetarako esteka iraunkorra", "Please activate JavaScript to enable the search\n functionality.": "Mesedez, gaitu JavaScript-a bilaketa erabili ahal izateko.", "Preparing search...": "", "Previous topic": "Aurreko gaia", "Quick search": "Bilaketa azkarra", "Search": "Bilatu", "Search Page": "Bilaketa orria", "Search Results": "Bilaketa emaitzak", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "Bilatu %(docstitle)s(e)n", "Searching": "", "Show Source": "Iturburua ikusi", "Table Of Contents": "Eduki taula", "This Page": "Orri hau", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "funtzio, klase, termino guztiak", "can be huge": "handia izan daiteke", "last updated": "", "lists all sections and subsections": "atal eta azpiatal guztiak zerrendatu", "next chapter": "hurrengo kapitulua", "previous chapter": "aurreko kapitulua", "quick access to all modules": "modulu guztietara atzipen azkarra", "search": "bilatu", "search this documentation": "dokumentazio honetan bilatu", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ No newline at end of file +Documentation.addTranslations({"locale": "eu", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": "", "About these documents": "Dokumentu hauen inguruan", "Automatically generated list of changes in version %(version)s": "Automatikoki sortutako %(version)s bertsioaren aldaketen zerrenda", "C API changes": "C API aldaketak", "Changes in Version %(version)s — %(docstitle)s": "%(version)s bertsioko aldaketak — %(docstitle)s", "Collapse sidebar": "Alboko barra tolestu", "Complete Table of Contents": "Eduki taula osoa", "Contents": "Edukiak", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "Sphinx %(sphinx_version)s erabiliz sortutakoa.", "Expand sidebar": "Alboko barra luzatu", "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.": "Honekin dokumentu hauetan bilatu dezakezu. Sartu zure bilaketa hitzak\nondoko kutxan eta \"bilatu\" sakatu. Kontutan eduki bilaketa funtzioak\nhitz guztiak bilatuko dituela. Hitz gutxiago dituzten orriak ez dira \nemaitzen zerrendan agertuko.", "Full index on one page": "Indize guztia orri batean", "General Index": "Indize orokorra", "Global Module Index": "Modulu indize globala", "Go": "Joan", "Hide Search Matches": "Bilaketa bat-etortzeak ezkutatu", "Index": "Indizea", "Index – %(key)s": "Indizea – %(key)s", "Index pages by letter": "Indize orriak hizkika", "Indices and tables:": "Indizeak eta taulak:", "Last updated on %(last_updated)s.": "Azken aldaketa: %(last_updated)s.", "Library changes": "Liburutegi aldaketak", "Navigation": "Nabigazioa", "Next topic": "Hurrengo gaia", "Other changes": "Beste aldaketak", "Overview": "Gainbegirada", "Permalink to this definition": "Definizio honetarako esteka iraunkorra", "Permalink to this headline": "Goiburu honetarako esteka iraunkorra", "Please activate JavaScript to enable the search\n functionality.": "Mesedez, gaitu JavaScript-a bilaketa erabili ahal izateko.", "Preparing search...": "", "Previous topic": "Aurreko gaia", "Quick search": "Bilaketa azkarra", "Search": "Bilatu", "Search Page": "Bilaketa orria", "Search Results": "Bilaketa emaitzak", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "Bilatu %(docstitle)s(e)n", "Searching": "", "Show Source": "Iturburua ikusi", "Table Of Contents": "Eduki taula", "This Page": "Orri hau", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "funtzio, klase, termino guztiak", "can be huge": "handia izan daiteke", "last updated": "", "lists all sections and subsections": "atal eta azpiatal guztiak zerrendatu", "next chapter": "hurrengo kapitulua", "previous chapter": "aurreko kapitulua", "quick access to all modules": "modulu guztietara atzipen azkarra", "search": "bilatu", "search this documentation": "dokumentazio honetan bilatu", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ 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 4c09e3abf..54d6bc63a 100644 Binary files a/sphinx/locale/eu/LC_MESSAGES/sphinx.mo and b/sphinx/locale/eu/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/eu/LC_MESSAGES/sphinx.po b/sphinx/locale/eu/LC_MESSAGES/sphinx.po index 3343f14ff..c1c1fb187 100644 --- a/sphinx/locale/eu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/eu/LC_MESSAGES/sphinx.po @@ -1,23 +1,23 @@ -# Basque translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# Ales Zabala Alava , 2011 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" "Last-Translator: Takayuki Shimizukawa \n" -"Language: eu\n" -"Language-Team: Basque " -"(http://www.transifex.com/projects/p/sphinx-1/language/eu/)\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Language-Team: Basque (http://www.transifex.com/sphinx-doc/sphinx-1/language/eu/)\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 2.2.0\n" +"Language: eu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinx/config.py:91 #, python-format @@ -178,9 +178,8 @@ msgid "variable" msgstr "aldagaia" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "Parametroak" +msgstr "" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -470,9 +469,8 @@ msgid "Todo" msgstr "Egitekoa" #: sphinx/ext/todo.py:129 -#, fuzzy msgid "<>" -msgstr "jatorrizko sarrera" +msgstr "" #: sphinx/ext/todo.py:132 #, python-format @@ -699,9 +697,7 @@ msgstr "Azken aldaketa: %(last_updated)s." msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" -"Sphinx %(sphinx_version)s erabiliz" -" sortutakoa." +msgstr "Sphinx %(sphinx_version)s erabiliz sortutakoa." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -736,26 +732,25 @@ 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 "" -"Honekin dokumentu hauetan bilatu dezakezu. Sartu zure bilaketa hitzak\n" -"ondoko kutxan eta \"bilatu\" sakatu. Kontutan eduki bilaketa funtzioak\n" -"hitz guztiak bilatuko dituela. Hitz gutxiago dituzten orriak ez dira \n" -"emaitzen zerrendan agertuko." +msgstr "Honekin dokumentu hauetan bilatu dezakezu. Sartu zure bilaketa hitzak\nondoko kutxan eta \"bilatu\" sakatu. Kontutan eduki bilaketa funtzioak\nhitz guztiak bilatuko dituela. Hitz gutxiago dituzten orriak ez dira \nemaitzen zerrendan agertuko." -#: 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 "bilatu" -#: 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:282 msgid "Search Results" msgstr "Bilaketa emaitzak" -#: 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:284 msgid "" -"Your search did not match any documents. Please make sure that all words " -"are spelled correctly and that you've selected enough categories." +"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 @@ -858,9 +853,8 @@ msgid "Release" msgstr "Argitalpena" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "Arriskua" +msgstr "" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -883,16 +877,3 @@ msgstr "" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[irudia]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%Y %B %d" - -#~ msgid "%b %d, %Y" -#~ msgstr "%Y %b %d" - -#~ msgid "(The <> is located in %s, line %d.)" -#~ msgstr "" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "Sartu bilaketa terminoa edo modulu, klase edo funtzioaren izena." - diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.js b/sphinx/locale/fa/LC_MESSAGES/sphinx.js index c69d723cb..7ac8d7cdf 100644 --- a/sphinx/locale/fa/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/fa/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "fa", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "\u062f\u0631\u0628\u0627\u0631\u0647 \u0627\u06cc\u0646 \u0645\u0633\u062a\u0646\u062f\u0627\u062a", "Automatically generated list of changes in version %(version)s": "\u0644\u06cc\u0633\u062a \u062a\u0648\u0644\u06cc\u062f \u0634\u062f\u0647 \u062e\u0648\u062f\u06a9\u0627\u0631 \u0627\u0632 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u062f\u0631 \u0646\u0633\u062e\u0647 %(version)s", "C API changes": "C API \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a", "Changes in Version %(version)s — %(docstitle)s": "\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u062f\u0631 \u0646\u0633\u062e\u0647 %(version)s — %(docstitle)s", "Collapse sidebar": "", "Complete Table of Contents": "\u0641\u0647\u0631\u0633\u062a \u06a9\u0627\u0645\u0644 \u0645\u0637\u0627\u0644\u0628", "Contents": "", "Copyright": "\u06a9\u067e\u06cc \u0631\u0627\u06cc\u062a", "Created using Sphinx %(sphinx_version)s.": ". Sphinx %(sphinx_version)s \u0627\u06cc\u062c\u0627\u062f \u0634\u062f\u0647 \u0628\u0627", "Enter search terms or a module, class or function name.": "", "Expand sidebar": "", "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.": "", "Full index on one page": "\u0641\u0647\u0631\u0633\u062a \u06a9\u0627\u0645\u0644 \u062f\u0631 \u06cc\u06a9 \u0635\u0641\u062d\u0647", "General Index": "\u0641\u0647\u0631\u0633\u062a \u06a9\u0644\u06cc", "Global Module Index": "\u0641\u0647\u0631\u0633\u062a \u06a9\u0644\u06cc \u0645\u0627\u0698\u0648\u0644 \u0647\u0627", "Go": "\u0628\u0631\u0648", "Hide Search Matches": "\u0639\u062f\u0645 \u0646\u0645\u0627\u06cc\u0634 \u0646\u062a\u0627\u06cc\u062c \u06cc\u0627\u0641\u062a \u0634\u062f\u0647", "Index": "\u0641\u0647\u0631\u0633\u062a", "Index – %(key)s": "\u0641\u0647\u0631\u0633\u062a – %(key)s", "Index pages by letter": "\u0641\u0647\u0631\u0633\u062a \u0635\u0641\u062d\u0627\u062a \u0628\u0631 \u0627\u0633\u0627\u0633 \u062d\u0631\u0648\u0641", "Indices and tables:": "\u0627\u06cc\u0646\u062f\u06a9\u0633 \u0647\u0627 \u0648 \u062c\u062f\u0627\u0648\u0644:", "Last updated on %(last_updated)s.": ". %(last_updated)s \u0622\u062e\u0631\u06cc\u0646 \u0628\u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u062f\u0631", "Library changes": "\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 \u0627\u06cc\u06cc", "Navigation": "\u0646\u0627\u0648\u0628\u0631\u06cc", "Next topic": "\u0645\u0648\u0636\u0648\u0639 \u0628\u0639\u062f\u06cc", "Other changes": "\u062f\u06af\u0631 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a", "Overview": "\u0628\u0631\u0631\u0633\u06cc \u0627\u062c\u0645\u0627\u0644\u06cc", "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", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "", "Previous topic": "\u0645\u0648\u0636\u0648\u0639 \u0642\u0628\u0644\u06cc", "Quick search": "\u062c\u0633\u062a\u062c\u0648 \u0633\u0631\u06cc\u0639", "Search": "\u062c\u0633\u062a\u062c\u0648", "Search Page": "\u0635\u0641\u062d\u0647 \u062c\u0633\u062a\u062c\u0648", "Search Results": "\u0646\u062a\u0627\u06cc\u062c \u062c\u0633\u062a\u062c\u0648", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "\u062c\u0633\u062a\u062c\u0648 \u062f\u0631 %(docstitle)s", "Searching": "", "Show Source": "\u0646\u0645\u0627\u06cc\u0634 \u0633\u0648\u0631\u0633", "Table Of Contents": "\u0641\u0647\u0631\u0633\u062a \u0639\u0646\u0627\u0648\u06cc\u0646", "This Page": "\u0635\u0641\u062d\u0647 \u0641\u0639\u0644\u06cc", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "\u062a\u0645\u0627\u0645\u06cc \u062a\u0648\u0627\u0628\u0639 \u060c \u06a9\u0644\u0627\u0633 \u0647\u0627 \u060c \u0627\u0635\u0637\u0644\u0627\u062d\u0627\u062a", "can be huge": "", "last updated": "", "lists all sections and subsections": "\u0641\u0647\u0631\u0633\u062a \u062a\u0645\u0627\u0645\u06cc \u0628\u062e\u0634 \u0647\u0627 \u0648 \u0632\u06cc\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0647\u0627", "next chapter": "\u0641\u0635\u0644 \u0628\u0639\u062f\u06cc", "previous chapter": "\u0641\u0635\u0644 \u0642\u0628\u0644\u06cc", "quick access to all modules": "\u062f\u0633\u062a\u0631\u0633\u06cc \u0633\u0631\u06cc\u0639 \u0628\u0647 \u062a\u0645\u0627\u0645\u06cc \u0645\u062a\u062f\u0647\u0627", "search": "\u062c\u0633\u062a\u062c\u0648", "search this documentation": "\u062c\u0633\u062a\u062c\u0648 \u062f\u0631 \u0627\u06cc\u0646 \u0627\u0633\u0646\u0627\u062f", "the documentation for": ""}, "plural_expr": "0"}); \ No newline at end of file +Documentation.addTranslations({"locale": "fa", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "\u062f\u0631\u0628\u0627\u0631\u0647 \u0627\u06cc\u0646 \u0645\u0633\u062a\u0646\u062f\u0627\u062a", "Automatically generated list of changes in version %(version)s": "\u0644\u06cc\u0633\u062a \u062a\u0648\u0644\u06cc\u062f \u0634\u062f\u0647 \u062e\u0648\u062f\u06a9\u0627\u0631 \u0627\u0632 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u062f\u0631 \u0646\u0633\u062e\u0647 %(version)s", "C API changes": "C API \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a", "Changes in Version %(version)s — %(docstitle)s": "\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u062f\u0631 \u0646\u0633\u062e\u0647 %(version)s — %(docstitle)s", "Collapse sidebar": "", "Complete Table of Contents": "\u0641\u0647\u0631\u0633\u062a \u06a9\u0627\u0645\u0644 \u0645\u0637\u0627\u0644\u0628", "Contents": "", "Copyright": "\u06a9\u067e\u06cc \u0631\u0627\u06cc\u062a", "Created using Sphinx %(sphinx_version)s.": ". Sphinx %(sphinx_version)s \u0627\u06cc\u062c\u0627\u062f \u0634\u062f\u0647 \u0628\u0627", "Expand sidebar": "", "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.": "", "Full index on one page": "\u0641\u0647\u0631\u0633\u062a \u06a9\u0627\u0645\u0644 \u062f\u0631 \u06cc\u06a9 \u0635\u0641\u062d\u0647", "General Index": "\u0641\u0647\u0631\u0633\u062a \u06a9\u0644\u06cc", "Global Module Index": "\u0641\u0647\u0631\u0633\u062a \u06a9\u0644\u06cc \u0645\u0627\u0698\u0648\u0644 \u0647\u0627", "Go": "\u0628\u0631\u0648", "Hide Search Matches": "\u0639\u062f\u0645 \u0646\u0645\u0627\u06cc\u0634 \u0646\u062a\u0627\u06cc\u062c \u06cc\u0627\u0641\u062a \u0634\u062f\u0647", "Index": "\u0641\u0647\u0631\u0633\u062a", "Index – %(key)s": "\u0641\u0647\u0631\u0633\u062a – %(key)s", "Index pages by letter": "\u0641\u0647\u0631\u0633\u062a \u0635\u0641\u062d\u0627\u062a \u0628\u0631 \u0627\u0633\u0627\u0633 \u062d\u0631\u0648\u0641", "Indices and tables:": "\u0627\u06cc\u0646\u062f\u06a9\u0633 \u0647\u0627 \u0648 \u062c\u062f\u0627\u0648\u0644:", "Last updated on %(last_updated)s.": ". %(last_updated)s \u0622\u062e\u0631\u06cc\u0646 \u0628\u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc \u062f\u0631", "Library changes": "\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 \u0627\u06cc\u06cc", "Navigation": "\u0646\u0627\u0648\u0628\u0631\u06cc", "Next topic": "\u0645\u0648\u0636\u0648\u0639 \u0628\u0639\u062f\u06cc", "Other changes": "\u062f\u06af\u0631 \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a", "Overview": "\u0628\u0631\u0631\u0633\u06cc \u0627\u062c\u0645\u0627\u0644\u06cc", "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", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "", "Previous topic": "\u0645\u0648\u0636\u0648\u0639 \u0642\u0628\u0644\u06cc", "Quick search": "\u062c\u0633\u062a\u062c\u0648 \u0633\u0631\u06cc\u0639", "Search": "\u062c\u0633\u062a\u062c\u0648", "Search Page": "\u0635\u0641\u062d\u0647 \u062c\u0633\u062a\u062c\u0648", "Search Results": "\u0646\u062a\u0627\u06cc\u062c \u062c\u0633\u062a\u062c\u0648", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "\u062c\u0633\u062a\u062c\u0648 \u062f\u0631 %(docstitle)s", "Searching": "", "Show Source": "\u0646\u0645\u0627\u06cc\u0634 \u0633\u0648\u0631\u0633", "Table Of Contents": "\u0641\u0647\u0631\u0633\u062a \u0639\u0646\u0627\u0648\u06cc\u0646", "This Page": "\u0635\u0641\u062d\u0647 \u0641\u0639\u0644\u06cc", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "\u062a\u0645\u0627\u0645\u06cc \u062a\u0648\u0627\u0628\u0639 \u060c \u06a9\u0644\u0627\u0633 \u0647\u0627 \u060c \u0627\u0635\u0637\u0644\u0627\u062d\u0627\u062a", "can be huge": "", "last updated": "", "lists all sections and subsections": "\u0641\u0647\u0631\u0633\u062a \u062a\u0645\u0627\u0645\u06cc \u0628\u062e\u0634 \u0647\u0627 \u0648 \u0632\u06cc\u0631 \u0645\u062c\u0645\u0648\u0639\u0647 \u0647\u0627", "next chapter": "\u0641\u0635\u0644 \u0628\u0639\u062f\u06cc", "previous chapter": "\u0641\u0635\u0644 \u0642\u0628\u0644\u06cc", "quick access to all modules": "\u062f\u0633\u062a\u0631\u0633\u06cc \u0633\u0631\u06cc\u0639 \u0628\u0647 \u062a\u0645\u0627\u0645\u06cc \u0645\u062a\u062f\u0647\u0627", "search": "\u062c\u0633\u062a\u062c\u0648", "search this documentation": "\u062c\u0633\u062a\u062c\u0648 \u062f\u0631 \u0627\u06cc\u0646 \u0627\u0633\u0646\u0627\u062f", "the documentation for": ""}, "plural_expr": "0"}); \ 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 0440b2e04..529fbde07 100644 Binary files a/sphinx/locale/fa/LC_MESSAGES/sphinx.mo and b/sphinx/locale/fa/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/fa/LC_MESSAGES/sphinx.po b/sphinx/locale/fa/LC_MESSAGES/sphinx.po index 29a0b3514..ee58d3503 100644 --- a/sphinx/locale/fa/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fa/LC_MESSAGES/sphinx.po @@ -1,23 +1,22 @@ -# Persian translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" "Last-Translator: Takayuki Shimizukawa \n" -"Language: fa\n" -"Language-Team: Persian " -"(http://www.transifex.com/projects/p/sphinx-1/language/fa/)\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Language-Team: Persian (http://www.transifex.com/sphinx-doc/sphinx-1/language/fa/)\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 2.2.0\n" +"Language: fa\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: sphinx/config.py:91 #, python-format @@ -178,9 +177,8 @@ msgid "variable" msgstr "" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "پارامترها" +msgstr "" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -698,9 +696,7 @@ msgstr ". %(last_updated)s آخرین بروز رسانی در" msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" -". Sphinx %(sphinx_version)s ایجاد " -"شده با" +msgstr ". Sphinx %(sphinx_version)s ایجاد شده با" #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -737,20 +733,23 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: 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 "جستجو" -#: 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:282 msgid "Search Results" msgstr "نتایج جستجو" -#: 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:284 msgid "" -"Your search did not match any documents. Please make sure that all words " -"are spelled correctly and that you've selected enough categories." +"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 @@ -853,9 +852,8 @@ msgid "Release" msgstr "انتشار" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "خطر" +msgstr "" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -878,16 +876,3 @@ msgstr "" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "" - -#~ msgid "%B %d, %Y" -#~ msgstr "" - -#~ msgid "%b %d, %Y" -#~ msgstr "" - -#~ msgid "(The <> is located in %s, line %d.)" -#~ msgstr "" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "" - diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.js b/sphinx/locale/fi/LC_MESSAGES/sphinx.js index c5b8deded..f16521607 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "fi", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "Tietoja t\u00e4st\u00e4 documentist\u00e4", "Automatically generated list of changes in version %(version)s": "Automaattisesti luotu muutoshistoria alkaen versiosta %(version)s", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "Muutos versiosta %(version)s — %(docstitle)s", "Collapse sidebar": "", "Complete Table of Contents": "", "Contents": "", "Copyright": "", "Created using Sphinx %(sphinx_version)s.": "", "Enter search terms or a module, class or function name.": "Anna etsitt\u00e4v\u00e4 termi tai moduuli, luokka tai funktio", "Expand sidebar": "", "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.": "Anna hakusanat kokonaan, osasanoilla ei haeta.", "Full index on one page": "Hakemisto yhten\u00e4 luettelona", "General Index": "Yleinen sis\u00e4llysluettelo", "Global Module Index": "Yleinen moduulien sis\u00e4llysluettelo", "Go": "Siirry", "Hide Search Matches": "Piilota l\u00f6ydetyt", "Index": "Sis\u00e4llysluettelo", "Index – %(key)s": "", "Index pages by letter": "Hakemisto aakkostus sivuttain", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", "Library changes": "", "Navigation": "Navikointi", "Next topic": ">>", "Other changes": "", "Overview": "Yhteenveto", "Permalink to this definition": "", "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "Javascript pit\u00e4\u00e4 olla sallittu, jotta etsint\u00e4 toimii.", "Preparing search...": "", "Previous topic": "<<", "Quick search": "Pikahaku", "Search": "Etsi", "Search Page": "Etsi sivu", "Search Results": "Etsinn\u00e4n tulos", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "", "Show Source": "N\u00e4yt\u00e4 l\u00e4hdekoodina", "Table Of Contents": "Sis\u00e4llysluettelo", "This Page": "T\u00e4m\u00e4 sivu", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "", "can be huge": "voi olla iso", "last updated": "", "lists all sections and subsections": "", "next chapter": ">>", "previous chapter": "<<", "quick access to all modules": "", "search": "etsi", "search this documentation": "", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ No newline at end of file +Documentation.addTranslations({"locale": "fi", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "Tietoja t\u00e4st\u00e4 documentist\u00e4", "Automatically generated list of changes in version %(version)s": "Automaattisesti luotu muutoshistoria alkaen versiosta %(version)s", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "Muutos versiosta %(version)s — %(docstitle)s", "Collapse sidebar": "", "Complete Table of Contents": "", "Contents": "", "Copyright": "", "Created using Sphinx %(sphinx_version)s.": "", "Expand sidebar": "", "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.": "Anna hakusanat kokonaan, osasanoilla ei haeta.", "Full index on one page": "Hakemisto yhten\u00e4 luettelona", "General Index": "Yleinen sis\u00e4llysluettelo", "Global Module Index": "Yleinen moduulien sis\u00e4llysluettelo", "Go": "Siirry", "Hide Search Matches": "Piilota l\u00f6ydetyt", "Index": "Sis\u00e4llysluettelo", "Index – %(key)s": "", "Index pages by letter": "Hakemisto aakkostus sivuttain", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", "Library changes": "", "Navigation": "Navikointi", "Next topic": ">>", "Other changes": "", "Overview": "Yhteenveto", "Permalink to this definition": "", "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "Javascript pit\u00e4\u00e4 olla sallittu, jotta etsint\u00e4 toimii.", "Preparing search...": "", "Previous topic": "<<", "Quick search": "Pikahaku", "Search": "Etsi", "Search Page": "Etsi sivu", "Search Results": "Etsinn\u00e4n tulos", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "", "Show Source": "N\u00e4yt\u00e4 l\u00e4hdekoodina", "Table Of Contents": "Sis\u00e4llysluettelo", "This Page": "T\u00e4m\u00e4 sivu", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "", "can be huge": "voi olla iso", "last updated": "", "lists all sections and subsections": "", "next chapter": ">>", "previous chapter": "<<", "quick access to all modules": "", "search": "etsi", "search this documentation": "", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ 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 e50f6b7b4..339d23dc2 100644 Binary files a/sphinx/locale/fi/LC_MESSAGES/sphinx.mo and b/sphinx/locale/fi/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/fi/LC_MESSAGES/sphinx.po b/sphinx/locale/fi/LC_MESSAGES/sphinx.po index 9b97c4017..b55921fba 100644 --- a/sphinx/locale/fi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fi/LC_MESSAGES/sphinx.po @@ -1,23 +1,23 @@ -# Finnish translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# FIRST AUTHOR , 2009 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" "Last-Translator: Takayuki Shimizukawa \n" -"Language: fi\n" -"Language-Team: Finnish " -"(http://www.transifex.com/projects/p/sphinx-1/language/fi/)\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Language-Team: Finnish (http://www.transifex.com/sphinx-doc/sphinx-1/language/fi/)\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 2.2.0\n" +"Language: fi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinx/config.py:91 #, python-format @@ -734,20 +734,23 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "Anna hakusanat kokonaan, osasanoilla ei haeta." -#: 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 "etsi" -#: 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:282 msgid "Search Results" msgstr "Etsinnän tulos" -#: 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:284 msgid "" -"Your search did not match any documents. Please make sure that all words " -"are spelled correctly and that you've selected enough categories." +"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 @@ -850,9 +853,8 @@ msgid "Release" msgstr "" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "Vaara" +msgstr "" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -875,16 +877,3 @@ msgstr "" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "" - -#~ msgid "%B %d, %Y" -#~ msgstr "%d.%m.%Y" - -#~ msgid "%b %d, %Y" -#~ msgstr "%d.%m.%Y" - -#~ msgid "(The <> is located in %s, line %d.)" -#~ msgstr "" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "Anna etsittävä termi tai moduuli, luokka tai funktio" - diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.js b/sphinx/locale/fr/LC_MESSAGES/sphinx.js index 4374a1a96..3e55761a9 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "fr", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", dans", "About these documents": "\u00c0 propos de ces documents", "Automatically generated list of changes in version %(version)s": "Liste auto-g\u00e9n\u00e9r\u00e9e des modifications dans la version %(version)s", "C API changes": "Modifications de l'API C", "Changes in Version %(version)s — %(docstitle)s": "Modifications dans la version %(version)s — %(docstitle)s", "Collapse sidebar": "R\u00e9duire la barre lat\u00e9rale", "Complete Table of Contents": "Table des mati\u00e8res compl\u00e8te", "Contents": "Contenu", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "Cr\u00e9\u00e9 avec Sphinx %(sphinx_version)s.", "Enter search terms or a module, class or function name.": "Saisissez un mot clef ou un nom de module, classe ou fonction.", "Expand sidebar": "Agrandir la barre lat\u00e9rale", "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.": "Vous pouvez effectuer une recherche au sein des documents. Saisissez les termes\nde votre recherche dans le champs ci-dessous et cliquez sur \"rechercher\". Notez que la fonctionnalit\u00e9 de recherche\nva automatiquement chercher l'ensemble des mots. Les pages\ncontenant moins de mots n'appara\u00eetront pas dans la liste des r\u00e9sultats.", "Full index on one page": "Index complet sur une seule page", "General Index": "Index g\u00e9n\u00e9ral", "Global Module Index": "Index g\u00e9n\u00e9ral des modules", "Go": "Go", "Hide Search Matches": "Cacher les r\u00e9sultats de la recherche", "Index": "Index", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Indexer les pages par lettre", "Indices and tables:": "Indices et Tables :", "Last updated on %(last_updated)s.": "Mis \u00e0 jour le %(last_updated)s.", "Library changes": "Modifications de la biblioth\u00e8que", "Navigation": "Navigation", "Next topic": "Sujet suivant", "Other changes": "Autres modifications", "Overview": "R\u00e9sum\u00e9", "Permalink to this definition": "Lien permanent vers cette d\u00e9finition", "Permalink to this headline": "Lien permanent vers ce titre", "Please activate JavaScript to enable the search\n functionality.": "Veuillez activer le JavaScript pour que la recherche fonctionne.", "Preparing search...": "Pr\u00e9paration de la recherche...", "Previous topic": "Sujet pr\u00e9c\u00e9dent", "Quick search": "Recherche rapide", "Search": "Recherche", "Search Page": "Page de recherche", "Search Results": "R\u00e9sultats de la recherche", "Search finished, found %s page(s) matching the search query.": "La recherche est finie, %s page(s) trouv\u00e9e(s) qui corresponde(nt) \u00e0 la recherche.", "Search within %(docstitle)s": "Recherchez dans %(docstitle)s", "Searching": "Recherche en cours", "Show Source": "Montrer le code source", "Table Of Contents": "Table des Mati\u00e8res", "This Page": "Cette page", "Welcome! This is": "Bienvenue ! Ceci est", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Votre recherche ne correspond \u00e0 aucun document. Veuillez v\u00e9rifier que les mots sont correctement orthographi\u00e9s et que vous avez s\u00e9lectionn\u00e9 assez de cat\u00e9gories.", "all functions, classes, terms": "toutes les fonctions, classes, termes", "can be huge": "peut \u00eatre \u00e9norme", "last updated": "derni\u00e8re modification", "lists all sections and subsections": "lister l'ensemble des sections et sous-sections", "next chapter": "Chapitre suivant", "previous chapter": "Chapitre pr\u00e9c\u00e9dent", "quick access to all modules": "acc\u00e8s rapide \u00e0 l'ensemble des modules", "search": "rechercher", "search this documentation": "rechercher dans cette documentation", "the documentation for": "la documentation pour"}, "plural_expr": "(n > 1)"}); \ No newline at end of file +Documentation.addTranslations({"locale": "fr", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", dans", "About these documents": "\u00c0 propos de ces documents", "Automatically generated list of changes in version %(version)s": "Liste auto-g\u00e9n\u00e9r\u00e9e des modifications dans la version %(version)s", "C API changes": "Modifications de l'API C", "Changes in Version %(version)s — %(docstitle)s": "Modifications dans la version %(version)s — %(docstitle)s", "Collapse sidebar": "R\u00e9duire la barre lat\u00e9rale", "Complete Table of Contents": "Table des mati\u00e8res compl\u00e8te", "Contents": "Contenu", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "Cr\u00e9\u00e9 avec Sphinx %(sphinx_version)s.", "Expand sidebar": "Agrandir la barre lat\u00e9rale", "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.": "Vous pouvez effectuer une recherche au sein des documents. Saisissez les termes\nde votre recherche dans le champs ci-dessous et cliquez sur \"rechercher\". Notez que la fonctionnalit\u00e9 de recherche\nva automatiquement chercher l'ensemble des mots. Les pages\ncontenant moins de mots n'appara\u00eetront pas dans la liste des r\u00e9sultats.", "Full index on one page": "Index complet sur une seule page", "General Index": "Index g\u00e9n\u00e9ral", "Global Module Index": "Index g\u00e9n\u00e9ral des modules", "Go": "Go", "Hide Search Matches": "Cacher les r\u00e9sultats de la recherche", "Index": "Index", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Indexer les pages par lettre", "Indices and tables:": "Indices et Tables :", "Last updated on %(last_updated)s.": "Mis \u00e0 jour le %(last_updated)s.", "Library changes": "Modifications de la biblioth\u00e8que", "Navigation": "Navigation", "Next topic": "Sujet suivant", "Other changes": "Autres modifications", "Overview": "R\u00e9sum\u00e9", "Permalink to this definition": "Lien permanent vers cette d\u00e9finition", "Permalink to this headline": "Lien permanent vers ce titre", "Please activate JavaScript to enable the search\n functionality.": "Veuillez activer le JavaScript pour que la recherche fonctionne.", "Preparing search...": "Pr\u00e9paration de la recherche...", "Previous topic": "Sujet pr\u00e9c\u00e9dent", "Quick search": "Recherche rapide", "Search": "Recherche", "Search Page": "Page de recherche", "Search Results": "R\u00e9sultats de la recherche", "Search finished, found %s page(s) matching the search query.": "La recherche est finie, %s page(s) trouv\u00e9e(s) qui corresponde(nt) \u00e0 la recherche.", "Search within %(docstitle)s": "Recherchez dans %(docstitle)s", "Searching": "Recherche en cours", "Show Source": "Montrer le code source", "Table Of Contents": "Table des Mati\u00e8res", "This Page": "Cette page", "Welcome! This is": "Bienvenue ! Ceci est", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Votre recherche ne correspond \u00e0 aucun document. Veuillez v\u00e9rifier que les mots sont correctement orthographi\u00e9s et que vous avez s\u00e9lectionn\u00e9 assez de cat\u00e9gories.", "all functions, classes, terms": "toutes les fonctions, classes, termes", "can be huge": "peut \u00eatre \u00e9norme", "last updated": "derni\u00e8re modification", "lists all sections and subsections": "lister l'ensemble des sections et sous-sections", "next chapter": "Chapitre suivant", "previous chapter": "Chapitre pr\u00e9c\u00e9dent", "quick access to all modules": "acc\u00e8s rapide \u00e0 l'ensemble des modules", "search": "rechercher", "search this documentation": "rechercher dans cette documentation", "the documentation for": "la documentation pour"}, "plural_expr": "(n > 1)"}); \ 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 2f6b43f26..2fc053015 100644 Binary files a/sphinx/locale/fr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/fr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/fr/LC_MESSAGES/sphinx.po b/sphinx/locale/fr/LC_MESSAGES/sphinx.po index 49fb04ad2..1a2b17b31 100644 --- a/sphinx/locale/fr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/fr/LC_MESSAGES/sphinx.po @@ -1,23 +1,30 @@ -# French translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# Christophe CHAUVET , 2013,2015 +# Larlet David , 2008 +# fgallaire , 2010 +# Georg Brandl , 2014 +# Jean-Daniel Browne , 2010 +# Lilian Besson , 2013-2014 +# Nikolaj van Omme , 2014-2015 +# Sebastien Douche , 2008 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" "Last-Translator: Takayuki Shimizukawa \n" -"Language: fr\n" -"Language-Team: French " -"(http://www.transifex.com/projects/p/sphinx-1/language/fr/)\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" +"Language-Team: French (http://www.transifex.com/sphinx-doc/sphinx-1/language/fr/)\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 2.2.0\n" +"Language: fr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: sphinx/config.py:91 #, python-format @@ -178,9 +185,8 @@ msgid "variable" msgstr "variable" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "Paramètres" +msgstr "" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -470,14 +476,13 @@ msgid "Todo" msgstr "À faire" #: sphinx/ext/todo.py:129 -#, fuzzy msgid "<>" -msgstr "entrée originale" +msgstr "" #: sphinx/ext/todo.py:132 -#, fuzzy, python-format +#, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "(L'<> se trouve dans %s, à la ligne %d.)" +msgstr "" #: sphinx/ext/todo.py:141 msgid "original entry" @@ -699,9 +704,7 @@ msgstr "Mis à jour le %(last_updated)s." msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" -"Créé avec Sphinx " -"%(sphinx_version)s." +msgstr "Créé avec Sphinx %(sphinx_version)s." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -736,32 +739,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 "" -"Vous pouvez effectuer une recherche au sein des documents. Saisissez les " -"termes\n" -"de votre recherche dans le champs ci-dessous et cliquez sur " -"\"rechercher\". Notez que la fonctionnalité de recherche\n" -"va automatiquement chercher l'ensemble des mots. Les pages\n" -"contenant moins de mots n'apparaîtront pas dans la liste des résultats." +msgstr "Vous pouvez effectuer une recherche au sein des documents. Saisissez les termes\nde votre recherche dans le champs ci-dessous et cliquez sur \"rechercher\". Notez que la fonctionnalité de recherche\nva automatiquement chercher l'ensemble des mots. Les pages\ncontenant moins de mots n'apparaîtront pas dans la liste des résultats." -#: 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 "rechercher" -#: 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:282 msgid "Search Results" msgstr "Résultats de la recherche" -#: 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:284 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 "" -"Votre recherche ne correspond à aucun document. Veuillez vérifier que les" -" mots sont correctement orthographiés et que vous avez sélectionné assez " -"de catégories." +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "Votre recherche ne correspond à aucun document. Veuillez vérifier que les mots sont correctement orthographiés et que vous avez sélectionné assez de catégories." #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -823,9 +820,7 @@ msgstr "Préparation de la recherche..." #: sphinx/themes/basic/static/searchtools.js_t:286 #, python-format msgid "Search finished, found %s page(s) matching the search query." -msgstr "" -"La recherche est finie, %s page(s) trouvée(s) qui corresponde(nt) à la " -"recherche." +msgstr "La recherche est finie, %s page(s) trouvée(s) qui corresponde(nt) à la recherche." #: sphinx/themes/basic/static/searchtools.js_t:338 msgid ", in " @@ -854,7 +849,7 @@ msgstr "Lien permanent vers cette image" #: sphinx/writers/html.py:355 msgid "Permalink to this toctree" -msgstr "" +msgstr "Lien permanent vers cette table des matières" #: sphinx/writers/html.py:677 msgid "Permalink to this table" @@ -865,9 +860,8 @@ msgid "Release" msgstr "Version" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "Danger" +msgstr "" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -890,13 +884,3 @@ msgstr "[image: %s]" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[image]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%d %B %Y" - -#~ msgid "%b %d, %Y" -#~ msgstr "%d %b %Y" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "Saisissez un mot clef ou un nom de module, classe ou fonction." - diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.js b/sphinx/locale/he/LC_MESSAGES/sphinx.js index 3fa7e93de..11f64cc02 100644 --- a/sphinx/locale/he/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/he/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "he", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(copyright)s.": "© \u05d6\u05db\u05d5\u05d9\u05d5\u05ea \u05e9\u05de\u05d5\u05e8\u05d5\u05ea %(copyright)s.", "© Copyright %(copyright)s.": "© \u05d6\u05db\u05d5\u05d9\u05d5\u05ea \u05e9\u05de\u05d5\u05e8\u05d5\u05ea %(copyright)s.", ", in ": "", "About these documents": "\u05e2\u05dc \u05de\u05e1\u05de\u05db\u05d9\u05dd \u05d0\u05dc\u05d5", "Automatically generated list of changes in version %(version)s": "\u05d9\u05e6\u05e8 \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea \u05e8\u05e9\u05d9\u05de\u05d4 \u05e9\u05dc \u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05d1\u05d2\u05e8\u05e1\u05d4 %(version)s", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "\u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05d1\u05d2\u05e8\u05e1\u05d4 %(version)s — %(docstitle)s", "Collapse sidebar": "\u05db\u05d5\u05d5\u05e5 \u05e1\u05e8\u05d2\u05dc \u05e6\u05d3", "Complete Table of Contents": "\u05ea\u05d5\u05db\u05df \u05e2\u05e0\u05d9\u05d9\u05e0\u05d9\u05dd \u05de\u05dc\u05d0", "Contents": "\u05ea\u05d5\u05db\u05df", "Copyright": "\u05d6\u05db\u05d5\u05d9\u05d5\u05ea \u05e9\u05de\u05d5\u05e8\u05d5\u05ea", "Created using Sphinx %(sphinx_version)s.": "", "Enter search terms or a module, class or function name.": "\u05d4\u05db\u05e0\u05e1 \u05de\u05d5\u05e9\u05d2\u05d9\u05dd \u05dc\u05d7\u05d9\u05e4\u05d5\u05e9 \u05d0\u05d5 \u05e9\u05dd \u05de\u05d5\u05d3\u05d5\u05dc, \u05de\u05d7\u05dc\u05e7\u05d4 \u05d0\u05d5 \u05e4\u05d5\u05e0\u05e7\u05e6\u05d9\u05d4.", "Expand sidebar": "\u05d4\u05e8\u05d7\u05d1 \u05e1\u05e8\u05d2\u05dc \u05e6\u05d3", "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.": "", "Full index on one page": "\u05d0\u05d9\u05e0\u05d3\u05e7\u05e1 \u05de\u05dc\u05d0 \u05d1\u05e2\u05de\u05d5\u05d3 \u05d0\u05d7\u05d3", "General Index": "", "Global Module Index": "\u05d0\u05d9\u05e0\u05d3\u05e7\u05e1 \u05de\u05d5\u05d3\u05d5\u05dc\u05d9\u05dd \u05d2\u05dc\u05d5\u05d1\u05dc\u05d9", "Go": "\u05dc\u05da", "Hide Search Matches": "\u05d4\u05e1\u05ea\u05e8 \u05ea\u05d5\u05e6\u05d0\u05d5\u05ea \u05d7\u05d9\u05e4\u05d5\u05e9", "Index": "\u05d0\u05d9\u05e0\u05d3\u05e7\u05e1", "Index – %(key)s": "", "Index pages by letter": "\u05e2\u05de\u05d5\u05d3\u05d9 \u05d0\u05d9\u05e0\u05d3\u05e7\u05e1 \u05dc\u05e4\u05d9 \u05d0\u05d5\u05ea\u05d9\u05d5\u05ea", "Indices and tables:": "", "Last updated on %(last_updated)s.": "\u05e2\u05d5\u05d3\u05db\u05df \u05dc\u05d0\u05d7\u05e8\u05d5\u05e0\u05d4 \u05d1 %(last_updated)s.", "Library changes": "", "Navigation": "\u05e0\u05d9\u05d5\u05d5\u05d8", "Next topic": "\u05e0\u05d5\u05e9\u05d0 \u05d4\u05d1\u05d0", "Other changes": "\u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05d0\u05d7\u05e8\u05d9\u05dd", "Overview": "\u05e1\u05e7\u05d9\u05e8\u05d4 \u05db\u05dc\u05dc\u05d9\u05ea", "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", "Please activate JavaScript to enable the search\n functionality.": "\u05d0\u05e0\u05d0 \u05d4\u05e4\u05e2\u05dc \u05d2'\u05d0\u05d5\u05d0\u05e1\u05e7\u05e8\u05d9\u05e4\u05d8 \u05e2\"\u05de \u05dc\u05d0\u05e4\u05e9\u05e8 \u05d0\u05ea\n \u05d4\u05d7\u05d9\u05e4\u05d5\u05e9.", "Preparing search...": "", "Previous topic": "\u05e0\u05d5\u05e9\u05d0 \u05e7\u05d5\u05d3\u05dd", "Quick search": "\u05d7\u05d9\u05e4\u05d5\u05e9 \u05de\u05d4\u05d9\u05e8", "Search": "\u05d7\u05d9\u05e4\u05d5\u05e9", "Search Page": "\u05d3\u05e3 \u05d7\u05d9\u05e4\u05d5\u05e9", "Search Results": "\u05ea\u05d5\u05e6\u05d0\u05d5\u05ea \u05d4\u05d7\u05d9\u05e4\u05d5\u05e9", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "\u05d7\u05e4\u05e9 \u05d1\u05ea\u05d5\u05da %(docstitle)s", "Searching": "", "Show Source": "\u05d4\u05e6\u05d2 \u05de\u05e7\u05d5\u05e8", "Table Of Contents": "\u05ea\u05d5\u05db\u05df \u05e2\u05e0\u05d9\u05d9\u05e0\u05d9\u05dd", "This Page": "\u05e2\u05de\u05d5\u05d3 \u05d6\u05d4", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "\u05db\u05dc \u05d4\u05e4\u05d5\u05e0\u05e7\u05e6\u05d9\u05d5\u05ea, \u05d4\u05de\u05d7\u05dc\u05e7\u05d5\u05ea, \u05d4\u05de\u05d5\u05e9\u05d2\u05d9\u05dd", "can be huge": "\u05e2\u05e9\u05d5\u05d9 \u05dc\u05d4\u05d9\u05d5\u05ea \u05e2\u05e6\u05d5\u05dd", "last updated": "", "lists all sections and subsections": "", "next chapter": "\u05e4\u05e8\u05e7 \u05d4\u05d1\u05d0", "previous chapter": "\u05e4\u05e8\u05e7 \u05e7\u05d5\u05d3\u05dd", "quick access to all modules": "\u05d2\u05d9\u05e9\u05d4 \u05de\u05d4\u05d9\u05e8\u05d4 \u05dc\u05db\u05dc \u05d4\u05de\u05d5\u05d3\u05d5\u05dc\u05d9\u05dd", "search": "\u05d7\u05d9\u05e4\u05d5\u05e9", "search this documentation": "\u05d7\u05e4\u05e9 \u05d1\u05ea\u05d9\u05e2\u05d5\u05d3 \u05d6\u05d4", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ No newline at end of file +Documentation.addTranslations({"locale": "he", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(copyright)s.": "© \u05d6\u05db\u05d5\u05d9\u05d5\u05ea \u05e9\u05de\u05d5\u05e8\u05d5\u05ea %(copyright)s.", "© Copyright %(copyright)s.": "© \u05d6\u05db\u05d5\u05d9\u05d5\u05ea \u05e9\u05de\u05d5\u05e8\u05d5\u05ea %(copyright)s.", ", in ": "", "About these documents": "\u05e2\u05dc \u05de\u05e1\u05de\u05db\u05d9\u05dd \u05d0\u05dc\u05d5", "Automatically generated list of changes in version %(version)s": "\u05d9\u05e6\u05e8 \u05d0\u05d5\u05d8\u05d5\u05de\u05d8\u05d9\u05ea \u05e8\u05e9\u05d9\u05de\u05d4 \u05e9\u05dc \u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05d1\u05d2\u05e8\u05e1\u05d4 %(version)s", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "\u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05d1\u05d2\u05e8\u05e1\u05d4 %(version)s — %(docstitle)s", "Collapse sidebar": "\u05db\u05d5\u05d5\u05e5 \u05e1\u05e8\u05d2\u05dc \u05e6\u05d3", "Complete Table of Contents": "\u05ea\u05d5\u05db\u05df \u05e2\u05e0\u05d9\u05d9\u05e0\u05d9\u05dd \u05de\u05dc\u05d0", "Contents": "\u05ea\u05d5\u05db\u05df", "Copyright": "\u05d6\u05db\u05d5\u05d9\u05d5\u05ea \u05e9\u05de\u05d5\u05e8\u05d5\u05ea", "Created using Sphinx %(sphinx_version)s.": "", "Expand sidebar": "\u05d4\u05e8\u05d7\u05d1 \u05e1\u05e8\u05d2\u05dc \u05e6\u05d3", "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.": "", "Full index on one page": "\u05d0\u05d9\u05e0\u05d3\u05e7\u05e1 \u05de\u05dc\u05d0 \u05d1\u05e2\u05de\u05d5\u05d3 \u05d0\u05d7\u05d3", "General Index": "", "Global Module Index": "\u05d0\u05d9\u05e0\u05d3\u05e7\u05e1 \u05de\u05d5\u05d3\u05d5\u05dc\u05d9\u05dd \u05d2\u05dc\u05d5\u05d1\u05dc\u05d9", "Go": "\u05dc\u05da", "Hide Search Matches": "\u05d4\u05e1\u05ea\u05e8 \u05ea\u05d5\u05e6\u05d0\u05d5\u05ea \u05d7\u05d9\u05e4\u05d5\u05e9", "Index": "\u05d0\u05d9\u05e0\u05d3\u05e7\u05e1", "Index – %(key)s": "", "Index pages by letter": "\u05e2\u05de\u05d5\u05d3\u05d9 \u05d0\u05d9\u05e0\u05d3\u05e7\u05e1 \u05dc\u05e4\u05d9 \u05d0\u05d5\u05ea\u05d9\u05d5\u05ea", "Indices and tables:": "", "Last updated on %(last_updated)s.": "\u05e2\u05d5\u05d3\u05db\u05df \u05dc\u05d0\u05d7\u05e8\u05d5\u05e0\u05d4 \u05d1 %(last_updated)s.", "Library changes": "", "Navigation": "\u05e0\u05d9\u05d5\u05d5\u05d8", "Next topic": "\u05e0\u05d5\u05e9\u05d0 \u05d4\u05d1\u05d0", "Other changes": "\u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05d0\u05d7\u05e8\u05d9\u05dd", "Overview": "\u05e1\u05e7\u05d9\u05e8\u05d4 \u05db\u05dc\u05dc\u05d9\u05ea", "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", "Please activate JavaScript to enable the search\n functionality.": "\u05d0\u05e0\u05d0 \u05d4\u05e4\u05e2\u05dc \u05d2'\u05d0\u05d5\u05d0\u05e1\u05e7\u05e8\u05d9\u05e4\u05d8 \u05e2\"\u05de \u05dc\u05d0\u05e4\u05e9\u05e8 \u05d0\u05ea\n \u05d4\u05d7\u05d9\u05e4\u05d5\u05e9.", "Preparing search...": "", "Previous topic": "\u05e0\u05d5\u05e9\u05d0 \u05e7\u05d5\u05d3\u05dd", "Quick search": "\u05d7\u05d9\u05e4\u05d5\u05e9 \u05de\u05d4\u05d9\u05e8", "Search": "\u05d7\u05d9\u05e4\u05d5\u05e9", "Search Page": "\u05d3\u05e3 \u05d7\u05d9\u05e4\u05d5\u05e9", "Search Results": "\u05ea\u05d5\u05e6\u05d0\u05d5\u05ea \u05d4\u05d7\u05d9\u05e4\u05d5\u05e9", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "\u05d7\u05e4\u05e9 \u05d1\u05ea\u05d5\u05da %(docstitle)s", "Searching": "", "Show Source": "\u05d4\u05e6\u05d2 \u05de\u05e7\u05d5\u05e8", "Table Of Contents": "\u05ea\u05d5\u05db\u05df \u05e2\u05e0\u05d9\u05d9\u05e0\u05d9\u05dd", "This Page": "\u05e2\u05de\u05d5\u05d3 \u05d6\u05d4", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "\u05db\u05dc \u05d4\u05e4\u05d5\u05e0\u05e7\u05e6\u05d9\u05d5\u05ea, \u05d4\u05de\u05d7\u05dc\u05e7\u05d5\u05ea, \u05d4\u05de\u05d5\u05e9\u05d2\u05d9\u05dd", "can be huge": "\u05e2\u05e9\u05d5\u05d9 \u05dc\u05d4\u05d9\u05d5\u05ea \u05e2\u05e6\u05d5\u05dd", "last updated": "", "lists all sections and subsections": "", "next chapter": "\u05e4\u05e8\u05e7 \u05d4\u05d1\u05d0", "previous chapter": "\u05e4\u05e8\u05e7 \u05e7\u05d5\u05d3\u05dd", "quick access to all modules": "\u05d2\u05d9\u05e9\u05d4 \u05de\u05d4\u05d9\u05e8\u05d4 \u05dc\u05db\u05dc \u05d4\u05de\u05d5\u05d3\u05d5\u05dc\u05d9\u05dd", "search": "\u05d7\u05d9\u05e4\u05d5\u05e9", "search this documentation": "\u05d7\u05e4\u05e9 \u05d1\u05ea\u05d9\u05e2\u05d5\u05d3 \u05d6\u05d4", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ 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 d36b509da..831e3d3e5 100644 Binary files a/sphinx/locale/he/LC_MESSAGES/sphinx.mo and b/sphinx/locale/he/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/he/LC_MESSAGES/sphinx.po b/sphinx/locale/he/LC_MESSAGES/sphinx.po index 0dacfc5e8..3f1141ec1 100644 --- a/sphinx/locale/he/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/he/LC_MESSAGES/sphinx.po @@ -1,23 +1,23 @@ -# Hebrew translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# FIRST AUTHOR , 2011 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" "Last-Translator: Takayuki Shimizukawa \n" -"Language: he\n" -"Language-Team: Hebrew " -"(http://www.transifex.com/projects/p/sphinx-1/language/he/)\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Language-Team: Hebrew (http://www.transifex.com/sphinx-doc/sphinx-1/language/he/)\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 2.2.0\n" +"Language: he\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinx/config.py:91 #, python-format @@ -178,9 +178,8 @@ msgid "variable" msgstr "משתנה" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "פרמטרים" +msgstr "" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -470,14 +469,13 @@ msgid "Todo" msgstr "לעשות" #: sphinx/ext/todo.py:129 -#, fuzzy msgid "<>" -msgstr "הטקסט המקורי" +msgstr "" #: sphinx/ext/todo.py:132 -#, fuzzy, python-format +#, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "(ה <<הרשומה המקורית>> ממוקמת ב %s, שורה %d.)" +msgstr "" #: sphinx/ext/todo.py:141 msgid "original entry" @@ -726,9 +724,7 @@ msgstr "פרק הבא" msgid "" "Please activate JavaScript to enable the search\n" " functionality." -msgstr "" -"אנא הפעל ג'אואסקריפט ע\"מ לאפשר את\n" -" החיפוש." +msgstr "אנא הפעל ג'אואסקריפט ע\"מ לאפשר את\n החיפוש." #: sphinx/themes/basic/search.html:32 msgid "" @@ -738,20 +734,23 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: 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 "חיפוש" -#: 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:282 msgid "Search Results" msgstr "תוצאות החיפוש" -#: 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:284 msgid "" -"Your search did not match any documents. Please make sure that all words " -"are spelled correctly and that you've selected enough categories." +"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 @@ -854,9 +853,8 @@ msgid "Release" msgstr "מהדורה" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "סכנה" +msgstr "" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -879,13 +877,3 @@ msgstr "" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[תמונה]" - -#~ msgid "%B %d, %Y" -#~ msgstr "" - -#~ msgid "%b %d, %Y" -#~ msgstr "" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "הכנס מושגים לחיפוש או שם מודול, מחלקה או פונקציה." - diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.js b/sphinx/locale/hi/LC_MESSAGES/sphinx.js new file mode 100644 index 000000000..c433cb64b --- /dev/null +++ b/sphinx/locale/hi/LC_MESSAGES/sphinx.js @@ -0,0 +1 @@ +Documentation.addTranslations({"locale": "hi", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "", "Automatically generated list of changes in version %(version)s": "", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "", "Contents": "", "Copyright": "", "Created using Sphinx %(sphinx_version)s.": "", "Expand sidebar": "", "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.": "", "Full index on one page": "", "General Index": "", "Global Module Index": "", "Go": "", "Hide Search Matches": "", "Index": "\u0905\u0928\u0941\u0915\u094d\u0930\u092e\u0923\u093f\u0915\u093e", "Index – %(key)s": "", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", "Library changes": "", "Navigation": "", "Next topic": "", "Other changes": "", "Overview": "", "Permalink to this definition": "", "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "", "Previous topic": "", "Quick search": "", "Search": "", "Search Page": "\u0916\u094b\u091c \u092a\u0943\u0937\u094d\u0920", "Search Results": "", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "", "Show Source": "", "Table Of Contents": "", "This Page": "", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "", "can be huge": "", "last updated": "", "lists all sections and subsections": "", "next chapter": "", "previous chapter": "", "quick access to all modules": "", "search": "", "search this documentation": "", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ No newline at end of file diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.mo b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo new file mode 100644 index 000000000..e036b1709 Binary files /dev/null and b/sphinx/locale/hi/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hi/LC_MESSAGES/sphinx.po b/sphinx/locale/hi/LC_MESSAGES/sphinx.po new file mode 100644 index 000000000..937e97f81 --- /dev/null +++ b/sphinx/locale/hi/LC_MESSAGES/sphinx.po @@ -0,0 +1,879 @@ +# Translations template for Sphinx. +# Copyright (C) 2016 ORGANIZATION +# This file is distributed under the same license as the Sphinx project. +# +# Translators: +# Purnank H. Ghumalia , 2015 +msgid "" +msgstr "" +"Project-Id-Version: Sphinx\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2016-03-06 21:58+0900\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" +"Last-Translator: Takayuki Shimizukawa \n" +"Language-Team: Hindi (http://www.transifex.com/sphinx-doc/sphinx-1/language/hi/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.2.0\n" +"Language: hi\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" + +#: sphinx/config.py:91 +#, python-format +msgid "Fig. %s" +msgstr "चित्र %s" + +#: sphinx/config.py:92 +#, python-format +msgid "Table %s" +msgstr "" + +#: sphinx/config.py:93 +#, python-format +msgid "Listing %s" +msgstr "" + +#: sphinx/config.py:100 +#, python-format +msgid "%s %s documentation" +msgstr "" + +#: sphinx/environment.py:1829 +#, python-format +msgid "see %s" +msgstr "%s देखिए" + +#: sphinx/environment.py:1833 +#, python-format +msgid "see also %s" +msgstr "" + +#: sphinx/environment.py:1893 +msgid "Symbols" +msgstr "" + +#: sphinx/roles.py:193 +#, python-format +msgid "Python Enhancement Proposals; PEP %s" +msgstr "Python सुधार का सुझाव; PEP %s" + +#: sphinx/transforms.py:56 sphinx/writers/latex.py:374 +#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222 +msgid "MMMM dd, YYYY" +msgstr "" + +#: sphinx/builders/changes.py:75 +msgid "Builtins" +msgstr "" + +#: sphinx/builders/changes.py:77 +msgid "Module level" +msgstr "" + +#: sphinx/builders/html.py:295 +msgid "MMM dd, YYYY" +msgstr "" + +#: sphinx/builders/html.py:315 sphinx/themes/basic/defindex.html:30 +msgid "General Index" +msgstr "" + +#: sphinx/builders/html.py:315 +msgid "index" +msgstr "अनुक्रमणिका" + +#: sphinx/builders/html.py:376 +msgid "next" +msgstr "" + +#: sphinx/builders/html.py:385 +msgid "previous" +msgstr "" + +#: sphinx/builders/latex.py:180 sphinx/builders/texinfo.py:199 +msgid " (in " +msgstr "" + +#: sphinx/directives/other.py:149 +msgid "Section author: " +msgstr "" + +#: sphinx/directives/other.py:151 +msgid "Module author: " +msgstr "" + +#: sphinx/directives/other.py:153 +msgid "Code author: " +msgstr "" + +#: sphinx/directives/other.py:155 +msgid "Author: " +msgstr "" + +#: sphinx/domains/__init__.py:275 +#, python-format +msgid "%s %s" +msgstr "" + +#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605 +#: sphinx/domains/python.py:124 +msgid "Parameters" +msgstr "" + +#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136 +msgid "Returns" +msgstr "" + +#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:138 +msgid "Return type" +msgstr "" + +#: sphinx/domains/c.py:177 +#, python-format +msgid "%s (C function)" +msgstr "" + +#: sphinx/domains/c.py:179 +#, python-format +msgid "%s (C member)" +msgstr "" + +#: sphinx/domains/c.py:181 +#, python-format +msgid "%s (C macro)" +msgstr "" + +#: sphinx/domains/c.py:183 +#, python-format +msgid "%s (C type)" +msgstr "" + +#: sphinx/domains/c.py:185 +#, python-format +msgid "%s (C variable)" +msgstr "" + +#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589 +msgid "function" +msgstr "" + +#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954 +msgid "member" +msgstr "" + +#: sphinx/domains/c.py:244 +msgid "macro" +msgstr "" + +#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:3955 +msgid "type" +msgstr "" + +#: sphinx/domains/c.py:246 +msgid "variable" +msgstr "" + +#: sphinx/domains/cpp.py:3608 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "" + +#: sphinx/domains/cpp.py:3733 +#, python-format +msgid "%s (C++ type)" +msgstr "" + +#: sphinx/domains/cpp.py:3744 +#, python-format +msgid "%s (C++ member)" +msgstr "" + +#: sphinx/domains/cpp.py:3755 +#, python-format +msgid "%s (C++ function)" +msgstr "" + +#: sphinx/domains/cpp.py:3766 +#, python-format +msgid "%s (C++ class)" +msgstr "" + +#: sphinx/domains/cpp.py:3786 +#, python-format +msgid "%s (C++ enum)" +msgstr "" + +#: sphinx/domains/cpp.py:3816 +#, python-format +msgid "%s (C++ enumerator)" +msgstr "" + +#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:591 +msgid "class" +msgstr "" + +#: sphinx/domains/cpp.py:3956 +msgid "enum" +msgstr "" + +#: sphinx/domains/cpp.py:3957 +msgid "enumerator" +msgstr "" + +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282 +#, python-format +msgid "%s() (built-in function)" +msgstr "" + +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:346 +#, python-format +msgid "%s() (%s method)" +msgstr "" + +#: sphinx/domains/javascript.py:109 +#, python-format +msgid "%s() (class)" +msgstr "" + +#: sphinx/domains/javascript.py:111 +#, python-format +msgid "%s (global variable or constant)" +msgstr "" + +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:384 +#, python-format +msgid "%s (%s attribute)" +msgstr "" + +#: sphinx/domains/javascript.py:122 +msgid "Arguments" +msgstr "" + +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590 +msgid "data" +msgstr "" + +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596 +msgid "attribute" +msgstr "" + +#: sphinx/domains/python.py:129 +msgid "Variables" +msgstr "" + +#: sphinx/domains/python.py:133 +msgid "Raises" +msgstr "" + +#: sphinx/domains/python.py:283 sphinx/domains/python.py:340 +#: sphinx/domains/python.py:352 sphinx/domains/python.py:365 +#, python-format +msgid "%s() (in module %s)" +msgstr "" + +#: sphinx/domains/python.py:286 +#, python-format +msgid "%s (built-in variable)" +msgstr "" + +#: sphinx/domains/python.py:287 sphinx/domains/python.py:378 +#, python-format +msgid "%s (in module %s)" +msgstr "" + +#: sphinx/domains/python.py:303 +#, python-format +msgid "%s (built-in class)" +msgstr "" + +#: sphinx/domains/python.py:304 +#, python-format +msgid "%s (class in %s)" +msgstr "" + +#: sphinx/domains/python.py:344 +#, python-format +msgid "%s() (%s.%s method)" +msgstr "" + +#: sphinx/domains/python.py:356 +#, python-format +msgid "%s() (%s.%s static method)" +msgstr "" + +#: sphinx/domains/python.py:359 +#, python-format +msgid "%s() (%s static method)" +msgstr "" + +#: sphinx/domains/python.py:369 +#, python-format +msgid "%s() (%s.%s class method)" +msgstr "" + +#: sphinx/domains/python.py:372 +#, python-format +msgid "%s() (%s class method)" +msgstr "" + +#: sphinx/domains/python.py:382 +#, python-format +msgid "%s (%s.%s attribute)" +msgstr "" + +#: sphinx/domains/python.py:463 +#, python-format +msgid "%s (module)" +msgstr "" + +#: sphinx/domains/python.py:520 +msgid "Python Module Index" +msgstr "" + +#: sphinx/domains/python.py:521 +msgid "modules" +msgstr "" + +#: sphinx/domains/python.py:567 +msgid "Deprecated" +msgstr "" + +#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183 +msgid "exception" +msgstr "" + +#: sphinx/domains/python.py:593 +msgid "method" +msgstr "" + +#: sphinx/domains/python.py:594 +msgid "class method" +msgstr "" + +#: sphinx/domains/python.py:595 +msgid "static method" +msgstr "" + +#: sphinx/domains/python.py:597 sphinx/locale/__init__.py:179 +msgid "module" +msgstr "" + +#: sphinx/domains/python.py:762 +msgid " (deprecated)" +msgstr "" + +#: sphinx/domains/rst.py:55 +#, python-format +msgid "%s (directive)" +msgstr "" + +#: sphinx/domains/rst.py:57 +#, python-format +msgid "%s (role)" +msgstr "" + +#: sphinx/domains/rst.py:106 +msgid "directive" +msgstr "" + +#: sphinx/domains/rst.py:107 +msgid "role" +msgstr "" + +#: sphinx/domains/std.py:73 sphinx/domains/std.py:89 +#, python-format +msgid "environment variable; %s" +msgstr "" + +#: sphinx/domains/std.py:185 +#, python-format +msgid "%scommand line option; %s" +msgstr "" + +#: sphinx/domains/std.py:433 +msgid "glossary term" +msgstr "" + +#: sphinx/domains/std.py:434 +msgid "grammar token" +msgstr "" + +#: sphinx/domains/std.py:435 +msgid "reference label" +msgstr "" + +#: sphinx/domains/std.py:437 +msgid "environment variable" +msgstr "" + +#: sphinx/domains/std.py:438 +msgid "program option" +msgstr "" + +#: sphinx/domains/std.py:471 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:363 sphinx/writers/texinfo.py:481 +msgid "Index" +msgstr "अनुक्रमणिका" + +#: sphinx/domains/std.py:472 +msgid "Module Index" +msgstr "" + +#: sphinx/domains/std.py:473 sphinx/themes/basic/defindex.html:25 +msgid "Search Page" +msgstr "खोज पृष्ठ" + +#: sphinx/ext/autodoc.py:1265 +#, python-format +msgid " Bases: %s" +msgstr "" + +#: sphinx/ext/autodoc.py:1318 +#, python-format +msgid "alias of :class:`%s`" +msgstr "" + +#: sphinx/ext/graphviz.py:309 sphinx/ext/graphviz.py:318 +#, python-format +msgid "[graph: %s]" +msgstr "" + +#: sphinx/ext/graphviz.py:311 sphinx/ext/graphviz.py:320 +msgid "[graph]" +msgstr "" + +#: sphinx/ext/intersphinx.py:359 +#, python-format +msgid "(in %s v%s)" +msgstr "" + +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:99 +msgid "[source]" +msgstr "" + +#: sphinx/ext/todo.py:56 +msgid "Todo" +msgstr "" + +#: sphinx/ext/todo.py:129 +msgid "<>" +msgstr "" + +#: sphinx/ext/todo.py:132 +#, python-format +msgid "(The <> is located in %s, line %d.)" +msgstr "" + +#: sphinx/ext/todo.py:141 +msgid "original entry" +msgstr "मूल entry" + +#: sphinx/ext/viewcode.py:162 +msgid "[docs]" +msgstr "" + +#: sphinx/ext/viewcode.py:176 +msgid "Module code" +msgstr "" + +#: sphinx/ext/viewcode.py:182 +#, python-format +msgid "

Source code for %s

" +msgstr "

%s का स्रोत code

" + +#: sphinx/ext/viewcode.py:208 +msgid "Overview: module code" +msgstr "" + +#: sphinx/ext/viewcode.py:209 +msgid "

All modules for which code is available

" +msgstr "" + +#: sphinx/locale/__init__.py:159 +msgid "Attention" +msgstr "" + +#: sphinx/locale/__init__.py:160 +msgid "Caution" +msgstr "" + +#: sphinx/locale/__init__.py:161 +msgid "Danger" +msgstr "" + +#: sphinx/locale/__init__.py:162 +msgid "Error" +msgstr "" + +#: sphinx/locale/__init__.py:163 +msgid "Hint" +msgstr "" + +#: sphinx/locale/__init__.py:164 +msgid "Important" +msgstr "" + +#: sphinx/locale/__init__.py:165 +msgid "Note" +msgstr "" + +#: sphinx/locale/__init__.py:166 +msgid "See also" +msgstr "" + +#: sphinx/locale/__init__.py:167 +msgid "Tip" +msgstr "" + +#: sphinx/locale/__init__.py:168 +msgid "Warning" +msgstr "" + +#: sphinx/locale/__init__.py:172 +#, python-format +msgid "New in version %s" +msgstr "" + +#: sphinx/locale/__init__.py:173 +#, python-format +msgid "Changed in version %s" +msgstr "" + +#: sphinx/locale/__init__.py:174 +#, python-format +msgid "Deprecated since version %s" +msgstr "" + +#: sphinx/locale/__init__.py:180 +msgid "keyword" +msgstr "" + +#: sphinx/locale/__init__.py:181 +msgid "operator" +msgstr "" + +#: sphinx/locale/__init__.py:182 +msgid "object" +msgstr "" + +#: sphinx/locale/__init__.py:184 +msgid "statement" +msgstr "" + +#: sphinx/locale/__init__.py:185 +msgid "built-in function" +msgstr "" + +#: 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:51 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:54 sphinx/themes/basic/searchbox.html:15 +msgid "Go" +msgstr "" + +#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +msgid "Show Source" +msgstr "" + +#: sphinx/themes/basic/defindex.html:11 +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 "" + +#: sphinx/themes/basic/defindex.html:23 +msgid "Complete Table of Contents" +msgstr "" + +#: sphinx/themes/basic/defindex.html:24 +msgid "lists all sections and subsections" +msgstr "" + +#: sphinx/themes/basic/defindex.html:26 +msgid "search this documentation" +msgstr "" + +#: sphinx/themes/basic/defindex.html:28 +msgid "Global Module Index" +msgstr "" + +#: sphinx/themes/basic/defindex.html:29 +msgid "quick access to all modules" +msgstr "" + +#: sphinx/themes/basic/defindex.html:31 +msgid "all functions, classes, terms" +msgstr "" + +#: sphinx/themes/basic/genindex-single.html:35 +#, python-format +msgid "Index – %(key)s" +msgstr "" + +#: sphinx/themes/basic/genindex-single.html:63 +#: sphinx/themes/basic/genindex-split.html:24 +#: sphinx/themes/basic/genindex-split.html:38 +#: sphinx/themes/basic/genindex.html:74 +msgid "Full index on one page" +msgstr "" + +#: sphinx/themes/basic/genindex-split.html:16 +msgid "Index pages by letter" +msgstr "" + +#: sphinx/themes/basic/genindex-split.html:25 +msgid "can be huge" +msgstr "" + +#: sphinx/themes/basic/layout.html:29 +msgid "Navigation" +msgstr "" + +#: sphinx/themes/basic/layout.html:122 +#, python-format +msgid "Search within %(docstitle)s" +msgstr "" + +#: sphinx/themes/basic/layout.html:131 +msgid "About these documents" +msgstr "" + +#: sphinx/themes/basic/layout.html:140 +msgid "Copyright" +msgstr "" + +#: sphinx/themes/basic/layout.html:189 +#, python-format +msgid "© Copyright %(copyright)s." +msgstr "" + +#: sphinx/themes/basic/layout.html:191 +#, python-format +msgid "© Copyright %(copyright)s." +msgstr "" + +#: sphinx/themes/basic/layout.html:195 +#, python-format +msgid "Last updated on %(last_updated)s." +msgstr "" + +#: sphinx/themes/basic/layout.html:198 +#, python-format +msgid "" +"Created using Sphinx " +"%(sphinx_version)s." +msgstr "" + +#: sphinx/themes/basic/opensearch.xml:4 +#, python-format +msgid "Search %(docstitle)s" +msgstr "" + +#: sphinx/themes/basic/relations.html:11 +msgid "Previous topic" +msgstr "" + +#: sphinx/themes/basic/relations.html:13 +msgid "previous chapter" +msgstr "" + +#: sphinx/themes/basic/relations.html:16 +msgid "Next topic" +msgstr "" + +#: sphinx/themes/basic/relations.html:18 +msgid "next chapter" +msgstr "" + +#: sphinx/themes/basic/search.html:27 +msgid "" +"Please activate JavaScript to enable the search\n" +" functionality." +msgstr "" + +#: 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:39 +#: sphinx/themes/basic/searchresults.html:17 +msgid "search" +msgstr "" + +#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:282 +msgid "Search Results" +msgstr "" + +#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:284 +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" +msgstr "" + +#: sphinx/themes/basic/sourcelink.html:12 +msgid "This Page" +msgstr "" + +#: sphinx/themes/basic/changes/frameset.html:5 +#: sphinx/themes/basic/changes/versionchanges.html:12 +#, python-format +msgid "Changes in Version %(version)s — %(docstitle)s" +msgstr "" + +#: sphinx/themes/basic/changes/rstsource.html:5 +#, python-format +msgid "%(filename)s — %(docstitle)s" +msgstr "" + +#: sphinx/themes/basic/changes/versionchanges.html:17 +#, python-format +msgid "Automatically generated list of changes in version %(version)s" +msgstr "" + +#: sphinx/themes/basic/changes/versionchanges.html:18 +msgid "Library changes" +msgstr "" + +#: sphinx/themes/basic/changes/versionchanges.html:23 +msgid "C API changes" +msgstr "" + +#: sphinx/themes/basic/changes/versionchanges.html:25 +msgid "Other changes" +msgstr "" + +#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668 +#: sphinx/writers/html.py:673 +msgid "Permalink to this headline" +msgstr "" + +#: sphinx/themes/basic/static/doctools.js_t:175 sphinx/writers/html.py:105 +msgid "Permalink to this definition" +msgstr "" + +#: sphinx/themes/basic/static/doctools.js_t:208 +msgid "Hide Search Matches" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:121 +msgid "Searching" +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:126 +msgid "Preparing search..." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:286 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "" + +#: sphinx/themes/basic/static/searchtools.js_t:338 +msgid ", in " +msgstr "" + +#: sphinx/themes/classic/static/sidebar.js_t:83 +msgid "Expand sidebar" +msgstr "" + +#: sphinx/themes/classic/static/sidebar.js_t:96 +#: sphinx/themes/classic/static/sidebar.js_t:124 +msgid "Collapse sidebar" +msgstr "" + +#: sphinx/themes/haiku/layout.html:24 +msgid "Contents" +msgstr "" + +#: sphinx/writers/html.py:349 +msgid "Permalink to this code" +msgstr "" + +#: sphinx/writers/html.py:353 +msgid "Permalink to this image" +msgstr "" + +#: sphinx/writers/html.py:355 +msgid "Permalink to this toctree" +msgstr "" + +#: sphinx/writers/html.py:677 +msgid "Permalink to this table" +msgstr "" + +#: sphinx/writers/latex.py:361 +msgid "Release" +msgstr "" + +#: sphinx/writers/latex.py:427 +msgid "page" +msgstr "" + +#: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 +#: sphinx/writers/texinfo.py:620 +msgid "Footnotes" +msgstr "" + +#: sphinx/writers/latex.py:1022 +msgid "continued from previous page" +msgstr "" + +#: sphinx/writers/latex.py:1028 +msgid "Continued on next page" +msgstr "" + +#: sphinx/writers/manpage.py:282 sphinx/writers/text.py:582 +#, python-format +msgid "[image: %s]" +msgstr "" + +#: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 +msgid "[image]" +msgstr "" diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.js b/sphinx/locale/hr/LC_MESSAGES/sphinx.js index c968fea33..52c26192e 100644 --- a/sphinx/locale/hr/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/hr/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "hr", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Sva prava zadr\u017eana %(copyright)s.", "© Copyright %(copyright)s.": "© Sva prava zadr\u017eana %(copyright)s.", ", in ": "", "About these documents": "O ovim dokumentima", "Automatically generated list of changes in version %(version)s": "Automatically generated list of changes in version %(version)s", "C API changes": "C API changes", "Changes in Version %(version)s — %(docstitle)s": "Changes in Version %(version)s — %(docstitle)s", "Collapse sidebar": "", "Complete Table of Contents": "Potpuna tabela sadr\u017eaja", "Contents": "", "Copyright": "Sva prava zadr\u017eana", "Created using Sphinx %(sphinx_version)s.": "Izra\u0111eno sa Sphinx %(sphinx_version)s.", "Enter search terms or a module, class or function name.": "Unesi ime modula, razreda ili funkcije.", "Expand sidebar": "", "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.": "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.", "Full index on one page": "Potpun indeks na jednoj strani", "General Index": "Opceniti abecedni indeks", "Global Module Index": "Op\u0107eniti popis modula", "Go": "Naprijed", "Hide Search Matches": "Sakrij rezultate pretrage", "Index": "Abecedni popis", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Indeksiraj stranice po slovu", "Indices and tables:": "Kazala i tabele:", "Last updated on %(last_updated)s.": "Zadnji put a\u017eurirano %(last_updated)s.", "Library changes": "Library changes", "Navigation": "Navigacija", "Next topic": "Slijede\u0107a tema", "Other changes": "Ostale promjene", "Overview": "Pregled", "Permalink to this definition": "Link na tu definiciju", "Permalink to this headline": "Link na taj naslov", "Please activate JavaScript to enable the search\n functionality.": "Molimo omogu\u0107ite JavaScript\n za djelovanje tra\u017eilice.", "Preparing search...": "", "Previous topic": "Prija\u0161nja tema", "Quick search": "Brzo pretra\u017eivanje", "Search": "Tra\u017ei", "Search Page": "Tra\u017eilica", "Search Results": "Rezultati pretrage", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "Tra\u017ei izme\u0111u %(docstitle)s", "Searching": "", "Show Source": "Prika\u017ei izvorni kod", "Table Of Contents": "Pregled sadr\u017eaja", "This Page": "Trenutna stranica", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "sve funkcije, razredi, izrazi", "can be huge": "mo\u017ee biti veliko", "last updated": "", "lists all sections and subsections": "prika\u017ei sve sekcije i podsekcije", "next chapter": "slijede\u0107e poglavje", "previous chapter": "Prija\u0161nje poglavje", "quick access to all modules": "brz dostup do svih modulov", "search": "tra\u017ei", "search this documentation": "tra\u017ei po dokumentaciji", "the documentation for": ""}, "plural_expr": "n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2"}); \ No newline at end of file +Documentation.addTranslations({"locale": "hr", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Sva prava zadr\u017eana %(copyright)s.", "© Copyright %(copyright)s.": "© Sva prava zadr\u017eana %(copyright)s.", ", in ": ", u ", "About these documents": "O ovim dokumentima", "Automatically generated list of changes in version %(version)s": "Automatically generated list of changes in version %(version)s", "C API changes": "C API changes", "Changes in Version %(version)s — %(docstitle)s": "Changes in Version %(version)s — %(docstitle)s", "Collapse sidebar": "Sakrij pomo\u0107nu traku", "Complete Table of Contents": "Potpuna tabela sadr\u017eaja", "Contents": "Sadr\u017eaj", "Copyright": "Sva prava zadr\u017eana", "Created using Sphinx %(sphinx_version)s.": "Izra\u0111eno sa Sphinx %(sphinx_version)s.", "Expand sidebar": "Poka\u017ei pomo\u0107nu traku", "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.": "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.", "Full index on one page": "Potpun indeks na jednoj strani", "General Index": "Opceniti abecedni indeks", "Global Module Index": "Op\u0107eniti popis modula", "Go": "Naprijed", "Hide Search Matches": "Sakrij rezultate pretrage", "Index": "Abecedni popis", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Indeksiraj stranice po slovu", "Indices and tables:": "Kazala i tabele:", "Last updated on %(last_updated)s.": "Zadnji put a\u017eurirano %(last_updated)s.", "Library changes": "Library changes", "Navigation": "Navigacija", "Next topic": "Slijede\u0107a tema", "Other changes": "Ostale promjene", "Overview": "Pregled", "Permalink to this definition": "Link na tu definiciju", "Permalink to this headline": "Link na taj naslov", "Please activate JavaScript to enable the search\n functionality.": "Molimo omogu\u0107ite JavaScript\n za djelovanje tra\u017eilice.", "Preparing search...": "Priprema pretrage...", "Previous topic": "Prija\u0161nja tema", "Quick search": "Brzo pretra\u017eivanje", "Search": "Tra\u017ei", "Search Page": "Tra\u017eilica", "Search Results": "Rezultati pretrage", "Search finished, found %s page(s) matching the search query.": "Pretraga zavr\u0161ena, prona\u0111eno %s stranica.", "Search within %(docstitle)s": "Tra\u017ei izme\u0111u %(docstitle)s", "Searching": "Pretra\u017eivanje", "Show Source": "Prika\u017ei izvorni kod", "Table Of Contents": "Pregled sadr\u017eaja", "This Page": "Trenutna stranica", "Welcome! This is": "Dobro do\u0161li! Ovo je", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Zadanim uvjetima nije prona\u0111en dokument. Molim provjerite to\u010dnost upisanih rije\u010di i odabir ozna\u010denih kategija.", "all functions, classes, terms": "sve funkcije, razredi, izrazi", "can be huge": "mo\u017ee biti veliko", "last updated": "posljednja promjena", "lists all sections and subsections": "prika\u017ei sve sekcije i podsekcije", "next chapter": "slijede\u0107e poglavje", "previous chapter": "Prija\u0161nje poglavje", "quick access to all modules": "brz dostup do svih modulov", "search": "tra\u017ei", "search this documentation": "tra\u017ei po dokumentaciji", "the documentation for": "dokumentacija za"}, "plural_expr": "n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2"}); \ 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 3b0cc3190..ae4063fb6 100644 Binary files a/sphinx/locale/hr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hr/LC_MESSAGES/sphinx.po b/sphinx/locale/hr/LC_MESSAGES/sphinx.po index 75d90ff69..416026f78 100644 --- a/sphinx/locale/hr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hr/LC_MESSAGES/sphinx.po @@ -1,29 +1,28 @@ -# Croatian translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# Mario Šarić, 2015-2016 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" -"Last-Translator: Takayuki Shimizukawa \n" -"Language: hr\n" -"Language-Team: Croatian " -"(http://www.transifex.com/projects/p/sphinx-1/language/hr/)\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" +"PO-Revision-Date: 2016-03-06 15:32+0000\n" +"Last-Translator: Mario Šarić\n" +"Language-Team: Croatian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hr/)\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 2.2.0\n" +"Language: hr\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" #: sphinx/config.py:91 #, python-format msgid "Fig. %s" -msgstr "Sl. %s" +msgstr "Slika %s" #: sphinx/config.py:92 #, python-format @@ -62,7 +61,7 @@ msgstr "Python Enhancement Proposals; PEP %s" #: sphinx/transforms.py:56 sphinx/writers/latex.py:374 #: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222 msgid "MMMM dd, YYYY" -msgstr "" +msgstr "MMMM dd, YYYY" #: sphinx/builders/changes.py:75 msgid "Builtins" @@ -74,7 +73,7 @@ msgstr "Nivo modula" #: sphinx/builders/html.py:295 msgid "MMM dd, YYYY" -msgstr "" +msgstr "MMM dd, YYYY" #: sphinx/builders/html.py:315 sphinx/themes/basic/defindex.html:30 msgid "General Index" @@ -179,9 +178,8 @@ msgid "variable" msgstr "varijabla" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "Parametri" +msgstr "Parametri predloška" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -248,7 +246,7 @@ msgstr "%s() (razred)" #: sphinx/domains/javascript.py:111 #, python-format msgid "%s (global variable or constant)" -msgstr "" +msgstr "%s (globalna varijabla ili konstanta)" #: sphinx/domains/javascript.py:113 sphinx/domains/python.py:384 #, python-format @@ -257,11 +255,11 @@ msgstr "%s (%s atribut)" #: sphinx/domains/javascript.py:122 msgid "Arguments" -msgstr "" +msgstr "Argumenti" #: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590 msgid "data" -msgstr "" +msgstr "podaci" #: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596 msgid "attribute" @@ -269,7 +267,7 @@ msgstr "atribut" #: sphinx/domains/python.py:129 msgid "Variables" -msgstr "" +msgstr "Varijable" #: sphinx/domains/python.py:133 msgid "Raises" @@ -319,12 +317,12 @@ msgstr "%s() (%s statična metoda)" #: sphinx/domains/python.py:369 #, python-format msgid "%s() (%s.%s class method)" -msgstr "" +msgstr "%s() (%s.%s metoda klase)" #: sphinx/domains/python.py:372 #, python-format msgid "%s() (%s class method)" -msgstr "" +msgstr "%s() (%s metoda klase)" #: sphinx/domains/python.py:382 #, python-format @@ -338,7 +336,7 @@ msgstr "%s (modul)" #: sphinx/domains/python.py:520 msgid "Python Module Index" -msgstr "" +msgstr "Python indeks modula" #: sphinx/domains/python.py:521 msgid "modules" @@ -354,11 +352,11 @@ msgstr "izuzetak" #: sphinx/domains/python.py:593 msgid "method" -msgstr "" +msgstr "metoda" #: sphinx/domains/python.py:594 msgid "class method" -msgstr "" +msgstr "metoda klase" #: sphinx/domains/python.py:595 msgid "static method" @@ -375,20 +373,20 @@ msgstr " (zastarjelo)" #: sphinx/domains/rst.py:55 #, python-format msgid "%s (directive)" -msgstr "" +msgstr "%s (directive)" #: sphinx/domains/rst.py:57 #, python-format msgid "%s (role)" -msgstr "" +msgstr "%s (role)" #: sphinx/domains/rst.py:106 msgid "directive" -msgstr "" +msgstr "Direktive" #: sphinx/domains/rst.py:107 msgid "role" -msgstr "" +msgstr "uloga" #: sphinx/domains/std.py:73 sphinx/domains/std.py:89 #, python-format @@ -402,15 +400,15 @@ msgstr "%scommand line parameter; %s" #: sphinx/domains/std.py:433 msgid "glossary term" -msgstr "" +msgstr "termin rječnika" #: sphinx/domains/std.py:434 msgid "grammar token" -msgstr "" +msgstr "token gramatike" #: sphinx/domains/std.py:435 msgid "reference label" -msgstr "" +msgstr "referentna oznaka" #: sphinx/domains/std.py:437 msgid "environment variable" @@ -418,7 +416,7 @@ msgstr "varijabla okruženja" #: sphinx/domains/std.py:438 msgid "program option" -msgstr "" +msgstr "programske mogućnosti" #: sphinx/domains/std.py:471 sphinx/themes/basic/genindex-single.html:32 #: sphinx/themes/basic/genindex-single.html:57 @@ -451,20 +449,20 @@ msgstr "nadimak za :class:`%s`" #: sphinx/ext/graphviz.py:309 sphinx/ext/graphviz.py:318 #, python-format msgid "[graph: %s]" -msgstr "" +msgstr "[graph: %s]" #: sphinx/ext/graphviz.py:311 sphinx/ext/graphviz.py:320 msgid "[graph]" -msgstr "" +msgstr "[graph]" #: sphinx/ext/intersphinx.py:359 #, python-format msgid "(in %s v%s)" -msgstr "" +msgstr "(u %s v%s)" #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:99 msgid "[source]" -msgstr "" +msgstr "[source]" #: sphinx/ext/todo.py:56 msgid "Todo" @@ -472,37 +470,37 @@ msgstr "Todo" #: sphinx/ext/todo.py:129 msgid "<>" -msgstr "" +msgstr "<>" #: sphinx/ext/todo.py:132 #, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "" +msgstr "(<> se nalazi u %s, redak %d.)" #: sphinx/ext/todo.py:141 msgid "original entry" -msgstr "" +msgstr "izvorna stavka" #: sphinx/ext/viewcode.py:162 msgid "[docs]" -msgstr "" +msgstr "[docs]" #: sphinx/ext/viewcode.py:176 msgid "Module code" -msgstr "" +msgstr "Kod modula" #: sphinx/ext/viewcode.py:182 #, python-format msgid "

Source code for %s

" -msgstr "" +msgstr "

Izvorni kod za %s

" #: sphinx/ext/viewcode.py:208 msgid "Overview: module code" -msgstr "" +msgstr "Pregled: kod modula" #: sphinx/ext/viewcode.py:209 msgid "

All modules for which code is available

" -msgstr "" +msgstr "

Svi moduli za koje je dostupan kod

" #: sphinx/locale/__init__.py:159 msgid "Attention" @@ -604,15 +602,15 @@ msgstr "Pregled" #: sphinx/themes/basic/defindex.html:15 msgid "Welcome! This is" -msgstr "" +msgstr "Dobro došli! Ovo je" #: sphinx/themes/basic/defindex.html:16 msgid "the documentation for" -msgstr "" +msgstr "dokumentacija za" #: sphinx/themes/basic/defindex.html:17 msgid "last updated" -msgstr "" +msgstr "posljednja promjena" #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" @@ -699,9 +697,7 @@ msgstr "Zadnji put ažurirano %(last_updated)s." msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" -"Izrađeno sa Sphinx " -"%(sphinx_version)s." +msgstr "Izrađeno sa Sphinx %(sphinx_version)s." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -728,9 +724,7 @@ msgstr "slijedeće poglavje" msgid "" "Please activate JavaScript to enable the search\n" " functionality." -msgstr "" -"Molimo omogućite JavaScript\n" -" za djelovanje tražilice." +msgstr "Molimo omogućite JavaScript\n za djelovanje tražilice." #: sphinx/themes/basic/search.html:32 msgid "" @@ -738,27 +732,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 "" -"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 "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." -#: 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 "traži" -#: 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:282 msgid "Search Results" msgstr "Rezultati pretrage" -#: 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:284 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 "Zadanim uvjetima nije pronađen dokument. Molim provjerite točnost upisanih riječi i odabir označenih kategija." #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -811,63 +804,62 @@ msgstr "Sakrij rezultate pretrage" #: sphinx/themes/basic/static/searchtools.js_t:121 msgid "Searching" -msgstr "" +msgstr "Pretraživanje" #: sphinx/themes/basic/static/searchtools.js_t:126 msgid "Preparing search..." -msgstr "" +msgstr "Priprema pretrage..." #: sphinx/themes/basic/static/searchtools.js_t:286 #, python-format msgid "Search finished, found %s page(s) matching the search query." -msgstr "" +msgstr "Pretraga završena, pronađeno %s stranica." #: sphinx/themes/basic/static/searchtools.js_t:338 msgid ", in " -msgstr "" +msgstr ", u " #: sphinx/themes/classic/static/sidebar.js_t:83 msgid "Expand sidebar" -msgstr "" +msgstr "Pokaži pomoćnu traku" #: sphinx/themes/classic/static/sidebar.js_t:96 #: sphinx/themes/classic/static/sidebar.js_t:124 msgid "Collapse sidebar" -msgstr "" +msgstr "Sakrij pomoćnu traku" #: sphinx/themes/haiku/layout.html:24 msgid "Contents" -msgstr "" +msgstr "Sadržaj" #: sphinx/writers/html.py:349 msgid "Permalink to this code" -msgstr "" +msgstr "Permalink na ovaj kod" #: sphinx/writers/html.py:353 msgid "Permalink to this image" -msgstr "" +msgstr "Permalink na ovu sliku" #: sphinx/writers/html.py:355 msgid "Permalink to this toctree" -msgstr "" +msgstr "Permalink na ovaj sadržaj" #: sphinx/writers/html.py:677 msgid "Permalink to this table" -msgstr "" +msgstr "Permalink na ovu tablicu" #: sphinx/writers/latex.py:361 msgid "Release" msgstr "Distribucija" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "Opasnost" +msgstr "stranica" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 msgid "Footnotes" -msgstr "" +msgstr "Fusnote" #: sphinx/writers/latex.py:1022 msgid "continued from previous page" @@ -880,21 +872,8 @@ msgstr "nastavak na slijedećoj stranici" #: sphinx/writers/manpage.py:282 sphinx/writers/text.py:582 #, python-format msgid "[image: %s]" -msgstr "" +msgstr "[slika: %s]" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[slika]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%d %B, %Y" - -#~ msgid "%b %d, %Y" -#~ msgstr "%d %b, %Y" - -#~ msgid "(The <> is located in %s, line %d.)" -#~ msgstr "" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "Unesi ime modula, razreda ili funkcije." - diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.js b/sphinx/locale/hu/LC_MESSAGES/sphinx.js index a5453fe8c..7f2fb6b46 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/hu/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "hu", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Minden jog fenntartva %(copyright)s.", "© Copyright %(copyright)s.": "© Minden jog fenntartva %(copyright)s.", ", in ": ", ", "About these documents": "N\u00e9vjegy ezekr\u0151l a dokumentumokr\u00f3l", "Automatically generated list of changes in version %(version)s": "Automatikusan gener\u00e1lt v\u00e1ltoz\u00e1slista a(z) %(version)s v\u00e1ltozathoz", "C API changes": "C API v\u00e1ltoz\u00e1sok", "Changes in Version %(version)s — %(docstitle)s": "V\u00e1ltoz\u00e1sok a(z) %(version)s v\u00e1ltozatban — %(docstitle)s", "Collapse sidebar": "Oldals\u00e1v \u00f6sszez\u00e1r\u00e1sa", "Complete Table of Contents": "Teljes tartalomjegyz\u00e9k", "Contents": "Tartalom", "Copyright": "Minden jog fenntartva", "Created using Sphinx %(sphinx_version)s.": "Sphinx %(sphinx_version)s haszn\u00e1lat\u00e1val k\u00e9sz\u00fclt.", "Enter search terms or a module, class or function name.": "Adjon meg egy keresend\u0151 kifejez\u00e9st, modul, oszt\u00e1ly vagy funkci\u00f3 nevet.", "Expand sidebar": "Oldals\u00e1v kinyit\u00e1sa", "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.": "Err\u0151l az oldalr\u00f3l ind\u00edthatja keres\u00e9seit. \u00cdrja be a kulcsszavakat\n az al\u00e1bbi sz\u00f6vegdobozba, majd kattintson a \"keres\u00e9s\" gombra.\n \u00dcgyeljen arra, hogy a keres\u00e9s megadott kulcsszavak mindegyik\u00e9t\n figyelembe veszi, \u00edgy azok az oldalak, melyek nem tartalmazz\u00e1k az\n \u00f6sszes kifejez\u00e9st, nem jelennek meg a tal\u00e1lati list\u00e1ban.", "Full index on one page": "Teljes t\u00e1rgymutat\u00f3 egy oldalon", "General Index": "\u00c1ltal\u00e1nos t\u00e1rgymutat\u00f3", "Global Module Index": "Teljes modul t\u00e1rgymutat\u00f3", "Go": "Ok", "Hide Search Matches": "Keres\u00e9si Tal\u00e1latok Elrejt\u00e9se", "Index": "T\u00e1rgymutat\u00f3", "Index – %(key)s": "T\u00e1rgymutat\u00f3 – %(key)s", "Index pages by letter": "Oldalak ABC sorrendben", "Indices and tables:": "T\u00e1rgymutat\u00f3 \u00e9s t\u00e1bl\u00e1zatok", "Last updated on %(last_updated)s.": "Utols\u00f3 friss\u00edt\u00e9s %(last_updated)s.", "Library changes": "K\u00f6nyvt\u00e1r v\u00e1ltoz\u00e1sok", "Navigation": "Navig\u00e1ci\u00f3", "Next topic": "K\u00f6vetkez\u0151 t\u00e9mak\u00f6r", "Other changes": "Egy\u00e9b v\u00e1ltoz\u00e1sok", "Overview": "\u00c1ttekint\u00e9s", "Permalink to this definition": "Hivatkoz\u00e1s erre a defin\u00edci\u00f3ra", "Permalink to this headline": "Hivatkoz\u00e1s erre a fejezetc\u00edmre", "Please activate JavaScript to enable the search\n functionality.": "K\u00e9rem enged\u00e9lyezze a JavaScriptet a keres\u0151 funkci\u00f3\n haszn\u00e1lat\u00e1hoz.", "Preparing search...": "Felk\u00e9sz\u00fcl\u00e9s a keres\u00e9sre...", "Previous topic": "El\u0151z\u0151 t\u00e9mak\u00f6r", "Quick search": "Gyorskeres\u00e9s", "Search": "Keres\u00e9s", "Search Page": "Keres\u00e9s", "Search Results": "Keres\u00e9si Eredm\u00e9nyek", "Search finished, found %s page(s) matching the search query.": "A keres\u00e9s befejez\u0151d\u00f6tt, %s oldal egyezik a keres\u00e9si fel\u00e9teleknek.", "Search within %(docstitle)s": "Keres\u00e9s k\u00f6zt\u00fck: %(docstitle)s", "Searching": "Keres\u00e9s folyamatban", "Show Source": "Forr\u00e1s megtekint\u00e9se", "Table Of Contents": "Tartalomjegyz\u00e9k", "This Page": "Ez az Oldal", "Welcome! This is": "\u00dcdv\u00f6z\u00f6lj\u00fck! Ez a", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "A keres\u00e9se nem hozott eredm\u00e9nyt. Ellen\u0151rizze, a megadott kulcsszavakat \u00e9s azt, hogy megfelel\u0151 sz\u00e1m\u00fa kateg\u00f3ria van-e kiv\u00e1lasztva.", "all functions, classes, terms": "\u00f6sszes funkci\u00f3, oszt\u00e1ly \u00e9s kifejez\u00e9s", "can be huge": "nagy lehet", "last updated": "utolj\u00e1ra friss\u00edtve", "lists all sections and subsections": "kilist\u00e1zza az \u00f6sszes fejezetet \u00e9s alfejezetet", "next chapter": "k\u00f6vetkez\u0151 fejezet", "previous chapter": "el\u0151z\u0151 fejezet", "quick access to all modules": "gyors hozz\u00e1f\u00e9r\u00e9s az \u00f6sszes modulhoz", "search": "keres\u00e9s", "search this documentation": "keres\u00e9s ebben a dokument\u00e1ci\u00f3ban", "the documentation for": "dokument\u00e1ci\u00f3"}, "plural_expr": "(n != 1)"}); \ No newline at end of file +Documentation.addTranslations({"locale": "hu", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Minden jog fenntartva %(copyright)s.", "© Copyright %(copyright)s.": "© Minden jog fenntartva %(copyright)s.", ", in ": ", ", "About these documents": "N\u00e9vjegy ezekr\u0151l a dokumentumokr\u00f3l", "Automatically generated list of changes in version %(version)s": "Automatikusan gener\u00e1lt v\u00e1ltoz\u00e1slista a(z) %(version)s v\u00e1ltozathoz", "C API changes": "C API v\u00e1ltoz\u00e1sok", "Changes in Version %(version)s — %(docstitle)s": "V\u00e1ltoz\u00e1sok a(z) %(version)s v\u00e1ltozatban — %(docstitle)s", "Collapse sidebar": "Oldals\u00e1v \u00f6sszez\u00e1r\u00e1sa", "Complete Table of Contents": "Teljes tartalomjegyz\u00e9k", "Contents": "Tartalom", "Copyright": "Minden jog fenntartva", "Created using Sphinx %(sphinx_version)s.": "Sphinx %(sphinx_version)s haszn\u00e1lat\u00e1val k\u00e9sz\u00fclt.", "Expand sidebar": "Oldals\u00e1v kinyit\u00e1sa", "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.": "Err\u0151l az oldalr\u00f3l ind\u00edthatja keres\u00e9seit. \u00cdrja be a kulcsszavakat\n az al\u00e1bbi sz\u00f6vegdobozba, majd kattintson a \"keres\u00e9s\" gombra.\n \u00dcgyeljen arra, hogy a keres\u00e9s megadott kulcsszavak mindegyik\u00e9t\n figyelembe veszi, \u00edgy azok az oldalak, melyek nem tartalmazz\u00e1k az\n \u00f6sszes kifejez\u00e9st, nem jelennek meg a tal\u00e1lati list\u00e1ban.", "Full index on one page": "Teljes t\u00e1rgymutat\u00f3 egy oldalon", "General Index": "\u00c1ltal\u00e1nos t\u00e1rgymutat\u00f3", "Global Module Index": "Teljes modul t\u00e1rgymutat\u00f3", "Go": "Ok", "Hide Search Matches": "Keres\u00e9si Tal\u00e1latok Elrejt\u00e9se", "Index": "T\u00e1rgymutat\u00f3", "Index – %(key)s": "T\u00e1rgymutat\u00f3 – %(key)s", "Index pages by letter": "Oldalak ABC sorrendben", "Indices and tables:": "T\u00e1rgymutat\u00f3 \u00e9s t\u00e1bl\u00e1zatok", "Last updated on %(last_updated)s.": "Utols\u00f3 friss\u00edt\u00e9s %(last_updated)s.", "Library changes": "K\u00f6nyvt\u00e1r v\u00e1ltoz\u00e1sok", "Navigation": "Navig\u00e1ci\u00f3", "Next topic": "K\u00f6vetkez\u0151 t\u00e9mak\u00f6r", "Other changes": "Egy\u00e9b v\u00e1ltoz\u00e1sok", "Overview": "\u00c1ttekint\u00e9s", "Permalink to this definition": "Hivatkoz\u00e1s erre a defin\u00edci\u00f3ra", "Permalink to this headline": "Hivatkoz\u00e1s erre a fejezetc\u00edmre", "Please activate JavaScript to enable the search\n functionality.": "K\u00e9rem enged\u00e9lyezze a JavaScriptet a keres\u0151 funkci\u00f3\n haszn\u00e1lat\u00e1hoz.", "Preparing search...": "Felk\u00e9sz\u00fcl\u00e9s a keres\u00e9sre...", "Previous topic": "El\u0151z\u0151 t\u00e9mak\u00f6r", "Quick search": "Gyorskeres\u00e9s", "Search": "Keres\u00e9s", "Search Page": "Keres\u00e9s", "Search Results": "Keres\u00e9si Eredm\u00e9nyek", "Search finished, found %s page(s) matching the search query.": "A keres\u00e9s befejez\u0151d\u00f6tt, %s oldal egyezik a keres\u00e9si fel\u00e9teleknek.", "Search within %(docstitle)s": "Keres\u00e9s k\u00f6zt\u00fck: %(docstitle)s", "Searching": "Keres\u00e9s folyamatban", "Show Source": "Forr\u00e1s megtekint\u00e9se", "Table Of Contents": "Tartalomjegyz\u00e9k", "This Page": "Ez az Oldal", "Welcome! This is": "\u00dcdv\u00f6z\u00f6lj\u00fck! Ez a", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "A keres\u00e9se nem hozott eredm\u00e9nyt. Ellen\u0151rizze, a megadott kulcsszavakat \u00e9s azt, hogy megfelel\u0151 sz\u00e1m\u00fa kateg\u00f3ria van-e kiv\u00e1lasztva.", "all functions, classes, terms": "\u00f6sszes funkci\u00f3, oszt\u00e1ly \u00e9s kifejez\u00e9s", "can be huge": "nagy lehet", "last updated": "utolj\u00e1ra friss\u00edtve", "lists all sections and subsections": "kilist\u00e1zza az \u00f6sszes fejezetet \u00e9s alfejezetet", "next chapter": "k\u00f6vetkez\u0151 fejezet", "previous chapter": "el\u0151z\u0151 fejezet", "quick access to all modules": "gyors hozz\u00e1f\u00e9r\u00e9s az \u00f6sszes modulhoz", "search": "keres\u00e9s", "search this documentation": "keres\u00e9s ebben a dokument\u00e1ci\u00f3ban", "the documentation for": "dokument\u00e1ci\u00f3"}, "plural_expr": "(n != 1)"}); \ 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 8956bf5f0..097931fb9 100644 Binary files a/sphinx/locale/hu/LC_MESSAGES/sphinx.mo and b/sphinx/locale/hu/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/hu/LC_MESSAGES/sphinx.po b/sphinx/locale/hu/LC_MESSAGES/sphinx.po index e2d90a383..cd1c4b397 100644 --- a/sphinx/locale/hu/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/hu/LC_MESSAGES/sphinx.po @@ -1,23 +1,24 @@ -# Hungarian translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# FIRST AUTHOR , 2011 +# szunyog , 2013,2015 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" "Last-Translator: Takayuki Shimizukawa \n" -"Language: hu\n" -"Language-Team: Hungarian " -"(http://www.transifex.com/projects/p/sphinx-1/language/hu/)\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Language-Team: Hungarian (http://www.transifex.com/sphinx-doc/sphinx-1/language/hu/)\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 2.2.0\n" +"Language: hu\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinx/config.py:91 #, python-format @@ -178,9 +179,8 @@ msgid "variable" msgstr "változó" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "Paraméterek" +msgstr "" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -470,14 +470,13 @@ msgid "Todo" msgstr "Tennivaló" #: sphinx/ext/todo.py:129 -#, fuzzy msgid "<>" -msgstr "eredeti bejegyzés" +msgstr "" #: sphinx/ext/todo.py:132 -#, fuzzy, python-format +#, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "(Az <> megtalálható a(z) %s, %d sor.)" +msgstr "" #: sphinx/ext/todo.py:141 msgid "original entry" @@ -699,9 +698,7 @@ msgstr "Utolsó frissítés %(last_updated)s." msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" -"Sphinx %(sphinx_version)s " -"használatával készült." +msgstr "Sphinx %(sphinx_version)s használatával készült." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -728,9 +725,7 @@ msgstr "következő fejezet" msgid "" "Please activate JavaScript to enable the search\n" " functionality." -msgstr "" -"Kérem engedélyezze a JavaScriptet a kereső funkció\n" -" használatához." +msgstr "Kérem engedélyezze a JavaScriptet a kereső funkció\n használatához." #: sphinx/themes/basic/search.html:32 msgid "" @@ -738,30 +733,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 "" -"Erről az oldalról indíthatja kereséseit. Írja be a kulcsszavakat\n" -" az alábbi szövegdobozba, majd kattintson a \"keresés\" gombra.\n" -" Ügyeljen arra, hogy a keresés megadott kulcsszavak mindegyikét\n" -" figyelembe veszi, így azok az oldalak, melyek nem tartalmazzák az\n" -" összes kifejezést, nem jelennek meg a találati listában." +msgstr "Erről az oldalról indíthatja kereséseit. Írja be a kulcsszavakat\n az alábbi szövegdobozba, majd kattintson a \"keresés\" gombra.\n Ügyeljen arra, hogy a keresés megadott kulcsszavak mindegyikét\n 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:39 sphinx/themes/basic/searchresults.html:17 +#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "keresés" -#: 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:282 msgid "Search Results" msgstr "Keresési Eredmények" -#: 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:284 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 "" -"A keresése nem hozott eredményt. Ellenőrizze, a megadott kulcsszavakat és" -" azt, hogy megfelelő számú kategória van-e kiválasztva." +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "A keresése nem hozott eredményt. Ellenőrizze, a megadott kulcsszavakat és azt, hogy megfelelő számú kategória van-e kiválasztva." #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -863,9 +854,8 @@ msgid "Release" msgstr "Kiadás" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "Veszély" +msgstr "" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -888,13 +878,3 @@ msgstr "[image: %s]" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[image]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%Y. %m. %d." - -#~ msgid "%b %d, %Y" -#~ msgstr "%b %d, %Y" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "Adjon meg egy keresendő kifejezést, modul, osztály vagy funkció nevet." - diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.js b/sphinx/locale/id/LC_MESSAGES/sphinx.js index 99ab637b1..47c82b696 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "id", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", di", "About these documents": "Tentang dokumen ini", "Automatically generated list of changes in version %(version)s": "Daftar perubahan dibuat otomatis untuk versi %(version)s", "C API changes": "Perubahan API C", "Changes in Version %(version)s — %(docstitle)s": "Perubahan pada Versi %(version)s — %(docstitle)s", "Collapse sidebar": "Tutup sidebar", "Complete Table of Contents": "Daftar Isi Lengkap", "Contents": "Konten", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "Dibuat menggunakan Sphinx %(sphinx_version)s.", "Enter search terms or a module, class or function name.": "Masukkan term pencarian atau nama modul, class atau fungsi.", "Expand sidebar": "Buka sidebar", "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.": "Dari sini dapat dilakukan pencarian pada dokumentasi. Masukkan\n kata yang dicari pada kotak dibawah dan klik \"search\". Catatan untuk fungsi pencarian\n akan secara otomatis mencari semua kata. Halaman\n yang berisi kata yang sedikat tidak dimunculkan pada daftar hasil.", "Full index on one page": "Index penuh dalam satu halaman", "General Index": "Indeks Umum", "Global Module Index": "Index Modul Global", "Go": "Go", "Hide Search Matches": "Sembunyikan Hasil Pencarian", "Index": "Indeks", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Index halaman berdasarkan huruf", "Indices and tables:": "Index dan tabel:", "Last updated on %(last_updated)s.": "Terakhir diperbarui pada %(last_updated)s.", "Library changes": "Perubahan library", "Navigation": "Navigasi", "Next topic": "Topik berikutnya", "Other changes": "Perubahan lain", "Overview": "Tinjauan", "Permalink to this definition": "Link permanen untuk definisi ini", "Permalink to this headline": "Link permanen untuk headline ini", "Please activate JavaScript to enable the search\n functionality.": "Tolong aktifkan JavaScript untuk melakukan pencarian.\n ", "Preparing search...": "Penyiapkan pencarian...", "Previous topic": "Topik sebelum", "Quick search": "Pencarian cepat", "Search": "Pencarian", "Search Page": "Pencarian Halaman", "Search Results": "Hasil Pencarian", "Search finished, found %s page(s) matching the search query.": "Pencarian selesai, menemukan %s halaman yang cocok dengan kueri pencarian.", "Search within %(docstitle)s": "Pencarian dalam %(docstitle)s", "Searching": "Pencarian", "Show Source": "Lihat Sumber", "Table Of Contents": "Daftar Isi", "This Page": "Halaman Ini", "Welcome! This is": "Selamat Datang! Ini adalah", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Tidak ada dokumen yang cocok dengan pencarian anda. Pastikan semua kata ditulis dengan benar dan sudah memilih cukup kategori.", "all functions, classes, terms": "semua fungsi, class, term", "can be huge": "dapat menjadi besar", "last updated": "terakhir diperbarui", "lists all sections and subsections": "daftar semua seksi dan subseksi", "next chapter": "bab berikutnya", "previous chapter": "bab sebelum", "quick access to all modules": "akses cepat semua modul", "search": "pencarian", "search this documentation": "pencarian pada dokumentasi ini", "the documentation for": "dokumentasi untuk"}, "plural_expr": "0"}); \ No newline at end of file +Documentation.addTranslations({"locale": "id", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", di", "About these documents": "Tentang dokumen ini", "Automatically generated list of changes in version %(version)s": "Daftar perubahan dibuat otomatis untuk versi %(version)s", "C API changes": "Perubahan API C", "Changes in Version %(version)s — %(docstitle)s": "Perubahan pada Versi %(version)s — %(docstitle)s", "Collapse sidebar": "Tutup sidebar", "Complete Table of Contents": "Daftar Isi Lengkap", "Contents": "Konten", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "Dibuat menggunakan Sphinx %(sphinx_version)s.", "Expand sidebar": "Buka sidebar", "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.": "Dari sini dapat dilakukan pencarian pada dokumentasi. Masukkan\n kata yang dicari pada kotak dibawah dan klik \"search\". Catatan untuk fungsi pencarian\n akan secara otomatis mencari semua kata. Halaman\n yang berisi kata yang sedikat tidak dimunculkan pada daftar hasil.", "Full index on one page": "Index penuh dalam satu halaman", "General Index": "Indeks Umum", "Global Module Index": "Index Modul Global", "Go": "Go", "Hide Search Matches": "Sembunyikan Hasil Pencarian", "Index": "Indeks", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Index halaman berdasarkan huruf", "Indices and tables:": "Index dan tabel:", "Last updated on %(last_updated)s.": "Terakhir diperbarui pada %(last_updated)s.", "Library changes": "Perubahan library", "Navigation": "Navigasi", "Next topic": "Topik berikutnya", "Other changes": "Perubahan lain", "Overview": "Tinjauan", "Permalink to this definition": "Link permanen untuk definisi ini", "Permalink to this headline": "Link permanen untuk headline ini", "Please activate JavaScript to enable the search\n functionality.": "Tolong aktifkan JavaScript untuk melakukan pencarian.\n ", "Preparing search...": "Penyiapkan pencarian...", "Previous topic": "Topik sebelum", "Quick search": "Pencarian cepat", "Search": "Pencarian", "Search Page": "Pencarian Halaman", "Search Results": "Hasil Pencarian", "Search finished, found %s page(s) matching the search query.": "Pencarian selesai, menemukan %s halaman yang cocok dengan kueri pencarian.", "Search within %(docstitle)s": "Pencarian dalam %(docstitle)s", "Searching": "Pencarian", "Show Source": "Lihat Sumber", "Table Of Contents": "Daftar Isi", "This Page": "Halaman Ini", "Welcome! This is": "Selamat Datang! Ini adalah", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Tidak ada dokumen yang cocok dengan pencarian anda. Pastikan semua kata ditulis dengan benar dan sudah memilih cukup kategori.", "all functions, classes, terms": "semua fungsi, class, term", "can be huge": "dapat menjadi besar", "last updated": "terakhir diperbarui", "lists all sections and subsections": "daftar semua seksi dan subseksi", "next chapter": "bab berikutnya", "previous chapter": "bab sebelum", "quick access to all modules": "akses cepat semua modul", "search": "pencarian", "search this documentation": "pencarian pada dokumentasi ini", "the documentation for": "dokumentasi untuk"}, "plural_expr": "0"}); \ No newline at end of file diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.mo b/sphinx/locale/id/LC_MESSAGES/sphinx.mo index dcc4a6289..bdc0fa436 100644 Binary files a/sphinx/locale/id/LC_MESSAGES/sphinx.mo and b/sphinx/locale/id/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/id/LC_MESSAGES/sphinx.po b/sphinx/locale/id/LC_MESSAGES/sphinx.po index 88d5cd878..c2fcaf71d 100644 --- a/sphinx/locale/id/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/id/LC_MESSAGES/sphinx.po @@ -1,23 +1,25 @@ -# Indonesian translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# Arif Budiman , 2016 +# FIRST AUTHOR , 2009 +# Sakti Dwi Cahyono <54krpl@gmail.com>, 2013,2015 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" "Last-Translator: Takayuki Shimizukawa \n" -"Language: id\n" -"Language-Team: Indonesian " -"(http://www.transifex.com/projects/p/sphinx-1/language/id/)\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Language-Team: Indonesian (http://www.transifex.com/sphinx-doc/sphinx-1/language/id/)\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 2.2.0\n" +"Language: id\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: sphinx/config.py:91 #, python-format @@ -178,9 +180,8 @@ msgid "variable" msgstr "variabel" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "Parameter" +msgstr "" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -470,14 +471,13 @@ msgid "Todo" msgstr "Todo" #: sphinx/ext/todo.py:129 -#, fuzzy msgid "<>" -msgstr "entri asli" +msgstr "" #: sphinx/ext/todo.py:132 -#, fuzzy, python-format +#, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "(<> terletak pada %s, baris ke %d.)" +msgstr "" #: sphinx/ext/todo.py:141 msgid "original entry" @@ -699,9 +699,7 @@ msgstr "Terakhir diperbarui pada %(last_updated)s." msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" -"Dibuat menggunakan Sphinx " -"%(sphinx_version)s." +msgstr "Dibuat menggunakan Sphinx %(sphinx_version)s." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -728,9 +726,7 @@ msgstr "bab berikutnya" msgid "" "Please activate JavaScript to enable the search\n" " functionality." -msgstr "" -"Tolong aktifkan JavaScript untuk melakukan pencarian.\n" -" " +msgstr "Tolong aktifkan JavaScript untuk melakukan pencarian.\n " #: sphinx/themes/basic/search.html:32 msgid "" @@ -738,30 +734,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 "" -"Dari sini dapat dilakukan pencarian pada dokumentasi. Masukkan\n" -" kata yang dicari pada kotak dibawah dan klik \"search\". Catatan " -"untuk fungsi pencarian\n" -" akan secara otomatis mencari semua kata. Halaman\n" -" yang berisi kata yang sedikat tidak dimunculkan pada daftar hasil." +msgstr "Dari sini dapat dilakukan pencarian pada dokumentasi. Masukkan\n kata yang dicari pada kotak dibawah dan klik \"search\". Catatan untuk fungsi pencarian\n akan secara otomatis mencari semua kata. Halaman\n yang berisi kata yang sedikat tidak dimunculkan pada daftar hasil." -#: 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 "pencarian" -#: 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:282 msgid "Search Results" msgstr "Hasil Pencarian" -#: 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:284 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 "" -"Tidak ada dokumen yang cocok dengan pencarian anda. Pastikan semua kata " -"ditulis dengan benar dan sudah memilih cukup kategori." +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "Tidak ada dokumen yang cocok dengan pencarian anda. Pastikan semua kata ditulis dengan benar dan sudah memilih cukup kategori." #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -852,7 +844,7 @@ msgstr "Link permanen untuk gambar ini" #: sphinx/writers/html.py:355 msgid "Permalink to this toctree" -msgstr "" +msgstr "Tautan ke daftar isi ini" #: sphinx/writers/html.py:677 msgid "Permalink to this table" @@ -863,9 +855,8 @@ msgid "Release" msgstr "Rilis" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "Bahaya" +msgstr "" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -888,13 +879,3 @@ msgstr "[gambar: %s]" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[gambar]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%d %B %Y" - -#~ msgid "%b %d, %Y" -#~ msgstr "%d %b, %Y" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "Masukkan term pencarian atau nama modul, class atau fungsi." - diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.js b/sphinx/locale/it/LC_MESSAGES/sphinx.js index dd76df662..f04155802 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "it", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", in", "About these documents": "A proposito di questi documenti", "Automatically generated list of changes in version %(version)s": "Lista delle modifiche generata automaticamente nella versione %(version)s", "C API changes": "Modifiche nelle API C", "Changes in Version %(version)s — %(docstitle)s": "Modifiche nella Versione %(version)s — %(docstitle)s", "Collapse sidebar": "Comprimi la barra laterale", "Complete Table of Contents": "Tabella dei contenuti completa", "Contents": "Contenuti", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "Creato con Sphinx %(sphinx_version)s.", "Enter search terms or a module, class or function name.": "Inserisci un termine di ricerca un modulo, classe o nome di funzione", "Expand sidebar": "Espandi la barra laterale", "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.": "Puoi effettuare una ricerca in questi documenti. Immetti le parole chiave \n della tua ricerca nel riquadro sottostante \"cerca\". Nota che la funzione\n di ricerca cerca automaticamente per tutte le parole. Le pagine\n che contendono meno parole non compariranno nei risultati di ricerca.", "Full index on one page": "Indice completo in una pagina", "General Index": "Indice generale", "Global Module Index": "Indice dei moduli", "Go": "Vai", "Hide Search Matches": "Nascondi i risultati della ricerca", "Index": "Indice", "Index – %(key)s": "Indice – %(key)s", "Index pages by letter": "Indice delle pagine per lettera", "Indices and tables:": "Indici e tabelle:", "Last updated on %(last_updated)s.": "Ultimo aggiornamento %(last_updated)s.", "Library changes": "Modifiche nella libreria", "Navigation": "Navigazione", "Next topic": "Argomento successivo", "Other changes": "Altre modifiche", "Overview": "Sintesi", "Permalink to this definition": "Link a questa definizione", "Permalink to this headline": "Link a questa intestazione", "Please activate JavaScript to enable the search\n functionality.": "Attiva JavaScript per abilitare la funzione\u23ce\ndi ricerca.", "Preparing search...": "Preparo la ricerca...", "Previous topic": "Argomento precedente", "Quick search": "Ricerca veloce", "Search": "Cerca", "Search Page": "Cerca", "Search Results": "Risultati della ricerca", "Search finished, found %s page(s) matching the search query.": "Ricerca completata, trovata/e %s pagina/e corrispondenti.", "Search within %(docstitle)s": "Cerca in %(docstitle)s", "Searching": "Cerca", "Show Source": "Mostra sorgente", "Table Of Contents": "Tabella dei contenuti", "This Page": "Questa pagina", "Welcome! This is": "Benvenuto! Questa \u00e8", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "La tua ricerca non corrisponde a nessun documento. Verifica che tutte le parole siano scritte correttamente e di aver scelto un numero sufficiente di categorie.", "all functions, classes, terms": "tutte le funzioni, classi e moduli", "can be huge": "pu\u00f2 essere enorme", "last updated": "ultimo aggiornamento", "lists all sections and subsections": "elenca l'insieme delle sezioni e sottosezioni", "next chapter": "capitolo successivo", "previous chapter": "capitolo precedente", "quick access to all modules": "accesso veloce ai moduli", "search": "cerca", "search this documentation": "cerca in questa documentazione", "the documentation for": "la documentazione per"}, "plural_expr": "(n != 1)"}); \ No newline at end of file +Documentation.addTranslations({"locale": "it", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", in", "About these documents": "A proposito di questi documenti", "Automatically generated list of changes in version %(version)s": "Lista delle modifiche generata automaticamente nella versione %(version)s", "C API changes": "Modifiche nelle API C", "Changes in Version %(version)s — %(docstitle)s": "Modifiche nella Versione %(version)s — %(docstitle)s", "Collapse sidebar": "Comprimi la barra laterale", "Complete Table of Contents": "Tabella dei contenuti completa", "Contents": "Contenuti", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "Creato con Sphinx %(sphinx_version)s.", "Expand sidebar": "Espandi la barra laterale", "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.": "Puoi effettuare una ricerca in questi documenti. Immetti le parole chiave \n della tua ricerca nel riquadro sottostante \"cerca\". Nota che la funzione\n di ricerca cerca automaticamente per tutte le parole. Le pagine\n che contendono meno parole non compariranno nei risultati di ricerca.", "Full index on one page": "Indice completo in una pagina", "General Index": "Indice generale", "Global Module Index": "Indice dei moduli", "Go": "Vai", "Hide Search Matches": "Nascondi i risultati della ricerca", "Index": "Indice", "Index – %(key)s": "Indice – %(key)s", "Index pages by letter": "Indice delle pagine per lettera", "Indices and tables:": "Indici e tabelle:", "Last updated on %(last_updated)s.": "Ultimo aggiornamento %(last_updated)s.", "Library changes": "Modifiche nella libreria", "Navigation": "Navigazione", "Next topic": "Argomento successivo", "Other changes": "Altre modifiche", "Overview": "Sintesi", "Permalink to this definition": "Link a questa definizione", "Permalink to this headline": "Link a questa intestazione", "Please activate JavaScript to enable the search\n functionality.": "Attiva JavaScript per abilitare la funzione\u23ce\ndi ricerca.", "Preparing search...": "Preparo la ricerca...", "Previous topic": "Argomento precedente", "Quick search": "Ricerca veloce", "Search": "Cerca", "Search Page": "Cerca", "Search Results": "Risultati della ricerca", "Search finished, found %s page(s) matching the search query.": "Ricerca completata, trovata/e %s pagina/e corrispondenti.", "Search within %(docstitle)s": "Cerca in %(docstitle)s", "Searching": "Cerca", "Show Source": "Mostra sorgente", "Table Of Contents": "Tabella dei contenuti", "This Page": "Questa pagina", "Welcome! This is": "Benvenuto! Questa \u00e8", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "La tua ricerca non corrisponde a nessun documento. Verifica che tutte le parole siano scritte correttamente e di aver scelto un numero sufficiente di categorie.", "all functions, classes, terms": "tutte le funzioni, classi e moduli", "can be huge": "pu\u00f2 essere enorme", "last updated": "ultimo aggiornamento", "lists all sections and subsections": "elenca l'insieme delle sezioni e sottosezioni", "next chapter": "capitolo successivo", "previous chapter": "capitolo precedente", "quick access to all modules": "accesso veloce ai moduli", "search": "cerca", "search this documentation": "cerca in questa documentazione", "the documentation for": "la documentazione per"}, "plural_expr": "(n != 1)"}); \ 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 687822816..b94e7dd12 100644 Binary files a/sphinx/locale/it/LC_MESSAGES/sphinx.mo and b/sphinx/locale/it/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/it/LC_MESSAGES/sphinx.po b/sphinx/locale/it/LC_MESSAGES/sphinx.po index ad0e1ba74..a76753180 100644 --- a/sphinx/locale/it/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/it/LC_MESSAGES/sphinx.po @@ -1,23 +1,25 @@ -# Italian translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# Paolo Cavallini , 2013-2016 +# Roland Puntaier , 2013 +# Sandro Dentella , 2008 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" -"Last-Translator: Takayuki Shimizukawa \n" -"Language: it\n" -"Language-Team: Italian " -"(http://www.transifex.com/projects/p/sphinx-1/language/it/)\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"PO-Revision-Date: 2016-03-08 08:59+0000\n" +"Last-Translator: Paolo Cavallini \n" +"Language-Team: Italian (http://www.transifex.com/sphinx-doc/sphinx-1/language/it/)\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 2.2.0\n" +"Language: it\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinx/config.py:91 #, python-format @@ -61,7 +63,7 @@ msgstr "Python Enhancement Proposals; PEP %s" #: sphinx/transforms.py:56 sphinx/writers/latex.py:374 #: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222 msgid "MMMM dd, YYYY" -msgstr "" +msgstr "MMMM dd, YYYY" #: sphinx/builders/changes.py:75 msgid "Builtins" @@ -73,7 +75,7 @@ msgstr "Al livello del modulo" #: sphinx/builders/html.py:295 msgid "MMM dd, YYYY" -msgstr "" +msgstr "MMM dd, YYYY" #: sphinx/builders/html.py:315 sphinx/themes/basic/defindex.html:30 msgid "General Index" @@ -178,9 +180,8 @@ msgid "variable" msgstr "variabile" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "Parametri" +msgstr "Parametri del modello" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -470,14 +471,13 @@ msgid "Todo" msgstr "Da fare" #: sphinx/ext/todo.py:129 -#, fuzzy msgid "<>" -msgstr "riga originale" +msgstr "<>" #: sphinx/ext/todo.py:132 -#, fuzzy, python-format +#, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "(La <> si trova in %s, linea %d.)" +msgstr "(L'<> si trova in %s, linea %d.)" #: sphinx/ext/todo.py:141 msgid "original entry" @@ -699,9 +699,7 @@ msgstr "Ultimo aggiornamento %(last_updated)s." msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" -"Creato con Sphinx " -"%(sphinx_version)s." +msgstr "Creato con Sphinx %(sphinx_version)s." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -728,9 +726,7 @@ msgstr "capitolo successivo" msgid "" "Please activate JavaScript to enable the search\n" " functionality." -msgstr "" -"Attiva JavaScript per abilitare la funzione⏎\n" -"di ricerca." +msgstr "Attiva JavaScript per abilitare la funzione⏎\ndi ricerca." #: sphinx/themes/basic/search.html:32 msgid "" @@ -738,32 +734,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 "" -"Puoi effettuare una ricerca in questi documenti. Immetti le parole chiave" -" \n" -" della tua ricerca nel riquadro sottostante \"cerca\". Nota che la " -"funzione\n" -" di ricerca cerca automaticamente per tutte le parole. Le pagine\n" -" che contendono meno parole non compariranno nei risultati di ricerca." +msgstr "Puoi effettuare una ricerca in questi documenti. Immetti le parole chiave \n della tua ricerca nel riquadro sottostante \"cerca\". Nota che la funzione\n 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:39 sphinx/themes/basic/searchresults.html:17 +#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "cerca" -#: 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:282 msgid "Search Results" msgstr "Risultati della ricerca" -#: 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:284 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 "" -"La tua ricerca non corrisponde a nessun documento. Verifica che tutte le " -"parole siano scritte correttamente e di aver scelto un numero sufficiente" -" di categorie." +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "La tua ricerca non corrisponde a nessun documento. Verifica che tutte le parole siano scritte correttamente e di aver scelto un numero sufficiente di categorie." #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -854,7 +844,7 @@ msgstr "Link a questa immagine" #: sphinx/writers/html.py:355 msgid "Permalink to this toctree" -msgstr "" +msgstr "Link a questo indice" #: sphinx/writers/html.py:677 msgid "Permalink to this table" @@ -865,9 +855,8 @@ msgid "Release" msgstr "Release" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "Pericolo" +msgstr "pagina" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -890,13 +879,3 @@ msgstr "[immagine: %s]" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[immagine]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%d %B %Y" - -#~ msgid "%b %d, %Y" -#~ msgstr "%d/%b/%Y" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "Inserisci un termine di ricerca un modulo, classe o nome di funzione" - diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.js b/sphinx/locale/ja/LC_MESSAGES/sphinx.js index 91e4b9674..daa56988f 100644 --- a/sphinx/locale/ja/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ja/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "ja", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", in ", "About these documents": "\u3053\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u3064\u3044\u3066", "Automatically generated list of changes in version %(version)s": "\u30d0\u30fc\u30b8\u30e7\u30f3 %(version)s \u306e\u5909\u66f4\u70b9\uff08\u3053\u306e\u30ea\u30b9\u30c8\u306f\u81ea\u52d5\u751f\u6210\u3055\u308c\u3066\u3044\u307e\u3059\uff09", "C API changes": "C API \u306b\u95a2\u3059\u308b\u5909\u66f4", "Changes in Version %(version)s — %(docstitle)s": "\u30d0\u30fc\u30b8\u30e7\u30f3 %(version)s \u306e\u5909\u66f4\u70b9 — %(docstitle)s", "Collapse sidebar": "\u30b5\u30a4\u30c9\u30d0\u30fc\u3092\u305f\u305f\u3080", "Complete Table of Contents": "\u7dcf\u5408\u76ee\u6b21", "Contents": "\u30b3\u30f3\u30c6\u30f3\u30c4", "Copyright": "\u8457\u4f5c\u6a29", "Created using Sphinx %(sphinx_version)s.": "\u3053\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306f Sphinx %(sphinx_version)s \u3067\u751f\u6210\u3057\u307e\u3057\u305f\u3002", "Enter search terms or a module, class or function name.": "\u30e2\u30b8\u30e5\u30fc\u30eb\u3001\u30af\u30e9\u30b9\u3001\u307e\u305f\u306f\u95a2\u6570\u540d\u3092\u5165\u529b\u3057\u3066\u304f\u3060\u3055\u3044", "Expand sidebar": "\u30b5\u30a4\u30c9\u30d0\u30fc\u3092\u5c55\u958b", "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.": "\u3053\u306e\u30da\u30fc\u30b8\u304b\u3089\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u691c\u7d22\u3067\u304d\u307e\u3059\u3002\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u4e0b\u306e\u30dc\u30c3\u30af\u30b9\u306b\u5165\u529b\u3057\u3066\u3001\u300c\u691c\u7d22\u300d\u3092\u30af\u30ea\u30c3\u30af\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u5165\u529b\u3055\u308c\u305f\u5168\u3066\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u542b\u3080\u30da\u30fc\u30b8\u304c\u691c\u7d22\u3055\u308c\u307e\u3059\u3002\u4e00\u90e8\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3057\u304b\u542b\u307e\u306a\u3044\u30da\u30fc\u30b8\u306f\u691c\u7d22\u7d50\u679c\u306b\u8868\u793a\u3055\u308c\u306a\u3044\u306e\u3067\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Full index on one page": "\u7dcf\u7d22\u5f15", "General Index": "\u7dcf\u5408\u7d22\u5f15", "Global Module Index": "\u30e2\u30b8\u30e5\u30fc\u30eb\u7dcf\u7d22\u5f15", "Go": "\u691c\u7d22", "Hide Search Matches": "\u691c\u7d22\u7d50\u679c\u3092\u96a0\u3059", "Index": "\u7d22\u5f15", "Index – %(key)s": "\u7d22\u5f15 – %(key)s", "Index pages by letter": "\u982d\u6587\u5b57\u5225\u7d22\u5f15", "Indices and tables:": "\u7d22\u5f15\u3068\u8868\u4e00\u89a7:", "Last updated on %(last_updated)s.": "\u6700\u7d42\u66f4\u65b0: %(last_updated)s", "Library changes": "\u30e9\u30a4\u30d6\u30e9\u30ea\u306b\u95a2\u3059\u308b\u5909\u66f4", "Navigation": "\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3", "Next topic": "\u6b21\u306e\u30c8\u30d4\u30c3\u30af\u3078", "Other changes": "\u305d\u306e\u4ed6\u306e\u5909\u66f4", "Overview": "\u6982\u8981", "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", "Please activate JavaScript to enable the search\n functionality.": "\u691c\u7d22\u6a5f\u80fd\u3092\u4f7f\u3046\u306b\u306f JavaScript \u3092\u6709\u52b9\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Preparing search...": "\u691c\u7d22\u3092\u6e96\u5099\u3057\u3066\u3044\u307e\u3059...", "Previous topic": "\u524d\u306e\u30c8\u30d4\u30c3\u30af\u3078", "Quick search": "\u30af\u30a4\u30c3\u30af\u691c\u7d22", "Search": "\u691c\u7d22", "Search Page": "\u691c\u7d22\u30da\u30fc\u30b8", "Search Results": "\u691c\u7d22\u7d50\u679c", "Search finished, found %s page(s) matching the search query.": "\u691c\u7d22\u304c\u5b8c\u4e86\u3057\u3001 %s \u30da\u30fc\u30b8\u898b\u3064\u3051\u307e\u3057\u305f\u3002", "Search within %(docstitle)s": "%(docstitle)s \u5185\u3092\u691c\u7d22", "Searching": "\u691c\u7d22\u4e2d", "Show Source": "\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u8868\u793a", "Table Of Contents": "\u76ee\u6b21", "This Page": "\u3053\u306e\u30da\u30fc\u30b8", "Welcome! This is": "Welcome! This is", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "\u691c\u7d22\u3057\u305f\u6587\u5b57\u5217\u306f\u3069\u306e\u6587\u66f8\u306b\u3082\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u3059\u3079\u3066\u306e\u5358\u8a9e\u304c\u6b63\u78ba\u306b\u8a18\u8ff0\u3055\u308c\u3066\u3044\u308b\u304b\u3001\u3042\u308b\u3044\u306f\u3001\u5341\u5206\u306a\u30ab\u30c6\u30b4\u30ea\u30fc\u304c\u9078\u629e\u3055\u308c\u3066\u3044\u308b\u304b\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "all functions, classes, terms": "\u95a2\u6570\u3001\u30af\u30e9\u30b9\u304a\u3088\u3073\u7528\u8a9e\u7dcf\u89a7", "can be huge": "\u5927\u304d\u3044\u5834\u5408\u304c\u3042\u308b\u306e\u3067\u6ce8\u610f", "last updated": "\u6700\u7d42\u66f4\u65b0", "lists all sections and subsections": "\u7ae0\uff0f\u7bc0\u4e00\u89a7", "next chapter": "\u6b21\u306e\u7ae0\u3078", "previous chapter": "\u524d\u306e\u7ae0\u3078", "quick access to all modules": "\u5168\u30e2\u30b8\u30e5\u30fc\u30eb\u65e9\u898b\u8868", "search": "\u691c\u7d22", "search this documentation": "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u691c\u7d22", "the documentation for": "the documentation for"}, "plural_expr": "0"}); \ No newline at end of file +Documentation.addTranslations({"locale": "ja", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", in ", "About these documents": "\u3053\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306b\u3064\u3044\u3066", "Automatically generated list of changes in version %(version)s": "\u30d0\u30fc\u30b8\u30e7\u30f3 %(version)s \u306e\u5909\u66f4\u70b9\uff08\u3053\u306e\u30ea\u30b9\u30c8\u306f\u81ea\u52d5\u751f\u6210\u3055\u308c\u3066\u3044\u307e\u3059\uff09", "C API changes": "C API \u306b\u95a2\u3059\u308b\u5909\u66f4", "Changes in Version %(version)s — %(docstitle)s": "\u30d0\u30fc\u30b8\u30e7\u30f3 %(version)s \u306e\u5909\u66f4\u70b9 — %(docstitle)s", "Collapse sidebar": "\u30b5\u30a4\u30c9\u30d0\u30fc\u3092\u305f\u305f\u3080", "Complete Table of Contents": "\u7dcf\u5408\u76ee\u6b21", "Contents": "\u30b3\u30f3\u30c6\u30f3\u30c4", "Copyright": "\u8457\u4f5c\u6a29", "Created using Sphinx %(sphinx_version)s.": "\u3053\u306e\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u306f Sphinx %(sphinx_version)s \u3067\u751f\u6210\u3057\u307e\u3057\u305f\u3002", "Expand sidebar": "\u30b5\u30a4\u30c9\u30d0\u30fc\u3092\u5c55\u958b", "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.": "\u3053\u306e\u30da\u30fc\u30b8\u304b\u3089\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u691c\u7d22\u3067\u304d\u307e\u3059\u3002\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u4e0b\u306e\u30dc\u30c3\u30af\u30b9\u306b\u5165\u529b\u3057\u3066\u3001\u300c\u691c\u7d22\u300d\u3092\u30af\u30ea\u30c3\u30af\u3057\u3066\u304f\u3060\u3055\u3044\u3002\u5165\u529b\u3055\u308c\u305f\u5168\u3066\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3092\u542b\u3080\u30da\u30fc\u30b8\u304c\u691c\u7d22\u3055\u308c\u307e\u3059\u3002\u4e00\u90e8\u306e\u30ad\u30fc\u30ef\u30fc\u30c9\u3057\u304b\u542b\u307e\u306a\u3044\u30da\u30fc\u30b8\u306f\u691c\u7d22\u7d50\u679c\u306b\u8868\u793a\u3055\u308c\u306a\u3044\u306e\u3067\u6ce8\u610f\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Full index on one page": "\u7dcf\u7d22\u5f15", "General Index": "\u7dcf\u5408\u7d22\u5f15", "Global Module Index": "\u30e2\u30b8\u30e5\u30fc\u30eb\u7dcf\u7d22\u5f15", "Go": "\u691c\u7d22", "Hide Search Matches": "\u691c\u7d22\u7d50\u679c\u3092\u96a0\u3059", "Index": "\u7d22\u5f15", "Index – %(key)s": "\u7d22\u5f15 – %(key)s", "Index pages by letter": "\u982d\u6587\u5b57\u5225\u7d22\u5f15", "Indices and tables:": "\u7d22\u5f15\u3068\u8868\u4e00\u89a7:", "Last updated on %(last_updated)s.": "\u6700\u7d42\u66f4\u65b0: %(last_updated)s", "Library changes": "\u30e9\u30a4\u30d6\u30e9\u30ea\u306b\u95a2\u3059\u308b\u5909\u66f4", "Navigation": "\u30ca\u30d3\u30b2\u30fc\u30b7\u30e7\u30f3", "Next topic": "\u6b21\u306e\u30c8\u30d4\u30c3\u30af\u3078", "Other changes": "\u305d\u306e\u4ed6\u306e\u5909\u66f4", "Overview": "\u6982\u8981", "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", "Please activate JavaScript to enable the search\n functionality.": "\u691c\u7d22\u6a5f\u80fd\u3092\u4f7f\u3046\u306b\u306f JavaScript \u3092\u6709\u52b9\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "Preparing search...": "\u691c\u7d22\u3092\u6e96\u5099\u3057\u3066\u3044\u307e\u3059...", "Previous topic": "\u524d\u306e\u30c8\u30d4\u30c3\u30af\u3078", "Quick search": "\u30af\u30a4\u30c3\u30af\u691c\u7d22", "Search": "\u691c\u7d22", "Search Page": "\u691c\u7d22\u30da\u30fc\u30b8", "Search Results": "\u691c\u7d22\u7d50\u679c", "Search finished, found %s page(s) matching the search query.": "\u691c\u7d22\u304c\u5b8c\u4e86\u3057\u3001 %s \u30da\u30fc\u30b8\u898b\u3064\u3051\u307e\u3057\u305f\u3002", "Search within %(docstitle)s": "%(docstitle)s \u5185\u3092\u691c\u7d22", "Searching": "\u691c\u7d22\u4e2d", "Show Source": "\u30bd\u30fc\u30b9\u30b3\u30fc\u30c9\u3092\u8868\u793a", "Table Of Contents": "\u76ee\u6b21", "This Page": "\u3053\u306e\u30da\u30fc\u30b8", "Welcome! This is": "Welcome! This is", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "\u691c\u7d22\u3057\u305f\u6587\u5b57\u5217\u306f\u3069\u306e\u6587\u66f8\u306b\u3082\u898b\u3064\u304b\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002\u3059\u3079\u3066\u306e\u5358\u8a9e\u304c\u6b63\u78ba\u306b\u8a18\u8ff0\u3055\u308c\u3066\u3044\u308b\u304b\u3001\u3042\u308b\u3044\u306f\u3001\u5341\u5206\u306a\u30ab\u30c6\u30b4\u30ea\u30fc\u304c\u9078\u629e\u3055\u308c\u3066\u3044\u308b\u304b\u78ba\u8a8d\u3057\u3066\u304f\u3060\u3055\u3044\u3002", "all functions, classes, terms": "\u95a2\u6570\u3001\u30af\u30e9\u30b9\u304a\u3088\u3073\u7528\u8a9e\u7dcf\u89a7", "can be huge": "\u5927\u304d\u3044\u5834\u5408\u304c\u3042\u308b\u306e\u3067\u6ce8\u610f", "last updated": "\u6700\u7d42\u66f4\u65b0", "lists all sections and subsections": "\u7ae0\uff0f\u7bc0\u4e00\u89a7", "next chapter": "\u6b21\u306e\u7ae0\u3078", "previous chapter": "\u524d\u306e\u7ae0\u3078", "quick access to all modules": "\u5168\u30e2\u30b8\u30e5\u30fc\u30eb\u65e9\u898b\u8868", "search": "\u691c\u7d22", "search this documentation": "\u30c9\u30ad\u30e5\u30e1\u30f3\u30c8\u3092\u691c\u7d22", "the documentation for": "the documentation for"}, "plural_expr": "0"}); \ 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 c1e2f027f..9f6d4a338 100644 Binary files a/sphinx/locale/ja/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ja/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ja/LC_MESSAGES/sphinx.po b/sphinx/locale/ja/LC_MESSAGES/sphinx.po index db6b725c0..309d6b5f4 100644 --- a/sphinx/locale/ja/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ja/LC_MESSAGES/sphinx.po @@ -1,23 +1,28 @@ -# Japanese translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# WAKAYAMA Shirou , 2013 +# Akitoshi Ohta , 2011 +# Kouhei Sutou , 2011 +# Takayuki Shimizukawa , 2013-2016 +# WAKAYAMA Shirou , 2014 +# Yasushi Masuda , 2008 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:36+0000\n" +"PO-Revision-Date: 2016-03-06 14:18+0000\n" "Last-Translator: Takayuki Shimizukawa \n" -"Language: ja\n" -"Language-Team: Japanese " -"(http://www.transifex.com/projects/p/sphinx-1/language/ja/)\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Language-Team: Japanese (http://www.transifex.com/sphinx-doc/sphinx-1/language/ja/)\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 2.2.0\n" +"Language: ja\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: sphinx/config.py:91 #, python-format @@ -61,7 +66,7 @@ msgstr "Python Enhancement Proposals; PEP %s" #: sphinx/transforms.py:56 sphinx/writers/latex.py:374 #: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222 msgid "MMMM dd, YYYY" -msgstr "" +msgstr "YYYY年MMMM月dd日" #: sphinx/builders/changes.py:75 msgid "Builtins" @@ -73,7 +78,7 @@ msgstr "モジュールレベル" #: sphinx/builders/html.py:295 msgid "MMM dd, YYYY" -msgstr "" +msgstr "YYYY年MMMM月dd日" #: sphinx/builders/html.py:315 sphinx/themes/basic/defindex.html:30 msgid "General Index" @@ -119,7 +124,7 @@ msgstr "%s %s" #: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605 #: sphinx/domains/python.py:124 msgid "Parameters" -msgstr "パラメタ" +msgstr "パラメータ" #: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614 #: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136 @@ -178,9 +183,8 @@ msgid "variable" msgstr "変数" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "パラメタ" +msgstr "テンプレートパラメータ" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -470,12 +474,11 @@ msgid "Todo" msgstr "課題" #: sphinx/ext/todo.py:129 -#, fuzzy msgid "<>" -msgstr "元のエントリ" +msgstr "<>" #: sphinx/ext/todo.py:132 -#, fuzzy, python-format +#, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<<元のエントリ>> は、 %s の %d 行目です)" @@ -699,9 +702,7 @@ msgstr "最終更新: %(last_updated)s" msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" -"このドキュメントは Sphinx " -"%(sphinx_version)s で生成しました。" +msgstr "このドキュメントは Sphinx %(sphinx_version)s で生成しました。" #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -738,20 +739,23 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "このページからドキュメントを検索できます。キーワードを下のボックスに入力して、「検索」をクリックしてください。入力された全てのキーワードを含むページが検索されます。一部のキーワードしか含まないページは検索結果に表示されないので注意してください。" -#: 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 "検索" -#: 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:282 msgid "Search Results" msgstr "検索結果" -#: 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:284 msgid "" -"Your search did not match any documents. Please make sure that all words " -"are spelled correctly and that you've selected enough categories." +"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 @@ -854,9 +858,8 @@ msgid "Release" msgstr "リリース" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "危険" +msgstr "ページ" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -879,13 +882,3 @@ msgstr "[画像: %s]" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[画像]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%Y 年 %m 月 %d 日" - -#~ msgid "%b %d, %Y" -#~ msgstr "%Y 年 %m 月 %d 日" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "モジュール、クラス、または関数名を入力してください" - diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.js b/sphinx/locale/ko/LC_MESSAGES/sphinx.js index b1d22733f..dc084521d 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "ko", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "\uc774 \ubb38\uc11c \uc815\ubcf4", "Automatically generated list of changes in version %(version)s": "\ubc84\uc804 %(version)s\uc758 \ubcc0\uacbd \uc0ac\ud56d (\uc774 \ubaa9\ub85d\uc740 \uc790\ub3d9\uc73c\ub85c \uc0dd\uc131\ud569\ub2c8\ub2e4)", "C API changes": "C API\uc5d0 \ub300\ud55c \ubcc0\uacbd", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "\uc0ac\uc774\ub4dc\ubc14 \ub2eb\uae30", "Complete Table of Contents": "\uc885\ud569 \ubaa9\ucc28", "Contents": "\ub0b4\uc6a9", "Copyright": "\uc800\uc791\uad8c", "Created using Sphinx %(sphinx_version)s.": "", "Enter search terms or a module, class or function name.": "\ubaa8\ub4c8, \ud074\ub798\uc2a4 \ub610\ub294 \ud568\uc218 \uc774\ub984\uc744 \uc785\ub825\ud558\uc2ed\uc2dc\uc624.", "Expand sidebar": "\uc0ac\uc774\ub4dc\ubc14 \uc5f4\uae30", "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.": "", "Full index on one page": "\uc77c\ubc18 \uc0c9\uc778", "General Index": "\uc804\uccb4 \uc0c9\uc778", "Global Module Index": "\ubaa8\ub4c8 \ucd1d \uc0c9\uc778", "Go": "\ubc14\ub85c \uac00\uae30", "Hide Search Matches": "\uac80\uc0c9 \uacb0\uacfc \uc228\uae30\uae30", "Index": "\uc0c9\uc778", "Index – %(key)s": "", "Index pages by letter": "\uc54c\ud30c\ubcb3\ubcc4 \uc0c9\uc778", "Indices and tables:": "\uc0c9\uc778 \ubc0f \ud45c \ubaa9\ub85d:", "Last updated on %(last_updated)s.": "\ucd5c\uc885 \uc5c5\ub370\uc774\ud2b8: %(last_updated)s", "Library changes": "\ub77c\uc774\ube0c\ub7ec\ub9ac\uc5d0 \ub300\ud55c \ubcc0\uacbd", "Navigation": "\ud0d0\uc0c9", "Next topic": "\ub2e4\uc74c \ud56d\ubaa9", "Other changes": "\ub2e4\ub978 \ubcc0\uacbd \uc0ac\ud56d", "Overview": "\uac1c\uc694", "Permalink to this definition": "\uc815\uc758 \uc8fc\uc18c", "Permalink to this headline": "\uc81c\ubaa9 \uc8fc\uc18c", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "", "Previous topic": "\uc774\uc804 \ud56d\ubaa9", "Quick search": "\ube60\ub978 \uac80\uc0c9", "Search": "\uac80\uc0c9", "Search Page": "\uac80\uc0c9 \ud398\uc774\uc9c0", "Search Results": "\uac80\uc0c9 \uacb0\uacfc", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "%(docstitle)s\uc5d0\uc11c \ucc3e\uae30", "Searching": "", "Show Source": "\uc18c\uc2a4 \ucf54\ub4dc\ub97c \ubcf4\ub824\uba74", "Table Of Contents": "\ubaa9\ucc28", "This Page": "\ud604\uc7ac \ubb38\uc11c", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "\ud568\uc218, \ud074\ub798\uc2a4 \ubc0f \uc6a9\uc5b4 \uac1c\uad00", "can be huge": "\ud070 \uacbd\uc6b0\uac00 \uc788\uc73c\ubbc0\ub85c \uc8fc\uc758", "last updated": "", "lists all sections and subsections": "\uc601\uc5ed\ubcc4 \ubaa9\ucc28", "next chapter": "\ub2e4\uc74c \uc7a5", "previous chapter": "\uc774\uc804 \uc7a5", "quick access to all modules": "\ubaa8\ub4e0 \ubaa8\ub4c8 \uc870\uacac\ud45c", "search": "\uac80\uc0c9", "search this documentation": "\ubb38\uc11c \uac80\uc0c9", "the documentation for": ""}, "plural_expr": "0"}); \ No newline at end of file +Documentation.addTranslations({"locale": "ko", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "\uc774 \ubb38\uc11c \uc815\ubcf4", "Automatically generated list of changes in version %(version)s": "\ubc84\uc804 %(version)s\uc758 \ubcc0\uacbd \uc0ac\ud56d (\uc774 \ubaa9\ub85d\uc740 \uc790\ub3d9\uc73c\ub85c \uc0dd\uc131\ud569\ub2c8\ub2e4)", "C API changes": "C API\uc5d0 \ub300\ud55c \ubcc0\uacbd", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "\uc0ac\uc774\ub4dc\ubc14 \ub2eb\uae30", "Complete Table of Contents": "\uc885\ud569 \ubaa9\ucc28", "Contents": "\ub0b4\uc6a9", "Copyright": "\uc800\uc791\uad8c", "Created using Sphinx %(sphinx_version)s.": "", "Expand sidebar": "\uc0ac\uc774\ub4dc\ubc14 \uc5f4\uae30", "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.": "", "Full index on one page": "\uc77c\ubc18 \uc0c9\uc778", "General Index": "\uc804\uccb4 \uc0c9\uc778", "Global Module Index": "\ubaa8\ub4c8 \ucd1d \uc0c9\uc778", "Go": "\ubc14\ub85c \uac00\uae30", "Hide Search Matches": "\uac80\uc0c9 \uacb0\uacfc \uc228\uae30\uae30", "Index": "\uc0c9\uc778", "Index – %(key)s": "", "Index pages by letter": "\uc54c\ud30c\ubcb3\ubcc4 \uc0c9\uc778", "Indices and tables:": "\uc0c9\uc778 \ubc0f \ud45c \ubaa9\ub85d:", "Last updated on %(last_updated)s.": "\ucd5c\uc885 \uc5c5\ub370\uc774\ud2b8: %(last_updated)s", "Library changes": "\ub77c\uc774\ube0c\ub7ec\ub9ac\uc5d0 \ub300\ud55c \ubcc0\uacbd", "Navigation": "\ud0d0\uc0c9", "Next topic": "\ub2e4\uc74c \ud56d\ubaa9", "Other changes": "\ub2e4\ub978 \ubcc0\uacbd \uc0ac\ud56d", "Overview": "\uac1c\uc694", "Permalink to this definition": "\uc815\uc758 \uc8fc\uc18c", "Permalink to this headline": "\uc81c\ubaa9 \uc8fc\uc18c", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "", "Previous topic": "\uc774\uc804 \ud56d\ubaa9", "Quick search": "\ube60\ub978 \uac80\uc0c9", "Search": "\uac80\uc0c9", "Search Page": "\uac80\uc0c9 \ud398\uc774\uc9c0", "Search Results": "\uac80\uc0c9 \uacb0\uacfc", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "%(docstitle)s\uc5d0\uc11c \ucc3e\uae30", "Searching": "", "Show Source": "\uc18c\uc2a4 \ucf54\ub4dc\ub97c \ubcf4\ub824\uba74", "Table Of Contents": "\ubaa9\ucc28", "This Page": "\ud604\uc7ac \ubb38\uc11c", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "\ud568\uc218, \ud074\ub798\uc2a4 \ubc0f \uc6a9\uc5b4 \uac1c\uad00", "can be huge": "\ud070 \uacbd\uc6b0\uac00 \uc788\uc73c\ubbc0\ub85c \uc8fc\uc758", "last updated": "", "lists all sections and subsections": "\uc601\uc5ed\ubcc4 \ubaa9\ucc28", "next chapter": "\ub2e4\uc74c \uc7a5", "previous chapter": "\uc774\uc804 \uc7a5", "quick access to all modules": "\ubaa8\ub4e0 \ubaa8\ub4c8 \uc870\uacac\ud45c", "search": "\uac80\uc0c9", "search this documentation": "\ubb38\uc11c \uac80\uc0c9", "the documentation for": ""}, "plural_expr": "0"}); \ 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 c90a6e1bb..1afb4a7c0 100644 Binary files a/sphinx/locale/ko/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ko/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ko/LC_MESSAGES/sphinx.po b/sphinx/locale/ko/LC_MESSAGES/sphinx.po index 92b16af90..e349b747c 100644 --- a/sphinx/locale/ko/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ko/LC_MESSAGES/sphinx.po @@ -1,23 +1,22 @@ -# Korean translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" "Last-Translator: Takayuki Shimizukawa \n" -"Language: ko\n" -"Language-Team: Korean " -"(http://www.transifex.com/projects/p/sphinx-1/language/ko/)\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Language-Team: Korean (http://www.transifex.com/sphinx-doc/sphinx-1/language/ko/)\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 2.2.0\n" +"Language: ko\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: sphinx/config.py:91 #, python-format @@ -178,9 +177,8 @@ msgid "variable" msgstr "변수" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "매개 변수" +msgstr "" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -470,9 +468,8 @@ msgid "Todo" msgstr "과제" #: sphinx/ext/todo.py:129 -#, fuzzy msgid "<>" -msgstr "원래 항목" +msgstr "" #: sphinx/ext/todo.py:132 #, python-format @@ -736,20 +733,23 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: 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 "검색" -#: 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:282 msgid "Search Results" msgstr "검색 결과" -#: 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:284 msgid "" -"Your search did not match any documents. Please make sure that all words " -"are spelled correctly and that you've selected enough categories." +"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 @@ -852,9 +852,8 @@ msgid "Release" msgstr "출시" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "위험" +msgstr "" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -877,16 +876,3 @@ msgstr "" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[그림]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%Y년 %m월 %d일" - -#~ msgid "%b %d, %Y" -#~ msgstr "%Y년 %m월 %d일" - -#~ msgid "(The <> is located in %s, line %d.)" -#~ msgstr "" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "모듈, 클래스 또는 함수 이름을 입력하십시오." - diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.js b/sphinx/locale/lt/LC_MESSAGES/sphinx.js index f98ae45d5..23dbdc7e6 100644 --- a/sphinx/locale/lt/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/lt/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "lt", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Autoriaus teis\u0117s %(copyright)s.", "© Copyright %(copyright)s.": "© Autoriaus teis\u0117s %(copyright)s.", ", in ": "", "About these documents": "Apie \u0161iuos dokumentus", "Automatically generated list of changes in version %(version)s": "Automati\u0161kai sugeneruotas pakeitim\u0173 %(version)s versijoje s\u0105ra\u0161as", "C API changes": "C API pakeitimai", "Changes in Version %(version)s — %(docstitle)s": "Pasikeitimai versijoje %(version)s — %(docstitle)s", "Collapse sidebar": "Pasl\u0117pti \u0161onin\u0119 juost\u0105", "Complete Table of Contents": "Pilnas Turinys", "Contents": "Turinys", "Copyright": "Autoriaus teis\u0117s", "Created using Sphinx %(sphinx_version)s.": "Sukurta naudojant Sphinx %(sphinx_version)s.", "Enter search terms or a module, class or function name.": "\u012eveskite paie\u0161kos termin\u0105 arba modulio, klas\u0117s ar funkcijos vard\u0105.", "Expand sidebar": "I\u0161pl\u0117sti \u0161onin\u0119 juost\u0105", "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.": "\u010cia j\u016bs galite ie\u0161koti \u0161iuose dokumentuose. \u012eveskite savo paie\u0161kos\n \u017eod\u017eius \u012f lauk\u0105 apa\u010dioje ir paspauskite \"ie\u0161koti\". Pasteb\u0117sime, kad paie\u0161kos\n funkcija automati\u0161kai ie\u0161kos vis\u0173 \u017eod\u017ei\u0173. Puslapiai,\n kuriuose yra ma\u017eiau \u017eod\u017ei\u0173 nepasirodys tarp paie\u0161kos rezultat\u0173.", "Full index on one page": "Pilnas indeksas viename puslapyje", "General Index": "Bendras indeksas", "Global Module Index": "Globalus Modulio Indeksas", "Go": "Pirmyn", "Hide Search Matches": "Pasl\u0117pti paie\u0161kos rezultatus", "Index": "Indeksas", "Index – %(key)s": "Indeksas – %(key)s", "Index pages by letter": "Indekso puslapiai pagal raid\u0119", "Indices and tables:": "Indeksai ir lentel\u0117s:", "Last updated on %(last_updated)s.": "Paskutinis atnaujinimas %(last_updated)s.", "Library changes": "Bibliotekos pakeitimai", "Navigation": "Navigacija", "Next topic": "Kita tema", "Other changes": "Kiti pakeitimai", "Overview": "Ap\u017evalga", "Permalink to this definition": "Nuoroda \u012f \u0161\u012f apibr\u0117\u017eim\u0105", "Permalink to this headline": "Nuoroda \u012f \u0161i\u0105 antra\u0161t\u0119", "Please activate JavaScript to enable the search\n functionality.": "Pra\u0161ome aktyvuoti JavaScript, kad veikt\u0173 paie\u0161kos\n funkcionalumas.", "Preparing search...": "", "Previous topic": "Praeita tema", "Quick search": "Greitoji paie\u0161ka", "Search": "Paie\u0161ka", "Search Page": "Paie\u0161kos puslapis", "Search Results": "Paie\u0161kos rezultatai", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "Ie\u0161koti tarp %(docstitle)s", "Searching": "", "Show Source": "Rodyti pirmin\u012f kod\u0105", "Table Of Contents": "Turinys", "This Page": "\u0160is puslapis", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "visos funkcijos, klas\u0117s ir terminai", "can be huge": "gali b\u016bti didelis", "last updated": "", "lists all sections and subsections": "sura\u0161yti visus skyrius ir poskyrius", "next chapter": "kita dalis", "previous chapter": "praeita dalis", "quick access to all modules": "greitas vis\u0173 moduli\u0173 pasiekimas", "search": "ie\u0161koti", "search this documentation": "ie\u0161koti \u0161iame dokumente", "the documentation for": ""}, "plural_expr": "(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)"}); \ No newline at end of file +Documentation.addTranslations({"locale": "lt", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Autoriaus teis\u0117s %(copyright)s.", "© Copyright %(copyright)s.": "© Autoriaus teis\u0117s %(copyright)s.", ", in ": "", "About these documents": "Apie \u0161iuos dokumentus", "Automatically generated list of changes in version %(version)s": "Automati\u0161kai sugeneruotas pakeitim\u0173 %(version)s versijoje s\u0105ra\u0161as", "C API changes": "C API pakeitimai", "Changes in Version %(version)s — %(docstitle)s": "Pasikeitimai versijoje %(version)s — %(docstitle)s", "Collapse sidebar": "Pasl\u0117pti \u0161onin\u0119 juost\u0105", "Complete Table of Contents": "Pilnas Turinys", "Contents": "Turinys", "Copyright": "Autoriaus teis\u0117s", "Created using Sphinx %(sphinx_version)s.": "Sukurta naudojant Sphinx %(sphinx_version)s.", "Expand sidebar": "I\u0161pl\u0117sti \u0161onin\u0119 juost\u0105", "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.": "\u010cia j\u016bs galite ie\u0161koti \u0161iuose dokumentuose. \u012eveskite savo paie\u0161kos\n \u017eod\u017eius \u012f lauk\u0105 apa\u010dioje ir paspauskite \"ie\u0161koti\". Pasteb\u0117sime, kad paie\u0161kos\n funkcija automati\u0161kai ie\u0161kos vis\u0173 \u017eod\u017ei\u0173. Puslapiai,\n kuriuose yra ma\u017eiau \u017eod\u017ei\u0173 nepasirodys tarp paie\u0161kos rezultat\u0173.", "Full index on one page": "Pilnas indeksas viename puslapyje", "General Index": "Bendras indeksas", "Global Module Index": "Globalus Modulio Indeksas", "Go": "Pirmyn", "Hide Search Matches": "Pasl\u0117pti paie\u0161kos rezultatus", "Index": "Indeksas", "Index – %(key)s": "Indeksas – %(key)s", "Index pages by letter": "Indekso puslapiai pagal raid\u0119", "Indices and tables:": "Indeksai ir lentel\u0117s:", "Last updated on %(last_updated)s.": "Paskutinis atnaujinimas %(last_updated)s.", "Library changes": "Bibliotekos pakeitimai", "Navigation": "Navigacija", "Next topic": "Kita tema", "Other changes": "Kiti pakeitimai", "Overview": "Ap\u017evalga", "Permalink to this definition": "Nuoroda \u012f \u0161\u012f apibr\u0117\u017eim\u0105", "Permalink to this headline": "Nuoroda \u012f \u0161i\u0105 antra\u0161t\u0119", "Please activate JavaScript to enable the search\n functionality.": "Pra\u0161ome aktyvuoti JavaScript, kad veikt\u0173 paie\u0161kos\n funkcionalumas.", "Preparing search...": "", "Previous topic": "Praeita tema", "Quick search": "Greitoji paie\u0161ka", "Search": "Paie\u0161ka", "Search Page": "Paie\u0161kos puslapis", "Search Results": "Paie\u0161kos rezultatai", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "Ie\u0161koti tarp %(docstitle)s", "Searching": "", "Show Source": "Rodyti pirmin\u012f kod\u0105", "Table Of Contents": "Turinys", "This Page": "\u0160is puslapis", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "visos funkcijos, klas\u0117s ir terminai", "can be huge": "gali b\u016bti didelis", "last updated": "", "lists all sections and subsections": "sura\u0161yti visus skyrius ir poskyrius", "next chapter": "kita dalis", "previous chapter": "praeita dalis", "quick access to all modules": "greitas vis\u0173 moduli\u0173 pasiekimas", "search": "ie\u0161koti", "search this documentation": "ie\u0161koti \u0161iame dokumente", "the documentation for": ""}, "plural_expr": "(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2)"}); \ 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 6464f33c0..3131c5fbb 100644 Binary files a/sphinx/locale/lt/LC_MESSAGES/sphinx.mo and b/sphinx/locale/lt/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/lt/LC_MESSAGES/sphinx.po b/sphinx/locale/lt/LC_MESSAGES/sphinx.po index 2537b10b3..fc1d5e155 100644 --- a/sphinx/locale/lt/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lt/LC_MESSAGES/sphinx.po @@ -1,24 +1,23 @@ -# Lithuanian translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# DALIUS DOBRAVOLSKAS , 2010 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" "Last-Translator: Takayuki Shimizukawa \n" -"Language: lt\n" -"Language-Team: Lithuanian " -"(http://www.transifex.com/projects/p/sphinx-1/language/lt/)\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && " -"(n%100<10 || n%100>=20) ? 1 : 2)\n" +"Language-Team: Lithuanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lt/)\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 2.2.0\n" +"Language: lt\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: sphinx/config.py:91 #, python-format @@ -179,9 +178,8 @@ msgid "variable" msgstr "kintamasis" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "Parametrai" +msgstr "" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -471,14 +469,13 @@ msgid "Todo" msgstr "Padaryti" #: sphinx/ext/todo.py:129 -#, fuzzy msgid "<>" -msgstr "originalus įrašas" +msgstr "" #: sphinx/ext/todo.py:132 -#, fuzzy, python-format +#, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "(<> galima rasti %s, eilutėje %d.)" +msgstr "" #: sphinx/ext/todo.py:141 msgid "original entry" @@ -700,9 +697,7 @@ msgstr "Paskutinis atnaujinimas %(last_updated)s." msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" -"Sukurta naudojant Sphinx " -"%(sphinx_version)s." +msgstr "Sukurta naudojant Sphinx %(sphinx_version)s." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -729,9 +724,7 @@ msgstr "kita dalis" msgid "" "Please activate JavaScript to enable the search\n" " functionality." -msgstr "" -"Prašome aktyvuoti JavaScript, kad veiktų paieškos\n" -" funkcionalumas." +msgstr "Prašome aktyvuoti JavaScript, kad veiktų paieškos\n funkcionalumas." #: sphinx/themes/basic/search.html:32 msgid "" @@ -739,27 +732,25 @@ 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 "" -"Čia jūs galite ieškoti šiuose dokumentuose. Įveskite savo paieškos\n" -" žodžius į lauką apačioje ir paspauskite \"ieškoti\". Pastebėsime, kad" -" paieškos\n" -" funkcija automatiškai ieškos visų žodžių. Puslapiai,\n" -" kuriuose yra mažiau žodžių nepasirodys tarp paieškos rezultatų." +msgstr "Čia jūs galite ieškoti šiuose dokumentuose. Įveskite savo paieškos\n žodžius į lauką apačioje ir paspauskite \"ieškoti\". Pastebėsime, kad paieškos\n 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:39 sphinx/themes/basic/searchresults.html:17 +#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "ieškoti" -#: 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:282 msgid "Search Results" msgstr "Paieškos rezultatai" -#: 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:284 msgid "" -"Your search did not match any documents. Please make sure that all words " -"are spelled correctly and that you've selected enough categories." +"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 @@ -862,9 +853,8 @@ msgid "Release" msgstr "Leidimas" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "Pavojinga" +msgstr "" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -887,13 +877,3 @@ msgstr "" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[paveiksliukas]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%Y-%m-%d" - -#~ msgid "%b %d, %Y" -#~ msgstr "%Y-%m-%d" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "Įveskite paieškos terminą arba modulio, klasės ar funkcijos vardą." - diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.js b/sphinx/locale/lv/LC_MESSAGES/sphinx.js index 7c482416c..ef1d6515f 100644 --- a/sphinx/locale/lv/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/lv/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "lv", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": "", "About these documents": "Par \u0161iem dokumentiem", "Automatically generated list of changes in version %(version)s": "Autom\u0101tiski sagatavots izmai\u0146u saraksts versijai %(version)s", "C API changes": "Izmai\u0146as iek\u0161 C API", "Changes in Version %(version)s — %(docstitle)s": "Izmai\u0146as versij\u0101 %(version)s — %(docstitle)s", "Collapse sidebar": "Sav\u0113rst s\u0101njoslu", "Complete Table of Contents": "Pilns saturs", "Contents": "Saturs", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "Sagatavots izmantojot Sphinx %(sphinx_version)s.", "Enter search terms or a module, class or function name.": "Ievadiet mekl\u0113jamus terminus vai modu\u013ca, klases vai funkcijas v\u0101rdu.", "Expand sidebar": "Izplest s\u0101njoslu", "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.": "\u0160eit J\u016bs varat mekl\u0113t \u0161ajos dokumentos. Nor\u0101diet mekl\u0113jamus v\u0101rdus\n ievada lauka un uzklik\u0161\u0137iniet pogu \"mekl\u0113t\". L\u016bdzu iev\u0113rojiet,\n ka mekl\u0113\u0161anas programma atrad\u012bs tikai tos dokumentus, kuros ir\n visi ievad\u012btie v\u0101rdi. Dokumenti, kuros ir tikai da\u013ca no ievad\u012btiem\n v\u0101rdiem, netiks atlas\u012bti.", "Full index on one page": "Pilns indekss vien\u0101 lappus\u0113", "General Index": "Visp\u0101r\u0113js indekss", "Global Module Index": "Visp\u0101r\u0113js modu\u013cu indekss", "Go": "Izpild\u012bt", "Hide Search Matches": "Pasl\u0113pt atlases v\u0101rdus", "Index": "Indekss", "Index – %(key)s": "Indekss – %(key)s", "Index pages by letter": "Lappu\u0161u indekss p\u0113c burtiem", "Indices and tables:": "Indeksi un tabulas:", "Last updated on %(last_updated)s.": "P\u0113d\u0113jas izmai\u0146as %(last_updated)s.", "Library changes": "Bibliot\u0113kas izmai\u0146as", "Navigation": "Navig\u0101cija", "Next topic": "n\u0101ko\u0161a t\u0113ma", "Other changes": "Citas izmai\u0146as", "Overview": "Apskats", "Permalink to this definition": "Past\u0101v\u012bga nor\u0101de uz \u0161o defin\u012bciju", "Permalink to this headline": "Past\u0101v\u012bga nor\u0101de \u0161o virsrakstu", "Please activate JavaScript to enable the search\n functionality.": "Lai iesp\u0113jotu mekl\u0113\u0161anu, l\u016bdzu aktiviz\u0113t JavaScript.", "Preparing search...": "", "Previous topic": "iepriek\u0161\u0113ja t\u0113ma", "Quick search": "\u0100tra mekl\u0113\u0161ana", "Search": "Mekl\u0113t", "Search Page": "Atlases lapa", "Search Results": "Atlases rezult\u0101ti", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "Mekl\u0113t iek\u0161 %(docstitle)s", "Searching": "", "Show Source": "R\u0101d\u012bt izejas tekstu", "Table Of Contents": "Saturs", "This Page": "\u0160\u012b lappuse", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "visas funkcijas, klases un termini", "can be huge": "var b\u016bt milz\u012bgs", "last updated": "", "lists all sections and subsections": "r\u0101da visas sekcijas un apak\u0161sekcijas", "next chapter": "n\u0101ko\u0161a sada\u013ca", "previous chapter": "iepriek\u0161\u0113ja sada\u013ca", "quick access to all modules": "\u0101tra piek\u013cuve visiem moduliem", "search": "mekl\u0113t", "search this documentation": "mekl\u0113t \u0161aj\u0101 dokument\u0101cij\u0101", "the documentation for": ""}, "plural_expr": "(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)"}); \ No newline at end of file +Documentation.addTranslations({"locale": "lv", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": "", "About these documents": "Par \u0161iem dokumentiem", "Automatically generated list of changes in version %(version)s": "Autom\u0101tiski sagatavots izmai\u0146u saraksts versijai %(version)s", "C API changes": "Izmai\u0146as iek\u0161 C API", "Changes in Version %(version)s — %(docstitle)s": "Izmai\u0146as versij\u0101 %(version)s — %(docstitle)s", "Collapse sidebar": "Sav\u0113rst s\u0101njoslu", "Complete Table of Contents": "Pilns saturs", "Contents": "Saturs", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "Sagatavots izmantojot Sphinx %(sphinx_version)s.", "Expand sidebar": "Izplest s\u0101njoslu", "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.": "\u0160eit J\u016bs varat mekl\u0113t \u0161ajos dokumentos. Nor\u0101diet mekl\u0113jamus v\u0101rdus\n ievada lauka un uzklik\u0161\u0137iniet pogu \"mekl\u0113t\". L\u016bdzu iev\u0113rojiet,\n ka mekl\u0113\u0161anas programma atrad\u012bs tikai tos dokumentus, kuros ir\n visi ievad\u012btie v\u0101rdi. Dokumenti, kuros ir tikai da\u013ca no ievad\u012btiem\n v\u0101rdiem, netiks atlas\u012bti.", "Full index on one page": "Pilns indekss vien\u0101 lappus\u0113", "General Index": "Visp\u0101r\u0113js indekss", "Global Module Index": "Visp\u0101r\u0113js modu\u013cu indekss", "Go": "Izpild\u012bt", "Hide Search Matches": "Pasl\u0113pt atlases v\u0101rdus", "Index": "Indekss", "Index – %(key)s": "Indekss – %(key)s", "Index pages by letter": "Lappu\u0161u indekss p\u0113c burtiem", "Indices and tables:": "Indeksi un tabulas:", "Last updated on %(last_updated)s.": "P\u0113d\u0113jas izmai\u0146as %(last_updated)s.", "Library changes": "Bibliot\u0113kas izmai\u0146as", "Navigation": "Navig\u0101cija", "Next topic": "n\u0101ko\u0161a t\u0113ma", "Other changes": "Citas izmai\u0146as", "Overview": "Apskats", "Permalink to this definition": "Past\u0101v\u012bga nor\u0101de uz \u0161o defin\u012bciju", "Permalink to this headline": "Past\u0101v\u012bga nor\u0101de \u0161o virsrakstu", "Please activate JavaScript to enable the search\n functionality.": "Lai iesp\u0113jotu mekl\u0113\u0161anu, l\u016bdzu aktiviz\u0113t JavaScript.", "Preparing search...": "", "Previous topic": "iepriek\u0161\u0113ja t\u0113ma", "Quick search": "\u0100tra mekl\u0113\u0161ana", "Search": "Mekl\u0113t", "Search Page": "Atlases lapa", "Search Results": "Atlases rezult\u0101ti", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "Mekl\u0113t iek\u0161 %(docstitle)s", "Searching": "", "Show Source": "R\u0101d\u012bt izejas tekstu", "Table Of Contents": "Saturs", "This Page": "\u0160\u012b lappuse", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "visas funkcijas, klases un termini", "can be huge": "var b\u016bt milz\u012bgs", "last updated": "", "lists all sections and subsections": "r\u0101da visas sekcijas un apak\u0161sekcijas", "next chapter": "n\u0101ko\u0161a sada\u013ca", "previous chapter": "iepriek\u0161\u0113ja sada\u013ca", "quick access to all modules": "\u0101tra piek\u013cuve visiem moduliem", "search": "mekl\u0113t", "search this documentation": "mekl\u0113t \u0161aj\u0101 dokument\u0101cij\u0101", "the documentation for": ""}, "plural_expr": "(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2)"}); \ 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 a6f69e030..27fc48a1f 100644 Binary files a/sphinx/locale/lv/LC_MESSAGES/sphinx.mo and b/sphinx/locale/lv/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/lv/LC_MESSAGES/sphinx.po b/sphinx/locale/lv/LC_MESSAGES/sphinx.po index d1d9e3621..156c969dd 100644 --- a/sphinx/locale/lv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/lv/LC_MESSAGES/sphinx.po @@ -1,24 +1,22 @@ -# Latvian translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" "Last-Translator: Takayuki Shimizukawa \n" -"Language: lv\n" -"Language-Team: Latvian " -"(http://www.transifex.com/projects/p/sphinx-1/language/lv/)\n" -"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 :" -" 2)\n" +"Language-Team: Latvian (http://www.transifex.com/sphinx-doc/sphinx-1/language/lv/)\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 2.2.0\n" +"Language: lv\n" +"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n != 0 ? 1 : 2);\n" #: sphinx/config.py:91 #, python-format @@ -179,9 +177,8 @@ msgid "variable" msgstr "mainīgais" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "Parametri" +msgstr "" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -471,14 +468,13 @@ msgid "Todo" msgstr "Jāizdara" #: sphinx/ext/todo.py:129 -#, fuzzy msgid "<>" -msgstr "sākotnējs ieraksts" +msgstr "" #: sphinx/ext/todo.py:132 -#, fuzzy, python-format +#, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "(<> atrodas iekš %s, rinda %d.)" +msgstr "" #: sphinx/ext/todo.py:141 msgid "original entry" @@ -700,9 +696,7 @@ msgstr "Pēdējas izmaiņas %(last_updated)s." msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" -"Sagatavots izmantojot Sphinx " -"%(sphinx_version)s." +msgstr "Sagatavots izmantojot Sphinx %(sphinx_version)s." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -737,27 +731,25 @@ 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 "" -"Šeit Jūs varat meklēt šajos dokumentos. Norādiet meklējamus vārdus\n" -" ievada lauka un uzklikšķiniet pogu \"meklēt\". Lūdzu ievērojiet,\n" -" ka meklēšanas programma atradīs tikai tos dokumentus, kuros ir\n" -" visi ievadītie vārdi. Dokumenti, kuros ir tikai daļa no ievadītiem\n" -" vārdiem, netiks atlasīti." +msgstr "Šeit Jūs varat meklēt šajos dokumentos. Norādiet meklējamus vārdus\n ievada lauka un uzklikšķiniet pogu \"meklēt\". Lūdzu ievērojiet,\n ka meklēšanas programma atradīs tikai tos dokumentus, kuros ir\n 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:39 sphinx/themes/basic/searchresults.html:17 +#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "meklēt" -#: 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:282 msgid "Search Results" msgstr "Atlases rezultāti" -#: 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:284 msgid "" -"Your search did not match any documents. Please make sure that all words " -"are spelled correctly and that you've selected enough categories." +"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 @@ -860,9 +852,8 @@ msgid "Release" msgstr "Izlaidums" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "Bīstami" +msgstr "" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -885,13 +876,3 @@ msgstr "[attēls: %s]" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[attēls]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%d.%m.%Y" - -#~ msgid "%b %d, %Y" -#~ msgstr "%d.%m.%Y" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "Ievadiet meklējamus terminus vai moduļa, klases vai funkcijas vārdu." - diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.js b/sphinx/locale/mk/LC_MESSAGES/sphinx.js index cfa5e2c48..1e219a68c 100644 --- a/sphinx/locale/mk/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/mk/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "mk", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "", "Automatically generated list of changes in version %(version)s": "", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "", "Contents": "", "Copyright": "", "Created using Sphinx %(sphinx_version)s.": "", "Enter search terms or a module, class or function name.": "", "Expand sidebar": "", "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.": "", "Full index on one page": "", "General Index": "\u0413\u043b\u0430\u0432\u043d\u0430 \u0441\u043e\u0434\u0440\u0436\u0438\u043d\u0430", "Global Module Index": "", "Go": "", "Hide Search Matches": "", "Index": "", "Index – %(key)s": "", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", "Library changes": "", "Navigation": "", "Next topic": "", "Other changes": "", "Overview": "", "Permalink to this definition": "", "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "", "Previous topic": "", "Quick search": "", "Search": "", "Search Page": "", "Search Results": "", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "", "Show Source": "", "Table Of Contents": "", "This Page": "", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "", "can be huge": "", "last updated": "", "lists all sections and subsections": "", "next chapter": "", "previous chapter": "", "quick access to all modules": "", "search": "", "search this documentation": "", "the documentation for": ""}, "plural_expr": "(n % 10 == 1 && n % 100 != 11) ? 0 : 1"}); \ No newline at end of file +Documentation.addTranslations({"locale": "mk", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "", "Automatically generated list of changes in version %(version)s": "", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "", "Contents": "", "Copyright": "", "Created using Sphinx %(sphinx_version)s.": "", "Expand sidebar": "", "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.": "", "Full index on one page": "", "General Index": "\u0413\u043b\u0430\u0432\u043d\u0430 \u0441\u043e\u0434\u0440\u0436\u0438\u043d\u0430", "Global Module Index": "", "Go": "", "Hide Search Matches": "", "Index": "", "Index – %(key)s": "", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", "Library changes": "", "Navigation": "", "Next topic": "", "Other changes": "", "Overview": "", "Permalink to this definition": "", "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "", "Previous topic": "", "Quick search": "", "Search": "", "Search Page": "", "Search Results": "", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "", "Show Source": "", "Table Of Contents": "", "This Page": "", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "", "can be huge": "", "last updated": "", "lists all sections and subsections": "", "next chapter": "", "previous chapter": "", "quick access to all modules": "", "search": "", "search this documentation": "", "the documentation for": ""}, "plural_expr": "(n % 10 == 1 && n % 100 != 11) ? 0 : 1"}); \ No newline at end of file diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo index 6c5085616..0b810b4ff 100644 Binary files a/sphinx/locale/mk/LC_MESSAGES/sphinx.mo and b/sphinx/locale/mk/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/mk/LC_MESSAGES/sphinx.po b/sphinx/locale/mk/LC_MESSAGES/sphinx.po index 4821d24e4..6c62aecbd 100644 --- a/sphinx/locale/mk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/mk/LC_MESSAGES/sphinx.po @@ -1,23 +1,23 @@ -# Macedonian translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# Vasil Vangelovski , 2013 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" "Last-Translator: Takayuki Shimizukawa \n" -"Language: mk\n" -"Language-Team: Macedonian " -"(http://www.transifex.com/projects/p/sphinx-1/language/mk/)\n" -"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1\n" +"Language-Team: Macedonian (http://www.transifex.com/sphinx-doc/sphinx-1/language/mk/)\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 2.2.0\n" +"Language: mk\n" +"Plural-Forms: nplurals=2; plural=(n % 10 == 1 && n % 100 != 11) ? 0 : 1;\n" #: sphinx/config.py:91 #, python-format @@ -178,9 +178,8 @@ msgid "variable" msgstr "променлива" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "Параметри" +msgstr "" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -735,20 +734,23 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: 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 "" -#: 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:282 msgid "Search Results" msgstr "" -#: 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:284 msgid "" -"Your search did not match any documents. Please make sure that all words " -"are spelled correctly and that you've selected enough categories." +"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 @@ -875,16 +877,3 @@ msgstr "" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "" - -#~ msgid "%B %d, %Y" -#~ msgstr "%d %B, %Y" - -#~ msgid "%b %d, %Y" -#~ msgstr "%d %b, %Y" - -#~ msgid "(The <> is located in %s, line %d.)" -#~ msgstr "" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "" - diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.js b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.js index f2ea84ecb..b17448783 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", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": "", "About these documents": "Om disse dokumenter", "Automatically generated list of changes in version %(version)s": "Automatisk generert liste over endringer i versjon %(version)s", "C API changes": "Endringer i C API", "Changes in Version %(version)s — %(docstitle)s": "Endringer i version %(version)s — %(docstitle)s", "Collapse sidebar": "Skjul sidepanelet", "Complete Table of Contents": "Komplett Innholdsfortegnelse", "Contents": "Innhold", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "Lagd med Sphinx %(sphinx_version)s.", "Enter search terms or a module, class or function name.": "Angi s\u00f8keord eller modul-, klasse- eller funksjonsnavn.", "Expand sidebar": "Utvid sidepanelet", "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.": "her kan du s\u00f8ke blant disse dokumentene. Angi s\u00f8keord nedfor og klikk \"s\u00f8k\".\n S\u00f8ket m\u00e5 treffe p\u00e5 samtlige s\u00f8keord.", "Full index on one page": "Hele innholdsfortegnelsen p\u00e5 en side", "General Index": "Hovedindex", "Global Module Index": "Global Modulindex", "Go": "G\u00e5", "Hide Search Matches": "Skjul s\u00f8keresultat", "Index": "Index", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Innholdsfortegnelse per bokstav", "Indices and tables:": "Index og tabeller", "Last updated on %(last_updated)s.": "Sist oppdatert %(last_updated)s.", "Library changes": "Endringer i biblioteket", "Navigation": "Navigering", "Next topic": "Neste emne", "Other changes": "Andre endringer", "Overview": "Oversikt", "Permalink to this definition": "Permalink til denne definisjonen", "Permalink to this headline": "Permalink til denne oversikten", "Please activate JavaScript to enable the search\n functionality.": "Vennligst aktiver JavaScript for \u00e5 aktivere s\u00f8k.", "Preparing search...": "", "Previous topic": "Forrige tittel", "Quick search": "Hurtigs\u00f8k", "Search": "S\u00f8k", "Search Page": "S\u00f8keside", "Search Results": "S\u00f8keresultat", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "S\u00f8k blant %(docstitle)s", "Searching": "", "Show Source": "Vis kildekode", "Table Of Contents": "Innholdsfortegnelse", "This Page": "Denne siden", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "alla funksjoner, klasser, vilk\u00e5r", "can be huge": "kan bli stor", "last updated": "", "lists all sections and subsections": "liste over alle paragrafer og underparagrafer", "next chapter": "neste kapittel", "previous chapter": "Forrige kapittel", "quick access to all modules": "snarvei til alle moduler", "search": "s\u00f8k", "search this documentation": "s\u00f8k i dette dokumentet", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ No newline at end of file +Documentation.addTranslations({"locale": "nb_NO", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": "", "About these documents": "Om disse dokumenter", "Automatically generated list of changes in version %(version)s": "Automatisk generert liste over endringer i versjon %(version)s", "C API changes": "Endringer i C API", "Changes in Version %(version)s — %(docstitle)s": "Endringer i version %(version)s — %(docstitle)s", "Collapse sidebar": "Skjul sidepanelet", "Complete Table of Contents": "Komplett Innholdsfortegnelse", "Contents": "Innhold", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "Lagd med Sphinx %(sphinx_version)s.", "Expand sidebar": "Utvid sidepanelet", "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.": "her kan du s\u00f8ke blant disse dokumentene. Angi s\u00f8keord nedfor og klikk \"s\u00f8k\".\n S\u00f8ket m\u00e5 treffe p\u00e5 samtlige s\u00f8keord.", "Full index on one page": "Hele innholdsfortegnelsen p\u00e5 en side", "General Index": "Hovedindex", "Global Module Index": "Global Modulindex", "Go": "G\u00e5", "Hide Search Matches": "Skjul s\u00f8keresultat", "Index": "Index", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Innholdsfortegnelse per bokstav", "Indices and tables:": "Index og tabeller", "Last updated on %(last_updated)s.": "Sist oppdatert %(last_updated)s.", "Library changes": "Endringer i biblioteket", "Navigation": "Navigering", "Next topic": "Neste emne", "Other changes": "Andre endringer", "Overview": "Oversikt", "Permalink to this definition": "Permalink til denne definisjonen", "Permalink to this headline": "Permalink til denne oversikten", "Please activate JavaScript to enable the search\n functionality.": "Vennligst aktiver JavaScript for \u00e5 aktivere s\u00f8k.", "Preparing search...": "", "Previous topic": "Forrige tittel", "Quick search": "Hurtigs\u00f8k", "Search": "S\u00f8k", "Search Page": "S\u00f8keside", "Search Results": "S\u00f8keresultat", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "S\u00f8k blant %(docstitle)s", "Searching": "", "Show Source": "Vis kildekode", "Table Of Contents": "Innholdsfortegnelse", "This Page": "Denne siden", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "alla funksjoner, klasser, vilk\u00e5r", "can be huge": "kan bli stor", "last updated": "", "lists all sections and subsections": "liste over alle paragrafer og underparagrafer", "next chapter": "neste kapittel", "previous chapter": "Forrige kapittel", "quick access to all modules": "snarvei til alle moduler", "search": "s\u00f8k", "search this documentation": "s\u00f8k i dette dokumentet", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ 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 1de5deaa3..d2716e6cd 100644 Binary files a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo and b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po index be2fdcecf..0c36c5c47 100644 --- a/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nb_NO/LC_MESSAGES/sphinx.po @@ -1,23 +1,22 @@ -# Norwegian Bokmål (Norway) translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" "Last-Translator: Takayuki Shimizukawa \n" -"Language: nb_NO\n" -"Language-Team: Norwegian Bokmål (Norway) " -"(http://www.transifex.com/projects/p/sphinx-1/language/nb_NO/)\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/sphinx-doc/sphinx-1/language/nb_NO/)\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 2.2.0\n" +"Language: nb_NO\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinx/config.py:91 #, python-format @@ -178,9 +177,8 @@ msgid "variable" msgstr "variabel" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "Parametere" +msgstr "" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -470,14 +468,13 @@ msgid "Todo" msgstr "Todo" #: sphinx/ext/todo.py:129 -#, fuzzy msgid "<>" -msgstr "opprinnelig oppføring" +msgstr "" #: sphinx/ext/todo.py:132 -#, fuzzy, python-format +#, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "(Den <> finnes i %s, på linje %d.)" +msgstr "" #: sphinx/ext/todo.py:141 msgid "original entry" @@ -734,25 +731,25 @@ 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 "" -"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." +msgstr "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:39 sphinx/themes/basic/searchresults.html:17 +#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "søk" -#: 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:282 msgid "Search Results" msgstr "Søkeresultat" -#: 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:284 msgid "" -"Your search did not match any documents. Please make sure that all words " -"are spelled correctly and that you've selected enough categories." +"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 @@ -855,9 +852,8 @@ msgid "Release" msgstr "Utgivelse" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "Fare" +msgstr "" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -880,13 +876,3 @@ msgstr "" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[bilde]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%B %d, %Y" - -#~ msgid "%b %d, %Y" -#~ msgstr "%b %d, %Y" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "Angi søkeord eller modul-, klasse- eller funksjonsnavn." - diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.js b/sphinx/locale/ne/LC_MESSAGES/sphinx.js index bb123eb4e..83b804f29 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ne/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "ne", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": "", "About these documents": "\u092f\u0940 \u0921\u0915\u0941\u092e\u0947\u0928\u094d\u091f\u0939\u0930\u0941\u0915\u094b \u092c\u093e\u0930\u0947\u092e\u093e", "Automatically generated list of changes in version %(version)s": "\u092d\u0930\u094d\u0938\u0928 %(version)s \u092e\u093e \u092d\u090f\u0915\u093e \u092b\u0930\u0915 \u0939\u0930\u0941 \u0906\u092b\u0948 \u091c\u0947\u0928\u0947\u0930\u0947\u091f \u092d\u090f ", "C API changes": "C API \u0915\u093e \u092a\u0930\u093f\u0935\u0930\u094d\u0924\u0928\u0939\u0930\u0941 ", "Changes in Version %(version)s — %(docstitle)s": "%(version)s — %(docstitle)s \u092e\u093e \u092d\u090f\u0915\u093e \u092b\u0930\u0915\u0939\u0930\u0941 ", "Collapse sidebar": "\u0938\u093e\u0907\u0921\u092c\u0930 \u0938\u093e\u0928\u094b \u092c\u0928\u093e\u0909\u0928\u0941\u0939\u094b\u0938\u094d", "Complete Table of Contents": "\u092a\u0941\u0930\u093e \u0935\u093f\u0937\u092f\u0938\u0942\u091a\u0940", "Contents": "\u0935\u093f\u0937\u092f\u0938\u0942\u091a\u0940", "Copyright": "\u0915\u092a\u093f\u0930\u093e\u0907\u091f ", "Created using Sphinx %(sphinx_version)s.": "", "Enter search terms or a module, class or function name.": "\u0916\u094b\u091c\u094d\u0928\u0947 \u091f\u0930\u094d\u092e\u0938\u094d \u0905\u0925\u0935\u093e \u090f\u0915 \u092e\u0921\u0941\u0932\u094d, \u0915\u0915\u094d\u0937\u093e \u0905\u0925\u0935\u093e \u092b\u0928\u094d\u0915\u094d\u0938\u0928\u0915\u094b \u0928\u093e\u092e \u0932\u0947\u0916\u094d\u0928\u0941\u0939\u094b\u0938 ", "Expand sidebar": "\u0938\u093e\u0907\u0921\u092c\u0930 \u0920\u0941\u0932\u094b \u092c\u0928\u093e\u0909\u0928\u0941\u0939\u094b\u0938\u094d", "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.": "\u092f\u0939\u093e\u0901\u092c\u093e\u091f \u0924\u092a\u093e\u0908\u0902\u0932\u0947 \u092f\u0940 \u0921\u094d\u0915\u0941\u092e\u0947\u0928\u094d\u091f\u0939\u0930\u0941 \u0916\u094b\u091c\u094d\u0928\u0938\u0915\u094d\u0928\u0941 \u0939\u0941\u0928\u094d\u091b \u0964 \u0916\u094b\u091c\u094d\u0928 \u0936\u092c\u094d\u0926\u0939\u0930\u0941\n\u0924\u0932\u0915\u094b \u092c\u0915\u094d\u0938\u092e\u093e \u0932\u0947\u0916\u094d\u200d\u0928\u0941\u0939\u094b\u0938 \u0930 \"\u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d\"\u0925\u093f\u091a\u094d\u0928\u0941\u0939\u094b\u0938 \u0964 \u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d\n\u092b\u0928\u094d\u0915\u094d\u0938\u0928\u0932\u0947 \u0906\u092b\u0948 \u0938\u092c\u0948 \u0936\u092c\u094d\u0926\u0939\u0930\u0941 \u0916\u094b\u091c\u094d\u091b \u0964 \n\u0925\u094b\u0930\u0948 \u0936\u092c\u094d\u0926\u0939\u0930\u0941 \u092d\u090f\u0915\u094b \u092a\u093e\u0928\u093e\u0939\u0930\u0941 \u0928\u0924\u093f\u091c\u093e\u092e\u093e \u0926\u0947\u0916\u093f\u0928\u094d\u0928 \u0964 ", "Full index on one page": "\u092a\u0941\u0930\u093e \u0905\u0928\u0941\u0938\u0941\u091a\u0940 \u090f\u0915\u0948 \u092a\u093e\u0928\u093e\u092e\u093e", "General Index": "\u0938\u093e\u092e\u093e\u0928\u094d\u092f \u0905\u0928\u0941\u0938\u0941\u091a\u0940", "Global Module Index": "\u0917\u094d\u0932\u094b\u092c\u0932 \u092e\u0921\u0941\u0932 \u0905\u0928\u0941\u0938\u0941\u091a\u0940", "Go": "\u091c\u093e\u0928\u0941\u0939\u094b\u0938\u094d", "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", "Index": "\u0905\u0928\u0941\u0938\u0941\u091a\u0940", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "\u0905\u0915\u094d\u0937\u0930 \u0905\u0928\u0941\u0938\u093e\u0930 \u0905\u0928\u0941\u0938\u0941\u091a\u0940\u0915\u093e \u092a\u093e\u0928\u093e", "Indices and tables:": "\u0907\u0928\u094d\u0921\u0940\u0938\u0940\u0938\u094d\u0938 \u0930 \u0924\u0932\u093f\u0915\u093e", "Last updated on %(last_updated)s.": "\u092f\u094b \u092d\u0928\u094d\u0926\u093e \u0905\u0917\u093e\u0921\u0940 %(last_updated)s \u092e\u093e \u0905\u092a\u0921\u0947\u091f \u092d\u090f\u0915\u094b", "Library changes": "\u0932\u093e\u0908\u092c\u094d\u0930\u0947\u0930\u0940\u0915\u093e \u092a\u0930\u093f\u0935\u0930\u094d\u0924\u0928\u0939\u0930\u0941", "Navigation": "\u0928\u0947\u092d\u093f\u0917\u0947\u0938\u0928 ", "Next topic": "\u092a\u091b\u093f\u0932\u094d\u0932\u094b \u0935\u093f\u0937\u092f", "Other changes": "\u0905\u0930\u0941 \u092a\u0930\u093f\u0935\u0930\u094d\u0924\u0928\u0939\u0930\u0941 ", "Overview": "\u092a\u0941\u0928\u0930\u093e\u0935\u0932\u094b\u0915\u0928 ", "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 ", "Please activate JavaScript to enable the search\n functionality.": "\u0916\u094b\u091c\u094d\u0928\u0947 \u0915\u093e\u0930\u094d\u092f \u0906\u0917\u093e\u0921\u0940 \u092c\u0922\u093e\u0909\u0928\u0915\u094b \u0932\u093e\u0917\u093f \u091c\u093e\u092d\u093e\u0938\u094d\u0915\u0943\u092a\u094d\u091f \u091a\u0932\u093e\u0908\u0926\u093f\u0928\u0941\u0939\u094b\u0938 ", "Preparing search...": "", "Previous topic": "\u0905\u0918\u093f\u0932\u094d\u0932\u094b \u0935\u093f\u0937\u092f ", "Quick search": "\u091b\u093f\u091f\u094d\u091f\u094b \u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d", "Search": "\u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d ", "Search Page": "\u092a\u093e\u0928\u093e\u092e\u093e \u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d", "Search Results": "\u0916\u094b\u091c\u0947\u0915\u094b \u0928\u0924\u093f\u091c\u093e", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "", "Show Source": "\u0938\u094d\u0930\u094b\u0924 \u0926\u0947\u0916\u093e\u0909\u0928\u0941\u0939\u094b\u0938\u094d ", "Table Of Contents": "\u0935\u093f\u0937\u092f\u0938\u0942\u091a\u0940", "This Page": "\u092f\u094b \u092a\u093e\u0928\u093e", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "\u0938\u092c\u0948 \u092b\u0928\u094d\u0915\u094d\u0938\u0928\u0938\u094d, \u0915\u0915\u094d\u0937\u093e\u0939\u0930\u0942 \u0930 \u091f\u0930\u094d\u092e\u0938\u094d", "can be huge": "\u0927\u0947\u0930\u0948 \u0920\u0941\u0932\u094b \u0939\u0941\u0928 \u0938\u0915\u094d\u091b", "last updated": "", "lists all sections and subsections": "\u0938\u092c\u0948 \u0938\u0947\u0915\u094d\u0938\u0928 \u0930 \u0938\u0935\u0938\u0947\u0915\u094d\u0938\u0928 \u0926\u0947\u0916\u093e\u0909\u0928\u0941\u0939\u094b\u0938\u094d", "next chapter": "\u092a\u091b\u093f\u0932\u094d\u0932\u094b \u0916\u0928\u094d\u0921", "previous chapter": "\u0905\u0918\u093f\u0932\u094d\u0932\u094b \u0916\u0928\u094d\u0921", "quick access to all modules": "\u0938\u092c\u0948 \u092e\u094b\u0926\u0941\u0932\u0947\u0938\u092e\u093e \u091b\u093f\u091f\u0948 \u091c\u093e\u0928\u0941\u0939\u094b\u0938\u094d", "search": "\u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d", "search this documentation": "\u092f\u094b \u0921\u0915\u0941\u092e\u0947\u0928\u094d\u091f \u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ No newline at end of file +Documentation.addTranslations({"locale": "ne", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": "", "About these documents": "\u092f\u0940 \u0921\u0915\u0941\u092e\u0947\u0928\u094d\u091f\u0939\u0930\u0941\u0915\u094b \u092c\u093e\u0930\u0947\u092e\u093e", "Automatically generated list of changes in version %(version)s": "\u092d\u0930\u094d\u0938\u0928 %(version)s \u092e\u093e \u092d\u090f\u0915\u093e \u092b\u0930\u0915 \u0939\u0930\u0941 \u0906\u092b\u0948 \u091c\u0947\u0928\u0947\u0930\u0947\u091f \u092d\u090f ", "C API changes": "C API \u0915\u093e \u092a\u0930\u093f\u0935\u0930\u094d\u0924\u0928\u0939\u0930\u0941 ", "Changes in Version %(version)s — %(docstitle)s": "%(version)s — %(docstitle)s \u092e\u093e \u092d\u090f\u0915\u093e \u092b\u0930\u0915\u0939\u0930\u0941 ", "Collapse sidebar": "\u0938\u093e\u0907\u0921\u092c\u0930 \u0938\u093e\u0928\u094b \u092c\u0928\u093e\u0909\u0928\u0941\u0939\u094b\u0938\u094d", "Complete Table of Contents": "\u092a\u0941\u0930\u093e \u0935\u093f\u0937\u092f\u0938\u0942\u091a\u0940", "Contents": "\u0935\u093f\u0937\u092f\u0938\u0942\u091a\u0940", "Copyright": "\u0915\u092a\u093f\u0930\u093e\u0907\u091f ", "Created using Sphinx %(sphinx_version)s.": "", "Expand sidebar": "\u0938\u093e\u0907\u0921\u092c\u0930 \u0920\u0941\u0932\u094b \u092c\u0928\u093e\u0909\u0928\u0941\u0939\u094b\u0938\u094d", "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.": "\u092f\u0939\u093e\u0901\u092c\u093e\u091f \u0924\u092a\u093e\u0908\u0902\u0932\u0947 \u092f\u0940 \u0921\u094d\u0915\u0941\u092e\u0947\u0928\u094d\u091f\u0939\u0930\u0941 \u0916\u094b\u091c\u094d\u0928\u0938\u0915\u094d\u0928\u0941 \u0939\u0941\u0928\u094d\u091b \u0964 \u0916\u094b\u091c\u094d\u0928 \u0936\u092c\u094d\u0926\u0939\u0930\u0941\n\u0924\u0932\u0915\u094b \u092c\u0915\u094d\u0938\u092e\u093e \u0932\u0947\u0916\u094d\u200d\u0928\u0941\u0939\u094b\u0938 \u0930 \"\u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d\"\u0925\u093f\u091a\u094d\u0928\u0941\u0939\u094b\u0938 \u0964 \u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d\n\u092b\u0928\u094d\u0915\u094d\u0938\u0928\u0932\u0947 \u0906\u092b\u0948 \u0938\u092c\u0948 \u0936\u092c\u094d\u0926\u0939\u0930\u0941 \u0916\u094b\u091c\u094d\u091b \u0964 \n\u0925\u094b\u0930\u0948 \u0936\u092c\u094d\u0926\u0939\u0930\u0941 \u092d\u090f\u0915\u094b \u092a\u093e\u0928\u093e\u0939\u0930\u0941 \u0928\u0924\u093f\u091c\u093e\u092e\u093e \u0926\u0947\u0916\u093f\u0928\u094d\u0928 \u0964 ", "Full index on one page": "\u092a\u0941\u0930\u093e \u0905\u0928\u0941\u0938\u0941\u091a\u0940 \u090f\u0915\u0948 \u092a\u093e\u0928\u093e\u092e\u093e", "General Index": "\u0938\u093e\u092e\u093e\u0928\u094d\u092f \u0905\u0928\u0941\u0938\u0941\u091a\u0940", "Global Module Index": "\u0917\u094d\u0932\u094b\u092c\u0932 \u092e\u0921\u0941\u0932 \u0905\u0928\u0941\u0938\u0941\u091a\u0940", "Go": "\u091c\u093e\u0928\u0941\u0939\u094b\u0938\u094d", "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", "Index": "\u0905\u0928\u0941\u0938\u0941\u091a\u0940", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "\u0905\u0915\u094d\u0937\u0930 \u0905\u0928\u0941\u0938\u093e\u0930 \u0905\u0928\u0941\u0938\u0941\u091a\u0940\u0915\u093e \u092a\u093e\u0928\u093e", "Indices and tables:": "\u0907\u0928\u094d\u0921\u0940\u0938\u0940\u0938\u094d\u0938 \u0930 \u0924\u0932\u093f\u0915\u093e", "Last updated on %(last_updated)s.": "\u092f\u094b \u092d\u0928\u094d\u0926\u093e \u0905\u0917\u093e\u0921\u0940 %(last_updated)s \u092e\u093e \u0905\u092a\u0921\u0947\u091f \u092d\u090f\u0915\u094b", "Library changes": "\u0932\u093e\u0908\u092c\u094d\u0930\u0947\u0930\u0940\u0915\u093e \u092a\u0930\u093f\u0935\u0930\u094d\u0924\u0928\u0939\u0930\u0941", "Navigation": "\u0928\u0947\u092d\u093f\u0917\u0947\u0938\u0928 ", "Next topic": "\u092a\u091b\u093f\u0932\u094d\u0932\u094b \u0935\u093f\u0937\u092f", "Other changes": "\u0905\u0930\u0941 \u092a\u0930\u093f\u0935\u0930\u094d\u0924\u0928\u0939\u0930\u0941 ", "Overview": "\u092a\u0941\u0928\u0930\u093e\u0935\u0932\u094b\u0915\u0928 ", "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 ", "Please activate JavaScript to enable the search\n functionality.": "\u0916\u094b\u091c\u094d\u0928\u0947 \u0915\u093e\u0930\u094d\u092f \u0906\u0917\u093e\u0921\u0940 \u092c\u0922\u093e\u0909\u0928\u0915\u094b \u0932\u093e\u0917\u093f \u091c\u093e\u092d\u093e\u0938\u094d\u0915\u0943\u092a\u094d\u091f \u091a\u0932\u093e\u0908\u0926\u093f\u0928\u0941\u0939\u094b\u0938 ", "Preparing search...": "", "Previous topic": "\u0905\u0918\u093f\u0932\u094d\u0932\u094b \u0935\u093f\u0937\u092f ", "Quick search": "\u091b\u093f\u091f\u094d\u091f\u094b \u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d", "Search": "\u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d ", "Search Page": "\u092a\u093e\u0928\u093e\u092e\u093e \u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d", "Search Results": "\u0916\u094b\u091c\u0947\u0915\u094b \u0928\u0924\u093f\u091c\u093e", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "", "Show Source": "\u0938\u094d\u0930\u094b\u0924 \u0926\u0947\u0916\u093e\u0909\u0928\u0941\u0939\u094b\u0938\u094d ", "Table Of Contents": "\u0935\u093f\u0937\u092f\u0938\u0942\u091a\u0940", "This Page": "\u092f\u094b \u092a\u093e\u0928\u093e", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "\u0938\u092c\u0948 \u092b\u0928\u094d\u0915\u094d\u0938\u0928\u0938\u094d, \u0915\u0915\u094d\u0937\u093e\u0939\u0930\u0942 \u0930 \u091f\u0930\u094d\u092e\u0938\u094d", "can be huge": "\u0927\u0947\u0930\u0948 \u0920\u0941\u0932\u094b \u0939\u0941\u0928 \u0938\u0915\u094d\u091b", "last updated": "", "lists all sections and subsections": "\u0938\u092c\u0948 \u0938\u0947\u0915\u094d\u0938\u0928 \u0930 \u0938\u0935\u0938\u0947\u0915\u094d\u0938\u0928 \u0926\u0947\u0916\u093e\u0909\u0928\u0941\u0939\u094b\u0938\u094d", "next chapter": "\u092a\u091b\u093f\u0932\u094d\u0932\u094b \u0916\u0928\u094d\u0921", "previous chapter": "\u0905\u0918\u093f\u0932\u094d\u0932\u094b \u0916\u0928\u094d\u0921", "quick access to all modules": "\u0938\u092c\u0948 \u092e\u094b\u0926\u0941\u0932\u0947\u0938\u092e\u093e \u091b\u093f\u091f\u0948 \u091c\u093e\u0928\u0941\u0939\u094b\u0938\u094d", "search": "\u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d", "search this documentation": "\u092f\u094b \u0921\u0915\u0941\u092e\u0947\u0928\u094d\u091f \u0916\u094b\u091c\u094d\u0928\u0941\u0939\u094b\u0938\u094d", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ 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 ab8bce004..e3407aa17 100644 Binary files a/sphinx/locale/ne/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ne/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ne/LC_MESSAGES/sphinx.po b/sphinx/locale/ne/LC_MESSAGES/sphinx.po index 2c1292d8c..f6a888eac 100644 --- a/sphinx/locale/ne/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ne/LC_MESSAGES/sphinx.po @@ -1,23 +1,23 @@ -# Nepali translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# FIRST AUTHOR , 2011 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" "Last-Translator: Takayuki Shimizukawa \n" -"Language: ne\n" -"Language-Team: Nepali " -"(http://www.transifex.com/projects/p/sphinx-1/language/ne/)\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Language-Team: Nepali (http://www.transifex.com/sphinx-doc/sphinx-1/language/ne/)\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 2.2.0\n" +"Language: ne\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinx/config.py:91 #, python-format @@ -178,9 +178,8 @@ msgid "variable" msgstr "चल" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "Parameters" +msgstr "" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -470,14 +469,13 @@ msgid "Todo" msgstr "Todo" #: sphinx/ext/todo.py:129 -#, fuzzy msgid "<>" -msgstr "मौलिक इन्ट्री" +msgstr "" #: sphinx/ext/todo.py:132 -#, fuzzy, python-format +#, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "(<> यहाँ %s, line %d रहेको छ । " +msgstr "" #: sphinx/ext/todo.py:141 msgid "original entry" @@ -734,26 +732,25 @@ 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 "" -"यहाँबाट तपाईंले यी ड्कुमेन्टहरु खोज्नसक्नु हुन्छ । खोज्न शब्दहरु\n" -"तलको बक्समा लेख्‍नुहोस र \"खोज्नुहोस्\"थिच्नुहोस । खोज्नुहोस्\n" -"फन्क्सनले आफै सबै शब्दहरु खोज्छ । \n" -"थोरै शब्दहरु भएको पानाहरु नतिजामा देखिन्न । " +msgstr "यहाँबाट तपाईंले यी ड्कुमेन्टहरु खोज्नसक्नु हुन्छ । खोज्न शब्दहरु\nतलको बक्समा लेख्‍नुहोस र \"खोज्नुहोस्\"थिच्नुहोस । खोज्नुहोस्\nफन्क्सनले आफै सबै शब्दहरु खोज्छ । \nथोरै शब्दहरु भएको पानाहरु नतिजामा देखिन्न । " -#: 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 "खोज्नुहोस्" -#: 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:282 msgid "Search Results" msgstr "खोजेको नतिजा" -#: 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:284 msgid "" -"Your search did not match any documents. Please make sure that all words " -"are spelled correctly and that you've selected enough categories." +"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 @@ -856,9 +853,8 @@ msgid "Release" msgstr "रीलीज" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "खतरा" +msgstr "" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -881,13 +877,3 @@ msgstr "" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[चित्र]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%B %d, %Y" - -#~ msgid "%b %d, %Y" -#~ msgstr "%b %d, %Y" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "खोज्ने टर्मस् अथवा एक मडुल्, कक्षा अथवा फन्क्सनको नाम लेख्नुहोस " - diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.js b/sphinx/locale/nl/LC_MESSAGES/sphinx.js index e2353331f..59504ce61 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "nl", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": "", "About these documents": "Over deze documenten", "Automatically generated list of changes in version %(version)s": "Automatisch gegenereerde lijst van veranderingen in versie %(version)s", "C API changes": "Veranderingen in de C-API", "Changes in Version %(version)s — %(docstitle)s": "Veranderingen in versie %(version)s — %(docstitle)s", "Collapse sidebar": "", "Complete Table of Contents": "Volledige inhoudsopgave", "Contents": "Inhoud", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "Aangemaakt met Sphinx %(sphinx_version)s.", "Enter search terms or a module, class or function name.": "Geef zoekterm of de naam van een module, klasse of functie.", "Expand sidebar": "", "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.": "Hier kan u de documenten doorzoeken. Geef enkele trefwoorden\n in het veld hieronder en klik \"zoeken\". Merk op dat de zoekfunctie\n steeds naar alle woorden zoekt. Pagina's die minder woorden bevatten\n zullen niet tussen de resultaten verschijnen.", "Full index on one page": "Volledige index op een pagina", "General Index": "Algemene index", "Global Module Index": "Globale Module-index", "Go": "Ga", "Hide Search Matches": "Zoekresultaten verbergen", "Index": "Index", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Index pagineerd per letter", "Indices and tables:": "Indices en tabellen:", "Last updated on %(last_updated)s.": "Laatste aanpassing op %(last_updated)s.", "Library changes": "Veranderingen in de bibliotheek", "Navigation": "Navigatie", "Next topic": "Volgend onderwerp", "Other changes": "Andere veranderingen", "Overview": "Overzicht", "Permalink to this definition": "Permalink naar deze definitie", "Permalink to this headline": "Permalink naar deze titel", "Please activate JavaScript to enable the search\n functionality.": "Activeer JavaSscript om de zoekfunctionaliteit in te schakelen.", "Preparing search...": "", "Previous topic": "Vorig onderwerp", "Quick search": "Snel zoeken", "Search": "Zoeken", "Search Page": "Zoekpagina", "Search Results": "Zoekresultaten", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "Zoeken in %(docstitle)s", "Searching": "", "Show Source": "Broncode weergeven", "Table Of Contents": "Inhoudsopgave", "This Page": "Deze pagina", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "alle functies, klasses en begrippen", "can be huge": "kan heel groot zijn", "last updated": "", "lists all sections and subsections": "geeft alle secties en subsecties weer", "next chapter": "volgend hoofdstuk", "previous chapter": "Vorig hoofdstuk", "quick access to all modules": "sneltoegang naar alle modules", "search": "zoeken", "search this documentation": "zoeken in deze documentatie", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ No newline at end of file +Documentation.addTranslations({"locale": "nl", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": "", "About these documents": "Over deze documenten", "Automatically generated list of changes in version %(version)s": "Automatisch gegenereerde lijst van veranderingen in versie %(version)s", "C API changes": "Veranderingen in de C-API", "Changes in Version %(version)s — %(docstitle)s": "Veranderingen in versie %(version)s — %(docstitle)s", "Collapse sidebar": "", "Complete Table of Contents": "Volledige inhoudsopgave", "Contents": "Inhoud", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "Aangemaakt met Sphinx %(sphinx_version)s.", "Expand sidebar": "", "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.": "Hier kan u de documenten doorzoeken. Geef enkele trefwoorden\n in het veld hieronder en klik \"zoeken\". Merk op dat de zoekfunctie\n steeds naar alle woorden zoekt. Pagina's die minder woorden bevatten\n zullen niet tussen de resultaten verschijnen.", "Full index on one page": "Volledige index op een pagina", "General Index": "Algemene index", "Global Module Index": "Globale Module-index", "Go": "Ga", "Hide Search Matches": "Zoekresultaten verbergen", "Index": "Index", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Index pagineerd per letter", "Indices and tables:": "Indices en tabellen:", "Last updated on %(last_updated)s.": "Laatste aanpassing op %(last_updated)s.", "Library changes": "Veranderingen in de bibliotheek", "Navigation": "Navigatie", "Next topic": "Volgend onderwerp", "Other changes": "Andere veranderingen", "Overview": "Overzicht", "Permalink to this definition": "Permalink naar deze definitie", "Permalink to this headline": "Permalink naar deze titel", "Please activate JavaScript to enable the search\n functionality.": "Activeer JavaSscript om de zoekfunctionaliteit in te schakelen.", "Preparing search...": "", "Previous topic": "Vorig onderwerp", "Quick search": "Snel zoeken", "Search": "Zoeken", "Search Page": "Zoekpagina", "Search Results": "Zoekresultaten", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "Zoeken in %(docstitle)s", "Searching": "", "Show Source": "Broncode weergeven", "Table Of Contents": "Inhoudsopgave", "This Page": "Deze pagina", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "alle functies, klasses en begrippen", "can be huge": "kan heel groot zijn", "last updated": "", "lists all sections and subsections": "geeft alle secties en subsecties weer", "next chapter": "volgend hoofdstuk", "previous chapter": "Vorig hoofdstuk", "quick access to all modules": "sneltoegang naar alle modules", "search": "zoeken", "search this documentation": "zoeken in deze documentatie", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ 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 d616831ef..733867e58 100644 Binary files a/sphinx/locale/nl/LC_MESSAGES/sphinx.mo and b/sphinx/locale/nl/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/nl/LC_MESSAGES/sphinx.po b/sphinx/locale/nl/LC_MESSAGES/sphinx.po index 16e04768b..1a419d8e8 100644 --- a/sphinx/locale/nl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/nl/LC_MESSAGES/sphinx.po @@ -1,23 +1,23 @@ -# Dutch translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# FIRST AUTHOR , 2008 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" "Last-Translator: Takayuki Shimizukawa \n" -"Language: nl\n" -"Language-Team: Dutch " -"(http://www.transifex.com/projects/p/sphinx-1/language/nl/)\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Language-Team: Dutch (http://www.transifex.com/sphinx-doc/sphinx-1/language/nl/)\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 2.2.0\n" +"Language: nl\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinx/config.py:91 #, python-format @@ -178,9 +178,8 @@ msgid "variable" msgstr "variabele" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "Parameters" +msgstr "" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -470,14 +469,13 @@ msgid "Todo" msgstr "Te doen" #: sphinx/ext/todo.py:129 -#, fuzzy msgid "<>" -msgstr "originele item" +msgstr "" #: sphinx/ext/todo.py:132 -#, fuzzy, python-format +#, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "(Het <> is te vinden in %s, regel %d.)" +msgstr "" #: sphinx/ext/todo.py:141 msgid "original entry" @@ -699,9 +697,7 @@ msgstr "Laatste aanpassing op %(last_updated)s." msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" -"Aangemaakt met Sphinx " -"%(sphinx_version)s." +msgstr "Aangemaakt met Sphinx %(sphinx_version)s." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -736,28 +732,25 @@ 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 "" -"Hier kan u de documenten doorzoeken. Geef enkele trefwoorden\n" -" in het veld hieronder en klik \"zoeken\". Merk op dat de zoekfunctie" -"\n" -" steeds naar alle woorden zoekt. Pagina's die minder woorden bevatten" -"\n" -" zullen niet tussen de resultaten verschijnen." +msgstr "Hier kan u de documenten doorzoeken. Geef enkele trefwoorden\n in het veld hieronder en klik \"zoeken\". Merk op dat de zoekfunctie\n steeds naar alle woorden zoekt. Pagina's die minder woorden bevatten\n zullen niet tussen de resultaten verschijnen." -#: 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 "zoeken" -#: 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:282 msgid "Search Results" msgstr "Zoekresultaten" -#: 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:284 msgid "" -"Your search did not match any documents. Please make sure that all words " -"are spelled correctly and that you've selected enough categories." +"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 @@ -860,9 +853,8 @@ msgid "Release" msgstr "Release" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "Gevaar" +msgstr "" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -885,13 +877,3 @@ msgstr "" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[afbeelding]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%d. %B %Y" - -#~ msgid "%b %d, %Y" -#~ msgstr "%d.%b.%Y" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "Geef zoekterm of de naam van een module, klasse of functie." - diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.js b/sphinx/locale/pl/LC_MESSAGES/sphinx.js index ee778278a..3b87f74f1 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "pl", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", w ", "About these documents": "O tych dokumentach", "Automatically generated list of changes in version %(version)s": "Automatycznie wygenerowana lista zmian w wersji %(version)s", "C API changes": "Zmiany w C API", "Changes in Version %(version)s — %(docstitle)s": "Zmiany w wersji %(version)s — %(docstitle)s", "Collapse sidebar": "Zwi\u0144 pasek boczny", "Complete Table of Contents": "Kompletny spis tre\u015bci", "Contents": "Tre\u015b\u0107", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "Utworzone przy pomocy Sphinx'a %(sphinx_version)s.", "Enter search terms or a module, class or function name.": "Wprowad\u017a szukany termin lub nazw\u0119 modu\u0142u, klasy lub funkcji.", "Expand sidebar": "Rozwi\u0144 pasek boczny", "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.": "St\u0105d mo\u017cesz przeszuka\u0107 dokumentacj\u0119. Wprowad\u017a szukane\n s\u0142owa w poni\u017cszym okienku i kliknij \"Szukaj\". Zwr\u00f3\u0107 uwag\u0119, \u017ce\n funkcja szukaj\u0105ca b\u0119dzie automatycznie szuka\u0142a wszystkich s\u0142\u00f3w. Strony\n nie zawieraj\u0105ce wszystkich wpisanych s\u0142\u00f3w nie znajd\u0105 si\u0119 na wynikowej li\u015bcie.", "Full index on one page": "Ca\u0142y indeks na jednej stronie", "General Index": "Indeks og\u00f3lny", "Global Module Index": "Globalny indeks modu\u0142\u00f3w", "Go": "Szukaj", "Hide Search Matches": "Ukryj wyniki wyszukiwania", "Index": "Indeks", "Index – %(key)s": "Indeks – %(key)s", "Index pages by letter": "Strony indeksu alfabetycznie", "Indices and tables:": "Indeksy i tablice:", "Last updated on %(last_updated)s.": "Ostatnia modyfikacja %(last_updated)s.", "Library changes": "Zmiany w bibliotekach", "Navigation": "Nawigacja", "Next topic": "Nast\u0119pny temat", "Other changes": "Inne zmiany", "Overview": "Przegl\u0105d", "Permalink to this definition": "Sta\u0142y odno\u015bnik do tej definicji", "Permalink to this headline": "Sta\u0142y odno\u015bnik do tego nag\u0142\u00f3wka", "Please activate JavaScript to enable the search\n functionality.": "Aby umo\u017cliwi\u0107 wyszukiwanie, prosz\u0119 w\u0142\u0105czy\u0107 JavaScript.", "Preparing search...": "Inicjalizacja wyszukiwania...", "Previous topic": "Poprzedni temat", "Quick search": "Szybkie wyszukiwanie", "Search": "Szukaj", "Search Page": "Wyszukiwanie", "Search Results": "Wyniki wyszukiwania", "Search finished, found %s page(s) matching the search query.": "Wyszukiwanie zako\u0144czone. Liczba znalezionych stron pasuj\u0105cych do zapytania: %s.", "Search within %(docstitle)s": "Szukaj po\u015br\u00f3d %(docstitle)s", "Searching": "Wyszukiwanie", "Show Source": "Poka\u017c \u017ar\u00f3d\u0142o", "Table Of Contents": "Spis tre\u015bci", "This Page": "Ta strona", "Welcome! This is": "Witaj! To jest", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Twoje wyszukiwanie nie da\u0142o \u017cadnych wynik\u00f3w. Upewnij si\u0119, \u017ce wszystkie s\u0142owa s\u0105 wpisane prawid\u0142owo i \u017ce wybra\u0142e\u015b dostateczn\u0105 ilo\u015b\u0107 kategorii.", "all functions, classes, terms": "wszystkie funkcje, klasy, terminy", "can be huge": "mo\u017ce by\u0107 ogromny", "last updated": "ostatnio aktualizowana", "lists all sections and subsections": "wszystkie rozdzia\u0142y i podrozdzia\u0142y", "next chapter": "nast\u0119pny rozdzia\u0142", "previous chapter": "poprzedni rozdzia\u0142", "quick access to all modules": "szybki dost\u0119p do wszystkich modu\u0142\u00f3w", "search": "szukaj", "search this documentation": "przeszukaj t\u0119 dokumentacj\u0119", "the documentation for": "dokumentacja do"}, "plural_expr": "(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)"}); \ No newline at end of file +Documentation.addTranslations({"locale": "pl", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", w ", "About these documents": "O tych dokumentach", "Automatically generated list of changes in version %(version)s": "Automatycznie wygenerowana lista zmian w wersji %(version)s", "C API changes": "Zmiany w C API", "Changes in Version %(version)s — %(docstitle)s": "Zmiany w wersji %(version)s — %(docstitle)s", "Collapse sidebar": "Zwi\u0144 pasek boczny", "Complete Table of Contents": "Kompletny spis tre\u015bci", "Contents": "Tre\u015b\u0107", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "Utworzone przy pomocy Sphinx'a %(sphinx_version)s.", "Expand sidebar": "Rozwi\u0144 pasek boczny", "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.": "St\u0105d mo\u017cesz przeszuka\u0107 dokumentacj\u0119. Wprowad\u017a szukane\n s\u0142owa w poni\u017cszym okienku i kliknij \"Szukaj\". Zwr\u00f3\u0107 uwag\u0119, \u017ce\n funkcja szukaj\u0105ca b\u0119dzie automatycznie szuka\u0142a wszystkich s\u0142\u00f3w. Strony\n nie zawieraj\u0105ce wszystkich wpisanych s\u0142\u00f3w nie znajd\u0105 si\u0119 na wynikowej li\u015bcie.", "Full index on one page": "Ca\u0142y indeks na jednej stronie", "General Index": "Indeks og\u00f3lny", "Global Module Index": "Globalny indeks modu\u0142\u00f3w", "Go": "Szukaj", "Hide Search Matches": "Ukryj wyniki wyszukiwania", "Index": "Indeks", "Index – %(key)s": "Indeks – %(key)s", "Index pages by letter": "Strony indeksu alfabetycznie", "Indices and tables:": "Indeksy i tablice:", "Last updated on %(last_updated)s.": "Ostatnia modyfikacja %(last_updated)s.", "Library changes": "Zmiany w bibliotekach", "Navigation": "Nawigacja", "Next topic": "Nast\u0119pny temat", "Other changes": "Inne zmiany", "Overview": "Przegl\u0105d", "Permalink to this definition": "Sta\u0142y odno\u015bnik do tej definicji", "Permalink to this headline": "Sta\u0142y odno\u015bnik do tego nag\u0142\u00f3wka", "Please activate JavaScript to enable the search\n functionality.": "Aby umo\u017cliwi\u0107 wyszukiwanie, prosz\u0119 w\u0142\u0105czy\u0107 JavaScript.", "Preparing search...": "Inicjalizacja wyszukiwania...", "Previous topic": "Poprzedni temat", "Quick search": "Szybkie wyszukiwanie", "Search": "Szukaj", "Search Page": "Wyszukiwanie", "Search Results": "Wyniki wyszukiwania", "Search finished, found %s page(s) matching the search query.": "Wyszukiwanie zako\u0144czone. Liczba znalezionych stron pasuj\u0105cych do zapytania: %s.", "Search within %(docstitle)s": "Szukaj po\u015br\u00f3d %(docstitle)s", "Searching": "Wyszukiwanie", "Show Source": "Poka\u017c \u017ar\u00f3d\u0142o", "Table Of Contents": "Spis tre\u015bci", "This Page": "Ta strona", "Welcome! This is": "Witaj! To jest", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Twoje wyszukiwanie nie da\u0142o \u017cadnych wynik\u00f3w. Upewnij si\u0119, \u017ce wszystkie s\u0142owa s\u0105 wpisane prawid\u0142owo i \u017ce wybra\u0142e\u015b dostateczn\u0105 ilo\u015b\u0107 kategorii.", "all functions, classes, terms": "wszystkie funkcje, klasy, terminy", "can be huge": "mo\u017ce by\u0107 ogromny", "last updated": "ostatnio aktualizowana", "lists all sections and subsections": "wszystkie rozdzia\u0142y i podrozdzia\u0142y", "next chapter": "nast\u0119pny rozdzia\u0142", "previous chapter": "poprzedni rozdzia\u0142", "quick access to all modules": "szybki dost\u0119p do wszystkich modu\u0142\u00f3w", "search": "szukaj", "search this documentation": "przeszukaj t\u0119 dokumentacj\u0119", "the documentation for": "dokumentacja do"}, "plural_expr": "(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)"}); \ 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 25b15636b..8395c168a 100644 Binary files a/sphinx/locale/pl/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pl/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pl/LC_MESSAGES/sphinx.po b/sphinx/locale/pl/LC_MESSAGES/sphinx.po index c97e5172e..8b680469c 100644 --- a/sphinx/locale/pl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pl/LC_MESSAGES/sphinx.po @@ -1,24 +1,24 @@ -# Polish translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# Michael Gielda , 2014 +# Tawez, 2013-2016 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" -"Last-Translator: Takayuki Shimizukawa \n" -"Language: pl\n" -"Language-Team: Polish " -"(http://www.transifex.com/projects/p/sphinx-1/language/pl/)\n" -"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && " -"(n%100<10 || n%100>=20) ? 1 : 2)\n" +"PO-Revision-Date: 2016-03-14 13:58+0000\n" +"Last-Translator: Tawez\n" +"Language-Team: Polish (http://www.transifex.com/sphinx-doc/sphinx-1/language/pl/)\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 2.2.0\n" +"Language: pl\n" +"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n" #: sphinx/config.py:91 #, python-format @@ -62,7 +62,7 @@ msgstr "Python Enhancement Proposals; PEP %s" #: sphinx/transforms.py:56 sphinx/writers/latex.py:374 #: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222 msgid "MMMM dd, YYYY" -msgstr "" +msgstr "MMMM dd, YYYY" #: sphinx/builders/changes.py:75 msgid "Builtins" @@ -74,7 +74,7 @@ msgstr "Poziom modułu" #: sphinx/builders/html.py:295 msgid "MMM dd, YYYY" -msgstr "" +msgstr "MMM dd, YYYY" #: sphinx/builders/html.py:315 sphinx/themes/basic/defindex.html:30 msgid "General Index" @@ -179,9 +179,8 @@ msgid "variable" msgstr "zmienna" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "Parametry" +msgstr "Parametry szablonu" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -471,12 +470,11 @@ msgid "Todo" msgstr "Todo" #: sphinx/ext/todo.py:129 -#, fuzzy msgid "<>" -msgstr "oryginalny wpis" +msgstr "<>" #: sphinx/ext/todo.py:132 -#, fuzzy, python-format +#, python-format msgid "(The <> is located in %s, line %d.)" msgstr "(<> znajduje się w pliku %s, w linii %d.)" @@ -700,9 +698,7 @@ msgstr "Ostatnia modyfikacja %(last_updated)s." msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" -"Utworzone przy pomocy Sphinx'a " -"%(sphinx_version)s." +msgstr "Utworzone przy pomocy Sphinx'a %(sphinx_version)s." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -737,31 +733,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 "" -"Stąd możesz przeszukać dokumentację. Wprowadź szukane\n" -" słowa w poniższym okienku i kliknij \"Szukaj\". Zwróć uwagę, że\n" -" funkcja szukająca będzie automatycznie szukała wszystkich słów. " -"Strony\n" -" nie zawierające wszystkich wpisanych słów nie znajdą się na wynikowej" -" liście." +msgstr "Stąd możesz przeszukać dokumentację. Wprowadź szukane\n słowa w poniższym okienku i kliknij \"Szukaj\". Zwróć uwagę, że\n funkcja szukająca będzie automatycznie szukała wszystkich słów. Strony\n nie zawierające wszystkich wpisanych słów nie znajdą się na wynikowej liście." -#: 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 "szukaj" -#: 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:282 msgid "Search Results" msgstr "Wyniki wyszukiwania" -#: 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:284 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 "" -"Twoje wyszukiwanie nie dało żadnych wyników. Upewnij się, że wszystkie " -"słowa są wpisane prawidłowo i że wybrałeś dostateczną ilość kategorii." +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "Twoje wyszukiwanie nie dało żadnych wyników. Upewnij się, że wszystkie słowa są wpisane prawidłowo i że wybrałeś dostateczną ilość kategorii." #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -823,9 +814,7 @@ msgstr "Inicjalizacja wyszukiwania..." #: sphinx/themes/basic/static/searchtools.js_t:286 #, python-format msgid "Search finished, found %s page(s) matching the search query." -msgstr "" -"Wyszukiwanie zakończone. Liczba znalezionych stron pasujących do " -"zapytania: %s." +msgstr "Wyszukiwanie zakończone. Liczba znalezionych stron pasujących do zapytania: %s." #: sphinx/themes/basic/static/searchtools.js_t:338 msgid ", in " @@ -854,7 +843,7 @@ msgstr "Stały odnośnik do tego obrazu" #: sphinx/writers/html.py:355 msgid "Permalink to this toctree" -msgstr "" +msgstr "Stały odnośnik do tego toctree" #: sphinx/writers/html.py:677 msgid "Permalink to this table" @@ -865,9 +854,8 @@ msgid "Release" msgstr "Wydanie" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "Niebezpieczeństwo" +msgstr "strona" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -890,13 +878,3 @@ msgstr "[obraz: %s]" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[obraz]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%B %d %Y" - -#~ msgid "%b %d, %Y" -#~ msgstr "%b %d %Y" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "Wprowadź szukany termin lub nazwę modułu, klasy lub funkcji." - diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.js index 0908f4c4d..e4bdbb332 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", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", em ", "About these documents": "Sobre estes documentos", "Automatically generated list of changes in version %(version)s": "Lista de altera\u00e7\u00f5es na vers\u00e3o %(version)s gerada automaticamente", "C API changes": "Altera\u00e7\u00f5es na API C", "Changes in Version %(version)s — %(docstitle)s": "Altera\u00e7\u00f5es na Vers\u00e3o%(version)s — %(docstitle)s", "Collapse sidebar": "Recolher painel lateral", "Complete Table of Contents": "Tabela de Conte\u00fado Completa", "Contents": "Conte\u00fado", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "Criado usando Sphinx %(sphinx_version)s.", "Enter search terms or a module, class or function name.": "Digite os termos da busca ou o nome de um m\u00f3dulo, classe ou fun\u00e7\u00e3o.", "Expand sidebar": "Expandir painel lateral", "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.": "A partir daqui voc\u00ea pode pesquisar estes documentos. Preencha suas \n palavras de pesquisa na caixa abaixo e clique em \"pesquisar\".\n Observe que a fun\u00e7\u00e3o de pesquisa\n ir\u00e1 procurar automaticamente por todas as palavras.\n P\u00e1ginas contendo menos palavras n\u00e3o ir\u00e3o aparecer na lista de\n resultado.", "Full index on one page": "\u00cdndice completo em uma p\u00e1gina", "General Index": "\u00cdndice Geral", "Global Module Index": "\u00cdndice Global de M\u00f3dulos", "Go": "Ir", "Hide Search Matches": "Esconder Resultados da Pesquisa", "Index": "\u00cdndice", "Index – %(key)s": "\u00cdndice – %(key)s", "Index pages by letter": "Paginas de \u00edndice por letra", "Indices and tables:": "\u00cdndices e tabelas:", "Last updated on %(last_updated)s.": "\u00daltima atualiza\u00e7\u00e3o em %(last_updated)s.", "Library changes": "Altera\u00e7\u00f5es na biblioteca", "Navigation": "Navega\u00e7\u00e3o", "Next topic": "Pr\u00f3ximo t\u00f3pico", "Other changes": "Outras altera\u00e7\u00f5es", "Overview": "Vis\u00e3o geral", "Permalink to this definition": "Link permanente para esta defini\u00e7\u00e3o", "Permalink to this headline": "Link permanente para este t\u00edtulo", "Please activate JavaScript to enable the search\n functionality.": "Por favor ative o JavaScript para habilitar a\n\"\n\" funcionalidade de pesquisa.", "Preparing search...": "Preparando a pesquisa...", "Previous topic": "T\u00f3pico anterior", "Quick search": "Pesquisa r\u00e1pida", "Search": "Pesquisar", "Search Page": "P\u00e1gina de Pesquisa", "Search Results": "Resultados da Pesquisa", "Search finished, found %s page(s) matching the search query.": "Pesquisa conclu\u00edda, foram encontrada(s) %s p\u00e1gina(s) que \"\n\"combinam com a consulta feita.", "Search within %(docstitle)s": "Pesquisar dentro de %(docstitle)s", "Searching": "Pesquisando", "Show Source": "Exibir Fonte", "Table Of Contents": "Tabela de Conte\u00fado", "This Page": "Esta P\u00e1gina", "Welcome! This is": "Bem Vindo(a)! \u00c9 isso a\u00ed", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Sua pesquisa n\u00e3o encontrou nenhum documento. Por favor, confirme que todas as palavras est\u00e3o grafadas corretamente e que voc\u00ea selecionou categorias suficientes.", "all functions, classes, terms": "todas fun\u00e7\u00f5es, classes, termos", "can be huge": "pode ser enorme", "last updated": "\u00faltima atualiza\u00e7\u00e3o", "lists all sections and subsections": "Lista todas se\u00e7\u00f5es e subse\u00e7\u00f5es", "next chapter": "pr\u00f3ximo cap\u00edtulo", "previous chapter": "cap\u00edtulo anterior", "quick access to all modules": "acesso r\u00e1pido para todos os m\u00f3dulos", "search": "pesquisar", "search this documentation": "Pesquisar esta documenta\u00e7\u00e3o", "the documentation for": "documenta\u00e7\u00e3o para"}, "plural_expr": "(n > 1)"}); \ No newline at end of file +Documentation.addTranslations({"locale": "pt_BR", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", em ", "About these documents": "Sobre esses documentos", "Automatically generated list of changes in version %(version)s": "Lista de altera\u00e7\u00f5es na vers\u00e3o %(version)s, gerada automaticamente", "C API changes": "Altera\u00e7\u00f5es na API C", "Changes in Version %(version)s — %(docstitle)s": "Altera\u00e7\u00f5es na Vers\u00e3o%(version)s — %(docstitle)s", "Collapse sidebar": "Recolher painel lateral", "Complete Table of Contents": "Tabela Completa dos Conte\u00fados", "Contents": "Conte\u00fados", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "Criado usando Sphinx %(sphinx_version)s.", "Expand sidebar": "Expandir painel lateral", "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.": "Aqui pode-se fazer buscas nesses documentos. Preencha sua \npalavras de busca na caixa abaixo e clicar em \"Buscar\". Notar que a busca\nir\u00e1 procurar automaticamente por todas as palavras. P\u00e1ginas \ncontendo menos palavras n\u00e3o ir\u00e3o aparecer na lista de resultados.", "Full index on one page": "\u00cdndice completo em p\u00e1gina \u00fanica", "General Index": "\u00cdndice Geral", "Global Module Index": "\u00cdndice Global de M\u00f3dulos", "Go": "Ir", "Hide Search Matches": "Esconder Resultados da Busca", "Index": "\u00cdndice", "Index – %(key)s": "\u00cdndice – %(key)s", "Index pages by letter": "P\u00e1ginas de \u00edndice por letra", "Indices and tables:": "\u00cdndices e Tabelas:", "Last updated on %(last_updated)s.": "\u00daltima atualiza\u00e7\u00e3o em %(last_updated)s.", "Library changes": "Altera\u00e7\u00f5es na biblioteca", "Navigation": "Navega\u00e7\u00e3o", "Next topic": "Pr\u00f3ximo t\u00f3pico", "Other changes": "Outras altera\u00e7\u00f5es", "Overview": "Vis\u00e3o geral", "Permalink to this definition": "Link permanente para esta defini\u00e7\u00e3o", "Permalink to this headline": "Link permanente para este t\u00edtulo", "Please activate JavaScript to enable the search\n functionality.": "Por favor, ativar JavaScript para habilitar a\nfuncionalidade de busca.", "Preparing search...": "Preparando a busca...", "Previous topic": "T\u00f3pico anterior", "Quick search": "Busca r\u00e1pida", "Search": "Buscar", "Search Page": "P\u00e1gina de Busca", "Search Results": "Resultados da Busca", "Search finished, found %s page(s) matching the search query.": "Busca conclu\u00edda. %s p\u00e1gina(s) que atendem a consulta.", "Search within %(docstitle)s": "Pesquisar dentro de %(docstitle)s", "Searching": "Buscando", "Show Source": "Exibir Fonte", "Table Of Contents": "Tabela de Conte\u00fado", "This Page": "Essa P\u00e1gina", "Welcome! This is": "Bem Vindo! \u00c9 isso a\u00ed.", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Sua busca n\u00e3o encontrou nenhum documento. Por favor, confirme se todas as palavras est\u00e3o grafadas corretamente e se voc\u00ea selecionou categorias suficientes.", "all functions, classes, terms": "todas fun\u00e7\u00f5es, classes, termos", "can be huge": "pode ser enorme", "last updated": "\u00faltima atualiza\u00e7\u00e3o", "lists all sections and subsections": "Listar todas se\u00e7\u00f5es e subse\u00e7\u00f5es", "next chapter": "pr\u00f3ximo cap\u00edtulo", "previous chapter": "cap\u00edtulo anterior", "quick access to all modules": "acesso r\u00e1pido para todos os m\u00f3dulos", "search": "buscar", "search this documentation": "Buscar nessa documenta\u00e7\u00e3o", "the documentation for": "documenta\u00e7\u00e3o para"}, "plural_expr": "(n > 1)"}); \ 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 58822baa5..725899257 100644 Binary files a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po index 47d429f94..8b9504a62 100644 --- a/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_BR/LC_MESSAGES/sphinx.po @@ -1,23 +1,24 @@ -# Portuguese (Brazil) translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# FIRST AUTHOR , 2008 +# gilberto dos santos alves , 2015-2016 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" -"Last-Translator: Takayuki Shimizukawa \n" -"Language: pt_BR\n" -"Language-Team: Portuguese (Brazil) " -"(http://www.transifex.com/projects/p/sphinx-1/language/pt_BR/)\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" +"PO-Revision-Date: 2016-03-08 22:54+0000\n" +"Last-Translator: gilberto dos santos alves \n" +"Language-Team: Portuguese (Brazil) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_BR/)\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 2.2.0\n" +"Language: pt_BR\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: sphinx/config.py:91 #, python-format @@ -61,7 +62,7 @@ msgstr "Propostas Estendidas Python; PEP %s" #: sphinx/transforms.py:56 sphinx/writers/latex.py:374 #: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222 msgid "MMMM dd, YYYY" -msgstr "" +msgstr "MMMM dd, YYYY" #: sphinx/builders/changes.py:75 msgid "Builtins" @@ -69,11 +70,11 @@ msgstr "Internos" #: sphinx/builders/changes.py:77 msgid "Module level" -msgstr "Módulo" +msgstr "Nível do Módulo" #: sphinx/builders/html.py:295 msgid "MMM dd, YYYY" -msgstr "" +msgstr "MMM dd, YYYY" #: sphinx/builders/html.py:315 sphinx/themes/basic/defindex.html:30 msgid "General Index" @@ -178,13 +179,12 @@ msgid "variable" msgstr "variável" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "Parâmetros" +msgstr "Parâmetros do Modelo" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" -msgstr "Gera" +msgstr "Lança" #: sphinx/domains/cpp.py:3733 #, python-format @@ -209,7 +209,7 @@ msgstr "%s (classe C++)" #: sphinx/domains/cpp.py:3786 #, python-format msgid "%s (C++ enum)" -msgstr "%s (C++enum)" +msgstr "%s (C++ enum)" #: sphinx/domains/cpp.py:3816 #, python-format @@ -256,7 +256,7 @@ msgstr "%s (atributo %s)" #: sphinx/domains/javascript.py:122 msgid "Arguments" -msgstr "Parâmetros" +msgstr "Argumentos" #: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590 msgid "data" @@ -337,7 +337,7 @@ msgstr "%s (módulo)" #: sphinx/domains/python.py:520 msgid "Python Module Index" -msgstr "Índice de Módulos do Python" +msgstr "Índice de Módulos Python" #: sphinx/domains/python.py:521 msgid "modules" @@ -397,19 +397,19 @@ msgstr "váriavel de ambiente; %s" #: sphinx/domains/std.py:185 #, python-format msgid "%scommand line option; %s" -msgstr "%sopção de linha de comando; %s" +msgstr "%s opção de linha de comando; %s" #: sphinx/domains/std.py:433 msgid "glossary term" -msgstr "Termo de glossário" +msgstr "Glossário de Termos" #: sphinx/domains/std.py:434 msgid "grammar token" -msgstr "token de gramática" +msgstr "termo gramatical" #: sphinx/domains/std.py:435 msgid "reference label" -msgstr "rótulo de referência" +msgstr "marca referencial" #: sphinx/domains/std.py:437 msgid "environment variable" @@ -417,7 +417,7 @@ msgstr "váriavel de ambiente" #: sphinx/domains/std.py:438 msgid "program option" -msgstr "opção de programa" +msgstr "opção do programa" #: sphinx/domains/std.py:471 sphinx/themes/basic/genindex-single.html:32 #: sphinx/themes/basic/genindex-single.html:57 @@ -435,12 +435,12 @@ msgstr "Índice do Módulo" #: sphinx/domains/std.py:473 sphinx/themes/basic/defindex.html:25 msgid "Search Page" -msgstr "Página de Pesquisa" +msgstr "Página de Busca" #: sphinx/ext/autodoc.py:1265 #, python-format msgid " Bases: %s" -msgstr " Bases: %s" +msgstr "Bases: %s" #: sphinx/ext/autodoc.py:1318 #, python-format @@ -470,14 +470,13 @@ msgid "Todo" msgstr "Por fazer" #: sphinx/ext/todo.py:129 -#, fuzzy msgid "<>" -msgstr "entrada original" +msgstr "<>" #: sphinx/ext/todo.py:132 -#, fuzzy, python-format +#, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "(A <> está localizada em %s, linha %d.)" +msgstr "(A <> está localizada na %s, linha %d.)" #: sphinx/ext/todo.py:141 msgid "original entry" @@ -494,7 +493,7 @@ msgstr "Código do módulo" #: sphinx/ext/viewcode.py:182 #, python-format msgid "

Source code for %s

" -msgstr "

Código fonte de %s

" +msgstr "

Código fonte para %s

" #: sphinx/ext/viewcode.py:208 msgid "Overview: module code" @@ -534,7 +533,7 @@ msgstr "Nota" #: sphinx/locale/__init__.py:166 msgid "See also" -msgstr "Veja também" +msgstr "Ver também" #: sphinx/locale/__init__.py:167 msgid "Tip" @@ -588,7 +587,7 @@ msgstr "Tabela de Conteúdo" #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 #: sphinx/themes/basic/searchresults.html:10 msgid "Search" -msgstr "Pesquisar" +msgstr "Buscar" #: sphinx/themes/agogo/layout.html:54 sphinx/themes/basic/searchbox.html:15 msgid "Go" @@ -604,7 +603,7 @@ msgstr "Visão geral" #: sphinx/themes/basic/defindex.html:15 msgid "Welcome! This is" -msgstr "Bem Vindo(a)! É isso aí" +msgstr "Bem Vindo! É isso aí." #: sphinx/themes/basic/defindex.html:16 msgid "the documentation for" @@ -616,19 +615,19 @@ msgstr "última atualização" #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" -msgstr "Índices e tabelas:" +msgstr "Índices e Tabelas:" #: sphinx/themes/basic/defindex.html:23 msgid "Complete Table of Contents" -msgstr "Tabela de Conteúdo Completa" +msgstr "Tabela Completa dos Conteúdos" #: sphinx/themes/basic/defindex.html:24 msgid "lists all sections and subsections" -msgstr "Lista todas seções e subseções" +msgstr "Listar todas seções e subseções" #: sphinx/themes/basic/defindex.html:26 msgid "search this documentation" -msgstr "Pesquisar esta documentação" +msgstr "Buscar nessa documentação" #: sphinx/themes/basic/defindex.html:28 msgid "Global Module Index" @@ -652,11 +651,11 @@ msgstr "Índice – %(key)s" #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:74 msgid "Full index on one page" -msgstr "Índice completo em uma página" +msgstr "Índice completo em página única" #: sphinx/themes/basic/genindex-split.html:16 msgid "Index pages by letter" -msgstr "Paginas de índice por letra" +msgstr "Páginas de índice por letra" #: sphinx/themes/basic/genindex-split.html:25 msgid "can be huge" @@ -673,7 +672,7 @@ msgstr "Pesquisar dentro de %(docstitle)s" #: sphinx/themes/basic/layout.html:131 msgid "About these documents" -msgstr "Sobre estes documentos" +msgstr "Sobre esses documentos" #: sphinx/themes/basic/layout.html:140 msgid "Copyright" @@ -699,14 +698,12 @@ msgstr "Última atualização em %(last_updated)s." msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" -"Criado usando Sphinx " -"%(sphinx_version)s." +msgstr "Criado usando Sphinx %(sphinx_version)s." #: sphinx/themes/basic/opensearch.xml:4 #, python-format msgid "Search %(docstitle)s" -msgstr "Pesquisar em %(docstitle)s" +msgstr "Buscar em %(docstitle)s" #: sphinx/themes/basic/relations.html:11 msgid "Previous topic" @@ -728,10 +725,7 @@ msgstr "próximo capítulo" msgid "" "Please activate JavaScript to enable the search\n" " functionality." -msgstr "" -"Por favor ative o JavaScript para habilitar a\n" -"\"\n" -"\" funcionalidade de pesquisa." +msgstr "Por favor, ativar JavaScript para habilitar a\nfuncionalidade de busca." #: sphinx/themes/basic/search.html:32 msgid "" @@ -739,40 +733,34 @@ 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 "" -"A partir daqui você pode pesquisar estes documentos. Preencha suas \n" -" 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." +msgstr "Aqui pode-se fazer buscas nesses documentos. Preencha sua \npalavras de busca na caixa abaixo e clicar em \"Buscar\". Notar que a busca\nirá procurar automaticamente por todas as palavras. Páginas \ncontendo menos palavras não irão aparecer na lista de resultados." -#: 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 "pesquisar" +msgstr "buscar" -#: 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:282 msgid "Search Results" -msgstr "Resultados da Pesquisa" +msgstr "Resultados da Busca" -#: 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:284 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." +"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 busca não encontrou nenhum documento. Por favor, confirme se todas as palavras estão grafadas corretamente e se você selecionou categorias suficientes." #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" -msgstr "Pesquisa rápida" +msgstr "Busca rápida" #: sphinx/themes/basic/sourcelink.html:12 msgid "This Page" -msgstr "Esta Página" +msgstr "Essa Página" #: sphinx/themes/basic/changes/frameset.html:5 #: sphinx/themes/basic/changes/versionchanges.html:12 @@ -788,7 +776,7 @@ msgstr "%(filename)s — %(docstitle)s" #: sphinx/themes/basic/changes/versionchanges.html:17 #, python-format msgid "Automatically generated list of changes in version %(version)s" -msgstr "Lista de alterações na versão %(version)s gerada automaticamente" +msgstr "Lista de alterações na versão %(version)s, gerada automaticamente" #: sphinx/themes/basic/changes/versionchanges.html:18 msgid "Library changes" @@ -813,22 +801,20 @@ msgstr "Link permanente para esta definição" #: sphinx/themes/basic/static/doctools.js_t:208 msgid "Hide Search Matches" -msgstr "Esconder Resultados da Pesquisa" +msgstr "Esconder Resultados da Busca" #: sphinx/themes/basic/static/searchtools.js_t:121 msgid "Searching" -msgstr "Pesquisando" +msgstr "Buscando" #: sphinx/themes/basic/static/searchtools.js_t:126 msgid "Preparing search..." -msgstr "Preparando a pesquisa..." +msgstr "Preparando a busca..." #: sphinx/themes/basic/static/searchtools.js_t:286 #, 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." +msgstr "Busca concluída. %s página(s) que atendem a consulta." #: sphinx/themes/basic/static/searchtools.js_t:338 msgid ", in " @@ -845,7 +831,7 @@ msgstr "Recolher painel lateral" #: sphinx/themes/haiku/layout.html:24 msgid "Contents" -msgstr "Conteúdo" +msgstr "Conteúdos" #: sphinx/writers/html.py:349 msgid "Permalink to this code" @@ -857,7 +843,7 @@ msgstr "Link Permanente para essa imagem" #: sphinx/writers/html.py:355 msgid "Permalink to this toctree" -msgstr "" +msgstr "Link permanente para esse \"toctree\"" #: sphinx/writers/html.py:677 msgid "Permalink to this table" @@ -865,12 +851,11 @@ msgstr "Link Permanente para essa tabela" #: sphinx/writers/latex.py:361 msgid "Release" -msgstr "Versão" +msgstr "Release" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "Perigo" +msgstr "página" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -893,13 +878,3 @@ msgstr "[imagem: %s]" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[imagem]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%d/%m/%Y" - -#~ msgid "%b %d, %Y" -#~ msgstr "%d/%m/%Y" - -#~ 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." - diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.js b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.js index 71c4bf425..f51c53edc 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "pt_PT", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", em", "About these documents": "Sobre estes documentos", "Automatically generated list of changes in version %(version)s": "Lista de altera\u00e7\u00f5es gerada automaticamente na vers\u00e3o %(version)s", "C API changes": "Altera\u00e7\u00f5es na API C", "Changes in Version %(version)s — %(docstitle)s": "Altera\u00e7\u00f5es na Vers\u00e3o%(version)s — %(docstitle)s", "Collapse sidebar": "Recolher painel lateral", "Complete Table of Contents": "Tabela de Conte\u00fados Completa", "Contents": "Conte\u00fado", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "Criado utilizando Sphinx %(sphinx_version)s.", "Enter search terms or a module, class or function name.": "Digite os termos da busca ou o nome de um m\u00f3dulo, classe ou fun\u00e7\u00e3o.", "Expand sidebar": "Expandir painel lateral", "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.": "A partir daqui pode pesquisar estes documentos. Preencha as\npalavras de pesquisa na caixa abaixo e clique em \"pesquisar\".\nNote que a fun\u00e7\u00e3o de pesquisa ir\u00e1 procurar automaticamente\npor todas as palavras. P\u00e1ginas que contenham menos palavras\nn\u00e3o ir\u00e3o aparecer na lista de resultados.", "Full index on one page": "\u00cdndice completo numa p\u00e1gina", "General Index": "\u00cdndice Geral", "Global Module Index": "\u00cdndice Global de M\u00f3dulos", "Go": "Ir", "Hide Search Matches": "Esconder Resultados da Pesquisa", "Index": "\u00cdndice", "Index – %(key)s": "\u00cdndice – %(key)s", "Index pages by letter": "Paginas de \u00edndice por letra", "Indices and tables:": "\u00cdndices e tabelas:", "Last updated on %(last_updated)s.": "\u00daltima actualiza\u00e7\u00e3o em %(last_updated)s.", "Library changes": "Altera\u00e7\u00f5es na biblioteca", "Navigation": "Navega\u00e7\u00e3o", "Next topic": "Pr\u00f3ximo t\u00f3pico", "Other changes": "Outras altera\u00e7\u00f5es", "Overview": "Vis\u00e3o geral", "Permalink to this definition": "Link permanente para esta defini\u00e7\u00e3o", "Permalink to this headline": "Link permanente para este t\u00edtulo", "Please activate JavaScript to enable the search\n functionality.": "Por favor ligue o JavaScript para habilitar a\nfuncionalidade de pesquisa.", "Preparing search...": "A preparar a pesquisa...", "Previous topic": "T\u00f3pico anterior", "Quick search": "Pesquisa r\u00e1pida", "Search": "Pesquisar", "Search Page": "P\u00e1gina de Pesquisa", "Search Results": "Resultados da Pesquisa", "Search finished, found %s page(s) matching the search query.": "Pesquisa conclu\u00edda, foram encontrada(s) %s p\u00e1gina(s) que combinam com a consulta feita.", "Search within %(docstitle)s": "Pesquisar dentro de %(docstitle)s", "Searching": "A Pesquisar", "Show Source": "Exibir Fonte", "Table Of Contents": "Tabela de Conte\u00fados", "This Page": "Esta P\u00e1gina", "Welcome! This is": "Bem Vindo(a)! Esta \u00e9", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "A sua pesquisa n\u00e3o encontrou nenhum documento. Por favor, confirme que todas as palavras est\u00e3o escritas corretamente e que selecionou categorias suficientes.", "all functions, classes, terms": "todas as fun\u00e7\u00f5es, classes, termos", "can be huge": "pode ser enorme", "last updated": "\u00faltima actualiza\u00e7\u00e3o", "lists all sections and subsections": "Listar todas as sec\u00e7\u00f5es e subsec\u00e7\u00f5es", "next chapter": "pr\u00f3ximo cap\u00edtulo", "previous chapter": "cap\u00edtulo anterior", "quick access to all modules": "acesso r\u00e1pido a todos os m\u00f3dulos", "search": "pesquisar", "search this documentation": "Pesquisar esta documenta\u00e7\u00e3o", "the documentation for": "a documenta\u00e7\u00e3o de"}, "plural_expr": "(n != 1)"}); \ No newline at end of file +Documentation.addTranslations({"locale": "pt_PT", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", em", "About these documents": "Sobre estes documentos", "Automatically generated list of changes in version %(version)s": "Lista de altera\u00e7\u00f5es gerada automaticamente na vers\u00e3o %(version)s", "C API changes": "Altera\u00e7\u00f5es na API C", "Changes in Version %(version)s — %(docstitle)s": "Altera\u00e7\u00f5es na Vers\u00e3o%(version)s — %(docstitle)s", "Collapse sidebar": "Recolher painel lateral", "Complete Table of Contents": "Tabela de Conte\u00fados Completa", "Contents": "Conte\u00fado", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "Criado utilizando Sphinx %(sphinx_version)s.", "Expand sidebar": "Expandir painel lateral", "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.": "A partir daqui pode pesquisar estes documentos. Preencha as\npalavras de pesquisa na caixa abaixo e clique em \"pesquisar\".\nNote que a fun\u00e7\u00e3o de pesquisa ir\u00e1 procurar automaticamente\npor todas as palavras. P\u00e1ginas que contenham menos palavras\nn\u00e3o ir\u00e3o aparecer na lista de resultados.", "Full index on one page": "\u00cdndice completo numa p\u00e1gina", "General Index": "\u00cdndice Geral", "Global Module Index": "\u00cdndice Global de M\u00f3dulos", "Go": "Ir", "Hide Search Matches": "Esconder Resultados da Pesquisa", "Index": "\u00cdndice", "Index – %(key)s": "\u00cdndice – %(key)s", "Index pages by letter": "Paginas de \u00edndice por letra", "Indices and tables:": "\u00cdndices e tabelas:", "Last updated on %(last_updated)s.": "\u00daltima actualiza\u00e7\u00e3o em %(last_updated)s.", "Library changes": "Altera\u00e7\u00f5es na biblioteca", "Navigation": "Navega\u00e7\u00e3o", "Next topic": "Pr\u00f3ximo t\u00f3pico", "Other changes": "Outras altera\u00e7\u00f5es", "Overview": "Vis\u00e3o geral", "Permalink to this definition": "Link permanente para esta defini\u00e7\u00e3o", "Permalink to this headline": "Link permanente para este t\u00edtulo", "Please activate JavaScript to enable the search\n functionality.": "Por favor ligue o JavaScript para habilitar a\nfuncionalidade de pesquisa.", "Preparing search...": "A preparar a pesquisa...", "Previous topic": "T\u00f3pico anterior", "Quick search": "Pesquisa r\u00e1pida", "Search": "Pesquisar", "Search Page": "P\u00e1gina de Pesquisa", "Search Results": "Resultados da Pesquisa", "Search finished, found %s page(s) matching the search query.": "Pesquisa conclu\u00edda, foram encontrada(s) %s p\u00e1gina(s) que combinam com a consulta feita.", "Search within %(docstitle)s": "Pesquisar dentro de %(docstitle)s", "Searching": "A Pesquisar", "Show Source": "Exibir Fonte", "Table Of Contents": "Tabela de Conte\u00fados", "This Page": "Esta P\u00e1gina", "Welcome! This is": "Bem Vindo(a)! Esta \u00e9", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "A sua pesquisa n\u00e3o encontrou nenhum documento. Por favor, confirme que todas as palavras est\u00e3o escritas corretamente e que selecionou categorias suficientes.", "all functions, classes, terms": "todas as fun\u00e7\u00f5es, classes, termos", "can be huge": "pode ser enorme", "last updated": "\u00faltima actualiza\u00e7\u00e3o", "lists all sections and subsections": "Listar todas as sec\u00e7\u00f5es e subsec\u00e7\u00f5es", "next chapter": "pr\u00f3ximo cap\u00edtulo", "previous chapter": "cap\u00edtulo anterior", "quick access to all modules": "acesso r\u00e1pido a todos os m\u00f3dulos", "search": "pesquisar", "search this documentation": "Pesquisar esta documenta\u00e7\u00e3o", "the documentation for": "a documenta\u00e7\u00e3o de"}, "plural_expr": "(n != 1)"}); \ No newline at end of file diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo index 77f1f2969..d9784a0ca 100644 Binary files a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo and b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po index e2dc3ece1..73e010beb 100644 --- a/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/pt_PT/LC_MESSAGES/sphinx.po @@ -1,23 +1,23 @@ -# Portuguese (Portugal) translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# Pedro Algarvio , 2013 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" "Last-Translator: Takayuki Shimizukawa \n" -"Language: pt_PT\n" -"Language-Team: Portuguese (Portugal) " -"(http://www.transifex.com/projects/p/sphinx-1/language/pt_PT/)\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Language-Team: Portuguese (Portugal) (http://www.transifex.com/sphinx-doc/sphinx-1/language/pt_PT/)\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 2.2.0\n" +"Language: pt_PT\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinx/config.py:91 #, python-format @@ -178,9 +178,8 @@ msgid "variable" msgstr "variável" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "Parâmetros" +msgstr "" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -470,14 +469,13 @@ msgid "Todo" msgstr "Por fazer" #: sphinx/ext/todo.py:129 -#, fuzzy msgid "<>" -msgstr "entrada original" +msgstr "" #: sphinx/ext/todo.py:132 -#, fuzzy, python-format +#, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "(A <> está localizada em %s, linha %d.)" +msgstr "" #: sphinx/ext/todo.py:141 msgid "original entry" @@ -699,9 +697,7 @@ msgstr "Última actualização em %(last_updated)s." msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" -"Criado utilizando Sphinx " -"%(sphinx_version)s." +msgstr "Criado utilizando Sphinx %(sphinx_version)s." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -728,9 +724,7 @@ msgstr "próximo capítulo" msgid "" "Please activate JavaScript to enable the search\n" " functionality." -msgstr "" -"Por favor ligue o JavaScript para habilitar a\n" -"funcionalidade de pesquisa." +msgstr "Por favor ligue o JavaScript para habilitar a\nfuncionalidade de pesquisa." #: sphinx/themes/basic/search.html:32 msgid "" @@ -738,31 +732,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 "" -"A partir daqui pode pesquisar estes documentos. Preencha as\n" -"palavras de pesquisa na caixa abaixo e clique em \"pesquisar\".\n" -"Note que a função de pesquisa irá procurar automaticamente\n" -"por todas as palavras. Páginas que contenham menos palavras\n" -"não irão aparecer na lista de resultados." +msgstr "A partir daqui pode pesquisar estes documentos. Preencha as\npalavras de pesquisa na caixa abaixo e clique em \"pesquisar\".\nNote que a função de pesquisa irá procurar automaticamente\npor todas as palavras. Páginas que contenham menos palavras\nnão irão aparecer na lista de resultados." -#: 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 "pesquisar" -#: 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:282 msgid "Search Results" msgstr "Resultados da Pesquisa" -#: 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:284 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 "" -"A sua pesquisa não encontrou nenhum documento. Por favor, confirme que " -"todas as palavras estão escritas corretamente e que selecionou categorias" -" suficientes." +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "A sua pesquisa não encontrou nenhum documento. Por favor, confirme que todas as palavras estão escritas corretamente e que selecionou categorias suficientes." #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -824,9 +813,7 @@ msgstr "A preparar a pesquisa..." #: sphinx/themes/basic/static/searchtools.js_t:286 #, 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 combinam com a " -"consulta feita." +msgstr "Pesquisa concluída, foram encontrada(s) %s página(s) que combinam com a consulta feita." #: sphinx/themes/basic/static/searchtools.js_t:338 msgid ", in " @@ -866,9 +853,8 @@ msgid "Release" msgstr "Versão" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "Perigo" +msgstr "" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -891,13 +877,3 @@ msgstr "[imagem: %s]" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[imagem]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%d %B, %Y" - -#~ msgid "%b %d, %Y" -#~ msgstr "%d %b, %Y" - -#~ 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." - diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.js b/sphinx/locale/ro/LC_MESSAGES/sphinx.js new file mode 100644 index 000000000..2ec87345d --- /dev/null +++ b/sphinx/locale/ro/LC_MESSAGES/sphinx.js @@ -0,0 +1 @@ +Documentation.addTranslations({"locale": "ro", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Drepturi de autor %(copyright)s.", "© Copyright %(copyright)s.": "© Drepturi de autor %(copyright)s.", ", in ": ", \u00een", "About these documents": "Despre aceste documente", "Automatically generated list of changes in version %(version)s": "Lista de schimb\u0103ri generat\u0103 automat pentru versiunea %(version)s", "C API changes": "Schimb\u0103ri \u00een API C", "Changes in Version %(version)s — %(docstitle)s": "Schimb\u0103ri \u00een Versiunea %(version)s — %(docstitle)s", "Collapse sidebar": "Ascundere bar\u0103 lateral\u0103", "Complete Table of Contents": "Cuprinsul Complet", "Contents": "Cuprins", "Copyright": "Drepturi de autor", "Created using Sphinx %(sphinx_version)s.": "Generat cu Sphinx %(sphinx_version)s.", "Expand sidebar": "Expandare bar\u0103 lateral\u0103", "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.": "Aici po\u021bi c\u0103uta aceste documente. Completeaz\u0103 cuvintele\n\u00een c\u0103su\u021ba de mai jos \u0219i apas\u0103 \"caut\u0103\". Func\u021bia de c\u0103utare\nva c\u0103uta automat dup\u0103 toate cuvintele. Paginile\ncare con\u021bin mai pu\u021bine cuvinte nu vor ap\u0103rea \u00een lista de rezultate.", "Full index on one page": "Index complet", "General Index": "Index General", "Global Module Index": "Index Module Globale", "Go": "Caut\u0103", "Hide Search Matches": "Ascunde Rezultatele C\u0103ut\u0103rii", "Index": "Index", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Indexeaz\u0103 paginile dupa liter\u0103", "Indices and tables:": "Indici \u0219i tabele:", "Last updated on %(last_updated)s.": "Ultima actualizare la %(last_updated)s.", "Library changes": "Schimb\u0103ri \u00een bibliotec\u0103", "Navigation": "Navigare", "Next topic": "Subiectul urm\u0103tor", "Other changes": "Alte schimb\u0103ri", "Overview": "Prezentare general\u0103", "Permalink to this definition": "Link permanent la aceast\u0103 defini\u021bie", "Permalink to this headline": "Link permanent la acest titlu", "Please activate JavaScript to enable the search\n functionality.": "Activeaz\u0103 JavaScript pentru a permite\nfunc\u021bia de c\u0103utare.", "Preparing search...": "Se preg\u0103te\u0219te c\u0103utarea...", "Previous topic": "Subiectul precedent", "Quick search": "C\u0103utare rapid\u0103", "Search": "C\u0103utare", "Search Page": "Pagin\u0103 de C\u0103utare", "Search Results": "Rezultatele C\u0103ut\u0103rii", "Search finished, found %s page(s) matching the search query.": "C\u0103utare finalizat\u0103, au fost g\u0103site %s pagini care au corespuns c\u0103ut\u0103rii.", "Search within %(docstitle)s": "Caut\u0103 \u00een %(docstitle)s", "Searching": "C\u0103utare", "Show Source": "Vezi Sursa", "Table Of Contents": "Cuprins", "This Page": "Aceast\u0103 Pagin\u0103", "Welcome! This is": "Bine ai venit! Acesta este", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "C\u0103utarea nu a identificat nici un document. Te rog s\u0103 te asiguri c\u0103 toate cuvintele sunt scrise corect \u0219i c\u0103 ai selectat suficiente categorii.", "all functions, classes, terms": "toate func\u021biile, clasele, termenii", "can be huge": "poate fi extrem de mare", "last updated": "ultima actualizare", "lists all sections and subsections": "lista tuturor sec\u021biunilor si a subsec\u021biunilor", "next chapter": "capitolul urm\u0103tor", "previous chapter": "capitolul precedent", "quick access to all modules": "acces rapid la toate modulele", "search": "c\u0103utare", "search this documentation": "caut\u0103 \u00een aceast\u0103 documenta\u021bie", "the documentation for": "documenta\u021bia pentru"}, "plural_expr": "(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1))"}); \ No newline at end of file diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.mo b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo new file mode 100644 index 000000000..756b65623 Binary files /dev/null and b/sphinx/locale/ro/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ro/LC_MESSAGES/sphinx.po b/sphinx/locale/ro/LC_MESSAGES/sphinx.po new file mode 100644 index 000000000..79f0f65ad --- /dev/null +++ b/sphinx/locale/ro/LC_MESSAGES/sphinx.po @@ -0,0 +1,879 @@ +# Translations template for Sphinx. +# Copyright (C) 2016 ORGANIZATION +# This file is distributed under the same license as the Sphinx project. +# +# Translators: +# Razvan Stefanescu , 2015-2016 +msgid "" +msgstr "" +"Project-Id-Version: Sphinx\n" +"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" +"POT-Creation-Date: 2016-03-06 21:58+0900\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" +"Last-Translator: Takayuki Shimizukawa \n" +"Language-Team: Romanian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ro/)\n" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" +"Generated-By: Babel 2.2.0\n" +"Language: ro\n" +"Plural-Forms: nplurals=3; plural=(n==1?0:(((n%100>19)||((n%100==0)&&(n!=0)))?2:1));\n" + +#: sphinx/config.py:91 +#, python-format +msgid "Fig. %s" +msgstr "Fig. %s" + +#: sphinx/config.py:92 +#, python-format +msgid "Table %s" +msgstr "Tabelul %s" + +#: sphinx/config.py:93 +#, python-format +msgid "Listing %s" +msgstr "Cod %s" + +#: sphinx/config.py:100 +#, python-format +msgid "%s %s documentation" +msgstr "%s %s documentație" + +#: sphinx/environment.py:1829 +#, python-format +msgid "see %s" +msgstr "vezi %s" + +#: sphinx/environment.py:1833 +#, python-format +msgid "see also %s" +msgstr "vezi și %s" + +#: sphinx/environment.py:1893 +msgid "Symbols" +msgstr "Simboluri" + +#: sphinx/roles.py:193 +#, python-format +msgid "Python Enhancement Proposals; PEP %s" +msgstr "Propuneri de Îmbunătățire Python; PEP %s" + +#: sphinx/transforms.py:56 sphinx/writers/latex.py:374 +#: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222 +msgid "MMMM dd, YYYY" +msgstr "" + +#: sphinx/builders/changes.py:75 +msgid "Builtins" +msgstr "Integrate" + +#: sphinx/builders/changes.py:77 +msgid "Module level" +msgstr "Nivelul modul" + +#: sphinx/builders/html.py:295 +msgid "MMM dd, YYYY" +msgstr "" + +#: sphinx/builders/html.py:315 sphinx/themes/basic/defindex.html:30 +msgid "General Index" +msgstr "Index General" + +#: sphinx/builders/html.py:315 +msgid "index" +msgstr "index" + +#: sphinx/builders/html.py:376 +msgid "next" +msgstr "următor" + +#: sphinx/builders/html.py:385 +msgid "previous" +msgstr "precedent" + +#: sphinx/builders/latex.py:180 sphinx/builders/texinfo.py:199 +msgid " (in " +msgstr "(în" + +#: sphinx/directives/other.py:149 +msgid "Section author: " +msgstr "Autorul secțiunii:" + +#: sphinx/directives/other.py:151 +msgid "Module author: " +msgstr "Autorul modulului:" + +#: sphinx/directives/other.py:153 +msgid "Code author: " +msgstr "Autorul codului:" + +#: sphinx/directives/other.py:155 +msgid "Author: " +msgstr "Autor:" + +#: sphinx/domains/__init__.py:275 +#, python-format +msgid "%s %s" +msgstr "%s %s" + +#: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605 +#: sphinx/domains/python.py:124 +msgid "Parameters" +msgstr "Parametrii" + +#: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614 +#: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136 +msgid "Returns" +msgstr "Întoarce" + +#: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130 +#: sphinx/domains/python.py:138 +msgid "Return type" +msgstr "Tipul întors" + +#: sphinx/domains/c.py:177 +#, python-format +msgid "%s (C function)" +msgstr "%s (funcție C)" + +#: sphinx/domains/c.py:179 +#, python-format +msgid "%s (C member)" +msgstr "%s (membru C)" + +#: sphinx/domains/c.py:181 +#, python-format +msgid "%s (C macro)" +msgstr "%s (macro C)" + +#: sphinx/domains/c.py:183 +#, python-format +msgid "%s (C type)" +msgstr "%s (tip C)" + +#: sphinx/domains/c.py:185 +#, python-format +msgid "%s (C variable)" +msgstr "%s (variabilă C)" + +#: sphinx/domains/c.py:242 sphinx/domains/cpp.py:3953 +#: sphinx/domains/javascript.py:164 sphinx/domains/python.py:589 +msgid "function" +msgstr "funcție" + +#: sphinx/domains/c.py:243 sphinx/domains/cpp.py:3954 +msgid "member" +msgstr "membru" + +#: sphinx/domains/c.py:244 +msgid "macro" +msgstr "macro" + +#: sphinx/domains/c.py:245 sphinx/domains/cpp.py:3955 +msgid "type" +msgstr "tip" + +#: sphinx/domains/c.py:246 +msgid "variable" +msgstr "variabilă" + +#: sphinx/domains/cpp.py:3608 +msgid "Template Parameters" +msgstr "" + +#: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 +msgid "Throws" +msgstr "Generează" + +#: sphinx/domains/cpp.py:3733 +#, python-format +msgid "%s (C++ type)" +msgstr "%s (tip C++)" + +#: sphinx/domains/cpp.py:3744 +#, python-format +msgid "%s (C++ member)" +msgstr "%s (membru C++)" + +#: sphinx/domains/cpp.py:3755 +#, python-format +msgid "%s (C++ function)" +msgstr "%s (funcție C++)" + +#: sphinx/domains/cpp.py:3766 +#, python-format +msgid "%s (C++ class)" +msgstr "%s (clasă C++)" + +#: sphinx/domains/cpp.py:3786 +#, python-format +msgid "%s (C++ enum)" +msgstr "%s (enumerator C++)" + +#: sphinx/domains/cpp.py:3816 +#, python-format +msgid "%s (C++ enumerator)" +msgstr "%s (enumerator C++)" + +#: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165 +#: sphinx/domains/python.py:591 +msgid "class" +msgstr "clasă" + +#: sphinx/domains/cpp.py:3956 +msgid "enum" +msgstr "enumerator" + +#: sphinx/domains/cpp.py:3957 +msgid "enumerator" +msgstr "enumerator" + +#: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282 +#, python-format +msgid "%s() (built-in function)" +msgstr "%s() (funcție integrată)" + +#: sphinx/domains/javascript.py:107 sphinx/domains/python.py:346 +#, python-format +msgid "%s() (%s method)" +msgstr "%s() (metoda %s)" + +#: sphinx/domains/javascript.py:109 +#, python-format +msgid "%s() (class)" +msgstr "%s() (clasă)" + +#: sphinx/domains/javascript.py:111 +#, python-format +msgid "%s (global variable or constant)" +msgstr "%s (variabilă globală sau constantă)" + +#: sphinx/domains/javascript.py:113 sphinx/domains/python.py:384 +#, python-format +msgid "%s (%s attribute)" +msgstr "%s (atribut %s)" + +#: sphinx/domains/javascript.py:122 +msgid "Arguments" +msgstr "Argumente" + +#: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590 +msgid "data" +msgstr "data" + +#: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596 +msgid "attribute" +msgstr "atribut" + +#: sphinx/domains/python.py:129 +msgid "Variables" +msgstr "Variabile" + +#: sphinx/domains/python.py:133 +msgid "Raises" +msgstr "Generează" + +#: sphinx/domains/python.py:283 sphinx/domains/python.py:340 +#: sphinx/domains/python.py:352 sphinx/domains/python.py:365 +#, python-format +msgid "%s() (in module %s)" +msgstr "%s() (în modulul %s)" + +#: sphinx/domains/python.py:286 +#, python-format +msgid "%s (built-in variable)" +msgstr "%s (variabilă integrată)" + +#: sphinx/domains/python.py:287 sphinx/domains/python.py:378 +#, python-format +msgid "%s (in module %s)" +msgstr "%s (în modulul %s)" + +#: sphinx/domains/python.py:303 +#, python-format +msgid "%s (built-in class)" +msgstr "%s (clasă integrată)" + +#: sphinx/domains/python.py:304 +#, python-format +msgid "%s (class in %s)" +msgstr "%s (clasa în %s)" + +#: sphinx/domains/python.py:344 +#, python-format +msgid "%s() (%s.%s method)" +msgstr "%s() (metoda %s.%s)" + +#: sphinx/domains/python.py:356 +#, python-format +msgid "%s() (%s.%s static method)" +msgstr "%s() (metoda statică %s.%s)" + +#: sphinx/domains/python.py:359 +#, python-format +msgid "%s() (%s static method)" +msgstr "%s() (metoda statică %s)" + +#: sphinx/domains/python.py:369 +#, python-format +msgid "%s() (%s.%s class method)" +msgstr "%s() (metoda clasei %s.%s)" + +#: sphinx/domains/python.py:372 +#, python-format +msgid "%s() (%s class method)" +msgstr "%s() (metoda clasei %s)" + +#: sphinx/domains/python.py:382 +#, python-format +msgid "%s (%s.%s attribute)" +msgstr "%s (atributul %s.%s)" + +#: sphinx/domains/python.py:463 +#, python-format +msgid "%s (module)" +msgstr "%s (modul)" + +#: sphinx/domains/python.py:520 +msgid "Python Module Index" +msgstr "Indexul de Module Python" + +#: sphinx/domains/python.py:521 +msgid "modules" +msgstr "module" + +#: sphinx/domains/python.py:567 +msgid "Deprecated" +msgstr "Învechit" + +#: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183 +msgid "exception" +msgstr "excepție" + +#: sphinx/domains/python.py:593 +msgid "method" +msgstr "metodă" + +#: sphinx/domains/python.py:594 +msgid "class method" +msgstr "metoda clasei" + +#: sphinx/domains/python.py:595 +msgid "static method" +msgstr "metodă statică" + +#: sphinx/domains/python.py:597 sphinx/locale/__init__.py:179 +msgid "module" +msgstr "modul" + +#: sphinx/domains/python.py:762 +msgid " (deprecated)" +msgstr "(învechit)" + +#: sphinx/domains/rst.py:55 +#, python-format +msgid "%s (directive)" +msgstr "%s (directivă)" + +#: sphinx/domains/rst.py:57 +#, python-format +msgid "%s (role)" +msgstr "%s (rol)" + +#: sphinx/domains/rst.py:106 +msgid "directive" +msgstr "directivă" + +#: sphinx/domains/rst.py:107 +msgid "role" +msgstr "rol" + +#: sphinx/domains/std.py:73 sphinx/domains/std.py:89 +#, python-format +msgid "environment variable; %s" +msgstr "variabilă de mediu; %s" + +#: sphinx/domains/std.py:185 +#, python-format +msgid "%scommand line option; %s" +msgstr "%sopțiune în linia de comandă; %s" + +#: sphinx/domains/std.py:433 +msgid "glossary term" +msgstr "termen de glosar" + +#: sphinx/domains/std.py:434 +msgid "grammar token" +msgstr "element de gramatică" + +#: sphinx/domains/std.py:435 +msgid "reference label" +msgstr "etichetă de referință" + +#: sphinx/domains/std.py:437 +msgid "environment variable" +msgstr "variabilă de mediu" + +#: sphinx/domains/std.py:438 +msgid "program option" +msgstr "opțiune a programului" + +#: sphinx/domains/std.py:471 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:363 sphinx/writers/texinfo.py:481 +msgid "Index" +msgstr "Index" + +#: sphinx/domains/std.py:472 +msgid "Module Index" +msgstr "Index al modulelor" + +#: sphinx/domains/std.py:473 sphinx/themes/basic/defindex.html:25 +msgid "Search Page" +msgstr "Pagină de Căutare" + +#: sphinx/ext/autodoc.py:1265 +#, python-format +msgid " Bases: %s" +msgstr "Baze: %s" + +#: sphinx/ext/autodoc.py:1318 +#, python-format +msgid "alias of :class:`%s`" +msgstr "alias pentru :class:`%s`" + +#: sphinx/ext/graphviz.py:309 sphinx/ext/graphviz.py:318 +#, python-format +msgid "[graph: %s]" +msgstr "[grafic: %s]" + +#: sphinx/ext/graphviz.py:311 sphinx/ext/graphviz.py:320 +msgid "[graph]" +msgstr "[grafic]" + +#: sphinx/ext/intersphinx.py:359 +#, python-format +msgid "(in %s v%s)" +msgstr "(în %s v%s)" + +#: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:99 +msgid "[source]" +msgstr "[sursă]" + +#: sphinx/ext/todo.py:56 +msgid "Todo" +msgstr "De făcut" + +#: sphinx/ext/todo.py:129 +msgid "<>" +msgstr "" + +#: sphinx/ext/todo.py:132 +#, python-format +msgid "(The <> is located in %s, line %d.)" +msgstr "" + +#: sphinx/ext/todo.py:141 +msgid "original entry" +msgstr "înregistrarea inițială" + +#: sphinx/ext/viewcode.py:162 +msgid "[docs]" +msgstr "[documentație]" + +#: sphinx/ext/viewcode.py:176 +msgid "Module code" +msgstr "Codul modulului" + +#: sphinx/ext/viewcode.py:182 +#, python-format +msgid "

Source code for %s

" +msgstr "

Codul sursă pentru %s

" + +#: sphinx/ext/viewcode.py:208 +msgid "Overview: module code" +msgstr "Prezentare generală: codul modulului" + +#: sphinx/ext/viewcode.py:209 +msgid "

All modules for which code is available

" +msgstr "

Toate modulele pentru care este disponibil codul sursă

" + +#: sphinx/locale/__init__.py:159 +msgid "Attention" +msgstr "Atenție" + +#: sphinx/locale/__init__.py:160 +msgid "Caution" +msgstr "Avertisment" + +#: sphinx/locale/__init__.py:161 +msgid "Danger" +msgstr "Pericol" + +#: sphinx/locale/__init__.py:162 +msgid "Error" +msgstr "Eroare" + +#: sphinx/locale/__init__.py:163 +msgid "Hint" +msgstr "Sugestie" + +#: sphinx/locale/__init__.py:164 +msgid "Important" +msgstr "Important" + +#: sphinx/locale/__init__.py:165 +msgid "Note" +msgstr "Notă" + +#: sphinx/locale/__init__.py:166 +msgid "See also" +msgstr "Vezi și" + +#: sphinx/locale/__init__.py:167 +msgid "Tip" +msgstr "Sfat" + +#: sphinx/locale/__init__.py:168 +msgid "Warning" +msgstr "Atenționare" + +#: sphinx/locale/__init__.py:172 +#, python-format +msgid "New in version %s" +msgstr "Nou în versiunea %s" + +#: sphinx/locale/__init__.py:173 +#, python-format +msgid "Changed in version %s" +msgstr "Schimbat în versiunea %s" + +#: sphinx/locale/__init__.py:174 +#, python-format +msgid "Deprecated since version %s" +msgstr "Învechit începând cu versiunea %s" + +#: sphinx/locale/__init__.py:180 +msgid "keyword" +msgstr "cuvânt cheie" + +#: sphinx/locale/__init__.py:181 +msgid "operator" +msgstr "operator" + +#: sphinx/locale/__init__.py:182 +msgid "object" +msgstr "obiect" + +#: sphinx/locale/__init__.py:184 +msgid "statement" +msgstr "declarație" + +#: sphinx/locale/__init__.py:185 +msgid "built-in function" +msgstr "funcție integrată" + +#: 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 "Cuprins" + +#: sphinx/themes/agogo/layout.html:51 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 "Căutare" + +#: sphinx/themes/agogo/layout.html:54 sphinx/themes/basic/searchbox.html:15 +msgid "Go" +msgstr "Caută" + +#: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 +msgid "Show Source" +msgstr "Vezi Sursa" + +#: sphinx/themes/basic/defindex.html:11 +msgid "Overview" +msgstr "Prezentare generală" + +#: sphinx/themes/basic/defindex.html:15 +msgid "Welcome! This is" +msgstr "Bine ai venit! Acesta este" + +#: sphinx/themes/basic/defindex.html:16 +msgid "the documentation for" +msgstr "documentația pentru" + +#: sphinx/themes/basic/defindex.html:17 +msgid "last updated" +msgstr "ultima actualizare" + +#: sphinx/themes/basic/defindex.html:20 +msgid "Indices and tables:" +msgstr "Indici și tabele:" + +#: sphinx/themes/basic/defindex.html:23 +msgid "Complete Table of Contents" +msgstr "Cuprinsul Complet" + +#: sphinx/themes/basic/defindex.html:24 +msgid "lists all sections and subsections" +msgstr "lista tuturor secțiunilor si a subsecțiunilor" + +#: sphinx/themes/basic/defindex.html:26 +msgid "search this documentation" +msgstr "caută în această documentație" + +#: sphinx/themes/basic/defindex.html:28 +msgid "Global Module Index" +msgstr "Index Module Globale" + +#: sphinx/themes/basic/defindex.html:29 +msgid "quick access to all modules" +msgstr "acces rapid la toate modulele" + +#: sphinx/themes/basic/defindex.html:31 +msgid "all functions, classes, terms" +msgstr "toate funcțiile, clasele, termenii" + +#: sphinx/themes/basic/genindex-single.html:35 +#, python-format +msgid "Index – %(key)s" +msgstr "Index – %(key)s" + +#: sphinx/themes/basic/genindex-single.html:63 +#: sphinx/themes/basic/genindex-split.html:24 +#: sphinx/themes/basic/genindex-split.html:38 +#: sphinx/themes/basic/genindex.html:74 +msgid "Full index on one page" +msgstr "Index complet" + +#: sphinx/themes/basic/genindex-split.html:16 +msgid "Index pages by letter" +msgstr "Indexează paginile dupa literă" + +#: sphinx/themes/basic/genindex-split.html:25 +msgid "can be huge" +msgstr "poate fi extrem de mare" + +#: sphinx/themes/basic/layout.html:29 +msgid "Navigation" +msgstr "Navigare" + +#: sphinx/themes/basic/layout.html:122 +#, python-format +msgid "Search within %(docstitle)s" +msgstr "Caută în %(docstitle)s" + +#: sphinx/themes/basic/layout.html:131 +msgid "About these documents" +msgstr "Despre aceste documente" + +#: sphinx/themes/basic/layout.html:140 +msgid "Copyright" +msgstr "Drepturi de autor" + +#: sphinx/themes/basic/layout.html:189 +#, python-format +msgid "© Copyright %(copyright)s." +msgstr "© Drepturi de autor %(copyright)s." + +#: sphinx/themes/basic/layout.html:191 +#, python-format +msgid "© Copyright %(copyright)s." +msgstr "© Drepturi de autor %(copyright)s." + +#: sphinx/themes/basic/layout.html:195 +#, python-format +msgid "Last updated on %(last_updated)s." +msgstr "Ultima actualizare la %(last_updated)s." + +#: sphinx/themes/basic/layout.html:198 +#, python-format +msgid "" +"Created using Sphinx " +"%(sphinx_version)s." +msgstr "Generat cu Sphinx %(sphinx_version)s." + +#: sphinx/themes/basic/opensearch.xml:4 +#, python-format +msgid "Search %(docstitle)s" +msgstr "Caută %(docstitle)s" + +#: sphinx/themes/basic/relations.html:11 +msgid "Previous topic" +msgstr "Subiectul precedent" + +#: sphinx/themes/basic/relations.html:13 +msgid "previous chapter" +msgstr "capitolul precedent" + +#: sphinx/themes/basic/relations.html:16 +msgid "Next topic" +msgstr "Subiectul următor" + +#: sphinx/themes/basic/relations.html:18 +msgid "next chapter" +msgstr "capitolul următor" + +#: sphinx/themes/basic/search.html:27 +msgid "" +"Please activate JavaScript to enable the search\n" +" functionality." +msgstr "Activează JavaScript pentru a permite\nfuncția de căutare." + +#: 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 "Aici poți căuta aceste documente. Completează cuvintele\nîn căsuța de mai jos și apasă \"caută\". Funcția de căutare\nva căuta automat după toate cuvintele. Paginile\ncare conțin mai puține cuvinte nu vor apărea în lista de rezultate." + +#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/searchresults.html:17 +msgid "search" +msgstr "căutare" + +#: sphinx/themes/basic/search.html:43 +#: sphinx/themes/basic/searchresults.html:21 +#: sphinx/themes/basic/static/searchtools.js_t:282 +msgid "Search Results" +msgstr "Rezultatele Căutării" + +#: sphinx/themes/basic/search.html:45 +#: sphinx/themes/basic/searchresults.html:23 +#: sphinx/themes/basic/static/searchtools.js_t:284 +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 "Căutarea nu a identificat nici un document. Te rog să te asiguri că toate cuvintele sunt scrise corect și că ai selectat suficiente categorii." + +#: sphinx/themes/basic/searchbox.html:12 +msgid "Quick search" +msgstr "Căutare rapidă" + +#: sphinx/themes/basic/sourcelink.html:12 +msgid "This Page" +msgstr "Această Pagină" + +#: sphinx/themes/basic/changes/frameset.html:5 +#: sphinx/themes/basic/changes/versionchanges.html:12 +#, python-format +msgid "Changes in Version %(version)s — %(docstitle)s" +msgstr "Schimbări în Versiunea %(version)s — %(docstitle)s" + +#: sphinx/themes/basic/changes/rstsource.html:5 +#, python-format +msgid "%(filename)s — %(docstitle)s" +msgstr "%(filename)s — %(docstitle)s" + +#: sphinx/themes/basic/changes/versionchanges.html:17 +#, python-format +msgid "Automatically generated list of changes in version %(version)s" +msgstr "Lista de schimbări generată automat pentru versiunea %(version)s" + +#: sphinx/themes/basic/changes/versionchanges.html:18 +msgid "Library changes" +msgstr "Schimbări în bibliotecă" + +#: sphinx/themes/basic/changes/versionchanges.html:23 +msgid "C API changes" +msgstr "Schimbări în API C" + +#: sphinx/themes/basic/changes/versionchanges.html:25 +msgid "Other changes" +msgstr "Alte schimbări" + +#: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668 +#: sphinx/writers/html.py:673 +msgid "Permalink to this headline" +msgstr "Link permanent la acest titlu" + +#: sphinx/themes/basic/static/doctools.js_t:175 sphinx/writers/html.py:105 +msgid "Permalink to this definition" +msgstr "Link permanent la această definiție" + +#: sphinx/themes/basic/static/doctools.js_t:208 +msgid "Hide Search Matches" +msgstr "Ascunde Rezultatele Căutării" + +#: sphinx/themes/basic/static/searchtools.js_t:121 +msgid "Searching" +msgstr "Căutare" + +#: sphinx/themes/basic/static/searchtools.js_t:126 +msgid "Preparing search..." +msgstr "Se pregătește căutarea..." + +#: sphinx/themes/basic/static/searchtools.js_t:286 +#, python-format +msgid "Search finished, found %s page(s) matching the search query." +msgstr "Căutare finalizată, au fost găsite %s pagini care au corespuns căutării." + +#: sphinx/themes/basic/static/searchtools.js_t:338 +msgid ", in " +msgstr ", în" + +#: sphinx/themes/classic/static/sidebar.js_t:83 +msgid "Expand sidebar" +msgstr "Expandare bară laterală" + +#: sphinx/themes/classic/static/sidebar.js_t:96 +#: sphinx/themes/classic/static/sidebar.js_t:124 +msgid "Collapse sidebar" +msgstr "Ascundere bară laterală" + +#: sphinx/themes/haiku/layout.html:24 +msgid "Contents" +msgstr "Cuprins" + +#: sphinx/writers/html.py:349 +msgid "Permalink to this code" +msgstr "Link permanent la acest cod" + +#: sphinx/writers/html.py:353 +msgid "Permalink to this image" +msgstr "Link permanent la această imagine" + +#: sphinx/writers/html.py:355 +msgid "Permalink to this toctree" +msgstr "Link permanent la acest cuprins" + +#: sphinx/writers/html.py:677 +msgid "Permalink to this table" +msgstr "Link permanent la acest tabel" + +#: sphinx/writers/latex.py:361 +msgid "Release" +msgstr "Versiune" + +#: sphinx/writers/latex.py:427 +msgid "page" +msgstr "" + +#: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 +#: sphinx/writers/texinfo.py:620 +msgid "Footnotes" +msgstr "Note de subsol" + +#: sphinx/writers/latex.py:1022 +msgid "continued from previous page" +msgstr "continuare din pagina precedentă" + +#: sphinx/writers/latex.py:1028 +msgid "Continued on next page" +msgstr "Se continuă pe pagina următoare" + +#: sphinx/writers/manpage.py:282 sphinx/writers/text.py:582 +#, python-format +msgid "[image: %s]" +msgstr "[figura: %s]" + +#: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 +msgid "[image]" +msgstr "[figură]" diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.js b/sphinx/locale/ru/LC_MESSAGES/sphinx.js index b84b62826..f62c43d48 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "ru", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© \u0410\u0432\u0442\u043e\u0440\u0441\u043a\u0438\u0435 \u043f\u0440\u0430\u0432\u0430 %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", \u0432", "About these documents": "\u041e\u0431 \u044d\u0442\u0438\u0445 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0445", "Automatically generated list of changes in version %(version)s": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u043e\u0437\u0434\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 \u0432\u0435\u0440\u0441\u0438\u0438 %(version)s", "C API changes": "\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0432 API C", "Changes in Version %(version)s — %(docstitle)s": "\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0432 \u0432\u0435\u0440\u0441\u0438\u0438 %(version)s — %(docstitle)s", "Collapse sidebar": "\u0421\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0431\u043e\u043a\u043e\u0432\u0443\u044e \u043f\u0430\u043d\u0435\u043b\u044c", "Complete Table of Contents": "\u041f\u043e\u043b\u043d\u043e\u0435 \u043e\u0433\u043b\u0430\u0432\u043b\u0435\u043d\u0438\u0435", "Contents": "\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435", "Copyright": "\u0410\u0432\u0442\u043e\u0440\u0441\u043a\u0438\u0435 \u043f\u0440\u0430\u0432\u0430", "Created using Sphinx %(sphinx_version)s.": "\u0421\u043e\u0437\u0434\u0430\u043d\u043e \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e Sphinx %(sphinx_version)s.", "Enter search terms or a module, class or function name.": "\u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u0441\u043b\u043e\u0432\u0430 \u0434\u043b\u044f \u043f\u043e\u0438\u0441\u043a\u0430 \u0438\u043b\u0438 \u0438\u043c\u044f \u043c\u043e\u0434\u0443\u043b\u044f, \u043a\u043b\u0430\u0441\u0441\u0430 \u0438\u043b\u0438 \u0444\u0443\u043d\u043a\u0446\u0438\u0438.", "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", "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.": "\u0417\u0434\u0435\u0441\u044c \u043c\u043e\u0436\u043d\u043e \u0434\u0435\u043b\u0430\u0442\u044c \u043f\u043e\u0438\u0441\u043a \u043f\u043e \u0432\u0441\u0435\u043c \u0440\u0430\u0437\u0434\u0435\u043b\u0430\u043c \u044d\u0442\u043e\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438. \u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043a\u043b\u044e\u0447\u0435\u0432\u044b\u0435 \u0441\u043b\u043e\u0432\u0430 \u0432 \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0435 \u043f\u043e\u043b\u0435 \u0438 \u043d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443 \u00ab\u0438\u0441\u043a\u0430\u0442\u044c\u00bb. \u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435: \u0431\u0443\u0434\u0443\u0442 \u043d\u0430\u0439\u0434\u0435\u043d\u044b \u0442\u043e\u043b\u044c\u043a\u043e \u0442\u0435 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b, \u0432 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0435\u0441\u0442\u044c \u0432\u0441\u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0435 \u0441\u043b\u043e\u0432\u0430. \u0421\u0442\u0440\u0430\u043d\u0438\u0446\u044b, \u0433\u0434\u0435 \u0435\u0441\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u0447\u0430\u0441\u0442\u044c \u044d\u0442\u0438\u0445 \u0441\u043b\u043e\u0432, \u043e\u0442\u043e\u0431\u0440\u0430\u043d\u044b \u043d\u0435 \u0431\u0443\u0434\u0443\u0442.", "Full index on one page": "\u041f\u043e\u043b\u043d\u044b\u0439 \u0430\u043b\u0444\u0430\u0432\u0438\u0442\u043d\u044b\u0439 \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c \u043d\u0430 \u043e\u0434\u043d\u043e\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435", "General Index": "\u0410\u043b\u0444\u0430\u0432\u0438\u0442\u043d\u044b\u0439 \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c", "Global Module Index": "\u0410\u043b\u0444\u0430\u0432\u0438\u0442\u043d\u044b\u0439 \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c \u043c\u043e\u0434\u0443\u043b\u0435\u0439", "Go": "\u0418\u0441\u043a\u0430\u0442\u044c", "Hide Search Matches": "\u0421\u043d\u044f\u0442\u044c \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u0438\u0435", "Index": "\u0410\u043b\u0444\u0430\u0432\u0438\u0442\u043d\u044b\u0439 \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c", "Index – %(key)s": "\u0410\u043b\u0444\u0430\u0432\u0438\u0442\u043d\u044b\u0439 \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c – %(key)s", "Index pages by letter": "\u0423\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u0438 \u043f\u043e \u0431\u0443\u043a\u0432\u0430\u043c \u0430\u043b\u0444\u0430\u0432\u0438\u0442\u0430", "Indices and tables:": "\u0422\u0430\u0431\u043b\u0438\u0446\u044b \u0438 \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u0438:", "Last updated on %(last_updated)s.": "\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u043e: %(last_updated)s.", "Library changes": "\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0432 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0435", "Navigation": "\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f", "Next topic": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u0440\u0430\u0437\u0434\u0435\u043b", "Other changes": "\u0414\u0440\u0443\u0433\u0438\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "Overview": "\u041e\u0431\u0437\u043e\u0440", "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", "Please activate JavaScript to enable the search\n functionality.": "\u0414\u043b\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u043f\u043e\u0438\u0441\u043a\u0430 \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435 JavaScript \u0432 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0435.", "Preparing search...": "\u041f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u043f\u043e\u0438\u0441\u043a\u0430\u2026", "Previous topic": "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0438\u0439 \u0440\u0430\u0437\u0434\u0435\u043b", "Quick search": "\u0411\u044b\u0441\u0442\u0440\u044b\u0439 \u043f\u043e\u0438\u0441\u043a", "Search": "\u041f\u043e\u0438\u0441\u043a", "Search Page": "\u041f\u043e\u0438\u0441\u043a", "Search Results": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u043f\u043e\u0438\u0441\u043a\u0430", "Search finished, found %s page(s) matching the search query.": "\u041f\u043e\u0438\u0441\u043a \u0437\u0430\u0432\u0435\u0440\u0448\u0451\u043d, \u043d\u0430\u0439\u0434\u0435\u043d\u043e %s \u0441\u0442\u0440\u0430\u043d\u0438\u0446, \u0443\u0434\u043e\u0432\u043b\u0435\u0442\u0432\u043e\u0440\u044f\u044e\u0449\u0438\u0445 \u0437\u0430\u043f\u0440\u043e\u0441\u0443.", "Search within %(docstitle)s": "\u041f\u043e\u0438\u0441\u043a \u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0435 \u00ab%(docstitle)s\u00bb", "Searching": "\u0418\u0434\u0451\u0442 \u043f\u043e\u0438\u0441\u043a", "Show Source": "\u0418\u0441\u0445\u043e\u0434\u043d\u044b\u0439 \u0442\u0435\u043a\u0441\u0442", "Table Of Contents": "\u041e\u0433\u043b\u0430\u0432\u043b\u0435\u043d\u0438\u0435", "This Page": "\u042d\u0442\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430", "Welcome! This is": "\u0414\u043e\u0431\u0440\u043e \u043f\u043e\u0436\u0430\u043b\u043e\u0432\u0430\u0442\u044c! \u042d\u0442\u043e", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "\u041f\u043e \u0432\u0430\u0448\u0435\u043c\u0443 \u043f\u043e\u0438\u0441\u043a\u0443 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e \u043d\u0438 \u043e\u0434\u043d\u043e\u0433\u043e \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430. \u041f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435, \u0447\u0442\u043e \u0432\u0441\u0435 \u0441\u043b\u043e\u0432\u0430 \u043d\u0430\u043f\u0438\u0441\u0430\u043d\u044b \u0431\u0435\u0437 \u043e\u0448\u0438\u0431\u043e\u043a, \u0438 \u0447\u0442\u043e \u0432\u044b \u0432\u044b\u0431\u0440\u0430\u043b\u0438 \u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0439.", "all functions, classes, terms": "\u0432\u0441\u0435 \u0444\u0443\u043d\u043a\u0446\u0438\u0438, \u043a\u043b\u0430\u0441\u0441\u044b, \u043f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435 \u0438 \u043a\u043e\u043d\u0441\u0442\u0430\u043d\u0442\u044b", "can be huge": "\u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043e\u0447\u0435\u043d\u044c \u0431\u043e\u043b\u044c\u0448\u0438\u043c", "last updated": "\u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435", "lists all sections and subsections": "\u0441\u043f\u0438\u0441\u043e\u043a \u0432\u0441\u0435\u0445 \u0440\u0430\u0437\u0434\u0435\u043b\u043e\u0432 \u0438 \u043f\u043e\u0434\u0440\u0430\u0437\u0434\u0435\u043b\u043e\u0432", "next chapter": "\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0430\u044f \u0433\u043b\u0430\u0432\u0430", "previous chapter": "\u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0430\u044f \u0433\u043b\u0430\u0432\u0430", "quick access to all modules": "\u0441\u0432\u043e\u0434\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a \u0432\u0441\u0435\u0445 \u043c\u043e\u0434\u0443\u043b\u0435\u0439", "search": "\u0438\u0441\u043a\u0430\u0442\u044c", "search this documentation": "\u043f\u043e\u0438\u0441\u043a \u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "the documentation for": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f"}, "plural_expr": "(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)"}); \ No newline at end of file +Documentation.addTranslations({"locale": "ru", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© \u0410\u0432\u0442\u043e\u0440\u0441\u043a\u0438\u0435 \u043f\u0440\u0430\u0432\u0430 %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", \u0432", "About these documents": "\u041e\u0431 \u044d\u0442\u0438\u0445 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0445", "Automatically generated list of changes in version %(version)s": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0441\u043e\u0437\u0434\u0430\u043d\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0439 \u0432 \u0432\u0435\u0440\u0441\u0438\u0438 %(version)s", "C API changes": "\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0432 API C", "Changes in Version %(version)s — %(docstitle)s": "\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0432 \u0432\u0435\u0440\u0441\u0438\u0438 %(version)s — %(docstitle)s", "Collapse sidebar": "\u0421\u0432\u0435\u0440\u043d\u0443\u0442\u044c \u0431\u043e\u043a\u043e\u0432\u0443\u044e \u043f\u0430\u043d\u0435\u043b\u044c", "Complete Table of Contents": "\u041f\u043e\u043b\u043d\u043e\u0435 \u043e\u0433\u043b\u0430\u0432\u043b\u0435\u043d\u0438\u0435", "Contents": "\u0421\u043e\u0434\u0435\u0440\u0436\u0430\u043d\u0438\u0435", "Copyright": "\u0410\u0432\u0442\u043e\u0440\u0441\u043a\u0438\u0435 \u043f\u0440\u0430\u0432\u0430", "Created using Sphinx %(sphinx_version)s.": "\u0421\u043e\u0437\u0434\u0430\u043d\u043e \u0441 \u043f\u043e\u043c\u043e\u0449\u044c\u044e Sphinx %(sphinx_version)s.", "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", "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.": "\u0417\u0434\u0435\u0441\u044c \u043c\u043e\u0436\u043d\u043e \u0434\u0435\u043b\u0430\u0442\u044c \u043f\u043e\u0438\u0441\u043a \u043f\u043e \u0432\u0441\u0435\u043c \u0440\u0430\u0437\u0434\u0435\u043b\u0430\u043c \u044d\u0442\u043e\u0439 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438. \u0412\u0432\u0435\u0434\u0438\u0442\u0435 \u043a\u043b\u044e\u0447\u0435\u0432\u044b\u0435 \u0441\u043b\u043e\u0432\u0430 \u0432 \u0442\u0435\u043a\u0441\u0442\u043e\u0432\u043e\u0435 \u043f\u043e\u043b\u0435 \u0438 \u043d\u0430\u0436\u043c\u0438\u0442\u0435 \u043a\u043d\u043e\u043f\u043a\u0443 \u00ab\u0438\u0441\u043a\u0430\u0442\u044c\u00bb. \u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435: \u0431\u0443\u0434\u0443\u0442 \u043d\u0430\u0439\u0434\u0435\u043d\u044b \u0442\u043e\u043b\u044c\u043a\u043e \u0442\u0435 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u044b, \u0432 \u043a\u043e\u0442\u043e\u0440\u044b\u0445 \u0435\u0441\u0442\u044c \u0432\u0441\u0435 \u0443\u043a\u0430\u0437\u0430\u043d\u043d\u044b\u0435 \u0441\u043b\u043e\u0432\u0430. \u0421\u0442\u0440\u0430\u043d\u0438\u0446\u044b, \u0433\u0434\u0435 \u0435\u0441\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u0447\u0430\u0441\u0442\u044c \u044d\u0442\u0438\u0445 \u0441\u043b\u043e\u0432, \u043e\u0442\u043e\u0431\u0440\u0430\u043d\u044b \u043d\u0435 \u0431\u0443\u0434\u0443\u0442.", "Full index on one page": "\u041f\u043e\u043b\u043d\u044b\u0439 \u0430\u043b\u0444\u0430\u0432\u0438\u0442\u043d\u044b\u0439 \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c \u043d\u0430 \u043e\u0434\u043d\u043e\u0439 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0435", "General Index": "\u0410\u043b\u0444\u0430\u0432\u0438\u0442\u043d\u044b\u0439 \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c", "Global Module Index": "\u0410\u043b\u0444\u0430\u0432\u0438\u0442\u043d\u044b\u0439 \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c \u043c\u043e\u0434\u0443\u043b\u0435\u0439", "Go": "\u0418\u0441\u043a\u0430\u0442\u044c", "Hide Search Matches": "\u0421\u043d\u044f\u0442\u044c \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u0438\u0435", "Index": "\u0410\u043b\u0444\u0430\u0432\u0438\u0442\u043d\u044b\u0439 \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c", "Index – %(key)s": "\u0410\u043b\u0444\u0430\u0432\u0438\u0442\u043d\u044b\u0439 \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u044c – %(key)s", "Index pages by letter": "\u0423\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u0438 \u043f\u043e \u0431\u0443\u043a\u0432\u0430\u043c \u0430\u043b\u0444\u0430\u0432\u0438\u0442\u0430", "Indices and tables:": "\u0422\u0430\u0431\u043b\u0438\u0446\u044b \u0438 \u0443\u043a\u0430\u0437\u0430\u0442\u0435\u043b\u0438:", "Last updated on %(last_updated)s.": "\u041e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u043e: %(last_updated)s.", "Library changes": "\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f \u0432 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0435", "Navigation": "\u041d\u0430\u0432\u0438\u0433\u0430\u0446\u0438\u044f", "Next topic": "\u0421\u043b\u0435\u0434\u0443\u044e\u0449\u0438\u0439 \u0440\u0430\u0437\u0434\u0435\u043b", "Other changes": "\u0414\u0440\u0443\u0433\u0438\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f", "Overview": "\u041e\u0431\u0437\u043e\u0440", "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", "Please activate JavaScript to enable the search\n functionality.": "\u0414\u043b\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u043f\u043e\u0438\u0441\u043a\u0430 \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u0435 JavaScript \u0432 \u0431\u0440\u0430\u0443\u0437\u0435\u0440\u0435.", "Preparing search...": "\u041f\u043e\u0434\u0433\u043e\u0442\u043e\u0432\u043a\u0430 \u043f\u043e\u0438\u0441\u043a\u0430\u2026", "Previous topic": "\u041f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0438\u0439 \u0440\u0430\u0437\u0434\u0435\u043b", "Quick search": "\u0411\u044b\u0441\u0442\u0440\u044b\u0439 \u043f\u043e\u0438\u0441\u043a", "Search": "\u041f\u043e\u0438\u0441\u043a", "Search Page": "\u041f\u043e\u0438\u0441\u043a", "Search Results": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u044b \u043f\u043e\u0438\u0441\u043a\u0430", "Search finished, found %s page(s) matching the search query.": "\u041f\u043e\u0438\u0441\u043a \u0437\u0430\u0432\u0435\u0440\u0448\u0451\u043d, \u043d\u0430\u0439\u0434\u0435\u043d\u043e %s \u0441\u0442\u0440\u0430\u043d\u0438\u0446, \u0443\u0434\u043e\u0432\u043b\u0435\u0442\u0432\u043e\u0440\u044f\u044e\u0449\u0438\u0445 \u0437\u0430\u043f\u0440\u043e\u0441\u0443.", "Search within %(docstitle)s": "\u041f\u043e\u0438\u0441\u043a \u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0435 \u00ab%(docstitle)s\u00bb", "Searching": "\u0418\u0434\u0451\u0442 \u043f\u043e\u0438\u0441\u043a", "Show Source": "\u0418\u0441\u0445\u043e\u0434\u043d\u044b\u0439 \u0442\u0435\u043a\u0441\u0442", "Table Of Contents": "\u041e\u0433\u043b\u0430\u0432\u043b\u0435\u043d\u0438\u0435", "This Page": "\u042d\u0442\u0430 \u0441\u0442\u0440\u0430\u043d\u0438\u0446\u0430", "Welcome! This is": "\u0414\u043e\u0431\u0440\u043e \u043f\u043e\u0436\u0430\u043b\u043e\u0432\u0430\u0442\u044c! \u042d\u0442\u043e", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "\u041f\u043e \u0432\u0430\u0448\u0435\u043c\u0443 \u043f\u043e\u0438\u0441\u043a\u0443 \u043d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u043e \u043d\u0438 \u043e\u0434\u043d\u043e\u0433\u043e \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430. \u041f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435, \u0447\u0442\u043e \u0432\u0441\u0435 \u0441\u043b\u043e\u0432\u0430 \u043d\u0430\u043f\u0438\u0441\u0430\u043d\u044b \u0431\u0435\u0437 \u043e\u0448\u0438\u0431\u043e\u043a, \u0438 \u0447\u0442\u043e \u0432\u044b \u0432\u044b\u0431\u0440\u0430\u043b\u0438 \u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u0439.", "all functions, classes, terms": "\u0432\u0441\u0435 \u0444\u0443\u043d\u043a\u0446\u0438\u0438, \u043a\u043b\u0430\u0441\u0441\u044b, \u043f\u0435\u0440\u0435\u043c\u0435\u043d\u043d\u044b\u0435 \u0438 \u043a\u043e\u043d\u0441\u0442\u0430\u043d\u0442\u044b", "can be huge": "\u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043e\u0447\u0435\u043d\u044c \u0431\u043e\u043b\u044c\u0448\u0438\u043c", "last updated": "\u043f\u043e\u0441\u043b\u0435\u0434\u043d\u0435\u0435 \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u0435", "lists all sections and subsections": "\u0441\u043f\u0438\u0441\u043e\u043a \u0432\u0441\u0435\u0445 \u0440\u0430\u0437\u0434\u0435\u043b\u043e\u0432 \u0438 \u043f\u043e\u0434\u0440\u0430\u0437\u0434\u0435\u043b\u043e\u0432", "next chapter": "\u0441\u043b\u0435\u0434\u0443\u044e\u0449\u0430\u044f \u0433\u043b\u0430\u0432\u0430", "previous chapter": "\u043f\u0440\u0435\u0434\u044b\u0434\u0443\u0449\u0430\u044f \u0433\u043b\u0430\u0432\u0430", "quick access to all modules": "\u0441\u0432\u043e\u0434\u043d\u044b\u0439 \u0441\u043f\u0438\u0441\u043e\u043a \u0432\u0441\u0435\u0445 \u043c\u043e\u0434\u0443\u043b\u0435\u0439", "search": "\u0438\u0441\u043a\u0430\u0442\u044c", "search this documentation": "\u043f\u043e\u0438\u0441\u043a \u0432 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u0438", "the documentation for": "\u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0438\u044f"}, "plural_expr": "(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3)"}); \ 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 cafaba93e..5342631db 100644 Binary files a/sphinx/locale/ru/LC_MESSAGES/sphinx.mo and b/sphinx/locale/ru/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/ru/LC_MESSAGES/sphinx.po b/sphinx/locale/ru/LC_MESSAGES/sphinx.po index 48096213e..5b10606b6 100644 --- a/sphinx/locale/ru/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/ru/LC_MESSAGES/sphinx.po @@ -1,39 +1,41 @@ -# Russian translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# Dmitry Shachnev , 2013 +# ferm32 , 2014 +# FIRST AUTHOR , 2013 +# PyHedgehog , 2015 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" "Last-Translator: Takayuki Shimizukawa \n" -"Language: ru\n" -"Language-Team: Russian " -"(http://www.transifex.com/projects/p/sphinx-1/language/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" +"Language-Team: Russian (http://www.transifex.com/sphinx-doc/sphinx-1/language/ru/)\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 2.2.0\n" +"Language: ru\n" +"Plural-Forms: nplurals=4; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<12 || n%100>14) ? 1 : n%10==0 || (n%10>=5 && n%10<=9) || (n%100>=11 && n%100<=14)? 2 : 3);\n" #: sphinx/config.py:91 #, python-format msgid "Fig. %s" -msgstr "" +msgstr "Рис. %s" #: sphinx/config.py:92 #, python-format msgid "Table %s" -msgstr "" +msgstr "Таблица %s" #: sphinx/config.py:93 #, python-format msgid "Listing %s" -msgstr "" +msgstr "Список %s" #: sphinx/config.py:100 #, python-format @@ -179,9 +181,8 @@ msgid "variable" msgstr "переменная" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "Параметры" +msgstr "" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -210,12 +211,12 @@ msgstr "%s (класс C++)" #: sphinx/domains/cpp.py:3786 #, python-format msgid "%s (C++ enum)" -msgstr "" +msgstr "%s (перечисляемый тип C++)" #: sphinx/domains/cpp.py:3816 #, python-format msgid "%s (C++ enumerator)" -msgstr "" +msgstr "%s (функция-перечислитель C++)" #: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165 #: sphinx/domains/python.py:591 @@ -224,11 +225,11 @@ msgstr "класс" #: sphinx/domains/cpp.py:3956 msgid "enum" -msgstr "" +msgstr "перечисляемый тип" #: sphinx/domains/cpp.py:3957 msgid "enumerator" -msgstr "" +msgstr "перечислитель" #: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282 #, python-format @@ -471,14 +472,13 @@ msgid "Todo" msgstr "План" #: sphinx/ext/todo.py:129 -#, fuzzy msgid "<>" -msgstr "исходный элемент" +msgstr "" #: sphinx/ext/todo.py:132 -#, fuzzy, python-format +#, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "(<<Исходный элемент>> находится в %s, в строке %d.)" +msgstr "" #: sphinx/ext/todo.py:141 msgid "original entry" @@ -700,9 +700,7 @@ msgstr "Обновлено: %(last_updated)s." msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" -"Создано с помощью Sphinx " -"%(sphinx_version)s." +msgstr "Создано с помощью Sphinx %(sphinx_version)s." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -737,29 +735,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 "" -"Здесь можно делать поиск по всем разделам этой документации. Введите " -"ключевые слова в текстовое поле и нажмите кнопку «искать». Внимание: " -"будут найдены только те страницы, в которых есть все указанные слова." -" Страницы, где есть только часть этих слов, отобраны не будут." +msgstr "Здесь можно делать поиск по всем разделам этой документации. Введите ключевые слова в текстовое поле и нажмите кнопку «искать». Внимание: будут найдены только те страницы, в которых есть все указанные слова. Страницы, где есть только часть этих слов, отобраны не будут." -#: 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 "искать" -#: 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:282 msgid "Search Results" msgstr "Результаты поиска" -#: 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:284 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 "По вашему поиску не найдено ни одного документа. Проверьте, что все слова написаны без ошибок, и что вы выбрали достаточно категорий." #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -842,28 +837,27 @@ msgstr "Содержание" #: sphinx/writers/html.py:349 msgid "Permalink to this code" -msgstr "" +msgstr "Постоянная ссылка на код" #: sphinx/writers/html.py:353 msgid "Permalink to this image" -msgstr "" +msgstr "Постоянная ссылка на рисунок" #: sphinx/writers/html.py:355 msgid "Permalink to this toctree" -msgstr "" +msgstr "Постоянная ссылка на оглавление" #: sphinx/writers/html.py:677 msgid "Permalink to this table" -msgstr "" +msgstr "Постоянная ссылка на таблицу" #: sphinx/writers/latex.py:361 msgid "Release" msgstr "Выпуск" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "Опасно" +msgstr "" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -886,13 +880,3 @@ msgstr "[рисунок: %s]" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[рисунок]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%d %B %Y" - -#~ msgid "%b %d, %Y" -#~ msgstr "%d %b %Y" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "Введите слова для поиска или имя модуля, класса или функции." - diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.js b/sphinx/locale/si/LC_MESSAGES/sphinx.js index 7b95b940b..287e31845 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/si/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "si", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "\u0db8\u0dd9\u0db8 \u0dbd\u0dda\u0d9b\u0dab \u0d9c\u0dd0\u0db1", "Automatically generated list of changes in version %(version)s": "", "C API changes": "C API \u0dc0\u0dd9\u0db1\u0dc3\u0dca\u0d9a\u0db8\u0dca", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "\u0dc3\u0db8\u0dca\u0db4\u0dd6\u0dbb\u0dca\u0dab \u0db4\u0da7\u0dd4\u0db1", "Contents": "\u0d85\u0db1\u0dca\u0dad\u0dbb\u0dca\u0d9c\u0dad\u0dba", "Copyright": "", "Created using Sphinx %(sphinx_version)s.": "", "Enter search terms or a module, class or function name.": "", "Expand sidebar": "", "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.": "", "Full index on one page": "", "General Index": "", "Global Module Index": "", "Go": "\u0dba\u0db1\u0dca\u0db1", "Hide Search Matches": "", "Index": "", "Index – %(key)s": "", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", "Library changes": "\u0db4\u0dd4\u0dc3\u0dca\u0dad\u0d9a\u0dcf\u0dbd \u0dc0\u0dd9\u0db1\u0dc3\u0dca\u0d9a\u0db8\u0dca", "Navigation": "\u0d9c\u0db8\u0db1\u0dca \u0d9a\u0dd2\u0dbb\u0dd3\u0db8", "Next topic": "\u0d8a\u0dc5\u0d9f \u0db8\u0dcf\u0dad\u0dd8\u0d9a\u0dcf\u0dc0", "Other changes": "\u0dc0\u0dd9\u0db1\u0dad\u0dca \u0dc0\u0dd9\u0db1\u0dc3\u0dca\u0d9a\u0db8\u0dca", "Overview": "", "Permalink to this definition": "", "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "\u0dc3\u0dd9\u0dc0\u0dd4\u0db8 \u0dc3\u0dd6\u0daf\u0dcf\u0db1\u0db8\u0dca \u0d9a\u0dbb\u0db8\u0dd2\u0db1\u0dca....", "Previous topic": "\u0db4\u0dd9\u0dbb \u0db8\u0dcf\u0dad\u0dd8\u0d9a\u0dcf\u0dc0", "Quick search": "\u0d89\u0d9a\u0dca\u0db8\u0db1\u0dca \u0dc3\u0dd9\u0dc0\u0dd4\u0db8", "Search": "\u0dc3\u0ddc\u0dba\u0db1\u0dca\u0db1", "Search Page": "\u0dc3\u0dd9\u0dc0\u0dd4\u0db8\u0dca \u0db4\u0dd2\u0da7\u0dd4\u0dc0", "Search Results": "\u0dc3\u0dd9\u0dc0\u0dd4\u0db8\u0dca \u0db4\u0dca\u200d\u0dbb\u0dad\u0dd2\u0db5\u0dbd", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "\u0dc3\u0ddc\u0dba\u0db8\u0dd2\u0db1\u0dca...", "Show Source": "\u0db8\u0dd6\u0dbd\u0dba \u0db4\u0dd9\u0db1\u0dca\u0dc0\u0db1\u0dca\u0db1", "Table Of Contents": "\u0db4\u0da7\u0dd4\u0db1", "This Page": "\u0db8\u0dd9\u0db8 \u0db4\u0dd2\u0da7\u0dd4\u0dc0", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "", "can be huge": "\u0dc0\u0dd2\u0dc1\u0dcf\u0dbd \u0dc0\u0dd2\u0dba \u0dc4\u0dd0\u0d9a", "last updated": "\u0d85\u0dc0\u0dc3\u0db1\u0dca\u0dc0\u0dbb\u0da7 \u0dba\u0dcf\u0dc0\u0dad\u0dca\u0d9a\u0dcf\u0dbd \u0d9a\u0dbd", "lists all sections and subsections": "", "next chapter": "\u0d8a\u0dc5\u0d9f \u0db4\u0dbb\u0dd2\u0da0\u0dca\u0da1\u0dda\u0daf\u0dba", "previous chapter": "\u0db4\u0dd9\u0dbb \u0db4\u0dbb\u0dd2\u0da0\u0dca\u0da1\u0dda\u0daf\u0dba", "quick access to all modules": "", "search": "\u0dc3\u0ddc\u0dba\u0db1\u0dca\u0db1", "search this documentation": "", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ No newline at end of file +Documentation.addTranslations({"locale": "si", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "\u0db8\u0dd9\u0db8 \u0dbd\u0dda\u0d9b\u0dab \u0d9c\u0dd0\u0db1", "Automatically generated list of changes in version %(version)s": "", "C API changes": "C API \u0dc0\u0dd9\u0db1\u0dc3\u0dca\u0d9a\u0db8\u0dca", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "\u0dc3\u0db8\u0dca\u0db4\u0dd6\u0dbb\u0dca\u0dab \u0db4\u0da7\u0dd4\u0db1", "Contents": "\u0d85\u0db1\u0dca\u0dad\u0dbb\u0dca\u0d9c\u0dad\u0dba", "Copyright": "", "Created using Sphinx %(sphinx_version)s.": "", "Expand sidebar": "", "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.": "", "Full index on one page": "", "General Index": "", "Global Module Index": "", "Go": "\u0dba\u0db1\u0dca\u0db1", "Hide Search Matches": "", "Index": "", "Index – %(key)s": "", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "", "Library changes": "\u0db4\u0dd4\u0dc3\u0dca\u0dad\u0d9a\u0dcf\u0dbd \u0dc0\u0dd9\u0db1\u0dc3\u0dca\u0d9a\u0db8\u0dca", "Navigation": "\u0d9c\u0db8\u0db1\u0dca \u0d9a\u0dd2\u0dbb\u0dd3\u0db8", "Next topic": "\u0d8a\u0dc5\u0d9f \u0db8\u0dcf\u0dad\u0dd8\u0d9a\u0dcf\u0dc0", "Other changes": "\u0dc0\u0dd9\u0db1\u0dad\u0dca \u0dc0\u0dd9\u0db1\u0dc3\u0dca\u0d9a\u0db8\u0dca", "Overview": "", "Permalink to this definition": "", "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "\u0dc3\u0dd9\u0dc0\u0dd4\u0db8 \u0dc3\u0dd6\u0daf\u0dcf\u0db1\u0db8\u0dca \u0d9a\u0dbb\u0db8\u0dd2\u0db1\u0dca....", "Previous topic": "\u0db4\u0dd9\u0dbb \u0db8\u0dcf\u0dad\u0dd8\u0d9a\u0dcf\u0dc0", "Quick search": "\u0d89\u0d9a\u0dca\u0db8\u0db1\u0dca \u0dc3\u0dd9\u0dc0\u0dd4\u0db8", "Search": "\u0dc3\u0ddc\u0dba\u0db1\u0dca\u0db1", "Search Page": "\u0dc3\u0dd9\u0dc0\u0dd4\u0db8\u0dca \u0db4\u0dd2\u0da7\u0dd4\u0dc0", "Search Results": "\u0dc3\u0dd9\u0dc0\u0dd4\u0db8\u0dca \u0db4\u0dca\u200d\u0dbb\u0dad\u0dd2\u0db5\u0dbd", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "", "Searching": "\u0dc3\u0ddc\u0dba\u0db8\u0dd2\u0db1\u0dca...", "Show Source": "\u0db8\u0dd6\u0dbd\u0dba \u0db4\u0dd9\u0db1\u0dca\u0dc0\u0db1\u0dca\u0db1", "Table Of Contents": "\u0db4\u0da7\u0dd4\u0db1", "This Page": "\u0db8\u0dd9\u0db8 \u0db4\u0dd2\u0da7\u0dd4\u0dc0", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "", "can be huge": "\u0dc0\u0dd2\u0dc1\u0dcf\u0dbd \u0dc0\u0dd2\u0dba \u0dc4\u0dd0\u0d9a", "last updated": "\u0d85\u0dc0\u0dc3\u0db1\u0dca\u0dc0\u0dbb\u0da7 \u0dba\u0dcf\u0dc0\u0dad\u0dca\u0d9a\u0dcf\u0dbd \u0d9a\u0dbd", "lists all sections and subsections": "", "next chapter": "\u0d8a\u0dc5\u0d9f \u0db4\u0dbb\u0dd2\u0da0\u0dca\u0da1\u0dda\u0daf\u0dba", "previous chapter": "\u0db4\u0dd9\u0dbb \u0db4\u0dbb\u0dd2\u0da0\u0dca\u0da1\u0dda\u0daf\u0dba", "quick access to all modules": "", "search": "\u0dc3\u0ddc\u0dba\u0db1\u0dca\u0db1", "search this documentation": "", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ No newline at end of file diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.mo b/sphinx/locale/si/LC_MESSAGES/sphinx.mo index ee969d4dc..5bbca4675 100644 Binary files a/sphinx/locale/si/LC_MESSAGES/sphinx.mo and b/sphinx/locale/si/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/si/LC_MESSAGES/sphinx.po b/sphinx/locale/si/LC_MESSAGES/sphinx.po index ed2c033be..2d63d7a80 100644 --- a/sphinx/locale/si/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/si/LC_MESSAGES/sphinx.po @@ -1,23 +1,23 @@ -# Sinhala translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# callkalpa , 2013 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" "Last-Translator: Takayuki Shimizukawa \n" -"Language: si\n" -"Language-Team: Sinhala " -"(http://www.transifex.com/projects/p/sphinx-1/language/si/)\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Language-Team: Sinhala (http://www.transifex.com/sphinx-doc/sphinx-1/language/si/)\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 2.2.0\n" +"Language: si\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinx/config.py:91 #, python-format @@ -178,9 +178,8 @@ msgid "variable" msgstr "විචල්‍යය" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "පරාමිතීන්" +msgstr "" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -735,20 +734,23 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: 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 "සොයන්න" -#: 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:282 msgid "Search Results" msgstr "සෙවුම් ප්‍රතිඵල" -#: 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:284 msgid "" -"Your search did not match any documents. Please make sure that all words " -"are spelled correctly and that you've selected enough categories." +"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 @@ -875,16 +877,3 @@ msgstr "[image: %s]" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[image]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%B %d, %Y" - -#~ msgid "%b %d, %Y" -#~ msgstr "%b %d, %Y" - -#~ msgid "(The <> is located in %s, line %d.)" -#~ msgstr "" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "" - diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.js b/sphinx/locale/sk/LC_MESSAGES/sphinx.js index cd20e3a33..30ef2aba6 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "sk", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", v ", "About these documents": "O t\u00fdchto dokumentoch", "Automatically generated list of changes in version %(version)s": "Automaticky generovan\u00fd zoznam zmien vo verzii %(version)s", "C API changes": "Zmeny API C", "Changes in Version %(version)s — %(docstitle)s": "Zmeny vo verzii %(version)s — %(docstitle)s", "Collapse sidebar": "Zbali\u0165 bo\u010dn\u00fd panel", "Complete Table of Contents": "Celkov\u00fd obsah", "Contents": "Obsah", "Copyright": "Autorsk\u00e9 pr\u00e1vo", "Created using Sphinx %(sphinx_version)s.": "Vytvoren\u00e9 pomocou Sphinx %(sphinx_version)s.", "Enter search terms or a module, class or function name.": "Zadajte h\u013eadan\u00e9 v\u00fdrazy alebo modul, triedu, \u010di meno funkcie.", "Expand sidebar": "Rozbali\u0165 bo\u010dn\u00fd panel", "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.": "Tu m\u00f4\u017eete h\u013eada\u0165 v tejto dokument\u00e1cii. Zadajte h\u013eadan\u00e9 slov\u00e1\ndo pol\u00ed\u010dka ni\u017e\u0161ie a kliknite na \"h\u013eada\u0165\". Pam\u00e4tajte, \u017ee funkcia\nh\u013eadania bude automaticky h\u013eada\u0165 v\u0161etky slov\u00e1. Strany, ktor\u00e9\nobsahuj\u00fa len niektor\u00e9 zo slov, nebud\u00fa v zozname v\u00fdsledkov.", "Full index on one page": "Cel\u00fd index na jednej strane", "General Index": "V\u0161eobecn\u00fd index", "Global Module Index": "Celkov\u00fd index modulov", "Go": "OK", "Hide Search Matches": "Skry\u0165 v\u00fdsledky h\u013eadania", "Index": "Index", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Indexov\u00e9 str\u00e1nky po p\u00edsmen\u00e1ch", "Indices and tables:": "Indexy a tabu\u013eky", "Last updated on %(last_updated)s.": "Naposledy aktualizovan\u00e9 %(last_updated)s.", "Library changes": "Zmeny kni\u017enice", "Navigation": "Navig\u00e1cia", "Next topic": "\u010eal\u0161ia t\u00e9ma", "Other changes": "Ostatn\u00e9 zmeny", "Overview": "Preh\u013ead", "Permalink to this definition": "Trval\u00fd odkaz na t\u00fato defin\u00edciu", "Permalink to this headline": "Trval\u00fd odkaz na tento nadpis", "Please activate JavaScript to enable the search\n functionality.": "Pros\u00edm, na zapnutie funkcie h\u013eadania,aktivujte\nJavaScript .", "Preparing search...": "Pr\u00edprava h\u013eadania...", "Previous topic": "Predo\u0161l\u00e1 t\u00e9ma", "Quick search": "R\u00fdchle h\u013eadanie", "Search": "H\u013eada\u0165", "Search Page": "Str\u00e1nka h\u013eadania", "Search Results": "V\u00fdsledky h\u013eadania", "Search finished, found %s page(s) matching the search query.": "H\u013eadanie dokon\u010den\u00e9, n\u00e1jden\u00e9 %s strana(y), ktor\u00e9 vyhovuj\u00fa h\u013eadan\u00e9mu v\u00fdrazu.", "Search within %(docstitle)s": "H\u013eada\u0165 v %(docstitle)s", "Searching": "H\u013eadanie", "Show Source": "Zobrazi\u0165 zdroj", "Table Of Contents": "Obsah", "This Page": "T\u00e1to str\u00e1nka", "Welcome! This is": "Vitajte! Toto je", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "V\u00e1\u0161mu h\u013eadaniu nezodpoved\u00e1 \u017eiadny dokument. Pros\u00edm, skontrolujte, \u017ee v\u0161etky zadan\u00e9 slov\u00e1 s\u00fa spr\u00e1vne nap\u00edsan\u00e9 a \u017ee ste zvolili vhodn\u00e9 kateg\u00f3rie.", "all functions, classes, terms": "v\u0161etky funkcie, triedy, term\u00edny", "can be huge": "m\u00f4\u017ee by\u0165 rozsiahle", "last updated": "posledn\u00e1 aktualiz\u00e1cia", "lists all sections and subsections": "zoznam sekci\u00ed a podsekci\u00ed", "next chapter": "\u010fal\u0161ia kapitola", "previous chapter": "predo\u0161l\u00e1 kapitola", "quick access to all modules": "r\u00fdchly pr\u00edstup ku v\u0161etk\u00fdm modulom", "search": "h\u013eada\u0165", "search this documentation": "h\u013eada\u0165 v tejto dokument\u00e1cii", "the documentation for": "dokument\u00e1cia"}, "plural_expr": "(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2"}); \ No newline at end of file +Documentation.addTranslations({"locale": "sk", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", v ", "About these documents": "O t\u00fdchto dokumentoch", "Automatically generated list of changes in version %(version)s": "Automaticky generovan\u00fd zoznam zmien vo verzii %(version)s", "C API changes": "Zmeny API C", "Changes in Version %(version)s — %(docstitle)s": "Zmeny vo verzii %(version)s — %(docstitle)s", "Collapse sidebar": "Zbali\u0165 bo\u010dn\u00fd panel", "Complete Table of Contents": "Celkov\u00fd obsah", "Contents": "Obsah", "Copyright": "Autorsk\u00e9 pr\u00e1vo", "Created using Sphinx %(sphinx_version)s.": "Vytvoren\u00e9 pomocou Sphinx %(sphinx_version)s.", "Expand sidebar": "Rozbali\u0165 bo\u010dn\u00fd panel", "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.": "Tu m\u00f4\u017eete h\u013eada\u0165 v tejto dokument\u00e1cii. Zadajte h\u013eadan\u00e9 slov\u00e1\ndo pol\u00ed\u010dka ni\u017e\u0161ie a kliknite na \"h\u013eada\u0165\". Pam\u00e4tajte, \u017ee funkcia\nh\u013eadania bude automaticky h\u013eada\u0165 v\u0161etky slov\u00e1. Strany, ktor\u00e9\nobsahuj\u00fa len niektor\u00e9 zo slov, nebud\u00fa v zozname v\u00fdsledkov.", "Full index on one page": "Cel\u00fd index na jednej strane", "General Index": "V\u0161eobecn\u00fd index", "Global Module Index": "Celkov\u00fd index modulov", "Go": "OK", "Hide Search Matches": "Skry\u0165 v\u00fdsledky h\u013eadania", "Index": "Index", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Indexov\u00e9 str\u00e1nky po p\u00edsmen\u00e1ch", "Indices and tables:": "Indexy a tabu\u013eky", "Last updated on %(last_updated)s.": "Naposledy aktualizovan\u00e9 %(last_updated)s.", "Library changes": "Zmeny kni\u017enice", "Navigation": "Navig\u00e1cia", "Next topic": "\u010eal\u0161ia t\u00e9ma", "Other changes": "Ostatn\u00e9 zmeny", "Overview": "Preh\u013ead", "Permalink to this definition": "Trval\u00fd odkaz na t\u00fato defin\u00edciu", "Permalink to this headline": "Trval\u00fd odkaz na tento nadpis", "Please activate JavaScript to enable the search\n functionality.": "Pros\u00edm, na zapnutie funkcie h\u013eadania,aktivujte\nJavaScript .", "Preparing search...": "Pr\u00edprava h\u013eadania...", "Previous topic": "Predo\u0161l\u00e1 t\u00e9ma", "Quick search": "R\u00fdchle h\u013eadanie", "Search": "H\u013eada\u0165", "Search Page": "Str\u00e1nka h\u013eadania", "Search Results": "V\u00fdsledky h\u013eadania", "Search finished, found %s page(s) matching the search query.": "H\u013eadanie dokon\u010den\u00e9, n\u00e1jden\u00e9 %s strana(y), ktor\u00e9 vyhovuj\u00fa h\u013eadan\u00e9mu v\u00fdrazu.", "Search within %(docstitle)s": "H\u013eada\u0165 v %(docstitle)s", "Searching": "H\u013eadanie", "Show Source": "Zobrazi\u0165 zdroj", "Table Of Contents": "Obsah", "This Page": "T\u00e1to str\u00e1nka", "Welcome! This is": "Vitajte! Toto je", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "V\u00e1\u0161mu h\u013eadaniu nezodpoved\u00e1 \u017eiadny dokument. Pros\u00edm, skontrolujte, \u017ee v\u0161etky zadan\u00e9 slov\u00e1 s\u00fa spr\u00e1vne nap\u00edsan\u00e9 a \u017ee ste zvolili vhodn\u00e9 kateg\u00f3rie.", "all functions, classes, terms": "v\u0161etky funkcie, triedy, term\u00edny", "can be huge": "m\u00f4\u017ee by\u0165 rozsiahle", "last updated": "posledn\u00e1 aktualiz\u00e1cia", "lists all sections and subsections": "zoznam v\u0161etk\u00fdch sekci\u00ed a podsekci\u00ed", "next chapter": "\u010fal\u0161ia kapitola", "previous chapter": "predo\u0161l\u00e1 kapitola", "quick access to all modules": "r\u00fdchly pr\u00edstup ku v\u0161etk\u00fdm modulom", "search": "h\u013eada\u0165", "search this documentation": "h\u013eada\u0165 v tejto dokument\u00e1cii", "the documentation for": "dokument\u00e1cia"}, "plural_expr": "(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2"}); \ 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 9b7ca4b59..a4a69b2a2 100644 Binary files a/sphinx/locale/sk/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sk/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sk/LC_MESSAGES/sphinx.po b/sphinx/locale/sk/LC_MESSAGES/sphinx.po index 706eeb18f..236ab8618 100644 --- a/sphinx/locale/sk/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sk/LC_MESSAGES/sphinx.po @@ -1,23 +1,24 @@ -# Slovak translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# FIRST AUTHOR , 2008 +# Slavko , 2013-2016 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" -"Last-Translator: Takayuki Shimizukawa \n" -"Language: sk\n" -"Language-Team: Slovak " -"(http://www.transifex.com/projects/p/sphinx-1/language/sk/)\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2\n" +"PO-Revision-Date: 2016-03-06 15:33+0000\n" +"Last-Translator: Slavko \n" +"Language-Team: Slovak (http://www.transifex.com/sphinx-doc/sphinx-1/language/sk/)\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 2.2.0\n" +"Language: sk\n" +"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" #: sphinx/config.py:91 #, python-format @@ -37,7 +38,7 @@ msgstr "Výpis %s" #: sphinx/config.py:100 #, python-format msgid "%s %s documentation" -msgstr "%s %s dokumentácia" +msgstr "Dokumentácia %s %s" #: sphinx/environment.py:1829 #, python-format @@ -61,7 +62,7 @@ msgstr "Python Enhancement Proposals; PEP %s" #: sphinx/transforms.py:56 sphinx/writers/latex.py:374 #: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222 msgid "MMMM dd, YYYY" -msgstr "" +msgstr "dd. MMMM YYYY" #: sphinx/builders/changes.py:75 msgid "Builtins" @@ -73,7 +74,7 @@ msgstr "Úroveň modulu" #: sphinx/builders/html.py:295 msgid "MMM dd, YYYY" -msgstr "" +msgstr "dd. MMM YYYY" #: sphinx/builders/html.py:315 sphinx/themes/basic/defindex.html:30 msgid "General Index" @@ -178,9 +179,8 @@ msgid "variable" msgstr "premenná" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "Parametre" +msgstr "Parametre šablóny" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -467,17 +467,16 @@ msgstr "[zdroj]" #: sphinx/ext/todo.py:56 msgid "Todo" -msgstr "Todo" +msgstr "ToDo" #: sphinx/ext/todo.py:129 -#, fuzzy msgid "<>" -msgstr "pôvodná položka" +msgstr "<>" #: sphinx/ext/todo.py:132 -#, fuzzy, python-format +#, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "(<> je umiestnená v %s, riadok %d.)" +msgstr "(<> je umiestnená v %s, riadok %d.)" #: sphinx/ext/todo.py:141 msgid "original entry" @@ -624,7 +623,7 @@ msgstr "Celkový obsah" #: sphinx/themes/basic/defindex.html:24 msgid "lists all sections and subsections" -msgstr "zoznam sekcií a podsekcií" +msgstr "zoznam všetkých sekcií a podsekcií" #: sphinx/themes/basic/defindex.html:26 msgid "search this documentation" @@ -699,9 +698,7 @@ msgstr "Naposledy aktualizované %(last_updated)s." msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" -"Vytvorené pomocou Sphinx " -"%(sphinx_version)s." +msgstr "Vytvorené pomocou Sphinx %(sphinx_version)s." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -728,9 +725,7 @@ msgstr "ďalšia kapitola" msgid "" "Please activate JavaScript to enable the search\n" " functionality." -msgstr "" -"Prosím, na zapnutie funkcie hľadania,aktivujte\n" -"JavaScript ." +msgstr "Prosím, na zapnutie funkcie hľadania,aktivujte\nJavaScript ." #: sphinx/themes/basic/search.html:32 msgid "" @@ -738,30 +733,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 "" -"Tu môžete hľadať v tejto dokumentácii. Zadajte hľadané slová\n" -"do políčka nižšie a kliknite na \"hľadať\". Pamätajte, že funkcia\n" -"hľadania bude automaticky hľadať všetky slová. Strany, ktoré\n" -"obsahujú len niektoré zo slov, nebudú v zozname výsledkov." +msgstr "Tu môžete hľadať v tejto dokumentácii. Zadajte hľadané slová\ndo políčka nižšie a kliknite na \"hľadať\". Pamätajte, že funkcia\nhľadania bude automaticky hľadať všetky slová. Strany, ktoré\nobsahujú len niektoré zo slov, nebudú v zozname výsledkov." -#: 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 "hľadať" -#: 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:282 msgid "Search Results" msgstr "Výsledky hľadania" -#: 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:284 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 "" -"Vášmu hľadaniu nezodpovedá žiadny dokument. Prosím, skontrolujte, že " -"všetky zadané slová sú správne napísané a že ste zvolili vhodné " -"kategórie." +"Your search did not match any documents. Please make sure that all words are" +" spelled correctly and that you've selected enough categories." +msgstr "Vášmu hľadaniu nezodpovedá žiadny dokument. Prosím, skontrolujte, že všetky zadané slová sú správne napísané a že ste zvolili vhodné kategórie." #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -852,7 +843,7 @@ msgstr "Trvalý odkaz na tento obrázok" #: sphinx/writers/html.py:355 msgid "Permalink to this toctree" -msgstr "" +msgstr "Trvalý odkaz na tento obsah" #: sphinx/writers/html.py:677 msgid "Permalink to this table" @@ -863,9 +854,8 @@ msgid "Release" msgstr "Vydanie" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "Nebezpečné" +msgstr "strana" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -888,13 +878,3 @@ msgstr "[obrázok: %s]" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[obrázok]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%d. %B %Y" - -#~ msgid "%b %d, %Y" -#~ msgstr "%d. %b %Y" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "Zadajte hľadané výrazy alebo modul, triedu, či meno funkcie." - diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.js b/sphinx/locale/sl/LC_MESSAGES/sphinx.js index 4dc690e6f..7ffb79d00 100644 --- a/sphinx/locale/sl/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/sl/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "sl", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Vse pravice pridr\u017eane %(copyright)s.", "© Copyright %(copyright)s.": "© Vse pravice pridr\u017eane %(copyright)s.", ", in ": "", "About these documents": "O dokumentih", "Automatically generated list of changes in version %(version)s": "Avtomatsko generiran seznam sprememb v verziji %(version)s", "C API changes": "C API spremembe", "Changes in Version %(version)s — %(docstitle)s": "Spremembe v Verziji %(version)s — %(docstitle)s", "Collapse sidebar": "", "Complete Table of Contents": "Popoln Seznam Vsebine", "Contents": "", "Copyright": "Vse pravice pridr\u017eane", "Created using Sphinx %(sphinx_version)s.": "Narejeno s Sphinx %(sphinx_version)s.", "Enter search terms or a module, class or function name.": "Vnesi ime modula, razreda ali funkcije.", "Expand sidebar": "", "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.": "Tukaj lahko i\u0161\u010dete dokumente. Vnesite iskalni\n niz v polje spodaj in pritisnite \"i\u0161\u010di\". Spro\u017eeno iskanje\n bo iskalo po vseh besedah v iskalnem nizu. Strani, ki ne\n vsebujejo vseh besed ne bodo prikazane na seznamu rezultatov.", "Full index on one page": "Poln indeks na eni strani", "General Index": "Splo\u0161ni abecedni seznam", "Global Module Index": "Splo\u0161en seznam modulov", "Go": "Potrdi", "Hide Search Matches": "Skrij resultate iskanja", "Index": "Abecedni seznam", "Index – %(key)s": "Seznam – %(key)s", "Index pages by letter": "Indeksiraj strani po \u010drki", "Indices and tables:": "Kazalo in seznami:", "Last updated on %(last_updated)s.": "Zadnji\u010d posodobljeno %(last_updated)s.", "Library changes": "Spremembe knji\u017enice", "Navigation": "Navigacija", "Next topic": "Naslednja tema", "Other changes": "Ostale spremembe", "Overview": "Pregled", "Permalink to this definition": "Povezava na to definicijo", "Permalink to this headline": "Povezava na naslov", "Please activate JavaScript to enable the search\n functionality.": "Za pravilno delovanje Iskanja morete vklopiti\n JavaScript.", "Preparing search...": "", "Previous topic": "Prej\u0161nja tema", "Quick search": "Hitro iskanje", "Search": "I\u0161\u010di", "Search Page": "Iskalnik", "Search Results": "Rezultati Iskanja", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "I\u0161\u010di med %(docstitle)s", "Searching": "", "Show Source": "Prika\u017ei izvorno kodo", "Table Of Contents": "Seznam Vsebine", "This Page": "Trenutna stran", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "vse funkcije, razredi, izrazi", "can be huge": "lahko je veliko", "last updated": "", "lists all sections and subsections": "prikazi vse sekcije in podsekcije", "next chapter": "naslednje poglavje", "previous chapter": "prej\u0161nje poglavje", "quick access to all modules": "hiter dostop do vseh modulov", "search": "i\u0161\u010di", "search this documentation": "i\u0161\u010di po dokumentaciji", "the documentation for": ""}, "plural_expr": "(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)"}); \ No newline at end of file +Documentation.addTranslations({"locale": "sl", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Vse pravice pridr\u017eane %(copyright)s.", "© Copyright %(copyright)s.": "© Vse pravice pridr\u017eane %(copyright)s.", ", in ": "", "About these documents": "O dokumentih", "Automatically generated list of changes in version %(version)s": "Avtomatsko generiran seznam sprememb v verziji %(version)s", "C API changes": "C API spremembe", "Changes in Version %(version)s — %(docstitle)s": "Spremembe v Verziji %(version)s — %(docstitle)s", "Collapse sidebar": "", "Complete Table of Contents": "Popoln Seznam Vsebine", "Contents": "", "Copyright": "Vse pravice pridr\u017eane", "Created using Sphinx %(sphinx_version)s.": "Narejeno s Sphinx %(sphinx_version)s.", "Expand sidebar": "", "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.": "Tukaj lahko i\u0161\u010dete dokumente. Vnesite iskalni\n niz v polje spodaj in pritisnite \"i\u0161\u010di\". Spro\u017eeno iskanje\n bo iskalo po vseh besedah v iskalnem nizu. Strani, ki ne\n vsebujejo vseh besed ne bodo prikazane na seznamu rezultatov.", "Full index on one page": "Poln indeks na eni strani", "General Index": "Splo\u0161ni abecedni seznam", "Global Module Index": "Splo\u0161en seznam modulov", "Go": "Potrdi", "Hide Search Matches": "Skrij resultate iskanja", "Index": "Abecedni seznam", "Index – %(key)s": "Seznam – %(key)s", "Index pages by letter": "Indeksiraj strani po \u010drki", "Indices and tables:": "Kazalo in seznami:", "Last updated on %(last_updated)s.": "Zadnji\u010d posodobljeno %(last_updated)s.", "Library changes": "Spremembe knji\u017enice", "Navigation": "Navigacija", "Next topic": "Naslednja tema", "Other changes": "Ostale spremembe", "Overview": "Pregled", "Permalink to this definition": "Povezava na to definicijo", "Permalink to this headline": "Povezava na naslov", "Please activate JavaScript to enable the search\n functionality.": "Za pravilno delovanje Iskanja morete vklopiti\n JavaScript.", "Preparing search...": "", "Previous topic": "Prej\u0161nja tema", "Quick search": "Hitro iskanje", "Search": "I\u0161\u010di", "Search Page": "Iskalnik", "Search Results": "Rezultati Iskanja", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "I\u0161\u010di med %(docstitle)s", "Searching": "", "Show Source": "Prika\u017ei izvorno kodo", "Table Of Contents": "Seznam Vsebine", "This Page": "Trenutna stran", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "vse funkcije, razredi, izrazi", "can be huge": "lahko je veliko", "last updated": "", "lists all sections and subsections": "prikazi vse sekcije in podsekcije", "next chapter": "naslednje poglavje", "previous chapter": "prej\u0161nje poglavje", "quick access to all modules": "hiter dostop do vseh modulov", "search": "i\u0161\u010di", "search this documentation": "i\u0161\u010di po dokumentaciji", "the documentation for": ""}, "plural_expr": "(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3)"}); \ 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 f5aaa51bb..f983fa45b 100644 Binary files a/sphinx/locale/sl/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sl/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sl/LC_MESSAGES/sphinx.po b/sphinx/locale/sl/LC_MESSAGES/sphinx.po index a9aee0f19..4fcc8f7f3 100644 --- a/sphinx/locale/sl/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sl/LC_MESSAGES/sphinx.po @@ -1,24 +1,22 @@ -# Slovenian translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" "Last-Translator: Takayuki Shimizukawa \n" -"Language: sl\n" -"Language-Team: Slovenian " -"(http://www.transifex.com/projects/p/sphinx-1/language/sl/)\n" -"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 " -"|| n%100==4 ? 2 : 3)\n" +"Language-Team: Slovenian (http://www.transifex.com/sphinx-doc/sphinx-1/language/sl/)\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 2.2.0\n" +"Language: sl\n" +"Plural-Forms: nplurals=4; plural=(n%100==1 ? 0 : n%100==2 ? 1 : n%100==3 || n%100==4 ? 2 : 3);\n" #: sphinx/config.py:91 #, python-format @@ -179,9 +177,8 @@ msgid "variable" msgstr "" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "Parametri" +msgstr "" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -699,9 +696,7 @@ msgstr "Zadnjič posodobljeno %(last_updated)s." msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" -"Narejeno s Sphinx " -"%(sphinx_version)s." +msgstr "Narejeno s Sphinx %(sphinx_version)s." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -728,9 +723,7 @@ msgstr "naslednje poglavje" msgid "" "Please activate JavaScript to enable the search\n" " functionality." -msgstr "" -"Za pravilno delovanje Iskanja morete vklopiti\n" -" JavaScript." +msgstr "Za pravilno delovanje Iskanja morete vklopiti\n JavaScript." #: sphinx/themes/basic/search.html:32 msgid "" @@ -738,26 +731,25 @@ 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 "" -"Tukaj lahko iščete dokumente. Vnesite iskalni\n" -" niz v polje spodaj in pritisnite \"išči\". Sproženo iskanje\n" -" bo iskalo po vseh besedah v iskalnem nizu. Strani, ki ne\n" -" vsebujejo vseh besed ne bodo prikazane na seznamu rezultatov." +msgstr "Tukaj lahko iščete dokumente. Vnesite iskalni\n niz v polje spodaj in pritisnite \"išči\". Sproženo iskanje\n 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:39 sphinx/themes/basic/searchresults.html:17 +#: sphinx/themes/basic/search.html:39 +#: sphinx/themes/basic/searchresults.html:17 msgid "search" msgstr "išči" -#: 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:282 msgid "Search Results" msgstr "Rezultati Iskanja" -#: 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:284 msgid "" -"Your search did not match any documents. Please make sure that all words " -"are spelled correctly and that you've selected enough categories." +"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 @@ -860,9 +852,8 @@ msgid "Release" msgstr "Izdaja" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "Nevarno" +msgstr "" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -885,16 +876,3 @@ msgstr "" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[slika]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%d %B, %Y" - -#~ msgid "%b %d, %Y" -#~ msgstr "%d %b, %Y" - -#~ msgid "(The <> is located in %s, line %d.)" -#~ msgstr "" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "Vnesi ime modula, razreda ali funkcije." - diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.js b/sphinx/locale/sv/LC_MESSAGES/sphinx.js index 8fefd8f3e..f359e237a 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/sv/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "sv", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": "", "About these documents": "Om dessa dokument", "Automatically generated list of changes in version %(version)s": "Automatiskt genererad lista \u00f6ver f\u00f6r\u00e4ndringar i version %(version)s", "C API changes": "F\u00f6r\u00e4ndringar i C-API", "Changes in Version %(version)s — %(docstitle)s": "F\u00f6r\u00e4ndringar i Version %(version)s — %(docstitle)s", "Collapse sidebar": "D\u00f6lj sidolist", "Complete Table of Contents": "Komplett Inneh\u00e5llsf\u00f6rteckning", "Contents": "Inneh\u00e5ll", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "Skapad med Sphinx %(sphinx_version)s.", "Enter search terms or a module, class or function name.": "Ange s\u00f6kord eller modul-, klass- eller funktionsnamn.", "Expand sidebar": "Expandera sidolist", "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.": "H\u00e4r kan du s\u00f6ka bland dessa dokument. Ange s\u00f6kord nedan och klicka \"s\u00f6k\".\n S\u00f6kningen m\u00e5ste tr\u00e4ffa p\u00e5 samtliga angivna s\u00f6kord.", "Full index on one page": "Hela inneh\u00e5llsf\u00f6rteckningen p\u00e5 en sida", "General Index": "Huvudindex", "Global Module Index": "Global Modulindex", "Go": "G\u00e5", "Hide Search Matches": "D\u00f6lj S\u00f6kresultat", "Index": "Index", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Inneh\u00e5llsf\u00f6rteckning per inledande bokstav", "Indices and tables:": "Index och tabeller", "Last updated on %(last_updated)s.": "Senast uppdaterad %(last_updated)s.", "Library changes": "F\u00f6r\u00e4ndringar i bibliotek", "Navigation": "Navigation", "Next topic": "N\u00e4sta titel", "Other changes": "\u00d6vriga f\u00f6r\u00e4ndringar", "Overview": "\u00d6versikt", "Permalink to this definition": "Permalink till denna definition", "Permalink to this headline": "Permalink till denna rubrik", "Please activate JavaScript to enable the search\n functionality.": "Var god aktivera JavaScript f\u00f6r s\u00f6kfunktionalitet.", "Preparing search...": "", "Previous topic": "F\u00f6reg\u00e5ende titel", "Quick search": "Snabbs\u00f6k", "Search": "S\u00f6k", "Search Page": "S\u00f6ksida", "Search Results": "S\u00f6kresultat", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "S\u00f6k bland %(docstitle)s", "Searching": "", "Show Source": "Visa k\u00e4llfil", "Table Of Contents": "Inneh\u00e5llsf\u00f6rteckning", "This Page": "Denna Sida", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "alla funktioner, klasser, villkor", "can be huge": "kan bli stort", "last updated": "", "lists all sections and subsections": "lista \u00f6ver alla paragrafer och underparagrafer", "next chapter": "N\u00e4sta kapitel", "previous chapter": "F\u00f6reg\u00e5ende kapitel", "quick access to all modules": "genv\u00e4g till alla moduler", "search": "s\u00f6k", "search this documentation": "s\u00f6k i det h\u00e4r dokumentet", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ No newline at end of file +Documentation.addTranslations({"locale": "sv", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": "", "About these documents": "Om dessa dokument", "Automatically generated list of changes in version %(version)s": "Automatiskt genererad lista \u00f6ver f\u00f6r\u00e4ndringar i version %(version)s", "C API changes": "F\u00f6r\u00e4ndringar i C-API", "Changes in Version %(version)s — %(docstitle)s": "F\u00f6r\u00e4ndringar i Version %(version)s — %(docstitle)s", "Collapse sidebar": "D\u00f6lj sidolist", "Complete Table of Contents": "Komplett Inneh\u00e5llsf\u00f6rteckning", "Contents": "Inneh\u00e5ll", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "Skapad med Sphinx %(sphinx_version)s.", "Expand sidebar": "Expandera sidolist", "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.": "H\u00e4r kan du s\u00f6ka bland dessa dokument. Ange s\u00f6kord nedan och klicka \"s\u00f6k\".\n S\u00f6kningen m\u00e5ste tr\u00e4ffa p\u00e5 samtliga angivna s\u00f6kord.", "Full index on one page": "Hela inneh\u00e5llsf\u00f6rteckningen p\u00e5 en sida", "General Index": "Huvudindex", "Global Module Index": "Global Modulindex", "Go": "G\u00e5", "Hide Search Matches": "D\u00f6lj S\u00f6kresultat", "Index": "Index", "Index – %(key)s": "Index – %(key)s", "Index pages by letter": "Inneh\u00e5llsf\u00f6rteckning per inledande bokstav", "Indices and tables:": "Index och tabeller", "Last updated on %(last_updated)s.": "Senast uppdaterad %(last_updated)s.", "Library changes": "F\u00f6r\u00e4ndringar i bibliotek", "Navigation": "Navigation", "Next topic": "N\u00e4sta titel", "Other changes": "\u00d6vriga f\u00f6r\u00e4ndringar", "Overview": "\u00d6versikt", "Permalink to this definition": "Permalink till denna definition", "Permalink to this headline": "Permalink till denna rubrik", "Please activate JavaScript to enable the search\n functionality.": "Var god aktivera JavaScript f\u00f6r s\u00f6kfunktionalitet.", "Preparing search...": "", "Previous topic": "F\u00f6reg\u00e5ende titel", "Quick search": "Snabbs\u00f6k", "Search": "S\u00f6k", "Search Page": "S\u00f6ksida", "Search Results": "S\u00f6kresultat", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "S\u00f6k bland %(docstitle)s", "Searching": "", "Show Source": "Visa k\u00e4llfil", "Table Of Contents": "Inneh\u00e5llsf\u00f6rteckning", "This Page": "Denna Sida", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "alla funktioner, klasser, villkor", "can be huge": "kan bli stort", "last updated": "", "lists all sections and subsections": "lista \u00f6ver alla paragrafer och underparagrafer", "next chapter": "N\u00e4sta kapitel", "previous chapter": "F\u00f6reg\u00e5ende kapitel", "quick access to all modules": "genv\u00e4g till alla moduler", "search": "s\u00f6k", "search this documentation": "s\u00f6k i det h\u00e4r dokumentet", "the documentation for": ""}, "plural_expr": "(n != 1)"}); \ 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 2b958d631..a85277178 100644 Binary files a/sphinx/locale/sv/LC_MESSAGES/sphinx.mo and b/sphinx/locale/sv/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/sv/LC_MESSAGES/sphinx.po b/sphinx/locale/sv/LC_MESSAGES/sphinx.po index 0907af198..e95f3372d 100644 --- a/sphinx/locale/sv/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/sv/LC_MESSAGES/sphinx.po @@ -1,23 +1,22 @@ -# Swedish translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" "Last-Translator: Takayuki Shimizukawa \n" -"Language: sv\n" -"Language-Team: Swedish " -"(http://www.transifex.com/projects/p/sphinx-1/language/sv/)\n" -"Plural-Forms: nplurals=2; plural=(n != 1)\n" +"Language-Team: Swedish (http://www.transifex.com/sphinx-doc/sphinx-1/language/sv/)\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 2.2.0\n" +"Language: sv\n" +"Plural-Forms: nplurals=2; plural=(n != 1);\n" #: sphinx/config.py:91 #, python-format @@ -178,9 +177,8 @@ msgid "variable" msgstr "variabel" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "Parametrar" +msgstr "" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -470,14 +468,13 @@ msgid "Todo" msgstr "Att göra" #: sphinx/ext/todo.py:129 -#, fuzzy msgid "<>" -msgstr "ursprungsvärde" +msgstr "" #: sphinx/ext/todo.py:132 -#, fuzzy, python-format +#, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "(<> finns i %s, på rad %d.)" +msgstr "" #: sphinx/ext/todo.py:141 msgid "original entry" @@ -699,9 +696,7 @@ msgstr "Senast uppdaterad %(last_updated)s." msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" -"Skapad med Sphinx " -"%(sphinx_version)s." +msgstr "Skapad med Sphinx %(sphinx_version)s." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -736,25 +731,25 @@ 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 "" -"Här kan du söka bland dessa dokument. Ange sökord nedan och klicka " -"\"sök\".\n" -" Sökningen måste träffa på samtliga angivna sökord." +msgstr "Här kan du söka bland dessa dokument. Ange sökord nedan och klicka \"sök\".\n Sökningen måste träffa på samtliga angivna sökord." -#: 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 "sök" -#: 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:282 msgid "Search Results" msgstr "Sökresultat" -#: 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:284 msgid "" -"Your search did not match any documents. Please make sure that all words " -"are spelled correctly and that you've selected enough categories." +"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 @@ -857,9 +852,8 @@ msgid "Release" msgstr "Utgåva" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "Risk" +msgstr "" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -882,13 +876,3 @@ msgstr "" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[image]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%B %d, %Y" - -#~ msgid "%b %d, %Y" -#~ msgstr "%b %d, %Y" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "Ange sökord eller modul-, klass- eller funktionsnamn." - diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.js b/sphinx/locale/tr/LC_MESSAGES/sphinx.js index 59877e3c2..c792c98e8 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/tr/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "tr", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", \u015funun i\u00e7inde:", "About these documents": "Bu belgeler hakk\u0131nda", "Automatically generated list of changes in version %(version)s": "%(version)s s\u00fcr\u00fcm\u00fcndeki de\u011fi\u015fikliklerin otomatik olarak \u00fcretilmi\u015f listesi", "C API changes": "C API'sindeki de\u011fi\u015fiklikler", "Changes in Version %(version)s — %(docstitle)s": "S\u00fcr\u00fcm %(version)s — %(docstitle)s i\u00e7indeki De\u011fi\u015fiklikler", "Collapse sidebar": "Yan \u00e7ubu\u011fu daralt", "Complete Table of Contents": "Ayr\u0131nt\u0131l\u0131 \u0130\u00e7indekiler Tablosu", "Contents": "\u0130\u00e7indekiler", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "Sphinx %(sphinx_version)s ile olu\u015fturulmu\u015ftur.", "Enter search terms or a module, class or function name.": "Aranacak terimleri veya mod\u00fcl, s\u0131n\u0131f ya da fonksiyon ad\u0131n\u0131 yaz\u0131n\u0131z", "Expand sidebar": "Yan \u00e7ubu\u011fu geni\u015flet", "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.": "Burada belgeler i\u00e7inde arama yapabilirsiniz. Arad\u0131\u011f\u0131n\u0131z kelimeyi \na\u015fa\u011f\u0131daki kutuya yaz\u0131p \"ara\" d\u00fc\u011fmesine bas\u0131n\u0131z. Arama i\u015flevi \notomatik olarak b\u00fct\u00fcn kelimeleri arayacakt\u0131r. Eksik kelime i\u00e7eren \nsayfalar sonu\u00e7 listesinde g\u00f6r\u00fcnmez.", "Full index on one page": "B\u00fct\u00fcn dizin tek sayfada", "General Index": "Genel Dizin", "Global Module Index": "Global Mod\u00fcl Dizini", "Go": "Git", "Hide Search Matches": "Arama Sonu\u00e7lar\u0131n\u0131 Gizle", "Index": "Dizin", "Index – %(key)s": "Dizin – %(key)s", "Index pages by letter": "Harfe g\u00f6re dizin sayfalar\u0131", "Indices and tables:": "Dizinler ve tablolar", "Last updated on %(last_updated)s.": "Son g\u00fcncelleme: %(last_updated)s.", "Library changes": "K\u00fct\u00fcphane de\u011fi\u015fiklikleri", "Navigation": "Gezinti", "Next topic": "Sonraki konu", "Other changes": "Di\u011fer de\u011fi\u015fiklikler", "Overview": "Genel Bak\u0131\u015f", "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", "Please activate JavaScript to enable the search\n functionality.": "Arama i\u015flevini kullanabilmek i\u00e7in l\u00fctfen JavaScript'i\n etkinle\u015ftirin.", "Preparing search...": "Aramaya haz\u0131rlan\u0131yor...", "Previous topic": "\u00d6nceki konu", "Quick search": "H\u0131zl\u0131 Arama", "Search": "Ara", "Search Page": "Arama Sayfas\u0131", "Search Results": "Arama Sonu\u00e7lar\u0131", "Search finished, found %s page(s) matching the search query.": "Arama tamamland\u0131. Sorguyu i\u00e7eren %s sayfa bulundu.", "Search within %(docstitle)s": "%(docstitle)s i\u00e7inde ara", "Searching": "Aran\u0131yor", "Show Source": "Kayna\u011f\u0131 G\u00f6ster", "Table Of Contents": "\u0130\u00e7indekiler Tablosu", "This Page": "Bu Sayfa", "Welcome! This is": "Ho\u015fgeldiniz! Kar\u015f\u0131n\u0131zda", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Arama sonucunda herhangi bir belge bulunamad\u0131. B\u00fct\u00fcn kelimeleri do\u011fru yazd\u0131\u011f\u0131n\u0131zdan ve gerekli b\u00fct\u00fcn kategorileri se\u00e7ti\u011finizden emin olun.", "all functions, classes, terms": "b\u00fct\u00fcn fonksiyonlar, s\u0131n\u0131flar, terimler", "can be huge": "\u00e7ok b\u00fcy\u00fck olabilir", "last updated": "son g\u00fcncelleme", "lists all sections and subsections": "b\u00fct\u00fcn b\u00f6l\u00fcmler ve alt b\u00f6l\u00fcmler listelenir", "next chapter": "sonraki b\u00f6l\u00fcm", "previous chapter": "\u00f6nceki b\u00f6l\u00fcm", "quick access to all modules": "b\u00fct\u00fcn mod\u00fcllere h\u0131zl\u0131 eri\u015fim", "search": "ara", "search this documentation": "Bu belgelerde ara", "the documentation for": "belgelendirme konusu: "}, "plural_expr": "(n > 1)"}); \ No newline at end of file +Documentation.addTranslations({"locale": "tr", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": ", \u015funun i\u00e7inde:", "About these documents": "Bu belgeler hakk\u0131nda", "Automatically generated list of changes in version %(version)s": "%(version)s s\u00fcr\u00fcm\u00fcndeki de\u011fi\u015fikliklerin otomatik olarak \u00fcretilmi\u015f listesi", "C API changes": "C API'sindeki de\u011fi\u015fiklikler", "Changes in Version %(version)s — %(docstitle)s": "S\u00fcr\u00fcm %(version)s — %(docstitle)s i\u00e7indeki De\u011fi\u015fiklikler", "Collapse sidebar": "Yan \u00e7ubu\u011fu daralt", "Complete Table of Contents": "Ayr\u0131nt\u0131l\u0131 \u0130\u00e7indekiler Tablosu", "Contents": "\u0130\u00e7indekiler", "Copyright": "Copyright", "Created using Sphinx %(sphinx_version)s.": "Sphinx %(sphinx_version)s ile olu\u015fturulmu\u015ftur.", "Expand sidebar": "Yan \u00e7ubu\u011fu geni\u015flet", "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.": "Burada belgeler i\u00e7inde arama yapabilirsiniz. Arad\u0131\u011f\u0131n\u0131z kelimeyi \na\u015fa\u011f\u0131daki kutuya yaz\u0131p \"ara\" d\u00fc\u011fmesine bas\u0131n\u0131z. Arama i\u015flevi \notomatik olarak b\u00fct\u00fcn kelimeleri arayacakt\u0131r. Eksik kelime i\u00e7eren \nsayfalar sonu\u00e7 listesinde g\u00f6r\u00fcnmez.", "Full index on one page": "B\u00fct\u00fcn dizin tek sayfada", "General Index": "Genel Dizin", "Global Module Index": "Global Mod\u00fcl Dizini", "Go": "Git", "Hide Search Matches": "Arama Sonu\u00e7lar\u0131n\u0131 Gizle", "Index": "Dizin", "Index – %(key)s": "Dizin – %(key)s", "Index pages by letter": "Harfe g\u00f6re dizin sayfalar\u0131", "Indices and tables:": "Dizinler ve tablolar", "Last updated on %(last_updated)s.": "Son g\u00fcncelleme: %(last_updated)s.", "Library changes": "K\u00fct\u00fcphane de\u011fi\u015fiklikleri", "Navigation": "Gezinti", "Next topic": "Sonraki konu", "Other changes": "Di\u011fer de\u011fi\u015fiklikler", "Overview": "Genel Bak\u0131\u015f", "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", "Please activate JavaScript to enable the search\n functionality.": "Arama i\u015flevini kullanabilmek i\u00e7in l\u00fctfen JavaScript'i\n etkinle\u015ftirin.", "Preparing search...": "Aramaya haz\u0131rlan\u0131yor...", "Previous topic": "\u00d6nceki konu", "Quick search": "H\u0131zl\u0131 Arama", "Search": "Ara", "Search Page": "Arama Sayfas\u0131", "Search Results": "Arama Sonu\u00e7lar\u0131", "Search finished, found %s page(s) matching the search query.": "Arama tamamland\u0131. Sorguyu i\u00e7eren %s sayfa bulundu.", "Search within %(docstitle)s": "%(docstitle)s i\u00e7inde ara", "Searching": "Aran\u0131yor", "Show Source": "Kayna\u011f\u0131 G\u00f6ster", "Table Of Contents": "\u0130\u00e7indekiler Tablosu", "This Page": "Bu Sayfa", "Welcome! This is": "Ho\u015fgeldiniz! Kar\u015f\u0131n\u0131zda", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "Arama sonucunda herhangi bir belge bulunamad\u0131. B\u00fct\u00fcn kelimeleri do\u011fru yazd\u0131\u011f\u0131n\u0131zdan ve gerekli b\u00fct\u00fcn kategorileri se\u00e7ti\u011finizden emin olun.", "all functions, classes, terms": "b\u00fct\u00fcn fonksiyonlar, s\u0131n\u0131flar, terimler", "can be huge": "\u00e7ok b\u00fcy\u00fck olabilir", "last updated": "son g\u00fcncelleme", "lists all sections and subsections": "b\u00fct\u00fcn b\u00f6l\u00fcmler ve alt b\u00f6l\u00fcmler listelenir", "next chapter": "sonraki b\u00f6l\u00fcm", "previous chapter": "\u00f6nceki b\u00f6l\u00fcm", "quick access to all modules": "b\u00fct\u00fcn mod\u00fcllere h\u0131zl\u0131 eri\u015fim", "search": "ara", "search this documentation": "Bu belgelerde ara", "the documentation for": "belgelendirme konusu: "}, "plural_expr": "(n > 1)"}); \ 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 c4b415f99..98897cead 100644 Binary files a/sphinx/locale/tr/LC_MESSAGES/sphinx.mo and b/sphinx/locale/tr/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/tr/LC_MESSAGES/sphinx.po b/sphinx/locale/tr/LC_MESSAGES/sphinx.po index d801c4fbe..443b80f16 100644 --- a/sphinx/locale/tr/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/tr/LC_MESSAGES/sphinx.po @@ -1,23 +1,24 @@ -# Turkish translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# Fırat Özgül , 2013-2016 +# FIRST AUTHOR , 2011 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" -"Last-Translator: Takayuki Shimizukawa \n" -"Language: tr\n" -"Language-Team: Turkish " -"(http://www.transifex.com/projects/p/sphinx-1/language/tr/)\n" -"Plural-Forms: nplurals=2; plural=(n > 1)\n" +"PO-Revision-Date: 2016-03-14 14:17+0000\n" +"Last-Translator: Fırat Özgül \n" +"Language-Team: Turkish (http://www.transifex.com/sphinx-doc/sphinx-1/language/tr/)\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 2.2.0\n" +"Language: tr\n" +"Plural-Forms: nplurals=2; plural=(n > 1);\n" #: sphinx/config.py:91 #, python-format @@ -61,7 +62,7 @@ msgstr "Python'ı İyileştirme Önerileri; PEP %s" #: sphinx/transforms.py:56 sphinx/writers/latex.py:374 #: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222 msgid "MMMM dd, YYYY" -msgstr "" +msgstr "AAAA gg, YYY" #: sphinx/builders/changes.py:75 msgid "Builtins" @@ -73,7 +74,7 @@ msgstr "Modül düzeyi" #: sphinx/builders/html.py:295 msgid "MMM dd, YYYY" -msgstr "" +msgstr "AAA gg, YYYY" #: sphinx/builders/html.py:315 sphinx/themes/basic/defindex.html:30 msgid "General Index" @@ -178,9 +179,8 @@ msgid "variable" msgstr "değişkeni" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "Parametreler" +msgstr "Şablon Parametreleri" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -470,14 +470,13 @@ msgid "Todo" msgstr "Yapılacaklar" #: sphinx/ext/todo.py:129 -#, fuzzy msgid "<>" -msgstr "özgün girdi" +msgstr "<<özgün girdi>>" #: sphinx/ext/todo.py:132 -#, fuzzy, python-format +#, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "(<<özgün girdi>> %s içinde ve %d satırında bulunuyor.)" +msgstr "(<<özgün girdi>> %s içinde, %d. satırda.)" #: sphinx/ext/todo.py:141 msgid "original entry" @@ -699,9 +698,7 @@ msgstr "Son güncelleme: %(last_updated)s." msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" -"Sphinx %(sphinx_version)s ile " -"oluşturulmuştur." +msgstr "Sphinx %(sphinx_version)s ile oluşturulmuştur." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -728,9 +725,7 @@ msgstr "sonraki bölüm" msgid "" "Please activate JavaScript to enable the search\n" " functionality." -msgstr "" -"Arama işlevini kullanabilmek için lütfen JavaScript'i\n" -" etkinleştirin." +msgstr "Arama işlevini kullanabilmek için lütfen JavaScript'i\n etkinleştirin." #: sphinx/themes/basic/search.html:32 msgid "" @@ -738,29 +733,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 "" -"Burada belgeler içinde arama yapabilirsiniz. Aradığınız kelimeyi \n" -"aşağıdaki kutuya yazıp \"ara\" düğmesine basınız. Arama işlevi \n" -"otomatik olarak bütün kelimeleri arayacaktır. Eksik kelime içeren \n" -"sayfalar sonuç listesinde görünmez." +msgstr "Burada belgeler içinde arama yapabilirsiniz. Aradığınız kelimeyi \naşağıdaki kutuya yazıp \"ara\" düğmesine basınız. Arama işlevi \notomatik olarak bütün kelimeleri arayacaktır. Eksik kelime içeren \nsayfalar sonuç listesinde görünmez." -#: 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 "ara" -#: 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:282 msgid "Search Results" msgstr "Arama Sonuçları" -#: 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:284 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." +"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" @@ -851,7 +843,7 @@ msgstr "Bu resmin kalıcı bağlantısı" #: sphinx/writers/html.py:355 msgid "Permalink to this toctree" -msgstr "" +msgstr "Bu içindekiler tablosunun kalıcı bağlantısı" #: sphinx/writers/html.py:677 msgid "Permalink to this table" @@ -862,9 +854,8 @@ msgid "Release" msgstr "Sürüm" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "Tehlike" +msgstr "sayfa" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -887,13 +878,3 @@ msgstr "[resim: %s]" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[resim]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%d %B %Y" - -#~ msgid "%b %d, %Y" -#~ msgstr "%d %b %Y" - -#~ 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" - diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.js b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.js index 723933af2..dc987e2fe 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", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": "", "About these documents": "\u041f\u0440\u043e \u0446\u0456 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0438", "Automatically generated list of changes in version %(version)s": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e\u0433\u043e \u0437\u0433\u0435\u043d\u0435\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a \u0437\u043c\u0456\u043d \u0432 \u0432\u0435\u0440\u0441\u0456\u0457 %(version)s", "C API changes": "\u0437\u043c\u0456\u043d\u0438 C API", "Changes in Version %(version)s — %(docstitle)s": "\u0417\u043c\u0456\u043d\u0438 \u0432 \u0412\u0435\u0440\u0441\u0456\u0457 %(version)s — %(docstitle)s", "Collapse sidebar": "", "Complete Table of Contents": "\u041f\u043e\u0432\u043d\u0438\u0439 \u0417\u043c\u0456\u0441\u0442", "Contents": "", "Copyright": "\u0410\u0432\u0442\u043e\u0440\u0441\u044c\u043a\u0456 \u043f\u0440\u0430\u0432\u0430", "Created using Sphinx %(sphinx_version)s.": "\u0421\u0442\u0432\u043e\u0440\u0435\u043d\u043e \u0437 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u0430\u043d\u043d\u044f\u043c Sphinx %(sphinx_version)s.", "Enter search terms or a module, class or function name.": "\u0412\u0432\u0435\u0434\u0456\u0442\u044c \u043f\u043e\u0448\u0443\u043a\u043e\u0432\u0438\u0439 \u0442\u0435\u0440\u043c\u0456\u043d, \u043c\u043e\u0434\u0443\u043b\u044c, \u043a\u043b\u0430\u0441 \u0447\u0438 \u043d\u0430\u0437\u0432\u0443 \u0444\u0443\u043d\u043a\u0446\u0456\u0457.", "Expand sidebar": "", "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.": "\u0417\u0432\u0456\u0434\u0441\u0438 \u0432\u0438 \u043c\u043e\u0436\u0435\u0442\u0435 \u0448\u0443\u043a\u0430\u0442\u0438 \u0446\u0456 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0438. \u0412\u0432\u0435\u0434\u0456\u0442\u044c \u0432\u0430\u0448\u0456 \u043f\u043e\u0448\u0443\u043a\u043e\u0432\u0456\n \u0441\u043b\u043e\u0432\u0430 \u0432 \u043f\u043e\u043b\u0435 \u043d\u0438\u0436\u0447\u0435 \u0442\u0430 \u043d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c \"\u043f\u043e\u0448\u0443\u043a\". \u0417\u0430\u0443\u0432\u0430\u0436\u0442\u0435 \u0449\u043e \u0444\u0443\u043d\u043a\u0446\u0456\u044f\n \u043f\u043e\u0448\u0443\u043a\u0443 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0448\u0443\u043a\u0430\u0442\u0438\u043c\u0435 \u0437\u0430 \u0432\u0441\u0456\u043c\u0430 \u0441\u043b\u043e\u0432\u0430\u043c\u0438. \u0421\u0442\u043e\u0440\u0456\u043d\u043a\u0438\n \u0449\u043e \u043c\u0456\u0441\u0442\u044f\u0442\u044c \u043c\u0435\u043d\u0448\u0435 \u0441\u043b\u0456\u0432 \u043d\u0435 \u0437'\u044f\u0432\u043b\u044f\u0442\u044c\u0441\u044f \u0432 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0443\u044e\u0447\u043e\u043c\u0443 \u0441\u043f\u0438\u0441\u043a\u0443.", "Full index on one page": "\u041f\u043e\u0432\u043d\u0438\u0439 \u0456\u043d\u0434\u0435\u043a\u0441 \u043d\u0430 \u043e\u0434\u043d\u0456\u0439 \u0441\u0442\u043e\u0440\u0456\u043d\u0446\u0456", "General Index": "\u0417\u0430\u0433\u0430\u043b\u044c\u043d\u0438\u0439 \u0456\u043d\u0434\u0435\u043a\u0441", "Global Module Index": "\u0417\u0430\u0433\u0430\u043b\u044c\u043d\u0438\u0439 \u0456\u043d\u0434\u0435\u043a\u0441 \u043c\u043e\u0434\u0443\u043b\u0456\u0432", "Go": "\u0412\u043f\u0435\u0440\u0435\u0434", "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", "Index": "\u0406\u043d\u0434\u0435\u043a\u0441", "Index – %(key)s": "\u0406\u043d\u0434\u0435\u043a\u0441 – %(key)s", "Index pages by letter": "\u0406\u043d\u0434\u0435\u043a\u0441\u043d\u0456 \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0438 \u043f\u043e \u0441\u0438\u043c\u0432\u043e\u043b\u0430\u043c", "Indices and tables:": "\u0406\u043d\u0434\u0435\u043a\u0441\u0438 \u0442\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0456:", "Last updated on %(last_updated)s.": "\u0412\u043e\u0441\u0442\u0430\u043d\u043d\u0454 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043e %(last_updated)s.", "Library changes": "\u0417\u043c\u0456\u043d\u0438 \u0432 \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u0446\u0456", "Navigation": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u044f", "Next topic": "\u041d\u0430\u0441\u0442\u0443\u043f\u043d\u0430 \u0442\u0435\u043c\u0430", "Other changes": "\u0406\u043d\u0448\u0456 \u0437\u043c\u0456\u043d\u0438", "Overview": "\u041e\u0433\u043b\u044f\u0434", "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", "Please activate JavaScript to enable the search\n functionality.": "\u0411\u0443\u0434\u044c-\u043b\u0430\u0441\u043a\u0430 \u0432\u0456\u043c\u043a\u043d\u0456\u0442\u044c \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u043a\u0443 JavaScript, \u0449\u043e\u0431 \u0432\u0432\u0456\u043a\u043d\u0443\u0442\u0438\n\"\n\" \u043f\u043e\u0448\u0443\u043a.", "Preparing search...": "", "Previous topic": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0456\u0439 \u0440\u043e\u0437\u0434\u0456\u043b", "Quick search": "\u0428\u0432\u0438\u0434\u043a\u0438\u0439 \u043f\u043e\u0448\u0443\u043a", "Search": "\u041f\u043e\u0448\u0443\u043a", "Search Page": "\u0421\u0442\u043e\u0440\u0456\u043d\u043a\u0430 \u043f\u043e\u0448\u0443\u043a\u0443", "Search Results": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0438 \u043f\u043e\u0448\u0443\u043a\u0443", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "\u0428\u0443\u043a\u0430\u0442\u0438 \u0432 %(docstitle)s", "Searching": "", "Show Source": "\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0437\u0438\u0442\u0438 \u0432\u0438\u0445\u0456\u0434\u043d\u0438\u0439 \u0442\u0435\u043a\u0441\u0442", "Table Of Contents": "\u0417\u043c\u0456\u0441\u0442", "This Page": "\u0426\u044f \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0430", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "\u0432\u0441\u0456 \u0444\u0443\u043d\u043a\u0446\u0456\u0457, \u043a\u043b\u0430\u0441\u0438, \u0442\u0435\u0440\u043c\u0456\u043d\u0438", "can be huge": "\u043c\u043e\u0436\u0435 \u0431\u0443\u0442\u0438 \u0432\u0435\u043b\u0438\u0447\u0435\u0437\u043d\u0438\u043c", "last updated": "", "lists all sections and subsections": "\u043f\u0435\u0440\u0435\u043b\u0456\u0447\u0438\u0442\u0438 \u0432\u0441\u0456 \u0441\u0435\u043a\u0446\u0456\u0457 \u0442\u0430 \u043f\u0456\u0434\u0441\u0435\u043a\u0446\u0456\u0457", "next chapter": "\u043d\u0430\u0441\u0442\u0443\u043f\u043d\u0438\u0439 \u0440\u043e\u0437\u0434\u0456\u043b", "previous chapter": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0456\u0439 \u0440\u043e\u0437\u0434\u0456\u043b", "quick access to all modules": "\u0448\u0432\u0438\u0434\u043a\u0438\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u0434\u043e \u0432\u0441\u0456\u0445 \u043c\u043e\u0434\u0443\u043b\u0456\u0432", "search": "\u043f\u043e\u0448\u0443\u043a", "search this documentation": "\u0448\u0443\u043a\u0430\u0442\u0438 \u0446\u044e \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0456\u044e", "the documentation for": ""}, "plural_expr": "(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)"}); \ No newline at end of file +Documentation.addTranslations({"locale": "uk_UA", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", "© Copyright %(copyright)s.": "© Copyright %(copyright)s.", ", in ": "", "About these documents": "\u041f\u0440\u043e \u0446\u0456 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0438", "Automatically generated list of changes in version %(version)s": "\u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e\u0433\u043e \u0437\u0433\u0435\u043d\u0435\u0440\u043e\u0432\u0430\u043d\u0438\u0439 \u0441\u043f\u0438\u0441\u043e\u043a \u0437\u043c\u0456\u043d \u0432 \u0432\u0435\u0440\u0441\u0456\u0457 %(version)s", "C API changes": "\u0437\u043c\u0456\u043d\u0438 C API", "Changes in Version %(version)s — %(docstitle)s": "\u0417\u043c\u0456\u043d\u0438 \u0432 \u0412\u0435\u0440\u0441\u0456\u0457 %(version)s — %(docstitle)s", "Collapse sidebar": "", "Complete Table of Contents": "\u041f\u043e\u0432\u043d\u0438\u0439 \u0417\u043c\u0456\u0441\u0442", "Contents": "", "Copyright": "\u0410\u0432\u0442\u043e\u0440\u0441\u044c\u043a\u0456 \u043f\u0440\u0430\u0432\u0430", "Created using Sphinx %(sphinx_version)s.": "\u0421\u0442\u0432\u043e\u0440\u0435\u043d\u043e \u0437 \u0432\u0438\u043a\u043e\u0440\u0438\u0441\u0442\u0430\u043d\u043d\u044f\u043c Sphinx %(sphinx_version)s.", "Expand sidebar": "", "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.": "\u0417\u0432\u0456\u0434\u0441\u0438 \u0432\u0438 \u043c\u043e\u0436\u0435\u0442\u0435 \u0448\u0443\u043a\u0430\u0442\u0438 \u0446\u0456 \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0438. \u0412\u0432\u0435\u0434\u0456\u0442\u044c \u0432\u0430\u0448\u0456 \u043f\u043e\u0448\u0443\u043a\u043e\u0432\u0456\n \u0441\u043b\u043e\u0432\u0430 \u0432 \u043f\u043e\u043b\u0435 \u043d\u0438\u0436\u0447\u0435 \u0442\u0430 \u043d\u0430\u0442\u0438\u0441\u043d\u0456\u0442\u044c \"\u043f\u043e\u0448\u0443\u043a\". \u0417\u0430\u0443\u0432\u0430\u0436\u0442\u0435 \u0449\u043e \u0444\u0443\u043d\u043a\u0446\u0456\u044f\n \u043f\u043e\u0448\u0443\u043a\u0443 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0448\u0443\u043a\u0430\u0442\u0438\u043c\u0435 \u0437\u0430 \u0432\u0441\u0456\u043c\u0430 \u0441\u043b\u043e\u0432\u0430\u043c\u0438. \u0421\u0442\u043e\u0440\u0456\u043d\u043a\u0438\n \u0449\u043e \u043c\u0456\u0441\u0442\u044f\u0442\u044c \u043c\u0435\u043d\u0448\u0435 \u0441\u043b\u0456\u0432 \u043d\u0435 \u0437'\u044f\u0432\u043b\u044f\u0442\u044c\u0441\u044f \u0432 \u0440\u0435\u0437\u0443\u043b\u044c\u0442\u0443\u044e\u0447\u043e\u043c\u0443 \u0441\u043f\u0438\u0441\u043a\u0443.", "Full index on one page": "\u041f\u043e\u0432\u043d\u0438\u0439 \u0456\u043d\u0434\u0435\u043a\u0441 \u043d\u0430 \u043e\u0434\u043d\u0456\u0439 \u0441\u0442\u043e\u0440\u0456\u043d\u0446\u0456", "General Index": "\u0417\u0430\u0433\u0430\u043b\u044c\u043d\u0438\u0439 \u0456\u043d\u0434\u0435\u043a\u0441", "Global Module Index": "\u0417\u0430\u0433\u0430\u043b\u044c\u043d\u0438\u0439 \u0456\u043d\u0434\u0435\u043a\u0441 \u043c\u043e\u0434\u0443\u043b\u0456\u0432", "Go": "\u0412\u043f\u0435\u0440\u0435\u0434", "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", "Index": "\u0406\u043d\u0434\u0435\u043a\u0441", "Index – %(key)s": "\u0406\u043d\u0434\u0435\u043a\u0441 – %(key)s", "Index pages by letter": "\u0406\u043d\u0434\u0435\u043a\u0441\u043d\u0456 \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0438 \u043f\u043e \u0441\u0438\u043c\u0432\u043e\u043b\u0430\u043c", "Indices and tables:": "\u0406\u043d\u0434\u0435\u043a\u0441\u0438 \u0442\u0430 \u0442\u0430\u0431\u043b\u0438\u0446\u0456:", "Last updated on %(last_updated)s.": "\u0412\u043e\u0441\u0442\u0430\u043d\u043d\u0454 \u043e\u043d\u043e\u0432\u043b\u0435\u043d\u043e %(last_updated)s.", "Library changes": "\u0417\u043c\u0456\u043d\u0438 \u0432 \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u0446\u0456", "Navigation": "\u041d\u0430\u0432\u0456\u0433\u0430\u0446\u0456\u044f", "Next topic": "\u041d\u0430\u0441\u0442\u0443\u043f\u043d\u0430 \u0442\u0435\u043c\u0430", "Other changes": "\u0406\u043d\u0448\u0456 \u0437\u043c\u0456\u043d\u0438", "Overview": "\u041e\u0433\u043b\u044f\u0434", "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", "Please activate JavaScript to enable the search\n functionality.": "\u0411\u0443\u0434\u044c-\u043b\u0430\u0441\u043a\u0430 \u0432\u0456\u043c\u043a\u043d\u0456\u0442\u044c \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u043a\u0443 JavaScript, \u0449\u043e\u0431 \u0432\u0432\u0456\u043a\u043d\u0443\u0442\u0438\n\"\n\" \u043f\u043e\u0448\u0443\u043a.", "Preparing search...": "", "Previous topic": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0456\u0439 \u0440\u043e\u0437\u0434\u0456\u043b", "Quick search": "\u0428\u0432\u0438\u0434\u043a\u0438\u0439 \u043f\u043e\u0448\u0443\u043a", "Search": "\u041f\u043e\u0448\u0443\u043a", "Search Page": "\u0421\u0442\u043e\u0440\u0456\u043d\u043a\u0430 \u043f\u043e\u0448\u0443\u043a\u0443", "Search Results": "\u0420\u0435\u0437\u0443\u043b\u044c\u0442\u0430\u0442\u0438 \u043f\u043e\u0448\u0443\u043a\u0443", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "\u0428\u0443\u043a\u0430\u0442\u0438 \u0432 %(docstitle)s", "Searching": "", "Show Source": "\u0412\u0456\u0434\u043e\u0431\u0440\u0430\u0437\u0438\u0442\u0438 \u0432\u0438\u0445\u0456\u0434\u043d\u0438\u0439 \u0442\u0435\u043a\u0441\u0442", "Table Of Contents": "\u0417\u043c\u0456\u0441\u0442", "This Page": "\u0426\u044f \u0441\u0442\u043e\u0440\u0456\u043d\u043a\u0430", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "\u0432\u0441\u0456 \u0444\u0443\u043d\u043a\u0446\u0456\u0457, \u043a\u043b\u0430\u0441\u0438, \u0442\u0435\u0440\u043c\u0456\u043d\u0438", "can be huge": "\u043c\u043e\u0436\u0435 \u0431\u0443\u0442\u0438 \u0432\u0435\u043b\u0438\u0447\u0435\u0437\u043d\u0438\u043c", "last updated": "", "lists all sections and subsections": "\u043f\u0435\u0440\u0435\u043b\u0456\u0447\u0438\u0442\u0438 \u0432\u0441\u0456 \u0441\u0435\u043a\u0446\u0456\u0457 \u0442\u0430 \u043f\u0456\u0434\u0441\u0435\u043a\u0446\u0456\u0457", "next chapter": "\u043d\u0430\u0441\u0442\u0443\u043f\u043d\u0438\u0439 \u0440\u043e\u0437\u0434\u0456\u043b", "previous chapter": "\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0456\u0439 \u0440\u043e\u0437\u0434\u0456\u043b", "quick access to all modules": "\u0448\u0432\u0438\u0434\u043a\u0438\u0439 \u0434\u043e\u0441\u0442\u0443\u043f \u0434\u043e \u0432\u0441\u0456\u0445 \u043c\u043e\u0434\u0443\u043b\u0456\u0432", "search": "\u043f\u043e\u0448\u0443\u043a", "search this documentation": "\u0448\u0443\u043a\u0430\u0442\u0438 \u0446\u044e \u0434\u043e\u043a\u0443\u043c\u0435\u043d\u0442\u0430\u0446\u0456\u044e", "the documentation for": ""}, "plural_expr": "(n%10==1 && n%100!=11 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2)"}); \ 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 9645922e1..a7ddbd11e 100644 Binary files a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo and b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po index a95a6b437..4eb2c6425 100644 --- a/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/uk_UA/LC_MESSAGES/sphinx.po @@ -1,24 +1,23 @@ -# Ukrainian (Ukraine) translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# Petro Sasnyk , 2009 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" "Last-Translator: Takayuki Shimizukawa \n" -"Language: uk_UA\n" -"Language-Team: Ukrainian (Ukraine) " -"(http://www.transifex.com/projects/p/sphinx-1/language/uk_UA/)\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" +"Language-Team: Ukrainian (Ukraine) (http://www.transifex.com/sphinx-doc/sphinx-1/language/uk_UA/)\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 2.2.0\n" +"Language: uk_UA\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" #: sphinx/config.py:91 #, python-format @@ -179,9 +178,8 @@ msgid "variable" msgstr "" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "Параметри" +msgstr "" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -699,9 +697,7 @@ msgstr "Востаннє оновлено %(last_updated)s." msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" -"Створено з використанням Sphinx " -"%(sphinx_version)s." +msgstr "Створено з використанням Sphinx %(sphinx_version)s." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -728,10 +724,7 @@ msgstr "наступний розділ" msgid "" "Please activate JavaScript to enable the search\n" " functionality." -msgstr "" -"Будь-ласка вімкніть підтримку JavaScript, щоб ввікнути\n" -"\"\n" -"\" пошук." +msgstr "Будь-ласка вімкніть підтримку JavaScript, щоб ввікнути\n\"\n\" пошук." #: sphinx/themes/basic/search.html:32 msgid "" @@ -739,26 +732,25 @@ 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 "" -"Звідси ви можете шукати ці документи. Введіть ваші пошукові\n" -" слова в поле нижче та натисніть \"пошук\". Зауважте що функція\n" -" пошуку автоматично шукатиме за всіма словами. Сторінки\n" -" що містять менше слів не з'являться в результуючому списку." +msgstr "Звідси ви можете шукати ці документи. Введіть ваші пошукові\n слова в поле нижче та натисніть \"пошук\". Зауважте що функція\n пошуку автоматично шукатиме за всіма словами. Сторінки\n що містять менше слів не з'являться в результуючому списку." -#: 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 "пошук" -#: 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:282 msgid "Search Results" msgstr "Результати пошуку" -#: 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:284 msgid "" -"Your search did not match any documents. Please make sure that all words " -"are spelled correctly and that you've selected enough categories." +"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 @@ -861,9 +853,8 @@ msgid "Release" msgstr "Реліз" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "Небезпека" +msgstr "" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -886,16 +877,3 @@ msgstr "" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "" - -#~ msgid "%B %d, %Y" -#~ msgstr "" - -#~ msgid "%b %d, %Y" -#~ msgstr "%b %d, %Y" - -#~ msgid "(The <> is located in %s, line %d.)" -#~ msgstr "" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "Введіть пошуковий термін, модуль, клас чи назву функції." - diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.js b/sphinx/locale/vi/LC_MESSAGES/sphinx.js index 281e2d676..787aeb283 100644 --- a/sphinx/locale/vi/LC_MESSAGES/sphinx.js +++ b/sphinx/locale/vi/LC_MESSAGES/sphinx.js @@ -1 +1 @@ -Documentation.addTranslations({"locale": "vi", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(copyright)s.": "© B\u1ea3n quy\u1ec1n thu\u1ed9c %(copyright)s.", "© Copyright %(copyright)s.": "© B\u1ea3n quy\u1ec1n thu\u1ed9c %(copyright)s.", ", in ": "", "About these documents": "V\u1ec1 c\u00e1c t\u00e0i li\u1ec7u n\u00e0y", "Automatically generated list of changes in version %(version)s": "", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "M\u1ee5c L\u1ee5c \u0110\u1ea7y \u0110\u1ee7", "Contents": "", "Copyright": "B\u1ea3n quy\u1ec1n", "Created using Sphinx %(sphinx_version)s.": "\u0110\u01b0\u1ee3c t\u1ea1o nh\u1edd Sphinx %(sphinx_version)s.", "Enter search terms or a module, class or function name.": "Nh\u1eadp thu\u1eadt ng\u1eef, t\u00ean m\u1ed9t m\u00f4-\u0111un, l\u1edbp hay h\u00e0m c\u1ea7n t\u00ecm.", "Expand sidebar": "", "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.": "", "Full index on one page": "To\u00e0n b\u1ed9 ch\u1ec9 m\u1ee5c tr\u00ean m\u1ed9t trang", "General Index": "Ch\u1ec9 m\u1ee5c chung", "Global Module Index": "Ch\u1ec9 M\u1ee5c M\u00f4-\u0111un To\u00e0n C\u1ee5c", "Go": "Th\u1ef1c hi\u1ec7n", "Hide Search Matches": "", "Index": "", "Index – %(key)s": "Ch\u1ec9 m\u1ee5c – %(key)s", "Index pages by letter": "C\u00e1c trang ch\u1ec9 m\u1ee5c theo ch\u1eef c\u00e1i", "Indices and tables:": "C\u00e1c ch\u1ec9 m\u1ee5c v\u00e0 b\u1ea3ng bi\u1ec3u:", "Last updated on %(last_updated)s.": "C\u1eadp nh\u1eadt m\u1edbi nh\u1ea5t v\u00e0o %(last_updated)s.", "Library changes": "", "Navigation": "\u0110i\u1ec1u h\u01b0\u1edbng", "Next topic": "Ch\u1ee7 \u0111\u1ec1 ti\u1ebfp", "Other changes": "", "Overview": "T\u1ed5ng quan", "Permalink to this definition": "", "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "H\u00e3y b\u1eadt JavaScript \u0111\u1ec3 d\u00f9ng t\u00ednh n\u0103ng\nt\u00ecm ki\u1ebfm.", "Preparing search...": "", "Previous topic": "Ch\u1ee7 \u0111\u1ec1 tr\u01b0\u1edbc", "Quick search": "", "Search": "T\u00ecm Ki\u1ebfm", "Search Page": "", "Search Results": "", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "T\u00ecm ki\u1ebfm trong %(docstitle)s", "Searching": "", "Show Source": "Hi\u1ec3n th\u1ecb m\u00e3 ngu\u1ed3n", "Table Of Contents": "M\u1ee5c L\u1ee5c", "This Page": "", "Welcome! This is": "Ch\u00e0o m\u1eebng! \u0110\u00e2y l\u00e0", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "t\u1ea5t c\u1ea3 c\u00e1c h\u00e0m, l\u1edbp, thu\u1eadt ng\u1eef", "can be huge": "c\u00f3 th\u1ec3 r\u1ea5t nhi\u1ec1u", "last updated": "c\u1eadp nh\u1eadt m\u1edbi nh\u1ea5t", "lists all sections and subsections": "li\u1ec7t k\u00ea t\u1ea5t c\u1ea3 c\u00e1c m\u1ee5c v\u00e0 m\u1ee5c con", "next chapter": "ch\u01b0\u01a1ng ti\u1ebfp", "previous chapter": "ch\u01b0\u01a1ng tr\u01b0\u1edbc ", "quick access to all modules": "truy c\u1eadp nhanh t\u1ea5t c\u1ea3 c\u00e1c m\u00f4-\u0111un", "search": "", "search this documentation": "t\u00ecm ki\u1ebfm trong t\u00e0i li\u1ec7u n\u00e0y", "the documentation for": "t\u00e0i li\u1ec7u cho"}, "plural_expr": "0"}); \ No newline at end of file +Documentation.addTranslations({"locale": "vi", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(copyright)s.": "© B\u1ea3n quy\u1ec1n thu\u1ed9c %(copyright)s.", "© Copyright %(copyright)s.": "© B\u1ea3n quy\u1ec1n thu\u1ed9c %(copyright)s.", ", in ": "", "About these documents": "V\u1ec1 c\u00e1c t\u00e0i li\u1ec7u n\u00e0y", "Automatically generated list of changes in version %(version)s": "", "C API changes": "", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "M\u1ee5c L\u1ee5c \u0110\u1ea7y \u0110\u1ee7", "Contents": "", "Copyright": "B\u1ea3n quy\u1ec1n", "Created using Sphinx %(sphinx_version)s.": "\u0110\u01b0\u1ee3c t\u1ea1o nh\u1edd Sphinx %(sphinx_version)s.", "Expand sidebar": "", "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.": "", "Full index on one page": "To\u00e0n b\u1ed9 ch\u1ec9 m\u1ee5c tr\u00ean m\u1ed9t trang", "General Index": "Ch\u1ec9 m\u1ee5c chung", "Global Module Index": "Ch\u1ec9 M\u1ee5c M\u00f4-\u0111un To\u00e0n C\u1ee5c", "Go": "Th\u1ef1c hi\u1ec7n", "Hide Search Matches": "", "Index": "", "Index – %(key)s": "Ch\u1ec9 m\u1ee5c – %(key)s", "Index pages by letter": "C\u00e1c trang ch\u1ec9 m\u1ee5c theo ch\u1eef c\u00e1i", "Indices and tables:": "C\u00e1c ch\u1ec9 m\u1ee5c v\u00e0 b\u1ea3ng bi\u1ec3u:", "Last updated on %(last_updated)s.": "C\u1eadp nh\u1eadt m\u1edbi nh\u1ea5t v\u00e0o %(last_updated)s.", "Library changes": "", "Navigation": "\u0110i\u1ec1u h\u01b0\u1edbng", "Next topic": "Ch\u1ee7 \u0111\u1ec1 ti\u1ebfp", "Other changes": "", "Overview": "T\u1ed5ng quan", "Permalink to this definition": "", "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "H\u00e3y b\u1eadt JavaScript \u0111\u1ec3 d\u00f9ng t\u00ednh n\u0103ng\nt\u00ecm ki\u1ebfm.", "Preparing search...": "", "Previous topic": "Ch\u1ee7 \u0111\u1ec1 tr\u01b0\u1edbc", "Quick search": "", "Search": "T\u00ecm Ki\u1ebfm", "Search Page": "", "Search Results": "", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "T\u00ecm ki\u1ebfm trong %(docstitle)s", "Searching": "", "Show Source": "Hi\u1ec3n th\u1ecb m\u00e3 ngu\u1ed3n", "Table Of Contents": "M\u1ee5c L\u1ee5c", "This Page": "", "Welcome! This is": "Ch\u00e0o m\u1eebng! \u0110\u00e2y l\u00e0", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "t\u1ea5t c\u1ea3 c\u00e1c h\u00e0m, l\u1edbp, thu\u1eadt ng\u1eef", "can be huge": "c\u00f3 th\u1ec3 r\u1ea5t nhi\u1ec1u", "last updated": "c\u1eadp nh\u1eadt m\u1edbi nh\u1ea5t", "lists all sections and subsections": "li\u1ec7t k\u00ea t\u1ea5t c\u1ea3 c\u00e1c m\u1ee5c v\u00e0 m\u1ee5c con", "next chapter": "ch\u01b0\u01a1ng ti\u1ebfp", "previous chapter": "ch\u01b0\u01a1ng tr\u01b0\u1edbc ", "quick access to all modules": "truy c\u1eadp nhanh t\u1ea5t c\u1ea3 c\u00e1c m\u00f4-\u0111un", "search": "", "search this documentation": "t\u00ecm ki\u1ebfm trong t\u00e0i li\u1ec7u n\u00e0y", "the documentation for": "t\u00e0i li\u1ec7u cho"}, "plural_expr": "0"}); \ No newline at end of file diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo index 9fcba7319..dc9be5e92 100644 Binary files a/sphinx/locale/vi/LC_MESSAGES/sphinx.mo and b/sphinx/locale/vi/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/vi/LC_MESSAGES/sphinx.po b/sphinx/locale/vi/LC_MESSAGES/sphinx.po index 6527d64bd..04c3c7a7e 100644 --- a/sphinx/locale/vi/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/vi/LC_MESSAGES/sphinx.po @@ -1,23 +1,23 @@ -# Vietnamese translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# Hoat Le Van , 2014 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" "Last-Translator: Takayuki Shimizukawa \n" -"Language: vi\n" -"Language-Team: Vietnamese " -"(http://www.transifex.com/projects/p/sphinx-1/language/vi/)\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Language-Team: Vietnamese (http://www.transifex.com/sphinx-doc/sphinx-1/language/vi/)\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 2.2.0\n" +"Language: vi\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: sphinx/config.py:91 #, python-format @@ -178,9 +178,8 @@ msgid "variable" msgstr "biến" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "Tham số" +msgstr "" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -698,9 +697,7 @@ msgstr "Cập nhật mới nhất vào %(last_updated)s." msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" -"Được tạo nhờ Sphinx " -"%(sphinx_version)s." +msgstr "Được tạo nhờ Sphinx %(sphinx_version)s." #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -727,9 +724,7 @@ msgstr "chương tiếp" msgid "" "Please activate JavaScript to enable the search\n" " functionality." -msgstr "" -"Hãy bật JavaScript để dùng tính năng\n" -"tìm kiếm." +msgstr "Hãy bật JavaScript để dùng tính năng\ntìm kiếm." #: sphinx/themes/basic/search.html:32 msgid "" @@ -739,20 +734,23 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "" -#: 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 "" -#: 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:282 msgid "Search Results" msgstr "" -#: 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:284 msgid "" -"Your search did not match any documents. Please make sure that all words " -"are spelled correctly and that you've selected enough categories." +"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 @@ -855,9 +853,8 @@ msgid "Release" msgstr "" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "Nguy hiểm" +msgstr "" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -880,16 +877,3 @@ msgstr "" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "" - -#~ msgid "%B %d, %Y" -#~ msgstr "%d/%m/%Y" - -#~ msgid "%b %d, %Y" -#~ msgstr "%d/%m/%Y" - -#~ msgid "(The <> is located in %s, line %d.)" -#~ msgstr "" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "Nhập thuật ngữ, tên một mô-đun, lớp hay hàm cần tìm." - diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.js b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.js index ec1f31946..6bfb64b4c 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_Hans_CN", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© \u7248\u6743\u6240\u6709 %(copyright)s.", "© Copyright %(copyright)s.": "© \u7248\u6743\u6240\u6709 %(copyright)s.", ", in ": "\uff0c\u5728", "About these documents": "\u5173\u4e8e\u8fd9\u4e9b\u6587\u6863", "Automatically generated list of changes in version %(version)s": "\u81ea\u52a8\u751f\u6210\u7684 %(version)s \u7248\u672c\u4e2d\u7684\u66f4\u6539\u5217\u8868", "C API changes": "C API \u66f4\u6539", "Changes in Version %(version)s — %(docstitle)s": "\u66f4\u6539\u53d1\u751f\u5728\u7248\u672c %(version)s — %(docstitle)s", "Collapse sidebar": "\u6298\u53e0\u8fb9\u680f", "Complete Table of Contents": "\u5b8c\u6574\u7684\u5185\u5bb9\u8868", "Contents": "\u76ee\u5f55", "Copyright": "\u7248\u6743\u6240\u6709", "Created using Sphinx %(sphinx_version)s.": "\u7531 Sphinx %(sphinx_version)s \u521b\u5efa\u3002", "Enter search terms or a module, class or function name.": "\u8f93\u5165\u76f8\u5173\u7684\u672f\u8bed\uff0c\u6a21\u5757\uff0c\u7c7b\u6216\u8005\u51fd\u6570\u540d\u79f0\u8fdb\u884c\u641c\u7d22", "Expand sidebar": "\u5c55\u5f00\u8fb9\u680f", "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.": "\u5728\u8fd9\u513f\uff0c\u4f60\u53ef\u4ee5\u5bf9\u8fd9\u4e9b\u6587\u6863\u8fdb\u884c\u641c\u7d22\u3002\u5411\u641c\u7d22\u6846\u4e2d\u8f93\u5165\u4f60\u6240\u8981\u641c\u7d22\u7684\u5173\u952e\u5b57\u5e76\u70b9\u51fb\u201c\u641c\u7d22\u201d\u3002\u6ce8\u610f\uff1a\u641c\u7d22\u5f15\u64ce\u4f1a\u81ea\u52a8\u641c\u7d22\u6240\u6709\u7684\u5173\u952e\u5b57\u3002\u5c06\u4e0d\u4f1a\u641c\u7d22\u5230\u90e8\u5206\u5173\u952e\u5b57\u7684\u9875\u9762.", "Full index on one page": "\u4e00\u9875\u7684\u5168\u90e8\u7d22\u5f15", "General Index": "\u603b\u76ee\u5f55", "Global Module Index": "\u5168\u5c40\u6a21\u5757\u7d22\u5f15", "Go": "\u8f6c\u5411", "Hide Search Matches": "\u9690\u85cf\u641c\u7d22\u7ed3\u679c", "Index": "\u7d22\u5f15", "Index – %(key)s": "\u7d22\u5f15 – %(key)s", "Index pages by letter": "\u6309\u7167\u5b57\u6bcd\u7684\u7d22\u5f15\u9875", "Indices and tables:": "\u7d22\u5f15\u548c\u8868\u683c\uff1a", "Last updated on %(last_updated)s.": "\u6700\u540e\u66f4\u65b0\u4e8e %(last_updated)s.", "Library changes": "\u5e93\u66f4\u6539", "Navigation": "\u5bfc\u822a", "Next topic": "\u4e0b\u4e00\u4e2a\u4e3b\u9898", "Other changes": "\u5176\u4ed6\u66f4\u6539", "Overview": "\u6982\u8ff0", "Permalink to this definition": "\u6c38\u4e45\u94fe\u63a5\u81f3\u76ee\u6807", "Permalink to this headline": "\u6c38\u4e45\u94fe\u63a5\u81f3\u6807\u9898", "Please activate JavaScript to enable the search\n functionality.": "\u8bf7\u6fc0\u6d3b JavaScript \u4ee5\u5f00\u542f\u641c\u7d22\u529f\u80fd", "Preparing search...": "\u51c6\u5907\u641c\u7d22\u2026\u2026", "Previous topic": "\u4e0a\u4e00\u4e2a\u4e3b\u9898", "Quick search": "\u5feb\u901f\u641c\u7d22", "Search": "\u641c\u7d22", "Search Page": "\u641c\u7d22\u9875\u9762", "Search Results": "\u641c\u7d22\u7ed3\u679c", "Search finished, found %s page(s) matching the search query.": "\u641c\u7d22\u5b8c\u6210\uff0c\u6709 %s \u4e2a\u9875\u9762\u5339\u914d\u3002", "Search within %(docstitle)s": "\u5728 %(docstitle)s \u4e2d\u641c\u7d22", "Searching": "\u641c\u7d22\u4e2d", "Show Source": "\u663e\u793a\u6e90\u4ee3\u7801", "Table Of Contents": "\u5167\u5bb9\u76ee\u5f55", "This Page": "\u672c\u9875", "Welcome! This is": "\u6b22\u8fce\uff01\u8fd9\u662f", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "\u6ca1\u6709\u4efb\u4f55\u6587\u6863\u5339\u914d\u60a8\u7684\u641c\u7d22\u3002\u8bf7\u786e\u4fdd\u4f60\u8f93\u5165\u7684\u8bcd\u62fc\u5199\u6b63\u786e\u5e76\u9009\u62e9\u4e86\u5408\u9002\u7684\u5206\u7c7b\u3002", "all functions, classes, terms": "\u6240\u7684\u51fd\u6570\uff0c\u7c7b\uff0c\u672f\u8bed", "can be huge": "\u53ef\u80fd\u4f1a\u5f88\u591a", "last updated": "\u6700\u540e\u66f4\u65b0\u4e8e", "lists all sections and subsections": "\u5217\u51fa\u6240\u6709\u7684\u7ae0\u8282\u548c\u90e8\u5206", "next chapter": "\u4e0b\u4e00\u7ae0", "previous chapter": "\u4e0a\u4e00\u7ae0", "quick access to all modules": "\u5feb\u901f\u67e5\u770b\u6240\u6709\u7684\u6a21\u5757", "search": "\u641c\u7d22", "search this documentation": "\u641c\u7d22\u6587\u6863", "the documentation for": "\u8fd9\u4efd\u6587\u6863\u662f"}, "plural_expr": "0"}); \ No newline at end of file +Documentation.addTranslations({"locale": "zh_Hans_CN", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© \u7248\u6743\u6240\u6709 %(copyright)s.", "© Copyright %(copyright)s.": "© \u7248\u6743\u6240\u6709 %(copyright)s.", ", in ": "\uff0c\u5728", "About these documents": "\u5173\u4e8e\u8fd9\u4e9b\u6587\u6863", "Automatically generated list of changes in version %(version)s": "\u81ea\u52a8\u751f\u6210\u7684 %(version)s \u7248\u672c\u4e2d\u7684\u66f4\u6539\u5217\u8868", "C API changes": "C API \u66f4\u6539", "Changes in Version %(version)s — %(docstitle)s": "\u66f4\u6539\u53d1\u751f\u5728\u7248\u672c %(version)s — %(docstitle)s", "Collapse sidebar": "\u6298\u53e0\u8fb9\u680f", "Complete Table of Contents": "\u5b8c\u6574\u7684\u5185\u5bb9\u8868", "Contents": "\u76ee\u5f55", "Copyright": "\u7248\u6743\u6240\u6709", "Created using Sphinx %(sphinx_version)s.": "\u7531 Sphinx %(sphinx_version)s \u521b\u5efa\u3002", "Expand sidebar": "\u5c55\u5f00\u8fb9\u680f", "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.": "\u5728\u8fd9\u513f\uff0c\u4f60\u53ef\u4ee5\u5bf9\u8fd9\u4e9b\u6587\u6863\u8fdb\u884c\u641c\u7d22\u3002\u5411\u641c\u7d22\u6846\u4e2d\u8f93\u5165\u4f60\u6240\u8981\u641c\u7d22\u7684\u5173\u952e\u5b57\u5e76\u70b9\u51fb\u201c\u641c\u7d22\u201d\u3002\u6ce8\u610f\uff1a\u641c\u7d22\u5f15\u64ce\u4f1a\u81ea\u52a8\u641c\u7d22\u6240\u6709\u7684\u5173\u952e\u5b57\u3002\u5c06\u4e0d\u4f1a\u641c\u7d22\u5230\u90e8\u5206\u5173\u952e\u5b57\u7684\u9875\u9762.", "Full index on one page": "\u4e00\u9875\u7684\u5168\u90e8\u7d22\u5f15", "General Index": "\u603b\u76ee\u5f55", "Global Module Index": "\u5168\u5c40\u6a21\u5757\u7d22\u5f15", "Go": "\u8f6c\u5411", "Hide Search Matches": "\u9690\u85cf\u641c\u7d22\u7ed3\u679c", "Index": "\u7d22\u5f15", "Index – %(key)s": "\u7d22\u5f15 – %(key)s", "Index pages by letter": "\u6309\u7167\u5b57\u6bcd\u7684\u7d22\u5f15\u9875", "Indices and tables:": "\u7d22\u5f15\u548c\u8868\u683c\uff1a", "Last updated on %(last_updated)s.": "\u6700\u540e\u66f4\u65b0\u4e8e %(last_updated)s.", "Library changes": "\u5e93\u66f4\u6539", "Navigation": "\u5bfc\u822a", "Next topic": "\u4e0b\u4e00\u4e2a\u4e3b\u9898", "Other changes": "\u5176\u4ed6\u66f4\u6539", "Overview": "\u6982\u8ff0", "Permalink to this definition": "\u6c38\u4e45\u94fe\u63a5\u81f3\u76ee\u6807", "Permalink to this headline": "\u6c38\u4e45\u94fe\u63a5\u81f3\u6807\u9898", "Please activate JavaScript to enable the search\n functionality.": "\u8bf7\u6fc0\u6d3b JavaScript \u4ee5\u5f00\u542f\u641c\u7d22\u529f\u80fd", "Preparing search...": "\u51c6\u5907\u641c\u7d22\u2026\u2026", "Previous topic": "\u4e0a\u4e00\u4e2a\u4e3b\u9898", "Quick search": "\u5feb\u901f\u641c\u7d22", "Search": "\u641c\u7d22", "Search Page": "\u641c\u7d22\u9875\u9762", "Search Results": "\u641c\u7d22\u7ed3\u679c", "Search finished, found %s page(s) matching the search query.": "\u641c\u7d22\u5b8c\u6210\uff0c\u6709 %s \u4e2a\u9875\u9762\u5339\u914d\u3002", "Search within %(docstitle)s": "\u5728 %(docstitle)s \u4e2d\u641c\u7d22", "Searching": "\u641c\u7d22\u4e2d", "Show Source": "\u663e\u793a\u6e90\u4ee3\u7801", "Table Of Contents": "\u5167\u5bb9\u76ee\u5f55", "This Page": "\u672c\u9875", "Welcome! This is": "\u6b22\u8fce\uff01\u8fd9\u662f", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "\u6ca1\u6709\u4efb\u4f55\u6587\u6863\u5339\u914d\u60a8\u7684\u641c\u7d22\u3002\u8bf7\u786e\u4fdd\u4f60\u8f93\u5165\u7684\u8bcd\u62fc\u5199\u6b63\u786e\u5e76\u9009\u62e9\u4e86\u5408\u9002\u7684\u5206\u7c7b\u3002", "all functions, classes, terms": "\u6240\u7684\u51fd\u6570\uff0c\u7c7b\uff0c\u672f\u8bed", "can be huge": "\u53ef\u80fd\u4f1a\u5f88\u591a", "last updated": "\u6700\u540e\u66f4\u65b0\u4e8e", "lists all sections and subsections": "\u5217\u51fa\u6240\u6709\u7684\u7ae0\u8282\u548c\u90e8\u5206", "next chapter": "\u4e0b\u4e00\u7ae0", "previous chapter": "\u4e0a\u4e00\u7ae0", "quick access to all modules": "\u5feb\u901f\u67e5\u770b\u6240\u6709\u7684\u6a21\u5757", "search": "\u641c\u7d22", "search this documentation": "\u641c\u7d22\u6587\u6863", "the documentation for": "\u8fd9\u4efd\u6587\u6863\u662f"}, "plural_expr": "0"}); \ 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 b01448c50..b3fac4ed3 100644 Binary files a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po index 86c16af6d..eb58ba955 100644 --- a/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_CN/LC_MESSAGES/sphinx.po @@ -1,23 +1,27 @@ -# Chinese (Simplified, China) translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# Aifen Qin , 2015 +# 刘振涛 , 2013 +# Ryekee Zhong , 2013 +# Tower Joo, 2009 +# Aifen Qin , 2013 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" +"PO-Revision-Date: 2016-03-06 13:01+0000\n" "Last-Translator: Takayuki Shimizukawa \n" -"Language: zh_Hans_CN\n" -"Language-Team: Chinese (China) " -"(http://www.transifex.com/projects/p/sphinx-1/language/zh_CN/)\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Language-Team: Chinese (China) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_CN/)\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 2.2.0\n" +"Language: zh_CN\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: sphinx/config.py:91 #, python-format @@ -178,9 +182,8 @@ msgid "variable" msgstr "变量" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "参数" +msgstr "" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" @@ -209,12 +212,12 @@ msgstr "%s (C++ 类)" #: sphinx/domains/cpp.py:3786 #, python-format msgid "%s (C++ enum)" -msgstr "" +msgstr "%s (C++ 枚举)" #: sphinx/domains/cpp.py:3816 #, python-format msgid "%s (C++ enumerator)" -msgstr "" +msgstr "%s (C++ 枚举子)" #: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165 #: sphinx/domains/python.py:591 @@ -223,11 +226,11 @@ msgstr "类" #: sphinx/domains/cpp.py:3956 msgid "enum" -msgstr "" +msgstr "枚举" #: sphinx/domains/cpp.py:3957 msgid "enumerator" -msgstr "" +msgstr "枚举子" #: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282 #, python-format @@ -470,14 +473,13 @@ msgid "Todo" msgstr "待处理" #: sphinx/ext/todo.py:129 -#, fuzzy msgid "<>" -msgstr "原始记录" +msgstr "" #: sphinx/ext/todo.py:132 -#, fuzzy, python-format +#, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "(<<原始记录>> 见 %s,第 %d 行)" +msgstr "" #: sphinx/ext/todo.py:141 msgid "original entry" @@ -736,20 +738,23 @@ msgid "" " containing fewer words won't appear in the result list." msgstr "在这儿,你可以对这些文档进行搜索。向搜索框中输入你所要搜索的关键字并点击“搜索”。注意:搜索引擎会自动搜索所有的关键字。将不会搜索到部分关键字的页面." -#: 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 "搜索" -#: 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:282 msgid "Search Results" msgstr "搜索结果" -#: 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:284 msgid "" -"Your search did not match any documents. Please make sure that all words " -"are spelled correctly and that you've selected enough categories." +"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 @@ -841,7 +846,7 @@ msgstr "永久链接至图片" #: sphinx/writers/html.py:355 msgid "Permalink to this toctree" -msgstr "" +msgstr "永久链接至目录树" #: sphinx/writers/html.py:677 msgid "Permalink to this table" @@ -852,9 +857,8 @@ msgid "Release" msgstr "发布" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "危险" +msgstr "" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 @@ -877,13 +881,3 @@ msgstr "[图片: %s]" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[图片]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%Y 年 %m 月 %d 日" - -#~ msgid "%b %d, %Y" -#~ msgstr "%Y 年 %m 月 %d 日" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "输入相关的术语,模块,类或者函数名称进行搜索" - diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.js index 57dd12532..b8bcec275 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_Hant_TW", "messages": {"%(filename)s — %(docstitle)s": "", "© Copyright %(copyright)s.": "", "© Copyright %(copyright)s.": "", ", in ": "", "About these documents": "", "Automatically generated list of changes in version %(version)s": "", "C API changes": "C API \u6539\u8b8a", "Changes in Version %(version)s — %(docstitle)s": "", "Collapse sidebar": "", "Complete Table of Contents": "", "Contents": "", "Copyright": "\u7248\u6b0a\u6240\u6709", "Created using Sphinx %(sphinx_version)s.": "", "Enter search terms or a module, class or function name.": "", "Expand sidebar": "", "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.": "", "Full index on one page": "", "General Index": "\u7e3d\u7d22\u5f15", "Global Module Index": "", "Go": "", "Hide Search Matches": "", "Index": "\u7d22\u5f15", "Index – %(key)s": "", "Index pages by letter": "", "Indices and tables:": "", "Last updated on %(last_updated)s.": "\u6700\u5f8c\u66f4\u65b0\u65e5\u671f\u662f %(last_updated)s.", "Library changes": "", "Navigation": "\u700f\u89bd", "Next topic": "\u4e0b\u4e00\u500b\u4e3b\u984c", "Other changes": "\u5176\u4ed6\u6539\u8b8a\uff1a", "Overview": "", "Permalink to this definition": "", "Permalink to this headline": "", "Please activate JavaScript to enable the search\n functionality.": "", "Preparing search...": "", "Previous topic": "\u4e0a\u4e00\u500b\u4e3b\u984c", "Quick search": "\u5feb\u901f\u641c\u5c0b", "Search": "\u641c\u5c0b", "Search Page": "\u641c\u5c0b\u9801\u9762", "Search Results": "\u641c\u5c0b\u7d50\u679c", "Search finished, found %s page(s) matching the search query.": "", "Search within %(docstitle)s": "\u5728 %(docstitle)s \u4e2d\u641c\u5c0b", "Searching": "", "Show Source": "\u986f\u793a\u539f\u59cb\u78bc", "Table Of Contents": "\u5167\u5bb9\u76ee\u9304", "This Page": "\u672c\u9801", "Welcome! This is": "", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "", "all functions, classes, terms": "", "can be huge": "", "last updated": "", "lists all sections and subsections": "", "next chapter": "\u4e0b\u4e00\u7ae0", "previous chapter": "\u4e0a\u4e00\u7ae0", "quick access to all modules": "", "search": "\u641c\u5c0b", "search this documentation": "", "the documentation for": ""}, "plural_expr": "0"}); \ No newline at end of file +Documentation.addTranslations({"locale": "zh_Hant_TW", "messages": {"%(filename)s — %(docstitle)s": "%(filename)s — %(docstitle)s", "© Copyright %(copyright)s.": "© \u7248\u6b0a\u6240\u6709 %(copyright)s\u3002", "© Copyright %(copyright)s.": "© \u7248\u6b0a\u6240\u6709 %(copyright)s.", ", in ": " \u65bc ", "About these documents": "\u95dc\u65bc\u9019\u4e9b\u6587\u4ef6", "Automatically generated list of changes in version %(version)s": "\u81ea\u52d5\u7522\u751f\u7684 %(version)s \u7248\u672c\u6539\u8b8a\u5217\u8868", "C API changes": "C API \u6539\u8b8a", "Changes in Version %(version)s — %(docstitle)s": "\u65bc %(version)s \u7248\u672c\u4e2d\u7684\u6539\u8b8a — %(docstitle)s", "Collapse sidebar": "\u6536\u5408\u5074\u908a\u6b04", "Complete Table of Contents": "\u5b8c\u6574\u76ee\u9304", "Contents": "\u5167\u5bb9", "Copyright": "\u7248\u6b0a\u6240\u6709", "Created using Sphinx %(sphinx_version)s.": "\u4f7f\u7528 Sphinx %(sphinx_version)s \u5275\u5efa\u3002", "Expand sidebar": "\u5c55\u958b\u5074\u908a\u6b04", "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.": "\u4f60\u53ef\u4ee5\u5f9e\u9019\u88e1\u641c\u5c0b\u6587\u4ef6\u3002\u8f38\u5165\u641c\u5c0b\u8a5e\u81f3\u5e95\u4e0b\u7684\u6587\u5b57\u6846\u4e26\u9ede\u64ca\u300c\u641c\u5c0b\u300d\u3002\u6ce8\u610f\u641c\u5c0b\u529f\u80fd\u6703\u81ea\u52d5\u5c0b\u627e\u6eff\u8db3\u6240\u6709\u8a5e\u7684\u7d50\u679c\u3002\u53ea\u6eff\u8db3\u5c11\u90e8\u4efd\u641c\u5c0b\u8a5e\u7684\u9801\u9762\u5c07\u4e0d\u4e88\u986f\u793a\u5728\u7d50\u679c\u6e05\u55ae\u4e2d\u3002", "Full index on one page": "\u55ae\u9801\u5b8c\u6574\u7d22\u5f15", "General Index": "\u7e3d\u7d22\u5f15", "Global Module Index": "\u5168\u57df\u6a21\u7d44\u7d22\u5f15", "Go": "\u524d\u5f80", "Hide Search Matches": "\u96b1\u85cf\u543b\u5408\u641c\u5c0b\u7684\u4e0a\u8272", "Index": "\u7d22\u5f15", "Index – %(key)s": "\u7d22\u5f15 – %(key)s", "Index pages by letter": "\u7d22\u5f15\u9801\u9762\u6309\u5b57\u6bcd", "Indices and tables:": "\u7d22\u5f15\u8207\u8868\u683c\uff1a", "Last updated on %(last_updated)s.": "\u6700\u5f8c\u66f4\u65b0\u65bc %(last_updated)s\u3002", "Library changes": "\u51fd\u5f0f\u5eab\u7684\u6539\u8b8a", "Navigation": "\u700f\u89bd", "Next topic": "\u4e0b\u4e00\u500b\u4e3b\u984c", "Other changes": "\u5176\u4ed6\u6539\u8b8a", "Overview": "\u6982\u8981", "Permalink to this definition": "\u672c\u5b9a\u7fa9\u7684\u6c38\u4e45\u9023\u7d50", "Permalink to this headline": "\u672c\u6a19\u984c\u7684\u6c38\u4e45\u9023\u7d50", "Please activate JavaScript to enable the search\n functionality.": "\u8acb\u555f\u7528 Javascript \u4ee5\u958b\u555f\u641c\u5c0b\u529f\u80fd\u3002", "Preparing search...": "\u6e96\u5099\u641c\u5c0b\u4e2d\u2026", "Previous topic": "\u4e0a\u4e00\u500b\u4e3b\u984c", "Quick search": "\u5feb\u901f\u641c\u5c0b", "Search": "\u641c\u5c0b", "Search Page": "\u641c\u5c0b\u9801\u9762", "Search Results": "\u641c\u5c0b\u7d50\u679c", "Search finished, found %s page(s) matching the search query.": "\u641c\u5c0b\u5b8c\u6210\uff0c\u5171\u627e\u5230 %s \u9801\u9762\u6eff\u8db3\u641c\u5c0b\u689d\u4ef6\u3002", "Search within %(docstitle)s": "\u5728 %(docstitle)s \u4e2d\u641c\u5c0b", "Searching": "\u641c\u5c0b\u4e2d", "Show Source": "\u986f\u793a\u539f\u59cb\u78bc", "Table Of Contents": "\u76ee\u9304", "This Page": "\u672c\u9801", "Welcome! This is": "\u6b61\u8fce\uff01\u672c", "Your search did not match any documents. Please make sure that all words are spelled correctly and that you've selected enough categories.": "\u4f60\u7684\u641c\u5c0b\u627e\u4e0d\u5230\u4efb\u4f55\u6eff\u8db3\u689d\u4ef6\u7684\u6587\u4ef6\u3002\u8acb\u78ba\u5b9a\u662f\u5426\u6240\u6709\u7684\u641c\u5c0b\u8a5e\u90fd\u6b63\u78ba\u5730\u62fc\u5beb\u4e14\u4f60\u5df2\u9078\u64c7\u8db3\u5920\u7684\u5206\u985e\u3002", "all functions, classes, terms": "\u6240\u6709\u51fd\u5f0f\u3001\u985e\u5225\u3001\u8853\u8a9e", "can be huge": "\u53ef\u80fd\u6703\u5f88\u5927", "last updated": "\u6700\u5f8c\u66f4\u65b0\u65bc", "lists all sections and subsections": "\u5217\u51fa\u6240\u6709\u6bb5\u843d\u8207\u5b50\u6bb5\u843d", "next chapter": "\u4e0b\u4e00\u7ae0", "previous chapter": "\u4e0a\u4e00\u7ae0", "quick access to all modules": "\u5feb\u901f\u524d\u5f80\u6240\u6709\u7684\u6a21\u7d44", "search": "\u641c\u5c0b", "search this documentation": "\u641c\u5c0b\u672c\u8aaa\u660e\u6587\u4ef6", "the documentation for": "\u8aaa\u660e\u6587\u4ef6\u4ecb\u7d39"}, "plural_expr": "0"}); \ 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 548132ff4..8bfbe7c82 100644 Binary files a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo and b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.mo differ diff --git a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po index 96397f15a..80c8bd8be 100644 --- a/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po +++ b/sphinx/locale/zh_TW/LC_MESSAGES/sphinx.po @@ -1,79 +1,80 @@ -# Chinese (Traditional, Taiwan) translations for Sphinx. +# Translations template for Sphinx. # Copyright (C) 2016 ORGANIZATION # This file is distributed under the same license as the Sphinx project. -# FIRST AUTHOR , 2016. -# +# +# Translators: +# Fred Lin , 2008 +# Liang Bo Wang , 2016 msgid "" msgstr "" -"Project-Id-Version: Sphinx\n" +"Project-Id-Version: Sphinx\n" "Report-Msgid-Bugs-To: EMAIL@ADDRESS\n" "POT-Creation-Date: 2016-03-06 21:58+0900\n" -"PO-Revision-Date: 2015-03-08 14:35+0000\n" -"Last-Translator: Takayuki Shimizukawa \n" -"Language: zh_Hant_TW\n" -"Language-Team: Chinese (Taiwan) " -"(http://www.transifex.com/projects/p/sphinx-1/language/zh_TW/)\n" -"Plural-Forms: nplurals=1; plural=0\n" +"PO-Revision-Date: 2016-03-06 15:35+0000\n" +"Last-Translator: Liang Bo Wang \n" +"Language-Team: Chinese (Taiwan) (http://www.transifex.com/sphinx-doc/sphinx-1/language/zh_TW/)\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 2.2.0\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" #: sphinx/config.py:91 #, python-format msgid "Fig. %s" -msgstr "" +msgstr "圖 %s" #: sphinx/config.py:92 #, python-format msgid "Table %s" -msgstr "" +msgstr "表 %s" #: sphinx/config.py:93 #, python-format msgid "Listing %s" -msgstr "" +msgstr "程式 %s" #: sphinx/config.py:100 #, python-format msgid "%s %s documentation" -msgstr "" +msgstr "%s %s 說明文件" #: sphinx/environment.py:1829 #, python-format msgid "see %s" -msgstr "" +msgstr "參考 %s" #: sphinx/environment.py:1833 #, python-format msgid "see also %s" -msgstr "" +msgstr "亦參考 %s" #: sphinx/environment.py:1893 msgid "Symbols" -msgstr "" +msgstr "符號" #: sphinx/roles.py:193 #, python-format msgid "Python Enhancement Proposals; PEP %s" -msgstr "" +msgstr "Python Enhancement Proposals; PEP %s" #: sphinx/transforms.py:56 sphinx/writers/latex.py:374 #: sphinx/writers/manpage.py:101 sphinx/writers/texinfo.py:222 msgid "MMMM dd, YYYY" -msgstr "" +msgstr "YYYY 年 MMMM 月 dd 日" #: sphinx/builders/changes.py:75 msgid "Builtins" -msgstr "" +msgstr "內建" #: sphinx/builders/changes.py:77 msgid "Module level" -msgstr "" +msgstr "模組層次" #: sphinx/builders/html.py:295 msgid "MMM dd, YYYY" -msgstr "" +msgstr "YYYY 年 MMMM 月 dd 日" #: sphinx/builders/html.py:315 sphinx/themes/basic/defindex.html:30 msgid "General Index" @@ -93,11 +94,11 @@ msgstr "上一頁" #: sphinx/builders/latex.py:180 sphinx/builders/texinfo.py:199 msgid " (in " -msgstr "" +msgstr "(於" #: sphinx/directives/other.py:149 msgid "Section author: " -msgstr "Section 作者:" +msgstr "段落作者:" #: sphinx/directives/other.py:151 msgid "Module author: " @@ -105,7 +106,7 @@ msgstr "模組作者:" #: sphinx/directives/other.py:153 msgid "Code author: " -msgstr "" +msgstr "程式作者:" #: sphinx/directives/other.py:155 msgid "Author: " @@ -114,7 +115,7 @@ msgstr "作者:" #: sphinx/domains/__init__.py:275 #, python-format msgid "%s %s" -msgstr "" +msgstr "%s %s" #: sphinx/domains/c.py:58 sphinx/domains/cpp.py:3605 #: sphinx/domains/python.py:124 @@ -124,12 +125,12 @@ msgstr "參數" #: sphinx/domains/c.py:61 sphinx/domains/cpp.py:3614 #: sphinx/domains/javascript.py:128 sphinx/domains/python.py:136 msgid "Returns" -msgstr "返回" +msgstr "回傳" #: sphinx/domains/c.py:63 sphinx/domains/javascript.py:130 #: sphinx/domains/python.py:138 msgid "Return type" -msgstr "返回類別" +msgstr "回傳型態" #: sphinx/domains/c.py:177 #, python-format @@ -149,7 +150,7 @@ msgstr "%s (C 巨集)" #: sphinx/domains/c.py:183 #, python-format msgid "%s (C type)" -msgstr "%s (C 類別)" +msgstr "%s (C 型態)" #: sphinx/domains/c.py:185 #, python-format @@ -175,16 +176,15 @@ msgstr "類別" #: sphinx/domains/c.py:246 msgid "variable" -msgstr "" +msgstr "變數" #: sphinx/domains/cpp.py:3608 -#, fuzzy msgid "Template Parameters" -msgstr "參數" +msgstr "Template 參數" #: sphinx/domains/cpp.py:3611 sphinx/domains/javascript.py:125 msgid "Throws" -msgstr "" +msgstr "丟出" #: sphinx/domains/cpp.py:3733 #, python-format @@ -204,30 +204,30 @@ msgstr "%s (C++ 函式)" #: sphinx/domains/cpp.py:3766 #, python-format msgid "%s (C++ class)" -msgstr "" +msgstr "%s (C++ 類別)" #: sphinx/domains/cpp.py:3786 #, python-format msgid "%s (C++ enum)" -msgstr "" +msgstr "%s (C++ enum)" #: sphinx/domains/cpp.py:3816 #, python-format msgid "%s (C++ enumerator)" -msgstr "" +msgstr "%s (C++ enumerator)" #: sphinx/domains/cpp.py:3952 sphinx/domains/javascript.py:165 #: sphinx/domains/python.py:591 msgid "class" -msgstr "" +msgstr "類別" #: sphinx/domains/cpp.py:3956 msgid "enum" -msgstr "" +msgstr "enum" #: sphinx/domains/cpp.py:3957 msgid "enumerator" -msgstr "" +msgstr "enumerator" #: sphinx/domains/javascript.py:106 sphinx/domains/python.py:282 #, python-format @@ -237,30 +237,30 @@ msgstr "%s() (內建函式)" #: sphinx/domains/javascript.py:107 sphinx/domains/python.py:346 #, python-format msgid "%s() (%s method)" -msgstr "%s() (%s 方法)" +msgstr "%s() (%s 的方法)" #: sphinx/domains/javascript.py:109 #, python-format msgid "%s() (class)" -msgstr "" +msgstr "%s() (類別)" #: sphinx/domains/javascript.py:111 #, python-format msgid "%s (global variable or constant)" -msgstr "" +msgstr "%s (全域變數或常數)" #: sphinx/domains/javascript.py:113 sphinx/domains/python.py:384 #, python-format msgid "%s (%s attribute)" -msgstr "%s (%s 屬性)" +msgstr "%s (%s 的屬性)" #: sphinx/domains/javascript.py:122 msgid "Arguments" -msgstr "" +msgstr "引數" #: sphinx/domains/javascript.py:166 sphinx/domains/python.py:590 msgid "data" -msgstr "" +msgstr "data" #: sphinx/domains/javascript.py:167 sphinx/domains/python.py:596 msgid "attribute" @@ -268,17 +268,17 @@ msgstr "屬性" #: sphinx/domains/python.py:129 msgid "Variables" -msgstr "" +msgstr "變數" #: sphinx/domains/python.py:133 msgid "Raises" -msgstr "" +msgstr "丟出" #: sphinx/domains/python.py:283 sphinx/domains/python.py:340 #: sphinx/domains/python.py:352 sphinx/domains/python.py:365 #, python-format msgid "%s() (in module %s)" -msgstr "%s() (在 %s 模組中)" +msgstr "%s() (於 %s 模組中)" #: sphinx/domains/python.py:286 #, python-format @@ -288,7 +288,7 @@ msgstr "%s (內建變數)" #: sphinx/domains/python.py:287 sphinx/domains/python.py:378 #, python-format msgid "%s (in module %s)" -msgstr "%s() (在 %s 模組中)" +msgstr "%s (於 %s 模組中)" #: sphinx/domains/python.py:303 #, python-format @@ -298,37 +298,37 @@ msgstr "%s (內建類別)" #: sphinx/domains/python.py:304 #, python-format msgid "%s (class in %s)" -msgstr "" +msgstr "%s (%s 中的類別)" #: sphinx/domains/python.py:344 #, python-format msgid "%s() (%s.%s method)" -msgstr "%s() (%s.%s 方法)" +msgstr "%s() (%s.%s 的方法)" #: sphinx/domains/python.py:356 #, python-format msgid "%s() (%s.%s static method)" -msgstr "%s() (%s.%s 靜態方法)" +msgstr "%s() (%s.%s 的靜態方法)" #: sphinx/domains/python.py:359 #, python-format msgid "%s() (%s static method)" -msgstr "%s() (%s 靜態方法)" +msgstr "%s() (%s 的靜態方法)" #: sphinx/domains/python.py:369 #, python-format msgid "%s() (%s.%s class method)" -msgstr "" +msgstr "%s() (%s.%s 的類別方法)" #: sphinx/domains/python.py:372 #, python-format msgid "%s() (%s class method)" -msgstr "" +msgstr "%s() (%s 的類別方法)" #: sphinx/domains/python.py:382 #, python-format msgid "%s (%s.%s attribute)" -msgstr "%s (%s.%s 屬性)" +msgstr "%s (%s.%s 的屬性)" #: sphinx/domains/python.py:463 #, python-format @@ -337,7 +337,7 @@ msgstr "%s (模組)" #: sphinx/domains/python.py:520 msgid "Python Module Index" -msgstr "" +msgstr "Python 模組索引" #: sphinx/domains/python.py:521 msgid "modules" @@ -345,7 +345,7 @@ msgstr "模組" #: sphinx/domains/python.py:567 msgid "Deprecated" -msgstr "已移除" +msgstr "已棄用" #: sphinx/domains/python.py:592 sphinx/locale/__init__.py:183 msgid "exception" @@ -353,11 +353,11 @@ msgstr "例外" #: sphinx/domains/python.py:593 msgid "method" -msgstr "" +msgstr "方法" #: sphinx/domains/python.py:594 msgid "class method" -msgstr "" +msgstr "類別方法" #: sphinx/domains/python.py:595 msgid "static method" @@ -369,25 +369,25 @@ msgstr "模組" #: sphinx/domains/python.py:762 msgid " (deprecated)" -msgstr "" +msgstr "(已棄用)" #: sphinx/domains/rst.py:55 #, python-format msgid "%s (directive)" -msgstr "" +msgstr "%s (directive)" #: sphinx/domains/rst.py:57 #, python-format msgid "%s (role)" -msgstr "" +msgstr "%s (role)" #: sphinx/domains/rst.py:106 msgid "directive" -msgstr "" +msgstr "directive" #: sphinx/domains/rst.py:107 msgid "role" -msgstr "" +msgstr "role" #: sphinx/domains/std.py:73 sphinx/domains/std.py:89 #, python-format @@ -401,15 +401,15 @@ msgstr "%s命令列選項; %s" #: sphinx/domains/std.py:433 msgid "glossary term" -msgstr "" +msgstr "雜項術語" #: sphinx/domains/std.py:434 msgid "grammar token" -msgstr "" +msgstr "語法 token" #: sphinx/domains/std.py:435 msgid "reference label" -msgstr "" +msgstr "參照標籤" #: sphinx/domains/std.py:437 msgid "environment variable" @@ -417,7 +417,7 @@ msgstr "環境變數" #: sphinx/domains/std.py:438 msgid "program option" -msgstr "" +msgstr "程式選項" #: sphinx/domains/std.py:471 sphinx/themes/basic/genindex-single.html:32 #: sphinx/themes/basic/genindex-single.html:57 @@ -440,68 +440,68 @@ msgstr "搜尋頁面" #: sphinx/ext/autodoc.py:1265 #, python-format msgid " Bases: %s" -msgstr "" +msgstr " Bases: %s" #: sphinx/ext/autodoc.py:1318 #, python-format msgid "alias of :class:`%s`" -msgstr "" +msgstr ":class:`%s` 的別名" #: sphinx/ext/graphviz.py:309 sphinx/ext/graphviz.py:318 #, python-format msgid "[graph: %s]" -msgstr "" +msgstr "[graph: %s]" #: sphinx/ext/graphviz.py:311 sphinx/ext/graphviz.py:320 msgid "[graph]" -msgstr "" +msgstr "[graph]" #: sphinx/ext/intersphinx.py:359 #, python-format msgid "(in %s v%s)" -msgstr "" +msgstr "(於 %s v%s)" #: sphinx/ext/linkcode.py:69 sphinx/ext/viewcode.py:99 msgid "[source]" -msgstr "" +msgstr "[原始碼]" #: sphinx/ext/todo.py:56 msgid "Todo" -msgstr "待辦" +msgstr "Todo" #: sphinx/ext/todo.py:129 msgid "<>" -msgstr "" +msgstr "<>" #: sphinx/ext/todo.py:132 #, python-format msgid "(The <> is located in %s, line %d.)" -msgstr "" +msgstr "(<> 見 %s ,第 %d 行)" #: sphinx/ext/todo.py:141 msgid "original entry" -msgstr "" +msgstr "原始記錄" #: sphinx/ext/viewcode.py:162 msgid "[docs]" -msgstr "" +msgstr "[文件]" #: sphinx/ext/viewcode.py:176 msgid "Module code" -msgstr "" +msgstr "模組原始碼" #: sphinx/ext/viewcode.py:182 #, python-format msgid "

Source code for %s

" -msgstr "" +msgstr "

%s 的原始碼

" #: sphinx/ext/viewcode.py:208 msgid "Overview: module code" -msgstr "" +msgstr "概要:模組原始碼" #: sphinx/ext/viewcode.py:209 msgid "

All modules for which code is available

" -msgstr "" +msgstr "

所有可得程式碼的模組

" #: sphinx/locale/__init__.py:159 msgid "Attention" @@ -529,15 +529,15 @@ msgstr "重要" #: sphinx/locale/__init__.py:165 msgid "Note" -msgstr "註解" +msgstr "備註" #: sphinx/locale/__init__.py:166 msgid "See also" -msgstr "" +msgstr "亦參考" #: sphinx/locale/__init__.py:167 msgid "Tip" -msgstr "小技巧" +msgstr "小訣竅" #: sphinx/locale/__init__.py:168 msgid "Warning" @@ -546,17 +546,17 @@ msgstr "警告" #: sphinx/locale/__init__.py:172 #, python-format msgid "New in version %s" -msgstr "%s 版新功能" +msgstr "%s 版新加入" #: sphinx/locale/__init__.py:173 #, python-format msgid "Changed in version %s" -msgstr "在 %s 版改變" +msgstr "%s 版更變" #: sphinx/locale/__init__.py:174 #, python-format msgid "Deprecated since version %s" -msgstr "%s 版後已移除" +msgstr "%s 版後已棄用" #: sphinx/locale/__init__.py:180 msgid "keyword" @@ -572,7 +572,7 @@ msgstr "物件" #: sphinx/locale/__init__.py:184 msgid "statement" -msgstr "" +msgstr "陳述式" #: sphinx/locale/__init__.py:185 msgid "built-in function" @@ -581,7 +581,7 @@ msgstr "內建函式" #: 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 "內容目錄" +msgstr "目錄" #: sphinx/themes/agogo/layout.html:51 sphinx/themes/basic/layout.html:137 #: sphinx/themes/basic/search.html:11 sphinx/themes/basic/search.html:23 @@ -591,7 +591,7 @@ msgstr "搜尋" #: sphinx/themes/agogo/layout.html:54 sphinx/themes/basic/searchbox.html:15 msgid "Go" -msgstr "" +msgstr "前往" #: sphinx/themes/agogo/layout.html:81 sphinx/themes/basic/sourcelink.html:15 msgid "Show Source" @@ -599,67 +599,67 @@ msgstr "顯示原始碼" #: sphinx/themes/basic/defindex.html:11 msgid "Overview" -msgstr "" +msgstr "概要" #: sphinx/themes/basic/defindex.html:15 msgid "Welcome! This is" -msgstr "" +msgstr "歡迎!本" #: sphinx/themes/basic/defindex.html:16 msgid "the documentation for" -msgstr "" +msgstr "說明文件介紹" #: sphinx/themes/basic/defindex.html:17 msgid "last updated" -msgstr "" +msgstr "最後更新於" #: sphinx/themes/basic/defindex.html:20 msgid "Indices and tables:" -msgstr "" +msgstr "索引與表格:" #: sphinx/themes/basic/defindex.html:23 msgid "Complete Table of Contents" -msgstr "" +msgstr "完整目錄" #: sphinx/themes/basic/defindex.html:24 msgid "lists all sections and subsections" -msgstr "" +msgstr "列出所有段落與子段落" #: sphinx/themes/basic/defindex.html:26 msgid "search this documentation" -msgstr "" +msgstr "搜尋本說明文件" #: sphinx/themes/basic/defindex.html:28 msgid "Global Module Index" -msgstr "" +msgstr "全域模組索引" #: sphinx/themes/basic/defindex.html:29 msgid "quick access to all modules" -msgstr "" +msgstr "快速前往所有的模組" #: sphinx/themes/basic/defindex.html:31 msgid "all functions, classes, terms" -msgstr "" +msgstr "所有函式、類別、術語" #: sphinx/themes/basic/genindex-single.html:35 #, python-format msgid "Index – %(key)s" -msgstr "" +msgstr "索引 – %(key)s" #: sphinx/themes/basic/genindex-single.html:63 #: sphinx/themes/basic/genindex-split.html:24 #: sphinx/themes/basic/genindex-split.html:38 #: sphinx/themes/basic/genindex.html:74 msgid "Full index on one page" -msgstr "" +msgstr "單頁完整索引" #: sphinx/themes/basic/genindex-split.html:16 msgid "Index pages by letter" -msgstr "" +msgstr "索引頁面按字母" #: sphinx/themes/basic/genindex-split.html:25 msgid "can be huge" -msgstr "" +msgstr "可能會很大" #: sphinx/themes/basic/layout.html:29 msgid "Navigation" @@ -672,7 +672,7 @@ msgstr "在 %(docstitle)s 中搜尋" #: sphinx/themes/basic/layout.html:131 msgid "About these documents" -msgstr "" +msgstr "關於這些文件" #: sphinx/themes/basic/layout.html:140 msgid "Copyright" @@ -681,24 +681,24 @@ msgstr "版權所有" #: sphinx/themes/basic/layout.html:189 #, python-format msgid "© Copyright %(copyright)s." -msgstr "" +msgstr "© 版權所有 %(copyright)s。" #: sphinx/themes/basic/layout.html:191 #, python-format msgid "© Copyright %(copyright)s." -msgstr "" +msgstr "© 版權所有 %(copyright)s." #: sphinx/themes/basic/layout.html:195 #, python-format msgid "Last updated on %(last_updated)s." -msgstr "最後更新日期是 %(last_updated)s." +msgstr "最後更新於 %(last_updated)s。" #: sphinx/themes/basic/layout.html:198 #, python-format msgid "" "Created using Sphinx " "%(sphinx_version)s." -msgstr "" +msgstr "使用 Sphinx %(sphinx_version)s 創建。" #: sphinx/themes/basic/opensearch.xml:4 #, python-format @@ -725,7 +725,7 @@ msgstr "下一章" msgid "" "Please activate JavaScript to enable the search\n" " functionality." -msgstr "" +msgstr "請啟用 Javascript 以開啟搜尋功能。" #: sphinx/themes/basic/search.html:32 msgid "" @@ -733,23 +733,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 "" +msgstr "你可以從這裡搜尋文件。輸入搜尋詞至底下的文字框並點擊「搜尋」。注意搜尋功能會自動尋找滿足所有詞的結果。只滿足少部份搜尋詞的頁面將不予顯示在結果清單中。" -#: 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 "搜尋" -#: 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:282 msgid "Search Results" msgstr "搜尋結果" -#: 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:284 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 "你的搜尋找不到任何滿足條件的文件。請確定是否所有的搜尋詞都正確地拼寫且你已選擇足夠的分類。" #: sphinx/themes/basic/searchbox.html:12 msgid "Quick search" @@ -763,21 +766,21 @@ msgstr "本頁" #: sphinx/themes/basic/changes/versionchanges.html:12 #, python-format msgid "Changes in Version %(version)s — %(docstitle)s" -msgstr "" +msgstr "於 %(version)s 版本中的改變 — %(docstitle)s" #: sphinx/themes/basic/changes/rstsource.html:5 #, python-format msgid "%(filename)s — %(docstitle)s" -msgstr "" +msgstr "%(filename)s — %(docstitle)s" #: sphinx/themes/basic/changes/versionchanges.html:17 #, python-format msgid "Automatically generated list of changes in version %(version)s" -msgstr "" +msgstr "自動產生的 %(version)s 版本改變列表" #: sphinx/themes/basic/changes/versionchanges.html:18 msgid "Library changes" -msgstr "" +msgstr "函式庫的改變" #: sphinx/themes/basic/changes/versionchanges.html:23 msgid "C API changes" @@ -785,107 +788,93 @@ msgstr "C API 改變" #: sphinx/themes/basic/changes/versionchanges.html:25 msgid "Other changes" -msgstr "其他改變:" +msgstr "其他改變" #: sphinx/themes/basic/static/doctools.js_t:169 sphinx/writers/html.py:668 #: sphinx/writers/html.py:673 msgid "Permalink to this headline" -msgstr "" +msgstr "本標題的永久連結" #: sphinx/themes/basic/static/doctools.js_t:175 sphinx/writers/html.py:105 msgid "Permalink to this definition" -msgstr "" +msgstr "本定義的永久連結" #: sphinx/themes/basic/static/doctools.js_t:208 msgid "Hide Search Matches" -msgstr "" +msgstr "隱藏吻合搜尋的上色" #: sphinx/themes/basic/static/searchtools.js_t:121 msgid "Searching" -msgstr "" +msgstr "搜尋中" #: sphinx/themes/basic/static/searchtools.js_t:126 msgid "Preparing search..." -msgstr "" +msgstr "準備搜尋中…" #: sphinx/themes/basic/static/searchtools.js_t:286 #, python-format msgid "Search finished, found %s page(s) matching the search query." -msgstr "" +msgstr "搜尋完成,共找到 %s 頁面滿足搜尋條件。" #: sphinx/themes/basic/static/searchtools.js_t:338 msgid ", in " -msgstr "" +msgstr " 於 " #: sphinx/themes/classic/static/sidebar.js_t:83 msgid "Expand sidebar" -msgstr "" +msgstr "展開側邊欄" #: sphinx/themes/classic/static/sidebar.js_t:96 #: sphinx/themes/classic/static/sidebar.js_t:124 msgid "Collapse sidebar" -msgstr "" +msgstr "收合側邊欄" #: sphinx/themes/haiku/layout.html:24 msgid "Contents" -msgstr "" +msgstr "內容" #: sphinx/writers/html.py:349 msgid "Permalink to this code" -msgstr "" +msgstr "本原始碼的永久連結" #: sphinx/writers/html.py:353 msgid "Permalink to this image" -msgstr "" +msgstr "本圖片的永久連結" #: sphinx/writers/html.py:355 msgid "Permalink to this toctree" -msgstr "" +msgstr "本目錄的永久連結" #: sphinx/writers/html.py:677 msgid "Permalink to this table" -msgstr "" +msgstr "本表格的永久連結" #: sphinx/writers/latex.py:361 msgid "Release" msgstr "釋出" #: sphinx/writers/latex.py:427 -#, fuzzy msgid "page" -msgstr "危險" +msgstr "頁" #: sphinx/writers/latex.py:920 sphinx/writers/manpage.py:233 #: sphinx/writers/texinfo.py:620 msgid "Footnotes" -msgstr "" +msgstr "腳註" #: sphinx/writers/latex.py:1022 msgid "continued from previous page" -msgstr "" +msgstr "呈接上一頁" #: sphinx/writers/latex.py:1028 msgid "Continued on next page" -msgstr "" +msgstr "下一頁繼續" #: sphinx/writers/manpage.py:282 sphinx/writers/text.py:582 #, python-format msgid "[image: %s]" -msgstr "" +msgstr "[圖片:%s]" #: sphinx/writers/manpage.py:283 sphinx/writers/text.py:583 msgid "[image]" msgstr "[圖片]" - -#~ msgid "%B %d, %Y" -#~ msgstr "%Y 年 %m 月 %d 日" - -#~ msgid "%b %d, %Y" -#~ msgstr "%Y 年 %m 月 %d 日" - -#~ msgid "(The <> is located in %s, line %d.)" -#~ msgstr "" - -#~ msgid "Enter search terms or a module, class or function name." -#~ msgstr "" - diff --git a/sphinx/quickstart.py b/sphinx/quickstart.py index e9564b0dd..77f9139e5 100644 --- a/sphinx/quickstart.py +++ b/sphinx/quickstart.py @@ -520,6 +520,7 @@ help: \t@echo " doctest to run all doctests embedded in the documentation \ (if enabled)" \t@echo " coverage to run coverage check of the documentation (if enabled)" +\t@echo " dummy to check syntax errors of document sources" .PHONY: clean clean: @@ -695,6 +696,12 @@ pseudoxml: \t$(SPHINXBUILD) -b pseudoxml $(ALLSPHINXOPTS) $(BUILDDIR)/pseudoxml \t@echo \t@echo "Build finished. The pseudo-XML files are in $(BUILDDIR)/pseudoxml." + +.PHONY: dummy +dummy: +\t$(SPHINXBUILD) -b dummy $(ALLSPHINXOPTS) $(BUILDDIR)/dummy +\t@echo +\t@echo "Build finished. Dummy builder generates no files." ''' BATCHFILE = u'''\ @@ -739,6 +746,7 @@ if "%%1" == "help" ( \techo. linkcheck to check all external links for integrity \techo. doctest to run all doctests embedded in the documentation if enabled \techo. coverage to run coverage check of the documentation if enabled +\techo. dummy to check syntax errors of document sources \tgoto end ) @@ -969,6 +977,14 @@ if "%%1" == "pseudoxml" ( \tgoto end ) +if "%%1" == "dummy" ( +\t%%SPHINXBUILD%% -b dummy %%ALLSPHINXOPTS%% %%BUILDDIR%%/dummy +\tif errorlevel 1 exit /b 1 +\techo. +\techo.Build finished. Dummy builder generates no files. +\tgoto end +) + :end ''' diff --git a/sphinx/transforms.py b/sphinx/transforms.py index 583271116..2e3fb7f0b 100644 --- a/sphinx/transforms.py +++ b/sphinx/transforms.py @@ -44,6 +44,7 @@ class DefaultSubstitutions(Transform): default_priority = 210 def apply(self): + env = self.document.settings.env config = self.document.settings.env.config # only handle those not otherwise defined in the document to_handle = default_substitutions - set(self.document.substitution_defs) @@ -53,8 +54,8 @@ class DefaultSubstitutions(Transform): text = config[refname] if refname == 'today' and not text: # special handling: can also specify a strftime format - text = format_date(config.today_fmt or _('MMMM dd, YYYY'), - language=config.language) + text = format_date(config.today_fmt or _('%b %d, %Y'), + language=config.language, warn=env.warn) ref.replace_self(nodes.Text(text, text)) diff --git a/sphinx/util/i18n.py b/sphinx/util/i18n.py index 94492ff45..311787b8b 100644 --- a/sphinx/util/i18n.py +++ b/sphinx/util/i18n.py @@ -126,15 +126,21 @@ def find_catalog_source_files(locale_dirs, locale, domains=None, gettext_compact return catalogs -# date_format mappings: ustrftime() to bable.dates.format_date() +# date_format mappings: ustrftime() to bable.dates.format_datetime() date_format_mappings = { '%a': 'EEE', # Weekday as locale’s abbreviated name. '%A': 'EEEE', # Weekday as locale’s full name. '%b': 'MMM', # Month as locale’s abbreviated name. '%B': 'MMMM', # Month as locale’s full name. + '%c': 'medium', # Locale’s appropriate date and time representation. '%d': 'dd', # Day of the month as a zero-padded decimal number. + '%H': 'HH', # Hour (24-hour clock) as a decimal number [00,23]. + '%I': 'hh', # Hour (12-hour clock) as a decimal number [01,12]. '%j': 'DDD', # Day of the year as a zero-padded decimal number. '%m': 'MM', # Month as a zero-padded decimal number. + '%M': 'mm', # Minute as a decimal number [00,59]. + '%p': 'a', # Locale’s equivalent of either AM or PM. + '%S': 'ss', # Second as a decimal number. '%U': 'WW', # Week number of the year (Sunday as the first day of the week) # as a zero padded decimal number. All days in a new year preceding # the first Sunday are considered to be in week 0. @@ -143,24 +149,37 @@ date_format_mappings = { # as a decimal number. All days in a new year preceding the first # Monday are considered to be in week 0. '%x': 'medium', # Locale’s appropriate date representation. + '%X': 'medium', # Locale’s appropriate time representation. '%y': 'YY', # Year without century as a zero-padded decimal number. '%Y': 'YYYY', # Year with century as a decimal number. + '%Z': 'zzzz', # Time zone name (no characters if no time zone exists). '%%': '%', } -def babel_format_date(date, format, locale): +def babel_format_date(date, format, locale, warn=None, formatter=babel.dates.format_date): if locale is None: locale = 'en' + # Check if we have the tzinfo attribute. If not we cannot do any time + # related formats. + if not hasattr(date, 'tzinfo'): + formatter = babel.dates.format_date + try: - return babel.dates.format_date(date, format, locale=locale) + return formatter(date, format, locale=locale) except (ValueError, babel.core.UnknownLocaleError): # fallback to English - return babel.dates.format_date(date, format, locale='en') + return formatter(date, format, locale='en') + except AttributeError: + if warn: + warn('Invalid date format. Quote the string by single quote ' + 'if you want to output it directly: %s' % format) + + return format -def format_date(format, date=None, language=None): +def format_date(format, date=None, language=None, warn=None): if format is None: format = 'medium' @@ -173,20 +192,33 @@ def format_date(format, date=None, language=None): else: date = datetime.now() - if '%' not in format: + if re.match('EEE|MMM|dd|DDD|MM|WW|medium|YY', format): # consider the format as babel's - return babel_format_date(date, format, locale=language) - else: - warnings.warn('ustrftime format support will be dropped at Sphinx-1.5', + warnings.warn('LDML format support will be dropped at Sphinx-1.5', DeprecationWarning) + return babel_format_date(date, format, locale=language, warn=warn, + formatter=babel.dates.format_datetime) + else: # consider the format as ustrftime's and try to convert it to babel's result = [] tokens = re.split('(%.)', format) for token in tokens: if token in date_format_mappings: babel_format = date_format_mappings.get(token, '') - result.append(babel_format_date(date, babel_format, locale=language)) + + # Check if we have to use a different babel formatter then + # format_datetime, because we only want to format a date + # or a time. + if token == '%x': + function = babel.dates.format_date + elif token == '%X': + function = babel.dates.format_time + else: + function = babel.dates.format_datetime + + result.append(babel_format_date(date, babel_format, locale=language, + formatter=function)) else: result.append(token) diff --git a/sphinx/writers/latex.py b/sphinx/writers/latex.py index 2e9cc784e..d491cc076 100644 --- a/sphinx/writers/latex.py +++ b/sphinx/writers/latex.py @@ -371,8 +371,7 @@ class LaTeXTranslator(nodes.NodeVisitor): if builder.config.today: self.elements['date'] = builder.config.today else: - self.elements['date'] = format_date(builder.config.today_fmt or - _('MMMM dd, YYYY'), + self.elements['date'] = format_date(builder.config.today_fmt or _('%b %d, %Y'), language=builder.config.language) if builder.config.latex_logo: self.elements['logo'] = '\\includegraphics{%s}\\par' % \ @@ -465,7 +464,7 @@ class LaTeXTranslator(nodes.NodeVisitor): hyperlink_ids.update(ids) def pop_hyperlink_ids(self, figtype): - return self.next_hyperlink_ids.get(figtype, set()) + return self.next_hyperlink_ids.pop(figtype, set()) def restrict_footnote(self, node): if self.footnote_restricted is False: diff --git a/sphinx/writers/manpage.py b/sphinx/writers/manpage.py index 2651ec2e4..223ed78fd 100644 --- a/sphinx/writers/manpage.py +++ b/sphinx/writers/manpage.py @@ -97,8 +97,7 @@ class ManualPageTranslator(BaseTranslator): if builder.config.today: self._docinfo['date'] = builder.config.today else: - self._docinfo['date'] = format_date(builder.config.today_fmt or - _('MMMM dd, YYYY'), + self._docinfo['date'] = format_date(builder.config.today_fmt or _('%b %d, %Y'), language=builder.config.language) self._docinfo['copyright'] = builder.config.copyright self._docinfo['version'] = builder.config.version diff --git a/sphinx/writers/texinfo.py b/sphinx/writers/texinfo.py index fc7d31534..978d56c0b 100644 --- a/sphinx/writers/texinfo.py +++ b/sphinx/writers/texinfo.py @@ -218,8 +218,7 @@ class TexinfoTranslator(nodes.NodeVisitor): 'project': self.escape(self.builder.config.project), 'copyright': self.escape(self.builder.config.copyright), 'date': self.escape(self.builder.config.today or - format_date(self.builder.config.today_fmt or - _('MMMM dd, YYYY'), + format_date(self.builder.config.today_fmt or _('%b %d, %Y'), language=self.builder.config.language)) }) # title diff --git a/tests/test_build_latex.py b/tests/test_build_latex.py index ebed48f9c..e547ccb78 100644 --- a/tests/test_build_latex.py +++ b/tests/test_build_latex.py @@ -226,25 +226,6 @@ def test_numref_with_prefix2(app, status, warning): assert '\\hyperref[baz:code22]{Code-\\ref{baz:code22}}' in result -@with_app(buildername='latex', testroot='numfig', - confoverrides={'numfig': True, 'language': 'el'}) -def test_numref_with_language_el(app, status, warning): - app.builder.build_all() - result = (app.outdir / 'Python.tex').text(encoding='utf8') - print(result) - print(status.getvalue()) - print(warning.getvalue()) - assert '\\addto\\captionsgreek{\\renewcommand{\\figurename}{Fig. }}' in result - assert '\\addto\\captionsgreek{\\renewcommand{\\tablename}{Table }}' in result - assert '\\SetupFloatingEnvironment{literal-block}{name=Listing }' in result - assert '\\hyperref[index:fig1]{Fig. \\ref{index:fig1}}' in result - assert '\\hyperref[baz:fig22]{Figure\\ref{baz:fig22}}' in result - assert '\\hyperref[index:table-1]{Table \\ref{index:table-1}}' in result - assert '\\hyperref[baz:table22]{Table:\\ref{baz:table22}}' in result - assert '\\hyperref[index:code-1]{Listing \\ref{index:code-1}}' in result - assert '\\hyperref[baz:code22]{Code-\\ref{baz:code22}}' in result - - @with_app(buildername='latex', testroot='numfig', confoverrides={'numfig': True, 'language': 'ja'}) def test_numref_with_language_ja(app, status, warning): @@ -264,25 +245,6 @@ def test_numref_with_language_ja(app, status, warning): assert '\\hyperref[baz:code22]{Code-\\ref{baz:code22}}' in result -@with_app(buildername='latex', testroot='numfig', - confoverrides={'numfig': True, 'language': 'ru', 'latex_elements': {'babel': ''}}) -def test_numref_on_bable_disabled(app, status, warning): - app.builder.build_all() - result = (app.outdir / 'Python.tex').text(encoding='utf8') - print(result) - print(status.getvalue()) - print(warning.getvalue()) - assert '\\renewcommand{\\figurename}{Fig. }' in result - assert '\\renewcommand{\\tablename}{Table }' in result - assert '\\SetupFloatingEnvironment{literal-block}{name=Listing }' in result - assert '\\hyperref[index:fig1]{Fig. \\ref{index:fig1}}' in result - assert '\\hyperref[baz:fig22]{Figure\\ref{baz:fig22}}' in result - assert '\\hyperref[index:table-1]{Table \\ref{index:table-1}}' in result - assert '\\hyperref[baz:table22]{Table:\\ref{baz:table22}}' in result - assert '\\hyperref[index:code-1]{Listing \\ref{index:code-1}}' in result - assert '\\hyperref[baz:code22]{Code-\\ref{baz:code22}}' in result - - @with_app(buildername='latex') def test_latex_add_latex_package(app, status, warning): app.add_latex_package('foo') @@ -364,7 +326,7 @@ def test_babel_with_language_ja(app, status, warning): assert '\\renewcommand{\\contentsname}{Table of content}\n' in result assert '\\renewcommand{\\figurename}{Fig. }\n' in result assert '\\renewcommand{\\tablename}{Table. }\n' in result - assert '\\def\\pageautorefname{page}\n' in result + assert u'\\def\\pageautorefname{ページ}\n' in result @with_app(buildername='latex', testroot='latex-babel', diff --git a/tests/test_config.py b/tests/test_config.py index 9a4467840..c05222601 100644 --- a/tests/test_config.py +++ b/tests/test_config.py @@ -10,7 +10,7 @@ :license: BSD, see LICENSE for details. """ from six import PY2, PY3, StringIO, iteritems -from mock import patch +from util import mock from util import TestApp, with_app, gen_with_app, with_tempdir, \ raises, raises_msg, assert_in, assert_not_in @@ -122,7 +122,7 @@ def test_errors_if_setup_is_not_callable(dir): raises_msg(ConfigError, 'callable', TestApp, srcdir=dir) -@patch.object(sphinx, '__display_version__', '1.3.4') +@mock.patch.object(sphinx, '__display_version__', '1.3.4') def test_needs_sphinx(): # micro version app = TestApp(confoverrides={'needs_sphinx': '1.3.3'}) # OK: less diff --git a/tests/test_domain_cpp.py b/tests/test_domain_cpp.py index aef7e8ed4..129b942da 100644 --- a/tests/test_domain_cpp.py +++ b/tests/test_domain_cpp.py @@ -145,6 +145,11 @@ def test_member_definitions(): "4name", output='const std::vector &name') check('member', 'module::myclass foo[n]', "foo__module::myclassA", "3foo") check('member', 'int *const p', 'p__iPC', '1p') + check('member', 'extern int myInt', 'myInt__i', '5myInt') + check('member', 'thread_local int myInt', 'myInt__i', '5myInt') + check('member', 'extern thread_local int myInt', 'myInt__i', '5myInt') + check('member', 'thread_local extern int myInt', 'myInt__i', '5myInt', + 'extern thread_local int myInt') def test_function_definitions(): @@ -256,6 +261,8 @@ def test_function_definitions(): check("function", "void f(int *const p)", "f__iPC", "1fPCi") check("function", "void f(int *volatile const p)", "f__iPVC", "1fPVCi") + check('function', 'extern int f()', 'f', '1fv') + # TODO: make tests for functions in a template, e.g., Test # such that the id generation for function type types is correct. diff --git a/tests/test_util_i18n.py b/tests/test_util_i18n.py index e84892b5c..6ff988c81 100644 --- a/tests/test_util_i18n.py +++ b/tests/test_util_i18n.py @@ -169,6 +169,7 @@ def test_get_catalogs_with_compact(dir): def test_format_date(): date = datetime.date(2016, 2, 7) + # default format format = None assert i18n.format_date(format, date=date) == 'Feb 7, 2016' assert i18n.format_date(format, date=date, language='') == 'Feb 7, 2016' @@ -177,6 +178,7 @@ def test_format_date(): assert i18n.format_date(format, date=date, language='ja') == '2016/02/07' assert i18n.format_date(format, date=date, language='de') == '07.02.2016' + # strftime format format = '%B %d, %Y' assert i18n.format_date(format, date=date) == 'February 07, 2016' assert i18n.format_date(format, date=date, language='') == 'February 07, 2016' @@ -185,6 +187,31 @@ def test_format_date(): assert i18n.format_date(format, date=date, language='ja') == u'2月 07, 2016' assert i18n.format_date(format, date=date, language='de') == 'Februar 07, 2016' + # LDML format + format = 'MMM dd, YYYY' + assert i18n.format_date(format, date=date) == 'Feb 07, 2016' + assert i18n.format_date(format, date=date, language='') == 'Feb 07, 2016' + assert i18n.format_date(format, date=date, language='unknown') == 'Feb 07, 2016' + assert i18n.format_date(format, date=date, language='en') == 'Feb 07, 2016' + assert i18n.format_date(format, date=date, language='ja') == u'2月 07, 2016' + assert i18n.format_date(format, date=date, language='de') == 'Feb. 07, 2016' + + # raw string + format = 'Mon Mar 28 12:37:08 2016, commit 4367aef' + assert i18n.format_date(format, date=date) == format + + format = '%B %d, %Y, %H:%M:%S %I %p' + datet = datetime.datetime(2016, 2, 7, 5, 11, 17, 0) + assert i18n.format_date(format, date=datet) == 'February 07, 2016, 05:11:17 05 AM' + + format = '%x' + assert i18n.format_date(format, date=datet) == 'Feb 7, 2016' + format = '%X' + assert i18n.format_date(format, date=datet) == '5:11:17 AM' + assert i18n.format_date(format, date=date) == 'Feb 7, 2016' + format = '%c' + assert i18n.format_date(format, date=datet) == 'Feb 7, 2016, 5:11:17 AM' + assert i18n.format_date(format, date=date) == 'Feb 7, 2016' def test_get_filename_for_language(): app = TestApp() diff --git a/utils/release-checklist b/utils/release-checklist index ab859487e..ff290471b 100644 --- a/utils/release-checklist +++ b/utils/release-checklist @@ -1,19 +1,20 @@ Release checklist ================= -* Check git status -* Run make style-check +* Check `git status` +* Run `make style-check` +* Run `tx pull -a -f` in sphinx/locale if final major release * Update version info in sphinx/__init__.py * Update release date in CHANGES -* git commit -* make clean -* python setup.py release bdist_wheel sdist upload +* `git commit` +* `make clean` +* `python setup.py release bdist_wheel sdist upload` * Check PyPI release page for obvious errors -* git tag +* `git tag` with version number * Merge default into stable if final major release * Update homepage (release info), regenerate docs (+printable!) * Add new version/milestone to tracker categories * Write announcement and send to mailing list/python-announce * Update version info, add new CHANGES entry for next version -* git commit -* git push +* `git commit` +* `git push`