OSDN Git Service

(split) LDP: translation snapshots of ja.po.
authorAkihiro MOTOKI <amotoki@gmail.com>
Tue, 8 May 2012 10:28:57 +0000 (19:28 +0900)
committerAkihiro MOTOKI <amotoki@gmail.com>
Tue, 8 May 2012 10:28:57 +0000 (19:28 +0900)
po4a/math/po/ja.po
po4a/special/po/ja.po

index 6d9d5e6..3721799 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "POT-Creation-Date: 2012-05-01 04:21+0900\n"
-"PO-Revision-Date: 2012-05-05 02:25+0900\n"
+"PO-Revision-Date: 2012-05-08 17:02+0900\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
 "Language: \n"
@@ -6394,6 +6394,11 @@ msgid ""
 "after B<matherr>()  returns, the system then returns to the math function, "
 "which in turn returns to the caller."
 msgstr ""
+"System V Interface Definition (SVID) では、各種の数学関数は数学的な\n"
+"例外を検出した場合に B<matherr>() を呼ばれる関数を起動すべきである、\n"
+"と規定されている。この関数は数学関数が返る前に呼び出される。\n"
+"B<matherr>() が返った後に、システムは数学関数に戻り、\n"
+"それから呼び出し元に返る。"
 
 #. type: Plain text
 #: build/C/man3/matherr.3:60
@@ -6403,6 +6408,12 @@ msgid ""
 "B<fenv>(3).  This page documents the glibc B<matherr>()  mechanism as an aid "
 "for maintaining and porting older applications."
 msgstr ""
+"B<matherr>() の仕組みは glibc によりサポートされているが、\n"
+"現在は廃止予定の扱いである。\n"
+"新しくアプリケーションを作成する際には、\n"
+"B<math_error>(7) と B<fenv>(3) で説明されている手法を使用すべきである。\n"
+"このマニュアルページでは、古いアプリケーションを保守したり移植する際の\n"
+"助けとなるよう、 glibc の B<matherr>() の仕組みについて説明する。"
 
 #. type: Plain text
 #: build/C/man3/matherr.3:73
@@ -6411,6 +6422,10 @@ msgid ""
 "feature test macro (before including I<any> header files), and assign the "
 "value B<_SVID_> to the external variable B<_LIB_VERSION>."
 msgstr ""
+"B<matherr>() を使用するためには、\n"
+"プログラマは (I<どの>ヘッダファイルをインクルードするよりも前に)\n"
+"B<_SVID_SOURCE> 機能検査マクロを定義し、値 B<_SVID_> をグローバル変数\n"
+"B<_LIB_VERSION> に代入しなければならない。"
 
 #. type: Plain text
 #: build/C/man3/matherr.3:85
@@ -6422,6 +6437,13 @@ msgid ""
 "with one argument, a pointer to an I<exception> structure, defined as "
 "follows:"
 msgstr ""
+"デフォルト版の B<matherr>() がシステムによって提供されている。\n"
+"デフォルト版は何も行わず、0 を返す (このことの重要性については\n"
+"下記を参照)。プログラマが B<matherr>() を定義することで、\n"
+"デフォルト版を上書きすることができる。\n"
+"プログラマが定義した関数は例外が発生した際に起動される。\n"
+"この関数は引き数 1 個で起動され、その引き数は以下に示す\n"
+"I<exception> 構造体へのポインタである。"
 
 #. type: Plain text
 #: build/C/man3/matherr.3:95
@@ -6446,7 +6468,7 @@ msgstr ""
 #. type: Plain text
 #: build/C/man3/matherr.3:101
 msgid "The I<type> field has one of the following values:"
-msgstr ""
+msgstr "I<type> フィールドは以下の値のいずれかである。"
 
 #. type: TP
 #: build/C/man3/matherr.3:101
@@ -6461,6 +6483,9 @@ msgid ""
 "which the function is defined).  The return value depends on the function; "
 "I<errno> is set to B<EDOM>."
 msgstr ""
+"領域エラー (domain error) が発生した\n"
+"(関数の引き数が関数が定義された範囲外であった)。\n"
+"返り値は関数によって異なり、 I<error> には B<EDOM> が設定される。"
 
 #. type: TP
 #: build/C/man3/matherr.3:109
@@ -6475,6 +6500,10 @@ msgid ""
 "value in most cases is B<HUGE> (the largest single precision floating-point "
 "number), appropriately signed.  In most cases, I<errno> is set to B<EDOM>."
 msgstr ""
+"極エラー (pole error) が発生した (関数の結果が無限大である)。\n"
+"返り値はほとんどの場合 B<HUGE> (最大の単精度浮動小数点数) となり、\n"
+"たいていは符号付きである。\n"
+"ほとんどの場合、I<errno> には B<EDOM> が設定される。"
 
 #. type: TP
 #: build/C/man3/matherr.3:120
@@ -6488,6 +6517,9 @@ msgid ""
 "An overflow occurred.  In most cases, the value B<HUGE> is returned, and "
 "I<errno> is set to B<ERANGE>."
 msgstr ""
+"オーバーフローが発生した。\n"
+"ほとんどの場合、値 B<HUGE> が返され、\n"
+"I<errno> には B<ERANGE> が設定される。"
 
 #. type: TP
 #: build/C/man3/matherr.3:129
@@ -6500,6 +6532,8 @@ msgstr "B<UNDERFLOW>"
 msgid ""
 "An underflow occurred.  0.0 is returned, and I<errno> is set to B<ERANGE>."
 msgstr ""
+"アンダーフローが発生した。\n"
+"0.0 が返され、 I<errno> に B<ERANGE> が設定される。"
 
 #. type: TP
 #: build/C/man3/matherr.3:136
@@ -6513,6 +6547,8 @@ msgid ""
 "Total loss of significance.  0.0 is returned, and I<errno> is set to "
 "B<ERANGE>."
 msgstr ""
+"Total loss of significance が発生した。\n"
+"0.0 が返され、 I<errno> に B<ERANGE> が設定される。"
 
 #. type: TP
 #: build/C/man3/matherr.3:143
@@ -6526,6 +6562,8 @@ msgid ""
 "Partial loss of significance.  This value is unused on glibc (and many other "
 "systems)."
 msgstr ""
+"Partial loss of significance が発生した。\n"
+"この値は glibc (や他の多くのシステム) で使用されていない。"
 
 #. type: Plain text
 #: build/C/man3/matherr.3:156
@@ -6533,6 +6571,8 @@ msgid ""
 "The I<arg1> and I<arg2> fields are the arguments supplied to the function "
 "(I<arg2> is undefined for functions that take only one argument)."
 msgstr ""
+"フィールド I<arg1> と I<arg2> は関数に渡された引き数である\n"
+"(引き数を一つしか取らない関数の場合は I<arg2> は不定となる)。"
 
 #. type: Plain text
 #: build/C/man3/matherr.3:164
@@ -6541,6 +6581,9 @@ msgid ""
 "return to its caller.  The programmer-defined B<matherr>()  can modify this "
 "field to change the return value of the math function."
 msgstr ""
+"I<retval> フィールドはその数学関数が呼び出し元に返そうとしている返り値\n"
+"を示す。プログラマが定義した B<matherr>() でこのフィールドを変更する\n"
+"ことで、その数学関数の返り値を変更することができる。"
 
 #. type: Plain text
 #: build/C/man3/matherr.3:171
@@ -6549,6 +6592,9 @@ msgid ""
 "described above, and may print an error message on standard error (see "
 "below)."
 msgstr ""
+"B<matherr>() 関数が 0 を返した場合、\n"
+"システムは I<errno> を上記の通り設定し、標準エラー出力に\n"
+"エラーメッセージを表示することがある (下記参照)。"
 
 #. type: Plain text
 #: build/C/man3/matherr.3:177
@@ -6556,12 +6602,14 @@ msgid ""
 "If the B<matherr>()  function returns a nonzero value, then the system does "
 "not set I<errno>, and doesn't print an error message."
 msgstr ""
+"B<matherr>() 関数が 0 以外の値を返した場合、\n"
+"システムは I<errno> を設定せず、エラーメッセージの表示も行わない。"
 
 #. type: SS
 #: build/C/man3/matherr.3:177
 #, no-wrap
 msgid "Math functions that employ matherr()"
-msgstr ""
+msgstr "matherr() を利用している数学関数"
 
 #. type: Plain text
 #: build/C/man3/matherr.3:187
@@ -6571,6 +6619,10 @@ msgid ""
 "E<gt>type> when calling B<matherr>().  The \"Result\" column is the default "
 "return value assigned to I<exc-E<gt>retval>."
 msgstr ""
+"下記の表は、関数と B<matherr>() が呼び出される状況の一覧である。\n"
+"\"Type\" 列 は B<matherr>() が呼び出される際に I<exc-E<gt>type> に\n"
+"設定される値を示す。 \"Result\" 列は I<exc-E<gt>retval> に\n"
+"設定されるデフォルトの返り値を示す。"
 
 #. type: Plain text
 #: build/C/man3/matherr.3:193
@@ -6579,11 +6631,14 @@ msgid ""
 "B<matherr>()  returns zero.  If the \"Msg?\" columns contains \"y\", then "
 "the system prints an error message on standard error."
 msgstr ""
+"\"Msg?\" 列と \"errno\" 列は B<matherr>() が 0 を返した場合のデフォルトの\n"
+"動作を示す。 \"Msg?\" 列に \"y\" が入っている場合、システムは標準エラー\n"
+"出力にエラーメッセージを表示する。"
 
 #. type: Plain text
 #: build/C/man3/matherr.3:195
 msgid "The table uses the following notations and abbreviations:"
-msgstr ""
+msgstr "以下の表では、下記の記法と省略形を使用している。"
 
 #. type: Plain text
 #: build/C/man3/matherr.3:207
@@ -6599,12 +6654,21 @@ msgid ""
 "|x|      absolute value of x\n"
 "X_TLOSS  is a constant defined in I<E<lt>math.hE<gt>>\n"
 msgstr ""
+"x        関数の最初の引き数\n"
+"y        関数の二番目の引き数\n"
+"fin      引き数の値が無限大\n"
+"neg      引き数が負の値\n"
+"int      引き数が整数値\n"
+"o/f      結果のオーバーフロー\n"
+"u/f      結果のアンダーフロー\n"
+"|x|      x の絶対値\n"
+"X_TLOSS  I<E<lt>math.hE<gt>> で定義される定数\n"
 
 #. type: tbl table
 #: build/C/man3/matherr.3:214
 #, no-wrap
 msgid "Function\tType\tResult\tMsg?\terrno\n"
-msgstr ""
+msgstr "Function\tType\tResult\tMsg?\terrno\n"
 
 #. type: tbl table
 #: build/C/man3/matherr.3:215
@@ -6956,6 +7020,16 @@ msgid ""
 "alternative return value that B<matherr>()  should assign as the return "
 "value of the math function."
 msgstr ""
+"以下のサンプルプログラムは B<log>(3) を呼び出した際の\n"
+"B<matherr>() の使用法を示したものである。\n"
+"最初の引き数は B<log>(3) に渡す浮動小数点数である。\n"
+"省略可能な第二引き数を指定した場合、\n"
+"B<_LIB_VERSION> に B<_SVID_> が設定され、\n"
+"B<matherr>() が呼ばれるようになる。\n"
+"このコマンドライン引き数で指定した整数は、\n"
+"B<matherr>() からの返り値として使用される。\n"
+"省略可能な第三引き数を指定した場合、 B<matherr>() は\n"
+"数学関数の返り値として代わりに引き数で指定した値を割り当てる。"
 
 #. type: Plain text
 #: build/C/man3/matherr.3:299
@@ -6963,6 +7037,9 @@ msgid ""
 "The following example run, where B<log>(3)  is given an argument of 0.0, "
 "does not use B<matherr>():"
 msgstr ""
+"以下の実行例では、\n"
+"B<log>(3) に引き数 0.0 が渡しているが、\n"
+"B<matherr>() は使用しない。"
 
 #. type: Plain text
 #: build/C/man3/matherr.3:305
@@ -6980,6 +7057,8 @@ msgstr ""
 #: build/C/man3/matherr.3:311
 msgid "In the following run, B<matherr>()  is called, and returns 0:"
 msgstr ""
+"以下の実行例では、\n"
+"B<matherr>() が呼び出され、返り値 0 が返される。"
 
 #. type: Plain text
 #: build/C/man3/matherr.3:321
@@ -7004,13 +7083,13 @@ msgstr ""
 #. type: Plain text
 #: build/C/man3/matherr.3:325
 msgid "The message \"log: SING error\" was printed by the C library."
-msgstr ""
+msgstr "メッセージ \"log: SING error\" は C ライブラリによって出力されている。"
 
 #. type: Plain text
 #: build/C/man3/matherr.3:329
 msgid ""
 "In the following run, B<matherr>()  is called, and returns a nonzero value:"
-msgstr ""
+msgstr "次の実行例では、 B<matherr>() が呼び出され、0 以外の返り値が返される。"
 
 #. type: Plain text
 #: build/C/man3/matherr.3:337
@@ -7034,6 +7113,8 @@ msgid ""
 "In this case, the C library did not print a message, and I<errno> was not "
 "set."
 msgstr ""
+"この場合は、C ライブラリはメッセージを出力しておらず、\n"
+"I<errno> は設定されていない。"
 
 #. type: Plain text
 #: build/C/man3/matherr.3:348
@@ -7041,6 +7122,8 @@ msgid ""
 "In the following run, B<matherr>()  is called, changes the return value of "
 "the math function, and returns a nonzero value:"
 msgstr ""
+"次の実行例では、 B<matherr>() が呼び出され、\n"
+"数学関数の返り値が変更され、0 以外の返り値が返されている。"
 
 #. type: Plain text
 #: build/C/man3/matherr.3:356
index d8c4563..2ad99f2 100644 (file)
@@ -7,7 +7,7 @@ msgid ""
 msgstr ""
 "Project-Id-Version: PACKAGE VERSION\n"
 "POT-Creation-Date: 2012-05-01 04:22+0900\n"
-"PO-Revision-Date: 2012-05-04 05:21+0900\n"
+"PO-Revision-Date: 2012-05-08 19:28+0900\n"
 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
 "Language-Team: LANGUAGE <LL@li.org>\n"
 "Language: \n"
@@ -7957,7 +7957,7 @@ msgstr "MAKEDEV"
 #. type: Plain text
 #: build/C/man3/makedev.3:27
 msgid "makedev, major, minor - manage a device number"
-msgstr ""
+msgstr "makedev, major, minor - デバイス番号の操作"
 
 #. type: Plain text
 #: build/C/man3/makedev.3:31
@@ -7966,6 +7966,8 @@ msgid ""
 "B<#define _BSD_SOURCE>             /* See feature_test_macros(7) */\n"
 "B<#include E<lt>sys/types.hE<gt>>\n"
 msgstr ""
+"B<#define _BSD_SOURCE>             /* feature_test_macros(7) 参照 */\n"
+"B<#include E<lt>sys/types.hE<gt>>\n"
 
 #. type: Plain text
 #: build/C/man3/makedev.3:33
@@ -7990,6 +7992,10 @@ msgid ""
 "device, and a minor ID, identifying a specific instance of a device in that "
 "class.  A device ID is represented using the type I<dev_t>."
 msgstr ""
+"デバイス ID は、メジャー ID とマイナー ID の二つの部分から構成される。\n"
+"メジャー ID はデバイスクラスの識別に使用され、マイナー ID は\n"
+"そのクラス内の特定のデバイスインスタンスの識別に使用される。\n"
+"デバイス ID は I<dev_t> 型を用いて表現される。"
 
 #. type: Plain text
 #: build/C/man3/makedev.3:51
@@ -7998,6 +8004,9 @@ msgid ""
 "device ID, returned as the function result.  This device ID can be given to "
 "B<mknod>(2), for example."
 msgstr ""
+"B<makedev>() は、指定されたメジャー ID とマイナー ID を組み合わせて\n"
+"デバイス ID を生成し、関数の結果として返す。\n"
+"このデバイス ID は B<mknod>(2) などに渡すことができる。"
 
 #. type: Plain text
 #: build/C/man3/makedev.3:61
@@ -8007,6 +8016,10 @@ msgid ""
 "macros can be useful to, for example, decompose the device IDs in the "
 "structure returned by B<stat>(2)."
 msgstr ""
+"関数 B<major>() と B<minor>() は B<makedev>() と反対の処理を行う。\n"
+"つまり、device ID を渡すと、それぞれメジャー ID 部分とマイナー ID 部分\n"
+"を返す。これらのマクロは、例えば、 B<stat>(2) が返す構造体に含まれる\n"
+"デバイス ID を分解する場合などで役に立つ。"
 
 #.  The BSDs, HP-UX, Solaris, AIX, Irix
 #. type: Plain text
@@ -8015,6 +8028,8 @@ msgid ""
 "The B<makedev>(), B<major>(), and B<minor>()  functions are not specified in "
 "POSIX.1, but are present on many other systems."
 msgstr ""
+"関数 B<makedev>(), B<major>(), B<minor>() は\n"
+"POSIX.1 では規定されていないが、他の多くのシステムにも存在する。"
 
 #. type: Plain text
 #: build/C/man3/makedev.3:79
@@ -8024,6 +8039,11 @@ msgid ""
 "B<gnu_dev_major>(), and B<gnu_dev_minor>().  The latter names are exported, "
 "but the traditional names are more portable."
 msgstr ""
+"これらのインタフェースはマクロとして定義されている。\n"
+"glibc 2.3.3 以降では、これらは GNU 固有の 3 つの関数\n"
+"B<gnu_dev_makedev>(), B<gnu_dev_major>(), B<gnu_dev_minor>() の\n"
+"エイリアス (別名) となっている。後者の名前がエクスポートされるが、\n"
+"以前から使われている前者の名前の方が移植性がある。"
 
 #. type: Plain text
 #: build/C/man3/makedev.3:82