diff options
author | Sébastien Helleu <flashcode@flashtux.org> | 2022-02-20 17:31:25 +0100 |
---|---|---|
committer | Sébastien Helleu <flashcode@flashtux.org> | 2022-02-20 17:31:25 +0100 |
commit | 40ff9beb10c9842fafbd8181c99ccbeccdeacf3d (patch) | |
tree | 769d9acf56cf6111202fe92e6c6a204a48b7e55d /doc/ja | |
parent | d359e8135ec8794b30d13917748926f09ba2d907 (diff) | |
download | weechat-40ff9beb10c9842fafbd8181c99ccbeccdeacf3d.zip |
doc/dev: add table with list of components for git commit message
Diffstat (limited to 'doc/ja')
-rw-r--r-- | doc/ja/weechat_dev.ja.adoc | 116 |
1 files changed, 104 insertions, 12 deletions
diff --git a/doc/ja/weechat_dev.ja.adoc b/doc/ja/weechat_dev.ja.adoc index 75bf2fc2b..e247e9479 100644 --- a/doc/ja/weechat_dev.ja.adoc +++ b/doc/ja/weechat_dev.ja.adoc @@ -1174,19 +1174,111 @@ component: fix a problem (closes #123) _component_ には以下から 1 つ選んで記入してください: +[width="100%",cols="1m,4m,5",options="header"] +|=== +// TRANSLATION MISSING +| Component | Files | Description + +| core | + AUTHORS.adoc + + ChangeLog.adoc + + Contributing.adoc + + .github/FUNDING.yml + + .github/ISSUE_TEMPLATE/* + + icons/* + + po/* + + README.adoc + + ReleaseNotes.adoc + + src/core/* + + src/gui/* + + version.sh + + weechat.desktop | +// TRANSLATION MISSING + WeeChat core + +| build | + autogen.sh + + CMakeLists.txt + + cmake/* + + configure.ac + + Makefile.am + + tools/* + + weechat.cygport.in + + weechat.spec | +// TRANSLATION MISSING + Build + +| ci | + .github/workflows/* | +// TRANSLATION MISSING + Continuous integration + +| debian | + debian-devel/* + + debian-stable/* | +// TRANSLATION MISSING + Debian packaging + +| tests | + tests/* | +// TRANSLATION MISSING + Tests + +| doc | + doc/* | +// TRANSLATION MISSING + General doc updates, for example build + +| doc/man | + doc/xx/weechat.1.xx.adoc + + doc/xx/weechat-headless.1.xx.adoc | +// TRANSLATION MISSING + Man pages + +| doc/faq | + doc/xx/weechat_faq.xx.adoc | // TRANSLATION MISSING -* WeeChat core: `core` (files in root directory, _po/_ and _src/_, except _src/plugins/_) -* documentation: -** `doc`: general doc updates, for example build -** `doc/man`: man pages -** `doc/faq`: frequently asked questions (FAQ) -** `doc/quickstart`: quickstart guide -** `doc/user`: user's guide -** `doc/scripting`: scripting guide -** `doc/api`: plugin API reference -** `doc/relay`: relay protocol -** `doc/dev`: developer's guide -* plugins: `irc`, `python`, `relay`, ... (files in directory _src/plugins/_) + Frequently asked questions (FAQ) + +| doc/quickstart | + doc/xx/weechat_quickstart.xx.adoc | +// TRANSLATION MISSING + Quickstart guide + +| doc/user | + doc/xx/weechat_user.xx.adoc | +// TRANSLATION MISSING + User's guide + +| doc/scripting | + doc/xx/weechat_scripting.xx.adoc | +// TRANSLATION MISSING + Scripting guide + +| doc/api | + doc/xx/weechat_plugin_api.xx.adoc | +// TRANSLATION MISSING + Plugin API reference + +| doc/relay | + doc/xx/weechat_relay_protocol.xx.adoc | +// TRANSLATION MISSING + Relay protocol + +| doc/dev | + doc/xx/weechat_dev.en.adoc | +// TRANSLATION MISSING + Developer's guide + +| irc + + python + + relay + + … | + src/plugins/<name>/* | +// TRANSLATION MISSING + Plugin + +|=== 以下のルールに従ってください: |