source: trunk/language/ja_JP/install.lang.php @ 5316

Last change on this file since 5316 was 5316, checked in by plg, 14 years ago

copy all languages (exceptions are en_UK and fr_FR) from branch 2.0 to trunk,
then convert the *.lang.php files with tools/convert_language_to_2.1.pl

Next step is to play with tools/translation_analysis.php to find which
language keys need translation for each language.

File size: 6.4 KB
Line 
1<?php
2// +-----------------------------------------------------------------------+
3// | Piwigo - a PHP based picture gallery                                  |
4// +-----------------------------------------------------------------------+
5// | Copyright(C) 2008      Piwigo Team                  http://piwigo.org |
6// | Copyright(C) 2003-2008 PhpWebGallery Team    http://phpwebgallery.net |
7// | Copyright(C) 2002-2003 Pierrick LE GALL   http://le-gall.net/pierrick |
8// +-----------------------------------------------------------------------+
9// | This program is free software; you can redistribute it and/or modify  |
10// | it under the terms of the GNU General Public License as published by  |
11// | the Free Software Foundation                                          |
12// |                                                                       |
13// | This program is distributed in the hope that it will be useful, but   |
14// | WITHOUT ANY WARRANTY; without even the implied warranty of            |
15// | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU      |
16// | General Public License for more details.                              |
17// |                                                                       |
18// | You should have received a copy of the GNU General Public License     |
19// | along with this program; if not, write to the Free Software           |
20// | Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, |
21// | USA.                                                                  |
22// +-----------------------------------------------------------------------+
23
24$lang['Installation'] = 'インストレーション';
25$lang['Basic configuration'] = '基本設定';
26$lang['Default gallery language'] = 'ギャラリーのデフォルト言語';
27$lang['Database configuration'] = 'データベース設定';
28$lang['Admin configuration'] = '管理設定';
29$lang['Start Install'] = 'インストールを開始する';
30$lang['mail address must be like xxx@yyy.eee (example : jack@altern.org)'] = 'メールアドレスは、 xxx@yyy.eee のような形式にしてください (例: jack@altern.org)。';
31
32$lang['Webmaster login'] = 'ウェブマスタログイン';
33$lang['It will be shown to the visitors. It is necessary for website administration'] = 'ウェブマスタは、ビジターに表示されます。ウェブサイト管理に必要です。';
34
35$lang['Parameters are correct'] = 'パラメータに問題はありません。';
36$lang['Connection to server succeed, but it was impossible to connect to database'] = 'サーバへ接続することができましたが、データベースに接続できません。';
37$lang['Can\'t connect to server'] = 'サーバに接続できません。';
38$lang['The next step of the installation is now possible'] = 'インストールの次のステップへ進むことができます。';
39$lang['next step'] = '次のステップ';
40$lang['Copy the text in pink between hyphens and paste it into the file "local/config/database.inc.php"(Warning : database.inc.php must only contain what is in pink, no line return or space character)'] = 'ハイフンの間のピンクのテキストをコピーして、ファイル「include/mysql.inc.php」の中に貼り付けてください (警告 : mysql.inc.phpには、ピンクのテキストのみ貼り付けてください。改行またはスペースを含まないでください)。';
41
42$lang['Host'] = 'MySQLホスト';
43$lang['localhost, sql.multimania.com, toto.freesurf.fr'] = '例) localhost、sql.multimania.com、toto.freesurf.fr';
44$lang['User'] = 'ユーザ';
45$lang['user login given by your host provider'] = 'あなたのホストプロバイダから提供されたデータベースユーザ名です。';
46$lang['Password'] = 'パスワード';
47$lang['user password given by your host provider'] = 'あなたのホストプロバイダから提供されたデータベースパスワードです。';
48$lang['Database name'] = 'データベース名';
49$lang['also given by your host provider'] = 'こちらも、あなたのホストプロバイダから提供されたデータベース名です。';
50$lang['Database table prefix'] = 'データベーステーブル接頭辞';
51$lang['database tables names will be prefixed with it (enables you to manage better your tables)'] = 'データベーステーブルに接頭辞として付けられます (あなたのテーブルを管理しやすくします)。';
52$lang['enter a login for webmaster'] = 'ウェブマスタのユーザIDを入力してください。';
53$lang['webmaster login can\'t contain characters \' or "'] = 'ウェブマスタのユーザIDには、「\'」または「"」を含まないでください。';
54$lang['please enter your password again'] = 'もう一度あなたのパスワードを入力してください。';
55$lang['Installation finished'] = 'インストールが終了しました。';
56$lang['Webmaster password'] = 'ウェブマスタパスワード';
57$lang['Keep it confidential, it enables you to access administration panel'] = 'ウェブマスタパスワードは、内密にしてください。ウェブマスタパスワードを使用して、あなたは管理パネルにアクセスすることができます。';
58$lang['Password [confirm]'] = 'パスワード [もう一度]';
59$lang['verification'] = '確認';
60$lang['Need help ? Ask your question on <a href="%s">Piwigo message board</a>.'] = 'ヘルプが必要ですか? <a href="%s">Piwigoメッセージボード</a>にて、あなたの質問を投稿してください。';
61$lang['install_end_message'] = 'Piwigoの設定が完了しました。次のステップへ移動します。<br /><br />
62* アイデンティフィケーションページにアクセスします : [ <a href="identification.php">アイデンティフィケーション</a> ] ウェブマスタに設定したユーザIDおよびパスワードを使用してください。<br />
63* このログインにより、あなたは管理パネルにアクセスすることができます。また、あなたのディレクトリに写真をアップロードするためのインストラクションにもアクセスすることができます。';
64$lang['Webmaster mail address'] = 'ウェブマスタメールアドレス';
65$lang['Visitors will be able to contact site administrator with this mail'] = 'ビジターは、このメールアドレスでサイト管理者に連絡することができます。';
66?>
Note: See TracBrowser for help on using the repository browser.