1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
<?php
/******************************************************************************
* Each entry of that file can be associated with a comment to indicate its *
* state. When there is no comment, it means the entry is fully translated. *
* The recognized comments are (comment matching is case-insensitive): *
* + TODO: the entry has never been translated. *
* + DIRTY: the entry has been translated but needs to be updated. *
* + IGNORE: the entry does not need to be translated. *
* When a comment is not recognized, it is discarded. *
******************************************************************************/
return array(
'email' => array(
'feedback' => array(
'invalid' => 'このEメールアドレスは無効です。',
'required' => 'Eメールアドレスは必要です。',
),
'validation' => array(
'change_email' => 'Eメールアドレスは <a href="%s">プロフィールページで変更できます</a>.',
'email_sent_to' => 'あなたのメールボックス<strong>%s</strong>にメールを送りました。有効性を確認するためにメールを確かめてください。',
'feedback' => array(
'email_failed' => 'サーバー設定にエラーがあるためEメールを送信できませんでした。',
'email_sent' => 'Eメールはあなたのメールボックスに送信されました',
'error' => 'Eメールアドレスの確認は失敗しました。',
'ok' => 'このEメールアドレスは確認されました。',
'unnecessary' => 'このEメールアドレスは既に確認済みです。',
'wrong_token' => 'このEメールアドレスのトークンは誤っています。',
),
'need_to' => '%s を使うためには、Eメールアドレスの認証が必要です。',
'resend_email' => 'Eメールの再送',
'title' => 'Eメールアドレス確認',
),
),
'mailer' => array(
'email_need_validation' => array(
'body' => 'あなたは %s で登録されましたが、Eメールアドレスを確認する必要があります。このリンクに従ってください:',
'title' => 'あなたのアカウントを確認する必要があります',
'welcome' => 'ようこそ %s さん',
),
),
'password' => array(
'invalid' => 'このパスワードは無効です',
),
'tos' => array(
'feedback' => array(
'invalid' => 'あなたが使うには利用規約に同意する必要があります。',
),
),
'username' => array(
'invalid' => 'このユーザー名は無効です。',
'taken' => '%s は既に使われているユーザー名です。',
),
);
|