Show default values in help message
This commit is contained in:
parent
c2b96ff64b
commit
5cad1dbe69
@ -55,13 +55,13 @@ optional arguments:
|
|||||||
-s WIDTHxHEIGHT, --size WIDTHxHEIGHT
|
-s WIDTHxHEIGHT, --size WIDTHxHEIGHT
|
||||||
Stage size in pixels
|
Stage size in pixels
|
||||||
-fn FONT, --font FONT
|
-fn FONT, --font FONT
|
||||||
Specify font face
|
Specify font face [default: sans-serif]
|
||||||
-fs SIZE, --fontsize SIZE
|
-fs SIZE, --fontsize SIZE
|
||||||
Default font size
|
Default font size [default: 25]
|
||||||
-a ALPHA, --alpha ALPHA
|
-a ALPHA, --alpha ALPHA
|
||||||
Text opaque
|
Text opaque
|
||||||
-l SECONDS, --lifetime SECONDS
|
-l SECONDS, --lifetime SECONDS
|
||||||
Duration of comment display
|
Duration of comment display [default: 5]
|
||||||
-p HEIGHT, --protect HEIGHT
|
-p HEIGHT, --protect HEIGHT
|
||||||
Reserve blank on the bottom of the stage
|
Reserve blank on the bottom of the stage
|
||||||
-r, --reduce Reduce the amount of comments if stage is full
|
-r, --reduce Reduce the amount of comments if stage is full
|
||||||
|
@ -536,10 +536,10 @@ def main():
|
|||||||
parser = argparse.ArgumentParser()
|
parser = argparse.ArgumentParser()
|
||||||
parser.add_argument('-o', '--output', metavar=_('OUTPUT'), help=_('Output file'))
|
parser.add_argument('-o', '--output', metavar=_('OUTPUT'), help=_('Output file'))
|
||||||
parser.add_argument('-s', '--size', metavar=_('WIDTHxHEIGHT'), required=True, help=_('Stage size in pixels'))
|
parser.add_argument('-s', '--size', metavar=_('WIDTHxHEIGHT'), required=True, help=_('Stage size in pixels'))
|
||||||
parser.add_argument('-fn', '--font', metavar=_('FONT'), help=_('Specify font face'), default=_('(FONT) sans-serif')[7:])
|
parser.add_argument('-fn', '--font', metavar=_('FONT'), help=_('Specify font face [default: %s]') % _('(FONT) sans-serif')[7:], default=_('(FONT) sans-serif')[7:])
|
||||||
parser.add_argument('-fs', '--fontsize', metavar=_('SIZE'), help=(_('Default font size')), type=float, default=25.0)
|
parser.add_argument('-fs', '--fontsize', metavar=_('SIZE'), help=(_('Default font size [default: %s]') % 25), type=float, default=25.0)
|
||||||
parser.add_argument('-a', '--alpha', metavar=_('ALPHA'), help=_('Text opaque'), type=float, default=1.0)
|
parser.add_argument('-a', '--alpha', metavar=_('ALPHA'), help=_('Text opaque'), type=float, default=1.0)
|
||||||
parser.add_argument('-l', '--lifetime', metavar=_('SECONDS'), help=_('Duration of comment display'), type=float, default=5.0)
|
parser.add_argument('-l', '--lifetime', metavar=_('SECONDS'), help=_('Duration of comment display [default: %s]') % 5, type=float, default=5.0)
|
||||||
parser.add_argument('-p', '--protect', metavar=_('HEIGHT'), help=_('Reserve blank on the bottom of the stage'), type=int, default=0)
|
parser.add_argument('-p', '--protect', metavar=_('HEIGHT'), help=_('Reserve blank on the bottom of the stage'), type=int, default=0)
|
||||||
parser.add_argument('-r', '--reduce', action='store_true', help=_('Reduce the amount of comments if stage is full'))
|
parser.add_argument('-r', '--reduce', action='store_true', help=_('Reduce the amount of comments if stage is full'))
|
||||||
parser.add_argument('file', metavar=_('FILE'), nargs='+', help=_('Comment file to be processed'))
|
parser.add_argument('file', metavar=_('FILE'), nargs='+', help=_('Comment file to be processed'))
|
||||||
|
Binary file not shown.
@ -1,101 +1,106 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Danmaku2ASS\n"
|
"Project-Id-Version: Danmaku2ASS\n"
|
||||||
"POT-Creation-Date: 2013-09-30 23:13+0800\n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2013-11-24 15:30+0800\n"
|
||||||
"Last-Translator: Star Brilliant <m13253@hotmail.com>\n"
|
"Last-Translator: Star Brilliant <m13253@hotmail.com>\n"
|
||||||
"Language: en\n"
|
"Language: en\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: danmaku2ass.py:133 danmaku2ass.py:170
|
#: danmaku2ass.py:130 danmaku2ass.py:165 danmaku2ass.py:195
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Invalid comment: %s"
|
msgid "Invalid comment: %s"
|
||||||
msgstr "Invalid comment: %s"
|
msgstr "Invalid comment: %s"
|
||||||
|
|
||||||
#: danmaku2ass.py:151
|
#: danmaku2ass.py:145 danmaku2ass.py:179 danmaku2ass.py:211 danmaku2ass.py:317
|
||||||
|
#: danmaku2ass.py:319 danmaku2ass.py:348
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Invalid comment: %r"
|
msgid "Invalid comment: %r"
|
||||||
msgstr "Invalid comment: %r"
|
msgstr "Invalid comment: %r"
|
||||||
|
|
||||||
#: danmaku2ass.py:215
|
#: danmaku2ass.py:496 danmaku2ass.py:539
|
||||||
msgid "OUTPUT"
|
|
||||||
msgstr "OUTPUT"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:215
|
|
||||||
msgid "Output file"
|
|
||||||
msgstr "Output file"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:216
|
|
||||||
msgid "Stage size in pixels"
|
|
||||||
msgstr "Stage size in pixels"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:216
|
|
||||||
msgid "WIDTHxHEIGHT"
|
|
||||||
msgstr "WIDTHxHEIGHT"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:217
|
|
||||||
msgid "(FONT) sans-serif"
|
msgid "(FONT) sans-serif"
|
||||||
msgstr "(FONT) Helvetica"
|
msgstr "(FONT) Helvetica"
|
||||||
|
|
||||||
#: danmaku2ass.py:217
|
#: danmaku2ass.py:522
|
||||||
msgid "FONT"
|
|
||||||
msgstr "FONT"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:217
|
|
||||||
msgid "Specify font face"
|
|
||||||
msgstr "Specify font face"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:218
|
|
||||||
msgid "Default font size"
|
|
||||||
msgstr "Default font size"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:218
|
|
||||||
msgid "SIZE"
|
|
||||||
msgstr "SIZE"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:219
|
|
||||||
msgid "ALPHA"
|
|
||||||
msgstr "ALPHA"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:219
|
|
||||||
msgid "Text opaque"
|
|
||||||
msgstr "Text opaque"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:220
|
|
||||||
msgid "Duration of comment display"
|
|
||||||
msgstr "Duration of comment display"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:220
|
|
||||||
msgid "SECONDS"
|
|
||||||
msgstr "SECONDS"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:221
|
|
||||||
msgid "HEIGHT"
|
|
||||||
msgstr "HEIGHT"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:221
|
|
||||||
msgid "Reserve blank on the bottom of the stage"
|
|
||||||
msgstr "Reserve blank on the bottom of the stage"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:222
|
|
||||||
msgid "Reduce the amount of comments if stage is full"
|
|
||||||
msgstr "Reduce the amount of comments if stage is full"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:223
|
|
||||||
msgid "Comment file to be processed"
|
|
||||||
msgstr "Comment file to be processed"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:223
|
|
||||||
msgid "FILE"
|
|
||||||
msgstr "FILE"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:230
|
|
||||||
#, python-format
|
|
||||||
msgid "Invalid stage size: %r"
|
|
||||||
msgstr "Invalid stage size: %r"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:236
|
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Unknown comment file format: %s"
|
msgid "Unknown comment file format: %s"
|
||||||
msgstr "Unknown comment file format: %s"
|
msgstr "Unknown comment file format: %s"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:537
|
||||||
|
msgid "OUTPUT"
|
||||||
|
msgstr "OUTPUT"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:537
|
||||||
|
msgid "Output file"
|
||||||
|
msgstr "Output file"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:538
|
||||||
|
msgid "Stage size in pixels"
|
||||||
|
msgstr "Stage size in pixels"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:538
|
||||||
|
msgid "WIDTHxHEIGHT"
|
||||||
|
msgstr "WIDTHxHEIGHT"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:539
|
||||||
|
msgid "FONT"
|
||||||
|
msgstr "FONT"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:539
|
||||||
|
#, python-format
|
||||||
|
msgid "Specify font face [default: %s]"
|
||||||
|
msgstr "Specify font face [default: %s]"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:540
|
||||||
|
#, python-format
|
||||||
|
msgid "Default font size [default: %s]"
|
||||||
|
msgstr "Default font size [default: %s]"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:540
|
||||||
|
msgid "SIZE"
|
||||||
|
msgstr "SIZE"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:541
|
||||||
|
msgid "ALPHA"
|
||||||
|
msgstr "ALPHA"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:541
|
||||||
|
msgid "Text opaque"
|
||||||
|
msgstr "Text opaque"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:542
|
||||||
|
#, python-format
|
||||||
|
msgid "Duration of comment display [default: %s]"
|
||||||
|
msgstr "Duration of comment display [default: %s]"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:542
|
||||||
|
msgid "SECONDS"
|
||||||
|
msgstr "SECONDS"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:543
|
||||||
|
msgid "HEIGHT"
|
||||||
|
msgstr "HEIGHT"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:543
|
||||||
|
msgid "Reserve blank on the bottom of the stage"
|
||||||
|
msgstr "Reserve blank on the bottom of the stage"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:544
|
||||||
|
msgid "Reduce the amount of comments if stage is full"
|
||||||
|
msgstr "Reduce the amount of comments if stage is full"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:545
|
||||||
|
msgid "Comment file to be processed"
|
||||||
|
msgstr "Comment file to be processed"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:545
|
||||||
|
msgid "FILE"
|
||||||
|
msgstr "FILE"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:552
|
||||||
|
#, python-format
|
||||||
|
msgid "Invalid stage size: %r"
|
||||||
|
msgstr "Invalid stage size: %r"
|
||||||
|
Binary file not shown.
@ -1,101 +1,106 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Danmaku2ASS\n"
|
"Project-Id-Version: Danmaku2ASS\n"
|
||||||
"POT-Creation-Date: 2013-09-30 23:13+0800\n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2013-11-24 15:30+0800\n"
|
||||||
"Last-Translator: Star Brilliant <m13253@hotmail.com>\n"
|
"Last-Translator: Star Brilliant <m13253@hotmail.com>\n"
|
||||||
"Language: ja\n"
|
"Language: ja\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: danmaku2ass.py:133 danmaku2ass.py:170
|
#: danmaku2ass.py:130 danmaku2ass.py:165 danmaku2ass.py:195
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Invalid comment: %s"
|
msgid "Invalid comment: %s"
|
||||||
msgstr "無効なコメント:%s"
|
msgstr "無効なコメント:%s"
|
||||||
|
|
||||||
#: danmaku2ass.py:151
|
#: danmaku2ass.py:145 danmaku2ass.py:179 danmaku2ass.py:211 danmaku2ass.py:317
|
||||||
|
#: danmaku2ass.py:319 danmaku2ass.py:348
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Invalid comment: %r"
|
msgid "Invalid comment: %r"
|
||||||
msgstr "無効なコメント:%r"
|
msgstr "無効なコメント:%r"
|
||||||
|
|
||||||
#: danmaku2ass.py:215
|
#: danmaku2ass.py:496 danmaku2ass.py:539
|
||||||
msgid "OUTPUT"
|
|
||||||
msgstr "出力"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:215
|
|
||||||
msgid "Output file"
|
|
||||||
msgstr "出力ファイル"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:216
|
|
||||||
msgid "Stage size in pixels"
|
|
||||||
msgstr "ピクセル単位でステージのサイズ"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:216
|
|
||||||
msgid "WIDTHxHEIGHT"
|
|
||||||
msgstr "幅x高"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:217
|
|
||||||
msgid "(FONT) sans-serif"
|
msgid "(FONT) sans-serif"
|
||||||
msgstr "(FONT) MS PGothic"
|
msgstr "(FONT) MS PGothic"
|
||||||
|
|
||||||
#: danmaku2ass.py:217
|
#: danmaku2ass.py:522
|
||||||
msgid "FONT"
|
|
||||||
msgstr "フォント"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:217
|
|
||||||
msgid "Specify font face"
|
|
||||||
msgstr "フォントを指定する"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:218
|
|
||||||
msgid "Default font size"
|
|
||||||
msgstr "デフォルトのフォントサイズ"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:218
|
|
||||||
msgid "SIZE"
|
|
||||||
msgstr "サイズ"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:219
|
|
||||||
msgid "ALPHA"
|
|
||||||
msgstr "アルファ"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:219
|
|
||||||
msgid "Text opaque"
|
|
||||||
msgstr "テキストの不透明度"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:220
|
|
||||||
msgid "Duration of comment display"
|
|
||||||
msgstr "コメント表示の時間"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:220
|
|
||||||
msgid "SECONDS"
|
|
||||||
msgstr "秒数"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:221
|
|
||||||
msgid "HEIGHT"
|
|
||||||
msgstr "高度"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:221
|
|
||||||
msgid "Reserve blank on the bottom of the stage"
|
|
||||||
msgstr "ステージの下にブランクを予備する"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:222
|
|
||||||
msgid "Reduce the amount of comments if stage is full"
|
|
||||||
msgstr "ステージがいっぱいになったのときにコメントの量を減らす"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:223
|
|
||||||
msgid "Comment file to be processed"
|
|
||||||
msgstr "ファイルが処理されるコメント"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:223
|
|
||||||
msgid "FILE"
|
|
||||||
msgstr "ファイル"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:230
|
|
||||||
#, python-format
|
|
||||||
msgid "Invalid stage size: %r"
|
|
||||||
msgstr "無効なステージサイズ:%r"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:236
|
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Unknown comment file format: %s"
|
msgid "Unknown comment file format: %s"
|
||||||
msgstr "未知のコメントファイル形式:%s"
|
msgstr "未知のコメントファイル形式:%s"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:537
|
||||||
|
msgid "OUTPUT"
|
||||||
|
msgstr "出力"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:537
|
||||||
|
msgid "Output file"
|
||||||
|
msgstr "出力ファイル"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:538
|
||||||
|
msgid "Stage size in pixels"
|
||||||
|
msgstr "ピクセル単位でステージのサイズ"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:538
|
||||||
|
msgid "WIDTHxHEIGHT"
|
||||||
|
msgstr "幅x高"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:539
|
||||||
|
msgid "FONT"
|
||||||
|
msgstr "フォント"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:539
|
||||||
|
#, python-format
|
||||||
|
msgid "Specify font face [default: %s]"
|
||||||
|
msgstr "フォントを指定する [デフォルト: %s]"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:540
|
||||||
|
#, python-format
|
||||||
|
msgid "Default font size [default: %s]"
|
||||||
|
msgstr "デフォルトのフォントサイズ [デフォルト: %s]"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:540
|
||||||
|
msgid "SIZE"
|
||||||
|
msgstr "サイズ"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:541
|
||||||
|
msgid "ALPHA"
|
||||||
|
msgstr "アルファ"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:541
|
||||||
|
msgid "Text opaque"
|
||||||
|
msgstr "テキストの不透明度"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:542
|
||||||
|
#, python-format
|
||||||
|
msgid "Duration of comment display [default: %s]"
|
||||||
|
msgstr "コメント表示の時間 [デフォルト: %s]"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:542
|
||||||
|
msgid "SECONDS"
|
||||||
|
msgstr "秒数"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:543
|
||||||
|
msgid "HEIGHT"
|
||||||
|
msgstr "高度"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:543
|
||||||
|
msgid "Reserve blank on the bottom of the stage"
|
||||||
|
msgstr "ステージの下にブランクを予備する"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:544
|
||||||
|
msgid "Reduce the amount of comments if stage is full"
|
||||||
|
msgstr "ステージがいっぱいになったのときにコメントの量を減らす"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:545
|
||||||
|
msgid "Comment file to be processed"
|
||||||
|
msgstr "ファイルが処理されるコメント"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:545
|
||||||
|
msgid "FILE"
|
||||||
|
msgstr "ファイル"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:552
|
||||||
|
#, python-format
|
||||||
|
msgid "Invalid stage size: %r"
|
||||||
|
msgstr "無効なステージサイズ:%r"
|
||||||
|
Binary file not shown.
@ -1,101 +1,106 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Danmaku2ASS\n"
|
"Project-Id-Version: Danmaku2ASS\n"
|
||||||
"POT-Creation-Date: 2013-09-30 23:13+0800\n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2013-11-24 15:30+0800\n"
|
||||||
"Last-Translator: Star Brilliant <m13253@hotmail.com>\n"
|
"Last-Translator: Star Brilliant <m13253@hotmail.com>\n"
|
||||||
"Language: zh_CN\n"
|
"Language: zh_CN\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: danmaku2ass.py:133 danmaku2ass.py:170
|
#: danmaku2ass.py:130 danmaku2ass.py:165 danmaku2ass.py:195
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Invalid comment: %s"
|
msgid "Invalid comment: %s"
|
||||||
msgstr "无效弹幕:%s"
|
msgstr "无效弹幕:%s"
|
||||||
|
|
||||||
#: danmaku2ass.py:151
|
#: danmaku2ass.py:145 danmaku2ass.py:179 danmaku2ass.py:211 danmaku2ass.py:317
|
||||||
|
#: danmaku2ass.py:319 danmaku2ass.py:348
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Invalid comment: %r"
|
msgid "Invalid comment: %r"
|
||||||
msgstr "无效弹幕:%r"
|
msgstr "无效弹幕:%r"
|
||||||
|
|
||||||
#: danmaku2ass.py:215
|
#: danmaku2ass.py:496 danmaku2ass.py:539
|
||||||
msgid "OUTPUT"
|
|
||||||
msgstr "输出"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:215
|
|
||||||
msgid "Output file"
|
|
||||||
msgstr "输出文件"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:216
|
|
||||||
msgid "Stage size in pixels"
|
|
||||||
msgstr "舞台尺寸的像素数目"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:216
|
|
||||||
msgid "WIDTHxHEIGHT"
|
|
||||||
msgstr "宽x高"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:217
|
|
||||||
msgid "(FONT) sans-serif"
|
msgid "(FONT) sans-serif"
|
||||||
msgstr "(FONT) SimHei"
|
msgstr "(FONT) SimHei"
|
||||||
|
|
||||||
#: danmaku2ass.py:217
|
#: danmaku2ass.py:522
|
||||||
msgid "FONT"
|
|
||||||
msgstr "字体"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:217
|
|
||||||
msgid "Specify font face"
|
|
||||||
msgstr "指定字体名称"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:218
|
|
||||||
msgid "Default font size"
|
|
||||||
msgstr "默认字号"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:218
|
|
||||||
msgid "SIZE"
|
|
||||||
msgstr "尺寸"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:219
|
|
||||||
msgid "ALPHA"
|
|
||||||
msgstr "ALPHA"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:219
|
|
||||||
msgid "Text opaque"
|
|
||||||
msgstr "文字不透明度"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:220
|
|
||||||
msgid "Duration of comment display"
|
|
||||||
msgstr "弹幕显示时长"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:220
|
|
||||||
msgid "SECONDS"
|
|
||||||
msgstr "秒数"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:221
|
|
||||||
msgid "HEIGHT"
|
|
||||||
msgstr "高度"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:221
|
|
||||||
msgid "Reserve blank on the bottom of the stage"
|
|
||||||
msgstr "在舞台底部预留空位"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:222
|
|
||||||
msgid "Reduce the amount of comments if stage is full"
|
|
||||||
msgstr "在舞台满时减少弹幕数量"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:223
|
|
||||||
msgid "Comment file to be processed"
|
|
||||||
msgstr "将要处理的弹幕文件"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:223
|
|
||||||
msgid "FILE"
|
|
||||||
msgstr "文件"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:230
|
|
||||||
#, python-format
|
|
||||||
msgid "Invalid stage size: %r"
|
|
||||||
msgstr "无效舞台尺寸:%r"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:236
|
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Unknown comment file format: %s"
|
msgid "Unknown comment file format: %s"
|
||||||
msgstr "未知的弹幕文件格式:%s"
|
msgstr "未知的弹幕文件格式:%s"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:537
|
||||||
|
msgid "OUTPUT"
|
||||||
|
msgstr "输出"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:537
|
||||||
|
msgid "Output file"
|
||||||
|
msgstr "输出文件"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:538
|
||||||
|
msgid "Stage size in pixels"
|
||||||
|
msgstr "舞台尺寸的像素数目"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:538
|
||||||
|
msgid "WIDTHxHEIGHT"
|
||||||
|
msgstr "宽x高"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:539
|
||||||
|
msgid "FONT"
|
||||||
|
msgstr "字体"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:539
|
||||||
|
#, python-format
|
||||||
|
msgid "Specify font face [default: %s]"
|
||||||
|
msgstr "指定字体名称 [默认: %s]"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:540
|
||||||
|
#, python-format
|
||||||
|
msgid "Default font size [default: %s]"
|
||||||
|
msgstr "默认字号 [默认: %s]"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:540
|
||||||
|
msgid "SIZE"
|
||||||
|
msgstr "尺寸"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:541
|
||||||
|
msgid "ALPHA"
|
||||||
|
msgstr "ALPHA"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:541
|
||||||
|
msgid "Text opaque"
|
||||||
|
msgstr "文字不透明度"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:542
|
||||||
|
#, python-format
|
||||||
|
msgid "Duration of comment display [default: %s]"
|
||||||
|
msgstr "弹幕显示时长 [默认: %s]"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:542
|
||||||
|
msgid "SECONDS"
|
||||||
|
msgstr "秒数"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:543
|
||||||
|
msgid "HEIGHT"
|
||||||
|
msgstr "高度"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:543
|
||||||
|
msgid "Reserve blank on the bottom of the stage"
|
||||||
|
msgstr "在舞台底部预留空位"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:544
|
||||||
|
msgid "Reduce the amount of comments if stage is full"
|
||||||
|
msgstr "在舞台满时减少弹幕数量"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:545
|
||||||
|
msgid "Comment file to be processed"
|
||||||
|
msgstr "将要处理的弹幕文件"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:545
|
||||||
|
msgid "FILE"
|
||||||
|
msgstr "文件"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:552
|
||||||
|
#, python-format
|
||||||
|
msgid "Invalid stage size: %r"
|
||||||
|
msgstr "无效舞台尺寸:%r"
|
||||||
|
Binary file not shown.
@ -1,101 +1,106 @@
|
|||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Danmaku2ASS\n"
|
"Project-Id-Version: Danmaku2ASS\n"
|
||||||
"POT-Creation-Date: 2013-09-30 23:13+0800\n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2013-11-24 15:30+0800\n"
|
||||||
"Last-Translator: Star Brilliant <m13253@hotmail.com>\n"
|
"Last-Translator: Star Brilliant <m13253@hotmail.com>\n"
|
||||||
"Language: zh_TW\n"
|
"Language: zh_TW\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=utf-8\n"
|
"Content-Type: text/plain; charset=utf-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
|
||||||
#: danmaku2ass.py:133 danmaku2ass.py:170
|
#: danmaku2ass.py:130 danmaku2ass.py:165 danmaku2ass.py:195
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Invalid comment: %s"
|
msgid "Invalid comment: %s"
|
||||||
msgstr "無效彈幕:%s"
|
msgstr "無效彈幕:%s"
|
||||||
|
|
||||||
#: danmaku2ass.py:151
|
#: danmaku2ass.py:145 danmaku2ass.py:179 danmaku2ass.py:211 danmaku2ass.py:317
|
||||||
|
#: danmaku2ass.py:319 danmaku2ass.py:348
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Invalid comment: %r"
|
msgid "Invalid comment: %r"
|
||||||
msgstr "無效彈幕:%r"
|
msgstr "無效彈幕:%r"
|
||||||
|
|
||||||
#: danmaku2ass.py:215
|
#: danmaku2ass.py:496 danmaku2ass.py:539
|
||||||
msgid "OUTPUT"
|
|
||||||
msgstr "輸出"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:215
|
|
||||||
msgid "Output file"
|
|
||||||
msgstr "輸出檔案"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:216
|
|
||||||
msgid "Stage size in pixels"
|
|
||||||
msgstr "舞臺尺寸的畫素數目"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:216
|
|
||||||
msgid "WIDTHxHEIGHT"
|
|
||||||
msgstr "寬x高"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:217
|
|
||||||
msgid "(FONT) sans-serif"
|
msgid "(FONT) sans-serif"
|
||||||
msgstr "(FONT) Microsoft JhengHei"
|
msgstr "(FONT) Microsoft JhengHei"
|
||||||
|
|
||||||
#: danmaku2ass.py:217
|
#: danmaku2ass.py:522
|
||||||
msgid "FONT"
|
|
||||||
msgstr "字型"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:217
|
|
||||||
msgid "Specify font face"
|
|
||||||
msgstr "指定字型名稱"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:218
|
|
||||||
msgid "Default font size"
|
|
||||||
msgstr "默認字型大小"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:218
|
|
||||||
msgid "SIZE"
|
|
||||||
msgstr "尺寸"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:219
|
|
||||||
msgid "ALPHA"
|
|
||||||
msgstr "ALPHA"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:219
|
|
||||||
msgid "Text opaque"
|
|
||||||
msgstr "文字不透明度"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:220
|
|
||||||
msgid "Duration of comment display"
|
|
||||||
msgstr "彈幕顯示時長"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:220
|
|
||||||
msgid "SECONDS"
|
|
||||||
msgstr "秒數"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:221
|
|
||||||
msgid "HEIGHT"
|
|
||||||
msgstr "高度"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:221
|
|
||||||
msgid "Reserve blank on the bottom of the stage"
|
|
||||||
msgstr "在舞臺底部預留空位"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:222
|
|
||||||
msgid "Reduce the amount of comments if stage is full"
|
|
||||||
msgstr "在舞臺滿時減少彈幕數量"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:223
|
|
||||||
msgid "Comment file to be processed"
|
|
||||||
msgstr "將要處理的彈幕檔案"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:223
|
|
||||||
msgid "FILE"
|
|
||||||
msgstr "檔案"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:230
|
|
||||||
#, python-format
|
|
||||||
msgid "Invalid stage size: %r"
|
|
||||||
msgstr "無效舞臺尺寸:%r"
|
|
||||||
|
|
||||||
#: danmaku2ass.py:236
|
|
||||||
#, python-format
|
#, python-format
|
||||||
msgid "Unknown comment file format: %s"
|
msgid "Unknown comment file format: %s"
|
||||||
msgstr "未知的彈幕檔案格式:%s"
|
msgstr "未知的彈幕檔案格式:%s"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:537
|
||||||
|
msgid "OUTPUT"
|
||||||
|
msgstr "輸出"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:537
|
||||||
|
msgid "Output file"
|
||||||
|
msgstr "輸出檔案"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:538
|
||||||
|
msgid "Stage size in pixels"
|
||||||
|
msgstr "舞臺尺寸的畫素數目"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:538
|
||||||
|
msgid "WIDTHxHEIGHT"
|
||||||
|
msgstr "寬x高"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:539
|
||||||
|
msgid "FONT"
|
||||||
|
msgstr "字型"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:539
|
||||||
|
#, python-format
|
||||||
|
msgid "Specify font face [default: %s]"
|
||||||
|
msgstr "指定字型名稱 [默認: %s]"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:540
|
||||||
|
#, python-format
|
||||||
|
msgid "Default font size [default: %s]"
|
||||||
|
msgstr "默認字型大小 [默認: %s]"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:540
|
||||||
|
msgid "SIZE"
|
||||||
|
msgstr "尺寸"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:541
|
||||||
|
msgid "ALPHA"
|
||||||
|
msgstr "ALPHA"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:541
|
||||||
|
msgid "Text opaque"
|
||||||
|
msgstr "文字不透明度"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:542
|
||||||
|
#, python-format
|
||||||
|
msgid "Duration of comment display [default: %s]"
|
||||||
|
msgstr "彈幕顯示時長 [默認: %s]"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:542
|
||||||
|
msgid "SECONDS"
|
||||||
|
msgstr "秒數"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:543
|
||||||
|
msgid "HEIGHT"
|
||||||
|
msgstr "高度"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:543
|
||||||
|
msgid "Reserve blank on the bottom of the stage"
|
||||||
|
msgstr "在舞臺底部預留空位"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:544
|
||||||
|
msgid "Reduce the amount of comments if stage is full"
|
||||||
|
msgstr "在舞臺滿時減少彈幕數量"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:545
|
||||||
|
msgid "Comment file to be processed"
|
||||||
|
msgstr "將要處理的彈幕檔案"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:545
|
||||||
|
msgid "FILE"
|
||||||
|
msgstr "檔案"
|
||||||
|
|
||||||
|
#: danmaku2ass.py:552
|
||||||
|
#, python-format
|
||||||
|
msgid "Invalid stage size: %r"
|
||||||
|
msgstr "無效舞臺尺寸:%r"
|
||||||
|
Loading…
Reference in New Issue
Block a user