/usr/share/IlohaMail/lang/dk/calendar.inc is in ilohamail 0.8.14-0rc3sid6.2.
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 | <?php
/********************************************************
lang/<lang>/calendar.inc
(C)2003 Ryo Chijiiwa <Ryo@IlohaMail.org>
This file is part of IlohaMail, and released under GPL.
See COPYING, or http://www.fsf.org/copyleft/gpl.html
Translated by Torben Rybner, Ziberex (try@ziberex.dk)
********************************************************/
//TRANSLATORS: Uncomment next line for all non-English languages!!
include("../lang/eng/calendar.inc");
$calStr["add_schedule"] = "Ny aftale";
$calStr["edit_schedule"] = "Rediger aftale";
$calStr["weekof"] = "Uge: %d";
$calStr["title"] = "Titel:";
$calStr["color"] = "Farve:";
$calStr["colors"] = array("#990000"=>"Mørkerød", "#FF0000"=>"Rød", "#000099"=>"Mørkeblå", "#0000FF"=>"Blå",
"#006600"=>"Mørkegrøn", "#00FF00"=>"Grøn", "#9900FF"=>"Lila", "#00FFFF"=>"Cyan",
"#FF6600"=>"Orange", "#FFFF00"=>"Gul", "#FF00FF"=>"Magenta", ""=>"Ingen farve");
$calStr["starts"] = "Starter:";
$calStr["ends"] = "Slutter:";
$calStr["from"] = "fra:";
$calStr["until"] = "til:";
$calStr["repeat_on"] = "Gentag";
$calStr["of"] = "hver";
$calStr["weeks"] = array(1=>"første uge", 2=>"anden uge", 3=>"tredje uge", 4=>"fjerde uge");
$calStr["week_blurb"] = "... i hver måned (ind til slutdatoen).<br>Vil blive gentaget hver uge, hvis ingen er valgt.";
$calStr["monthly"] = "Gentag hver måned";
$calStr["yearly"] = "Gentag hvert år";
$calStr["place"] = "Sted:";
$calStr["description"] = "Beskrivelse:";
$calStr["add"] = "Tilføj";
$calStr["update"] = "Rediger";
$calStr["Delete"] = "Slet";
$calStr["go"] = "Gå til";
$calStr["disabled"] = "Kalenderfunktionen er deaktiveret.";
?>
|