Kouhei Sutou
null+****@clear*****
Wed Aug 16 23:50:36 JST 2017
Kouhei Sutou 2017-08-16 23:50:36 +0900 (Wed, 16 Aug 2017) New Revision: c0f161d4bbf0060a6c9908ad8b19f5aa6fb525e5 https://github.com/pgroonga/pgroonga.github.io/commit/c0f161d4bbf0060a6c9908ad8b19f5aa6fb525e5 Message: OS X -> macOS Copied files: _po/ja/install/macos.po (from _po/ja/install/os-x.po) install/macos.md (from install/os-x.md) ja/install/macos.md (from ja/install/os-x.md) Modified files: _po/ja/install/index.po _po/ja/install/os-x.po install/index.md install/os-x.md ja/install/index.md ja/install/os-x.md Modified: _po/ja/install/index.po (+2 -2) =================================================================== --- _po/ja/install/index.po 2017-08-16 23:44:05 +0900 (12084d0) +++ _po/ja/install/index.po 2017-08-16 23:50:36 +0900 (e98768e) @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2017-08-16 21:48+0900\n" +"PO-Revision-Date: 2017-08-16 23:50+0900\n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -80,7 +80,7 @@ msgstr "" msgid " * [FreeBSD](freebsd.html)" msgstr "" -msgid " * [OS X](os-x.html)" +msgid " * [macOS](macos.html)" msgstr "" msgid " * Homebrew" Copied: _po/ja/install/macos.po (+7 -7) 86% =================================================================== --- _po/ja/install/os-x.po 2017-08-16 23:44:05 +0900 (89f91fc) +++ _po/ja/install/macos.po 2017-08-16 23:50:36 +0900 (d28f16f) @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2015-12-31 12:52+0900\n" +"PO-Revision-Date: 2017-08-16 23:49+0900\n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -10,18 +10,18 @@ msgstr "" msgid "" "---\n" -"title: Install on OS X\n" +"title: Install on macOS\n" "---" msgstr "" "---\n" -"title: OS Xにインストール\n" +"title: macOSにインストール\n" "---" -msgid "# Install on OS X" -msgstr "# OS Xにインストール" +msgid "# Install on macOS" +msgstr "# macOSにインストール" -msgid "This document describes how to install PGroonga on OS X." -msgstr "このドキュメントはPGroongaをOS Xにインストールする方法を説明します。" +msgid "This document describes how to install PGroonga on macOS." +msgstr "このドキュメントではPGroongaをmacOSにインストールする方法を説明します。" msgid "## How to install by Homebrew {#homebrew}" msgstr "## Homebrewを使ったインストール方法 {#homebrew}" Modified: _po/ja/install/os-x.po (+3 -64) =================================================================== --- _po/ja/install/os-x.po 2017-08-16 23:44:05 +0900 (89f91fc) +++ _po/ja/install/os-x.po 2017-08-16 23:50:36 +0900 (30ffdbb) @@ -1,7 +1,7 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"PO-Revision-Date: 2015-12-31 12:52+0900\n" +"PO-Revision-Date: 2017-08-16 23:50+0900\n" "Language: ja\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -11,71 +11,10 @@ msgstr "" msgid "" "---\n" "title: Install on OS X\n" +"redirect: macos.html\n" "---" msgstr "" "---\n" "title: OS Xにインストール\n" +"redirect: macos.html\n" "---" - -msgid "# Install on OS X" -msgstr "# OS Xにインストール" - -msgid "This document describes how to install PGroonga on OS X." -msgstr "このドキュメントはPGroongaをOS Xにインストールする方法を説明します。" - -msgid "## How to install by Homebrew {#homebrew}" -msgstr "## Homebrewを使ったインストール方法 {#homebrew}" - -msgid "You can install PGroonga by Homebrew:" -msgstr "Homebrewを使ってPGroongaをインストールできます。" - -msgid "" -"```text\n" -"% brew install pgroonga\n" -"```" -msgstr "" - -msgid "" -"If you want to use [MeCab](http://taku910.github.io/mecab/) based tokenizer, y" -"ou need to reinstall `groonga` package with `--with-mecab` option:" -msgstr "" -"[MeCab](http://taku910.github.io/mecab/)ベースのトークナイザーを使いたい場合は、`groonga`パッケージを`--" -"with-mecab`オプション付きでインストールし直す必要があります。" - -msgid "" -"```text\n" -"% brew reinstall groonga --with-mecab\n" -"```" -msgstr "" - -msgid "Create a database:" -msgstr "データベースを作成します。" - -msgid "" -"```text\n" -"% psql --command 'CREATE DATABASE pgroonga_test'\n" -"```" -msgstr "" - -msgid "" -"(Normally, you should create a user for `pgroonga_test` database and use the u" -"ser. See [`GRANT USAGE ON SCHEMA pgroonga`](../reference/grant-usage-on-schema" -"-pgroonga.html) for details.)" -msgstr "" -"(通常は`pgroonga_test`データベース用のユーザーを作ってそのユーザーを作るべきです。詳細は[`GRANT USAGE ON SCHEMA pg" -"roonga`](../reference/grant-usage-on-schema-pgroonga.html)を参照してください。)" - -msgid "Connect to the created database and execute `CREATE EXTENSION pgroonga`:" -msgstr "作成したデータベースに接続し、`CREATE EXTENSION pgroonga`を実行します。" - -msgid "" -"```text\n" -"% psql -d pgroonga_test --command 'CREATE EXTENSION pgroonga'\n" -"```" -msgstr "" - -msgid "That's all!" -msgstr "これで終わりです!" - -msgid "Try [tutorial](../tutorial/). You can understand more about PGroonga." -msgstr "[チュートリアル](../tutorial/)を試してください。PGroongaについてもっと理解できるはずです。" Modified: install/index.md (+1 -1) =================================================================== --- install/index.md 2017-08-16 23:44:05 +0900 (2590ba8) +++ install/index.md 2017-08-16 23:50:36 +0900 (cb73333) @@ -42,7 +42,7 @@ See a document for your platform in the followings: * [FreeBSD](freebsd.html) - * [OS X](os-x.html) + * [macOS](macos.html) * Homebrew Copied: install/macos.md (+3 -3) 89% =================================================================== --- install/os-x.md 2017-08-16 23:44:05 +0900 (cd1fcdb) +++ install/macos.md 2017-08-16 23:50:36 +0900 (ce6616d) @@ -1,10 +1,10 @@ --- -title: Install on OS X +title: Install on macOS --- -# Install on OS X +# Install on macOS -This document describes how to install PGroonga on OS X. +This document describes how to install PGroonga on macOS. ## How to install by Homebrew {#homebrew} Modified: install/os-x.md (+1 -36) =================================================================== --- install/os-x.md 2017-08-16 23:44:05 +0900 (cd1fcdb) +++ install/os-x.md 2017-08-16 23:50:36 +0900 (052ab97) @@ -1,39 +1,4 @@ --- title: Install on OS X +redirect: macos.html --- - -# Install on OS X - -This document describes how to install PGroonga on OS X. - -## How to install by Homebrew {#homebrew} - -You can install PGroonga by Homebrew: - -```text -% brew install pgroonga -``` - -If you want to use [MeCab](http://taku910.github.io/mecab/) based tokenizer, you need to reinstall `groonga` package with `--with-mecab` option: - -```text -% brew reinstall groonga --with-mecab -``` - -Create a database: - -```text -% psql --command 'CREATE DATABASE pgroonga_test' -``` - -(Normally, you should create a user for `pgroonga_test` database and use the user. See [`GRANT USAGE ON SCHEMA pgroonga`](../reference/grant-usage-on-schema-pgroonga.html) for details.) - -Connect to the created database and execute `CREATE EXTENSION pgroonga`: - -```text -% psql -d pgroonga_test --command 'CREATE EXTENSION pgroonga' -``` - -That's all! - -Try [tutorial](../tutorial/). You can understand more about PGroonga. Modified: ja/install/index.md (+1 -1) =================================================================== --- ja/install/index.md 2017-08-16 23:44:05 +0900 (4022cd8) +++ ja/install/index.md 2017-08-16 23:50:36 +0900 (7dccfbe) @@ -42,7 +42,7 @@ title: インストール * [FreeBSD](freebsd.html) - * [OS X](os-x.html) + * [macOS](macos.html) * Homebrew Copied: ja/install/macos.md (+3 -3) 87% =================================================================== --- ja/install/os-x.md 2017-08-16 23:44:05 +0900 (5a38ada) +++ ja/install/macos.md 2017-08-16 23:50:36 +0900 (d088751) @@ -1,10 +1,10 @@ --- -title: OS Xにインストール +title: macOSにインストール --- -# OS Xにインストール +# macOSにインストール -このドキュメントはPGroongaをOS Xにインストールする方法を説明します。 +このドキュメントではPGroongaをmacOSにインストールする方法を説明します。 ## Homebrewを使ったインストール方法 {#homebrew} Modified: ja/install/os-x.md (+1 -36) =================================================================== --- ja/install/os-x.md 2017-08-16 23:44:05 +0900 (5a38ada) +++ ja/install/os-x.md 2017-08-16 23:50:36 +0900 (fcf2137) @@ -1,39 +1,4 @@ --- title: OS Xにインストール +redirect: macos.html --- - -# OS Xにインストール - -このドキュメントはPGroongaをOS Xにインストールする方法を説明します。 - -## Homebrewを使ったインストール方法 {#homebrew} - -Homebrewを使ってPGroongaをインストールできます。 - -```text -% brew install pgroonga -``` - -[MeCab](http://taku910.github.io/mecab/)ベースのトークナイザーを使いたい場合は、`groonga`パッケージを`--with-mecab`オプション付きでインストールし直す必要があります。 - -```text -% brew reinstall groonga --with-mecab -``` - -データベースを作成します。 - -```text -% psql --command 'CREATE DATABASE pgroonga_test' -``` - -(通常は`pgroonga_test`データベース用のユーザーを作ってそのユーザーを作るべきです。詳細は[`GRANT USAGE ON SCHEMA pgroonga`](../reference/grant-usage-on-schema-pgroonga.html)を参照してください。) - -作成したデータベースに接続し、`CREATE EXTENSION pgroonga`を実行します。 - -```text -% psql -d pgroonga_test --command 'CREATE EXTENSION pgroonga' -``` - -これで終わりです! - -[チュートリアル](../tutorial/)を試してください。PGroongaについてもっと理解できるはずです。 -------------- next part -------------- HTML����������������������������...Download