<?php
/**
* This file is part of Aksara CMS, both framework and publishing
* platform.
*
* @author Aby Dahana <abydahana@gmail.com>
* @copyright (c) Aksara Laboratory <https://aksaracms.com>
* @license MIT License
*
* This source file is subject to the MIT license that is bundled
* with this source code in the LICENSE.txt file.
*
* When the signs come, those who don't believe at "that time"
* will have only two choices, commit suicide or become brutal.
*/
declare(strict_types=1);
/**
* This file is part of CodeIgniter 4 framework.
*
* (c) CodeIgniter Foundation <admin@codeigniter.com>
*
* For the full copyright and license information, please view
* the LICENSE file that was distributed with this source code.
*/
// Migration language settings
return [
// Migration Runner
'missingTable' => '?????? ???? ??? ????? ???.', // 'Migrations table must be set.'
'disabled' => '??????? ??????, ??? ? ??? ??? ???????.', // 'Migrations have been loaded but are disabled or setup incorrectly.'
'notFound' => '?????? ?? ?? ??: ', // 'Migration file not found: '
'batchNotFound' => '??? ?? batch ?? ??: ', // 'Target batch not found: '
'empty' => '?????? ??? ?? ? ????.', // 'No Migration files found'
'gap' => '???? ?????? sequence ? ??? ?? ?? ?? ??? ????.', // 'There is a gap in the migration sequence near version number: '
'classNotFound' => '?? ?????? ??? "%s" ?? ??', // 'The migration class "%s" could not be found.'
'missingMethod' => '?? ?????? ???? "%s" ???? ?? ? ????.', // 'The migration class is missing an "%s" method.'
'locked' => '?? ?? ?????? ??????? ??????. ?????.', // 'Migrations already running in another process. Skipping.'
// Migration Command
'migHelpLatest' => "\t\t??????? ??? ??? ?? ???????? ?????????.", // "\t\tMigrates database to latest available migration."
'migHelpCurrent' => "\t\t?????? ??????? ??? 'current'? ?????????.", // "\t\tMigrates database to version set as 'current' in configuration."
'migHelpVersion' => "\t??????? ??? {v} ??? ??????.", // "\tMigrates database to version {v}."
'migHelpRollback' => "\t??? 0?? ???? ??, ?? ???????? 'down()'? ?????.", // "\tRuns all migrations 'down' to version 0."
'migHelpRefresh' => "\t\t??????? ?? ??? ??? ?? ??????? ???? ?? ?????.", // "\t\tUninstalls and re-runs all migrations to freshen database."
'migHelpSeed' => "\t[name]??? ??? seeder? ?????.", // "\tRuns the seeder named [name]."
'migCreate' => "\t[name]??? ??? ??? ??????? ?????.", // "\tCreates a new migration named [name]"
'nameMigration' => '?????? ?? ?? ??', // 'Name the migration file'
'migNumberError' => '?????? ?? ?? ??? ? ?? ?? ???? ???. ??? ???? ?????? ?? ??? ??? ???.', // 'Migration number must be three digits, and there must not be any gaps in the sequence.'
'rollBackConfirm' => '?? ???????', // 'Are you sure you want to rollback?'
'refreshConfirm' => '???? ???????', // 'Are you sure you want to refresh?'
'latest' => '??? ?? ???????? ?? ?...', // 'Running all new migrations...'
'generalFault' => '?????? ??!', // 'Migration failed!'
'migrated' => '?????? ??.', // 'Migrations complete.'
'migInvalidVersion' => '???? ?? ?? ?? ?? ???????.', // 'Invalid version number provided.'
'toVersionPH' => '?? %s ??? ?????? ?...', // 'Migrating to version %s...'
'toVersion' => '?? ???? ?????? ?...', // 'Migrating to current version...'
'rollingBack' => '????? ??????? ???? ?: ', // 'Rolling back migrations to batch: '
'noneFound' => '??????? ?? ?????.', // 'No migrations were found.'
'migSeeder' => 'Seeder ?', // 'Seeder name'
'migMissingSeeder' => '??? Seeder ?? ????? ???.', // 'You must provide a seeder name.'
'nameSeeder' => '?? seeder ??', // 'Name the seeder file'
'removed' => '????: ', // 'Rolling back: '
'added' => '?? ?: ', // 'Running: '
// Migrate Status
'namespace' => '??????', // 'Namespace'
'filename' => '???', // 'Filename'
'version' => '??', // 'Version'
'group' => '??', // 'Group'
'on' => '?????? ??: ', // 'Migrated On: '
'batch' => 'Batch', // 'Batch'
];
|