drupal / console-id
Drupal Console 印尼语语言包
dev-master
2019-07-16 23:45 UTC
This package is auto-updated.
Last update: 2024-09-17 11:10:08 UTC
README
DrupalConsole 印尼语语言包 / Bahasa Indonesia
印尼语版本
使用
Drupal Console 项目在 Drupal 8 每个网站上安装时,默认使用英语。
要安装带有印尼语的 Drupal Console 包,请运行以下命令
$ composer require drupal/console-id
安装 Drupal Console
要为您的 Drupal 安装安装合适的 Drupal Console 版本,请运行以下 composer 命令
$ composer require drupal/console:~1.0 --prefer-dist --optimize-autoloader
安装 Drupal Console 启动器
为了避免 Drupal 和 Drupal Console 版本之间的冲突,尤其是在主版本和次版本之间,创建了 Drupal Console 启动器,以便为每个 Drupal 8 网站加载可用的 Drupal Console 命令。
按照以下命令安装 Drupal Console 启动器的全局应用。
$ curl https://drupalconsole.com/installer -L -o drupal.phar
# Atau
$ php -r "readfile('https://drupalconsole.com/installer');" > drupal.phar
$mv drupal.phar /usr/local/bin/drupal
$ chmod +x /usr/local/bin/drupal
贡献
如果您想为此翻译做出贡献,请按照以下步骤操作
- 使用以下链接 Fork 仓库 https://github.com/hechoendrupal/drupal-console-id#fork-destination-box
- 在本地机器上 Clone 您已 Fork 的仓库。
- 设置上游
为了与其他贡献者保持同步,您需要使用以下 git 命令设置与主仓库的连接
$ git remote add upstream git@github.com:hechoendrupal/drupal-console-id.git
在开始之前,您必须运行以下命令以获取最新的贡献
$ git fetch upstream
$ git merge upstream/master
注意:为了防止与其他贡献者发生冲突,您每天向已 Fork 的仓库推送更改,以便创建 PR。