-
Notifications
You must be signed in to change notification settings - Fork 47
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* wip * wip * fixes * Feature/test1 (#483) * fixes * testtisg * wip * test * backmerge master * normalize everything * added locale test (#485) * added locale test * Apply fixes from StyleCI * wip * wip * Apply fixes from StyleCI * Update CHANGELOG.md * Implement #386 (#477) * Implement #386 * Apply fixes from StyleCI * Update Field.php * Update Model.php * Update Helper.php * Apply fixes from StyleCI * move functionality to atk4/core * Apply fixes from StyleCI * fix traits * Apply fixes from StyleCI * fix typo * Feature/pgsql test (#486) * fix one test * Setting current dependencies * wip * wip * Add matrix testing (#492) * Test using matrix * wip * wip * wip * clean up bundler * clean up bundler (#493) * wip * Fix/delete callback (#488) * fix one test * Setting current dependencies * fix/delete callback * Update composer.json * Fix/persistence sql condition (#487) * fix one test * Setting current dependencies * fix wrong assignment of value as condition * Update composer.json * Update SQL.php * Feature remove specified action (#489) * fix one test * Setting current dependencies * add method to remove specified action(s) from model * Update Model.php * spaces * Feature/add confirmation callback argument (#491) * fix one test * Setting current dependencies * pass the action object as argument to confirmation callback * badge * Feature/set custom edit exec button (#490) * fix one test * Setting current dependencies * use custom exec button on edit action * Update Model.php * remove class, use seed Co-authored-by: Imants Horsts <[email protected]> * model default add field property (#454) * use the object default add field property * no need for double brackets. * force tests Co-authored-by: Romans Malinovskis <[email protected]> Co-authored-by: Imants Horsts <[email protected]> * Fix empty array condition (#498) * more tests * Apply fixes from StyleCI * better implementation for addFields() and test cases (#499) * better implementation for addFields() and test cases * Apply fixes from StyleCI * use shorthand method * simplify code * implement `exprNow()` method. Rely on dsql PR. * Apply fixes from StyleCI * pass * add docs Co-authored-by: Romans Malinovskis <[email protected]> * Fix/ Small Action related fix (#502) * Fix/ Small Action related fix - Set Edit action exec button labe lto 'Save' by default - Set Edit action exec button colot to blue by default - Set default description for Add action in model - Add method to retreive model from Action * Apply fixes from StyleCI * fix comment Co-authored-by: Imants Horsts <[email protected]> * update multiple delete example (#503) * now supports multiple filter options in getFields() * Apply fixes from StyleCI * Accept any DateTimeInterface impl. for datetime (#505) * Accept any DateTimeInterface impl. for datetime * Fix DateTime::getTimezone method name * Fix setTimezone for any instance of DateTimeInterface * Add microseconds persistence support for datetime/time types + fix normalization/cloning issue (#504) * Fix datetime normalization cloning * Add microseconds persistence support for datetime/time types Co-authored-by: Imants Horsts <[email protected]> * include comment about hooks and example how to execute them (#510) * update composer * Update release-drafter.yml * Update bundler.yml * Setting release dependencies Co-authored-by: Romans Malinovskis <[email protected]> Co-authored-by: Imants Horsts <[email protected]> Co-authored-by: Georgi Hristov <[email protected]> Co-authored-by: Mimo <[email protected]> Co-authored-by: Alain Belair <[email protected]> Co-authored-by: Michael Voříšek <[email protected]> Co-authored-by: GitHub Web Flow <[email protected]>
- Loading branch information
1 parent
20e4eaf
commit f916c24
Showing
29 changed files
with
428 additions
and
239 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,21 @@ | ||
<?php | ||
|
||
return [ | ||
'Field requires array for defaults' => 'Field requires array for defaults', | ||
'Field value can not be base64 encoded because it is not of string type' => 'Field value can not be base64 encoded because it is not of string type ({{field}})', | ||
'Mandatory field value cannot be null' => 'Mandatory field value cannot be null ({{field}})', | ||
'Model is already related to another persistence' => 'Model is already related to another persistence', | ||
'Must not be null' => 'Must not be null', | ||
'Test with plural' => [ | ||
'zero' => 'Test zero', | ||
'one' => 'Test is one', | ||
'other' => 'Test are {{count}}', | ||
], | ||
'There was error while decoding JSON' => 'There was error while decoding JSON', | ||
'Unable to determine persistence driver from DSN' => 'Unable to determine persistence driver from DSN', | ||
'Unable to serialize field value on load' => 'Unable to serialize field value on load ({{field}})', | ||
'Unable to serialize field value on save' => 'Unable to serialize field value on save ({{field}})', | ||
'Unable to typecast field value on load' => 'Unable to typecast field value on load ({{field}})', | ||
'Unable to typecast field value on save' => 'Unable to typecast field value on save ({{field}})', | ||
'Record with specified ID was not found' => 'Record with specified ID was not found', | ||
'Field requires array for defaults' => 'Field requires array for defaults', | ||
'Field value can not be base64 encoded because it is not of string type' => 'Field value can not be base64 encoded because it is not of string type ({{field}})', | ||
'Mandatory field value cannot be null' => 'Mandatory field value cannot be null ({{field}})', | ||
'Model is already related to another persistence' => 'Model is already related to another persistence', | ||
'Must not be null' => 'Must not be null', | ||
'Test with plural' => [ | ||
'zero' => 'Test zero', | ||
'one' => 'Test is one', | ||
'other' => 'Test are {{count}}', | ||
], | ||
'There was error while decoding JSON' => 'There was error while decoding JSON', | ||
'Unable to determine persistence driver from DSN' => 'Unable to determine persistence driver from DSN', | ||
'Unable to serialize field value on load' => 'Unable to serialize field value on load ({{field}})', | ||
'Unable to serialize field value on save' => 'Unable to serialize field value on save ({{field}})', | ||
'Unable to typecast field value on load' => 'Unable to typecast field value on load ({{field}})', | ||
'Unable to typecast field value on save' => 'Unable to typecast field value on save ({{field}})', | ||
'Record with specified ID was not found' => 'Record with specified ID was not found', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,20 @@ | ||
<?php | ||
|
||
return [ | ||
'Field requires array for defaults' => 'Il campo richiede un array per i valori predefiniti', | ||
'Field value can not be base64 encoded because it is not of string type' => 'Il valore del campo non può essere codificato in base64 perché non è di tipo stringa ({{field}})', | ||
'Mandatory field value cannot be null' => 'Il valore del campo obbligatorio non può essere nullo ({{field}})', | ||
'Model is already related to another persistence' => 'Il modello è già collegato a una persistenza', | ||
'Must not be null' => 'Non deve essere nullo', | ||
'Test with plural' => [ | ||
'zero' => 'Test zero', | ||
'one' => 'Test è uno', | ||
'other' => 'Test sono {{count}}', | ||
], | ||
'There was error while decoding JSON' => 'Si è verificato un errore durante la decodifica di JSON', | ||
'Unable to determine persistence driver from DSN' => 'Impossibile determinare il driver di persistenza via DSN', | ||
'Unable to serialize field value on load' => 'Impossibile serializzare il valore durante il caricamento ({{field}})', | ||
'Unable to serialize field value on save' => 'Impossibile serializzare il valore durante il salvataggio ({{field}})', | ||
'Unable to typecast field value on load' => 'Impossibile serializzare il valore durante il caricamento ({{field}})', | ||
'Unable to typecast field value on save' => 'Impossibile serializzare il valore durante il salvataggio ({{field}})', | ||
'Field requires array for defaults' => 'Il campo richiede un array per i valori predefiniti', | ||
'Field value can not be base64 encoded because it is not of string type' => 'Il valore del campo non può essere codificato in base64 perché non è di tipo stringa ({{field}})', | ||
'Mandatory field value cannot be null' => 'Il valore del campo obbligatorio non può essere nullo ({{field}})', | ||
'Model is already related to another persistence' => 'Il modello è già collegato a una persistenza', | ||
'Must not be null' => 'Non deve essere nullo', | ||
'Test with plural' => [ | ||
'zero' => 'Test zero', | ||
'one' => 'Test è uno', | ||
'other' => 'Test sono {{count}}', | ||
], | ||
'There was error while decoding JSON' => 'Si è verificato un errore durante la decodifica di JSON', | ||
'Unable to determine persistence driver from DSN' => 'Impossibile determinare il driver di persistenza via DSN', | ||
'Unable to serialize field value on load' => 'Impossibile serializzare il valore durante il caricamento ({{field}})', | ||
'Unable to serialize field value on save' => 'Impossibile serializzare il valore durante il salvataggio ({{field}})', | ||
'Unable to typecast field value on load' => 'Impossibile serializzare il valore durante il caricamento ({{field}})', | ||
'Unable to typecast field value on save' => 'Impossibile serializzare il valore durante il salvataggio ({{field}})', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,19 +1,19 @@ | ||
<?php | ||
|
||
return [ | ||
'Field value can not be base64 encoded because it is not of string type' => 'Значение поля не может быть закодировано в base64, поскольку оно не имеет строкового типа ({{field}})', | ||
'Mandatory field value cannot be null' => 'Обязательное значение поля не может быть пустым ({{field}})', | ||
'Model is already related to another persistence' => 'Модель уже связана с другим постоянством', | ||
'Test with plural' => [ | ||
'zero' => 'Тест ноль', | ||
'one' => 'Тест один', | ||
'other' => 'Тест {{count}}', | ||
], | ||
'There was error while decoding JSON' => 'Произошла ошибка при декодировании JSON', | ||
'Unable to determine persistence driver from DSN' => 'Невозможно определить постоянство драйвера из DSN', | ||
'Unable to serialize field value on load' => 'Невозможно сериализовать значение поля при загрузке ({{field}})', | ||
'Unable to serialize field value on save' => 'Невозможно сериализовать значение поля при сохранении ({{field}})', | ||
'Unable to typecast field value on load' => 'Невозможно установить тип поля при загрузке ({{field}})', | ||
'Unable to typecast field value on save' => 'Невозможно сериализовать значение поля при сохранении ({{field}})', | ||
'Record with specified ID was not found' => 'Запись с данным ID не найдена', | ||
'Field value can not be base64 encoded because it is not of string type' => 'Значение поля не может быть закодировано в base64, поскольку оно не имеет строкового типа ({{field}})', | ||
'Mandatory field value cannot be null' => 'Обязательное значение поля не может быть пустым ({{field}})', | ||
'Model is already related to another persistence' => 'Модель уже связана с другим постоянством', | ||
'Test with plural' => [ | ||
'zero' => 'Тест ноль', | ||
'one' => 'Тест один', | ||
'other' => 'Тест {{count}}', | ||
], | ||
'There was error while decoding JSON' => 'Произошла ошибка при декодировании JSON', | ||
'Unable to determine persistence driver from DSN' => 'Невозможно определить постоянство драйвера из DSN', | ||
'Unable to serialize field value on load' => 'Невозможно сериализовать значение поля при загрузке ({{field}})', | ||
'Unable to serialize field value on save' => 'Невозможно сериализовать значение поля при сохранении ({{field}})', | ||
'Unable to typecast field value on load' => 'Невозможно установить тип поля при загрузке ({{field}})', | ||
'Unable to typecast field value on save' => 'Невозможно сериализовать значение поля при сохранении ({{field}})', | ||
'Record with specified ID was not found' => 'Запись с данным ID не найдена', | ||
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.