blob: 1cf87c5718295bcaeda771a0a89c7eb50bbf264c (
plain)
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
$nl = array (
'diagnostics:report' => 'Diagnose rapport',
'diagnostics:download' => 'Download',
'diagnostics:header' => '========================================================================
Elgg Diagnostic Report
Generated %s by %s
========================================================================',
'diagnostics:report:basic' => 'Elgg Release %s, version %s
------------------------------------------------------------------------',
'diagnostics:report:php' => 'PHP info:
%s
------------------------------------------------------------------------',
'diagnostics:report:plugins' => 'Installed plugins and details:
%s
------------------------------------------------------------------------',
'diagnostics:report:md5' => 'Installed files and checksums:
%s
------------------------------------------------------------------------',
'diagnostics:report:globals' => 'Global variables:
%s
------------------------------------------------------------------------',
'diagnostics' => 'Systeem diagnose',
'diagnostics:description' => 'Het volgende diagnostische rapport is nuttig voor de diagnose van problemen met Elgg, en moet worden bijgevoegd aan een bug report die je indient.',
);
add_translation("nl", $nl);
|