Skip to content
This repository has been archived by the owner on Dec 30, 2023. It is now read-only.

Commit

Permalink
New Crowdin updates (#3154)
Browse files Browse the repository at this point in the history
* New translations application-micro.md (French)

* New translations installation.md (French)

* New translations upgrade.md (French)

* New translations phalcon_mvc.md (French)

* New translations phalcon_storage.md (French)

* New translations phalcon_autoload.md (French)

* New translations application-micro.md (Spanish)

* New translations installation.md (Spanish)

* New translations upgrade.md (Spanish)

* New translations phalcon_mvc.md (Spanish)

* New translations phalcon_storage.md (Spanish)

* New translations phalcon_autoload.md (Spanish)

* New translations application-micro.md (Czech)

* New translations installation.md (Czech)

* New translations upgrade.md (Czech)

* New translations phalcon_mvc.md (Czech)

* New translations phalcon_storage.md (Czech)

* New translations phalcon_autoload.md (Czech)

* New translations application-micro.md (German)

* New translations installation.md (German)

* New translations upgrade.md (German)

* New translations phalcon_mvc.md (German)

* New translations phalcon_storage.md (German)

* New translations phalcon_autoload.md (German)

* New translations application-micro.md (Greek)

* New translations installation.md (Greek)

* New translations upgrade.md (Greek)

* New translations phalcon_mvc.md (Greek)

* New translations phalcon_storage.md (Greek)

* New translations phalcon_autoload.md (Greek)

* New translations application-micro.md (Italian)

* New translations installation.md (Italian)

* New translations upgrade.md (Italian)

* New translations phalcon_mvc.md (Italian)

* New translations phalcon_storage.md (Italian)

* New translations phalcon_autoload.md (Italian)

* New translations application-micro.md (Japanese)

* New translations installation.md (Japanese)

* New translations upgrade.md (Japanese)

* New translations phalcon_mvc.md (Japanese)

* New translations phalcon_storage.md (Japanese)

* New translations phalcon_autoload.md (Japanese)

* New translations application-micro.md (Korean)

* New translations installation.md (Korean)

* New translations upgrade.md (Korean)

* New translations phalcon_mvc.md (Korean)

* New translations phalcon_storage.md (Korean)

* New translations phalcon_autoload.md (Korean)

* New translations application-micro.md (Polish)

* New translations installation.md (Polish)

* New translations upgrade.md (Polish)

* New translations phalcon_mvc.md (Polish)

* New translations phalcon_storage.md (Polish)

* New translations phalcon_autoload.md (Polish)

* New translations application-micro.md (Russian)

* New translations installation.md (Russian)

* New translations upgrade.md (Russian)

* New translations phalcon_mvc.md (Russian)

* New translations phalcon_storage.md (Russian)

* New translations phalcon_autoload.md (Russian)

* New translations application-micro.md (Turkish)

* New translations installation.md (Turkish)

* New translations upgrade.md (Turkish)

* New translations phalcon_mvc.md (Turkish)

* New translations phalcon_storage.md (Turkish)

* New translations phalcon_autoload.md (Turkish)

* New translations application-micro.md (Ukrainian)

* New translations installation.md (Ukrainian)

* New translations upgrade.md (Ukrainian)

* New translations phalcon_mvc.md (Ukrainian)

* New translations phalcon_storage.md (Ukrainian)

* New translations phalcon_autoload.md (Ukrainian)

* New translations application-micro.md (Chinese Simplified)

* New translations installation.md (Chinese Simplified)

* New translations upgrade.md (Chinese Simplified)

* New translations phalcon_mvc.md (Chinese Simplified)

* New translations phalcon_storage.md (Chinese Simplified)

* New translations phalcon_autoload.md (Chinese Simplified)

* New translations application-micro.md (Portuguese, Brazilian)

* New translations installation.md (Portuguese, Brazilian)

* New translations upgrade.md (Portuguese, Brazilian)

* New translations phalcon_mvc.md (Portuguese, Brazilian)

* New translations phalcon_storage.md (Portuguese, Brazilian)

* New translations phalcon_autoload.md (Portuguese, Brazilian)

* New translations application-micro.md (Indonesian)

* New translations installation.md (Indonesian)

* New translations upgrade.md (Indonesian)

* New translations phalcon_mvc.md (Indonesian)

* New translations phalcon_storage.md (Indonesian)

* New translations phalcon_autoload.md (Indonesian)

* New translations application-micro.md (Persian)

* New translations installation.md (Persian)

* New translations upgrade.md (Persian)

* New translations phalcon_mvc.md (Persian)

* New translations phalcon_storage.md (Persian)

* New translations phalcon_autoload.md (Persian)
  • Loading branch information
niden authored Aug 18, 2023
1 parent 984d4d7 commit f7ae5c9
Show file tree
Hide file tree
Showing 96 changed files with 608 additions and 192 deletions.
6 changes: 6 additions & 0 deletions cs-cz/api/phalcon_autoload.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,12 @@ public function getNamespaces(): array;
Returns the namespaces currently registered in the autoloader


```php
public function isRegistered(): bool;
```
returns isRegister


```php
public function loadFiles(): void;
```
Expand Down
24 changes: 18 additions & 6 deletions cs-cz/api/phalcon_mvc.md
Original file line number Diff line number Diff line change
Expand Up @@ -5093,7 +5093,7 @@ print_r(


```php
final public function readColumnMapIndex( ModelInterface $model, int $index );
final public function readColumnMapIndex( ModelInterface $model, int $index ): array | null;
```
Reads column-map information for certain model using a MODEL_* constant

Expand All @@ -5108,7 +5108,7 @@ print_r(


```php
final public function readMetaData( ModelInterface $model ): array;
final public function readMetaData( ModelInterface $model ): array | null;
```
Reads the complete meta-data for certain model

Expand All @@ -5122,7 +5122,7 @@ print_r(


```php
final public function readMetaDataIndex( ModelInterface $model, int $index );
final public function readMetaDataIndex( ModelInterface $model, int $index ): array | null;
```
Reads meta-data for certain model

Expand Down Expand Up @@ -5236,6 +5236,18 @@ protected function getArrVal( array $collection, mixed $index, mixed $defaultVal
```php
final protected function initialize( ModelInterface $model, mixed $key, mixed $table, mixed $schema );
```
Initialize old behaviour for compatability


```php
final protected function initializeColumnMap( ModelInterface $model, mixed $key ): bool;
```
Initialize ColumnMap for a certain table


```php
final protected function initializeMetaData( ModelInterface $model, mixed $key ): bool;
```
Initialize the metadata for certain table


Expand Down Expand Up @@ -5646,19 +5658,19 @@ Reads the ordered/reversed column map for certain model


```php
public function readColumnMapIndex( ModelInterface $model, int $index );
public function readColumnMapIndex( ModelInterface $model, int $index ): array | null;
```
Reads column-map information for certain model using a MODEL_* constant


```php
public function readMetaData( ModelInterface $model ): array;
public function readMetaData( ModelInterface $model ): array | null;
```
Reads meta-data for certain model


```php
public function readMetaDataIndex( ModelInterface $model, int $index ): mixed;
public function readMetaDataIndex( ModelInterface $model, int $index ): array | null;
```
Reads meta-data for certain model using a MODEL_* constant

Expand Down
2 changes: 2 additions & 0 deletions cs-cz/api/phalcon_storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -1321,3 +1321,5 @@ protected function getExceptionClass(): string;
protected function getServices(): array;
```
Returns the available adapters


5 changes: 5 additions & 0 deletions cs-cz/application-micro.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ $container = new Di();
$app = new Micro($container);
```

> *NOTE*: Prior to Phalcon v5.3.0, the `Micro` object was automatically registered in the dependency injection container with the name `application`. This is no longer the case.
>
> {: .alert .alert-warning }

## Methods

```php
Expand Down
8 changes: 4 additions & 4 deletions cs-cz/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Since Phalcon is compiled as a PHP extension, its installation is somewhat diffe
The PECL installation method is available for Windows, Linux and macOS. Under windows pre-compiled dll files are available, while under Linux and macOS, Phalcon will be compiled locally. To install Phalcon using PECL make sure you have [pecl/pear][install-pecl] installed.
```
pecl channel-update pecl.php.net
pecl install phalcon-5.0.0
pecl install phalcon
```

### Additional PPA
Expand Down Expand Up @@ -171,7 +171,7 @@ An overlay for installing Phalcon can be found [here][gentoo-overlay]
sudo -s
git clone https://github.com/phalcon/cphalcon
cd cphalcon/
git checkout tags/v5.0.0 ./
git checkout tags/v5.3.0 ./
zephir fullclean
zephir build
```
Expand Down Expand Up @@ -311,7 +311,7 @@ Compile Phalcon

```bash
cd cphalcon/
git checkout tags/v5.0.0 ./
git checkout tags/v5.3.0 ./
zephir fullclean
zephir build
```
Expand All @@ -336,7 +336,7 @@ The instructions above will compile **and** install the module on your system. Y

```bash
cd cphalcon/
git checkout tags/v5.0.0 ./
git checkout tags/v5.3.0 ./
zephir fullclean
zephir compile
cd ext
Expand Down
5 changes: 3 additions & 2 deletions cs-cz/upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ Since Phalcon 4, we have been following the PHP releases and adjusting Phalcon a
Phalcon can be installed using PECL.

```bash
pecl install phalcon-5.0.0
pecl install phalcon
// pecl install phalcon-5.3.0
```

**Alternative installation**
Expand All @@ -42,7 +43,7 @@ Compile Phalcon

```bash
cd cphalcon/
git checkout tags/5.0.0 ./
git checkout tags/5.3.0 ./
zephir fullclean
zephir build
```
Expand Down
6 changes: 6 additions & 0 deletions de-de/api/phalcon_autoload.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,12 @@ public function getNamespaces(): array;
Returns the namespaces currently registered in the autoloader


```php
public function isRegistered(): bool;
```
returns isRegister


```php
public function loadFiles(): void;
```
Expand Down
24 changes: 18 additions & 6 deletions de-de/api/phalcon_mvc.md
Original file line number Diff line number Diff line change
Expand Up @@ -5093,7 +5093,7 @@ print_r(


```php
final public function readColumnMapIndex( ModelInterface $model, int $index );
final public function readColumnMapIndex( ModelInterface $model, int $index ): array | null;
```
Reads column-map information for certain model using a MODEL_* constant

Expand All @@ -5108,7 +5108,7 @@ print_r(


```php
final public function readMetaData( ModelInterface $model ): array;
final public function readMetaData( ModelInterface $model ): array | null;
```
Reads the complete meta-data for certain model

Expand All @@ -5122,7 +5122,7 @@ print_r(


```php
final public function readMetaDataIndex( ModelInterface $model, int $index );
final public function readMetaDataIndex( ModelInterface $model, int $index ): array | null;
```
Reads meta-data for certain model

Expand Down Expand Up @@ -5236,6 +5236,18 @@ protected function getArrVal( array $collection, mixed $index, mixed $defaultVal
```php
final protected function initialize( ModelInterface $model, mixed $key, mixed $table, mixed $schema );
```
Initialize old behaviour for compatability


```php
final protected function initializeColumnMap( ModelInterface $model, mixed $key ): bool;
```
Initialize ColumnMap for a certain table


```php
final protected function initializeMetaData( ModelInterface $model, mixed $key ): bool;
```
Initialize the metadata for certain table


Expand Down Expand Up @@ -5646,19 +5658,19 @@ Reads the ordered/reversed column map for certain model


```php
public function readColumnMapIndex( ModelInterface $model, int $index );
public function readColumnMapIndex( ModelInterface $model, int $index ): array | null;
```
Reads column-map information for certain model using a MODEL_* constant


```php
public function readMetaData( ModelInterface $model ): array;
public function readMetaData( ModelInterface $model ): array | null;
```
Reads meta-data for certain model


```php
public function readMetaDataIndex( ModelInterface $model, int $index ): mixed;
public function readMetaDataIndex( ModelInterface $model, int $index ): array | null;
```
Reads meta-data for certain model using a MODEL_* constant

Expand Down
2 changes: 2 additions & 0 deletions de-de/api/phalcon_storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -1321,3 +1321,5 @@ protected function getExceptionClass(): string;
protected function getServices(): array;
```
Returns the available adapters


5 changes: 5 additions & 0 deletions de-de/application-micro.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,11 @@ $container = new Di();
$app = new Micro($container);
```

> *NOTE*: Prior to Phalcon v5.3.0, the `Micro` object was automatically registered in the dependency injection container with the name `application`. This is no longer the case.
>
> {: .alert .alert-warning }


## Methods

```php
Expand Down
8 changes: 4 additions & 4 deletions de-de/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ Since Phalcon is compiled as a PHP extension, its installation is somewhat diffe
The PECL installation method is available for Windows, Linux and macOS. Under windows pre-compiled dll files are available, while under Linux and macOS, Phalcon will be compiled locally. To install Phalcon using PECL make sure you have [pecl/pear][install-pecl] installed.
```
pecl channel-update pecl.php.net
pecl install phalcon-5.0.0
pecl install phalcon
```

### Additional PPA
Expand Down Expand Up @@ -171,7 +171,7 @@ An overlay for installing Phalcon can be found [here][gentoo-overlay]
sudo -s
git clone https://github.com/phalcon/cphalcon
cd cphalcon/
git checkout tags/v5.0.0 ./
git checkout tags/v5.3.0 ./
zephir fullclean
zephir build
```
Expand Down Expand Up @@ -311,7 +311,7 @@ Compile Phalcon

```bash
cd cphalcon/
git checkout tags/v5.0.0 ./
git checkout tags/v5.3.0 ./
zephir fullclean
zephir build
```
Expand All @@ -336,7 +336,7 @@ The instructions above will compile **and** install the module on your system. Y

```bash
cd cphalcon/
git checkout tags/v5.0.0 ./
git checkout tags/v5.3.0 ./
zephir fullclean
zephir compile
cd ext
Expand Down
5 changes: 3 additions & 2 deletions de-de/upgrade.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,8 @@ Since Phalcon 4, we have been following the PHP releases and adjusting Phalcon a
Phalcon can be installed using PECL.

```bash
pecl install phalcon-5.0.0
pecl install phalcon
// pecl install phalcon-5.3.0
```

**Alternative installation**
Expand All @@ -42,7 +43,7 @@ Compile Phalcon

```bash
cd cphalcon/
git checkout tags/5.0.0 ./
git checkout tags/5.3.0 ./
zephir fullclean
zephir build
```
Expand Down
6 changes: 6 additions & 0 deletions el-gr/api/phalcon_autoload.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,6 +176,12 @@ public function getNamespaces(): array;
Returns the namespaces currently registered in the autoloader


```php
public function isRegistered(): bool;
```
returns isRegister


```php
public function loadFiles(): void;
```
Expand Down
24 changes: 18 additions & 6 deletions el-gr/api/phalcon_mvc.md
Original file line number Diff line number Diff line change
Expand Up @@ -5093,7 +5093,7 @@ print_r(


```php
final public function readColumnMapIndex( ModelInterface $model, int $index );
final public function readColumnMapIndex( ModelInterface $model, int $index ): array | null;
```
Reads column-map information for certain model using a MODEL_* constant

Expand All @@ -5108,7 +5108,7 @@ print_r(


```php
final public function readMetaData( ModelInterface $model ): array;
final public function readMetaData( ModelInterface $model ): array | null;
```
Reads the complete meta-data for certain model

Expand All @@ -5122,7 +5122,7 @@ print_r(


```php
final public function readMetaDataIndex( ModelInterface $model, int $index );
final public function readMetaDataIndex( ModelInterface $model, int $index ): array | null;
```
Reads meta-data for certain model

Expand Down Expand Up @@ -5236,6 +5236,18 @@ protected function getArrVal( array $collection, mixed $index, mixed $defaultVal
```php
final protected function initialize( ModelInterface $model, mixed $key, mixed $table, mixed $schema );
```
Initialize old behaviour for compatability


```php
final protected function initializeColumnMap( ModelInterface $model, mixed $key ): bool;
```
Initialize ColumnMap for a certain table


```php
final protected function initializeMetaData( ModelInterface $model, mixed $key ): bool;
```
Initialize the metadata for certain table


Expand Down Expand Up @@ -5646,19 +5658,19 @@ Reads the ordered/reversed column map for certain model


```php
public function readColumnMapIndex( ModelInterface $model, int $index );
public function readColumnMapIndex( ModelInterface $model, int $index ): array | null;
```
Reads column-map information for certain model using a MODEL_* constant


```php
public function readMetaData( ModelInterface $model ): array;
public function readMetaData( ModelInterface $model ): array | null;
```
Reads meta-data for certain model


```php
public function readMetaDataIndex( ModelInterface $model, int $index ): mixed;
public function readMetaDataIndex( ModelInterface $model, int $index ): array | null;
```
Reads meta-data for certain model using a MODEL_* constant

Expand Down
2 changes: 2 additions & 0 deletions el-gr/api/phalcon_storage.md
Original file line number Diff line number Diff line change
Expand Up @@ -1321,3 +1321,5 @@ protected function getExceptionClass(): string;
protected function getServices(): array;
```
Returns the available adapters


Loading

0 comments on commit f7ae5c9

Please sign in to comment.