mirror of
https://github.com/Dolibarr/dolibarr.git
synced 2025-12-05 09:08:09 +01:00
Qual: Work to prepare usage of jquery data plugins.
This commit is contained in:
@@ -3333,7 +3333,7 @@ class Form
|
||||
if (strval($set_time) != '' && $set_time != -1)
|
||||
{
|
||||
//$formated_date=dol_print_date($set_time,$conf->format_date_short);
|
||||
$formated_date=dol_print_date($set_time,$langs->trans("FormatDateShort")); // FormatDateShort for dol_print_date/FormatDateShortJava that is same for javascript
|
||||
$formated_date=dol_print_date($set_time,$langs->trans("FormatDateShortInput")); // FormatDateShortInput for dol_print_date / FormatDateShortJavaInput that is same for javascript
|
||||
}
|
||||
|
||||
// Calendrier popup version eldy
|
||||
@@ -3342,7 +3342,7 @@ class Form
|
||||
// Zone de saisie manuelle de la date
|
||||
$retstring.='<input id="'.$prefix.'" name="'.$prefix.'" type="text" size="9" maxlength="11" value="'.$formated_date.'"';
|
||||
$retstring.=($disabled?' disabled="disabled"':'');
|
||||
$retstring.=' onChange="dpChangeDay(\''.$prefix.'\',\''.$langs->trans("FormatDateShortJava").'\'); "'; // FormatDateShort for dol_print_date/FormatDateShortJava that is same for javascript
|
||||
$retstring.=' onChange="dpChangeDay(\''.$prefix.'\',\''.$langs->trans("FormatDateShortJavaInput").'\'); "'; // FormatDateShortInput for dol_print_date / FormatDateShortJavaInput that is same for javascript
|
||||
$retstring.='>';
|
||||
|
||||
// Icone calendrier
|
||||
@@ -3350,7 +3350,7 @@ class Form
|
||||
{
|
||||
$retstring.='<button id="'.$prefix.'Button" type="button" class="dpInvisibleButtons"';
|
||||
$base=DOL_URL_ROOT.'/core/';
|
||||
$retstring.=' onClick="showDP(\''.$base.'\',\''.$prefix.'\',\''.$langs->trans("FormatDateShortJava").'\',\''.$langs->defaultlang.'\');">'.img_object($langs->trans("SelectDate"),'calendarday','class="datecallink"').'</button>';
|
||||
$retstring.=' onClick="showDP(\''.$base.'\',\''.$prefix.'\',\''.$langs->trans("FormatDateShortJavaInput").'\',\''.$langs->defaultlang.'\');">'.img_object($langs->trans("SelectDate"),'calendarday','class="datecallink"').'</button>';
|
||||
}
|
||||
else $retstring.='<button id="'.$prefix.'Button" type="button" class="dpInvisibleButtons">'.img_object($langs->trans("Disabled"),'calendarday','class="datecallink"').'</button>';
|
||||
|
||||
@@ -3359,7 +3359,7 @@ class Form
|
||||
$retstring.='<input type="hidden" id="'.$prefix.'year" name="'.$prefix.'year" value="'.$syear.'">'."\n";
|
||||
}
|
||||
else
|
||||
{
|
||||
{
|
||||
print "Bad value of MAIN_POPUP_CALENDAR";
|
||||
}
|
||||
}
|
||||
@@ -3453,7 +3453,7 @@ class Form
|
||||
if ($usecalendar == "eldy")
|
||||
{
|
||||
$base=DOL_URL_ROOT.'/core/';
|
||||
$reset_scripts .= 'resetDP(\''.$base.'\',\''.$prefix.'\',\''.$langs->trans("FormatDateShortJava").'\',\''.$langs->defaultlang.'\');';
|
||||
$reset_scripts .= 'resetDP(\''.$base.'\',\''.$prefix.'\',\''.$langs->trans("FormatDateShortJavaInput").'\',\''.$langs->defaultlang.'\');';
|
||||
}
|
||||
else
|
||||
{
|
||||
|
||||
@@ -224,16 +224,16 @@ function displayBox($selectedDate,$month,$year)
|
||||
if($thedate==$selDate) $dayclass="dpSelected";
|
||||
elseif($thedate==$today) $dayclass="dpToday";
|
||||
|
||||
if ($langs->trans("FormatDateShortJava")=="FormatDateShortJava")
|
||||
if ($langs->trans("FormatDateShortJavaInput")=="FormatDateShortJavaInput")
|
||||
{
|
||||
print "ERROR FormatDateShortJava not defined for language ".$langs->defaultlang;
|
||||
print "ERROR FormatDateShortJavaInput not defined for language ".$langs->defaultlang;
|
||||
exit;
|
||||
}
|
||||
|
||||
// Sur click dans calendrier, appelle fonction dpClickDay
|
||||
echo "<TD class=\"".$dayclass."\"";
|
||||
echo " onMouseOver=\"dpHighlightDay(".$mydate["year"].",parseInt('".dol_print_date($thedate,"%m")."',10),".$mydate["mday"].",tradMonths)\"";
|
||||
echo " onClick=\"dpClickDay(".$mydate["year"].",parseInt('".dol_print_date($thedate,"%m")."',10),".$mydate["mday"].",'".$langs->trans("FormatDateShortJava")."')\"";
|
||||
echo " onClick=\"dpClickDay(".$mydate["year"].",parseInt('".dol_print_date($thedate,"%m")."',10),".$mydate["mday"].",'".$langs->trans("FormatDateShortJavaInput")."')\"";
|
||||
echo ">".sprintf("%02s",$mydate["mday"])."</TD>";
|
||||
$cols++;
|
||||
|
||||
|
||||
@@ -15,7 +15,11 @@ FONTSIZEFORPDF=9
|
||||
SeparatorDecimal=.
|
||||
SeparatorThousand=None
|
||||
FormatDateShort=%d/%m/%Y
|
||||
FormatDateShortInpu=%d/%m/%Y
|
||||
FormatDateShortJava=dd/MM/yyyy
|
||||
FormatDateShortJavaInput=dd/MM/yyyy
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
FormatDateShortJQueryInput=dd/mm/yy
|
||||
FormatHourShort=%H:%M
|
||||
FormatDateTextShort=%d %b %Y
|
||||
FormatDateText=%d %B %Y
|
||||
@@ -600,7 +604,6 @@ Prefix=بادئة
|
||||
|
||||
// START - Lines generated via autotranslator.php tool (2012-02-29 15:55:27).
|
||||
// Reference language: en_US -> ar_SA
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
AddLink=إضافة وصلة
|
||||
Of=من
|
||||
SearchOf=البحث
|
||||
|
||||
@@ -10,8 +10,11 @@ FONTSIZEFORPDF=9
|
||||
SeparatorDecimal=.
|
||||
SeparatorThousand=,
|
||||
FormatDateShort=%d.%m.%Y
|
||||
FormatDateShortInput=%d.%m.%Y
|
||||
FormatDateShortJava=dd.MM.yyyy
|
||||
FormatDateShortJavaInput=dd.MM.yyyy
|
||||
FormatDateShortJQuery=dd.mm.yy
|
||||
FormatDateShortJQueryInput=dd.mm.yy
|
||||
FormatHourShort=%H:%M
|
||||
FormatHourShortDuration=%H:%M
|
||||
FormatDateTextShort=%d %b %Y
|
||||
|
||||
@@ -4,8 +4,11 @@ DIRECTION=ltr
|
||||
SeparatorDecimal=,
|
||||
SeparatorThousand=
|
||||
FormatDateShort=%d/%m/%Y
|
||||
FormatDateShortInput=%d/%m/%Y
|
||||
FormatDateShortJava=dd/MM/yyyy
|
||||
FormatDateShortJavaInput=dd/MM/yyyy
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
FormatDateShortJQueryInput=dd/mm/yy
|
||||
FormatHourShort=%H:%M
|
||||
FormatHourShortDuration=%H:%M
|
||||
FormatDateTextShort=%d %b %Y
|
||||
|
||||
@@ -14,7 +14,11 @@ CHARSET=UTF-8
|
||||
SeparatorDecimal=.
|
||||
SeparatorThousand=,
|
||||
FormatDateShort=%d/%m/%Y
|
||||
FormatDateShortInput=%d/%m/%Y
|
||||
FormatDateShortJava=dd/MM/yyyy
|
||||
FormatDateShortJavaInput=dd/MM/yyyy
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
FormatDateShortJQueryInput=dd/mm/yy
|
||||
FormatHourShort=%H:%M
|
||||
FormatDateTextShort=%d %b %Y
|
||||
FormatDateText=%d %B %Y
|
||||
@@ -624,7 +628,6 @@ Prefix=Præfiks
|
||||
|
||||
// START - Lines generated via autotranslator.php tool (2012-02-29 15:59:19).
|
||||
// Reference language: en_US -> da_DK
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
AddLink=Tilføj link
|
||||
Of=af
|
||||
SearchOf=Søg
|
||||
|
||||
@@ -10,7 +10,9 @@ DIRECTION=ltr
|
||||
SeparatorDecimal=,
|
||||
SeparatorThousand=.
|
||||
FormatDateShort=%d/%m/%Y
|
||||
FormatDateShortInput=%d/%m/%Y
|
||||
FormatDateShortJava=dd/MM/yyyy
|
||||
FormatDateShortJavaInput=dd/MM/yyyy
|
||||
FormatHourShort=%H:%M
|
||||
FormatDateTextShort=%d %b %Y
|
||||
FormatDateText=%d %B %Y
|
||||
|
||||
@@ -11,8 +11,11 @@ DIRECTION=ltr
|
||||
SeparatorDecimal=,
|
||||
SeparatorThousand=.
|
||||
FormatDateShort=%d/%m/%Y
|
||||
FormatDateShortInput=%d/%m/%Y
|
||||
FormatDateShortJava=dd/MM/yyyy
|
||||
FormatDateShortJavaInput=dd/MM/yyyy
|
||||
FormatDateShortJQuery=dd/MM/yy
|
||||
FormatDateShortJQueryInput=dd/MM/yy
|
||||
FormatHourShort=%I:%M %p
|
||||
FormatHourShortDuration=%H:%M
|
||||
FormatDateTextShort=%d %b %Y
|
||||
|
||||
@@ -7,7 +7,11 @@ FONTSIZEFORPDF=9
|
||||
SeparatorDecimal=.
|
||||
SeparatorThousand=,
|
||||
FormatDateShort=%d/%m/%Y
|
||||
FormatDateShortInput=%d/%m/%Y
|
||||
FormatDateShortJava=dd/MM/yyyy
|
||||
FormatDateShortJavaInput=dd/MM/yyyy
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
FormatDateShortJQueryInput=dd/mm/yy
|
||||
FormatHourShort=%I:%M %p
|
||||
FormatHourShortDuration=%H:%M
|
||||
FormatDateTextShort=%b %d, %Y
|
||||
@@ -592,7 +596,6 @@ ShortSunday=Κ
|
||||
|
||||
// START - Lines generated via autotranslator.php tool (2011-06-26 15:35:22).
|
||||
// Reference language: en_US -> el_GR
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
AddLink=Προσθήκη συνδέσμου
|
||||
Of=του
|
||||
AmountByMonth=Ποσό ανά μήνα
|
||||
|
||||
@@ -4,7 +4,11 @@ CHARSET=UTF-8
|
||||
SeparatorDecimal=.
|
||||
SeparatorThousand=,
|
||||
FormatDateShort=%d/%m/%Y
|
||||
FormatDateShortInput=%d/%m/%Y
|
||||
FormatDateShortJava=dd/MM/yyyy
|
||||
FormatDateShortJavaInput=dd/MM/yyyy
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
FormatDateShortJQueryInput=dd/mm/yy
|
||||
FormatHourShort=%H:%M
|
||||
FormatDateTextShort=%d %b %Y
|
||||
FormatDateText=%d %B %Y
|
||||
|
||||
@@ -3,7 +3,11 @@ CHARSET=UTF-8
|
||||
SeparatorDecimal=.
|
||||
SeparatorThousand=,
|
||||
FormatDateShort=%d/%m/%Y
|
||||
FormatDateShortInput=%d/%m/%Y
|
||||
FormatDateShortJava=dd/MM/yyyy
|
||||
FormatDateShortJavaInput=dd/MM/yyyy
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
FormatDateShortJQueryInput=dd/mm/yy
|
||||
FormatHourShort=%H:%M
|
||||
FormatDateTextShort=%d %b %Y
|
||||
FormatDateText=%d %B %Y
|
||||
|
||||
@@ -4,7 +4,11 @@ DIRECTION=ltr
|
||||
SeparatorDecimal=.
|
||||
SeparatorThousand=,
|
||||
FormatDateShort=%d/%m/%Y
|
||||
FormatDateShortInput=%d/%m/%Y
|
||||
FormatDateShortJava=dd/MM/yyyy
|
||||
FormatDateShortJavaInput=dd/MM/yyyy
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
FormatDateShortJQueryInput=dd/mm/yy
|
||||
FormatHourShort=%I:%M %p
|
||||
FormatDateTextShort=%b %d, %Y
|
||||
FormatDateText=%B %d, %Y
|
||||
|
||||
@@ -4,7 +4,11 @@ CHARSET=UTF-8
|
||||
SeparatorDecimal=.
|
||||
SeparatorThousand=,
|
||||
FormatDateShort=%d/%m/%Y
|
||||
FormatDateShortInput=%d/%m/%Y
|
||||
FormatDateShortJava=dd/MM/yyyy
|
||||
FormatDateShortJavaInput=dd/MM/yyyy
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
FormatDateShortJQueryInput=dd/mm/yy
|
||||
FormatHourShort=%H:%M
|
||||
FormatDateTextShort=%d %b %Y
|
||||
FormatDateText=%d %B %Y
|
||||
|
||||
@@ -6,8 +6,11 @@ FONTSIZEFORPDF=9
|
||||
SeparatorDecimal=.
|
||||
SeparatorThousand=,
|
||||
FormatDateShort=%d/%m/%Y
|
||||
FormatDateShortInput=%d/%m/%Y
|
||||
FormatDateShortJava=dd/MM/yyyy
|
||||
FormatDateShortJavaInput=dd/MM/yyyy
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
FormatDateShortJQueryInput=dd/mm/yy
|
||||
FormatHourShort=%I:%M %p
|
||||
FormatHourShortDuration=%H:%M
|
||||
FormatDateTextShort=%d %b %Y
|
||||
|
||||
@@ -4,8 +4,11 @@ DIRECTION=ltr
|
||||
SeparatorDecimal=.
|
||||
SeparatorThousand=,
|
||||
FormatDateShort=%m/%d/%Y
|
||||
FormatDateShortInput=%m/%d/%Y
|
||||
FormatDateShortJava=MM/dd/yyyy
|
||||
FormatDateShortJavaInput=MM/dd/yyyy
|
||||
FormatDateShortJQuery=mm/dd/yy
|
||||
FormatDateShortJQueryInput=mm/dd/yy
|
||||
FormatHourShort=%I:%M %p
|
||||
FormatHourShortDuration=%H:%M
|
||||
FormatDateTextShort=%b %d, %Y
|
||||
|
||||
@@ -4,8 +4,11 @@ DIRECTION=ltr
|
||||
SeparatorDecimal=,
|
||||
SeparatorThousand=
|
||||
FormatDateShort=%d/%m/%Y
|
||||
FormatDateShortInput=%d/%m/%Y
|
||||
FormatDateShortJava=dd/MM/yyyy
|
||||
FormatDateShortJavaInput=dd/MM/yyyy
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
FormatDateShortJQueryInput=dd/mm/yy
|
||||
FormatHourShort=%H:%M
|
||||
FormatHourShortDuration=%H:%M
|
||||
FormatDateTextShort=%d %b %Y
|
||||
|
||||
@@ -3,15 +3,6 @@ CHARSET=UTF-8
|
||||
DIRECTION=ltr
|
||||
SeparatorDecimal=,
|
||||
SeparatorThousand=
|
||||
FormatDateShort=%d/%m/%Y
|
||||
FormatDateShortJava=dd/MM/yyyy
|
||||
FormatHourShort=%H:%M
|
||||
FormatHourShortDuration=%H:%M
|
||||
FormatDateTextShort=%d %b %Y
|
||||
FormatDateText=%d %B %Y
|
||||
FormatDateHourShort=%d/%m/%Y %H:%M
|
||||
FormatDateHourTextShort=%d %b %Y %H:%M
|
||||
FormatDateHourText=%d %B %Y %H:%M
|
||||
AmountVAT=Importe ISV
|
||||
TotalVAT=Total ISV
|
||||
IncludedVAT=ISV incluido
|
||||
|
||||
@@ -3,15 +3,6 @@ CHARSET=UTF-8
|
||||
DIRECTION=ltr
|
||||
SeparatorDecimal=,
|
||||
SeparatorThousand=
|
||||
FormatDateShort=%d/%m/%Y
|
||||
FormatDateShortJava=dd/MM/yyyy
|
||||
FormatHourShort=%H:%M
|
||||
FormatHourShortDuration=%H:%M
|
||||
FormatDateTextShort=%d %b %Y
|
||||
FormatDateText=%d %B %Y
|
||||
FormatDateHourShort=%d/%m/%Y %H:%M
|
||||
FormatDateHourTextShort=%d %b %Y %H:%M
|
||||
FormatDateHourText=%d %B %Y %H:%M
|
||||
AmountVAT=Importe IVU
|
||||
TotalVAT=Total IVU
|
||||
IncludedVAT=IVU incluido
|
||||
|
||||
@@ -12,8 +12,11 @@ DIRECTION=ltr
|
||||
SeparatorDecimal=.
|
||||
SeparatorThousand=,
|
||||
FormatDateShort=%m/%d/%Y
|
||||
FormatDateShortInput=%m/%d/%Y
|
||||
FormatDateShortJava=MM/dd/yyyy
|
||||
FormatDateShortJavaInput=MM/dd/yyyy
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
FormatDateShortJQueryInput=dd/mm/yy
|
||||
FormatHourShort=%I:%M %p
|
||||
FormatHourShortDuration=%H:%M
|
||||
FormatDateTextShort=%b %d, %Y
|
||||
|
||||
@@ -15,7 +15,11 @@ FONTSIZEFORPDF=9
|
||||
SeparatorDecimal=/
|
||||
SeparatorThousand=,
|
||||
FormatDateShort=%d/%m/%Y
|
||||
FormatDateShortInput=%d/%m/%Y
|
||||
FormatDateShortJava=dd/MM/yyyy
|
||||
FormatDateShortJavaInput=dd/MM/yyyy
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
FormatDateShortJQueryInput=dd/mm/yy
|
||||
FormatHourShort=%H:%M
|
||||
FormatDateTextShort=%d %b %Y
|
||||
FormatDateText=%d %B %Y
|
||||
|
||||
@@ -11,7 +11,11 @@ CHARSET=UTF-8
|
||||
SeparatorDecimal=,
|
||||
SeparatorThousand=
|
||||
FormatDateShort=%d.%m.%Y
|
||||
FormatDateShortInput=%d.%m.%Y
|
||||
FormatDateShortJava=dd.MM.yyyy
|
||||
FormatDateShortJavaInput=dd.MM.yyyy
|
||||
FormatDateShortJQuery=dd.mm.yy
|
||||
FormatDateShortJQueryInput=dd.mm.yy
|
||||
FormatHourShort=%H.%M
|
||||
FormatDateTextShort=%d. %b %Y
|
||||
FormatDateText=%d. %B %Y
|
||||
@@ -616,7 +620,6 @@ Prefix=Etuliite
|
||||
|
||||
// START - Lines generated via autotranslator.php tool (2012-02-29 16:10:23).
|
||||
// Reference language: en_US -> fi_FI
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
AddLink=Lisää linkki
|
||||
Of=ja
|
||||
SearchOf=Etsi
|
||||
|
||||
@@ -3,7 +3,11 @@ CHARSET=UTF-8
|
||||
SeparatorDecimal=,
|
||||
SeparatorThousand=
|
||||
FormatDateShort=%d/%m/%Y
|
||||
FormatDateShortInput=%d/%m/%Y
|
||||
FormatDateShortJava=dd/MM/yyyy
|
||||
FormatDateShortJavaInput=dd/MM/yyyy
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
FormatDateShortJQueryInput=dd/mm/yy
|
||||
FormatHourShort=%H:%M
|
||||
FormatDateTextShort=%d %b %Y
|
||||
FormatDateText=%d %B %Y
|
||||
|
||||
@@ -3,7 +3,11 @@ CHARSET=UTF-8
|
||||
SeparatorDecimal=,
|
||||
SeparatorThousand=
|
||||
FormatDateShort=%d.%m.%Y
|
||||
FormatDateShortInput=%d.%m.%Y
|
||||
FormatDateShortJava=dd.MM.yyyy
|
||||
FormatDateShortJavaInput=dd.MM.yyyy
|
||||
FormatDateShortJQuery=dd.mm.yy
|
||||
FormatDateShortJQueryInput=dd.mm.yy
|
||||
FormatHourShort=%H:%M
|
||||
FormatDateTextShort=%d %b %Y
|
||||
FormatDateText=%d %B %Y
|
||||
|
||||
@@ -3,7 +3,11 @@ CHARSET=UTF-8
|
||||
SeparatorDecimal=,
|
||||
SeparatorThousand=
|
||||
FormatDateShort=%d-%m-%Y
|
||||
FormatDateShortInput=%d-%m-%Y
|
||||
FormatDateShortJava=dd-MM-yyyy
|
||||
FormatDateShortJavaInput=dd-MM-yyyy
|
||||
FormatDateShortJQuery=dd-mm-yy
|
||||
FormatDateShortJQueryInput=dd-mm-yy
|
||||
FormatHourShort=%H:%M
|
||||
FormatDateTextShort=%d %b %Y
|
||||
FormatDateText=%d %B %Y
|
||||
|
||||
@@ -3,9 +3,12 @@ CHARSET=UTF-8
|
||||
DIRECTION=ltr
|
||||
SeparatorDecimal=,
|
||||
SeparatorThousand=
|
||||
FormatDateShort=%d/%m/%Y
|
||||
FormatDateShortJava=dd/MM/yyyy
|
||||
FormatDateShort=%d/%m/%y
|
||||
FormatDateShortInput=%d/%m/%Y
|
||||
FormatDateShortJava=dd/MM/yy
|
||||
FormatDateShortJavaInput=dd/MM/yyyy
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
FormatDateShortJQueryInput=dd/mm/yy
|
||||
FormatHourShort=%H:%M
|
||||
FormatHourShortDuration=%H:%M
|
||||
FormatDateTextShort=%d %b %Y
|
||||
|
||||
@@ -15,8 +15,11 @@ FONTSIZEFORPDF=9
|
||||
SeparatorDecimal=.
|
||||
SeparatorThousand=,
|
||||
FormatDateShort=%m/%d/%Y
|
||||
FormatDateShortInput=%m/%d/%Y
|
||||
FormatDateShortJava=MM/dd/yyyy
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
FormatDateShortJavaInput=MM/dd/yyyy
|
||||
FormatDateShortJQuery=mm/dd/yy
|
||||
FormatDateShortJQueryInput=mm/dd/yy
|
||||
FormatHourShort=%I:%M %p
|
||||
FormatHourShortDuration=%H:%M
|
||||
FormatDateTextShort=%b %d, %Y
|
||||
|
||||
@@ -5,7 +5,11 @@ FONTFORPDF=dejavusans
|
||||
SeparatorDecimal=.
|
||||
SeparatorThousand=,
|
||||
FormatDateShort=%d/%m/%Y
|
||||
FormatDateShortInput=%d/%m/%Y
|
||||
FormatDateShortJava=dd/MM/yyyy
|
||||
FormatDateShortJavaInput=dd/MM/yyyy
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
FormatDateShortJQueryInput=dd/mm/yy
|
||||
FormatHourShort=%I:%M %p
|
||||
FormatHourShortDuration=%H:%M
|
||||
FormatDateTextShort=%b %d, %Y
|
||||
@@ -587,7 +591,6 @@ ShortSunday=V
|
||||
|
||||
// START - Lines generated via autotranslator.php tool (2012-02-29 16:13:31).
|
||||
// Reference language: en_US -> hu_HU
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
AddLink=Link hozzáadása
|
||||
Of=A
|
||||
SearchOf=Keresés
|
||||
|
||||
@@ -12,7 +12,11 @@ DIRECTION=ltr
|
||||
SeparatorDecimal=.
|
||||
SeparatorThousand=,
|
||||
FormatDateShort=%d/%m/%Y
|
||||
FormatDateShortInput=%d/%m/%Y
|
||||
FormatDateShortJava=dd/MM/yyyy
|
||||
FormatDateShortJavaInput=dd/MM/yyyy
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
FormatDateShortJQueryInput=dd/mm/yy
|
||||
FormatHourShort=%H:%M
|
||||
FormatDateTextShort=%d %b %Y
|
||||
FormatDateText=%d %B %Y
|
||||
@@ -604,7 +608,6 @@ Reason=Ástæða
|
||||
|
||||
// START - Lines generated via autotranslator.php tool (2012-02-29 16:26:19).
|
||||
// Reference language: en_US -> is_IS
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
AddLink=Bæta við tengli
|
||||
Of=á
|
||||
SearchOf=Leita
|
||||
|
||||
@@ -270,15 +270,18 @@ FollowingConstantsWillBeSubstituted =Le seguenti costanti saranno sostitute
|
||||
ForCustomer =Per i clienti
|
||||
FormatDateHourShort =%d/%m/%Y %H.%M
|
||||
FormatDateHourText =%d %B %Y %H:%M
|
||||
FormatDateHourTextShort =%d %b %Y %H.%M
|
||||
FormatDateHourTextShort =%d %b %Y %H.%M
|
||||
FormatDateShort =%d/%m/%Y
|
||||
FormatDateShortInput =%d/%m/%Y
|
||||
FormatDateShortJava =dd/MM/yyyy
|
||||
FormatDateShortJQuery =dd/mm/yy
|
||||
FormatDateShortJavaInput =dd/MM/yyyy
|
||||
FormatDateShortJQuery =dd/mm/yy
|
||||
FormatDateShortJQueryInput =dd/mm/yy
|
||||
FormatDateText =%d %B %Y
|
||||
FormatDateTextShort =%d %b %Y
|
||||
FormatHourShortDuration =%H:%M
|
||||
FormatHourShort =%H.%M
|
||||
For =Per
|
||||
FormatHourShortDuration =%H:%M
|
||||
FormatHourShort =%H.%M
|
||||
For =Per
|
||||
FreeZone =Testo libero
|
||||
Frequency =Frequenza
|
||||
FridayMin =Ven
|
||||
|
||||
@@ -9,9 +9,12 @@ FONTSIZEFORPDF=9
|
||||
// Reference language: en_US -> ja_JP
|
||||
SeparatorDecimal=.
|
||||
SeparatorThousand=、
|
||||
FormatDateShort=%m/%d/%Y
|
||||
FormatDateShortJava=MM/dd/yyyy
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
FormatDateShort=%m/%d/%Y
|
||||
FormatDateShortInput=%m/%d/%Y
|
||||
FormatDateShortJava=MM/dd/yyyy
|
||||
FormatDateShortJavaInput=MM/dd/yyyy
|
||||
FormatDateShortJQuery=mm/dd/yy
|
||||
FormatDateShortJQueryInput=mm/dd/yy
|
||||
FormatHourShort=%I:%M %p
|
||||
FormatHourShortDuration=%H:%M
|
||||
FormatDateTextShort=%b %d, %Y
|
||||
|
||||
@@ -3,7 +3,11 @@ CHARSET=UTF-8
|
||||
SeparatorDecimal=,
|
||||
SeparatorThousand=
|
||||
FormatDateShort=%d.%m.%Y
|
||||
FormatDateShortInput=%d.%m.%Y
|
||||
FormatDateShortJava=dd.MM.yyyy
|
||||
FormatDateShortJavaInput=dd.MM.yyyy
|
||||
FormatDateShortJQuery=dd.mm.yy
|
||||
FormatDateShortJQueryInput=dd.mm.yy
|
||||
FormatHourShort=%H.%M
|
||||
FormatDateTextShort=%d. %b %Y
|
||||
FormatDateText=%d. %B %Y
|
||||
@@ -606,7 +610,6 @@ Day0=Søndag
|
||||
|
||||
// START - Lines generated via autotranslator.php tool (2012-02-29 17:06:43).
|
||||
// Reference language: en_US -> nb_NO
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
AddLink=Legg til link
|
||||
Of=av
|
||||
SearchOf=Søk
|
||||
|
||||
@@ -3,7 +3,11 @@ CHARSET=UTF-8
|
||||
SeparatorDecimal=,
|
||||
SeparatorThousand=
|
||||
FormatDateShort=%d/%m/%Y
|
||||
FormatDateShortInput=%d/%m/%Y
|
||||
FormatDateShortJava=dd/MM/yyyy
|
||||
FormatDateShortJavaInput=dd/MM/yyyy
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
FormatDateShortJQueryInput=dd/mm/yy
|
||||
FormatHourShort=%H:%M
|
||||
FormatDateTextShort=%d %b %Y
|
||||
FormatDateText=%d %B %Y
|
||||
|
||||
@@ -4,7 +4,11 @@ DIRECTION = ltr
|
||||
SeparatorDecimal = ,
|
||||
SeparatorThousand = .
|
||||
FormatDateShort = %d-%m-%Y
|
||||
FormatDateShortInput = %d-%m-%Y
|
||||
FormatDateShortJava = dd-MM-yyyy
|
||||
FormatDateShortJavaInput = dd-MM-yyyy
|
||||
FormatDateShortJQuery=dd-mm-yy
|
||||
FormatDateShortJQueryInput=dd-mm-yy
|
||||
FormatHourShort = %H:%M
|
||||
FormatHourShortDuration = %H:%M
|
||||
FormatDateTextShort = %d %b %Y
|
||||
@@ -590,7 +594,6 @@ ShortSunday = Zo
|
||||
|
||||
// START - Lines generated via autotranslator.php tool (2011-10-10 01:46:39).
|
||||
// Reference language: en_US -> nl_NL
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
JanuaryMin=Jan
|
||||
FebruaryMin=Februari
|
||||
MarchMin=Mar
|
||||
|
||||
@@ -15,7 +15,11 @@ FONTSIZEFORPDF=8
|
||||
SeparatorDecimal=,
|
||||
SeparatorThousand=
|
||||
FormatDateShort=%d-%m-%Y
|
||||
FormatDateShortInput=%d-%m-%Y
|
||||
FormatDateShortJava=dd-MM-yyyy
|
||||
FormatDateShortJavaInput=dd-MM-yyyy
|
||||
FormatDateShortJQuery=dd-mm-yy
|
||||
FormatDateShortJQueryInput=dd-mm-yy
|
||||
FormatHourShort=%H:%M
|
||||
FormatDateTextShort=%d %b %Y
|
||||
FormatDateText=%d %B %Y
|
||||
@@ -620,7 +624,6 @@ Prefix=Przedrostek
|
||||
|
||||
// START - Lines generated via autotranslator.php tool (2012-02-29 17:18:29).
|
||||
// Reference language: en_US -> pl_PL
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
AddLink=Dodaj link
|
||||
Of=z
|
||||
SearchOf=Szukaj
|
||||
|
||||
@@ -3,7 +3,11 @@ CHARSET=UTF-8
|
||||
SeparatorDecimal=,
|
||||
SeparatorThousand=
|
||||
FormatDateShort=%d/%m/%Y
|
||||
FormatDateShortInput=%d/%m/%Y
|
||||
FormatDateShortJava=dd/MM/yyyy
|
||||
FormatDateShortJavaInput=dd/MM/yyyy
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
FormatDateShortJQueryInput=dd/mm/yy
|
||||
FormatHourShort=%H:%M
|
||||
FormatDateTextShort=%d %b %Y
|
||||
FormatDateText=%d %B %Y
|
||||
@@ -601,7 +605,6 @@ Prefix=Prefixo
|
||||
|
||||
// START - Lines generated via autotranslator.php tool (2012-02-29 15:45:52).
|
||||
// Reference language: en_US -> pt_PT
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
AddLink=Adicionar link
|
||||
Of=de
|
||||
SearchOf=Pesquisar
|
||||
|
||||
@@ -13,7 +13,11 @@ FONTSIZEFORPDF=8
|
||||
SeparatorDecimal=,
|
||||
SeparatorThousand=
|
||||
FormatDateShort=%d.%m.%Y
|
||||
FormatDateShortInput=%d.%m.%Y
|
||||
FormatDateShortJava=dd.MM.yyyy
|
||||
FormatDateShortJavaInput=dd.MM.yyyy
|
||||
FormatDateShortJQuery=dd.mm.yy
|
||||
FormatDateShortJQueryInput=dd.mm.yy
|
||||
FormatHourShort=%H:%M
|
||||
FormatDateTextShort=%d %b %Y
|
||||
FormatDateText=%d %B %Y
|
||||
@@ -618,7 +622,6 @@ Prefix=Prefix
|
||||
|
||||
// START - Lines generated via autotranslator.php tool (2012-02-29 17:23:15).
|
||||
// Reference language: en_US -> ro_RO
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
AddLink=Adauga link-ul
|
||||
Of=de
|
||||
SearchOf=Căutare
|
||||
|
||||
@@ -15,7 +15,11 @@ DIRECTION=ltr
|
||||
SeparatorDecimal=,
|
||||
SeparatorThousand=
|
||||
FormatDateShort=%d.%m.%Y
|
||||
FormatDateShortInput=%d.%m.%Y
|
||||
FormatDateShortJava=dd.MM.yyyy
|
||||
FormatDateShortJavaInput=dd.MM.yyyy
|
||||
FormatDateShortJQuery=dd.mm.yy
|
||||
FormatDateShortJQueryInput=dd.mm.yy
|
||||
FormatHourShort=%H:%M
|
||||
FormatDateTextShort=%d %b %Y
|
||||
FormatDateText=%d %B %Y
|
||||
@@ -628,7 +632,6 @@ Person=Персона
|
||||
|
||||
// START - Lines generated via autotranslator.php tool (2011-08-18 23:26:41).
|
||||
// Reference language: en_US -> ru_RU
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
AddLink=Добавить ссылку
|
||||
Of=из
|
||||
AmountByMonth=Сумма за месяц
|
||||
|
||||
@@ -10,7 +10,11 @@ DIRECTION=ltr
|
||||
SeparatorDecimal=,
|
||||
SeparatorThousand=
|
||||
FormatDateShort=%d.%m.%Y
|
||||
FormatDateShortInput=%d.%m.%Y
|
||||
FormatDateShortJava=dd.MM.yyyy
|
||||
FormatDateShortJavaInput=dd.MM.yyyy
|
||||
FormatDateShortJQuery=dd.mm.yy
|
||||
FormatDateShortJQueryInput=dd.mm.yy
|
||||
FormatHourShort=%H:%M
|
||||
FormatDateTextShort=%d %b %Y
|
||||
FormatDateText=%d %B %Y
|
||||
|
||||
@@ -6,8 +6,11 @@ FONTSIZEFORPDF=8
|
||||
SeparatorDecimal = ,
|
||||
SeparatorThousand = .
|
||||
FormatDateShort = %d/%m/%Y
|
||||
FormatDateShortInput = %d/%m/%Y
|
||||
FormatDateShortJava = dd/MM/yyyy
|
||||
FormatDateShortJavaInput = dd/MM/yyyy
|
||||
FormatDateShortJQuery = dd/mm/yy
|
||||
FormatDateShortJQueryInput = dd/mm/yy
|
||||
FormatHourShort = %I:%M %p
|
||||
FormatHourShortDuration = %H:%M
|
||||
FormatDateTextShort = %d. %b, %Y
|
||||
|
||||
@@ -12,7 +12,11 @@ DIRECTION=ltr
|
||||
SeparatorDecimal=,
|
||||
SeparatorThousand=
|
||||
FormatDateShort=%Y-%m-%d
|
||||
FormatDateShortInput=%Y-%m-%d
|
||||
FormatDateShortJava=yyyy-MM-dd
|
||||
FormatDateShortJavaInput=yyyy-MM-dd
|
||||
FormatDateShortJQuery=yy-mm-dd
|
||||
FormatDateShortJQueryInput=yy-mm-dd
|
||||
FormatHourShort=%H:%M
|
||||
FormatHourShortDuration=%H:%M
|
||||
FormatDateTextShort=%b %d %Y
|
||||
@@ -594,7 +598,6 @@ ShortSunday=S
|
||||
|
||||
// START - Lines generated via autotranslator.php tool (2012-02-29 17:32:03).
|
||||
// Reference language: en_US -> sv_SE
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
AddLink=Tillsätt länk
|
||||
Of=av
|
||||
SearchOf=Sök
|
||||
|
||||
@@ -14,8 +14,11 @@ FONTSIZEFORPDF=8
|
||||
SeparatorDecimal=.
|
||||
SeparatorThousand=,
|
||||
FormatDateShort=%d/%m/%Y
|
||||
FormatDateShortInput=%d/%m/%Y
|
||||
FormatDateShortJava=dd/MM/yyyy
|
||||
FormatDateShortJavaInput=dd/MM/yyyy
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
FormatDateShortJQueryInput=dd/mm/yy
|
||||
FormatHourShort=%H:%M
|
||||
FormatHourShortDuration=%H:%M
|
||||
FormatDateTextShort=%d %b %Y
|
||||
|
||||
@@ -17,7 +17,11 @@ FONTSIZEFORPDF=9
|
||||
SeparatorDecimal=.
|
||||
SeparatorThousand=None
|
||||
FormatDateShort=%d/%m/%Y
|
||||
FormatDateShortInput=%d/%m/%Y
|
||||
FormatDateShortJava=dd/MM/yyyy
|
||||
FormatDateShortJavaInput=dd/MM/yyyy
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
FormatDateShortJQueryInput=dd/mm/yy
|
||||
FormatHourShort=%I:%M %p
|
||||
FormatDateTextShort=%b %d, %Y
|
||||
FormatDateText=%B %d, %Y
|
||||
@@ -604,7 +608,6 @@ Prefix=字首
|
||||
|
||||
// START - Lines generated via autotranslator.php tool (2012-02-29 17:37:09).
|
||||
// Reference language: en_US -> zh_CN
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
AddLink=添加链接
|
||||
Of=的
|
||||
SearchOf=搜索
|
||||
|
||||
@@ -13,7 +13,11 @@ FONTFORPDF=msungstdlight
|
||||
SeparatorDecimal=.
|
||||
SeparatorThousand=None
|
||||
FormatDateShort=%Y/%m/%d
|
||||
FormatDateShortInput=%Y/%m/%d
|
||||
FormatDateShortJava=yyyy/MM/dd
|
||||
FormatDateShortJavaInput=yyyy/MM/dd
|
||||
FormatDateShortJQuery=yy/mm/dd
|
||||
FormatDateShortJQueryInput=yy/mm/dd
|
||||
FormatHourShort=%I:%M %p
|
||||
FormatDateTextShort=%Y %b %d
|
||||
FormatDateText=%Y %B %d
|
||||
@@ -600,7 +604,6 @@ Prefix=字首
|
||||
|
||||
// START - Lines generated via autotranslator.php tool (2012-02-29 17:37:09).
|
||||
// Reference language: en_US -> zh_CN
|
||||
FormatDateShortJQuery=dd/mm/yy
|
||||
AddLink=添加鏈接
|
||||
Of=的
|
||||
SearchOf=搜尋
|
||||
|
||||
Reference in New Issue
Block a user