Skip to content

Commit

Permalink
fix conflict
Browse files Browse the repository at this point in the history
  • Loading branch information
kmuto committed Oct 23, 2018
2 parents 3ff5d8b + 09af72c commit cade7ad
Show file tree
Hide file tree
Showing 3 changed files with 24 additions and 4 deletions.
2 changes: 2 additions & 0 deletions bin/review
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,12 @@ usage: review <command> [<args>]
Re:VIEW commands are:
init : generate Re:VIEW project directory.
update : update Re:VIEW project to newest environment.
preproc : preprocess Re:VIEW document file.
compile : convert Re:VIEW document file.
epubmaker : build EPUB.
webmaker : build web pages.
epub2html : convert EPUB to single HTML.
pdfmaker : build PDF with LaTeX.
textmaker : build text files.
vol : show volume of Re:VIEW document.
Expand Down
18 changes: 18 additions & 0 deletions lib/review/i18n.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,24 @@ ja:
advtitle: "広告"
profiletitle: "著者紹介"
backcovertitle: "裏表紙"
"!! No *.yml file with 'review_version' was found. Aborted. !!": "!! 'review_version' を持つ *.yml ファイルが見つかりませんでした。中止します。 !!"
"!! %s file(s) is obsoleted. Run 'review-catalog-converter' to convert to 'catalog.yml' and remove old files. Aborted. !!": "!! %s ファイルはもう使われません。'review-catalog-converter' を実行して 'catalog.yml' に変換し、古いファイルは削除してください。中止します。 !!"
"** review-update updates your project to %s **": "** review-update はプロジェクトを %s に更新します **"
"** There is custom layouts/layout.tex.erb file. Updating may break to make PDF until you fix layout.tex.erb. Do you really proceed to update? **": "** 固有の layouts/layout.tex.erb ファイルが存在します。プロジェクトを更新した後、このファイルを修正しないと、PDF の生成に問題が生じるかもしれません。本当に進めますか? **"
"** There is review-ext.rb file. You need to update it by yourself. **": "** review-ext.rb ファイルが存在します。このファイルはご自身で更新してください。 **"
"%s: Update '%s' to '%s'?": "%s: '%s' を '%s' に更新しますか?"
"%s will be overridden with Re:VIEW version (%s). Do you really proceed?": "%s は Re:VIEW バージョンのもの (%s) で置き換えられます。本当に進めますか?"
"%s: 'chapter_quote' now takes 2 values. Update '%s' to '%s'?": "%s: 'chapter_quote' は2つの値を取るようになりました。'%s' を '%s' に更新しますか?"
"%s: !! 'texdocumentclass' uses new class '%s' already, but you specified '%s'. This tool can't handle such migration. Ignored. !!": "%s: !! 'texdocumentclass' は新クラス '%s' をすでに使うようになっていますが、'%s' が指定されました。このツールはそのような移行には対応していません。無視します。 !!"
"%s: 'texdocumentclass' uses the old class '%s'. By default it is migrated to '%s', but you specify '%s'. Do you really migrate 'texdocumentclass' to '%s'?": "%s: 'texdocumentclass' は旧クラス '%s' を使っています。デフォルトの移行先は '%s' ですが、'%s' が指定されました。本当に 'texdocumentclass' を '%s' に移行しますか?"
"%s: 'texdocumentclass' uses the old class '%s'. By default it is migrated to '%s'. Do you really migrate 'texdocumentclass' to '%s'?": "%s: 'texdocumentclass' は旧クラス '%s' を使っています。デフォルトの移行先は '%s' です。本当に 'texdocumentclass' を '%s' に移行しますか?"
"%s: previous 'texdocumentclass' option '%s' is safely replaced with '%s'.": "%s: 'texdocumentclass' の古いオプション '%s' は '%s' に安全に置き換えられました。"
"%s: previous 'texdocumentclass' option '%s' couldn't be converted fully. '%s' is suggested. Do you really proceed?": "%s: 'texdocumentclass' の古いオプション '%s' は完全には置き換えできませんでした。'%s' を提案します。本当に進めますか?"
"%s: ** 'texdocumentclass' specifies '%s'. Because this is unknown class for this tool, you need to update it by yourself if it won't work. **": "%s: ** 'texdocumentclass' はクラス '%s' を指定しています。このツールには未知のクラスなので、もし動作しないようであればご自身で更新する必要があります。 **"
"%s: ** '%s' is unknown class. Ignored. **": "%s: ** '%s' は未知のクラスです。無視します。 **"
"%s: 'texcommand' has options ('%s'). Move it to 'texoptions'?": "%s: 'texcommand' にオプションがあります ('%s')。'texoptions' に移動しますか?"
"%s: 'dvicommand' has options ('%s'). Move it to 'dvioptions'?": "%s: 'dvicommand' にオプションがあります ('%s')。'dvioptions' に移動しますか?"
"Finished.": "完了しました。"

en:
image: "Figure "
Expand Down
8 changes: 4 additions & 4 deletions lib/review/update.rb
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ def parse_options(args)
end

def parse_ymls(dir)
language = 'ja'
language = 'en'

Dir.glob(File.join(dir, '*.yml')).sort.each do |yml|
begin
Expand Down Expand Up @@ -243,7 +243,7 @@ def update_version
flag = nil
end

if confirm("%s: Update 'review_version' to '%s'?", [File.basename(yml), TARGET_VERSION], flag)
if confirm("%s: Update '%s' to '%s'?", [File.basename(yml), 'review_version', TARGET_VERSION], flag)
rewrite_yml(yml, 'review_version', TARGET_VERSION)
end
end
Expand Down Expand Up @@ -287,14 +287,14 @@ def update_epub_version
@epub_ymls.each do |yml|
config = YAML.load_file(yml)
if config['epubversion'].present? && config['epubversion'].to_f < EPUB_VERSION.to_f
if confirm("%s: Update 'epubversion' to '%s' from '%s'?", [File.basename(yml), EPUB_VERSION, config['epubversion']])
if confirm("%s: Update '%s' to '%s' from '%s'?", [File.basename(yml), 'epubversion', EPUB_VERSION, config['epubversion']])
rewrite_yml(yml, 'epubversion', EPUB_VERSION)
end
end
if !config['htmlversion'].present? || config['htmlversion'].to_f >= HTML_VERSION.to_f
next
end
if confirm("%s: Update 'htmlversion' to '%s' from '%s'?", [File.basename(yml), HTML_VERSION, config['htmlversion']])
if confirm("%s: Update '%s' to '%s' from '%s'?", [File.basename(yml), 'htmlversion', HTML_VERSION, config['htmlversion']])
rewrite_yml(yml, 'htmlversion', HTML_VERSION)
end
end
Expand Down

0 comments on commit cade7ad

Please sign in to comment.