text stringlengths 14 100k | source stringclasses 1
value | repo stringclasses 810
values | language stringclasses 13
values |
|---|---|---|---|
<|fim_suffix|>_compare($name, '[]', -2, 2) === 0) {
$name = substr($name, 0, -2);
}
if (substr_compare($name, ']', -1, 1) === 0) {
$name = substr($name, 0, -1) . '_all]';
} else {
$name .= '_all';
}
return $name;
}
/**
* Register... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\grid;
use Closure;
use yii\base\BaseObject;
use yii\helpers\Html;
/**
* Column is the base class of all [[GridView]] column classes.
... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\grid;
use Closure;
use yii\base\Model;
use yii\data\ActiveDataProvider;
use yii\data\ArrayDataProvider;
use yii\db\ActiveQueryInterface;... | fim | yiisoft/yii2 | php |
<|fim_suffix|>turn string the rendering result.
*/
public function renderFilters()
{
if ($this->filterModel !== null) {
$cells = [];
foreach ($this->columns as $column) {
/** @var Column $column */
$cells[] = $column->renderFilterCell();
... | fim | yiisoft/yii2 | php |
<|fim_suffix|>idViewAsset extends AssetBundle
{
public $sourcePath = '@yii/assets';
public $js = [
'yii.gridView.js',
];
public $depends = [
'yii\web\YiiAsset',
];
}
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\grid;
use Closure;
use yii\base\InvalidConfigException;
use yii\helpers\Html;
/**
* RadioButtonColumn displays a column of radio butto... | fim | yiisoft/yii2 | php |
<?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\grid;
/**
* SerialColumn displays a column of row numbers (1-based).
*
* To add a SerialColumn to the [[GridView]], add it to the [[GridView::colum... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* <|fim_suffix|> For more details and usage information on ArrayHelper, see the [guide article on array helpers](guide:helper-array).
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
class ArrayHelper extends BaseArrayHelper
{
}
<|fim_middl... | fim | yiisoft/yii2 | php |
<|fim_suffix|> [[Traversable]] interface.
* @param mixed $var The variable being evaluated.
* @return bool whether $var can be traversed via foreach
* @see https://www.php.net/manual/en/function.is-array.php
* @since 2.0.8
*/
public static function isTraversable($var)
{
return i... | fim | yiisoft/yii2 | php |
<|fim_suffix|>ix_isatty') && @posix_isatty($stream);
}
/**
* Returns true if the console is running on windows.
* @return bool
*/
public static function isRunningOnWindows()
{
return DIRECTORY_SEPARATOR === '\\';
}
/**
* Returns terminal screen size.
*
* U... | fim | yiisoft/yii2 | php |
<?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\helpers;
use Yii;
use yii\base\ErrorException;
use yii\base\Exception;
use yii\base\InvalidArgumentException;
use yii\base\InvalidConfigException;
/*... | fim | yiisoft/yii2 | php |
<|fim_suffix|> 'v' => '\G\M\TP', // Time Zone: generic non-location (falls back first to VVVV and then to OOOO) using the ICU defined fallback here
'vvvv' => '\G\M\TP', // Time Zone: generic non-location (falls back first to VVVV and then to OOOO) using the ICU defined fallback here
'V' =... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\helpers;
/**
* BaseHtmlPurifier provides concrete implementation for [[HtmlPurifier]].
*
* Do not use BaseHtmlPurifier. Use [[HtmlPur... | fim | yiisoft/yii2 | php |
<|fim_suffix|> return extension_loaded('intl');
}
/**
* Converts a table name to its class name.
*
* For example, converts "people" to "Person".
* @param string $tableName
* @return string
*/
public static function classify($tableName)
{
if (empty($tableName)) {
... | fim | yiisoft/yii2 | php |
<|fim_suffix|>nary); $i < $iMax; $i += 4) {
$result .= str_pad(decbin(unpack('N', substr($ipBinary, $i, 4))[1]), 32, '0', STR_PAD_LEFT);
}
return $result;
}
}
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license htt... | fim | yiisoft/yii2 | php |
<?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\helpers;
use yii\base\Arrayable;
use yii\base\InvalidArgumentException;
use yii\base\Model;
use yii\web\JsExpression;
use yii\web\JsonResponseFormatte... | fim | yiisoft/yii2 | php |
<|fim_suffix|>r available values.
* Defaults to [[$defaultFlavor]], if not set.
* @return string the parsed HTML output
* @throws InvalidArgumentException when an undefined flavor is given.
*/
public static function processParagraph($markdown, $flavor = null)
{
$parser = static::getP... | fim | yiisoft/yii2 | php |
<?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\helpers;
use Yii;
/**
* BaseStringHelper provides concrete implementation for [[StringHelper]].
*
* Do not use BaseStringHelper. Use [[StringHelpe... | fim | yiisoft/yii2 | php |
<?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\helpers;
use Yii;
use yii\base\InvalidArgumentException;
/**
* BaseUrl provides concrete implementation for [[Url]].
*
* Do not use BaseUrl. Use [... | fim | yiisoft/yii2 | php |
<|fim_suffix|> self::$_output = $outputBackup;
}
}
self::$_output .= $output;
}
break;
default:
self::$_output .= var_export($var, true);
}
}
/**
* Exports a [[... | fim | yiisoft/yii2 | php |
<|fim_suffix|>{
}
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\helpers;
/**
* Console helper provides useful methods for command line related tasks such as getting input or formatt... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.<|fim_suffix|>.com>
* @author Alex Makarov <sam@rmcreative.ru>
* @since 2.0
*/
class FileHelper extends BaseFileHelper
{
}
<|fim_middle|>com/license/
*/
namespace y... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.y<|fim_suffix|>matConverter extends BaseFormatConverter
{
}
<|fim_middle|>iiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\helpers;
/**
* FormatConverter provides functionality to conve... | fim | yiisoft/yii2 | php |
<|fim_suffix|>g the `$options` parameter. See the documentation of the [[tag()]] method for more details.
*
* For more details and usage information on Html, see the [guide article on html helpers](guide:helper-html).
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
*/
class Html extends BaseHtml
{
}
<|fi... | fim | yiisoft/yii2 | php |
<|fim_suffix|>creative.ru>
* @since 2.0
*/
class HtmlPurifier extends BaseHtmlPurifier
{
}
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\helpers;
/**
* HtmlPurifier provides an ab... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/<|fim_suffix|>ce 2.0
*/
class Inflector extends BaseInflector
{
}
<|fim_middle|>
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\helpers;
/**
* Inflector pluralizes and singularizes E... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\helpers;
/**
* Class IpHelper provides a set of IP-related static methods.
*
* Methods ex<|fim_suffix|>ator]].
*
* @author Dmytro N... | fim | yiisoft/yii2 | php |
<|fim_suffix|>ii\helpers;
/**
* Json is a helper class providing JSON data encoding and decoding.
* It enhances the PHP built-in functions `json_encode()` and `json_decode()`
* by supporting encoding JavaScript expressions and throwing exceptions when decoding fails.
* @author Qiang Xue <qiang.xue@gmail.com>
* @s... | fim | yiisoft/yii2 | php |
<|fim_suffix|>ments).
*
* @author Carsten Brandt <mail@cebe.cc>
* @since 2.0
*/
class Markdown extends BaseMarkdown
{
}
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\helpers;
/**... | fim | yiisoft/yii2 | php |
<|fim_suffix|>s not contain `value` parameter
* @see https://www.php.net/manual/en/function.var-export.php
* @since 2.0.16
*/
public static function __set_state($state)
{
if (!isset($state['value'])) {
throw new InvalidConfigException('Failed to instantiate class "ReplaceArray... | fim | yiisoft/yii2 | php |
<|fim_suffix|>are LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\helpers;
/**
* StringHelper.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @author Alex Makarov <sam@rmcreative.ru>
* @since 2.0
*/
class StringHelper extends BaseStringHelper
{
}
<|fim_prefix|><?php
/**
* @link https://... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\helpers;
/**
* Object that represents the removal of array value while performing [[ArrayHelper::merge()]].
*
* Usage example:
*
* ... | fim | yiisoft/yii2 | php |
<|fim_suffix|> <sam@rmcreative.ru>
* @since 2.0
*/
class Url extends BaseUrl
{
}
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\helpers;
/**
* Url provides a set of static methods ... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\helpers;
/**
* VarDumper is intended to replace the buggy PHP<|fim_suffix|>e used as follows,
*
* ```
* VarDumper::dump($var);
* ``... | fim | yiisoft/yii2 | php |
<|fim_suffix|>ap' => 'image/bmp',
'image/x-xbitmap' => 'image/bmp',
'image/x-win-bitmap' => 'image/bmp',
'image/x-windows-bmp' => 'image/bmp',
'image/ms-bmp' => 'image/bmp',
'image/x-ms-bmp' => 'image/bmp',
'application/bmp' => 'image/bmp',
'application/x-bmp' => 'image/bmp',
'applicatio... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* MIME type extensions.
*
* This file contains most commonly used extensions for MIME types.
* If there are multiple extensions for a singe MIME type
* they are ordered from most to least common.
* Its content is generated from the apache http mime.types file.
* https://raw.githubusercon... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* MIME types.
*
* This file contains most commonly used MIME types
* according to file extension names.
* Its content is generated from the apache http mime.types file.
* https://raw.githubusercontent.com/apache/httpd/refs/heads/trunk/docs/conf/mime.types
* This file has been placed in t... | fim | yiisoft/yii2 | php |
<|fim_suffix|>2.language' => $language,
]);
$fallbackLanguage = substr($language, 0, 2);
$fallbackSourceLanguage = substr($this->sourceLanguage, 0, 2);
if ($fallbackLanguage !== $language) {
$mainQuery->union($this->createFallbackQuery($category, $language, $fallbackLan... | fim | yiisoft/yii2 | php |
<|fim_suffix|>ed result.
* @since 2.0.16
*/
protected function asIntegerStringFallback($value)
{
if (empty($value)) {
$value = 0;
}
$value = $this->normalizeNumericStringValue((string) $value);
$separatorPosition = strrpos($value, '.');
if ($separa... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/li<|fim_suffix|> /**
* Saves messages to a file.
* @param string $filePath file path
* @param array $messages message translations. Array keys are ... | fim | yiisoft/yii2 | php |
<|fim_suffix|>ges. The keys are original messages, and the values are the translated messages.
* @since 2.0.7
*/
protected function loadFallbackMessages($category, $fallbackLanguage, $messages, $originalMessageFile)
{
$fallbackMessageFile = $this->getMessageFilePath($fallbackLanguage);
... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\i18n;
use yii\base\Exception;
/**
* GettextMoFile represents an MO Gettext message file.
*
* This class is written by adapting Micha... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\i18n;
use Yii;
/**
* GettextPoFile represents a PO Gettext message file.
*
* @author Qiang Xue <qiang.xue@gmail.com>
* @since 2.0
... | fim | yiisoft/yii2 | php |
<|fim_suffix|>
/**
* Translates a message to the specified language.
*
* After translation the message will be formatted using [[MessageFormatter]] if it contains
* ICU message format and `$params` are not empty.
*
* @param string $category the message category.
* @param string $... | fim | yiisoft/yii2 | php |
<|fim_suffix|>
* @property-read string $currencySymbol
*
* @since 2.0.14
*/
class Locale extends Component
{
/**
* @var string|null the locale ID.
* If not set, [[\yii\base\Application::language]] will be used.
*/
public $locale;
/**
* {@inheritdoc}
*/
public function init... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\i18n;
use Yii;
use yii\base\Component;
use yii\base\NotSupportedException;
/**
* MessageFormatter allows formatting messages via [ICU ... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\i18n;
use Yii;
use yii\base\Component;
/**
* MessageSource is the base class for message translation repository classes.
*
* A messa... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 200<|fim_suffix|>e message belongs to
*/
public $category;
/**
* @var string the language ID (e.g. en-US) that the message is to be translated to
*/
public $language;
}
<|fim_middle|>8 Yii Software LLC... | fim | yiisoft/yii2 | php |
<|fim_suffix|>nd
*/
protected function loadMessagesFromFile($messageFile)
{
if (is_file($messageFile)) {
$messages = include $messageFile;
if (!is_array($messages)) {
$messages = [];
}
return $messages;
}
return null;... | fim | yiisoft/yii2 | php |
<|fim_suffix|>);
$this->dropTable('{{%message}}');
$this->dropTable('{{%source_message}}');
}
}
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
use yii\db\Migration;
/**
* Initi... | fim | yiisoft/yii2 | php |
<|fim_suffix|>
list($text, $level, $category, $timestamp) = $message;
if (!is_string($text)) {
// exceptions may not be serializable if in the call stack somewhere is a Closure
if ($text instanceof \Exception || $text instanceof \Throwable) {
$... | fim | yiisoft/yii2 | php |
<?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\log;
use Yii;
use yii\base\Component;
use yii\base\ErrorHandler;
/**
* Dispatcher manages a set of [[Target|log targets]].
*
* Dispatcher implemen... | fim | yiisoft/yii2 | php |
<|fim_suffix|>ion Log';
}
$messages = array_map([$this, 'formatMessage'], $this->messages);
$body = wordwrap(implode("\n", $messages), 70);
$message = $this->composeMessage($body);
if (!$message->send($this->mailer)) {
throw new LogRuntimeException('Unable to export l... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\log;
use Yii;
use yii\base\InvalidConfigException;
use yii\helpers\FileHelper;
/**
* FileTarget records log messages in a file.
*
* ... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\log;
/**
* LogRuntimeException represents an exception caused by<|fim_suffix|> return 'Log Runtime';
}
}
<|fim_middle|> prob... | fim | yiisoft/yii2 | php |
<|fim_suffix|>is->calculateTimings($this->messages);
if (empty($categories) && empty($excludeCategories)) {
return $timings;
}
foreach ($timings as $outerIndex => $outerTimingItem) {
$currentIndex = $outerIndex;
$matched = empty($categories);
fore... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\log;
use yii\helpers\VarDumper;
/**
* SyslogTarget writes log to syslog.
*
* @author miramir <gmiramir@gmail.com>
* @since 2.0
*/
... | fim | yiisoft/yii2 | php |
<?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\log;
use Yii;
use yii\base\Component;
use yii\base\InvalidConfigException;
use yii\helpers\ArrayHelper;
use yii\helpers\StringHelper;
use yii\helpers\... | fim | yiisoft/yii2 | php |
<|fim_suffix|>->db = $target->db;
$this->dropTable($target->logTable);
}
}
}
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
use yii\base\InvalidConfigException;
use yii\db\M... | fim | yiisoft/yii2 | php |
<|fim_suffix|>eturn $successCount;
}
/**
* Renders the specified view with optional parameters and layout.
* The view will be rendered using the [[view]] component.
* @param string $view the view name or the [path alias](guide:concept-aliases) of the view file.
* @param array $params the pa... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\mail;
use Yii;
use yii\base\BaseObject;
use yii\base\ErrorHandler;
/**
* BaseMessage serves as a base class that implements the [[send... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @<|fim_suffix|>t;
/**
* MailEvent represents the event parameter used for events triggered by [[BaseMailer]].
*
* By setting the [[isValid]] property, one may control whether to continue running the ... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
namespace yii\mail;
/**
* MailerInterface is the interface that should be implemented by mailer classes.
*
* A mailer should mainly support creatin... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://w<|fim_suffix|>ence.
*/
public function setCc($cc);
/**
* Returns the Bcc (hidden copy receiver) addresses of this message.
* @return string|array the Bcc (hidden copy receiver) addresses of this message.
*/
public function getBcc();
/**
... | fim | yiisoft/yii2 | php |
<|fim_suffix|>alid URL.' => '{attribute} is nie \'n geldige webadres nie.',
'{attribute} is not a valid email address.' => '{attribute} is nie \'n geldige e-posadres nie.',
'{attribute} is not in the allowed range.' => '{attribute} is nie in die toegelate reeks nie.',
'{attribute} must be "{requiredValue}".... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extra... | fim | yiisoft/yii2 | php |
<|fim_suffix|>th these extensions are allowed: {extensions}.' => 'Genişlənmələri ancaq bu tipdə olan fayllara icazə verilib: {extensions}.',
'Operator "{operator}" must be used with a search attribute.' => '',
'Operator "{operator}" requires multiple operands.' => '',
'Options available: {options}' => '',
... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extra... | fim | yiisoft/yii2 | php |
<|fim_suffix|>elta, plural, =1{месец} other{# месеца}}',
'{delta, plural, =1{a second} other{# seconds}} ago' => 'преди {delta, plural, =1{секунда} other{# секунди}}',
'{delta, plural, =1{a year} other{# years}} ago' => 'преди {delta, plural, =1{година} other{# години}}',
'{delta, plural, =1{an hour} other{... | fim | yiisoft/yii2 | php |
<|fim_suffix|>already been taken.' => '{attribute} "{value}" je već zauzet.',
'{attribute} cannot be blank.' => '{attribute} ne smije biti prazan.',
'{attribute} contains wrong subnet mask.' => '',
'{attribute} is invalid.' => '{attribute} je neispravan.',
'{attribute} is not a valid URL.' => '{attribut... | fim | yiisoft/yii2 | php |
<?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from sour... | fim | yiisoft/yii2 | php |
<|fim_suffix|>ies will be processed.
// A path matches a pattern if it contains the pattern string at its end. For example,
// '/a/b' will match all files and directories ending with '/a/b';
// the '*.svn' will match all files and directories whose name ends with '.svn'.
// and the '.svn' will match all... | fim | yiisoft/yii2 | php |
<|fim_suffix|> => '{delta, plural, =1{1 měsíc} few{# měsíce} other{# měsíců}}',
'{delta, plural, =1{1 second} other{# seconds}}' => '{delta, plural, =1{1 sekunda} few{# sekundy} other{# sekund}}',
'{delta, plural, =1{1 year} other{# years}}' => '{delta, plural, =1{1 rok} few{# roky} other{# let}}',
'{delta,... | fim | yiisoft/yii2 | php |
<?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from sour... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extra... | fim | yiisoft/yii2 | php |
<|fim_suffix|> μια ιδιότητα για αναζήτηση.',
'Operator "{operator}" requires multiple operands.' => 'Ο τελεστής "{operator}" απαιτεί πολλούς τελεστέους.',
'Options available: {options}' => 'Διαθέσιμες επιλογές: {options}',
'Page not found.' => 'Η σελίδα δε βρέθηκε.',
'Please fix the following errors:' =... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extra... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extra... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extra... | fim | yiisoft/yii2 | php |
<?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from sour... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extra... | fim | yiisoft/yii2 | php |
<|fim_suffix|>} Ní mór a bheith níos mó ná {max}.',
'{attribute} must be no less than {min}.' => '{attribute} Ní mór a bheith níos lú ná{min}.',
'{attribute} must not be a subnet.' => '{attribute} Ní mór a bheith ina subnet.',
'{attribute} must not be an IPv4 address.' => '{attribute} níor cheart gur seolad... | fim | yiisoft/yii2 | php |
<|fim_suffix|>rors:' => 'בבקשה, תקן את השגיאות הבאות: ',
'Please upload a file.' => 'נא העלה קובץ.',
'Showing <b>{begin, number}-{end, number}</b> of <b>{totalCount, number}</b> {totalCount, plural, one{item} other{items}}.' => 'מציג <b>{begin, number}-{end, number}</b> מתוך <b>{totalCount, number}</b> {totalCo... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extra... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extra... | fim | yiisoft/yii2 | php |
<?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from sour... | fim | yiisoft/yii2 | php |
<|fim_suffix|> => '{attribute}-ի արժեքը պետք է պարունակի առնվազն {min, number} {min, plural, one{նիշ} other{նիշ}}։',
'{attribute} should contain at most {max, number} {max, plural, one{character} other{characters}}.' => '{attribute}-ի արժեքը պետք է պարունակի առավելագույնը {max, number} {max, plural, one{նիշ} other{... | fim | yiisoft/yii2 | php |
<|fim_suffix|>t be an integer.' => '{attribute} harus berupa integer.',
'{attribute} must be either "{true}" or "{false}".' => '{attribute} harus berupa "{true}" atau "{false}".',
'{attribute} must be equal to "{compareValueOrAttribute}".' => '',
'{attribute} must be greater than "{compareValueOrAttribute}"... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extra... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
/**
* Message translations.
*
* This file is automatical<|fim_suffix|>'結果が得られませんでした。',
'Only files with these MIME types are allowed: {mimeTypes... | fim | yiisoft/yii2 | php |
<|fim_suffix|>ს} many{გიბიბაიტი} other{გიბიბაიტს}}',
'{nFormatted} {n, plural, =1{gigabyte} other{gigabytes}}' => '{nFormatted} {n, plural, one{გიგაბაიტი} few{გიგაბაიტს} many{გიგაბაიტი} other{გიგაბაიტს}}',
'{nFormatted} {n, plural, =1{kibibyte} other{kibibytes}}' => '{nFormatted} {n, plural, one{კიბიბაიტი} few{... | fim | yiisoft/yii2 | php |
<|fim_suffix|>
'No' => 'Жоқ',
'No results found.' => 'Нәтиже табылған жок.',
'Only files with these MIME types are allowed: {mimeTypes}.' => '',
'Only files with these extensions are allowed: {extensions}.' => 'Тек мына кеңейтімдегі файлдарға ғана рұқсат етілген: {extensions}.',
'Operator "{operator... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extra... | fim | yiisoft/yii2 | php |
<|fim_suffix|>l, =1{a day} other{# days}} ago' => '{delta, plural, =1{күн} one{күн} few{# күн} many{# күндер} other{# күн}} артқа қарай',
'{delta, plural, =1{a minute} other{# minutes}} ago' => '{delta, plural, =1{минутына} one{# минутына} few{# минуттар} many{# минуттар} other{# минуттар}} артқа қарай',
'{delt... | fim | yiisoft/yii2 | php |
<|fim_suffix|>lio „{attribute}“ reikšmė privalo būti mažesnė nei „{compareValueOrAttribute}“.',
'{attribute} must be less than or equal to "{compareValueOrAttribute}".' => 'Laukelio „{attribute}“ reikšmė privalo būti mažesnė arba lygi „{compareValueOrAttribute}“.',
'{attribute} must be no greater than {max}.' =... | fim | yiisoft/yii2 | php |
<|fim_suffix|>akštīkls.',
'{attribute} must not be an IPv4 address.' => '{attribute} nedrīkst būt IPv4 adrese.',
'{attribute} must not be an IPv6 address.' => '{attribute} nedrīkst būt IPv6 adrese.',
'{attribute} must not be equal to "{compareValueOrAttribute}".' => '{attribute} vērtība nedrīkst būt vienāda... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extra... | fim | yiisoft/yii2 | php |
<?php
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extracted from source code.
* You may modify this file by translating the extracted messages.
*
* Each array element represents the translation (value) of a message... | fim | yiisoft/yii2 | php |
<|fim_suffix|> '{delta, plural, =1{ett år} other{# år}} siden',
'{delta, plural, =1{an hour} other{# hours}} ago' => '{delta, plural, =1{en time} other{# timer}} siden',
'{nFormatted} B' => '{nFormatted} B',
'{nFormatted} GB' => '{nFormatted} GB',
'{nFormatted} GiB' => '{nFormatted} GiB',
'{nFormatt... | fim | yiisoft/yii2 | php |
<|fim_prefix|><?php
/**
* @link https://www.yiiframework.com/
* @copyright Copyright (c) 2008 Yii Software LLC
* @license https://www.yiiframework.com/license/
*/
/**
* Message translations.
*
* This file is automatically generated by 'yii message/extract' command.
* It contains the localizable messages extra... | fim | yiisoft/yii2 | php |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.