-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImageLoader.i18n.php
More file actions
20 lines (16 loc) · 889 Bytes
/
ImageLoader.i18n.php
File metadata and controls
20 lines (16 loc) · 889 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php
$messages = array();
$messages['en'] = array (
'error-prefix' => 'ImageLoader error: ',
'no-class' => 'No image class given',
'invalid-class' => '$1 is not a valid class argument, or the class is not configured properly',
'no-argument' => 'No argument given',
'description-message' => 'An extensions that allows classes of images using <tt><nowiki>{{#image: class | argument}}</nowiki></tt>.'
);
$messages['nl'] = array (
'error-prefix' => 'ImageLoader fout: ',
'no-class' => 'Geen afbeeldingstype meegegeven',
'invalid-class' => '$1 is geen geldig afbeeldingstype, of het type is niet goed geconfigureerd',
'no-argument' => 'Geen argument meegegeven',
'description-message' => 'Een uitbreiding die toelaat types van afbeeldingen in te laden met <tt><nowiki>{{#afbeelding: type | argument}}</nowiki></tt>'
);