Fix for translation phrases gathering process, vicidial.php

git-svn-id: svn://192.168.202.10@3182 3d104415-ff17-0410-8863-d5cf3c621b8a
This commit is contained in:
mattf
2019-12-27 17:28:46 +00:00
parent 05bfb26b42
commit cf27b2dd2b
+6 -3
View File
@@ -628,10 +628,11 @@
# 191111-0837 - Added LTMGAD/XAMMAD Hotkey options # 191111-0837 - Added LTMGAD/XAMMAD Hotkey options
# 191111-1619 - Added user additional status groups # 191111-1619 - Added user additional status groups
# 191114-0949 - Added options for enable_first_webform and recording_buttons # 191114-0949 - Added options for enable_first_webform and recording_buttons
# 191227-1227 - Fix for translation phrases gathering process
# #
$version = '2.14-597c'; $version = '2.14-598c';
$build = '191114-0949'; $build = '191227-1227';
$mel=1; # Mysql Error Log enabled = 1 $mel=1; # Mysql Error Log enabled = 1
$mysql_log_count=91; $mysql_log_count=91;
$one_mysql_log=0; $one_mysql_log=0;
@@ -4117,12 +4118,14 @@ while ($CINC < 12)
$CfirstdayARY = getdate($Cstart); $CfirstdayARY = getdate($Cstart);
#echo "|$Cmon|$Cmonth|$CINC|\n"; #echo "|$Cmon|$Cmonth|$CINC|\n";
$CPRNTDAY = date("Y-m", $Cstart); $CPRNTDAY = date("Y-m", $Cstart);
$temp_Cmonths = $Cmonths[$CfirstdayARY['mon']];
$temp_Cfirstday = $CfirstdayARY[year];
$CCAL_OUT .= "<table border=\"1\" cellpadding=\"1\" bordercolor=\"000000\" cellspacing=\"0\" bgcolor=\"white\">"; $CCAL_OUT .= "<table border=\"1\" cellpadding=\"1\" bordercolor=\"000000\" cellspacing=\"0\" bgcolor=\"white\">";
$CCAL_OUT .= "<tr>"; $CCAL_OUT .= "<tr>";
$CCAL_OUT .= "<td colspan=\"7\" bordercolor=\"#ffffff\" bgcolor=\"#FFFFCC\">"; $CCAL_OUT .= "<td colspan=\"7\" bordercolor=\"#ffffff\" bgcolor=\"#FFFFCC\">";
$CCAL_OUT .= "<div align=\"center\"><font color=\"#000066\"><b><font face=\"Arial, Helvetica, sans-serif\" size=\"2\">"; $CCAL_OUT .= "<div align=\"center\"><font color=\"#000066\"><b><font face=\"Arial, Helvetica, sans-serif\" size=\"2\">";
$CCAL_OUT .= _QXZ($Cmonths[$CfirstdayARY['mon']])." $CfirstdayARY[year]"; $CCAL_OUT .= _QXZ($temp_Cmonths)." $temp_Cfirstday";
$CCAL_OUT .= "</font></b></font></div>"; $CCAL_OUT .= "</font></b></font></div>";
$CCAL_OUT .= "</td>"; $CCAL_OUT .= "</td>";
$CCAL_OUT .= "</tr>"; $CCAL_OUT .= "</tr>";