diff --git a/application/forms/AddNodeForm.php b/application/forms/AddNodeForm.php index 66a8f62..56b1325 100644 --- a/application/forms/AddNodeForm.php +++ b/application/forms/AddNodeForm.php @@ -66,7 +66,7 @@ class AddNodeForm extends QuickForm protected function addNewProcess() { $this->addElement('text', 'name', array( - 'label' => $this->translate('Name'), + 'label' => $this->translate('ID'), 'required' => true, 'description' => $this->translate( 'This is the unique identifier of this process' @@ -74,9 +74,9 @@ class AddNodeForm extends QuickForm )); $this->addElement('text', 'alias', array( - 'label' => $this->translate('Title'), + 'label' => $this->translate('Display Name'), 'description' => $this->translate( - 'Usually this title will be shown for this node. Equals name' + 'Usually this name will be shown for this node. Equals ID' . ' if not given' ), )); diff --git a/application/forms/BpConfigForm.php b/application/forms/BpConfigForm.php index fd2caaf..2332789 100644 --- a/application/forms/BpConfigForm.php +++ b/application/forms/BpConfigForm.php @@ -13,7 +13,7 @@ class BpConfigForm extends BpConfigBaseForm public function setup() { $this->addElement('text', 'name', array( - 'label' => $this->translate('Name'), + 'label' => $this->translate('ID'), 'required' => true, 'validators' => array( array( @@ -36,9 +36,9 @@ class BpConfigForm extends BpConfigBaseForm )); $this->addElement('text', 'Title', array( - 'label' => $this->translate('Title'), + 'label' => $this->translate('Display Name'), 'description' => $this->translate( - 'Usually this title will be shown for this process. Equals name' + 'Usually this name will be shown for this process. Equals ID' . ' if not given' ), )); diff --git a/application/forms/EditNodeForm.php b/application/forms/EditNodeForm.php index 778d871..e5e6058 100644 --- a/application/forms/EditNodeForm.php +++ b/application/forms/EditNodeForm.php @@ -87,7 +87,7 @@ class EditNodeForm extends QuickForm protected function addNewProcess() { $this->addElement('text', 'name', array( - 'label' => $this->translate('Name'), + 'label' => $this->translate('ID'), 'required' => true, 'disabled' => true, 'description' => $this->translate( @@ -96,9 +96,9 @@ class EditNodeForm extends QuickForm )); $this->addElement('text', 'alias', array( - 'label' => $this->translate('Title'), + 'label' => $this->translate('Display Name'), 'description' => $this->translate( - 'Usually this title will be shown for this node. Equals name' + 'Usually this name will be shown for this node. Equals ID' . ' if not given' ), )); diff --git a/application/forms/ProcessForm.php b/application/forms/ProcessForm.php index 199dcb5..9ee390d 100644 --- a/application/forms/ProcessForm.php +++ b/application/forms/ProcessForm.php @@ -32,7 +32,7 @@ class ProcessForm extends QuickForm { if ($this->node === null) { $this->addElement('text', 'name', array( - 'label' => $this->translate('Name'), + 'label' => $this->translate('ID'), 'required' => true, 'description' => $this->translate( 'This is the unique identifier of this process' @@ -47,9 +47,9 @@ class ProcessForm extends QuickForm } $this->addElement('text', 'alias', array( - 'label' => $this->translate('Title'), + 'label' => $this->translate('Display Name'), 'description' => $this->translate( - 'Usually this title will be shown for this node. Equals name' + 'Usually this name will be shown for this node. Equals ID' . ' if not given' ), ));