Inizializzazione
This commit is contained in:
86
calendar/lang/calendar.ca_ES.php
Normal file
86
calendar/lang/calendar.ca_ES.php
Normal file
@@ -0,0 +1,86 @@
|
||||
<?php
|
||||
# ca_ES translation for
|
||||
# PHP-Calendar, DatePicker Calendar class: http://www.triconsole.com/php/calendar_datepicker.php
|
||||
# Version: 3.61
|
||||
# Language: Catalan / català (in your lang) // ex: Romanian / Română
|
||||
# Translator: Jordi Babot <jordibabot@gmail.com>
|
||||
# Last file update: 01.09.2011
|
||||
|
||||
// Class strings localization
|
||||
define("L_DAY", "Dia");
|
||||
define("L_MONTH", "Mes");
|
||||
define("L_YEAR", "Any");
|
||||
define("L_TODAY", "Avui");
|
||||
define("L_PREV", "Anterior");
|
||||
define("L_NEXT", "Següent");
|
||||
define("L_REF_CAL", "Refrescant Calendari...");
|
||||
define("L_CHK_VAL", "Comproveu el valor");
|
||||
define("L_SEL_LANG", "Selecciona llengua");
|
||||
define("L_SEL_ICON", "Selecciona icone");
|
||||
define("L_SEL_DATE", "Selecciona data");
|
||||
define("L_ERR_SEL", "La selecció no és vàlida");
|
||||
define("L_NOT_ALLOWED", "Aquesta data no és permesa");
|
||||
define("L_DATE_BEFORE", "Sisplau, selecciona una data abans del %s");
|
||||
define("L_DATE_AFTER", "Sisplau, selecciona una data després del %s");
|
||||
define("L_DATE_BETWEEN", "Sisplau, selecciona una data entre el\\n%s i el %s");
|
||||
define("L_WEEK_HDR", ""); // Optional Short Name for the column header showing the current Week number (W or CW in English - max 2 letters)
|
||||
define("L_UNSET", "Cap");
|
||||
|
||||
// Set the first day of the week in your language (0 for Sunday, 1 for Monday)
|
||||
define("FIRST_DAY", "1");
|
||||
|
||||
// Months Long Names
|
||||
define("L_JAN", "gener");
|
||||
define("L_FEB", "febrer");
|
||||
define("L_MAR", "març");
|
||||
define("L_APR", "abril");
|
||||
define("L_MAY", "maig");
|
||||
define("L_JUN", "juny");
|
||||
define("L_JUL", "juliol");
|
||||
define("L_AUG", "agost");
|
||||
define("L_SEP", "setembre");
|
||||
define("L_OCT", "octubre");
|
||||
define("L_NOV", "novembre");
|
||||
define("L_DEC", "desembre");
|
||||
// Months Short Names
|
||||
define("L_S_JAN", "gen");
|
||||
define("L_S_FEB", "feb");
|
||||
define("L_S_MAR", "mar");
|
||||
define("L_S_APR", "abr");
|
||||
define("L_S_MAY", "mai");
|
||||
define("L_S_JUN", "jun");
|
||||
define("L_S_JUL", "jul");
|
||||
define("L_S_AUG", "ago");
|
||||
define("L_S_SEP", "set");
|
||||
define("L_S_OCT", "oct");
|
||||
define("L_S_NOV", "nov");
|
||||
define("L_S_DEC", "des");
|
||||
// Week days Long Names
|
||||
define("L_MON", "dilluns");
|
||||
define("L_TUE", "dimarts");
|
||||
define("L_WED", "dimecres");
|
||||
define("L_THU", "dijous");
|
||||
define("L_FRI", "divendres");
|
||||
define("L_SAT", "dissabte");
|
||||
define("L_SUN", "diumenge");
|
||||
// Week days Short Names
|
||||
define("L_S_MON", "dl");
|
||||
define("L_S_TUE", "dm");
|
||||
define("L_S_WED", "dc");
|
||||
define("L_S_THU", "dj");
|
||||
define("L_S_FRI", "dv");
|
||||
define("L_S_SAT", "ds");
|
||||
define("L_S_SUN", "du");
|
||||
|
||||
// Windows encoding
|
||||
define("WIN_DEFAULT", "windows-1252");
|
||||
define("L_CAL_FORMAT", "%d %B %Y");
|
||||
if(!defined("L_LANG") || L_LANG == "L_LANG") define("L_LANG", "ca_ES"); // en_US format of your language
|
||||
|
||||
// Set the CA specific date/time format
|
||||
if (stristr(PHP_OS,"win")) {
|
||||
setlocale(LC_ALL, "cat-esp.UTF-8", "cat-esp", "Catalan_Spain", "Catalan-esp.UTF-8");
|
||||
} else {
|
||||
setlocale(LC_ALL, "ca_ES.UTF-8", "ca_ES.UTF-8@euro", "ca_ES@euro", "esp.UTF-8", "cat_esp.UTF-8", "Catalan-esp.UTF-8","catalan.UTF-8");
|
||||
}
|
||||
?>
|
||||
Reference in New Issue
Block a user