This file is indexed.

/usr/share/phpbb3/www/language/es_ar_x_vos/acp/permissions_phpbb.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
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
<?php
/** 
* acp_permissions_phpbb.php [Argentinian Spanish (Formal Honorifics)]
*
* @package language
* @version $Id: $
* @copyright (c) 2007 phpBB Group. Modified by Huan Manwe for phpbb-es.com in 2007 
* @author 2007-11-26 - Traducido por Huan Manwe junto con phpbb-es.com (http://www.phpbb-es.com) basado en la version argentina hecha por larveando.com.ar ).
* @author - ImagePack made by Xoom (webmaster of http://www.muchografico.com and colaborator of http://www.phpbb-es.com) - Modified by nextgen (webmaster of http://www.phpbbnxg.com) and QA Team Member from phpBB.com
* @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU General Public License
*/

/**
* 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

/**
*	MODDERS PLEASE NOTE
*	
*	You are able to put your permission sets into a separate file too by
*	prefixing the new file with permissions_ and putting it into the acp
*	language folder.
*
*	An example of how the file could look like:
*
*	<code>
*
*	if (empty($lang) || !is_array($lang))
*	{
*		$lang = array();
*	}
*
*	// Adding new category
*	$lang['permission_cat']['bugs'] = 'Bugs';
*
*	// Adding new permission set
*	$lang['permission_type']['bug_'] = 'Bug Permissions';
*
*	// Adding the permissions
*	$lang = array_merge($lang, array(
*		'acl_bug_view'		=> array('lang' => 'Can view bug reports', 'cat' => 'bugs'),
*		'acl_bug_post'		=> array('lang' => 'Can post bugs', 'cat' => 'post'), // Using a phpBB category here
*	));
*
*	</code>
*/

// Define categories and permission types
$lang = array_merge($lang, array(
	'permission_cat'	=> array(
		'actions'		=> 'Acciones',
		'content'		=> 'Contenido',
		'forums'		=> 'Foros',
		'misc'			=> 'Varios',
		'permissions'	=> 'Permisos',
		'pm'			=> 'Mensajes privados',
		'polls'			=> 'Encuestas',
		'post'			=> 'Mensaje',
		'post_actions'	=> 'Acciones en mensaje',
		'posting'		=> 'Envío',
		'profile'		=> 'Perfil',
		'settings'		=> 'Configuración',
		'topic_actions'	=> 'Acciones en temas',
		'user_group'	=> 'Usuarios &amp; Grupos',
	),

	// With defining 'global' here we are able to specify what is printed out if the permission is within the global scope.
	'permission_type'	=> array(
		'u_'			=> 'Permisos de usuario',
		'a_'			=> 'Permisos de Admin',
		'm_'			=> 'Permisos de moderador',
		'f_'			=> 'Permisos de Foro',
		'global'		=> array(
			'm_'		=> 'Permisos moderador global',
		),
	),
));

// User Permissions
$lang = array_merge($lang, array(
	'acl_u_viewprofile'	=> array('lang'	=> 'Puede ver perfiles','cat'	=> 'profile',),
	'acl_u_chgname'		=> array('lang'	=> 'Puede cambiar nombre de usuario','cat'	=> 'profile',),
	'acl_u_chgpasswd'	=> array('lang'	=> 'Puede cambiar contraseña','cat'	=> 'profile',),
	'acl_u_chgemail'	=> array('lang'	=> 'Puede cambiar email','cat'	=> 'profile',),
	'acl_u_chgavatar'	=> array('lang'	=> 'Puede cambiar avatar','cat'	=> 'profile',),'acl_u_chggrp'	=> array('lang'	=> 'Puede cambiar grupo de usuarios por defecto','cat'	=> 'profile',),
	'acl_u_chggrp'		=> array('lang' => 'Puede cambiar el grupo de usuarios por defecto', 'cat' => 'profile'),

	'acl_u_attach'		=> array('lang'	=> 'Puede adjuntar archivos','cat'	=> 'post',),
	'acl_u_download'	=> array('lang'	=> 'Puede descargar archivos','cat'	=> 'post',),
	'acl_u_savedrafts'	=> array('lang'	=> 'Puede guardar borradores','cat'	=> 'post',),
	'acl_u_chgcensors'	=> array('lang'	=> 'Puede deshabilitar censura','cat'	=> 'post',),
	'acl_u_sig'			=> array('lang'	=> 'Puede usar firma','cat'	=> 'post',),

	'acl_u_sendpm'		=> array('lang'	=> 'Puede enviar mensajes privados','cat'	=> 'pm',),
	'acl_u_masspm'		=> array('lang'	=> 'Puede enviar mensajes a múltiples usuarios','cat'	=> 'pm',),
	'acl_u_masspm_group'=> array('lang' => 'Puede enviar mensajes a grupos', 'cat' => 'pm'),
	'acl_u_readpm'		=> array('lang'	=> 'Puede leer mensajes privados','cat'	=> 'pm',),
	'acl_u_pm_edit'		=> array('lang'	=> 'Puede editar sus mensajes privados','cat'	=> 'pm',),
	'acl_u_pm_delete'	=> array('lang'	=> 'Puede borrar mensajes privados de su carpeta','cat'	=> 'pm',),
	'acl_u_pm_forward'	=> array('lang'	=> 'Puede reenviar mensajes privados','cat'	=> 'pm',),
	'acl_u_pm_emailpm'	=> array('lang'	=> 'Puede enviar mp por email','cat'	=> 'pm',),
	'acl_u_pm_printpm'	=> array('lang'	=> 'Puede imprimir mensajes privados','cat'	=> 'pm',),
	'acl_u_pm_attach'	=> array('lang'	=> 'Puede adjuntar archivos en mensajes privados','cat'	=> 'pm',),
	'acl_u_pm_download'	=> array('lang'	=> 'Puede descargar archivos en mensajes privados','cat'	=> 'pm',),
	'acl_u_pm_bbcode'	=> array('lang'	=> 'Puede usar BBCode en mensajes privados','cat'	=> 'pm',),
	'acl_u_pm_smilies'	=> array('lang'	=> 'Puede usar emoticonos en mensajes privados','cat'	=> 'pm',),
	'acl_u_pm_img'		=> array('lang'	=> 'Puede usar imágenes en mensajes privados','cat'	=> 'pm',),
	'acl_u_pm_flash'	=> array('lang'	=> 'Puede usar Flash en mensajes privados','cat'	=> 'pm',),

	'acl_u_sendemail'	=> array('lang'	=> 'Puede enviar emails','cat'	=> 'misc',),
	'acl_u_sendim'		=> array('lang'	=> 'Puede enviar mensajes instantáneos','cat'	=> 'misc',),
	'acl_u_ignoreflood'	=> array('lang'	=> 'Puede ignorar límite de saturación','cat'	=> 'misc',),
	'acl_u_hideonline'	=> array('lang'	=> 'Puede ocultar estado de conexión','cat'	=> 'misc',),
	'acl_u_viewonline'	=> array('lang'	=> 'Puede ver online','cat'	=> 'misc',),
	'acl_u_search'		=> array('lang'	=> 'Puede hacer búsquedas','cat'	=> 'misc',),
));

// Forum Permissions
$lang = array_merge($lang, array(
	'acl_f_list'	=> array('lang'	=> 'Puede ver foros','cat'	=> 'post',),
	'acl_f_read'	=> array('lang'	=> 'Puede leer foros','cat'	=> 'post',),
	'acl_f_post'	=> array('lang'	=> 'Puede iniciar nuevos temas','cat'	=> 'post',),
	'acl_f_reply'	=> array('lang'	=> 'Puede responder temas','cat'	=> 'post',),
	'acl_f_icons'	=> array('lang'	=> 'Puede usar emoticonos en mensajes','cat'	=> 'post',),
	'acl_f_announce'	=> array('lang'	=> 'Puede publicar anuncios','cat'	=> 'post',),
	'acl_f_sticky'	=> array('lang'	=> 'Puede publicar fijos','cat'	=> 'post',),

	'acl_f_poll'	=> array('lang'	=> 'Puede hacer encuestas','cat'	=> 'polls',),
	'acl_f_vote'	=> array('lang'	=> 'Puede votar en encuestas','cat'	=> 'polls',),
	'acl_f_votechg'	=> array('lang'	=> 'Puede cambiar una encuesta existente','cat'	=> 'polls',),

	'acl_f_attach'	=> array('lang'	=> 'Puede adjuntar archivos','cat'	=> 'content',),
	'acl_f_download'	=> array('lang'	=> 'Puede descargar archivos','cat'	=> 'content',),
	'acl_f_sigs'	=> array('lang'	=> 'Puede usar firmas','cat'	=> 'content',),
	'acl_f_bbcode'	=> array('lang'	=> 'Puede usar BBCode','cat'	=> 'content',),
	'acl_f_smilies'	=> array('lang'	=> 'Puede usar emoticonos','cat'	=> 'content',),
	'acl_f_img'	=> array('lang'	=> 'Puede usar la etiqueta BBCode [img]','cat'	=> 'content',),
	'acl_f_flash'	=> array('lang'	=> 'Puede usar la etiqueta BBCode [flash]','cat'	=> 'content',),

	'acl_f_edit'	=> array('lang'	=> 'Puede editar sus mensajes','cat'	=> 'actions',),
	'acl_f_delete'	=> array('lang'	=> 'Puede borrar sus mensajes','cat'	=> 'actions',),
	'acl_f_user_lock'	=> array('lang'	=> 'Puede bloquear sus mensajes','cat'	=> 'actions',),
	'acl_f_bump'	=> array('lang'	=> 'Puede activar temas','cat'	=> 'actions',),
	'acl_f_report'	=> array('lang'	=> 'Puede reportar mensajes','cat'	=> 'actions',),
	'acl_f_subscribe'	=> array('lang'	=> 'Puede suscribir a foros','cat'	=> 'actions',),
	'acl_f_print'	=> array('lang'	=> 'Puede imprimir temas','cat'	=> 'actions',),
	'acl_f_email'	=> array('lang'	=> 'Puede enviar temas por email','cat'	=> 'actions',),

	'acl_f_search'	=> array('lang'	=> 'Puede buscar en foros','cat'	=> 'misc',),
	'acl_f_ignoreflood'	=> array('lang'	=> 'Puede ignorar límite de saturación','cat'	=> 'misc',),
	'acl_f_postcount'	=> array('lang'	=> 'Incrementar cuenta de mensaje<br /><em>Por favor obsérvese que este parámetro solo afecta a mensajes nuevos.</em>','cat'	=> 'misc',),
	'acl_f_noapprove'	=> array('lang'	=> 'Puede publicar sin aprobación','cat'	=> 'misc',),
));

// Moderator Permissions
$lang = array_merge($lang, array(
	'acl_m_edit'	=> array('lang'	=> 'Puede editar mensajes','cat'	=> 'post_actions',),
	'acl_m_delete'	=> array('lang'	=> 'Puede borrar mensajes','cat'	=> 'post_actions',),
	'acl_m_approve'	=> array('lang'	=> 'Puede aprobar mensajes','cat'	=> 'post_actions',),
	'acl_m_report'	=> array('lang'	=> 'Puede cerrar y borrar informes','cat'	=> 'post_actions',),
	'acl_m_chgposter'	=> array('lang'	=> 'Puede cambiar autor en mensajes','cat'	=> 'post_actions',),

	'acl_m_move'	=> array('lang'	=> 'Puede mover temas','cat'	=> 'topic_actions',),
	'acl_m_lock'	=> array('lang'	=> 'Puede bloquear temas','cat'	=> 'topic_actions',),
	'acl_m_split'	=> array('lang'	=> 'Puede dividir temas','cat'	=> 'topic_actions',),
	'acl_m_merge'	=> array('lang'	=> 'Puede unir temas','cat'	=> 'topic_actions',),

	'acl_m_info'	=> array('lang'	=> 'Puede ver detalles de mensaje','cat'	=> 'misc',),
	'acl_m_warn'	=> array('lang'	=> 'Puede hacer advertencia','cat'	=> 'misc',),
	'acl_m_ban'	=> array('lang'	=> 'Puede administrar exclusiones','cat'	=> 'misc',),
));

// Admin Permissions
$lang = array_merge($lang, array(
	'acl_a_board'	=> array('lang'	=> 'Puede modificar configuración de sitio/verificar actualizaciones','cat'	=> 'settings',),
	'acl_a_server'	=> array('lang'	=> 'Puede modificar configuración de servidor/comunicación','cat'	=> 'settings',),
	'acl_a_jabber'	=> array('lang'	=> 'Puede modificar parámetros Jabber','cat'	=> 'settings',),
	'acl_a_phpinfo'	=> array('lang'	=> 'Puede ver configuración de PHP','cat'	=> 'settings',),

	'acl_a_forum'	=> array('lang'	=> 'Puede administrar foros','cat'	=> 'forums',),
	'acl_a_forumadd'	=> array('lang'	=> 'Puede agregar nuevos foros','cat'	=> 'forums',),
	'acl_a_forumdel'	=> array('lang'	=> 'Puede borrar foros','cat'	=> 'forums',),
	'acl_a_prune'	=> array('lang'	=> 'Puede purgar foros','cat'	=> 'forums',),

	'acl_a_icons'	=> array('lang'	=> 'Puede modificar iconos de tema y emoticonos','cat'	=> 'posting',),
	'acl_a_words'	=> array('lang'	=> 'Puede modificar palabras censuradas','cat'	=> 'posting',),
	'acl_a_bbcode'	=> array('lang'	=> 'Puede definir código BBCode','cat'	=> 'posting',),
	'acl_a_attach'	=> array('lang'	=> 'Puede modificar parámetros relativos a adjuntos','cat'	=> 'posting',),

	'acl_a_user'	=> array('lang'	=> 'Puede administrar usuarios','cat'	=> 'user_group',),
	'acl_a_userdel'	=> array('lang'	=> 'Puede borrar/purgar usuarios','cat'	=> 'user_group',),
	'acl_a_group'	=> array('lang'	=> 'Puede administrar grupos','cat'	=> 'user_group',),
	'acl_a_groupadd'	=> array('lang'	=> 'Puede agregar nuevos grupos','cat'	=> 'user_group',),
	'acl_a_groupdel'	=> array('lang'	=> 'Puede borrar grupos','cat'	=> 'user_group',),
	'acl_a_ranks'	=> array('lang'	=> 'Puede manejar rangos','cat'	=> 'user_group',),
	'acl_a_profile'	=> array('lang'	=> 'Puede administrar campos de perfil personalizados','cat'	=> 'user_group',),
	'acl_a_names'	=> array('lang'	=> 'Puede administrar nombres deshabilitados','cat'	=> 'user_group',),
	'acl_a_ban'	=> array('lang'	=> 'Puede administrar exclusiones','cat'	=> 'user_group',),

	'acl_a_viewauth'	=> array('lang'	=> 'Puede ver máscaras de permisos','cat'	=> 'permissions',),
	'acl_a_authgroups'	=> array('lang'	=> 'Puede modificar permisos para grupos individuales','cat'	=> 'permissions',),
	'acl_a_authusers'	=> array('lang'	=> 'Puede modificar permisos para usuarios individuales','cat'	=> 'permissions',),
	'acl_a_fauth'	=> array('lang'	=> 'Puede modificar tipos de permisos de foros','cat'	=> 'permissions',),
	'acl_a_mauth'	=> array('lang'	=> 'Puede modificar tipos de permisos de moderadores','cat'	=> 'permissions',),
	'acl_a_aauth'	=> array('lang'	=> 'Puede modificar tipos de permisos de Admin','cat'	=> 'permissions',),
	'acl_a_uauth'	=> array('lang'	=> 'Puede modificar tipos de permisos de usuario','cat'	=> 'permissions',),
	'acl_a_roles'	=> array('lang'	=> 'Puede administrar roles','cat'	=> 'permissions',),
	'acl_a_switchperm'	=> array('lang'	=> 'Puede usar otros permisos','cat'	=> 'permissions',),
	
	'acl_a_styles'	=> array('lang'	=> 'Puede administrar estilos','cat'	=> 'misc',),
	'acl_a_viewlogs'	=> array('lang'	=> 'Puede ver registros','cat'	=> 'misc',),
	'acl_a_clearlogs'	=> array('lang'	=> 'Puede limpiar registros','cat'	=> 'misc',),'acl_a_modules'	=> array('lang'	=> 'Puede administrar módulos','cat'	=> 'misc',),
	'acl_a_modules'		=> array('lang' => 'Puede administrar modulos', 'cat' => 'misc'),
	'acl_a_language'	=> array('lang'	=> 'Puede administrar paquetes de idioma','cat'	=> 'misc',),
	'acl_a_email'	=> array('lang'	=> 'Puede enviar emails masivos','cat'	=> 'misc',),
	'acl_a_bots'	=> array('lang'	=> 'Puede administrar bots','cat'	=> 'misc',),
	'acl_a_reasons'	=> array('lang'	=> 'Puede administrar motivos de reporte/negación','cat'	=> 'misc',),
	'acl_a_backup'	=> array('lang'	=> 'Puede resguardar/restaurar base de datos','cat'	=> 'misc',),
	'acl_a_search'	=> array('lang'	=> 'Puede administrar motores de búsqueda y parámetros','cat'	=> 'misc',),
));

?>