summaryrefslogtreecommitdiffstats
path: root/options/locale/locale_ko-KR.ini
diff options
context:
space:
mode:
authorGiteaBot <teabot@gitea.io>2019-12-16 15:57:59 +0000
committerGiteaBot <teabot@gitea.io>2019-12-16 15:57:59 +0000
commit4714fa6642eb50227a20314532ee4a8741b4c32b (patch)
treea86ba2de0ab17de4a1cb7ae8f8057322a9519e30 /options/locale/locale_ko-KR.ini
parent121977c36fc2af5a2b7b814b164b1357ea623c73 (diff)
downloadgitea-4714fa6642eb50227a20314532ee4a8741b4c32b.tar.gz
gitea-4714fa6642eb50227a20314532ee4a8741b4c32b.zip
[skip ci] Updated translations via Crowdin
Diffstat (limited to 'options/locale/locale_ko-KR.ini')
-rw-r--r--options/locale/locale_ko-KR.ini1
1 files changed, 0 insertions, 1 deletions
diff --git a/options/locale/locale_ko-KR.ini b/options/locale/locale_ko-KR.ini
index 8b5aaed578..c602990e4e 100644
--- a/options/locale/locale_ko-KR.ini
+++ b/options/locale/locale_ko-KR.ini
@@ -407,7 +407,6 @@ pulls.new=새 풀 리퀘스트
pulls.filter_branch=Filter Branch
pulls.no_results=결과 없음
pulls.create=풀 리퀘스트 생성
-pulls.title_desc=<code>%[2]s</code> 에서 <code>%[3]s</code> 로 %[1]d commits 를 머지하려 합니다
pulls.merged_title_desc=<code>%[2]s</code> 에서 <code>%[3]s</code> 로 %[1]d commits 를 머지했습니다 %[4]s
pulls.tab_conversation=대화
pulls.tab_commits=커밋
'automated/noid/stable25-update-code-signing-crl'>automated/noid/stable25-update-code-signing-crl Nextcloud server, a safe home for all your data: https://github.com/nextcloud/serverwww-data
summaryrefslogtreecommitdiffstats
path: root/build/buildjsdocs.sh
blob: dd2af2102778c1ed959edbc3f2c21b92c0937140 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
#!/usr/bin/env bash
#
# ownCloud
#
# Run JS tests
#
# @author Vincent Petry
# @copyright 2014 Vincent Petry <pvince81@owncloud.com>
#
NPM="$(which npm 2>/dev/null)"
OUTPUT_DIR="jsdocs"

JS_FILES="../core/js/*.js ../core/js/**/*.js ../apps/*/js/*.js"

if test -z "$NPM"
then
	echo 'Node JS >= 0.8 is required to build the documentation' >&2
	exit 1
fi

# update/install test packages
$NPM install --prefix . --link jsdoc || exit 3

JSDOC_BIN="$(which jsdoc 2>/dev/null)"

# If not installed globally, try local version
if test -z "$JSDOC_BIN"
then
	JSDOC_BIN="./node_modules/jsdoc/jsdoc.js"
fi

if test -z "$JSDOC_BIN"
then
	echo 'jsdoc executable not found' >&2
	exit 2
fi

mkdir -p "$OUTPUT_DIR"

NODE_PATH="./node_modules" $JSDOC_BIN -d "$OUTPUT_DIR" $JS_FILES