feat: ドキュメント周りを整備

feat/add-sphinx-doc
yupix 12 months ago
parent ff11d9b8ae
commit 1d8848b458
No known key found for this signature in database
GPG Key ID: 2FF705F5C56D9C06

@ -0,0 +1,97 @@
import os
import importlib
import inspect
import subprocess
import time
from typing import TypedDict
def get_defined_functions_and_classes(module):
functions = []
classes = []
for name, obj in inspect.getmembers(module):
if inspect.isfunction(obj) and obj.__module__ == module.__name__:
functions.append(name)
elif inspect.isclass(obj) and obj.__module__ == module.__name__:
classes.append(name)
return functions, classes
class IGenerateSphinx(TypedDict):
module_path: str
module_name: str
functions: list[str]
classes: list[str]
def generate_sphinx_output(data: list[IGenerateSphinx]):
output = []
output.append("API Reference\n===============\n")
tmp = {}
for i in hierarchy.values():
tmp[i] = []
#tmp[i].append(f"{i}\n{'-'*len(i)}")
tmp["__OTHER"] = []
def add_data(_data: IGenerateSphinx, add_to: list):
if _data['functions']:
for function in _data['functions']:
add_to.append(f"\n{function}\n" + "~" * len(function))
add_to.append(f".. autofunction:: {_data['module_name']}.{function}")
if _data['classes']:
for class_name in _data['classes']:
add_to.append(f"\n{class_name}\n" + "~" * len(class_name))
full_class_name = f"{_data['module_name']}.{class_name}"
add_to.append(f".. attributetable:: {full_class_name}")
add_to.append(f".. autoclass:: {full_class_name}\n :members:")
for i in data:
add_to = "__OTHER"
for category in hierarchy.keys():
if category in i['module_path']:
add_to = hierarchy[category]
add_data(i, tmp[add_to])
for k,v in tmp.items():
output.append(f"{k}\n{'-'*len(k)}")
output.append("\n\n".join(v))
return '\n'.join(output)
def generate_documentation(base_path, output_file, hierarchy, exclude_files=[]):
documentation = []
items: list[IGenerateSphinx] = []
for file in [{'filename': file, 'root': root} for root, dirs, files in os.walk(base_path) if root != "__pycache__" for file in files]:
if file['filename'].endswith('.py') and file['filename'] not in exclude_files:
module_path = os.path.join(file['root'], file['filename'])
module_import_path = module_path.replace(os.path.sep, '.').replace('.py', '')
module = importlib.import_module(module_import_path)
functions, classes = get_defined_functions_and_classes(module)
if functions or classes:
items.append({"module_path":module_path, "module_name": module_import_path,"functions": functions,"classes": classes})
doc_content = generate_sphinx_output(items)
documentation.append(doc_content)
with open(output_file, 'w', encoding='utf-8') as doc_file:
doc_file.write('\n\n'.join(documentation))
if __name__ == "__main__":
hierarchy = {
"mipac/models": "Misskey Models",
"mipac/manager": "Managers",
"mipac/actions": "Actions",
"mipac/types": "Type class",
"mipac/errors": "Errors"
}
source_path = "mipac"
output_path = "docs/index.rst"
excluded_files = ["__init__.py", "_version.py"] # Add files to exclude here
generate_documentation(source_path, output_path, hierarchy, exclude_files=excluded_files)
os.chdir("./docs")
subprocess.run("sphinx-intl update -p _build/gettext && ./doc_builder.sh", shell=True)

@ -0,0 +1,20 @@
# Minimal makefile for Sphinx documentation
#
# You can set these variables from the command line, and also
# from the environment for the first two.
SPHINXOPTS ?=
SPHINXBUILD ?= sphinx-build
SOURCEDIR = .
BUILDDIR = _build
# Put it first so that "make" without argument is like "make help".
help:
@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
.PHONY: help Makefile
# Catch-all target: route all unknown targets to Sphinx using the new
# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS).
%: Makefile
@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)

@ -0,0 +1,55 @@
h1, h2, h3, h4, h5, h6 {
font-weight: normal;
}
h2 {
font-size: 1.7em;
}
h3 {
font-size: 1.5em;
}
.py-attribute-table {
display: flex;
flex-wrap: wrap;
background-color: var(--color-inline-code-background);
margin-bottom: -1rem;
border-radius: 4px 4px 0 0;
border-left: #5dcfff solid 2px;
}
.class > .sig-object {
background-color: var(--color-inline-code-background);
border-left: #5dcfff solid 2px;
border-radius: 0 0 0 3px;
margin-bottom: 2em;
}
dd > .deprecated {
border-left: solid goldenrod 7px;
border-top: solid goldenrod 7px;
border-radius: 5px;
}
.py-attribute-table-entry {
list-style: None;
}
.py-attribute-table-column {
flex: .5;
}
.py-attribute-table-column > span {
font-weight: bold;
margin-left: 1rem;
}
.py-attribute-table-badge {
font-weight: bold;
/* margin-right: .5rem; */
}
.sig {
background-color: var(--color-inline-code-background);
}

@ -0,0 +1,54 @@
# Configuration file for the Sphinx documentation builder.
#
# For the full list of built-in configuration values, see the documentation:
# https://www.sphinx-doc.org/en/master/usage/configuration.html
# -- Project information -----------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#project-information
import os
import sys
sys.path.insert(0, os.path.abspath('..'))
sys.path.append(os.path.abspath('extensions'))
project = 'mipac'
copyright = '2023, yupix'
author = 'yupix'
# -- General configuration ---------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#general-configuration
extensions = [
"sphinx.ext.autodoc",
"sphinx.ext.autosummary",
"sphinx.ext.extlinks",
"sphinx.ext.intersphinx",
"sphinx.ext.napoleon",
'attributetable'
]
templates_path = ['_templates']
exclude_patterns = ['_build', 'Thumbs.db', '.DS_Store']
language = 'en'
gettext_compact = False
locale_dirs = ['locale/']
# -- Options for HTML output -------------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output
html_theme = 'furo'
html_static_path = ["_static"]
html_css_files = ["css/custom.css"]
html_theme_options = {
"sidebar_hide_name": True
}
# -- Options for todo extension ----------------------------------------------
# https://www.sphinx-doc.org/en/master/usage/extensions/todo.html#configuration
todo_include_todos = True

@ -0,0 +1,12 @@
#!/usr/bin/env bash
make html
shopt -s dotglob
support_language=('ja')
for language in ${support_language[@]}
do
make -e SPHINXOPTS="-D language='${language}'" -e BUILDDIR="./_build/html/${language}" html
cp -r ./_build/html/${language}/html/* ./_build/html/${language}/
done

@ -0,0 +1,269 @@
from __future__ import annotations
import importlib
import inspect
import re
from collections import OrderedDict, namedtuple
from typing import Any, Dict
from docutils import nodes
from sphinx import addnodes, application
from sphinx.locale import _
from sphinx.util.docutils import SphinxDirective
class attributetable(nodes.General, nodes.Element):
pass
class attributetablecolumn(nodes.General, nodes.Element):
pass
class attributetabletitle(nodes.TextElement):
pass
class attributetableplaceholder(nodes.General, nodes.Element):
pass
class attributetablebadge(nodes.TextElement):
pass
class attributetable_item(nodes.Part, nodes.Element):
pass
def visit_attributetable_node(self, node):
class_ = node["python-class"]
self.body.append(f'<div class="py-attribute-table" data-move-to-id="{class_}">')
def visit_attributetablecolumn_node(self, node):
self.body.append(self.starttag(node, 'div', CLASS='py-attribute-table-column'))
def visit_attributetabletitle_node(self, node):
self.body.append(self.starttag(node, 'span'))
def visit_attributetablebadge_node(self, node):
attributes = {
'class': 'py-attribute-table-badge',
'title': node['badge-type'],
}
self.body.append(self.starttag(node, 'span', **attributes))
def visit_attributetable_item_node(self, node):
self.body.append(self.starttag(node, 'li', CLASS='py-attribute-table-entry'))
def depart_attributetable_node(self, node):
self.body.append('</div>')
def depart_attributetablecolumn_node(self, node):
self.body.append('</div>')
def depart_attributetabletitle_node(self, node):
self.body.append('</span>')
def depart_attributetablebadge_node(self, node):
self.body.append('</span>')
def depart_attributetable_item_node(self, node):
self.body.append('</li>')
_name_parser_regex = re.compile(r'(?P<module>[\w.]+\.)?(?P<name>\w+)')
class PyAttributeTable(SphinxDirective):
has_content = False
required_arguments = 1
optional_arguments = 0
final_argument_whitespace = False
option_spec = {}
def parse_name(self, content: str):
path, name = _name_parser_regex.match(content).groups()
if path:
modulename = path.rstrip('.')
else:
modulename = self.env.temp_data.get('autodoc:module')
if not modulename:
modulename = self.env.ref_context.get('py:module')
if modulename is None:
raise RuntimeError('modulename somehow None for %s in %s.' % (content, self.env.docname))
return modulename, name
def run(self):
"""If you're curious on the HTML this is meant to generate:
<div class="py-attribute-table">
<div class="py-attribute-table-column">
<span>_('Attributes')</span>
<ul>
<li>
<a href="...">
</li>
</ul>
</div>
<div class="py-attribute-table-column">
<span>_('Methods')</span>
<ul>
<li>
<a href="..."></a>
<span class="py-attribute-badge" title="decorator">D</span>
</li>
</ul>
</div>
</div>
However, since this requires the tree to be complete
and parsed, it'll need to be done at a different stage and then
replaced.
"""
content = self.arguments[0].strip()
node = attributetableplaceholder('')
modulename, name = self.parse_name(content)
node['python-doc'] = self.env.docname
node['python-module'] = modulename
node['python-class'] = name
node['python-full-name'] = f'{modulename}.{name}'
return [node]
def build_lookup_table(env):
# Given an environment, load up a lookup table of
# full-class-name: objects
result = {}
domain = env.domains['py']
ignored = {
'data', 'exception', 'module', 'class',
}
for (fullname, _, objtype, docname, _, _) in domain.get_objects():
if objtype in ignored:
continue
classname, _, child = fullname.rpartition('.')
try:
result[classname].append(child)
except KeyError:
result[classname] = [child]
return result
TableElement = namedtuple('TableElement', 'fullname label badge')
def process_attributetable(app: application.Sphinx, doctree, fromdocname: str):
env = app.builder.env
lookup = build_lookup_table(env)
for node in doctree.traverse(attributetableplaceholder):
modulename, classname, fullname = node['python-module'], node['python-class'], node['python-full-name']
groups = get_class_results(lookup, modulename, classname, fullname)
table = attributetable('')
for label, subitems in groups.items():
if not subitems:
continue
table.append(class_results_to_node(label, sorted(subitems, key=lambda c: c.label)))
table['python-class'] = fullname
if not table:
node.replace_self([])
else:
node.replace_self([table])
def get_class_results(lookup: Dict[str, Any], modulename: str, name: str, fullname: str):
module = importlib.import_module(modulename)
cls = getattr(module, name)
groups = OrderedDict([
(_('Attributes'), []),
(_('Methods'), []),
])
try:
members = lookup[fullname]
except KeyError:
return groups
for attr in members:
attrlookup = f'{fullname}.{attr}'
key = _('Attributes')
badge = None
label = attr
value = None
for base in cls.__mro__:
value = base.__dict__.get(attr)
if value is not None:
break
if value is not None:
doc = value.__doc__ or ''
if inspect.iscoroutinefunction(value) or doc.startswith('|coro|'):
key = _('Methods')
badge = attributetablebadge('async', 'async')
badge['badge-type'] = _('coroutine')
elif isinstance(value, classmethod):
key = _('Methods')
label = f'{name}.{attr}'
badge = attributetablebadge('cls', 'cls')
badge['badge-type'] = _('classmethod')
elif inspect.isfunction(value):
if doc.startswith(('A decorator', 'A shortcut decorator')):
# finicky but surprisingly consistent
badge = attributetablebadge('@', '@')
badge['badge-type'] = _('decorator')
key = _('Methods')
else:
key = _('Methods')
badge = attributetablebadge('def', 'def')
badge['badge-type'] = _('method')
groups[key].append(TableElement(fullname=attrlookup, label=label, badge=badge))
return groups
def class_results_to_node(key, elements):
title = attributetabletitle(key, key)
ul = nodes.bullet_list('')
for element in elements:
ref = nodes.reference('', '', internal=True,
refuri='#' + element.fullname,
anchorname='',
*[nodes.Text(element.label)])
para = addnodes.compact_paragraph('', '', ref)
if element.badge is not None:
ul.append(attributetable_item('', element.badge, para))
else:
ul.append(attributetable_item('', para))
return attributetablecolumn('', title, ul)
def setup(app):
app.add_directive('attributetable', PyAttributeTable)
app.add_node(attributetable, html=(visit_attributetable_node, depart_attributetable_node))
app.add_node(attributetablecolumn, html=(visit_attributetablecolumn_node, depart_attributetablecolumn_node))
app.add_node(attributetabletitle, html=(visit_attributetabletitle_node, depart_attributetabletitle_node))
app.add_node(attributetablebadge, html=(visit_attributetablebadge_node, depart_attributetablebadge_node))
app.add_node(attributetable_item, html=(visit_attributetable_item_node, depart_attributetable_item_node))
app.add_node(attributetableplaceholder)
app.connect('doctree-resolved', process_attributetable)

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

@ -0,0 +1,29 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.abstract.action.rst:2
msgid "mipac.abstract.action module"
msgstr ""
#: mipac.abstract.action.AbstractAction:1 of
msgid "Bases: :py:class:`~abc.ABC`"
msgstr ""

@ -0,0 +1,29 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.abstract.manager.rst:2
msgid "mipac.abstract.manager module"
msgstr ""
#: mipac.abstract.manager.AbstractManager:1 of
msgid "Bases: :py:class:`~abc.ABC`"
msgstr ""

@ -0,0 +1,29 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.abstract.model.rst:2
msgid "mipac.abstract.model module"
msgstr ""
#: mipac.abstract.model.AbstractModel:1 of
msgid "Bases: :py:class:`~abc.ABC`"
msgstr ""

@ -0,0 +1,33 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:11+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.abstract.rst:2
msgid "mipac.abstract package"
msgstr ""
#: ../../mipac.abstract.rst:5
msgid "Submodules"
msgstr ""
#: ../../mipac.abstract.rst:15
msgid "Module contents"
msgstr ""

@ -0,0 +1,33 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.actions.admins.ad.rst:2
msgid "mipac.actions.admins.ad module"
msgstr ""
#: mipac.actions.admins.ad.AdminAdvertisingActions:1 of
msgid "Bases: :py:class:`~mipac.actions.admins.ad.AdminAdvertisingModelActions`"
msgstr ""
#: mipac.actions.admins.ad.AdminAdvertisingModelActions:1 of
msgid "Bases: :py:class:`~mipac.abstract.action.AbstractAction`"
msgstr ""

@ -0,0 +1,120 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.actions.admins.admin.rst:2
msgid "mipac.actions.admins.admin module"
msgstr ""
#: mipac.actions.admins.admin.AdminActions:1 of
msgid "Bases: :py:class:`~mipac.abstract.action.AbstractAction`"
msgstr ""
#: mipac.actions.admins.admin.AdminActions.reset_password:1 of
msgid "指定したIDのユーザーのパスワードをリセットします"
msgstr ""
#: mipac.actions.admins.admin.AdminActions.reset_password:4
#: mipac.actions.admins.admin.AdminActions.silence_user:4
#: mipac.actions.admins.admin.AdminActions.suspend_user:4
#: mipac.actions.admins.admin.AdminActions.unsilence_user:4
#: mipac.actions.admins.admin.AdminActions.unsuspend_user:4 of
msgid "Parameters"
msgstr ""
#: mipac.actions.admins.admin.AdminActions.reset_password:6
#: mipac.actions.admins.admin.AdminActions.silence_user:6
#: mipac.actions.admins.admin.AdminActions.suspend_user:6
#: mipac.actions.admins.admin.AdminActions.unsilence_user:6
#: mipac.actions.admins.admin.AdminActions.unsuspend_user:6 of
msgid "user_id"
msgstr ""
#: mipac.actions.admins.admin.AdminActions.reset_password:-1
#: mipac.actions.admins.admin.AdminActions.reset_password:10
#: mipac.actions.admins.admin.AdminActions.silence_user:-1
#: mipac.actions.admins.admin.AdminActions.suspend_user:-1
#: mipac.actions.admins.admin.AdminActions.unsilence_user:-1
#: mipac.actions.admins.admin.AdminActions.unsuspend_user:-1 of
msgid "str"
msgstr ""
#: mipac.actions.admins.admin.AdminActions.reset_password:6 of
msgid "パスワードをリセットする対象のユーザーID"
msgstr ""
#: mipac.actions.admins.admin.AdminActions.reset_password:9
#: mipac.actions.admins.admin.AdminActions.silence_user:9
#: mipac.actions.admins.admin.AdminActions.suspend_user:9
#: mipac.actions.admins.admin.AdminActions.unsilence_user:9
#: mipac.actions.admins.admin.AdminActions.unsuspend_user:9 of
msgid "Returns"
msgstr ""
#: mipac.actions.admins.admin.AdminActions.reset_password:11 of
msgid "新しいパスワード"
msgstr ""
#: mipac.actions.admins.admin.AdminActions.silence_user:1 of
msgid "Silences the user of the specified Id"
msgstr ""
#: mipac.actions.admins.admin.AdminActions.silence_user:6 of
msgid "Id of user to silence"
msgstr ""
#: mipac.actions.admins.admin.AdminActions.silence_user:10
#: mipac.actions.admins.admin.AdminActions.suspend_user:10
#: mipac.actions.admins.admin.AdminActions.unsilence_user:10
#: mipac.actions.admins.admin.AdminActions.unsuspend_user:10 of
msgid "bool"
msgstr ""
#: mipac.actions.admins.admin.AdminActions.silence_user:11
#: mipac.actions.admins.admin.AdminActions.suspend_user:11
#: mipac.actions.admins.admin.AdminActions.unsilence_user:11
#: mipac.actions.admins.admin.AdminActions.unsuspend_user:11 of
msgid "success or failed"
msgstr ""
#: mipac.actions.admins.admin.AdminActions.suspend_user:1 of
msgid "Suspends the user for the specified Id"
msgstr ""
#: mipac.actions.admins.admin.AdminActions.suspend_user:6 of
msgid "Id of user to suspend"
msgstr ""
#: mipac.actions.admins.admin.AdminActions.unsilence_user:1 of
msgid "Unsilence user with specified Id"
msgstr ""
#: mipac.actions.admins.admin.AdminActions.unsilence_user:6 of
msgid "Id of user to unsilence"
msgstr ""
#: mipac.actions.admins.admin.AdminActions.unsuspend_user:1 of
msgid "Unsuspend user with specified Id"
msgstr ""
#: mipac.actions.admins.admin.AdminActions.unsuspend_user:6 of
msgid "Id of user to unsuspend"
msgstr ""

@ -0,0 +1,35 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.actions.admins.announcement.rst:2
msgid "mipac.actions.admins.announcement module"
msgstr ""
#: mipac.actions.admins.announcement.AdminAnnouncementActions:1 of
msgid ""
"Bases: "
":py:class:`~mipac.actions.admins.announcement.AdminAnnouncementClientActions`"
msgstr ""
#: mipac.actions.admins.announcement.AdminAnnouncementClientActions:1 of
msgid "Bases: :py:class:`~mipac.abstract.action.AbstractAction`"
msgstr ""

@ -0,0 +1,132 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.actions.admins.emoji.rst:2
msgid "mipac.actions.admins.emoji module"
msgstr ""
#: mipac.actions.admins.emoji.AdminEmojiActions:1 of
msgid "Bases: :py:class:`~mipac.abstract.action.AbstractAction`"
msgstr ""
#: mipac.actions.admins.emoji.AdminEmojiActions.add:1 of
msgid "絵文字を追加します"
msgstr ""
#: mipac.actions.admins.emoji.AdminEmojiActions.add:4
#: mipac.actions.admins.emoji.AdminEmojiActions.remove:4 of
msgid "Parameters"
msgstr ""
#: mipac.actions.admins.emoji.AdminEmojiActions.add:5 of
msgid "file_id"
msgstr ""
#: mipac.actions.admins.emoji.AdminEmojiActions.add:-1
#: mipac.actions.admins.emoji.AdminEmojiActions.remove:-1 of
msgid "str | None, optional"
msgstr ""
#: mipac.actions.admins.emoji.AdminEmojiActions.add:6 of
msgid "追加する絵文字のファイルId, by default None"
msgstr ""
#: mipac.actions.admins.emoji.AdminEmojiActions.add:7 of
msgid "name"
msgstr ""
#: mipac.actions.admins.emoji.AdminEmojiActions.add:8 of
msgid "絵文字名, by default None"
msgstr ""
#: mipac.actions.admins.emoji.AdminEmojiActions.add:9 of
msgid "url"
msgstr ""
#: mipac.actions.admins.emoji.AdminEmojiActions.add:10 of
msgid "絵文字があるUrl, by default None"
msgstr ""
#: mipac.actions.admins.emoji.AdminEmojiActions.add:11 of
msgid "category"
msgstr ""
#: mipac.actions.admins.emoji.AdminEmojiActions.add:12 of
msgid "絵文字のカテゴリー, by default None"
msgstr ""
#: mipac.actions.admins.emoji.AdminEmojiActions.add:14 of
msgid "aliases"
msgstr ""
#: mipac.actions.admins.emoji.AdminEmojiActions.add:-1 of
msgid "list[str] | None, optional"
msgstr ""
#: mipac.actions.admins.emoji.AdminEmojiActions.add:14 of
msgid "絵文字のエイリアス, by default None"
msgstr ""
#: mipac.actions.admins.emoji.AdminEmojiActions.add:17
#: mipac.actions.admins.emoji.AdminEmojiActions.remove:9 of
msgid "Returns"
msgstr ""
#: mipac.actions.admins.emoji.AdminEmojiActions.add:19
#: mipac.actions.admins.emoji.AdminEmojiActions.remove:11 of
msgid "bool"
msgstr ""
#: mipac.actions.admins.emoji.AdminEmojiActions.add:19
#: mipac.actions.admins.emoji.AdminEmojiActions.remove:11 of
msgid "成功したかどうか"
msgstr ""
#: mipac.actions.admins.emoji.AdminEmojiActions.add:22
#: mipac.actions.admins.emoji.AdminEmojiActions.remove:14 of
msgid "Raises"
msgstr ""
#: mipac.actions.admins.emoji.AdminEmojiActions.add:23
#: mipac.actions.admins.emoji.AdminEmojiActions.remove:15 of
msgid "NotExistRequiredData"
msgstr ""
#: mipac.actions.admins.emoji.AdminEmojiActions.add:24 of
msgid "必要なデータが不足している"
msgstr ""
#: mipac.actions.admins.emoji.AdminEmojiActions.remove:1 of
msgid "指定したIdの絵文字を削除します"
msgstr ""
#: mipac.actions.admins.emoji.AdminEmojiActions.remove:6 of
msgid "emoji_id"
msgstr ""
#: mipac.actions.admins.emoji.AdminEmojiActions.remove:6 of
msgid "削除する絵文字のId, by default None"
msgstr ""
#: mipac.actions.admins.emoji.AdminEmojiActions.remove:16 of
msgid "Idが不足している"
msgstr ""

@ -0,0 +1,72 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.actions.admins.moderator.rst:2
msgid "mipac.actions.admins.moderator module"
msgstr ""
#: mipac.actions.admins.moderator.AdminModeratorActions:1 of
msgid "Bases: :py:class:`~mipac.abstract.action.AbstractAction`"
msgstr ""
#: mipac.actions.admins.moderator.AdminModeratorActions.add:1 of
msgid "Add a user as a moderator"
msgstr ""
#: mipac.actions.admins.moderator.AdminModeratorActions.add:4
#: mipac.actions.admins.moderator.AdminModeratorActions.remove:4 of
msgid "Parameters"
msgstr ""
#: mipac.actions.admins.moderator.AdminModeratorActions.add:6
#: mipac.actions.admins.moderator.AdminModeratorActions.remove:6 of
msgid "user_id"
msgstr ""
#: mipac.actions.admins.moderator.AdminModeratorActions.add:-1
#: mipac.actions.admins.moderator.AdminModeratorActions.remove:-1 of
msgid "str | None, default=None"
msgstr ""
#: mipac.actions.admins.moderator.AdminModeratorActions.add:6
#: mipac.actions.admins.moderator.AdminModeratorActions.remove:6 of
msgid "ユーザーのID"
msgstr ""
#: mipac.actions.admins.moderator.AdminModeratorActions.add:9
#: mipac.actions.admins.moderator.AdminModeratorActions.remove:9 of
msgid "Returns"
msgstr ""
#: mipac.actions.admins.moderator.AdminModeratorActions.add:10
#: mipac.actions.admins.moderator.AdminModeratorActions.remove:10 of
msgid "bool"
msgstr ""
#: mipac.actions.admins.moderator.AdminModeratorActions.add:11
#: mipac.actions.admins.moderator.AdminModeratorActions.remove:11 of
msgid "成功したか否か"
msgstr ""
#: mipac.actions.admins.moderator.AdminModeratorActions.remove:1 of
msgid "Unmoderate a user"
msgstr ""

@ -0,0 +1,33 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:11+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.actions.admins.rst:2
msgid "mipac.actions.admins package"
msgstr ""
#: ../../mipac.actions.admins.rst:5
msgid "Submodules"
msgstr ""
#: ../../mipac.actions.admins.rst:19
msgid "Module contents"
msgstr ""

@ -0,0 +1,98 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.actions.admins.roles.rst:2
msgid "mipac.actions.admins.roles module"
msgstr ""
#: mipac.actions.admins.roles.AdminRoleActions:1 of
msgid "Bases: :py:class:`~mipac.actions.admins.roles.AdminRoleModelActions`"
msgstr ""
#: mipac.actions.admins.roles.AdminRoleModelActions:1 of
msgid "Bases: :py:class:`~mipac.abstract.action.AbstractAction`"
msgstr ""
#: mipac.actions.admins.roles.AdminRoleModelActions.assign:1
#: mipac.actions.admins.roles.AdminRoleModelActions.unassign:1 of
msgid "指定したユーザーに指定したロールを付与します"
msgstr ""
#: mipac.actions.admins.roles.AdminRoleModelActions.assign:4
#: mipac.actions.admins.roles.AdminRoleModelActions.unassign:4 of
msgid "Parameters"
msgstr ""
#: mipac.actions.admins.roles.AdminRoleModelActions.assign:5
#: mipac.actions.admins.roles.AdminRoleModelActions.unassign:5 of
msgid "role_id"
msgstr ""
#: mipac.actions.admins.roles.AdminRoleModelActions.assign:-1
#: mipac.actions.admins.roles.AdminRoleModelActions.unassign:-1 of
msgid "str"
msgstr ""
#: mipac.actions.admins.roles.AdminRoleModelActions.assign:6
#: mipac.actions.admins.roles.AdminRoleModelActions.unassign:6 of
msgid "ロールのID"
msgstr ""
#: mipac.actions.admins.roles.AdminRoleModelActions.assign:7
#: mipac.actions.admins.roles.AdminRoleModelActions.unassign:7 of
msgid "user_id"
msgstr ""
#: mipac.actions.admins.roles.AdminRoleModelActions.assign:8
#: mipac.actions.admins.roles.AdminRoleModelActions.unassign:8 of
msgid "ロールを付与する対象のユーザーID"
msgstr ""
#: mipac.actions.admins.roles.AdminRoleModelActions.assign:10
#: mipac.actions.admins.roles.AdminRoleModelActions.unassign:10 of
msgid "expires_at"
msgstr ""
#: mipac.actions.admins.roles.AdminRoleModelActions.assign:-1
#: mipac.actions.admins.roles.AdminRoleModelActions.unassign:-1 of
msgid "int | None, optional"
msgstr ""
#: mipac.actions.admins.roles.AdminRoleModelActions.assign:10
#: mipac.actions.admins.roles.AdminRoleModelActions.unassign:10 of
msgid "いつまでロールを付与するか, by default None"
msgstr ""
#: mipac.actions.admins.roles.AdminRoleModelActions.assign:13
#: mipac.actions.admins.roles.AdminRoleModelActions.unassign:13 of
msgid "Returns"
msgstr ""
#: mipac.actions.admins.roles.AdminRoleModelActions.assign:14
#: mipac.actions.admins.roles.AdminRoleModelActions.unassign:14 of
msgid "bool"
msgstr ""
#: mipac.actions.admins.roles.AdminRoleModelActions.assign:15
#: mipac.actions.admins.roles.AdminRoleModelActions.unassign:15 of
msgid "成功したか否か"
msgstr ""

@ -0,0 +1,105 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.actions.admins.user.rst:2
msgid "mipac.actions.admins.user module"
msgstr ""
#: mipac.actions.admins.user.AdminUserActions:1 of
msgid "Bases: :py:class:`~mipac.abstract.action.AbstractAction`"
msgstr ""
#: mipac.actions.admins.user.AdminUserActions.delete_account:1 of
msgid "Deletes the user with the specified user ID."
msgstr ""
#: mipac.actions.admins.user.AdminUserActions.delete_account:4
#: mipac.actions.admins.user.AdminUserActions.show_user:4
#: mipac.actions.admins.user.AdminUserActions.suspend:4
#: mipac.actions.admins.user.AdminUserActions.unsuspend:4 of
msgid "Parameters"
msgstr ""
#: mipac.actions.admins.user.AdminUserActions.delete_account:5
#: mipac.actions.admins.user.AdminUserActions.show_user:6
#: mipac.actions.admins.user.AdminUserActions.suspend:6
#: mipac.actions.admins.user.AdminUserActions.unsuspend:6 of
msgid "user_id"
msgstr ""
#: mipac.actions.admins.user.AdminUserActions.delete_account:-1
#: mipac.actions.admins.user.AdminUserActions.show_user:-1
#: mipac.actions.admins.user.AdminUserActions.suspend:-1
#: mipac.actions.admins.user.AdminUserActions.unsuspend:-1 of
msgid "str | None, default=None"
msgstr ""
#: mipac.actions.admins.user.AdminUserActions.delete_account:6 of
msgid "ID of the user to be deleted"
msgstr ""
#: mipac.actions.admins.user.AdminUserActions.delete_account:8
#: mipac.actions.admins.user.AdminUserActions.show_user:9
#: mipac.actions.admins.user.AdminUserActions.suspend:9
#: mipac.actions.admins.user.AdminUserActions.unsuspend:9 of
msgid "Returns"
msgstr ""
#: mipac.actions.admins.user.AdminUserActions.delete_account:9
#: mipac.actions.admins.user.AdminUserActions.suspend:10
#: mipac.actions.admins.user.AdminUserActions.unsuspend:10 of
msgid "bool"
msgstr ""
#: mipac.actions.admins.user.AdminUserActions.delete_account:10
#: mipac.actions.admins.user.AdminUserActions.suspend:11
#: mipac.actions.admins.user.AdminUserActions.unsuspend:11 of
msgid "Success or failure"
msgstr ""
#: mipac.actions.admins.user.AdminUserActions.show_user:1 of
msgid "Shows the user with the specified user ID."
msgstr ""
#: mipac.actions.admins.user.AdminUserActions.show_user:6 of
msgid "ID of the user to be shown"
msgstr ""
#: mipac.actions.admins.user.AdminUserActions.show_user:10 of
msgid "UserDetailed"
msgstr ""
#: mipac.actions.admins.user.AdminUserActions.suspend:1 of
msgid "Suspends the user with the specified user ID."
msgstr ""
#: mipac.actions.admins.user.AdminUserActions.suspend:6 of
msgid "ID of the user to be suspended"
msgstr ""
#: mipac.actions.admins.user.AdminUserActions.unsuspend:1 of
msgid "Unsuspends the user with the specified user ID."
msgstr ""
#: mipac.actions.admins.user.AdminUserActions.unsuspend:6 of
msgid "ID of the user to be unsuspended"
msgstr ""

@ -0,0 +1,260 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.actions.antenna.rst:2
msgid "mipac.actions.antenna module"
msgstr ""
#: mipac.actions.antenna.AntennaActions:1 of
msgid "Bases: :py:class:`~mipac.actions.antenna.ClientAntennaActions`"
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:1 of
msgid "Create an antenna."
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:4
#: mipac.actions.antenna.ClientAntennaActions.delete:4
#: mipac.actions.antenna.ClientAntennaActions.show:4
#: mipac.actions.antenna.ClientAntennaActions.update:4 of
msgid "Parameters"
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:5
#: mipac.actions.antenna.ClientAntennaActions.update:5 of
msgid "name"
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:-1
#: mipac.actions.antenna.ClientAntennaActions.update:-1 of
msgid "str"
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:6
#: mipac.actions.antenna.ClientAntennaActions.update:6 of
msgid "Name of the antenna."
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:7
#: mipac.actions.antenna.ClientAntennaActions.update:7 of
msgid "src"
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:-1
#: mipac.actions.antenna.ClientAntennaActions.update:-1 of
msgid "IAntennaReceiveSource"
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:8
#: mipac.actions.antenna.ClientAntennaActions.update:8 of
msgid "Receive source of the antenna."
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:9
#: mipac.actions.antenna.ClientAntennaActions.update:9 of
msgid "keywords"
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:-1
#: mipac.actions.antenna.ClientAntennaActions.update:-1 of
msgid "list[list[str]]"
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:10
#: mipac.actions.antenna.ClientAntennaActions.update:10 of
msgid "Receive keywords."
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:11
#: mipac.actions.antenna.ClientAntennaActions.update:11 of
msgid "exclude_keywords"
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:-1 of
msgid "list[list[str]] | None, default None"
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:12
#: mipac.actions.antenna.ClientAntennaActions.update:12 of
msgid "Excluded keywords."
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:13
#: mipac.actions.antenna.ClientAntennaActions.update:13 of
msgid "users"
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:-1 of
msgid "list[str] | None, default None"
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:14
#: mipac.actions.antenna.ClientAntennaActions.update:14 of
msgid ""
"List of target user ID. Required when selecting 'users' as the receive "
"source."
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:15
#: mipac.actions.antenna.ClientAntennaActions.update:15 of
msgid "case_sensitive"
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:-1 of
msgid "bool, default False"
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:16
#: mipac.actions.antenna.ClientAntennaActions.update:16 of
msgid "Whether to differentiate between uppercase and lowercase letters."
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:17
#: mipac.actions.antenna.ClientAntennaActions.update:17 of
msgid "with_replies"
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:18
#: mipac.actions.antenna.ClientAntennaActions.update:18 of
msgid "Whether to include replies."
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:19
#: mipac.actions.antenna.ClientAntennaActions.update:19 of
msgid "with_file"
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:20
#: mipac.actions.antenna.ClientAntennaActions.update:20 of
msgid "Whether to limit to notes with attached files."
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:21
#: mipac.actions.antenna.ClientAntennaActions.update:21 of
msgid "notify"
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:22
#: mipac.actions.antenna.ClientAntennaActions.update:22 of
msgid "Whether to notify for new notes."
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:24
#: mipac.actions.antenna.ClientAntennaActions.update:24 of
msgid "user_list_id"
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:-1
#: mipac.actions.antenna.ClientAntennaActions.update:-1 of
msgid "str | None, default None"
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:24
#: mipac.actions.antenna.ClientAntennaActions.update:24 of
msgid ""
"List of user IDs when selecting 'users' as the receive source for the "
"antenna."
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:27
#: mipac.actions.antenna.ClientAntennaActions.delete:13
#: mipac.actions.antenna.ClientAntennaActions.show:9
#: mipac.actions.antenna.ClientAntennaActions.update:27 of
msgid "Returns"
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:28
#: mipac.actions.antenna.ClientAntennaActions.show:11
#: mipac.actions.antenna.ClientAntennaActions.update:28 of
msgid "Antenna"
msgstr ""
#: mipac.actions.antenna.AntennaActions.create:29
#: mipac.actions.antenna.ClientAntennaActions.update:29 of
msgid "The created antenna."
msgstr ""
#: mipac.actions.antenna.ClientAntennaActions:1 of
msgid "Bases: :py:class:`~mipac.abstract.action.AbstractAction`"
msgstr ""
#: mipac.actions.antenna.ClientAntennaActions.delete:1 of
msgid "Delete antenna from identifier"
msgstr ""
#: mipac.actions.antenna.ClientAntennaActions.delete:6
#: mipac.actions.antenna.ClientAntennaActions.show:6 of
msgid "antenna_id"
msgstr ""
#: mipac.actions.antenna.ClientAntennaActions.delete:-1
#: mipac.actions.antenna.ClientAntennaActions.show:-1 of
msgid "str | None, optional"
msgstr ""
#: mipac.actions.antenna.ClientAntennaActions.delete:6 of
msgid "target identifier"
msgstr ""
#: mipac.actions.antenna.ClientAntennaActions.delete:9
#: mipac.actions.antenna.ClientAntennaActions.show:14 of
msgid "Raises"
msgstr ""
#: mipac.actions.antenna.ClientAntennaActions.delete:10
#: mipac.actions.antenna.ClientAntennaActions.show:15 of
msgid "ParameterError"
msgstr ""
#: mipac.actions.antenna.ClientAntennaActions.delete:11
#: mipac.actions.antenna.ClientAntennaActions.show:16 of
msgid "antenna id is required"
msgstr ""
#: mipac.actions.antenna.ClientAntennaActions.delete:14
#: mipac.actions.antenna.ClientAntennaActions.update:-1 of
msgid "bool"
msgstr ""
#: mipac.actions.antenna.ClientAntennaActions.delete:15 of
msgid "success or failure"
msgstr ""
#: mipac.actions.antenna.ClientAntennaActions.show:1 of
msgid "Show antenna from identifier"
msgstr ""
#: mipac.actions.antenna.ClientAntennaActions.show:6 of
msgid "target identifier, by default None"
msgstr ""
#: mipac.actions.antenna.ClientAntennaActions.show:11 of
msgid "antenna object"
msgstr ""
#: mipac.actions.antenna.ClientAntennaActions.update:1 of
msgid "Update an antenna."
msgstr ""
#: mipac.actions.antenna.ClientAntennaActions.update:-1 of
msgid "list[str]"
msgstr ""

@ -0,0 +1,29 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.actions.blocking.rst:2
msgid "mipac.actions.blocking module"
msgstr ""
#: mipac.actions.blocking.BlockingActions:1 of
msgid "Bases: :py:class:`~mipac.abstract.action.AbstractAction`"
msgstr ""

@ -0,0 +1,365 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.actions.channel.rst:2
msgid "mipac.actions.channel module"
msgstr ""
#: mipac.actions.channel.ChannelActions:1 of
msgid "Bases: :py:class:`~mipac.actions.channel.ClientChannelActions`"
msgstr ""
#: mipac.actions.channel.ChannelActions.create:1 of
msgid "Create a channel."
msgstr ""
#: mipac.actions.channel.ChannelActions.create:4
#: mipac.actions.channel.ChannelActions.get:4
#: mipac.actions.channel.ChannelActions.get_followed:4
#: mipac.actions.channel.ChannelActions.get_owned:4
#: mipac.actions.channel.ChannelActions.search:4
#: mipac.actions.channel.ClientChannelActions.archive:4
#: mipac.actions.channel.ClientChannelActions.favorite:4
#: mipac.actions.channel.ClientChannelActions.follow:4
#: mipac.actions.channel.ClientChannelActions.unarchive:4
#: mipac.actions.channel.ClientChannelActions.unfavorite:4
#: mipac.actions.channel.ClientChannelActions.unfollow:4
#: mipac.actions.channel.ClientChannelActions.update:4 of
msgid "Parameters"
msgstr ""
#: mipac.actions.channel.ChannelActions.create:5
#: mipac.actions.channel.ClientChannelActions.update:5 of
msgid "name"
msgstr ""
#: mipac.actions.channel.ChannelActions.create:-1
#: mipac.actions.channel.ChannelActions.get:-1
#: mipac.actions.channel.ChannelActions.search:-1 of
msgid "str"
msgstr ""
#: mipac.actions.channel.ChannelActions.create:6 of
msgid "Channel name."
msgstr ""
#: mipac.actions.channel.ChannelActions.create:7
#: mipac.actions.channel.ClientChannelActions.update:7 of
msgid "description"
msgstr ""
#: mipac.actions.channel.ChannelActions.create:-1
#: mipac.actions.channel.ChannelActions.get_followed:-1
#: mipac.actions.channel.ChannelActions.get_owned:-1
#: mipac.actions.channel.ChannelActions.search:-1
#: mipac.actions.channel.ClientChannelActions.archive:-1
#: mipac.actions.channel.ClientChannelActions.favorite:-1
#: mipac.actions.channel.ClientChannelActions.follow:-1
#: mipac.actions.channel.ClientChannelActions.unarchive:-1
#: mipac.actions.channel.ClientChannelActions.unfavorite:-1
#: mipac.actions.channel.ClientChannelActions.unfollow:-1
#: mipac.actions.channel.ClientChannelActions.update:-1 of
msgid "str, optional, by default None"
msgstr ""
#: mipac.actions.channel.ChannelActions.create:8
#: mipac.actions.channel.ClientChannelActions.update:8 of
msgid "Channel description"
msgstr ""
#: mipac.actions.channel.ChannelActions.create:9
#: mipac.actions.channel.ClientChannelActions.update:9 of
msgid "banner_id"
msgstr ""
#: mipac.actions.channel.ChannelActions.create:10
#: mipac.actions.channel.ClientChannelActions.update:10 of
msgid "Channel banner id"
msgstr ""
#: mipac.actions.channel.ChannelActions.create:12
#: mipac.actions.channel.ClientChannelActions.update:15 of
msgid "color"
msgstr ""
#: mipac.actions.channel.ChannelActions.create:-1 of
msgid "str, optional, by default '#000'"
msgstr ""
#: mipac.actions.channel.ChannelActions.create:12
#: mipac.actions.channel.ClientChannelActions.update:16 of
msgid "Channel color"
msgstr ""
#: mipac.actions.channel.ChannelActions.create:15
#: mipac.actions.channel.ChannelActions.get:9
#: mipac.actions.channel.ChannelActions.get_featured:4
#: mipac.actions.channel.ChannelActions.get_my_favorite:4
#: mipac.actions.channel.ClientChannelActions.archive:9
#: mipac.actions.channel.ClientChannelActions.favorite:9
#: mipac.actions.channel.ClientChannelActions.follow:9
#: mipac.actions.channel.ClientChannelActions.unarchive:9
#: mipac.actions.channel.ClientChannelActions.unfavorite:9
#: mipac.actions.channel.ClientChannelActions.unfollow:9
#: mipac.actions.channel.ClientChannelActions.update:21 of
msgid "Returns"
msgstr ""
#: mipac.actions.channel.ChannelActions.create:16
#: mipac.actions.channel.ChannelActions.get:10
#: mipac.actions.channel.ChannelActions.get:11
#: mipac.actions.channel.ChannelActions.get_featured:6
#: mipac.actions.channel.ChannelActions.get_followed:17
#: mipac.actions.channel.ChannelActions.get_my_favorite:6
#: mipac.actions.channel.ChannelActions.get_owned:15
#: mipac.actions.channel.ChannelActions.search:21
#: mipac.actions.channel.ClientChannelActions.archive:10
#: mipac.actions.channel.ClientChannelActions.archive:11
#: mipac.actions.channel.ClientChannelActions.unarchive:10
#: mipac.actions.channel.ClientChannelActions.unarchive:11
#: mipac.actions.channel.ClientChannelActions.update:22
#: mipac.actions.channel.ClientChannelActions.update:23 of
msgid "Channel"
msgstr ""
#: mipac.actions.channel.ChannelActions.create:17 of
msgid "ChannelLite"
msgstr ""
#: mipac.actions.channel.ChannelActions.get:1 of
msgid "Get a channel."
msgstr ""
#: mipac.actions.channel.ChannelActions.get:6
#: mipac.actions.channel.ClientChannelActions.archive:6
#: mipac.actions.channel.ClientChannelActions.favorite:6
#: mipac.actions.channel.ClientChannelActions.follow:6
#: mipac.actions.channel.ClientChannelActions.unarchive:6
#: mipac.actions.channel.ClientChannelActions.unfavorite:6
#: mipac.actions.channel.ClientChannelActions.unfollow:6
#: mipac.actions.channel.ClientChannelActions.update:18 of
msgid "channel_id"
msgstr ""
#: mipac.actions.channel.ChannelActions.get:6
#: mipac.actions.channel.ClientChannelActions.archive:6
#: mipac.actions.channel.ClientChannelActions.favorite:6
#: mipac.actions.channel.ClientChannelActions.follow:6
#: mipac.actions.channel.ClientChannelActions.unarchive:6
#: mipac.actions.channel.ClientChannelActions.unfavorite:6
#: mipac.actions.channel.ClientChannelActions.unfollow:6
#: mipac.actions.channel.ClientChannelActions.update:18 of
msgid "Channel id"
msgstr ""
#: mipac.actions.channel.ChannelActions.get_featured:1 of
msgid "Get featured channels."
msgstr ""
#: mipac.actions.channel.ChannelActions.get_featured:5
#: mipac.actions.channel.ChannelActions.get_my_favorite:5 of
msgid "list[Channel]"
msgstr ""
#: mipac.actions.channel.ChannelActions.get_followed:1 of
msgid "Get followed channels."
msgstr ""
#: mipac.actions.channel.ChannelActions.get_followed:5
#: mipac.actions.channel.ChannelActions.get_owned:5
#: mipac.actions.channel.ChannelActions.search:9 of
msgid "since_id"
msgstr ""
#: mipac.actions.channel.ChannelActions.get_followed:6
#: mipac.actions.channel.ChannelActions.get_owned:6
#: mipac.actions.channel.ChannelActions.search:10 of
msgid "Since id"
msgstr ""
#: mipac.actions.channel.ChannelActions.get_followed:7
#: mipac.actions.channel.ChannelActions.get_owned:7
#: mipac.actions.channel.ChannelActions.search:11 of
msgid "until_id"
msgstr ""
#: mipac.actions.channel.ChannelActions.get_followed:8
#: mipac.actions.channel.ChannelActions.get_owned:8
#: mipac.actions.channel.ChannelActions.search:12 of
msgid "Until id"
msgstr ""
#: mipac.actions.channel.ChannelActions.get_followed:9
#: mipac.actions.channel.ChannelActions.search:13 of
msgid "limit"
msgstr ""
#: mipac.actions.channel.ChannelActions.get_followed:-1 of
msgid "int, optional, by default 10"
msgstr ""
#: mipac.actions.channel.ChannelActions.get_followed:10
#: mipac.actions.channel.ChannelActions.search:14 of
msgid "Limit"
msgstr ""
#: mipac.actions.channel.ChannelActions.get_followed:12
#: mipac.actions.channel.ChannelActions.get_owned:10
#: mipac.actions.channel.ChannelActions.search:16 of
msgid "get_all"
msgstr ""
#: mipac.actions.channel.ChannelActions.get_followed:-1
#: mipac.actions.channel.ChannelActions.get_owned:-1
#: mipac.actions.channel.ChannelActions.search:-1 of
msgid "bool, optional, by default False"
msgstr ""
#: mipac.actions.channel.ChannelActions.get_followed:12
#: mipac.actions.channel.ChannelActions.get_owned:10
#: mipac.actions.channel.ChannelActions.search:16 of
msgid "Get all channels flag"
msgstr ""
#: mipac.actions.channel.ChannelActions.get_followed:15
#: mipac.actions.channel.ChannelActions.get_owned:13
#: mipac.actions.channel.ChannelActions.search:19 of
msgid "Yields"
msgstr ""
#: mipac.actions.channel.ChannelActions.get_followed:16
#: mipac.actions.channel.ChannelActions.get_owned:14
#: mipac.actions.channel.ChannelActions.search:20 of
msgid "AsyncGenerator[Channel, None]"
msgstr ""
#: mipac.actions.channel.ChannelActions.get_my_favorite:1 of
msgid "Get my favorite channels."
msgstr ""
#: mipac.actions.channel.ChannelActions.get_owned:1 of
msgid "Get owned channels."
msgstr ""
#: mipac.actions.channel.ChannelActions.search:1 of
msgid "Search channels."
msgstr ""
#: mipac.actions.channel.ChannelActions.search:5 of
msgid "query"
msgstr ""
#: mipac.actions.channel.ChannelActions.search:6 of
msgid "Search query"
msgstr ""
#: mipac.actions.channel.ChannelActions.search:7 of
msgid "type"
msgstr ""
#: mipac.actions.channel.ChannelActions.search:-1 of
msgid ""
"Literal['nameAndDescription', 'nameOnly'], optional, by default "
"'nameAndDescription'"
msgstr ""
#: mipac.actions.channel.ChannelActions.search:8 of
msgid "Search type"
msgstr ""
#: mipac.actions.channel.ChannelActions.search:-1 of
msgid "int, optional, by default 5"
msgstr ""
#: mipac.actions.channel.ClientChannelActions:1 of
msgid "Bases: :py:class:`~mipac.abstract.action.AbstractAction`"
msgstr ""
#: mipac.actions.channel.ClientChannelActions.archive:1 of
msgid "Archive a channel."
msgstr ""
#: mipac.actions.channel.ClientChannelActions.favorite:1 of
msgid "Favorite a channel."
msgstr ""
#: mipac.actions.channel.ClientChannelActions.favorite:10
#: mipac.actions.channel.ClientChannelActions.follow:10
#: mipac.actions.channel.ClientChannelActions.unfavorite:10
#: mipac.actions.channel.ClientChannelActions.unfollow:10 of
msgid "bool"
msgstr ""
#: mipac.actions.channel.ClientChannelActions.favorite:11
#: mipac.actions.channel.ClientChannelActions.follow:11
#: mipac.actions.channel.ClientChannelActions.unfavorite:11
#: mipac.actions.channel.ClientChannelActions.unfollow:11 of
msgid "True if success else False"
msgstr ""
#: mipac.actions.channel.ClientChannelActions.follow:1 of
msgid "Follow a channel."
msgstr ""
#: mipac.actions.channel.ClientChannelActions.unarchive:1 of
msgid "Unarchive a channel."
msgstr ""
#: mipac.actions.channel.ClientChannelActions.unfavorite:1 of
msgid "Unfavorite a channel."
msgstr ""
#: mipac.actions.channel.ClientChannelActions.unfollow:1 of
msgid "Unfollow a channel."
msgstr ""
#: mipac.actions.channel.ClientChannelActions.update:1 of
msgid "Update a channel."
msgstr ""
#: mipac.actions.channel.ClientChannelActions.update:6 of
msgid "Channel name"
msgstr ""
#: mipac.actions.channel.ClientChannelActions.update:11 of
msgid "is_archived"
msgstr ""
#: mipac.actions.channel.ClientChannelActions.update:-1 of
msgid "bool, optional, by default None"
msgstr ""
#: mipac.actions.channel.ClientChannelActions.update:12 of
msgid "Channel is archived"
msgstr ""
#: mipac.actions.channel.ClientChannelActions.update:13 of
msgid "pinned_note_ids"
msgstr ""
#: mipac.actions.channel.ClientChannelActions.update:-1 of
msgid "list[str], optional, by default None"
msgstr ""
#: mipac.actions.channel.ClientChannelActions.update:14 of
msgid "Channel pinned note ids"
msgstr ""

@ -0,0 +1,29 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.actions.chart.rst:2
msgid "mipac.actions.chart module"
msgstr ""
#: mipac.actions.chart.ChartActions:1 of
msgid "Bases: :py:class:`~mipac.abstract.action.AbstractAction`"
msgstr ""

@ -0,0 +1,155 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.actions.chat.rst:2
msgid "mipac.actions.chat module"
msgstr ""
#: mipac.actions.chat.BaseChatAction:1 of
msgid "Bases: :py:class:`~mipac.abstract.action.AbstractAction`"
msgstr ""
#: mipac.actions.chat.BaseChatAction.delete:1 of
msgid "指定したidのメッセージを削除します。"
msgstr ""
#: mipac.actions.chat.BaseChatAction.delete:4
#: mipac.actions.chat.BaseChatAction.read:4
#: mipac.actions.chat.ChatAction.get_history:4
#: mipac.actions.chat.ChatAction.send:4 of
msgid "Parameters"
msgstr ""
#: mipac.actions.chat.BaseChatAction.delete:6
#: mipac.actions.chat.BaseChatAction.read:6 of
msgid "message_id"
msgstr ""
#: mipac.actions.chat.BaseChatAction.delete:-1
#: mipac.actions.chat.BaseChatAction.read:-1 of
msgid "str"
msgstr ""
#: mipac.actions.chat.BaseChatAction.delete:6
#: mipac.actions.chat.BaseChatAction.read:6 of
msgid "Message id"
msgstr ""
#: mipac.actions.chat.BaseChatAction.delete:9
#: mipac.actions.chat.BaseChatAction.read:9
#: mipac.actions.chat.ChatAction.get_history:11 of
msgid "Returns"
msgstr ""
#: mipac.actions.chat.BaseChatAction.delete:10
#: mipac.actions.chat.BaseChatAction.read:10 of
msgid "bool"
msgstr ""
#: mipac.actions.chat.BaseChatAction.delete:11
#: mipac.actions.chat.BaseChatAction.read:11 of
msgid "Success or Failure."
msgstr ""
#: mipac.actions.chat.BaseChatAction.read:1 of
msgid "指定したIdのメッセージを既読にします"
msgstr ""
#: mipac.actions.chat.ChatAction:1 of
msgid "Bases: :py:class:`~mipac.actions.chat.BaseChatAction`"
msgstr ""
#: mipac.actions.chat.ChatAction.get_history:1 of
msgid "Get the chat history."
msgstr ""
#: mipac.actions.chat.ChatAction.get_history:5 of
msgid "limit"
msgstr ""
#: mipac.actions.chat.ChatAction.get_history:-1 of
msgid "int, default=100, max=100"
msgstr ""
#: mipac.actions.chat.ChatAction.get_history:6 of
msgid "Number of items to retrieve, up to 100"
msgstr ""
#: mipac.actions.chat.ChatAction.get_history:8 of
msgid "group"
msgstr ""
#: mipac.actions.chat.ChatAction.get_history:-1 of
msgid "bool, default=True"
msgstr ""
#: mipac.actions.chat.ChatAction.get_history:8 of
msgid "Whether to include group chat or not"
msgstr ""
#: mipac.actions.chat.ChatAction.get_history:12 of
msgid "list[ChatMessage]"
msgstr ""
#: mipac.actions.chat.ChatAction.get_history:13 of
msgid "List of chat history"
msgstr ""
#: mipac.actions.chat.ChatAction.send:1 of
msgid "Send chat."
msgstr ""
#: mipac.actions.chat.ChatAction.send:5 of
msgid "text"
msgstr ""
#: mipac.actions.chat.ChatAction.send:-1 of
msgid "str | None, default=None"
msgstr ""
#: mipac.actions.chat.ChatAction.send:6 of
msgid "Chat content"
msgstr ""
#: mipac.actions.chat.ChatAction.send:7 of
msgid "file_id"
msgstr ""
#: mipac.actions.chat.ChatAction.send:8 of
msgid "添付するファイルのID"
msgstr ""
#: mipac.actions.chat.ChatAction.send:9 of
msgid "user_id"
msgstr ""
#: mipac.actions.chat.ChatAction.send:10 of
msgid "送信するユーザーのID"
msgstr ""
#: mipac.actions.chat.ChatAction.send:11 of
msgid "group_id"
msgstr ""
#: mipac.actions.chat.ChatAction.send:12 of
msgid "Destination group id"
msgstr ""

@ -0,0 +1,29 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.actions.client.rst:2
msgid "mipac.actions.client module"
msgstr ""
#: mipac.actions.client.ClientActions:1 of
msgid "Bases: :py:class:`~mipac.abstract.action.AbstractAction`"
msgstr ""

@ -0,0 +1,278 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.actions.clip.rst:2
msgid "mipac.actions.clip module"
msgstr ""
#: mipac.actions.clip.ClientClipActions:1 of
msgid "Bases: :py:class:`~mipac.abstract.action.AbstractAction`"
msgstr ""
#: mipac.actions.clip.ClientClipActions.add_note:1 of
msgid "Add a note to a clip"
msgstr ""
#: mipac.actions.clip.ClientClipActions.add_note:4
#: mipac.actions.clip.ClientClipActions.delete:4
#: mipac.actions.clip.ClientClipActions.remove_note:4
#: mipac.actions.clip.ClientClipActions.update:4
#: mipac.actions.clip.ClipActions.create:4 mipac.actions.clip.ClipActions.get:4
#: of
msgid "Parameters"
msgstr ""
#: mipac.actions.clip.ClientClipActions.add_note:5
#: mipac.actions.clip.ClientClipActions.delete:6
#: mipac.actions.clip.ClientClipActions.remove_note:5
#: mipac.actions.clip.ClientClipActions.update:5
#: mipac.actions.clip.ClipActions.get:6 of
msgid "clip_id"
msgstr ""
#: mipac.actions.clip.ClientClipActions.add_note:-1
#: mipac.actions.clip.ClientClipActions.delete:-1
#: mipac.actions.clip.ClientClipActions.get_notes:-1
#: mipac.actions.clip.ClientClipActions.remove_note:-1
#: mipac.actions.clip.ClientClipActions.update:-1 of
msgid "str | None, optional, by default None"
msgstr ""
#: mipac.actions.clip.ClientClipActions.add_note:6
#: mipac.actions.clip.ClientClipActions.delete:6
#: mipac.actions.clip.ClientClipActions.get_notes:5
#: mipac.actions.clip.ClientClipActions.remove_note:6
#: mipac.actions.clip.ClientClipActions.update:6
#: mipac.actions.clip.ClipActions.get:6 of
msgid "The clip id"
msgstr ""
#: mipac.actions.clip.ClientClipActions.add_note:8
#: mipac.actions.clip.ClientClipActions.remove_note:8 of
msgid "note_id"
msgstr ""
#: mipac.actions.clip.ClientClipActions.add_note:-1
#: mipac.actions.clip.ClientClipActions.remove_note:-1
#: mipac.actions.clip.ClientClipActions.update:-1
#: mipac.actions.clip.ClipActions.create:-1
#: mipac.actions.clip.ClipActions.get:-1 of
msgid "str"
msgstr ""
#: mipac.actions.clip.ClientClipActions.add_note:8
#: mipac.actions.clip.ClientClipActions.remove_note:8 of
msgid "The note id"
msgstr ""
#: mipac.actions.clip.ClientClipActions.add_note:11
#: mipac.actions.clip.ClientClipActions.delete:9
#: mipac.actions.clip.ClientClipActions.remove_note:11
#: mipac.actions.clip.ClientClipActions.update:15
#: mipac.actions.clip.ClipActions.create:13
#: mipac.actions.clip.ClipActions.get:9
#: mipac.actions.clip.ClipActions.get_list:4
#: mipac.actions.clip.ClipActions.get_my_favorites:4 of
msgid "Returns"
msgstr ""
#: mipac.actions.clip.ClientClipActions.add_note:12
#: mipac.actions.clip.ClientClipActions.delete:10
#: mipac.actions.clip.ClientClipActions.remove_note:12
#: mipac.actions.clip.ClientClipActions.update:16 of
msgid "bool"
msgstr ""
#: mipac.actions.clip.ClientClipActions.add_note:13 of
msgid "True if the note was added to the clip, False otherwise"
msgstr ""
#: mipac.actions.clip.ClientClipActions.delete:1 of
msgid "Delete a clip"
msgstr ""
#: mipac.actions.clip.ClientClipActions.delete:11 of
msgid "True if the clip was deleted, False otherwise"
msgstr ""
#: mipac.actions.clip.ClientClipActions.get_notes:1 of
msgid ""
"Get notes from a clip Parameters ---------- clip_id : str | None, "
"optional, by default None"
msgstr ""
#: mipac.actions.clip.ClientClipActions.get_notes:6 of
msgid "limit"
msgstr ""
#: mipac.actions.clip.ClientClipActions.get_notes:-1 of
msgid "int, optional, by default 10"
msgstr ""
#: mipac.actions.clip.ClientClipActions.get_notes:7 of
msgid "The number of notes to get"
msgstr ""
#: mipac.actions.clip.ClientClipActions.get_notes:8 of
msgid "since_id"
msgstr ""
#: mipac.actions.clip.ClientClipActions.get_notes:9 of
msgid "The note id to get notes after"
msgstr ""
#: mipac.actions.clip.ClientClipActions.get_notes:10 of
msgid "until_id"
msgstr ""
#: mipac.actions.clip.ClientClipActions.get_notes:11 of
msgid "The note id to get notes before"
msgstr ""
#: mipac.actions.clip.ClientClipActions.get_notes:13 of
msgid "get_all"
msgstr ""
#: mipac.actions.clip.ClientClipActions.get_notes:-1 of
msgid "bool, optional, by default False"
msgstr ""
#: mipac.actions.clip.ClientClipActions.get_notes:13 of
msgid "Whether to get all notes"
msgstr ""
#: mipac.actions.clip.ClientClipActions.get_notes:16 of
msgid "Yields"
msgstr ""
#: mipac.actions.clip.ClientClipActions.get_notes:17 of
msgid "AsyncGenerator[Note, None]"
msgstr ""
#: mipac.actions.clip.ClientClipActions.get_notes:18 of
msgid "The notes"
msgstr ""
#: mipac.actions.clip.ClientClipActions.remove_note:1 of
msgid "Remove a note from a clip"
msgstr ""
#: mipac.actions.clip.ClientClipActions.remove_note:13 of
msgid "True if the note was removed from the clip, False otherwise"
msgstr ""
#: mipac.actions.clip.ClientClipActions.update:1 of
msgid "Update a clip"
msgstr ""
#: mipac.actions.clip.ClientClipActions.update:7
#: mipac.actions.clip.ClipActions.create:5 of
msgid "name"
msgstr ""
#: mipac.actions.clip.ClientClipActions.update:8
#: mipac.actions.clip.ClipActions.create:6 of
msgid "The clip name"
msgstr ""
#: mipac.actions.clip.ClientClipActions.update:9
#: mipac.actions.clip.ClipActions.create:7 of
msgid "is_public"
msgstr ""
#: mipac.actions.clip.ClientClipActions.update:-1
#: mipac.actions.clip.ClipActions.create:-1 of
msgid "bool, optional"
msgstr ""
#: mipac.actions.clip.ClientClipActions.update:10 of
msgid "Whether the clip is public, by default None"
msgstr ""
#: mipac.actions.clip.ClientClipActions.update:12
#: mipac.actions.clip.ClipActions.create:10 of
msgid "description"
msgstr ""
#: mipac.actions.clip.ClientClipActions.update:-1
#: mipac.actions.clip.ClipActions.create:-1 of
msgid "str, optional"
msgstr ""
#: mipac.actions.clip.ClientClipActions.update:12
#: mipac.actions.clip.ClipActions.create:10 of
msgid "The clip description, by default None"
msgstr ""
#: mipac.actions.clip.ClientClipActions.update:17 of
msgid "True if the clip was updated, False otherwise"
msgstr ""
#: mipac.actions.clip.ClipActions:1 of
msgid "Bases: :py:class:`~mipac.actions.clip.ClientClipActions`"
msgstr ""
#: mipac.actions.clip.ClipActions.create:1 of
msgid "Create a clip"
msgstr ""
#: mipac.actions.clip.ClipActions.create:8 of
msgid "Whether the clip is public, by default False"
msgstr ""
#: mipac.actions.clip.ClipActions.create:14
#: mipac.actions.clip.ClipActions.get:10 of
msgid "Clip"
msgstr ""
#: mipac.actions.clip.ClipActions.create:15 of
msgid "The created clip"
msgstr ""
#: mipac.actions.clip.ClipActions.get:1 of
msgid "Get a clip"
msgstr ""
#: mipac.actions.clip.ClipActions.get:11 of
msgid "The clip"
msgstr ""
#: mipac.actions.clip.ClipActions.get_list:1 of
msgid "Get my clips"
msgstr ""
#: mipac.actions.clip.ClipActions.get_list:5
#: mipac.actions.clip.ClipActions.get_my_favorites:5 of
msgid "list[Clip]"
msgstr ""
#: mipac.actions.clip.ClipActions.get_list:6 of
msgid "The clips"
msgstr ""
#: mipac.actions.clip.ClipActions.get_my_favorites:1 of
msgid "Get my favorite clips"
msgstr ""
#: mipac.actions.clip.ClipActions.get_my_favorites:6 of
msgid "The favorite clips"
msgstr ""

@ -0,0 +1,225 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.actions.drive.rst:2
msgid "mipac.actions.drive module"
msgstr ""
#: mipac.actions.drive.DriveActions:1 of
msgid "Bases: :py:class:`~mipac.abstract.action.AbstractAction`"
msgstr ""
#: mipac.actions.drive.DriveActions.get_folders:1 of
msgid "フォルダーの一覧を取得します"
msgstr ""
#: mipac.actions.drive.DriveActions.get_folders:4
#: mipac.actions.drive.FileActions.get_files:4
#: mipac.actions.drive.FileActions.show_file:4
#: mipac.actions.drive.FileActions.upload_file:4 of
msgid "Parameters"
msgstr ""
#: mipac.actions.drive.DriveActions.get_folders:5
#: mipac.actions.drive.FileActions.get_files:5 of
msgid "limit"
msgstr ""
#: mipac.actions.drive.DriveActions.get_folders:-1
#: mipac.actions.drive.FileActions.get_files:-1 of
msgid "int, default=10"
msgstr ""
#: mipac.actions.drive.DriveActions.get_folders:6
#: mipac.actions.drive.FileActions.get_files:6 of
msgid "取得する上限"
msgstr ""
#: mipac.actions.drive.DriveActions.get_folders:7
#: mipac.actions.drive.FileActions.get_files:7 of
msgid "since_id"
msgstr ""
#: mipac.actions.drive.DriveActions.get_folders:-1
#: mipac.actions.drive.FileActions.get_files:-1
#: mipac.actions.drive.FileActions.show_file:-1
#: mipac.actions.drive.FileActions.upload_file:-1 of
msgid "str | None, default=None"
msgstr ""
#: mipac.actions.drive.DriveActions.get_folders:8 of
msgid "指定すると、その投稿を投稿を起点としてより新しい投稿を取得します"
msgstr ""
#: mipac.actions.drive.DriveActions.get_folders:9
#: mipac.actions.drive.FileActions.get_files:9 of
msgid "until_id"
msgstr ""
#: mipac.actions.drive.DriveActions.get_folders:10 of
msgid "指定すると、その投稿を投稿を起点としてより古い投稿を取得します"
msgstr ""
#: mipac.actions.drive.DriveActions.get_folders:11
#: mipac.actions.drive.FileActions.get_files:11
#: mipac.actions.drive.FileActions.upload_file:9 of
msgid "folder_id"
msgstr ""
#: mipac.actions.drive.DriveActions.get_folders:12 of
msgid "指定すると、そのフォルダーを起点としてフォルダーを取得します"
msgstr ""
#: mipac.actions.drive.DriveActions.get_folders:13 of
msgid "get_all"
msgstr ""
#: mipac.actions.drive.DriveActions.get_folders:-1
#: mipac.actions.drive.FileActions.upload_file:-1 of
msgid "bool, default=False"
msgstr ""
#: mipac.actions.drive.DriveActions.get_folders:14 of
msgid "Whether to retrieve all folders or not"
msgstr ""
#: mipac.actions.drive.FileActions:1 of
msgid "Bases: :py:class:`~mipac.actions.drive.ClientFileActions`"
msgstr ""
#: mipac.actions.drive.FileActions.get_files:1 of
msgid "ファイルを取得します"
msgstr ""
#: mipac.actions.drive.FileActions.get_files:8 of
msgid "指定すると、そのIDを起点としてより新しいファイルを取得します"
msgstr ""
#: mipac.actions.drive.FileActions.get_files:10 of
msgid "指定すると、そのIDを起点としてより古いファイルを取得します"
msgstr ""
#: mipac.actions.drive.FileActions.get_files:12 of
msgid "指定すると、そのフォルダーを起点としてファイルを取得します"
msgstr ""
#: mipac.actions.drive.FileActions.get_files:13 of
msgid "file_type"
msgstr ""
#: mipac.actions.drive.FileActions.get_files:14 of
msgid "取得したいファイルの拡張子"
msgstr ""
#: mipac.actions.drive.FileActions.show_file:1 of
msgid "ファイルの情報を取得します。"
msgstr ""
#: mipac.actions.drive.FileActions.show_file:5 of
msgid "file_id"
msgstr ""
#: mipac.actions.drive.FileActions.show_file:6 of
msgid "ファイルのID"
msgstr ""
#: mipac.actions.drive.FileActions.show_file:8 of
msgid "url"
msgstr ""
#: mipac.actions.drive.FileActions.show_file:8 of
msgid "ファイルのURL"
msgstr ""
#: mipac.actions.drive.FileActions.show_file:11
#: mipac.actions.drive.FileActions.upload_file:19 of
msgid "Returns"
msgstr ""
#: mipac.actions.drive.FileActions.show_file:12
#: mipac.actions.drive.FileActions.upload_file:20 of
msgid "File"
msgstr ""
#: mipac.actions.drive.FileActions.show_file:13 of
msgid "ファイルの情報"
msgstr ""
#: mipac.actions.drive.FileActions.upload_file:1 of
msgid "ファイルをアップロードします"
msgstr ""
#: mipac.actions.drive.FileActions.upload_file:5 of
msgid "file"
msgstr ""
#: mipac.actions.drive.FileActions.upload_file:-1 of
msgid "str"
msgstr ""
#: mipac.actions.drive.FileActions.upload_file:6 of
msgid "アップロードするファイル"
msgstr ""
#: mipac.actions.drive.FileActions.upload_file:7 of
msgid "file_name"
msgstr ""
#: mipac.actions.drive.FileActions.upload_file:8 of
msgid "アップロードするファイルの名前"
msgstr ""
#: mipac.actions.drive.FileActions.upload_file:10 of
msgid "アップロードするフォルダーのID"
msgstr ""
#: mipac.actions.drive.FileActions.upload_file:11 of
msgid "comment"
msgstr ""
#: mipac.actions.drive.FileActions.upload_file:12 of
msgid "アップロードするファイルのコメント"
msgstr ""
#: mipac.actions.drive.FileActions.upload_file:13 of
msgid "is_sensitive"
msgstr ""
#: mipac.actions.drive.FileActions.upload_file:14 of
msgid "アップロードするファイルがNSFWかどうか"
msgstr ""
#: mipac.actions.drive.FileActions.upload_file:16 of
msgid "force"
msgstr ""
#: mipac.actions.drive.FileActions.upload_file:16 of
msgid "アップロードするファイルが同名のファイルを上書きするかどうか"
msgstr ""
#: mipac.actions.drive.FileActions.upload_file:21 of
msgid "アップロードしたファイルの情報"
msgstr ""
#: mipac.actions.drive.FolderActions:1 of
msgid "Bases: :py:class:`~mipac.actions.drive.ClientFolderActions`"
msgstr ""

@ -0,0 +1,29 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.actions.emoji.rst:2
msgid "mipac.actions.emoji module"
msgstr ""
#: mipac.actions.emoji.EmojiActions:1 of
msgid "Bases: :py:class:`~mipac.abstract.action.AbstractAction`"
msgstr ""

@ -0,0 +1,29 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.actions.favorite.rst:2
msgid "mipac.actions.favorite module"
msgstr ""
#: mipac.actions.favorite.FavoriteActions:1 of
msgid "Bases: :py:class:`~mipac.abstract.action.AbstractAction`"
msgstr ""

@ -0,0 +1,29 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.actions.federation.rst:2
msgid "mipac.actions.federation module"
msgstr ""
#: mipac.actions.federation.FederationActions:1 of
msgid "Bases: :py:class:`~mipac.abstract.action.AbstractAction`"
msgstr ""

@ -0,0 +1,139 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.actions.follow.rst:2
msgid "mipac.actions.follow module"
msgstr ""
#: mipac.actions.follow.FollowActions:1
#: mipac.actions.follow.FollowRequestActions:1 of
msgid "Bases: :py:class:`~mipac.abstract.action.AbstractAction`"
msgstr ""
#: mipac.actions.follow.FollowActions.add:1 of
msgid "Follow a user"
msgstr ""
#: mipac.actions.follow.FollowActions.add:4
#: mipac.actions.follow.FollowActions.invalidate:4
#: mipac.actions.follow.FollowActions.remove:4
#: mipac.actions.follow.FollowRequestActions.accept:9
#: mipac.actions.follow.FollowRequestActions.cancel:9
#: mipac.actions.follow.FollowRequestActions.get_all:4
#: mipac.actions.follow.FollowRequestActions.reject:9 of
msgid "Returns"
msgstr ""
#: mipac.actions.follow.FollowActions.add:5 of
msgid "UserLite:"
msgstr ""
#: mipac.actions.follow.FollowActions.add:6 of
msgid "The user that you followed"
msgstr ""
#: mipac.actions.follow.FollowActions.invalidate:1 of
msgid "Make the user unfollows you"
msgstr ""
#: mipac.actions.follow.FollowActions.invalidate:5
#: mipac.actions.follow.FollowActions.remove:5
#: mipac.actions.follow.FollowRequestActions.cancel:10 of
msgid "LiteUser"
msgstr ""
#: mipac.actions.follow.FollowActions.invalidate:6 of
msgid "The user that followed you"
msgstr ""
#: mipac.actions.follow.FollowActions.remove:1 of
msgid "Unfollow a user"
msgstr ""
#: mipac.actions.follow.FollowActions.remove:6 of
msgid "The user that you unfollowed"
msgstr ""
#: mipac.actions.follow.FollowRequestActions.accept:1 of
msgid "Accept a follow request"
msgstr ""
#: mipac.actions.follow.FollowRequestActions.accept:4
#: mipac.actions.follow.FollowRequestActions.cancel:4
#: mipac.actions.follow.FollowRequestActions.reject:4 of
msgid "Parameters"
msgstr ""
#: mipac.actions.follow.FollowRequestActions.accept:6
#: mipac.actions.follow.FollowRequestActions.cancel:6
#: mipac.actions.follow.FollowRequestActions.reject:6 of
msgid "user_id: str"
msgstr ""
#: mipac.actions.follow.FollowRequestActions.accept:6 of
msgid "The user ID to accept"
msgstr ""
#: mipac.actions.follow.FollowRequestActions.accept:10
#: mipac.actions.follow.FollowRequestActions.reject:10 of
msgid "bool"
msgstr ""
#: mipac.actions.follow.FollowRequestActions.accept:11 of
msgid "Whether the request was accepted"
msgstr ""
#: mipac.actions.follow.FollowRequestActions.cancel:1 of
msgid "Cancel a follow request"
msgstr ""
#: mipac.actions.follow.FollowRequestActions.cancel:6 of
msgid "The user ID to cancel"
msgstr ""
#: mipac.actions.follow.FollowRequestActions.cancel:11 of
msgid "The user that you canceled to follow"
msgstr ""
#: mipac.actions.follow.FollowRequestActions.get_all:1 of
msgid "Get all follow requests"
msgstr ""
#: mipac.actions.follow.FollowRequestActions.get_all:5 of
msgid "list[FollowRequest]"
msgstr ""
#: mipac.actions.follow.FollowRequestActions.get_all:6 of
msgid "List of follow requests"
msgstr ""
#: mipac.actions.follow.FollowRequestActions.reject:1 of
msgid "Reject a follow request"
msgstr ""
#: mipac.actions.follow.FollowRequestActions.reject:6 of
msgid "The user ID to reject"
msgstr ""
#: mipac.actions.follow.FollowRequestActions.reject:11 of
msgid "Whether the request was rejected"
msgstr ""

@ -0,0 +1,78 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.actions.mute.rst:2
msgid "mipac.actions.mute module"
msgstr ""
#: mipac.actions.mute.MuteActions:1 of
msgid "Bases: :py:class:`~mipac.abstract.action.AbstractAction`"
msgstr ""
#: mipac.actions.mute.MuteActions.add:1 of
msgid "Adds the specified user as a mute target"
msgstr ""
#: mipac.actions.mute.MuteActions.add:4 mipac.actions.mute.MuteActions.delete:4
#: of
msgid "Parameters"
msgstr ""
#: mipac.actions.mute.MuteActions.add:6 mipac.actions.mute.MuteActions.delete:6
#: of
msgid "user_id"
msgstr ""
#: mipac.actions.mute.MuteActions.add:-1
#: mipac.actions.mute.MuteActions.delete:-1 of
msgid "str | None, optional"
msgstr ""
#: mipac.actions.mute.MuteActions.add:6 of
msgid "Mute target user Id, by default None"
msgstr ""
#: mipac.actions.mute.MuteActions.add:9 mipac.actions.mute.MuteActions.delete:9
#: of
msgid "Returns"
msgstr ""
#: mipac.actions.mute.MuteActions.add:10
#: mipac.actions.mute.MuteActions.delete:10 of
msgid "bool"
msgstr ""
#: mipac.actions.mute.MuteActions.add:11 of
msgid "Whether the mute was successful or not"
msgstr ""
#: mipac.actions.mute.MuteActions.delete:1 of
msgid "Unmute the specified user"
msgstr ""
#: mipac.actions.mute.MuteActions.delete:6 of
msgid "Unmute target user Id, by default None"
msgstr ""
#: mipac.actions.mute.MuteActions.delete:11 of
msgid "Whether the unmute was successful or not."
msgstr ""

@ -0,0 +1,73 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.actions.my.rst:2
msgid "mipac.actions.my module"
msgstr ""
#: mipac.actions.my.MyActions:1 of
msgid "Bases: :py:class:`~mipac.abstract.action.AbstractAction`"
msgstr ""
#: mipac.actions.my.MyActions.get_claim_achievement:1 of
msgid "指定した名前の実績を解除します"
msgstr ""
#: mipac.actions.my.MyActions.get_claim_achievement:4 of
msgid "Parameters"
msgstr ""
#: mipac.actions.my.MyActions.get_claim_achievement:6 of
msgid "name"
msgstr ""
#: mipac.actions.my.MyActions.get_claim_achievement:-1 of
msgid "実績名"
msgstr ""
#: mipac.actions.my.MyActions.get_claim_achievement:6 of
msgid "解除したい実績の名前"
msgstr ""
#: mipac.actions.my.MyActions.get_claim_achievement:9 of
msgid "Returns"
msgstr ""
#: mipac.actions.my.MyActions.get_claim_achievement:11 of
msgid "bool"
msgstr ""
#: mipac.actions.my.MyActions.get_claim_achievement:11 of
msgid "成功したか否か"
msgstr ""
#: mipac.actions.my.MyActions.get_claim_achievement:14 of
msgid "Raises"
msgstr ""
#: mipac.actions.my.MyActions.get_claim_achievement:15 of
msgid "NotSupportVersion"
msgstr ""
#: mipac.actions.my.MyActions.get_claim_achievement:16 of
msgid "実績機能が存在しないサーバーを使用している"
msgstr ""

@ -0,0 +1,195 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.actions.note.rst:2
msgid "mipac.actions.note module"
msgstr ""
#: mipac.actions.note.NoteActions:1 of
msgid "Bases: :py:class:`~mipac.actions.note.ClientNoteActions`"
msgstr ""
#: mipac.actions.note.NoteActions.send:1 of
msgid "ノートを投稿します。"
msgstr ""
#: mipac.actions.note.NoteActions.send:4 of
msgid "Parameters"
msgstr ""
#: mipac.actions.note.NoteActions.send:5 of
msgid "content"
msgstr ""
#: mipac.actions.note.NoteActions.send:-1 of
msgid "str | None, default=None"
msgstr ""
#: mipac.actions.note.NoteActions.send:6 of
msgid "投稿する内容"
msgstr ""
#: mipac.actions.note.NoteActions.send:8 of
msgid "visibility"
msgstr ""
#: mipac.actions.note.NoteActions.send:-1 of
msgid "INoteVisibility, optional"
msgstr ""
#: mipac.actions.note.NoteActions.send:8 of
msgid ""
"公開範囲, by default \"public\" Enum: \"public\" \"home\" \"followers\" "
"\"specified\""
msgstr ""
#: mipac.actions.note.NoteActions.send:10 of
msgid "visible_user_ids"
msgstr ""
#: mipac.actions.note.NoteActions.send:-1 of
msgid "list[str] | None, optional"
msgstr ""
#: mipac.actions.note.NoteActions.send:11 of
msgid "公開するユーザー, by default None"
msgstr ""
#: mipac.actions.note.NoteActions.send:12 of
msgid "cw"
msgstr ""
#: mipac.actions.note.NoteActions.send:-1 of
msgid "str | None, optional"
msgstr ""
#: mipac.actions.note.NoteActions.send:13 of
msgid "閲覧注意の文字, by default None"
msgstr ""
#: mipac.actions.note.NoteActions.send:14 of
msgid "local_only"
msgstr ""
#: mipac.actions.note.NoteActions.send:-1 of
msgid "bool, optional"
msgstr ""
#: mipac.actions.note.NoteActions.send:15 of
msgid "ローカルにのみ表示するか, by default False"
msgstr ""
#: mipac.actions.note.NoteActions.send:16 of
msgid "extract_mentions"
msgstr ""
#: mipac.actions.note.NoteActions.send:17 of
msgid "メンションを展開するか, by default False"
msgstr ""
#: mipac.actions.note.NoteActions.send:18 of
msgid "extract_hashtags"
msgstr ""
#: mipac.actions.note.NoteActions.send:19 of
msgid "ハッシュタグを展開するか, by default False"
msgstr ""
#: mipac.actions.note.NoteActions.send:20 of
msgid "extract_emojis"
msgstr ""
#: mipac.actions.note.NoteActions.send:21 of
msgid "絵文字を展開するか, by default False"
msgstr ""
#: mipac.actions.note.NoteActions.send:22 of
msgid "reply_id"
msgstr ""
#: mipac.actions.note.NoteActions.send:23 of
msgid "リプライ先のid, by default None"
msgstr ""
#: mipac.actions.note.NoteActions.send:24 of
msgid "renote_id"
msgstr ""
#: mipac.actions.note.NoteActions.send:25 of
msgid "リート先のid, by default None"
msgstr ""
#: mipac.actions.note.NoteActions.send:26 of
msgid "channel_id"
msgstr ""
#: mipac.actions.note.NoteActions.send:27 of
msgid "チャンネルid, by default None"
msgstr ""
#: mipac.actions.note.NoteActions.send:28 of
msgid "files"
msgstr ""
#: mipac.actions.note.NoteActions.send:-1 of
msgid "list[MiFile | File | str], optional"
msgstr ""
#: mipac.actions.note.NoteActions.send:29 of
msgid "添付するファイルのリスト, by default None"
msgstr ""
#: mipac.actions.note.NoteActions.send:31 of
msgid "poll"
msgstr ""
#: mipac.actions.note.NoteActions.send:-1 of
msgid "MiPoll | None, optional"
msgstr ""
#: mipac.actions.note.NoteActions.send:31 of
msgid "アンケート, by default None"
msgstr ""
#: mipac.actions.note.NoteActions.send:34 of
msgid "Returns"
msgstr ""
#: mipac.actions.note.NoteActions.send:36 of
msgid "Note"
msgstr ""
#: mipac.actions.note.NoteActions.send:36 of
msgid "投稿したノート"
msgstr ""
#: mipac.actions.note.NoteActions.send:39 of
msgid "Raises"
msgstr ""
#: mipac.actions.note.NoteActions.send:40 of
msgid "ContentRequired"
msgstr ""
#: mipac.actions.note.NoteActions.send:41 of
msgid "[description]"
msgstr ""

@ -0,0 +1,37 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:11+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.actions.rst:2
msgid "mipac.actions package"
msgstr ""
#: ../../mipac.actions.rst:5
msgid "Subpackages"
msgstr ""
#: ../../mipac.actions.rst:13
msgid "Submodules"
msgstr ""
#: ../../mipac.actions.rst:38
msgid "Module contents"
msgstr ""

@ -0,0 +1,29 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.actions.poll.rst:2
msgid "mipac.actions.poll module"
msgstr ""
#: mipac.actions.poll.PollActions:1 of
msgid "Bases: :py:class:`~mipac.abstract.action.AbstractAction`"
msgstr ""

@ -0,0 +1,69 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.actions.reaction.rst:2
msgid "mipac.actions.reaction module"
msgstr ""
#: mipac.actions.reaction.ReactionActions:1 of
msgid "Bases: :py:class:`~mipac.abstract.action.AbstractAction`"
msgstr ""
#: mipac.actions.reaction.ReactionActions.add:1 of
msgid "指定したnoteに指定したリアクションを付与します内部用"
msgstr ""
#: mipac.actions.reaction.ReactionActions.add:4 of
msgid "Parameters"
msgstr ""
#: mipac.actions.reaction.ReactionActions.add:5 of
msgid "reaction"
msgstr ""
#: mipac.actions.reaction.ReactionActions.add:-1 of
msgid "str | None"
msgstr ""
#: mipac.actions.reaction.ReactionActions.add:6 of
msgid "付与するリアクション名"
msgstr ""
#: mipac.actions.reaction.ReactionActions.add:8 of
msgid "note_id"
msgstr ""
#: mipac.actions.reaction.ReactionActions.add:8 of
msgid "付与対象のートID"
msgstr ""
#: mipac.actions.reaction.ReactionActions.add:11 of
msgid "Returns"
msgstr ""
#: mipac.actions.reaction.ReactionActions.add:12 of
msgid "bool"
msgstr ""
#: mipac.actions.reaction.ReactionActions.add:13 of
msgid "成功したならTrue,失敗ならFalse"
msgstr ""

@ -0,0 +1,229 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.actions.user.rst:2
msgid "mipac.actions.user module"
msgstr ""
#: mipac.actions.user.UserActions:1 of
msgid "Bases: :py:class:`object`"
msgstr ""
#: mipac.actions.user.UserActions.fetch:1 of
msgid "サーバーにアクセスし、ユーザーのプロフィールを取得します。基本的には get_userをお使いください。"
msgstr ""
#: mipac.actions.user.UserActions.fetch:4
#: mipac.actions.user.UserActions.get_mention:4
#: mipac.actions.user.UserActions.search:4
#: mipac.actions.user.UserActions.search_by_username_and_host:4 of
msgid "Parameters"
msgstr ""
#: mipac.actions.user.UserActions.fetch:5 of
msgid "user_id"
msgstr ""
#: mipac.actions.user.UserActions.fetch:-1
#: mipac.actions.user.UserActions.get_mention:10
#: mipac.actions.user.UserActions.search:-1
#: mipac.actions.user.UserActions.search_by_username_and_host:-1 of
msgid "str"
msgstr ""
#: mipac.actions.user.UserActions.fetch:6 of
msgid "取得したいユーザーのユーザーID"
msgstr ""
#: mipac.actions.user.UserActions.fetch:7
#: mipac.actions.user.UserActions.search_by_username_and_host:5 of
msgid "username"
msgstr ""
#: mipac.actions.user.UserActions.fetch:8 of
msgid "取得したいユーザーのユーザー名"
msgstr ""
#: mipac.actions.user.UserActions.fetch:10
#: mipac.actions.user.UserActions.search_by_username_and_host:7 of
msgid "host"
msgstr ""
#: mipac.actions.user.UserActions.fetch:-1 of
msgid "str, default=None"
msgstr ""
#: mipac.actions.user.UserActions.fetch:10 of
msgid "取得したいユーザーがいるインスタンスのhost"
msgstr ""
#: mipac.actions.user.UserActions.fetch:13
#: mipac.actions.user.UserActions.get_mention:9
#: mipac.actions.user.UserActions.search:19
#: mipac.actions.user.UserActions.search_by_username_and_host:15 of
msgid "Returns"
msgstr ""
#: mipac.actions.user.UserActions.fetch:14 of
msgid "UserDetailed"
msgstr ""
#: mipac.actions.user.UserActions.fetch:15 of
msgid "ユーザー情報"
msgstr ""
#: mipac.actions.user.UserActions.get_achievements:1 of
msgid "Get achievements of user."
msgstr ""
#: mipac.actions.user.UserActions.get_me:1 of
msgid "ログインしているユーザーの情報を取得します"
msgstr ""
#: mipac.actions.user.UserActions.get_mention:1 of
msgid "Get mention name of user."
msgstr ""
#: mipac.actions.user.UserActions.get_mention:6 of
msgid "user"
msgstr ""
#: mipac.actions.user.UserActions.get_mention:-1 of
msgid "Optional[User], default=None"
msgstr ""
#: mipac.actions.user.UserActions.get_mention:6 of
msgid "メンションを取得したいユーザーのオブジェクト"
msgstr ""
#: mipac.actions.user.UserActions.get_mention:11 of
msgid "メンション"
msgstr ""
#: mipac.actions.user.UserActions.search:1 of
msgid "Search users by keyword."
msgstr ""
#: mipac.actions.user.UserActions.search:5 of
msgid "query"
msgstr ""
#: mipac.actions.user.UserActions.search:6 of
msgid "Keyword to search."
msgstr ""
#: mipac.actions.user.UserActions.search:7
#: mipac.actions.user.UserActions.search_by_username_and_host:9 of
msgid "limit"
msgstr ""
#: mipac.actions.user.UserActions.search:-1
#: mipac.actions.user.UserActions.search_by_username_and_host:-1 of
msgid "int, default=100"
msgstr ""
#: mipac.actions.user.UserActions.search:8
#: mipac.actions.user.UserActions.search_by_username_and_host:10 of
msgid "The maximum number of users to return."
msgstr ""
#: mipac.actions.user.UserActions.search:9 of
msgid "offset"
msgstr ""
#: mipac.actions.user.UserActions.search:-1 of
msgid "int, default=0"
msgstr ""
#: mipac.actions.user.UserActions.search:10 of
msgid "The number of users to skip."
msgstr ""
#: mipac.actions.user.UserActions.search:11 of
msgid "origin"
msgstr ""
#: mipac.actions.user.UserActions.search:-1 of
msgid "Literal['local', 'remote', 'combined'], default='combined'"
msgstr ""
#: mipac.actions.user.UserActions.search:12 of
msgid "The origin of users to search."
msgstr ""
#: mipac.actions.user.UserActions.search:13
#: mipac.actions.user.UserActions.search_by_username_and_host:12 of
msgid "detail"
msgstr ""
#: mipac.actions.user.UserActions.search:-1
#: mipac.actions.user.UserActions.search_by_username_and_host:-1 of
msgid "bool, default=True"
msgstr ""
#: mipac.actions.user.UserActions.search:14 of
msgid "Whether to return detailed user information."
msgstr ""
#: mipac.actions.user.UserActions.search:16 of
msgid "get_all"
msgstr ""
#: mipac.actions.user.UserActions.search:-1 of
msgid "bool, default=False"
msgstr ""
#: mipac.actions.user.UserActions.search:16 of
msgid "Whether to return all users."
msgstr ""
#: mipac.actions.user.UserActions.search:20 of
msgid "AsyncGenerator[UserDetailed | LiteUser, None]"
msgstr ""
#: mipac.actions.user.UserActions.search:21 of
msgid "A AsyncGenerator of users."
msgstr ""
#: mipac.actions.user.UserActions.search_by_username_and_host:1 of
msgid "Search users by username and host."
msgstr ""
#: mipac.actions.user.UserActions.search_by_username_and_host:6 of
msgid "Username of user."
msgstr ""
#: mipac.actions.user.UserActions.search_by_username_and_host:8 of
msgid "Host of user."
msgstr ""
#: mipac.actions.user.UserActions.search_by_username_and_host:12 of
msgid "Weather to get detailed user information."
msgstr ""
#: mipac.actions.user.UserActions.search_by_username_and_host:16 of
msgid "list[UserDetailed | LiteUser]"
msgstr ""
#: mipac.actions.user.UserActions.search_by_username_and_host:17 of
msgid "A list of users."
msgstr ""

@ -0,0 +1,29 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.client.rst:2
msgid "mipac.client module"
msgstr ""
#: mipac.client.Client:1 of
msgid "Bases: :py:class:`object`"
msgstr ""

@ -0,0 +1,34 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.config.rst:2
msgid "mipac.config module"
msgstr ""
#: mipac.config.CacheConfig:1 mipac.config.CacheConfigData:1
#: mipac.config.Config:1 mipac.config.Features:1 mipac.config.Limits:1 of
msgid "Bases: :py:class:`object`"
msgstr ""
#: mipac.config.IFeatures:1 mipac.config.ILimits:1 of
msgid "Bases: :py:class:`~typing.TypedDict`"
msgstr ""

@ -0,0 +1,46 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.errors.base.rst:2
msgid "mipac.errors.base module"
msgstr ""
#: mipac.errors.base.APIError:1 mipac.errors.base.NotExistRequiredData:1
#: mipac.errors.base.NotSupportVersion:1 mipac.errors.base.ParameterError:1 of
msgid "Bases: :py:class:`Exception`"
msgstr ""
#: mipac.errors.base.APIError:1 of
msgid "APIのエラー"
msgstr ""
#: mipac.errors.base.NotExistRequiredData:1 of
msgid "クラスの中に必要なデータが不足している"
msgstr ""
#: mipac.errors.base.NotSupportVersion:1 of
msgid "サポートされていないバージョンのインスタンス"
msgstr ""
#: mipac.errors.base.ParameterError:1 of
msgid "引数に関するエラー"
msgstr ""

@ -0,0 +1,381 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.errors.errors.rst:2
msgid "mipac.errors.errors module"
msgstr ""
#: mipac.errors.errors.AccessDeniedError:1
#: mipac.errors.errors.AlreadyAddedError:1
#: mipac.errors.errors.AlreadyBlockingError:1
#: mipac.errors.errors.AlreadyClippedError:1
#: mipac.errors.errors.AlreadyExpiredError:1
#: mipac.errors.errors.AlreadyFavoritedError:1
#: mipac.errors.errors.AlreadyFollowingError:1
#: mipac.errors.errors.AlreadyInvitedError:1
#: mipac.errors.errors.AlreadyLikedError:1
#: mipac.errors.errors.AlreadyMutingError:1
#: mipac.errors.errors.AlreadyPinnedError:1
#: mipac.errors.errors.AlreadyPromotedError:1
#: mipac.errors.errors.AlreadyReactedError:1
#: mipac.errors.errors.AlreadyVotedError:1
#: mipac.errors.errors.AvatarNotAnImageError:1
#: mipac.errors.errors.BannerNotAnImageError:1
#: mipac.errors.errors.BlockedError:1
#: mipac.errors.errors.BlockeeIsYourselfError:1
#: mipac.errors.errors.BlockingError:1
#: mipac.errors.errors.CannotCreateAlreadyExpiredPollError:1
#: mipac.errors.errors.CannotRenoteToAPureRenoteError:1
#: mipac.errors.errors.CannotReplyToAPureRenoteError:1
#: mipac.errors.errors.CannotReportTheAdminError:1
#: mipac.errors.errors.CannotReportYourselfError:1
#: mipac.errors.errors.ContentRequiredError:1
#: mipac.errors.errors.CredentialRequiredError:1
#: mipac.errors.errors.FailedToResolveRemoteUserError:1
#: mipac.errors.errors.FollowRequestNotFoundError:1
#: mipac.errors.errors.FolloweeIsYourselfError:1
#: mipac.errors.errors.FollowerIsYourselfError:1
#: mipac.errors.errors.ForbiddenError:1
#: mipac.errors.errors.GroupAccessDeniedError:1
#: mipac.errors.errors.GtlDisabledError:1
#: mipac.errors.errors.HasChildFilesOrFoldersError:1
#: mipac.errors.errors.InappropriateError:1
#: mipac.errors.errors.InternalErrorError:1
#: mipac.errors.errors.InvalidChoiceError:1
#: mipac.errors.errors.InvalidFileNameError:1
#: mipac.errors.errors.InvalidParamError:1
#: mipac.errors.errors.InvalidRegexpError:1
#: mipac.errors.errors.InvalidUrlError:1 mipac.errors.errors.IsOwnerError:1
#: mipac.errors.errors.LtlDisabledError:1 mipac.errors.errors.MoSuchFileError:1
#: mipac.errors.errors.MuteeIsYourselfError:1
#: mipac.errors.errors.NameAlreadyExistsError:1
#: mipac.errors.errors.NoFollowRequestError:1
#: mipac.errors.errors.NoFreeSpaceError:1 mipac.errors.errors.NoPollError:1
#: mipac.errors.errors.NoSuchAdError:1
#: mipac.errors.errors.NoSuchAnnouncementError:1
#: mipac.errors.errors.NoSuchAntennaError:1
#: mipac.errors.errors.NoSuchAppError:1 mipac.errors.errors.NoSuchAvatarError:1
#: mipac.errors.errors.NoSuchBannerError:1
#: mipac.errors.errors.NoSuchChannelError:1
#: mipac.errors.errors.NoSuchClipError:1 mipac.errors.errors.NoSuchEmojiError:1
#: mipac.errors.errors.NoSuchFileError:1
#: mipac.errors.errors.NoSuchFolderError:1
#: mipac.errors.errors.NoSuchGroupError:1
#: mipac.errors.errors.NoSuchGroupMemberError:1
#: mipac.errors.errors.NoSuchHashtagError:1
#: mipac.errors.errors.NoSuchInvitationError:1
#: mipac.errors.errors.NoSuchListError:1
#: mipac.errors.errors.NoSuchMessageError:1
#: mipac.errors.errors.NoSuchNoteError:1
#: mipac.errors.errors.NoSuchNotificationError:1
#: mipac.errors.errors.NoSuchObjectError:1
#: mipac.errors.errors.NoSuchPageError:1
#: mipac.errors.errors.NoSuchParentFolderError:1
#: mipac.errors.errors.NoSuchPostError:1
#: mipac.errors.errors.NoSuchRenoteTargetError:1
#: mipac.errors.errors.NoSuchReplyTargetError:1
#: mipac.errors.errors.NoSuchSessionError:1
#: mipac.errors.errors.NoSuchUserError:1
#: mipac.errors.errors.NoSuchUserGroupError:1
#: mipac.errors.errors.NoSuchUserListError:1
#: mipac.errors.errors.NoSuchWebhookError:1
#: mipac.errors.errors.NotBlockingError:1
#: mipac.errors.errors.NotFavoritedError:1
#: mipac.errors.errors.NotFollowingError:1 mipac.errors.errors.NotLikedError:1
#: mipac.errors.errors.NotMutingError:1 mipac.errors.errors.NotReactedError:1
#: mipac.errors.errors.PendingSessionError:1
#: mipac.errors.errors.PermissionDeniedError:1
#: mipac.errors.errors.PinLimitExceededError:1
#: mipac.errors.errors.RateLimitExceededError:1
#: mipac.errors.errors.ReactionsNotPublicError:1
#: mipac.errors.errors.RecipientIsYourselfError:1
#: mipac.errors.errors.StlDisabledError:1
#: mipac.errors.errors.YouAreOwnerError:1
#: mipac.errors.errors.YouHaveBeenBlockedError:1
#: mipac.errors.errors.YourAccountSuspendedError:1
#: mipac.errors.errors.YourPageError:1 mipac.errors.errors.YourPostError:1 of
msgid "Bases: :py:class:`~mipac.errors.base.APIError`"
msgstr ""
#: mipac.errors.errors.AccessDeniedError:1 of
msgid "アクセス権限がありません。"
msgstr ""
#: mipac.errors.errors.AlreadyBlockingError:1 of
msgid "すでにブロックしています。"
msgstr ""
#: mipac.errors.errors.AlreadyFavoritedError:1 of
msgid "既にお気に入り登録されています。"
msgstr ""
#: mipac.errors.errors.AlreadyFollowingError:1 of
msgid "すでにフォローしています。"
msgstr ""
#: mipac.errors.errors.AlreadyLikedError:1 of
msgid "すでにいいねをつけています。"
msgstr ""
#: mipac.errors.errors.AlreadyMutingError:1 of
msgid "すでにそのユーザーをミュートしています。"
msgstr ""
#: mipac.errors.errors.AlreadyPinnedError:1 of
msgid "指定されたノートは既にピン留めされています。"
msgstr ""
#: mipac.errors.errors.AlreadyReactedError:1 of
msgid "既にリアクションしています。"
msgstr ""
#: mipac.errors.errors.AvatarNotAnImageError:1 of
msgid "アバター画像に、画像ではないファイルが指定されました。"
msgstr ""
#: mipac.errors.errors.BannerNotAnImageError:1 of
msgid "バナー画像に、画像ではないファイルが指定されました。"
msgstr ""
#: mipac.errors.errors.BlockedError:1 of
msgid "ユーザーにブロックされています。"
msgstr ""
#: mipac.errors.errors.BlockeeIsYourselfError:1 of
msgid "自分のブロックを解除しようとしました。"
msgstr ""
#: mipac.errors.errors.BlockingError:1 of
msgid "ユーザーをブロックしています。"
msgstr ""
#: mipac.errors.errors.CannotCreateAlreadyExpiredPollError:1 of
msgid "アンケートの期限の指定が誤っています。"
msgstr ""
#: mipac.errors.errors.CannotRenoteToAPureRenoteError:1 of
msgid "単純なRenoteを再度Renoteすることはできません。"
msgstr ""
#: mipac.errors.errors.CannotReplyToAPureRenoteError:1 of
msgid "単純なRenoteに返信することはできません。"
msgstr ""
#: mipac.errors.errors.CannotReportTheAdminError:1 of
msgid "管理者を通報しようとしました。"
msgstr ""
#: mipac.errors.errors.CannotReportYourselfError:1 of
msgid "自身を通報しようとしました。"
msgstr ""
#: mipac.errors.errors.CredentialRequiredError:1 of
msgid "クレデンシャル必須のエンドポイントにクレデンシャル無しでリクエストされました。"
msgstr ""
#: mipac.errors.errors.FailedToResolveRemoteUserError:1 of
msgid "リモートユーザーの検索に失敗しました。"
msgstr ""
#: mipac.errors.errors.FollowRequestNotFoundError:1 of
msgid "フォローリクエストがありません。"
msgstr ""
#: mipac.errors.errors.FolloweeIsYourselfError:1 of
msgid "自分のフォローを解除しようとしました。"
msgstr ""
#: mipac.errors.errors.FollowerIsYourselfError:1 of
msgid "自分をフォロワー解除しようとしました。"
msgstr ""
#: mipac.errors.errors.GtlDisabledError:1 of
msgid "グローバルタイムラインが無効になっています。"
msgstr ""
#: mipac.errors.errors.HasChildFilesOrFoldersError:1 of
msgid "フォルダーが空ではありません。"
msgstr ""
#: mipac.errors.errors.InappropriateError:1 of
msgid "不適切なコンテンツを含んでいる可能性があると判定されました。"
msgstr ""
#: mipac.errors.errors.InternalErrorError:1 of
msgid "サーバー内部で問題が発生しました。引き続き問題が発生する場合は管理者にお問い合わせください。"
msgstr ""
#: mipac.errors.errors.InvalidFileNameError:1 of
msgid "ファイル名が不正です。"
msgstr ""
#: mipac.errors.errors.InvalidParamError:1 of
msgid "リクエストパラメータに誤りがあります。"
msgstr ""
#: mipac.errors.errors.InvalidRegexpError:1 of
msgid "正規表現が不正です。"
msgstr ""
#: mipac.errors.errors.LtlDisabledError:1 of
msgid "ローカルタイムラインが無効になっています。"
msgstr ""
#: mipac.errors.errors.MuteeIsYourselfError:1 of
msgid "自分に対してミュートを解除しようとしました。"
msgstr ""
#: mipac.errors.errors.NameAlreadyExistsError:1 of
msgid "同じURLにページがすでに存在します。"
msgstr ""
#: mipac.errors.errors.NoFollowRequestError:1 of
msgid "ユーザーからのフォローリクエストがありません。"
msgstr ""
#: mipac.errors.errors.NoFreeSpaceError:1 of
msgid "ドライブに空き容量がありません。"
msgstr ""
#: mipac.errors.errors.NoSuchAnnouncementError:1 of
msgid "お知らせが存在しません。"
msgstr ""
#: mipac.errors.errors.NoSuchAppError:1 of
msgid "アプリが存在しません。"
msgstr ""
#: mipac.errors.errors.NoSuchAvatarError:1 of
msgid "アバター画像のファイルが存在しません。"
msgstr ""
#: mipac.errors.errors.NoSuchBannerError:1 of
msgid "バナー画像のファイルが存在しません。"
msgstr ""
#: mipac.errors.errors.NoSuchChannelError:1 of
msgid "指定されたチャンネルが存在しないか、アクセスが許可されていません。"
msgstr ""
#: mipac.errors.errors.NoSuchFileError:1 of
msgid "ファイルが存在しません。"
msgstr ""
#: mipac.errors.errors.NoSuchFolderError:1 of
msgid "フォルダーが存在しません。"
msgstr ""
#: mipac.errors.errors.NoSuchHashtagError:1 of
msgid "ハッシュタグが存在しません。"
msgstr ""
#: mipac.errors.errors.NoSuchNoteError:1 of
msgid "指定されたノートが存在しないか、アクセスが許可されていません。"
msgstr ""
#: mipac.errors.errors.NoSuchNotificationError:1 of
msgid "通知が存在しません。"
msgstr ""
#: mipac.errors.errors.NoSuchPageError:1 of
msgid "ページが存在しません。"
msgstr ""
#: mipac.errors.errors.NoSuchParentFolderError:1 of
msgid "親フォルダーが存在しません。"
msgstr ""
#: mipac.errors.errors.NoSuchRenoteTargetError:1 of
msgid "Renoteに指定されたートが存在しないか、アクセスが許可されていません。"
msgstr ""
#: mipac.errors.errors.NoSuchReplyTargetError:1 of
msgid "返信先に指定されたノートが存在しないか、アクセスが許可されていません。"
msgstr ""
#: mipac.errors.errors.NoSuchSessionError:1 of
msgid "セッションが存在しません。"
msgstr ""
#: mipac.errors.errors.NoSuchUserError:1 of
msgid "ユーザーが存在しません。"
msgstr ""
#: mipac.errors.errors.NoSuchWebhookError:1 of
msgid "Webhookが存在しません。"
msgstr ""
#: mipac.errors.errors.NotBlockingError:1 of
msgid "ブロックしていないユーザーです。"
msgstr ""
#: mipac.errors.errors.NotFavoritedError:1 of
msgid "お気に入り登録されていません。"
msgstr ""
#: mipac.errors.errors.NotFollowingError:1 of
msgid "ユーザーにフォローされていません。"
msgstr ""
#: mipac.errors.errors.NotLikedError:1 of
msgid "いいねをつけていないページです。"
msgstr ""
#: mipac.errors.errors.NotMutingError:1 of
msgid "対象となるユーザーをそもそもミュートしていません。"
msgstr ""
#: mipac.errors.errors.NotReactedError:1 of
msgid "リアクションしていません。"
msgstr ""
#: mipac.errors.errors.PermissionDeniedError:1 of
msgid "与えられたクレデンシャルには必要なパーミッションがありません。"
msgstr ""
#: mipac.errors.errors.PinLimitExceededError:1 of
msgid "これ以上ピン留めできません。"
msgstr ""
#: mipac.errors.errors.RateLimitExceededError:1 of
msgid "レートリミットによる制限のため一時的に利用できません。"
msgstr ""
#: mipac.errors.errors.ReactionsNotPublicError:1 of
msgid "リアクションが公開されていません。"
msgstr ""
#: mipac.errors.errors.StlDisabledError:1 of
msgid "ソーシャルタイムラインが無効になっています。"
msgstr ""
#: mipac.errors.errors.YouHaveBeenBlockedError:1 of
msgid "ブロックされているユーザーのノートにリアクションは行えません。"
msgstr ""
#: mipac.errors.errors.YourAccountSuspendedError:1 of
msgid "アカウントが凍結されているため利用できません。"
msgstr ""
#: mipac.errors.errors.YourPageError:1 of
msgid "自身のページにいいねをつけようとしました。"
msgstr ""

@ -0,0 +1,33 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:11+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.errors.rst:2
msgid "mipac.errors package"
msgstr ""
#: ../../mipac.errors.rst:5
msgid "Submodules"
msgstr ""
#: ../../mipac.errors.rst:14
msgid "Module contents"
msgstr ""

@ -0,0 +1,97 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.file.rst:2
msgid "mipac.file module"
msgstr ""
#: mipac.file.MiFile:1 of
msgid "Bases: :py:class:`object`"
msgstr ""
#: mipac.file.MiFile.__init__:2 of
msgid "Parameters"
msgstr ""
#: mipac.file.MiFile.__init__:3 of
msgid "path"
msgstr ""
#: mipac.file.MiFile.__init__:-1 of
msgid "str | None, default=None"
msgstr ""
#: mipac.file.MiFile.__init__:4 of
msgid "path to a local file"
msgstr ""
#: mipac.file.MiFile.__init__:5 of
msgid "file_id"
msgstr ""
#: mipac.file.MiFile.__init__:6 of
msgid "ID of the file that exists on the drive"
msgstr ""
#: mipac.file.MiFile.__init__:7 of
msgid "name str | None, default=None"
msgstr ""
#: mipac.file.MiFile.__init__:8 of
msgid "file name"
msgstr ""
#: mipac.file.MiFile.__init__:9 of
msgid "folder_id"
msgstr ""
#: mipac.file.MiFile.__init__:10 of
msgid "Folder ID"
msgstr ""
#: mipac.file.MiFile.__init__:11 of
msgid "comment"
msgstr ""
#: mipac.file.MiFile.__init__:12 of
msgid "Comments on files"
msgstr ""
#: mipac.file.MiFile.__init__:13 of
msgid "is_sensitive"
msgstr ""
#: mipac.file.MiFile.__init__:14 of
msgid "Whether this item is sensitive"
msgstr ""
#: mipac.file.MiFile.__init__:15 of
msgid "force"
msgstr ""
#: mipac.file.MiFile.__init__:-1 of
msgid "bool, default=False"
msgstr ""
#: mipac.file.MiFile.__init__:16 of
msgid "Whether to force overwriting even if it already exists on the drive"
msgstr ""

@ -0,0 +1,33 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.http.rst:2
msgid "mipac.http module"
msgstr ""
#: mipac.http.HTTPClient:1 mipac.http.Route:1 mipac.http._MissingSentinel:1 of
msgid "Bases: :py:class:`object`"
msgstr ""
#: mipac.http.MisskeyClientWebSocketResponse:1 of
msgid "Bases: :py:class:`~aiohttp.client_ws.ClientWebSocketResponse`"
msgstr ""

@ -0,0 +1,30 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.manager.admins.ad.rst:2
msgid "mipac.manager.admins.ad module"
msgstr ""
#: mipac.manager.admins.ad.AdminAdvertisingManager:1
#: mipac.manager.admins.ad.AdminAdvertisingModelManager:1 of
msgid "Bases: :py:class:`~mipac.abstract.manager.AbstractManager`"
msgstr ""

@ -0,0 +1,29 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.manager.admins.admin.rst:2
msgid "mipac.manager.admins.admin module"
msgstr ""
#: mipac.manager.admins.admin.AdminManager:1 of
msgid "Bases: :py:class:`~mipac.abstract.manager.AbstractManager`"
msgstr ""

@ -0,0 +1,29 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.manager.admins.announcement.rst:2
msgid "mipac.manager.admins.announcement module"
msgstr ""
#: mipac.manager.admins.announcement.AdminAnnouncementManager:1 of
msgid "Bases: :py:class:`~mipac.abstract.manager.AbstractManager`"
msgstr ""

@ -0,0 +1,29 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.manager.admins.emoji.rst:2
msgid "mipac.manager.admins.emoji module"
msgstr ""
#: mipac.manager.admins.emoji.AdminEmojiManager:1 of
msgid "Bases: :py:class:`~mipac.abstract.manager.AbstractManager`"
msgstr ""

@ -0,0 +1,45 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.manager.admins.moderator.rst:2
msgid "mipac.manager.admins.moderator module"
msgstr ""
#: mipac.manager.admins.moderator.AdminModeratorManager:1 of
msgid "Bases: :py:class:`~mipac.abstract.manager.AbstractManager`"
msgstr ""
#: mipac.manager.admins.moderator.AdminModeratorManager.action:1 of
msgid "Moderatorに関するアクション"
msgstr ""
#: mipac.manager.admins.moderator.AdminModeratorManager.action:4 of
msgid "Returns"
msgstr ""
#: mipac.manager.admins.moderator.AdminModeratorManager.action:5 of
msgid "AdminModeratorActions"
msgstr ""
#: mipac.manager.admins.moderator.AdminModeratorManager.action:6 of
msgid "Moderatorに対するアクションを行うクラス"
msgstr ""

@ -0,0 +1,33 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:11+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.manager.admins.rst:2
msgid "mipac.manager.admins package"
msgstr ""
#: ../../mipac.manager.admins.rst:5
msgid "Submodules"
msgstr ""
#: ../../mipac.manager.admins.rst:19
msgid "Module contents"
msgstr ""

@ -0,0 +1,33 @@
# SOME DESCRIPTIVE TITLE.
# Copyright (C) 2023, yupix
# This file is distributed under the same license as the mipac package.
# FIRST AUTHOR <EMAIL@ADDRESS>, 2023.
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: mipac \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2023-08-30 05:09+0000\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language: ja\n"
"Language-Team: ja <LL@li.org>\n"
"Plural-Forms: nplurals=1; plural=0;\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=utf-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Generated-By: Babel 2.12.1\n"
#: ../../mipac.manager.admins.roles.rst:2
msgid "mipac.manager.admins.roles module"
msgstr ""
#: mipac.manager.admins.roles.AdminRolesManager:1 of
msgid "Bases: :py:class:`object`"
msgstr ""
#: mipac.manager.admins.roles.AdminRolesModelManager:1 of
msgid "Bases: :py:class:`~mipac.abstract.manager.AbstractManager`"
msgstr ""

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save