[Notice] Announcing the End of Demo Server [Read me]
doortts doortts 2017-02-04
docs: Update docs and support english docs
@fd582b8e2edf618b31004cc0812faf1c1b090252
README.md
--- README.md
+++ README.md
@@ -107,15 +107,16 @@
 ---
 Currently, Yona offers two distributions per version.
 
-- MariaDB Version
-  - Recommended version.
-  - Distributed as a file in the similar format as yona-v1.3.0-bin.zip
-  - It takes a little effort to install DB, but it can be operated stably.
-- Embedded H2 DB Version
-  - Portable version that can be downloaded and run immediately. No need to setting a DB.
-  - Distributed as a file in the similar format as yona-h2-v1.3.0-bin.zip
-  - It can be used portable. For example, along with USB etc. And it can be carried around with zip as a whole of work.
-  - Not suitable for large-scale team. (over 500 people)
+#### MariaDB Version
+- Recommended version.
+- Distributed as a file in the similar format as yona-v1.3.0-bin.zip
+- It takes a little effort to install DB, but it can be operated stably.
+
+#### Embedded H2 DB Version
+- Portable version that can be downloaded and run immediately. No need to setting a DB.
+- Distributed as a file in the similar format as yona-h2-v1.3.0-bin.zip
+- It can be used portable. For example, along with USB etc. And it can be carried around with zip as a whole of work.
+ - Not suitable for large-scale team. (over 500 people)
 
 
 How to install
docs/db-error-767.md
--- docs/db-error-767.md
+++ docs/db-error-767.md
@@ -1,4 +1,4 @@
-### MariaDB 767 byte 에러
+### MariaDB 767 byte Error
 
 ```
 [info] play - database [default] connected at jdbc:mysql://127.0.0.1:3306/yona 
@@ -7,14 +7,15 @@
 @6p6j2gap7: Database 'default' is in an inconsistent state!
 ```
 
-이런 에러가 나오는 경우는 아래 두 가지 옵션이 정상적으로 반영되지 않아서 입니다.
+If you see this error, check following two options are properly apllied.
 ```
 innodb_file_format=barracuda
 innodb_large_prefix=on
 ```
 
-위 내용은 my.cnf 에 추가한다음 DB를 시작해 주세요.
-재시작후 root 유저로 접속해서 
+Add the above to my.cnf and start the DB.
+
+After restarting, connect as root user
 ```
 
 MariaDB [(none)]> SHOW VARIABLES LIKE 'innodb_lar%';
@@ -34,6 +35,4 @@
 | innodb_file_per_table    | ON        |
 +--------------------------+-----------+
 ```
-처럼 on 되어 있고 file format도 barracuda로 되어 있는지 확인해 보세요.
-
-기타 관련해서는 [이슈 #924](https://github.com/naver/yobi/issues/924)을 참고해 주세요
(No newline at end of file)
+Make sure that the items above are on and that the file format is also barracuda.
docs/install-mariadb.md
--- docs/install-mariadb.md
+++ docs/install-mariadb.md
@@ -1,34 +1,33 @@
 MariaDB 설치
 ===
 
-아래 설명은 진행 과정만 참고만 하시고 실제로는 MariaDB 10.1.10 이상을 설치해 주세요
+Please refer to the procedure below and install MariaDB 10.1.20 or later.
 
 1. Linux 
-   - 배포본의 저장소 및 설치 스크립트는 다음 선택 페이지의 설명을 참고하여 설치 합니다.
    - [Setting up MariaDB Repositories](https://downloads.mariadb.org/mariadb/repositories/)
   
 2. Mac
-   - brew install 을 이용해서 설치를 권장합니다.
+   - Recommed to use `brew install`
    - https://mariadb.com/blog/installing-mariadb-10010-mac-os-x-homebrew
 
 3. Windows
    - https://downloads.mariadb.org/mariadb/10.1.11/#os_group=windows
 
-##### DB 설치후 유저 및 Database 생성 
+##### Create user and database after installing DB
 
-기본 진행 내용은 MariaDB에 root 유저로 접속한 다음 yona 유저를 만들고 DB를 만들고 해당 DB의 모든 권한을 yona 유저에게 주는 작업입니다.
+The basic procedure is to connect to MariaDB as root user, create yona user, create DB, and give all permissions of yona user to DB.
 
-MariaDB root 유저로 접속
+Connect to MariaDB with root
 ```
 mysql -uroot 
 ```
 
-yona 유저 생성. password는 IDENTIFIED BY 다음에 지정한 문자가 됩니다. 아래 예)에서는 yonadan
+Create user `yona` and set password. 'yonadan' is just example, so change it.
 ```
 create user 'yona'@'localhost' IDENTIFIED BY 'yonadan';
 ```
 
-DB 생성 UTF8 확장문자열을 저장할 수 있는 포맷으로 지정해서 생성합니다.
+To use UTF8 extended chars, set file format to BARACUDA.
 
 ```
 set global innodb_file_format = BARRACUDA;
@@ -40,27 +39,28 @@
 ;
 ```
 
-yona 유저에게 yona 데이터베이스 권한 부여
+Grant priviledges
 
 ```
 GRANT ALL ON yona.* to 'yona'@'localhost';
 ```
 
-`exit`명령어로 쉘로 빠져 나온 다음 yona 유저로 정상 접속되고 yona DB가 사용 가능한지 확인해 봅니다.
-참고로 -p 다음에 쓴 글자가 위에서 만든 패스워드입니다.
+Exit to the shell with `exit` command and check that yona DB is available and yona user is connected normally.
+Note that the letter after the -p is the password created above.
 
 ```
 mysql -u yona -p'yonadan'
 use yona
 ```
 
-/etc/my.cnf 파일을 만들어서 아래 내용을 추가해 주세요. 
-(mac os 유저의 경우에는 db 실행유저의 ~/.my.cnf에 아래 내용을 추가해 주세요)
-샘플참고: https://github.com/yona-projects/yona/blob/next/support-script/mariadb/my.cnf
+Please make a /etc/my.cnf file and add the following.
 
-- Unicode 4Byte 확장 문자열을 지원하기 위해 utf8mb4를 사용하도록 되어 있습니다.
-- lower_case_table_name=1 는 테이블명이나 컬럼명 조회시 대소문자를 구분하지 않도록 만드는 옵션입니다.
-- collation-server 는 정렬시의 기준옵션을 설정하는 부분입니다.
+(If you are a mac os user, add the following line to ~/.my.cnf file)
+Example: https://github.com/yona-projects/yona/blob/next/support-script/mariadb/my.cnf
+
+- It is supposed to use utf8mb4 to support Unicode 4Byte extension strings.
+- `lower_case_table_name=1` is option makes the case of table or column names case insensitive.
+- collation-server is criteria options when sorting.
 
 ```
 [client]
@@ -78,33 +78,29 @@
 innodb_large_prefix=on
 ```
 
-꼭 /etc 아래가 아니더라도 [my.cnf 위치 탐색순서](https://mariadb.com/kb/en/mariadb/configuring-mariadb-with-mycnf/) 를 보고 적당한 곳에 my.cnf 파일을 만들어서 넣어도 무방하다고 알려져 있습니다. (Mac OS 유저는 우선은 위 설명대로 해주세요. 추가 확인이 필요합니다)
+Also, see [configuring-mariadb-with-mycnf](https://mariadb.com/kb/en/mariadb/configuring-mariadb-with-mycnf/) 
 
-이제 Yona 를 설치합니다. 
+Now, let's start to install Yona!
 
 
--- 이하 내용은 참고용입니다 -- 
+-- The following is for reference only -- 
 
-### 만약 DB관련 작업을 한 후 정상적으로 페이지가 뜨지 않을 경우 아래 항목을 확인해 주세요.
+### If the page does not open properly after working on the DB, check the items below.
 
-- application.conf 가 제대로 읽히는지
-- application.secret 적용여부
-- db.default.url 확인 
+- application.conf 
+- application.secret 
+- db.default.url  
 
-### MariaDB 재시작 방법
-자주하진 마세요!
-DB를 설치한 유저로 DB를 재시작합니다. (root나 sudo 설치했을 경우 명령어 앞에 sudo를 붙여주세요)
+### MariaDB Restart
 ```
 service mysql restart
 
-혹은
+or
 
 /etc/init.d/mysql restart
 
-혹은
+or
 
 mysql.server restart
 ```
-참고: http://coolestguidesontheplanet.com/start-stop-mysql-from-the-command-line-terminal-osx-linux/
-
-DB가 정상적으로 재시작되었으면 
+See: http://coolestguidesontheplanet.com/start-stop-mysql-from-the-command-line-terminal-osx-linux/
docs/install-yona-server.md
--- docs/install-yona-server.md
+++ docs/install-yona-server.md
@@ -1,31 +1,32 @@
-Yona 설치
+Yona Install
 ===
 
-Yona 최신 버전을 https://github.com/yona-projects/yona/releases 에서 다운받아 압축을 풉니다. 
-wget으로 받아서 unzip으로 압축을 푼다면 미리 다운로드 링크 주소를 확인한 다음 내려받습니다.
+Download the latest version of Yona from https://github.com/yona-projects/yona/releases and unzip it.
+Also, consider to use wget like followings.
 
-예)
+ex)
 
     wget https://github.com/yona-projects/yona/releases/download/v1.3.0/yona-v1.3.0-bin.zip
     unzip yona.zip
 
-### application.conf 파일 등 설정파일 생성하기
+### application.conf generating and setting
 
-압축이 풀린 곳으로 이동해서 bin/yona 을 실행합니다. (Java 8 이상이 필요합니다)
-**주의**: 아래와 같이 yona 설치 폴더에서 실행하여야 합니다. 또한 윈도우 사용자는 bin/yona 대신 bin/yona.bat을 실행해야 합니다.
+Go to the unpacked location and run `bin/yona`. (Requires Java 8 or later)
+**Note**: You should run it from yona installation folder as below. Windows users should also run `bin/yona.bat` instead of `bin/yona`.
 
 ```
 cd yona
 bin/yona
 ```
 
-실행하면 패스워드가 틀렸다는 에러와 함께 실행이 종료 될겁니다. 이제 압축을 풀었을때는 안 보였던 conf 디렉터리가 보일 겁니다. 
+Execution will terminate with an error that the password is wrong. It's noraml. Don't worry. :)
+You should now see the conf directory that you were not able to see when you extracted it.
 
-#### DB 설정 수정
+#### DB configuration
 
-앞서 설치한 MariaDB에 맞게 DB 연결 설정을 수정해야 합니다.
+You need to modify the DB connection settings to connect the MariaDB you installed earlier.
 
-conf 폴더 아래의 application.conf 파일에서 아래 부분에서 password를 위에서 설정한 password로 수정해 주세요
+In the application.conf file under the conf folder, change the password in the following section to the db password set above
 ```
 ...
 db.default.driver=org.mariadb.jdbc.Driver
@@ -35,36 +36,32 @@
 ...
 ```
 
-`yonadan`은 예시일뿐 그대로 사용하지 않는 걸 권장합니다. 
+`yonadan` is just example, recommed change it to your own password.
 
 
-본격적인 첫 화면 보기 위한 실행
+Run for first page
 ----
 
-yona v1.3 이상부터는 data 폴더만 지정해주면 어느 위치에서 yona를 실행시켜도 무방하게 변경되었습니다. 이후에 버전 업그레이드시에도 특별히 데이터 폴더들을 옮기거나 할 필요가 없습니다.
-
-- conf 폴더와 각종 데이터를 유지할 폴더를 하나 만듭니다.
+- Create a folder to hold various data including conf folder.
 ```
-예)
+ex)
 
 /yona-data
 ```
-- conf 폴더를 위에서 만든 /yona-data로 복사합니다.
+- copy conf folder to `/yona-data` created above.
 ```
-예) 현재 위치가 /Users/doortts/Download/yona-v1.3.0-bin 이라고 가정했을때 
+Ex) Assuming your current location is /Users/doortts/Download/yona-v1.3.0-bin
 
 cp -r conf /yona-data
 ```
 
-- YONA_DATA 환경변수를 지정하고 Yona 실행
+- Specify the YONA_DATA environment variable and run Yona
 ```
-예) 현재 위치가 /Users/doortts/Download/yona-v1.3.0-bin 이라고 가정했을때 
+Ex) Assuming your current location is /Users/doortts/Download/yona-v1.3.0-bin
 
 YONA_DATA=/yona-data;export YONA_DATA
 bin/yona
 ```
 
-이어서 본격적인 실행 방법에 대해서는 [yona-run-and-upgrade.md](yona-run-and-upgrade.md)를 참고해주세요.
-
-만약 사용버전이 v1.3 이전일 경우에는 [yona-run-under-v1.3](yona-run-under-v1.3.md) 를 참고해주세요.
+Then, please refer to [yona-run-and-upgrade.md](yona-run-and-upgrade.md) for details.
 
docs/ko/install-mariadb.md
--- docs/ko/install-mariadb.md
+++ docs/ko/install-mariadb.md
@@ -82,6 +82,8 @@
 
 이제 Yona 를 설치합니다. 
 
+[Install Yona Server](install-yona-server.md)
+
 
 -- 이하 내용은 참고용입니다 -- 
 
docs/ko/install-yona-server.md
--- docs/ko/install-yona-server.md
+++ docs/ko/install-yona-server.md
@@ -43,7 +43,7 @@
 
 yona v1.3 이상부터는 data 폴더만 지정해주면 어느 위치에서 yona를 실행시켜도 무방하게 변경되었습니다. 이후에 버전 업그레이드시에도 특별히 데이터 폴더들을 옮기거나 할 필요가 없습니다.
 
-- conf 폴더와 각종 데이터를 유지할 폴더를 하나 만듭니다.
+- conf 폴더를 비롯해 각종 데이터를 유지할 폴더를 하나 만듭니다.
 ```
 예)
 
docs/ko/trouble-shootings.md
--- docs/ko/trouble-shootings.md
+++ docs/ko/trouble-shootings.md
@@ -31,3 +31,13 @@
 
     SET JAVA_OPTS=-DapplyEvolutions.default=true
     bin\yona
+
+### RuntimeException: Provider 'google' missing needed setting 'clientId'
+
+application.conf 파일에서 관련 설정을 읽어 들일 수 없을때 발상하는 오류.
+
+application.conf 맨 하단에 아래 설정을 추가해 주세요.
+
+```
+include "social-login.conf"
+```
docs/ko/yona-run-options.md
--- docs/ko/yona-run-options.md
+++ docs/ko/yona-run-options.md
@@ -59,9 +59,10 @@
 
 ### 메모리 할당 증가
 
-`_JAVA_OPTIONS` 환경변수를 이용해 자바 환경 변수를 지정할 수도 있습니다. 시스템
+`SET JAVA_OPTS` 환경변수 설정을 이용해 자바 환경 변수를 지정할 수도 있습니다. 시스템
 메모리가 4기가 이상이라면, 다음과 같은 옵션으로 실행하는 걸 권장합니다.
 
+
 ```
 예) yona-run.bat 파일로 만들어 본 실행 스크립트 작성 예. 메모리 2G 할당
     SET YONA_DATA=c:\yona-data
docs/system-requirements.md
--- docs/system-requirements.md
+++ docs/system-requirements.md
@@ -1,7 +1,7 @@
 Server
 ------
 
-* Java SE 7 or 8 JDK
+* Java SE 8 or later JDK
 
 Client
 ------
docs/trouble-shootings.md
--- docs/trouble-shootings.md
+++ docs/trouble-shootings.md
@@ -1,33 +1,40 @@
-### 설치시 오류 [1]입력 줄이 너무 깁니다. 
-Windows OS에서는 명령줄 길이 한계로 너무 하위로 들어가지 않도록 \ 아래에 폴더를 만들어 주세요.
-드라이브 아래에 바로 폴더를 만드는 걸 권장합니다.
+### "Input line is too long" error in BAT File
+On the Windows OS, create a folder under \ so that it does not fall too far into the command line length limit.
+We recommend creating the folder directly under the drive.
 
 ```
-Windows OS Yona 권장 폴더
-C:\yona\yona-1.3.0 <- yona 폴더아래에 버전별로 압축해제 
-C:\yona-data <- conf 파일, logs, uploads, repo 폴더가 생성되고 유지되는 곳. YONA_DATA 환경 변수로 지정
+Windows OS Yona recommanded folder
+C:\yona\yona-1.3.0 <- Unzip under the yona folder by version
+C:\yona-data <- Conf files, logs, uploads, repo where folders are created and maintained. Specify with the YONA_DATA environment variable
 ```
 
-만약 부득이하게 Program Files 등의 하위 폴더에 설치해야 한다면 아래 링크를 참고해주세요.
-https://github.com/yona-projects/yona/issues/130
-
-### MariaDB 767 byte 에러가 발생했다면?
-만약 콘솔에 DB 관련 에러 특히 
+### Specified key was too long; max key length is 767 bytes
+If you see following errors at console,
 ```
 [error] play - Specified key was too long; max key length is 767 bytes [ERROR:1071, SQLSTATE:42000] 
 ```
-가 발생할 경우 [MariaDB 767 byte 에러](db-error-767.md) 항목을 참고해 주세요
+See [MariaDB 767 byte error](db-error-767.md) 
 
 
-### Yona 버전 업그레이드시 옵션 조절
+### Option adjustment when upgrading Yona version
 
-업그레이드를 하는 경우 다음과 같이 데이터베이스 스키마 마이그레이션이
-필요하다는 경고 메시지와 함께 실행되지 않는 상황을 겪을 수 있습니다.
+If you are upgrading, migrate the database schema as follows:
+You may experience a situation that does not work with a warning message that you need it.
 
     [warn] play - Your production database [default] needs evolutions!
 
-그런 경우에는 자동으로 마이그레이션이 되도록 다음과 같이
-applyEvolutions.default 자바 프로퍼티를 true로 설정합니다.
+In such a case, the migration should be done as follows
+ApplyEvolutions.default Sets the Java property to true.
 
     SET JAVA_OPTS=-DapplyEvolutions.default=true
     bin\yona
+
+### RuntimeException: Provider 'google' missing needed setting 'clientId'
+
+An error that occurs when the related settings can not be read from the application.conf file.
+
+Please add the following settings to the bottom of application.conf.
+
+```
+include "social-login.conf"
+```
 
docs/troubleshoot.md (deleted)
--- docs/troubleshoot.md
@@ -1,12 +0,0 @@
-This document is a troubleshooting guide to help you resolve well-known
-problems you might have with Yobi.
-
-### Cannot commit a large file into a SVN repository
-
-If it takes a lot of time to commit a large file into a SVN repository so that
-you can't commit the file, the cause may be a lack of memory. Please allocate
-more memory to Yobi by using java options as follows:
-
-    _JAVA_OPTIONS="-Xmx4096m -Xms2048m" activator "start -DapplyEvolutions.default=true -Dhttp.port=9000"
-
-Thanks to @zepinos for reporting at https://github.com/naver/yobi/issues/901.
docs/yona-backup-restore.md
--- docs/yona-backup-restore.md
+++ docs/yona-backup-restore.md
@@ -1,30 +1,19 @@
-백업하기
+Backup and Restore
 ===
 
-DB 백업 및 이전 복구 방법
+DB 
 ---
-[DB 백업 및 이전 복구 방법](https://github.com/yona-projects/yona/wiki/DB-%EB%B0%B1%EC%97%85-%EB%B0%8F-%EC%9D%B4%EC%A0%84-%EB%B3%B5%EA%B5%AC-%EB%B0%A9%EB%B2%95)
+See: https://mariadb.com/kb/en/mariadb/backup-and-restore-overview
 
-참고: https://mariadb.com/kb/en/mariadb/backup-and-restore-overview
-
-각종 설정 및 파일들 백업
+Back up various settings and files
 ---
-YONA_DATA 환경변수로 지정된 디렉터리를 통째로 압축해서 보관합니다.
+The entire directory specified by the YONA_DATA environment variable is kept compressed.
 
 
-참고: YONA_DATA에 생성된 디렉터리 설명
+Note: The directory description created in YONA_DATA
+````
+- conf - where server configuration files are located
+- uploads - where uploaded attachments are located
+- repo - code repository files
+- logs - log files
 ```
-- conf - 서버 설정파일들이 있는 곳
-- uploads - 업로드된 첨부파일들이 있는 곳
-- repo - 코드 저장소 파일들
-- logs - 로그 파일들
-```
-
-
-#### v1.3 이전
-
-코드 저장소의 파일과 업로드 파일은 아래 디렉터리에 저장됩니다. 
-
-    directory: repo, uploads
-
-주기적으로 두 디렉터리는 따로 잘 백업해 주세요. 
docs/yona-mail-settings.md
--- docs/yona-mail-settings.md
+++ docs/yona-mail-settings.md
@@ -1,11 +1,10 @@
-각종 알림을 메일로 발송하도록 설정하는 방법
+How to set up sending notifications by email
 ===
 
-메일 발송 기능
+Mail sending function
 ----
-- conf 디렉터리에 있는 application.conf 파일을 열어 Mailer 항목내용을 수정합니다. 
-- 주의할 부분!!
-   - `smtp.mock = true`로 되어 있는 부분을 false로 바꿔야 실제 메일이 발송됩니다.
+- Open the application.conf file in the conf directory to modify the contents of the Mailer entry.
+- You must change `smtp.mock = true` to false, then the actual mail will be sent.
 
 
 ```
@@ -26,10 +25,10 @@
 smtp.archive.size = 5
 ```
 
-메일로 Yona에 이슈나 댓글이 등록될 수 있게 설정하는 방법
+How to set up an issue or comment on Yona by mail
 ---
-- Yona는 MailBox 기능을 이용해서 알림메일에 직접 답장을 해서 댓글을 등록하거나 특정 프로젝트로 메일을 이용해 이슈를 등록하는 기능을 제공하고 있습니다.
-- 이 기능을 사용하려면 메일박스 설정을 해야 합니다.
+- Yona uses the MailBox function to reply directly to the notification mail and register the comment, or to register the issue by mail to a specific project.
+- To use this function, you have to set up mailbox.
 
 ```
 # Mailbox Service
docs/yona-run-and-restart.md
--- docs/yona-run-and-restart.md
+++ docs/yona-run-and-restart.md
@@ -1,32 +1,26 @@
-Yona 실행 방법
+How to run Yona 
 ===
 
-압축이 풀린 디렉터리로 이동해서 yona를 실행합니다.
+Go to the unpacked directory and run yona.
 
 ```
 YONA_DATA=/yona-data;export YONA_DATA
 bin/yona
 ```
-**[주의!] 이때 bin 폴더 아래로 이동해서 직접 `yona`를 실행하지 않도록 유의해주세요**
+**[Caution!] Please move below bin folder and do not run `yona` directly**
 
-최초 화면 확인
+First Page
 ----
-이제 웹 브라우저로 해당 서버 9000 포트(로컬환경이면 http://127.0.0.1:9000)에 접속하면 환영 페이지를 보실 수 있습니다. 
+You can now access the welcome page by accessing the appropriate server 9000 port (http://127.0.0.1:9000 in local environment) with your web browser.
 
-어드민 설정을 마치고 Yona를 다시 시작합니다.
+Finish setting admin and restart Yona.
 
-**유의! Windows OS 사용자의 경우**
-[#windows의-경우](yona-run-options.md#windows의-경우)를 꼭 참고해주세요
+**Note! For Windows OS users**
+Please note [#windows-os](yona-run-options.md#windows-os)
 
 
-Tip - Windows에서 yona 백그라운드 처리
----
-https://github.com/yona-projects/yona/issues/64
+### To restart
 
-
-### 재시작 방법
-
-- Linux/Uinx 계열에서는 kill pid 명령으로 서비스를 중단합니다.
-- [간단한 재시작 쉘 예제](https://github.com/yona-projects/yona/blob/next/restart.sh)
-- 윈도우즈 사용자는 ctrl-c 로 실행중인 배치파일을 종료합니다.
-
+- In the Linux/Uinx, the kill pid command stops the service.
+- [Simple Restart Shell Example](https://github.com/yona-projects/yona/blob/next/restart.sh)
+- Windows users exit the batch file that is running with ctrl-c.
docs/yona-run-options.md
--- docs/yona-run-options.md
+++ docs/yona-run-options.md
@@ -1,20 +1,20 @@
-Yona 실행시 추가 가능한 옵션
+Additional options when running Yona
 ===
 
-Linux, OSX의 경우
+Linux, OSX
 ----
 
-### 메모리 할당 증가
+### Memory allocation
 
-`_JAVA_OPTIONS` 환경변수를 이용해 자바 환경 변수를 지정할 수도 있습니다. 시스템
-메모리가 4기가 이상이라면, 다음과 같은 옵션으로 사용가능한 메모리를 증가시켜서 실행하는걸 권장합니다.
+You can also use the `_JAVA_OPTIONS` environment variable to specify Java environment variables.
+If the memory is more than 4GB, it is recommended to increase the available memory with the following options.
 
     _JAVA_OPTIONS="-Xmx2048m -Xms2048m" bin/yona
 
-메모리 부족관련 에러가 발생할 경우 유용합니다.
+This is useful when an error related to memory shortage occurs.
 
 ```
-예) yona-run.sh 로 만들어 본 실행 스크립트 작성 예
+Ex) Example of writing an execution script created with yona-run.sh
 
 
 YONA_DATA=/yona-data;export YONA_DATA
@@ -22,14 +22,14 @@
 
 ```
 
-### 기본 포트 변경
+### Change default port
 
-기본적으로 9000번 포트를 사용하지만, 다른 포트를 사용하고 싶다면 http.port 자바
-환경변수를 수정합니다.
+By default it use port 9000. If you want to use a different port,
+modify the environment variables.
 
 
 ```
-예) yona-run.sh 로 만들어 본 실행 스크립트 작성 예. 80포트를 사용하고 메모리 2G로 동작
+Ex) Example of writing an execution script created with `yona-run.sh` It use 80 port and 2G memory.
 
 YONA_DATA=/yona-data;export YONA_DATA
 _JAVA_OPTIONS="-Dhttp.port=80 -Xmx2048m -Xms2048m" bin/yona
@@ -37,56 +37,56 @@
 ```
 
 
-Windows의 경우
+Windows os
 ---
 
-Yona를 시작할 때, YONA_DATA 환경변수를 지정해서 아래 명령순서로 실행해주세요!
-YONA_DATA의 지정 폴더는 내려받은 실행파일의 위치가 아니라 설정파일 및 첨부파일, 코드 저장소 등이 만들어질 위치를 지정합니다.
-관련해서는 Yona 설치 가이드의 [install-yona-server.md#본격적인-첫-화면-보기-위한-실행](install-yona-server.md) 부분을 참고해주세요
+When you start Yona, specify the environment variable YONA_DATA and execute it in the following order!
+The specified folder of YONA_DATA specifies the location where the configuration file, attachment, code repository, etc. will be created, not the location of the downloaded executable file.
+Please refer to [install-yona-server.md](install-yona-server.md) in the Yona Installation Guide.
 
 ```
-Windows OS Yona 권장 폴더
-C:\yona\yona-1.3.0 <- yona 폴더아래에 버전별로 압축해제 
-C:\yona-data <- conf 파일, logs, uploads, repo 폴더가 생성되고 유지되는 곳. YONA_DATA 환경 변수로 지정
+Windows OS Yona Recommended folder
+C:\yona\yona-1.3.0 <- unpack by version under the yona folder
+C:\yona-data <- conf where files, logs, uploads, and repo folders are created and maintained. Specify with the YONA_DATA environment variable
 ```
 
-아래와 같은 내용이 들어가 있는 run.bat을 따로 만드셔도 좋습니다!
+You can also create run.bat with the following contents!
 
 ```
 SET YONA_DATA=c:\yona-data
 bin\yona.bat
 ```
 
-### 메모리 할당 증가
+### Memory allocation
 
-`_JAVA_OPTIONS` 환경변수를 이용해 자바 환경 변수를 지정할 수도 있습니다. 시스템
-메모리가 4기가 이상이라면, 다음과 같은 옵션으로 실행하는 걸 권장합니다.
+You can also specify Java environment variables using the `SET JAVA_OPTS` environment variable setting. system
+If you have more than 4 gigabytes of memory, we recommend running with the following options:
 
 ```
-예) yona-run.bat 파일로 만들어 본 실행 스크립트 작성 예. 메모리 2G 할당
+Ex) Example of writing an execution script created with `yona-run.sh` It use 2G memory.
     SET YONA_DATA=c:\yona-data
     SET JAVA_OPTS=-Xmx2048m -Xms2048m
     bin\yona.bat
 ```
 
-기본적으로 9000번 포트를 사용하지만, 다른 포트를 사용하고 싶다면 http.port 자바
-환경변수를 수정합니다.
+By default it use port 9000. If you want to use a different port,
+modify the environment variables.
 
 ```
-예) yona-run.bat 파일로 만들어 본 실행 스크립트 작성 예. 80포트를 사용하고 메모리 2G로 동작
+Ex) Example of writing an execution script created with `yona-run.sh` It use 80 port and 2G memory.
 
 SET YONA_DATA=c:\yona-data
 SET JAVA_OPTS=-Dhttp.port=80 -Xmx2048m -Xms2048m
 bin\yona.bat
 ```
 
-업그레이드를 하는 경우 다음과 같이 데이터베이스 스키마 마이그레이션이
-필요하다는 경고 메시지와 함께 실행되지 않는 상황을 겪을 수 있습니다.
+If you are upgrading, migrate the database schema as follows:
+You may experience a situation that does not work with a warning message that you need it.
 
     [warn] play - Your production database [default] needs evolutions!
 
-그런 경우에는 자동으로 마이그레이션이 되도록 다음과 같이
-applyEvolutions.default 자바 프로퍼티를 true로 설정한 부분을 추가 합니다.
+In such a case, the migration should be done as follows
+ApplyEvolutions.default Adds a section with the Java property set to true.
 
 ```
 SET YONA_DATA=c:\yona-data
@@ -94,7 +94,7 @@
 bin\yona.bat
 ```
 
-#### 옵션에 대한 더 자세한 설명
+#### A more detailed description of the options
 
-[http://www.playframework.com/documentation/2.3.6/Production](http://www.playframework.com/documentation/2.3.6/Production) 부분을 확인해 주세요.
+[http://www.playframework.com/documentation/2.3.6/Production](http://www.playframework.com/documentation/2.3.6/Production) 
 
docs/yona-social-login-settings.md
--- docs/yona-social-login-settings.md
+++ docs/yona-social-login-settings.md
@@ -1,11 +1,10 @@
-소셜 로그인 설정
+Set up social sign-in
 ----
-- Yona는 v1.3 기준으로 Github과 Gmail OAuth 로그인을 지원합니다.
-- 해당 설정은 conf 디렉터리의 social-login.conf 파일에서 설정합니다.
-- 만약 소셜로그인 설정을 제거하거나 제한하고 싶다면 conf 폴더의 application.social.login.support 항목을 수정하세요
-- 공개망(Public IP Network)에서 Yona 서버를 운영한다면 자체 가입 및 로그인은 제한하는 것을 권장합니다.
-- 소셜 로그인용 최초 로그인시에 만약 기존 가입된 계정의 이메일 유저가 아니라면 자동가입이 일어난다면 메일을 발송합니다. 
-- application.conf 끝 부분의 메일 play-easymail 설정을 해 놓으면 이때 새로 가입/로그인된 유저에게 안내 메일이 발송됩니다.
+- These settings are set in the social-login.conf file in the conf directory.
+- If you want to remove or limit your social login settings, edit the application.social.login.support entry in the conf folder
+- If you are running Yona server on public IP network, it is recommended to limit your own subscription and login.
+- If you are not an e-mail user of an existing subscription account at the time of first sign-in for social login, you will receive an e-mail if automatic subscription occurs.
+- At the end of application.conf If you set up mail play-easymail, you will receive a notification mail to newly registered users.
 
 ```
 play-easymail {
docs/yona-upgrade.md
--- docs/yona-upgrade.md
+++ docs/yona-upgrade.md
@@ -1,27 +1,6 @@
-#### 업그레이드
+#### How to upgrade
 
-v1.3 이상
-----
-- 기존 운영중인 Yona를 중단합니다.
-- 새로 내려받은 Yona 파일의 압축을 해제합니다.
-- 실행시 사용했던 YONA_DATA 환경변수를 지정합니다.
-- bin/yona 를 실행합니다.
-
-참고: [Yona 실행 및 재시작 방법](yona-run-and-restart)
-
-
-v1.3 이전 버전
-----
-설치할 때와 똑같이, 최신 버전을 내려받아 Yona가 설치된 디렉터리에 압축파일을
-풉니다.
-
-**주의사항! `repo`와 `uploads` 디렉터리를 삭제하거나
-덮어쓰지 않도록 주의하세요!**
-
-
-Yobi에서 Yona로 업그레이드 하려는 경우
----
-1. 위의 설치방법을 참고해서 Yona를 설치 합니다.
-2. [Yobi 에서 Yona로 Migration 하는 방법](https://repo.yona.io/yona-projects/yona/post/1)을 참고해서 마이그레이션을 진행합니다.
-
-
+- Stop Yona.
+- Extract the newly downloaded Yona file.
+- Specifies the YONA_DATA environment variable.
+- Run `bin/yona`
(No newline at end of file)
Add a comment
List