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
|
<?php
$danish = array(
'image_captcha' => "Billede Sikkerhedscheck",
'image_captcha:settings:icons' => "Vælg hvilken type billeder du vil bruge for din Sikkerhedscheck",
'image_captcha:settings:icons:general' => "Generelt",
'image_captcha:settings:icons:fruit' => "Frugt",
'image_captcha:icon_types:fruit:apple' => "Æble",
'image_captcha:icon_types:fruit:cherry' => "Kirsebær",
'image_captcha:icon_types:fruit:lemon' => "Citron",
'image_captcha:icon_types:fruit:pear' => "Pære",
'image_captcha:icon_types:fruit:strawberry' => "Jordbær",
'image_captcha:icon_types:general:folder' => "Mappe",
'image_captcha:icon_types:general:house' => "Hus",
'image_captcha:icon_types:general:lock' => "Lås",
'image_captcha:icon_types:general:man' => "Mand",
'image_captcha:icon_types:general:monitor' => "Skærm",
'image_captcha:icon_types:general:rss' => "Rss",
'image_captcha:icon_types:general:woman' => "Kvinde",
'image_captcha:label' => "Sikkerhedscheck - Vælg det rigtige billede: <u>%s</u>",
'image_captcha:verify:fail' => "Beklager, valgte billede er ikke korrekt.",
);
add_translation("da", $danish);
|