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