BUG-13604 Day and Month are not translated.

Day and Month are not translated when country is not used inside the .po file header.
This commit is contained in:
norahmollo
2013-12-16 14:50:28 -04:00
parent 552a4265a3
commit ff78fea91b
5 changed files with 2 additions and 14 deletions

View File

@@ -27,9 +27,7 @@
*/ */
// //
// It works with the table CONFIGURATION in a WF dataBase // It works with the table CONFIGURATION in a WF dataBase
//
// Copyright (C) 2007 COLOSA // Copyright (C) 2007 COLOSA
//
// License: LGPL, see LICENSE // License: LGPL, see LICENSE
//////////////////////////////////////////////////// ////////////////////////////////////////////////////

View File

@@ -22,11 +22,9 @@
* *
* For more information, contact Colosa Inc, 2566 Le Jeune Rd., * For more information, contact Colosa Inc, 2566 Le Jeune Rd.,
* Coral Gables, FL, 33134, USA, or email info@colosa.com. * Coral Gables, FL, 33134, USA, or email info@colosa.com.
*
*/ */
//require_once 'classes/model/om/BaseLanguage.php'; //require_once 'classes/model/om/BaseLanguage.php';
//require_once 'classes/model/Content.php'; //require_once 'classes/model/Content.php';
//require_once 'classes/model/IsoCountry.php'; //require_once 'classes/model/IsoCountry.php';
//require_once 'classes/model/Translation.php'; //require_once 'classes/model/Translation.php';
@@ -34,8 +32,6 @@
/** /**
* Skeleton subclass for representing a row from the 'LANGUAGE' table. * Skeleton subclass for representing a row from the 'LANGUAGE' table.
* *
*
*
* You should add additional methods to this class to meet the * You should add additional methods to this class to meet the
* application requirements. This class will only be generated as * application requirements. This class will only be generated as
* long as it does not already exist in the output directory. * long as it does not already exist in the output directory.

View File

@@ -1,19 +1,13 @@
<?php <?php
require_once 'propel/om/BaseObject.php'; require_once 'propel/om/BaseObject.php';
require_once 'propel/om/Persistent.php'; require_once 'propel/om/Persistent.php';
include_once 'propel/util/Criteria.php'; include_once 'propel/util/Criteria.php';
include_once 'classes/model/LanguagePeer.php'; include_once 'classes/model/LanguagePeer.php';
/** /**
* Base class that represents a row from the 'LANGUAGE' table. * Base class that represents a row from the 'LANGUAGE' table.
* *
*
*
* @package workflow.classes.model.om * @package workflow.classes.model.om
*/ */
abstract class BaseLanguage extends BaseObject implements Persistent abstract class BaseLanguage extends BaseObject implements Persistent

View File

@@ -25,7 +25,7 @@ INSERT INTO CONTENT (CON_CATEGORY,CON_PARENT,CON_ID,CON_LANG,CON_VALUE) VALUES
('PER_NAME','','00000000000000000000000000000001','en','Login'), ('PER_NAME','','00000000000000000000000000000001','en','Login'),
('PER_NAME','','00000000000000000000000000000002','en','Setup'); ('PER_NAME','','00000000000000000000000000000002','en','Setup');
INSERT INTO `LANGUAGE` (`LAN_ID`, `LAN_LOCATION`, `LAN_NAME`, `LAN_NATIVE_NAME`, `LAN_DIRECTION`, `LAN_WEIGHT`, `LAN_ENABLED`, `LAN_CALENDAR`) VALUES INSERT INTO LANGUAGE (LAN_ID, LAN_LOCATION, LAN_NAME, LAN_NATIVE_NAME, LAN_DIRECTION, LAN_WEIGHT, LAN_ENABLED, LAN_CALENDAR) VALUES
('aa', '', 'Afar', '', 'L', 0, '0', 'GREGORIAN'), ('aa', '', 'Afar', '', 'L', 0, '0', 'GREGORIAN'),
('ab', '', 'Abkhazian', '', 'L', 1, '0', 'GREGORIAN'), ('ab', '', 'Abkhazian', '', 'L', 1, '0', 'GREGORIAN'),
('af', '', 'Afrikaans', '', 'L', 2, '0', 'GREGORIAN'), ('af', '', 'Afrikaans', '', 'L', 2, '0', 'GREGORIAN'),

View File

@@ -312,7 +312,7 @@ CREATE TABLE `ISO_SUBDIVISION`
PRIMARY KEY (`IC_UID`,`IS_UID`) PRIMARY KEY (`IC_UID`,`IS_UID`)
)ENGINE=InnoDB DEFAULT CHARSET='utf8'; )ENGINE=InnoDB DEFAULT CHARSET='utf8';
#----------------------------------------------------------------------------- #-----------------------------------------------------------------------------
#-- LANGUAGE #-- LANGUAGE --
#----------------------------------------------------------------------------- #-----------------------------------------------------------------------------
DROP TABLE IF EXISTS `LANGUAGE`; DROP TABLE IF EXISTS `LANGUAGE`;