refactor Lang table

This commit is contained in:
Manuel Raynaud
2013-09-05 08:30:15 +02:00
parent 58a68b1959
commit 43a2c0ac7b
7 changed files with 703 additions and 127 deletions

View File

@@ -23,34 +23,4 @@ class Lang extends BaseLang {
return $default_lang;
}
public function getDateFormat()
{
return "d/m/Y";
}
public function getTimeFormat()
{
return "H:i:s";
}
public function getDateTimeFormat()
{
return "d/m/Y H:i:s";
}
public function getDecimalSeparator()
{
return ".";
}
public function getThousandsSeparator()
{
return " ";
}
public function getDecimals()
{
return 2;
}
}