[SOLVED] Want to add Execution Type "To be decide"
Moderators: Amaradana, TurboPT, TL Developers
[SOLVED] Want to add Execution Type "To be decide"
Currently there are Manually and Automated available but I want to add "To be decide". Is that possible?
Last edited by cookie on Fri Dec 17, 2010 4:11 pm, edited 1 time in total.
Re: Want to add Execution Type "To be decide"
I added definition in const.inc.php -> define('TESTCASE_EXECUTION_TYPE_DECIDE', 3);
I added also to testcase.class.php ->
$this->execution_types = array(TESTCASE_EXECUTION_TYPE_MANUAL => lang_get('manual'),
TESTCASE_EXECUTION_TYPE_AUTO => lang_get('automated'),
TESTCASE_EXECUTION_TYPE_DECIDE => lang_get('to be decide')
the combo box is working correct but instead of string "to be decide" im getting "LOCALIZE: to be decided" - how can i add this string to localize translations ? please point me to the right direction i wonder how it works.
I added also to testcase.class.php ->
$this->execution_types = array(TESTCASE_EXECUTION_TYPE_MANUAL => lang_get('manual'),
TESTCASE_EXECUTION_TYPE_AUTO => lang_get('automated'),
TESTCASE_EXECUTION_TYPE_DECIDE => lang_get('to be decide')
the combo box is working correct but instead of string "to be decide" im getting "LOCALIZE: to be decided" - how can i add this string to localize translations ? please point me to the right direction i wonder how it works.
Re: Want to add Execution Type "To be decide"
'to be decide' can not be used only allowed chars: letters, numbers and underscore
For en_GB localization
[YOUR TL INSTALL DIR]\locale\en_GB\custom_strings.txt
create it giving a look to strings.txt
For en_GB localization
[YOUR TL INSTALL DIR]\locale\en_GB\custom_strings.txt
create it giving a look to strings.txt
Re: Want to add Execution Type "To be decide"
Thank you fman of course worksfman wrote:'to be decide' can not be used only allowed chars: letters, numbers and underscore
For en_GB localization
[YOUR TL INSTALL DIR]\locale\en_GB\custom_strings.txt
create it giving a look to strings.txt
Re: [SOLVED] Want to add Execution Type "To be decide"
Hi,
I've succeed to add an execution type as described below. All is OK, except that "new execution type" is not correctly reported in Test Plan report.
Instead of new execution type ("To be decide" for example), default execution type value ("Manual") is written in Test Plan report.
Is anybody have an idea?
Thanks.
I've succeed to add an execution type as described below. All is OK, except that "new execution type" is not correctly reported in Test Plan report.
Instead of new execution type ("To be decide" for example), default execution type value ("Manual") is written in Test Plan report.
Is anybody have an idea?
Thanks.