Added translations (fixed #28)
This commit is contained in:
parent
a0c528b496
commit
cb48dd6e45
@ -4,6 +4,7 @@ Yii Framework 2 bootstrap5 extension Change Log
|
||||
2.0.3 under development
|
||||
-----------------------
|
||||
|
||||
- Enh #28: Added translations (simialbi)
|
||||
- Enh #24: Accept `Breadcrumbs::$homeLink = false` to omit "Home" link (fetus-hina)
|
||||
- Enh #27: Changed all data- and aria- attributes to short syntax (simialbi)
|
||||
- Enh #26: Add Bootstrap icon asset (Krakozaber)
|
||||
@ -28,6 +29,6 @@ Yii Framework 2 bootstrap5 extension Change Log
|
||||
- no changes in this release.
|
||||
|
||||
|
||||
1.0.0 under development
|
||||
1.0.0
|
||||
-----------------------
|
||||
- Initial release
|
||||
|
21
README.md
21
README.md
@ -33,11 +33,30 @@ php composer.phar require --prefer-dist yiisoft/yii2-bootstrap5
|
||||
or add
|
||||
|
||||
```
|
||||
"yiisoft/yii2-bootstrap5": "~1.0@dev"
|
||||
"yiisoft/yii2-bootstrap5": "*"
|
||||
```
|
||||
|
||||
to the require section of your `composer.json` file.
|
||||
|
||||
Translations
|
||||
----
|
||||
|
||||
To use translations, configure your app like following
|
||||
```php
|
||||
'components' => [
|
||||
// ...
|
||||
'i18n' => [
|
||||
'translations' => [
|
||||
'yii/bootstrap5*' => [
|
||||
'class' => 'yii\i18n\GettextMessageSource',
|
||||
'sourceLanguage' => 'en-US',
|
||||
'basePath' => '@yii/bootstrap5/messages',
|
||||
],
|
||||
],
|
||||
],
|
||||
],
|
||||
```
|
||||
|
||||
Usage
|
||||
----
|
||||
|
||||
|
@ -9,6 +9,7 @@ declare(strict_types=1);
|
||||
|
||||
namespace yii\bootstrap5;
|
||||
|
||||
use Yii;
|
||||
use yii\helpers\ArrayHelper;
|
||||
|
||||
/**
|
||||
@ -131,7 +132,7 @@ class Alert extends Widget
|
||||
$this->closeButton = array_merge([
|
||||
'class' => ['widget' => 'btn-close'],
|
||||
'data' => ['bs-dismiss' => 'alert'],
|
||||
'aria' => ['label' => 'Close']
|
||||
'aria' => ['label' => Yii::t('yii/bootstrap5', 'Close')]
|
||||
], $this->closeButton);
|
||||
|
||||
Html::addCssClass($this->options, ['toggle' => 'alert-dismissible']);
|
||||
|
@ -110,7 +110,7 @@ class Breadcrumbs extends Widget
|
||||
|
||||
if ($this->homeLink === []) {
|
||||
$links[] = $this->renderItem([
|
||||
'label' => 'Home',
|
||||
'label' => Yii::t('yii/bootstrap5', 'Home'),
|
||||
'url' => '/',
|
||||
], $this->itemTemplate);
|
||||
} elseif ($this->homeLink !== false) {
|
||||
|
@ -10,6 +10,7 @@ declare(strict_types=1);
|
||||
namespace yii\bootstrap5;
|
||||
|
||||
use Throwable;
|
||||
use Yii;
|
||||
use yii\helpers\ArrayHelper;
|
||||
use yii\helpers\Url;
|
||||
|
||||
@ -54,9 +55,9 @@ class ButtonDropdown extends Widget
|
||||
const DIRECTION_UP = 'up';
|
||||
|
||||
/**
|
||||
* @var string the button label
|
||||
* @var string|null the button label
|
||||
*/
|
||||
public $label = 'Button';
|
||||
public $label = null;
|
||||
/**
|
||||
* @var array the HTML attributes for the container tag. The following special options are recognized:
|
||||
*
|
||||
@ -113,6 +114,9 @@ class ButtonDropdown extends Widget
|
||||
if (!isset($this->buttonOptions['id'])) {
|
||||
$this->buttonOptions['id'] = $this->options['id'] . '-button';
|
||||
}
|
||||
if ($this->label === null) {
|
||||
$this->label = Yii::t('yii/bootstrap5', 'Button');
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
@ -159,7 +163,7 @@ class ButtonDropdown extends Widget
|
||||
Html::addCssClass($this->buttonOptions, ['toggle' => 'dropdown-toggle dropdown-toggle-split']);
|
||||
unset($buttonOptions['id']);
|
||||
$splitButton = Button::widget([
|
||||
'label' => '<span class="visually-hidden">Toggle Dropdown</span>',
|
||||
'label' => '<span class="visually-hidden">' . Yii::t('yii/bootstrap5', 'Toggle Dropdown') . '</span>',
|
||||
'encodeLabel' => false,
|
||||
'options' => $this->buttonOptions,
|
||||
'view' => $this->getView(),
|
||||
|
@ -9,6 +9,7 @@ declare(strict_types=1);
|
||||
|
||||
namespace yii\bootstrap5;
|
||||
|
||||
use Yii;
|
||||
use yii\base\InvalidConfigException;
|
||||
use yii\helpers\ArrayHelper;
|
||||
|
||||
@ -290,7 +291,7 @@ class Modal extends Widget
|
||||
$this->closeButton = array_merge([
|
||||
'class' => ['widget' => 'btn-close'],
|
||||
'data' => ['bs-dismiss' => 'modal'],
|
||||
'aria' => ['label' => 'Close']
|
||||
'aria' => ['label' => Yii::t('yii/bootstrap5', 'Close')]
|
||||
], $this->closeButton);
|
||||
}
|
||||
|
||||
|
@ -9,6 +9,7 @@ declare(strict_types=1);
|
||||
|
||||
namespace yii\bootstrap5;
|
||||
|
||||
use Yii;
|
||||
use yii\helpers\ArrayHelper;
|
||||
|
||||
/**
|
||||
@ -188,7 +189,7 @@ class Offcanvas extends Widget
|
||||
{
|
||||
if (($toggleButton = $this->toggleButton) !== false) {
|
||||
$tag = ArrayHelper::remove($toggleButton, 'tag', 'button');
|
||||
$label = ArrayHelper::remove($toggleButton, 'label', 'Show');
|
||||
$label = ArrayHelper::remove($toggleButton, 'label', Yii::t('yii/bootstrap5', 'Show'));
|
||||
|
||||
return Html::tag($tag, $label, $toggleButton);
|
||||
} else {
|
||||
@ -241,7 +242,7 @@ class Offcanvas extends Widget
|
||||
$this->closeButton = array_merge([
|
||||
'class' => ['widget' => 'btn-close text-reset'],
|
||||
'data' => ['bs-dismiss' => 'offcanvas'],
|
||||
'aria' => ['label' => 'Close']
|
||||
'aria' => ['label' => Yii::t('yii/bootstrap5', 'Close')]
|
||||
], $this->closeButton);
|
||||
}
|
||||
|
||||
|
@ -9,6 +9,7 @@ declare(strict_types=1);
|
||||
|
||||
namespace yii\bootstrap5;
|
||||
|
||||
use Yii;
|
||||
use yii\helpers\ArrayHelper;
|
||||
|
||||
/**
|
||||
@ -154,7 +155,7 @@ class Popover extends Widget
|
||||
{
|
||||
if (($toggleButton = $this->toggleButton) !== false) {
|
||||
$tag = ArrayHelper::remove($toggleButton, 'tag', 'button');
|
||||
$label = ArrayHelper::remove($toggleButton, 'label', 'Show');
|
||||
$label = ArrayHelper::remove($toggleButton, 'label', Yii::t('yii/bootstrap5', 'Show'));
|
||||
$toggleButton['id'] = $this->options['id'];
|
||||
|
||||
return Html::tag($tag, $label, $toggleButton);
|
||||
|
@ -209,7 +209,7 @@ class Toast extends Widget
|
||||
$this->closeButton = array_merge([
|
||||
'class' => ['widget' => 'btn-close'],
|
||||
'data' => ['bs-dismiss' => 'toast'],
|
||||
'aria' => ['label' => 'Close']
|
||||
'aria' => ['label' => Yii::t('yii/bootstrap5', 'Close')]
|
||||
], $this->closeButton);
|
||||
}
|
||||
|
||||
|
BIN
src/messages/af/messages.mo
Normal file
BIN
src/messages/af/messages.mo
Normal file
Binary file not shown.
32
src/messages/af/messages.po
Normal file
32
src/messages/af/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: af\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/ar/messages.mo
Normal file
BIN
src/messages/ar/messages.mo
Normal file
Binary file not shown.
32
src/messages/ar/messages.po
Normal file
32
src/messages/ar/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: ar\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/az/messages.mo
Normal file
BIN
src/messages/az/messages.mo
Normal file
Binary file not shown.
32
src/messages/az/messages.po
Normal file
32
src/messages/az/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: az\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/be/messages.mo
Normal file
BIN
src/messages/be/messages.mo
Normal file
Binary file not shown.
32
src/messages/be/messages.po
Normal file
32
src/messages/be/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: be\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/bg/messages.mo
Normal file
BIN
src/messages/bg/messages.mo
Normal file
Binary file not shown.
32
src/messages/bg/messages.po
Normal file
32
src/messages/bg/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: bg\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/bs/messages.mo
Normal file
BIN
src/messages/bs/messages.mo
Normal file
Binary file not shown.
32
src/messages/bs/messages.po
Normal file
32
src/messages/bs/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: bs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/ca/messages.mo
Normal file
BIN
src/messages/ca/messages.mo
Normal file
Binary file not shown.
32
src/messages/ca/messages.po
Normal file
32
src/messages/ca/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: ca\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
62
src/messages/config.php
Normal file
62
src/messages/config.php
Normal file
@ -0,0 +1,62 @@
|
||||
<?php
|
||||
/**
|
||||
* @link http://www.yiiframework.com/
|
||||
* @copyright Copyright (c) 2008 Yii Software LLC
|
||||
* @license http://www.yiiframework.com/license/
|
||||
*/
|
||||
|
||||
return [
|
||||
// string, required, root directory of all source files
|
||||
'sourcePath' => __DIR__ . '/..',
|
||||
// string, required, root directory containing message translations.
|
||||
'messagePath' => __DIR__,
|
||||
// array, required, list of language codes that the extracted messages
|
||||
// should be translated to. For example, ['zh-CN', 'de'].
|
||||
'languages' => ['af', 'ar', 'az', 'be', 'bg', 'bs', 'ca', 'cs', 'da', 'de', 'de-CH', 'el', 'es', 'et', 'fa', 'fi', 'fr', 'he', 'hi', 'hr', 'hu', 'hy', 'id', 'it', 'ja', 'ka', 'kk', 'ko', 'kz', 'lt', 'lv', 'ms', 'nb-NO', 'nl', 'pl', 'pt', 'pt-BR', 'ro', 'ru', 'sk', 'sl', 'sr', 'sr-Latn', 'sv', 'tg', 'th', 'tr', 'uk', 'uz', 'vi', 'zh-CN', 'zh-TW'],
|
||||
// string, the name of the function for translating messages.
|
||||
// Defaults to 'Yii::t'. This is used as a mark to find the messages to be
|
||||
// translated. You may use a string for single function name or an array for
|
||||
// multiple function names.
|
||||
'translator' => 'Yii::t',
|
||||
// boolean, whether to sort messages by keys when merging new messages
|
||||
// with the existing ones. Defaults to false, which means the new (untranslated)
|
||||
// messages will be separated from the old (translated) ones.
|
||||
'sort' => false,
|
||||
// boolean, whether the message file should be overwritten with the merged messages
|
||||
'overwrite' => true,
|
||||
// boolean, whether to remove messages that no longer appear in the source code.
|
||||
// Defaults to false, which means each of these messages will be enclosed with a pair of '@@' marks.
|
||||
'removeUnused' => false,
|
||||
// boolean, whether to mark messages that no longer appear in the source code.
|
||||
// Defaults to true, which means each of these messages will be enclosed with a pair of '@@' marks.
|
||||
'markUnused' => true,
|
||||
// array, list of patterns that specify which files/directories should NOT be processed.
|
||||
// If empty or not set, all files/directories 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 files and directories named exactly '.svn'.
|
||||
// Note, the '/' characters in a pattern matches both '/' and '\'.
|
||||
// See helpers/FileHelper::findFiles() description for more details on pattern matching rules.
|
||||
'except' => [
|
||||
'.svn',
|
||||
'.git',
|
||||
'.gitignore',
|
||||
'.gitkeep',
|
||||
'.hgignore',
|
||||
'.hgkeep',
|
||||
'/messages',
|
||||
],
|
||||
// array, list of patterns that specify which files (not directories) should be processed.
|
||||
// If empty or not set, all files will be processed.
|
||||
// Please refer to "except" for details about the patterns.
|
||||
// If a file/directory matches both a pattern in "only" and "except", it will NOT be processed.
|
||||
'only' => ['*.php'],
|
||||
'phpFileHeader' => '',
|
||||
// Generated file format. Can be "php", "db" or "po".
|
||||
'format' => 'po',
|
||||
// Connection component ID for "db" format.
|
||||
//'db' => 'db',
|
||||
//DocBlock used for messages array in generated PHP file. If `null`, default DocBlock will be used.
|
||||
'phpDocBlock' => null,
|
||||
];
|
BIN
src/messages/cs/messages.mo
Normal file
BIN
src/messages/cs/messages.mo
Normal file
Binary file not shown.
32
src/messages/cs/messages.po
Normal file
32
src/messages/cs/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: cs\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/da/messages.mo
Normal file
BIN
src/messages/da/messages.mo
Normal file
Binary file not shown.
32
src/messages/da/messages.po
Normal file
32
src/messages/da/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: da\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/de-CH/messages.mo
Normal file
BIN
src/messages/de-CH/messages.mo
Normal file
Binary file not shown.
32
src/messages/de-CH/messages.po
Normal file
32
src/messages/de-CH/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr "Button"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr "Schliessen"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr "Start"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr "Anzeigen"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr "Dropdown anzeigen / verstecken"
|
||||
|
BIN
src/messages/de/messages.mo
Normal file
BIN
src/messages/de/messages.mo
Normal file
Binary file not shown.
32
src/messages/de/messages.po
Normal file
32
src/messages/de/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: de\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr "Button"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr "Schließen"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr "Start"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr "Anzeigen"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr "Dropdown anzeigen / verstecken"
|
||||
|
BIN
src/messages/el/messages.mo
Normal file
BIN
src/messages/el/messages.mo
Normal file
Binary file not shown.
32
src/messages/el/messages.po
Normal file
32
src/messages/el/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: el\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/es/messages.mo
Normal file
BIN
src/messages/es/messages.mo
Normal file
Binary file not shown.
32
src/messages/es/messages.po
Normal file
32
src/messages/es/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/et/messages.mo
Normal file
BIN
src/messages/et/messages.mo
Normal file
Binary file not shown.
32
src/messages/et/messages.po
Normal file
32
src/messages/et/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: et\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/fa/messages.mo
Normal file
BIN
src/messages/fa/messages.mo
Normal file
Binary file not shown.
32
src/messages/fa/messages.po
Normal file
32
src/messages/fa/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: fa\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/fi/messages.mo
Normal file
BIN
src/messages/fi/messages.mo
Normal file
Binary file not shown.
32
src/messages/fi/messages.po
Normal file
32
src/messages/fi/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: fi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/fr/messages.mo
Normal file
BIN
src/messages/fr/messages.mo
Normal file
Binary file not shown.
32
src/messages/fr/messages.po
Normal file
32
src/messages/fr/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: fr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr "Bouton"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr "Fermer"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr "Accueil"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr "Afficher"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr "Commuter menu déroulant"
|
||||
|
BIN
src/messages/he/messages.mo
Normal file
BIN
src/messages/he/messages.mo
Normal file
Binary file not shown.
32
src/messages/he/messages.po
Normal file
32
src/messages/he/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: he\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/hi/messages.mo
Normal file
BIN
src/messages/hi/messages.mo
Normal file
Binary file not shown.
32
src/messages/hi/messages.po
Normal file
32
src/messages/hi/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: hi\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/hr/messages.mo
Normal file
BIN
src/messages/hr/messages.mo
Normal file
Binary file not shown.
32
src/messages/hr/messages.po
Normal file
32
src/messages/hr/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: hr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/hu/messages.mo
Normal file
BIN
src/messages/hu/messages.mo
Normal file
Binary file not shown.
32
src/messages/hu/messages.po
Normal file
32
src/messages/hu/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: hu\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/hy/messages.mo
Normal file
BIN
src/messages/hy/messages.mo
Normal file
Binary file not shown.
32
src/messages/hy/messages.po
Normal file
32
src/messages/hy/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: hy\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/id/messages.mo
Normal file
BIN
src/messages/id/messages.mo
Normal file
Binary file not shown.
32
src/messages/id/messages.po
Normal file
32
src/messages/id/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: id\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/it/messages.mo
Normal file
BIN
src/messages/it/messages.mo
Normal file
Binary file not shown.
32
src/messages/it/messages.po
Normal file
32
src/messages/it/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: it\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/ja/messages.mo
Normal file
BIN
src/messages/ja/messages.mo
Normal file
Binary file not shown.
32
src/messages/ja/messages.po
Normal file
32
src/messages/ja/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: ja\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/ka/messages.mo
Normal file
BIN
src/messages/ka/messages.mo
Normal file
Binary file not shown.
32
src/messages/ka/messages.po
Normal file
32
src/messages/ka/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: ka\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/kk/messages.mo
Normal file
BIN
src/messages/kk/messages.mo
Normal file
Binary file not shown.
32
src/messages/kk/messages.po
Normal file
32
src/messages/kk/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: kk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/ko/messages.mo
Normal file
BIN
src/messages/ko/messages.mo
Normal file
Binary file not shown.
32
src/messages/ko/messages.po
Normal file
32
src/messages/ko/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: ko\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/kz/messages.mo
Normal file
BIN
src/messages/kz/messages.mo
Normal file
Binary file not shown.
32
src/messages/kz/messages.po
Normal file
32
src/messages/kz/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: kz\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/lt/messages.mo
Normal file
BIN
src/messages/lt/messages.mo
Normal file
Binary file not shown.
32
src/messages/lt/messages.po
Normal file
32
src/messages/lt/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: lt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/lv/messages.mo
Normal file
BIN
src/messages/lv/messages.mo
Normal file
Binary file not shown.
32
src/messages/lv/messages.po
Normal file
32
src/messages/lv/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: lv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/ms/messages.mo
Normal file
BIN
src/messages/ms/messages.mo
Normal file
Binary file not shown.
32
src/messages/ms/messages.po
Normal file
32
src/messages/ms/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: ms\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/nb-NO/messages.mo
Normal file
BIN
src/messages/nb-NO/messages.mo
Normal file
Binary file not shown.
32
src/messages/nb-NO/messages.po
Normal file
32
src/messages/nb-NO/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: nb_NO\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/nl/messages.mo
Normal file
BIN
src/messages/nl/messages.mo
Normal file
Binary file not shown.
32
src/messages/nl/messages.po
Normal file
32
src/messages/nl/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: nl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/pl/messages.mo
Normal file
BIN
src/messages/pl/messages.mo
Normal file
Binary file not shown.
32
src/messages/pl/messages.po
Normal file
32
src/messages/pl/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: pl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/pt-BR/messages.mo
Normal file
BIN
src/messages/pt-BR/messages.mo
Normal file
Binary file not shown.
32
src/messages/pt-BR/messages.po
Normal file
32
src/messages/pt-BR/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: pt_BR\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/pt/messages.mo
Normal file
BIN
src/messages/pt/messages.mo
Normal file
Binary file not shown.
32
src/messages/pt/messages.po
Normal file
32
src/messages/pt/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: pt\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/ro/messages.mo
Normal file
BIN
src/messages/ro/messages.mo
Normal file
Binary file not shown.
32
src/messages/ro/messages.po
Normal file
32
src/messages/ro/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: ro\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/ru/messages.mo
Normal file
BIN
src/messages/ru/messages.mo
Normal file
Binary file not shown.
32
src/messages/ru/messages.po
Normal file
32
src/messages/ru/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: ru\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/sk/messages.mo
Normal file
BIN
src/messages/sk/messages.mo
Normal file
Binary file not shown.
32
src/messages/sk/messages.po
Normal file
32
src/messages/sk/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: sk\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/sl/messages.mo
Normal file
BIN
src/messages/sl/messages.mo
Normal file
Binary file not shown.
32
src/messages/sl/messages.po
Normal file
32
src/messages/sl/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: sl\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/sr-Latn/messages.mo
Normal file
BIN
src/messages/sr-Latn/messages.mo
Normal file
Binary file not shown.
32
src/messages/sr-Latn/messages.po
Normal file
32
src/messages/sr-Latn/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: sr_Latn\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/sr/messages.mo
Normal file
BIN
src/messages/sr/messages.mo
Normal file
Binary file not shown.
32
src/messages/sr/messages.po
Normal file
32
src/messages/sr/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: sr\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/sv/messages.mo
Normal file
BIN
src/messages/sv/messages.mo
Normal file
Binary file not shown.
32
src/messages/sv/messages.po
Normal file
32
src/messages/sv/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: sv\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
BIN
src/messages/tg/messages.mo
Normal file
BIN
src/messages/tg/messages.mo
Normal file
Binary file not shown.
32
src/messages/tg/messages.po
Normal file
32
src/messages/tg/messages.po
Normal file
@ -0,0 +1,32 @@
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"POT-Creation-Date: \n"
|
||||
"PO-Revision-Date: \n"
|
||||
"Last-Translator: \n"
|
||||
"Language-Team: \n"
|
||||
"Language: tg\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Button"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Home"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Show"
|
||||
msgstr ""
|
||||
|
||||
msgctxt "yii/bootstrap5"
|
||||
msgid "Toggle Dropdown"
|
||||
msgstr ""
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user