Thomas Bruederli
2012-08-06 20825920e3f723c1a2a962beaa72a33e82cd14da
commit | author | age
48e9c1 1 <?php
T 2
208259 3 /*
TB 4  +-----------------------------------------------------------------------+
5  | localization/ja_JP/labels.inc                                         |
6  |                                                                       |
7  | Language file of the Roundcube Webmail client                         |
8  | Copyright (C) 2012, The Roundcube Dev Team                            |
9  | Licensed under the GNU General Public License                         |
10  |                                                                       |
11  +-----------------------------------------------------------------------+
12  | Author: Takahiro Kambe                                                |
13  +-----------------------------------------------------------------------+
14 */
48e9c1 15
T 16 $labels = array();
208259 17 $labels['changepasswd'] = 'パスワードの変更';
TB 18 $labels['curpasswd'] = '現在のパスワード:';
19 $labels['newpasswd'] = '新しいパスワード:';
20 $labels['confpasswd'] = '新しいパスワード (確認):';
21 $labels['nopassword'] = '新しいパスワードを入力してください。';
22 $labels['nocurpassword'] = '現在のパスワードを入力してください。';
23 $labels['passwordincorrect'] = '現在のパスワードが間違っています。';
24 $labels['passwordinconsistency'] = 'パスワードが一致しません。もう一度やり直してください。';
25 $labels['crypterror'] = 'パスワードを保存できませんでした。暗号化関数がみあたりません。';
26 $labels['connecterror'] = '新しいパスワードを保存できませんでした。接続エラーです。';
27 $labels['internalerror'] = '新しいパスワードを保存できませんでした。';
28 $labels['passwordshort'] = 'パスワードは少なくとも $length 文字の長さが必要です。';
29 $labels['passwordweak'] = 'パスワードは少なくとも数字の 1 文字と記号の 1 文字を含んでいなければなりません。';
30 $labels['passwordforbidden'] = 'パスワードに禁止された文字が含まれています。';
48e9c1 31