This file is indexed.

/usr/share/phpbb3/www/language/nl/search_synonyms.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
<?php
/**
*
* search_synonyms [Dutch]
*
* @package language
* @version $Id: search_synonyms.php,v 1.0.0 2006/05/28 19:06:21 naderman Exp $
* @copyright (c) 2005 phpBB Group modified by phpBB.nl (vertaalteam@phpbb.nl) in 2007
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
*
*/

if (!defined('IN_PHPBB'))
{
	exit;
}

$synonyms = array(
	'admin'				=> 'beheerder',
	'admins'			=> 'beheerders',
	'administrator'		=> 'beheerder',
	'administrators' => 'beheerders',

	'id' => 'nr',

	'post' => 'bericht',
	'posts' => 'berichten',

	'topic'		=> 'onderwerp',
	'topics' => 'onderwerpen',
);
?>