|
1 | 1 | <?xml version="1.0" encoding="utf-8"?>
|
2 | 2 | <!-- $Revision$ -->
|
3 |
| -<!-- EN-Revision: a93bf76a1bb8f0d1cce34c7ac637fad377432047 Maintainer: hirokawa Status: working --> |
| 3 | +<!-- EN-Revision: a93bf76a1bb8f0d1cce34c7ac637fad377432047 Maintainer: hirokawa Status: ready --> |
4 | 4 | <appendix xml:id="filesystem.constants" xmlns="http://docbook.org/ns/docbook">
|
5 | 5 | &reftitle.constants;
|
6 | 6 | &extension.constants;
|
|
428 | 428 | <term><constant>UPLOAD_ERR_CANT_WRITE</constant></term>
|
429 | 429 | <listitem>
|
430 | 430 | <para>
|
431 |
| - Failed to write file to disk. |
| 431 | + ファイルをディスクに書き込めませんでした。 |
432 | 432 | </para>
|
433 | 433 | </listitem>
|
434 | 434 | </varlistentry>
|
435 | 435 | <varlistentry xml:id="constant.upload-err-extension">
|
436 | 436 | <term><constant>UPLOAD_ERR_EXTENSION</constant></term>
|
437 | 437 | <listitem>
|
438 | 438 | <para>
|
439 |
| - A PHP extension stopped the file upload. PHP does not |
440 |
| - provide a way to ascertain which extension caused the file upload to |
441 |
| - stop; examining the list of loaded extensions with <function>phpinfo</function> may help. |
| 439 | + PHP 拡張機能がファイルアップロードを停止させました |
| 440 | + PHP はどの拡張機能がファイルアップロードを止めたのかを検出する手段を提供していません。<function>phpinfo</function> で表示される、ロード済みの拡張機能の一覧が手掛かりになるかもしれません。 |
442 | 441 | </para>
|
443 | 442 | </listitem>
|
444 | 443 | </varlistentry>
|
445 | 444 | <varlistentry xml:id="constant.upload-err-form-size">
|
446 | 445 | <term><constant>UPLOAD_ERR_FORM_SIZE</constant></term>
|
447 | 446 | <listitem>
|
448 | 447 | <para>
|
449 |
| - The uploaded file exceeds the <emphasis>MAX_FILE_SIZE</emphasis> |
450 |
| - directive that was specified in the HTML form. |
| 448 | + アップロードされたファイルが、 |
| 449 | + HTML フォームで指定された <emphasis>MAX_FILE_SIZE</emphasis> |
| 450 | + を超えています。 |
451 | 451 | </para>
|
452 | 452 | </listitem>
|
453 | 453 | </varlistentry>
|
454 | 454 | <varlistentry xml:id="constant.upload-err-ini-size">
|
455 | 455 | <term><constant>UPLOAD_ERR_INI_SIZE</constant></term>
|
456 | 456 | <listitem>
|
457 | 457 | <para>
|
458 |
| - The uploaded file exceeds the |
459 |
| - <link linkend="ini.upload-max-filesize">upload_max_filesize</link> |
460 |
| - directive in &php.ini;. |
| 458 | + アップロードされたファイルが、 |
| 459 | + &php.ini; の <link linkend="ini.upload-max-filesize">upload_max_filesize</link> |
| 460 | + を超えています。 |
461 | 461 | </para>
|
462 | 462 | </listitem>
|
463 | 463 | </varlistentry>
|
464 | 464 | <varlistentry xml:id="constant.upload-err-no-file">
|
465 | 465 | <term><constant>UPLOAD_ERR_NO_FILE</constant></term>
|
466 | 466 | <listitem>
|
467 | 467 | <para>
|
468 |
| - No file was uploaded. |
| 468 | + アップロードされたファイルはありません。 |
469 | 469 | </para>
|
470 | 470 | </listitem>
|
471 | 471 | </varlistentry>
|
472 | 472 | <varlistentry xml:id="constant.upload-err-no-tmp-dir">
|
473 | 473 | <term><constant>UPLOAD_ERR_NO_TMP_DIR</constant></term>
|
474 | 474 | <listitem>
|
475 | 475 | <para>
|
476 |
| - Missing a temporary folder. |
| 476 | + テンポラリフォルダがありません。 |
477 | 477 | </para>
|
478 | 478 | </listitem>
|
479 | 479 | </varlistentry>
|
480 | 480 | <varlistentry xml:id="constant.upload-err-ok">
|
481 | 481 | <term><constant>UPLOAD_ERR_OK</constant></term>
|
482 | 482 | <listitem>
|
483 | 483 | <para>
|
484 |
| - There is no error, the file uploaded with success. |
| 484 | + エラーはありません。ファイルのアップロードは成功しました。 |
485 | 485 | </para>
|
486 | 486 | </listitem>
|
487 | 487 | </varlistentry>
|
488 | 488 | <varlistentry xml:id="constant.upload-err-partial">
|
489 | 489 | <term><constant>UPLOAD_ERR_PARTIAL</constant></term>
|
490 | 490 | <listitem>
|
491 | 491 | <para>
|
492 |
| - The uploaded file was only partially uploaded. |
| 492 | + アップロードされたファイルは一部だけでした。 |
493 | 493 | </para>
|
494 | 494 | </listitem>
|
495 | 495 | </varlistentry>
|
|
0 commit comments