[Sie-announce] SIEコード [2219] 転送量を減らすため、エラーコードの日本語部分を英語に統一させた

Back to archive index

svnno****@sourc***** svnno****@sourc*****
2010年 12月 11日 (土) 23:41:35 JST


Revision: 2219
          http://sourceforge.jp/projects/sie/svn/view?view=rev&revision=2219
Author:   dhrname
Date:     2010-12-11 23:41:35 +0900 (Sat, 11 Dec 2010)

Log Message:
-----------
転送量を減らすため、エラーコードの日本語部分を英語に統一させた

Modified Paths:
--------------
    branches/06x/066/org/w3c/core.js
    branches/06x/066/org/w3c/dom/svg.js

Modified: branches/06x/066/org/w3c/core.js
===================================================================
--- branches/06x/066/org/w3c/core.js	2010-12-11 14:37:59 UTC (rev 2218)
+++ branches/06x/066/org/w3c/core.js	2010-12-11 14:41:35 UTC (rev 2219)
@@ -82,17 +82,17 @@
  this.code = n;
  var s = [
    "", //数合わせのため
-   "Index Size Error (入力値が大きすぎるか、マイナスの値ではありませんか)",
-   "DOMString Size Error (テキストの指定範囲が文字数を超えていませんか)",
-   "Hierarchy Request Error (先祖ノードを子ノードとして付け加えることができないようです)",
-   "Wrong Document Error (ノードがどこのドキュメントノードに属しているかお確かめください)",
-   "Invalid Character Error (入力された文字列に認識できない記号を使っているか、文字列が空ではないでしょうか)",
+   "Index Size Error",
+   "DOMString Size Error",
+   "Hierarchy Request Error",
+   "Wrong Document Error",
+   "Invalid Character Error",
    "No Data Allowed Error",
    "No Modification Allowed Error",
-   "Not Found Error (お探しになっているノードが見つかりませんでした)",
+   "Not Found Error",
    "Not Supported Error",
-   "Inuse Attribute Error (その属性ノードはすでに他の要素へ属していないでしょうか)",
-   "Invalid State Error (仕様や注意事項をよくお読みの上、正しくお使いください)",
+   "Inuse Attribute Error",
+   "Invalid State Error",
    "Syntax Error",
    "Invalid Modification Error",
    "Namespace Error",

Modified: branches/06x/066/org/w3c/dom/svg.js
===================================================================
--- branches/06x/066/org/w3c/dom/svg.js	2010-12-11 14:37:59 UTC (rev 2218)
+++ branches/06x/066/org/w3c/dom/svg.js	2010-12-11 14:41:35 UTC (rev 2219)
@@ -112,11 +112,11 @@
 function SVGException(code) {
   /*unsigned short*/  this.code = code;
   if (this.code === SVGException.SVG_WRONG_TYPE_ERR) {
-    this.message = "SVG Wrong Type Error (SVGの型が一致しないのではないでしょうか)";
+    this.message = "SVG Wrong Type Error";
   } else if (this.code === SVGException.SVG_INVALID_VALUE_ERR) {
-    this.message = "SVG Invalid Value Error (SVGに認識できない数値が使われていませんか)";
+    this.message = "SVG Invalid Value Error";
   } else if (this.code === SVGException.SVG_MATRIX_NOT_INVERTABLE) {
-    this.message = "SVG Matrix Not Invertable (SVGで指定された逆行列ができるかどうかお確かめください)";
+    this.message = "SVG Matrix Not Invertable";
   }
   return this;
 };




Sie-announce メーリングリストの案内
Back to archive index