Mercurial > hg
changeset 24721:774ee9800146
transaction: add missing newline to message
Add a missing newline to the "journal was created by a
different version of Mercurial" message.
author | Michael O'Connor <moconnor@janestreet.com> |
---|---|
date | Tue, 14 Apr 2015 10:59:26 -0400 |
parents | c560d8c68791 |
children | 02a5618e2fbf |
files | i18n/ja.po mercurial/transaction.py |
diffstat | 2 files changed, 3 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/i18n/ja.po Sun Apr 05 13:16:46 2015 +0900 +++ b/i18n/ja.po Tue Apr 14 10:59:26 2015 -0400 @@ -27151,8 +27151,8 @@ msgid "couldn't read journal entry %r!\n" msgstr "ジャーナルファイル中のエントリ %r の解析に失敗\n" -msgid "journal was created by a different version of Mercurial" -msgstr "ジャーナルファイルは異なる版の mercurial で作成されたものです" +msgid "journal was created by a different version of Mercurial\n" +msgstr "ジャーナルファイルは異なる版の mercurial で作成されたものです\n" msgid "already have changeset " msgstr "既にあるリビジョンです "
--- a/mercurial/transaction.py Sun Apr 05 13:16:46 2015 +0900 +++ b/mercurial/transaction.py Tue Apr 14 10:59:26 2015 -0400 @@ -542,6 +542,6 @@ backupentries.append((l, f, b, bool(c))) else: report(_("journal was created by a different version of " - "Mercurial")) + "Mercurial\n")) _playback(file, report, opener, vfsmap, entries, backupentries)