-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
8 changed files
with
216 additions
and
77 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.gradle/ | ||
gradle/ | ||
build/ | ||
test/ |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,23 @@ | ||
$global:messages = Data { | ||
ConvertFrom-StringData -StringData @' | ||
E001001 = The control statement is not closed correctly. | ||
E002001 = This open was duplicated, cannot be performed on a control statement that has already been opened. | ||
E002002 = Incorrect combination of control statements. | ||
E002003 = Close is invalid for non-nested control statements. | ||
E002004 = The number of header/footer lines exceeds the predefined total number of block lines. | ||
E002005 = Output is invalid for non-nested control statements. | ||
E002006 = The description control statement is not defined in the code control statement. | ||
E002007 = The assignment control statement is not defined in the code control statement. | ||
E002008 = The condition control statement is not defined in the code control statement. | ||
W002001 = The extended parameter value is invalid and will be ignored. | ||
E003001 = Invalid number of lines. | ||
E003002 = Cannot start output for a specified line, because that has already been output. | ||
E003003 = Output cannot be started for rows outbounds the transaction range that have already been started. | ||
E003004 = Cannot operation for a specified line, because that has already been output. | ||
E003005 = The number of lines specified for output is less than one. | ||
E004001 = The search starting point is unknown. | ||
'@ | ||
} | ||
$global:messages = Data { | ||
ConvertFrom-StringData -StringData @' | ||
E001001 = The control statement is not closed correctly. | ||
E002001 = This open was duplicated, cannot be performed on a control statement that has already been opened. | ||
E002002 = Incorrect combination of control statements. | ||
E002003 = Close is invalid for non-nested control statements. | ||
E002004 = The number of header/footer lines exceeds the predefined total number of block lines. | ||
E002005 = Output is invalid for non-nested control statements. | ||
E002006 = The description control statement is not defined in the code control statement. | ||
E002007 = The assignment control statement is not defined in the code control statement. | ||
E002008 = The condition control statement is not defined in the code control statement. | ||
W002001 = The extended parameter value is invalid and will be ignored. | ||
E003001 = Invalid number of lines. | ||
E003002 = Cannot start output for a specified line, because that has already been output. | ||
E003003 = Output cannot be started for rows outbounds the transaction range that have already been started. | ||
E003004 = Cannot operation for a specified line, because that has already been output. | ||
E003005 = The number of lines specified for output is less than one. | ||
E004001 = The search starting point is unknown. | ||
E005001 = The specified a template file was not found. | ||
E005002 = The specified output path is not a directory. | ||
E005003 = The specified path is not a file or directory. | ||
'@ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,22 @@ | ||
# culture="ja-JP" | ||
ConvertFrom-StringData @' | ||
E001001 = 制御文が正しく閉じられていません。 | ||
E002001 = 既にOpenされている制御文に重複したOpenは実行できません。 | ||
E002002 = 制御文の組み合わせが正しくありません。 | ||
E002003 = ネストしない制御文に対するCloseは無効です。 | ||
E002004 = ヘッダー/フッター行数が定義済みのブロック行数を超えています。 | ||
E002005 = ネストしない制御文に対する出力は無効です。 | ||
E002006 = コード制御文(codes)中に記述制御文(description)が未定義です。 | ||
E002007 = コード制御文(codes)中に代入式制御文(assignment)が未定義です。 | ||
E002008 = コード制御文(codes)中に条件制御文(condition)が未定義です。 | ||
W002001 = 拡張パラメーター値が不正なため、無視します。 | ||
E003001 = 行数が不正です。 | ||
E003002 = 既に出力が確定している行に対して、出力を開始できません。 | ||
E003003 = 既に開始されているトランザクション範囲外の行に対して、出力を開始できません。 | ||
E003004 = 既に出力が確定している行には操作できません。 | ||
E003005 = 出力指定行数が1未満です。 | ||
E004001 = 検索起点が不明です。 | ||
'@ | ||
# culture="ja-JP" | ||
ConvertFrom-StringData @' | ||
E001001 = 制御文が正しく閉じられていません。 | ||
E002001 = 既にOpenされている制御文に重複したOpenは実行できません。 | ||
E002002 = 制御文の組み合わせが正しくありません。 | ||
E002003 = ネストしない制御文に対するCloseは無効です。 | ||
E002004 = ヘッダー/フッター行数が定義済みのブロック行数を超えています。 | ||
E002005 = ネストしない制御文に対する出力は無効です。 | ||
E002006 = コード制御文(codes)中に記述制御文(description)が未定義です。 | ||
E002007 = コード制御文(codes)中に代入式制御文(assignment)が未定義です。 | ||
E002008 = コード制御文(codes)中に条件制御文(condition)が未定義です。 | ||
W002001 = 拡張パラメーター値が不正なため、無視します。 | ||
E003001 = 行数が不正です。 | ||
E003002 = 既に出力が確定している行に対して、出力を開始できません。 | ||
E003003 = 既に開始されているトランザクション範囲外の行に対して、出力を開始できません。 | ||
E003004 = 既に出力が確定している行には操作できません。 | ||
E003005 = 出力指定行数が1未満です。 | ||
E004001 = 検索起点が不明です。 | ||
E005001 = 指定されたテンプレートファイルがありません。 | ||
E005002 = 指定された出力先がディレクトリではありません。 | ||
E005003 = 指定されたパスはファイルやディレクトリではありません。 | ||
'@ |