1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
|
# Translations template for TracXMLRPC.
# Copyright (C) 2024 ORGANIZATION
# This file is distributed under the same license as the TracXMLRPC project.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2024.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: TracXMLRPC 1.2.0\n"
"Report-Msgid-Bugs-To: EMAIL@ADDRESS\n"
"POT-Creation-Date: 2024-05-16 11:48+0900\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.15.0\n"
#: tracrpc/json_rpc.py:163
#, python-format
msgid ""
"Example `POST` request using `curl` with `Content-Type` header\n"
"and body:\n"
"\n"
"{{{\n"
"user: ~ > cat body.json\n"
"{\"params\": [\"WikiStart\"], \"method\": \"wiki.getPage\", \"id\": 123}\n"
"user: ~ > curl -H \"Content-Type: application/json\" --data @body.json "
"%(url_anon)s\n"
"{\"id\": 123, \"error\": null, \"result\": \"= Welcome to....\n"
"}}}\n"
"\n"
"Implementation details:\n"
"\n"
" * JSON-RPC has no formalized type system, so a class-hint system is "
"used\n"
" for input and output of non-standard types:\n"
" * `{\"__jsonclass__\": [\"datetime\", \"YYYY-MM-DDTHH:MM:SS\"]} => "
"DateTime (UTC)`\n"
" * `{\"__jsonclass__\": [\"binary\", \"<base64-encoded>\"]} => Binary`"
"\n"
" * `\"id\"` is optional, and any marker value received with a\n"
" request is returned with the response."
msgstr ""
#: tracrpc/web_ui.py:244
msgid "API"
msgstr ""
#: tracrpc/xml_rpc.py:67
#, python-format
msgid ""
"There should be XML-RPC client implementations available for all\n"
"popular programming languages.\n"
"Example call using `curl`:\n"
"\n"
"{{{\n"
"user: ~ > cat body.xml\n"
"<?xml version=\"1.0\"?>\n"
"<methodCall>\n"
"<methodName>wiki.getPage</methodName>\n"
"<params>\n"
"<param><string>WikiStart</string></param>\n"
"</params>\n"
"</methodCall>\n"
"\n"
"user: ~ > curl -H \"Content-Type: application/xml\" --data @body.xml "
"%(url_anon)s\n"
"<?xml version='1.0'?>\n"
"<methodResponse>\n"
"<params>\n"
"<param>\n"
"<value><string>= Welcome to....\n"
"}}}\n"
"\n"
"The following snippet illustrates how to perform authenticated calls in "
"Python.\n"
"\n"
"{{{\n"
">>> try:\n"
"... from xmlrpc import client as cli\n"
"... except ImportError:\n"
"... import xmlrpclib as cli\n"
"...\n"
">>> p = cli.ServerProxy(%(url_auth)r)\n"
">>> p.system.getAPIVersion()\n"
"%(version)r\n"
"}}}"
msgstr ""
#: tracrpc/templates/rpc_jinja.html:4
msgid "Remote Procedure Call (RPC)"
msgstr ""
#: tracrpc/templates/rpc_jinja.html:15
msgid "Installed API version:"
msgstr ""
#: tracrpc/templates/rpc_jinja.html:16
msgid "Protocol reference:"
msgstr ""
#: tracrpc/templates/rpc_jinja.html:18
msgid ""
"Below you will find a detailed description of all the RPC protocols "
"installed in this environment. This includes supported content types as "
"well as target URLs for anonymous and authenticated access. Use this "
"information to interact with this environment from a remote location."
msgstr ""
#: tracrpc/templates/rpc_jinja.html:25
msgid ""
"Libraries for remote procedure calls and parsing exists for most major "
"languages and platforms - use a tested, standard library for consistent "
"results."
msgstr ""
#: tracrpc/templates/rpc_jinja.html:34
#, python-format
msgid "For %(name)s protocol, use any one of:"
msgstr ""
#: tracrpc/templates/rpc_jinja.html:39
#, python-format
msgid "%(header)s header with request to:"
msgstr ""
#: tracrpc/templates/rpc_jinja.html:43
msgid "For anonymous access:"
msgstr ""
#: tracrpc/templates/rpc_jinja.html:53
msgid "For authenticated access:"
msgstr ""
#: tracrpc/templates/rpc_jinja.html:74
msgid "RPC exported functions"
msgstr ""
#: tracrpc/templates/rpc_jinja.html:87
msgid "Function"
msgstr ""
#: tracrpc/templates/rpc_jinja.html:88
msgid "Description"
msgstr ""
#: tracrpc/templates/rpc_jinja.html:89
msgid "Permission required"
msgstr ""
#: tracrpc/templates/rpc_jinja.html:97
msgid "By resource"
msgstr ""
|