This file is indexed.

/usr/share/phpbb3/www/language/ja/acp/email.php is in phpbb3-l10n 3.0.10-4+deb7u3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
<?php
/**
*
* acp_email [Japanese]
*
* @package language
* @version $Id$
* @copyright (c) 2005 phpBB Group
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
* Translator: ocean=Yohsuke < n/a > ( n/a ) http://bbmods.info/bbs/
*
*/

/**
* DO NOT CHANGE
*/
if (!defined('IN_PHPBB'))
{
	exit;
}

if (empty($lang) || !is_array($lang))
{
	$lang = array();
}

// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine

// Email settings
$lang = array_merge($lang, array(
	'ACP_MASS_EMAIL_EXPLAIN'		=> 'ここでは全登録ユーザーまたは<strong>一括メールの受信オプションを有効に設定している</strong>グループにメールを送信できます。 一括メールとは実は、宛先に管理人のメールアドレスを、BCC(ブラインド・カーボン・コピー)に受信ユーザーの全メールアドレスをセットして送信したメールの事です。1つの一括メールにつき受信ユーザー数はデフォルトで最大50人です。50人以上のユーザーを指定した場合、一括メールは複数回に亘って送信されます。その場合、送信処理が終わるまでこのページから移動しないでください。一括メールには時間がかかるのが普通です。メール送信処理が完全に終了するとその旨のメッセージが表示されます。',
	'ALL_USERS'						=> '全ユーザー',

	'COMPOSE'				=> 'メール作成',

	'EMAIL_SEND_ERROR'		=> 'メール送信処理中に少なくとも一件のエラーが発生しました。詳細なメッセージを参照するには%sエラーログ%sをクリックしてください。',
	'EMAIL_SENT'			=> 'メッセージを送信しました',
	'EMAIL_SENT_QUEUE'		=> 'このメッセージは送信待ちです',

	'LOG_SESSION'			=> 'メールセッション情報をエラーログに記録する',

	'SEND_IMMEDIATELY'		=> '今すぐに送信する',
	'SEND_TO_GROUP'			=> 'グループへ送信',
	'SEND_TO_USERS'			=> 'ユーザーへ送信',
	'SEND_TO_USERS_EXPLAIN'	=> 'ここでユーザー名を入力した場合、上で選択したグループは無効になります。1行につき1つのユーザー名を入力してください。',
	
	'MAIL_BANNED'			=> 'アクセス禁止ユーザーへ送信',
	'MAIL_BANNED_EXPLAIN'	=> 'グループへ送信する際、グループ内に存在するアクセス禁止ユーザーに対してもメールを送信したい場合はチェックボックスをチェックしてください',
	'MAIL_HIGH_PRIORITY'	=> '高',
	'MAIL_LOW_PRIORITY'		=> '低',
	'MAIL_NORMAL_PRIORITY'	=> '普通',
	'MAIL_PRIORITY'			=> 'メール緊急度',
	'MASS_MESSAGE'			=> 'メッセージ本文',
	'MASS_MESSAGE_EXPLAIN'	=> '平文を入力してください。BBCode や HTML は使用できません。',

	'NO_EMAIL_MESSAGE'		=> 'メッセージ本文を入力してください',
	'NO_EMAIL_SUBJECT'		=> '件名を入力してください',
));

?>