Skip to content

Commit a072ecd

Browse files
committed
end
1 parent 3449a49 commit a072ecd

File tree

3 files changed

+33
-3
lines changed

3 files changed

+33
-3
lines changed

messages/pl/builder.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,9 @@
5858
'Checked' => 'Zaznaczone',
5959
'Selected' => 'Domyślnie wybrany',
6060
'Method' => 'Metoda wysyłki',
61-
'Action' => 'Adres odbioru',
61+
'Action' => 'Adres odbioru żądania',
62+
'ID' => 'Html Id',
63+
'Class' => 'Html Class',
6264
'Template' => 'Szablon',
6365

6466
'Preview field' => 'Podgląd pola',

tests/php/_support/_generated/UnitTesterActions.php

+29-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<?php //[STAMP] c2c55d7cd19661a65c9fe346d57e05bc
1+
<?php //[STAMP] 5cbabccd0fb5918f8f3620c70e0ac0ae
22
namespace _generated;
33

44
// This class was automatically generated by build task
@@ -323,6 +323,20 @@ public function assertTrue($condition, $message = null) {
323323
}
324324

325325

326+
/**
327+
* [!] Method is generated. Documentation taken from corresponding module.
328+
*
329+
* Checks that the condition is NOT true (everything but true)
330+
*
331+
* @param $condition
332+
* @param string $message
333+
* @see \Codeception\Module\Asserts::assertNotTrue()
334+
*/
335+
public function assertNotTrue($condition, $message = null) {
336+
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertNotTrue', func_get_args()));
337+
}
338+
339+
326340
/**
327341
* [!] Method is generated. Documentation taken from corresponding module.
328342
*
@@ -337,6 +351,20 @@ public function assertFalse($condition, $message = null) {
337351
}
338352

339353

354+
/**
355+
* [!] Method is generated. Documentation taken from corresponding module.
356+
*
357+
* Checks that the condition is NOT false (everything but false)
358+
*
359+
* @param $condition
360+
* @param string $message
361+
* @see \Codeception\Module\Asserts::assertNotFalse()
362+
*/
363+
public function assertNotFalse($condition, $message = null) {
364+
return $this->getScenario()->runStep(new \Codeception\Step\Action('assertNotFalse', func_get_args()));
365+
}
366+
367+
340368
/**
341369
* [!] Method is generated. Documentation taken from corresponding module.
342370
*

views/module/end.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<?php
2-
$this->title = Yii::t('Form end registration');
2+
$this->title = Yii::t('builder', 'End registration');
33
$this->params['breadcrumbs'][] = ['label' => Yii::t('builder', 'All forms') , 'url' => ['index']];
44
?>
55

0 commit comments

Comments
 (0)