Skip to content

Instantly share code, notes, and snippets.

@morika-t
Forked from hayajo/changelog_en.md
Last active August 29, 2015 14:17
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save morika-t/de01371ff21d52417599 to your computer and use it in GitHub Desktop.
Save morika-t/de01371ff21d52417599 to your computer and use it in GitHub Desktop.

ChangeLog を支える英語

ChangeLog を書く際によく使われる英語をまとめました。

ほとんど引用です。

基本形

基本的な文法です。あとは単語を知っていれば大体なんとかなるそうです。

大文字で始める

Fix possible memory leak
Removed obsolete username_max_length

ピリオドをつけない

Changed A to B
Upgraded A to version 1.0

動詞の過去形で始まる「~を…しました」形

Fixed a performance regression
(パフォーマンスが低下するバグを修正しました)

「~は…するようになります」形

now + 動詞の過去分詞。仕様変更などの際に使いましょう。

Minimized pages are now hidden
(最小化したページは今後は隠されるようになります)

名詞句のみ

「~(という)こと」的な。

Many usability improvements
(多くのユーザビリティの向上)

ちょっと便利ないいまわし

慣れてきたら少々のエスプリをきかせましょう。

ときどき(時々)

a possible を使う。

a possible crash.
(ときどきクラッシュする)

a possible null pointer dereference.
(ときどきヌルポする)

不具合

致命的ではない不具合には issue を使う。

the stability issue.
(不安定になる不具合)

よく使う動詞

  • 新規追加

    add, added

      Added support for bridgeless SLI with GeForce 8 GPUs
    
  • 改善

    improve, improved

      Improved device handling
    
  • 変更

    change, changed

      Changed A to B
    
  • 修正

    modify, modified

      Modified IPv6 default listen address
    
  • バグフィックス

    fix, fixed

      Fixed a bug in test.t
    
  • 削除

    remove, removed

      Removed a dependency to Huge::Module
    
  • 取り消し(巻き戻し)

    revert, reverted

      Revert the 'require' in command.cmd to do 'do'
    
  • 更新

    update, updated

      Updated docs for new-features options
    

    Win7 -> Win7-SP1

  • 拡張(機能追加などをともなう)

    upgrade, upgraded

      upgraded to 1.0
    

    Win7 -> Win8

  • 有効/無効

    enable, enabled / disable, disabled

      Enabled type checking of the app in MyApp::sub
    
  • 拡張

    extend, extended

  • 強化、向上

    enhance, enhanced

  • 実装

    implement, implemented

      Implemented app.streaming in all blocking servers
    
  • リファクタ

    refactor, refactored

      Refactored MyApp
    
  • 最適化

    optimize, optimized

      Optimized a process
    
  • 削減、切り詰め

    reduce, reduced

      Reduced kernel virtual memory usage with some GeForce 8 GPUs
    

冠詞(a, the, any, some)

  • a, the

    それと別物を置き換えても文章が成り立つ場合。 どれでもいいのが a

    それでないと文章が成り立たない場合。 それじゃないと駄目なのが the

    • だから乞食は"Would you give me a quarter."(25セントくれ)と言うのに、取引では"Give me the money."(その金よこせ)と言うわけです....というのは半分冗談ですが、そういうことです。
    • OOP(Object Oriented Programming)で言うと、aがクラス(class)でtheがインスタンス(instance)だ。
  • any, some

    any => a, some => the

    ♪Help! I need somebody
    ♪Help! Not just anybody

注意事項

  • 固有名詞にはtheをつけない

    固有名詞: 人名や地名等、それ以外には存在しない特定の対象を表す名詞

    Taro, Tokyo, Japan

  • 作品紹介では a を使う

    • Spirited Away' is a Miyazaki film. The movie won the Academy Award in 2001.
    • It's a Sony

引用元

というわけで

Enjoy!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment