/usr/share/IlohaMail/lang/cat/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 42 43 44 45 46 47 48 49 50 51 52 53 | <?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: David Gimeno i Ayuso info@sima-pc.com
********************************************************/
//TRANSLATORS: Uncomment next line for all non-English languages!!
include("../lang/eng/calendar.inc");
$calStr["add_schedule"] = "Afegir planificació";
$calStr["edit_schedule"] = "Editar planificació";
$calStr["weekof"] = "Setmana de: %d";
$calStr["title"] = "Títol:";
$calStr["color"] = "Color:";
$calStr["colors"] = array("#990000"=>"Vermell"
,"#FF0000"=>"Roig"
,"#000099"=>"Blau"
,"#0000FF"=>"Blau cel"
,"#006600"=>"Verd fosc"
,"#00FF00"=>"Verd"
,"#9900FF"=>"Porpra"
,"#00FFFF"=>"Cian"
,"#FF6600"=>"Taronja"
,"#FFFF00"=>"Groc"
,"#FF00FF"=>"Magenta"
,""=>"Sense color");
$calStr["starts"] = "Comença a:";
$calStr["ends"] = "Acaba a:";
$calStr["from"] = "des de:";
$calStr["until"] = "fins a:";
$calStr["repeat_on"] = "Repetir";
$calStr["of"] = "de cada";
$calStr["weeks"] = array(1=>"primera setmana"
,2=>"segona setmana"
,3=>"tercera setmana"
,4=>"quarta setmana");
$calStr["week_blurb"] = "...de cada mes (fins que acabi).<br>Es repetirà cada setmana si no se'n selecciona cap.";
$calStr["monthly"] = "Repetir mensualment";
$calStr["yearly"] = "Repetir anyalment";
$calStr["place"] = "Lloc:";
$calStr["description"] = "Descripció:";
$calStr["add"] = "Afegir";
$calStr["update"] = "Actualitzar";
$calStr["Delete"] = "Esborrar";
$calStr["go"] = "Anar";
$calStr["disabled"] = "El calendari està inhabilitat.";
?>
|