OSDN Git Service

パーツの管理で、バージョンの入力ダイアログが「ホームページの入力」になっていた文言の修正
authorseraphy <seraphy@5b6e9025-a2e8-4882-b233-f889982098c5>
Sat, 23 Nov 2013 15:22:54 +0000 (15:22 +0000)
committerseraphy <seraphy@5b6e9025-a2e8-4882-b233-f889982098c5>
Sat, 23 Nov 2013 15:22:54 +0000 (15:22 +0000)
git-svn-id: https://svn.sourceforge.jp/svnroot/charactermanaj/trunk@82 5b6e9025-a2e8-4882-b233-f889982098c5

resources/languages/partsmanagedialog.xml
resources/languages/partsmanagedialog_ja.xml
src/charactermanaj/ui/PartsManageDialog.java

index e90d94f..61c7d6b 100644 (file)
@@ -16,7 +16,7 @@
        <entry key="confirm.authorConflict">Is the batch application done though two or more authors have been selected?</entry>\r
        <entry key="confirm">Confirm</entry>\r
        <entry key="input.downloadURL">Input the Download URL</entry>\r
-       <entry key="input.homepageURL">Input the Homepage URL</entry>\r
+       <entry key="input.version">Input the version number</entry>\r
        <entry key="confirm.cancel">May I annul the edit?</entry>\r
        <entry key="column.partsid">Parts ID</entry>\r
        <entry key="column.lastmodified">Last-Modified</entry>\r
index edf6938..398b292 100644 (file)
@@ -16,7 +16,7 @@
        <entry key="confirm.authorConflict">複数の作者が選択されていますが、一括適用を行いますか?</entry>\r
        <entry key="confirm">確認</entry>\r
        <entry key="input.downloadURL">ダウンロードURLの入力</entry>\r
-       <entry key="input.homepageURL">ホームページの入力</entry>\r
+       <entry key="input.version">バージョン番号の入力</entry>\r
        <entry key="confirm.cancel">編集を破棄してもよろしいですか?</entry>\r
        <entry key="column.partsid">パーツID</entry>\r
        <entry key="column.lastmodified">更新日</entry>\r
index 622174e..4906321 100644 (file)
@@ -501,7 +501,8 @@ public class PartsManageDialog extends JDialog {
                PartsManageTableRow firstRow = partsManageTableModel.getRow(selRows[0]);\r
                double version = firstRow.getVersion();\r
                String strVersion = (version < 0) ? "" : Double.toString(version);\r
-               String strVersion_new = JOptionPane.showInputDialog(this, strings.getProperty("input.homepageURL"), strVersion);\r
+               String strVersion_new = JOptionPane.showInputDialog(this,\r
+                               strings.getProperty("input.version"), strVersion);\r
                if (strVersion_new == null || strVersion.equals(strVersion_new)) {\r
                        // キャンセルされたか、内容に変化ない場合は何もしない\r
                        return;\r