記事一覧:2016年09月21日

英語によるコミットメッセージ文例その1

 英語でコミットメッセージを書くときにうまい表現が思い浮かばずに困ることがあるので、色々なリポジトリを見て使えそうな表現をメモしていこうという記事です。

 今回はWordPress/WordPressより。コミットメッセージは動詞で始め、最後にピリオドを付けるというスタイルです。

Correct 〜

 〜を修正する(Docs: Correct the description of {$taxonomy}_term_new_form_tag hook, making it more consistent with other *_form_tag hooks.)。

Make A 〜

 Aを〜にする(Media: Make media library searchable by filename.)。続く説明文で使われているapply A to B(AをBに適用する)も使えそう。

Let A be 〜

 Aを〜にする(Customize: Let static_front_page section be contextually active based on whether there are any published pages.)。

Avoid 〜

 〜を回避する(XML-RPC: Avoid a PHP notice in ::pingback_ping() if page title was not found.)。

Ensure 〜

 〜を確実にする(Customize: Ensure nav menu items lacking a label use the title from the original object.)。

Improve 〜

 〜を改良する(Media: Improved media titles when created from filename.)。

Enable A to 〜

 〜するようAを有効にする(REST API: Enable sanitize_callback to return WP_Error.)。

Adjust 〜

 〜を調整する(Media: Adjust test_video_shortcode_body() after [38597].)。

Implement 〜

 〜を実装する(Customize: Implement previewing of form submissions which use the GET method.)。

Eliminate 〜

 〜を取り除く(Query: Eliminate unnecessary wp_list_filter() call in `get_queried_)。

Prevent A from 〜

 Aを〜から防ぐ(Menus: Prevent non-published posts/pages from being returned in search results for adding as nav menu items)。

Sanitize 〜

 〜をサニタイズする。サニタイズは不要な情報を取り除くこと(Media: Sanitize upload filename.)。

Split 〜

 〜を分割する(Role/Capability: Split meta and primitive capabilities in the helper functions in the roles and capability tests so primitive capability tests can be made more accurate.

Deprecate 〜

 〜を廃止する(Multisite: Deprecate wp_get_network().)。

Don’t do 〜

 〜しないようにする(Comments: Don’t do direct SQL query when fetching decendants.)。