xref: /trunk/main/wizards/source/depot/Lang_ko.xba (revision cdf0e10c)
1*cdf0e10cSrcweir<?xml version="1.0" encoding="UTF-8"?>
2*cdf0e10cSrcweir<!DOCTYPE script:module PUBLIC "-//OpenOffice.org//DTD OfficeDocument 1.0//EN" "module.dtd">
3*cdf0e10cSrcweir<script:module xmlns:script="http://openoffice.org/2000/script" script:name="Lang_ko" script:language="StarBasic">Option Explicit
4*cdf0e10cSrcweir
5*cdf0e10cSrcweirSub LoadKoreanLanguage()
6*cdf0e10cSrcweir
7*cdf0e10cSrcweir	sProductname = GetProductname
8*cdf0e10cSrcweir	sOK = &quot;~확인&quot;
9*cdf0e10cSrcweir	sCancel = &quot;취소&quot;
10*cdf0e10cSrcweir	sColumnHeader = &quot;열 머리글&quot;
11*cdf0e10cSrcweir	sInsertStockName = &quot;주식 종목을 삽입해주십시오.&quot;
12*cdf0e10cSrcweir	sTitle = &quot;&lt;PRODUCTNAME&gt;: 주식 매수&quot;
13*cdf0e10cSrcweir	sTitle = ReplaceString(sTitle, sProductName, &quot;&lt;PRODUCTNAME&gt;&quot;)
14*cdf0e10cSrcweir	sMsgError = &quot;입력 오류&quot;
15*cdf0e10cSrcweir	sMsgNoName = sInsertStockname
16*cdf0e10cSrcweir	sMsgNoQuantity = &quot;0 이하의 매수를 입력해주십시오.&quot;
17*cdf0e10cSrcweir	sMsgNoDividend = &quot;한 주당 배당분 또는 총배당분을 입력해주십시오.&quot;
18*cdf0e10cSrcweir	sMsgNoExchangeRate = &quot;정확한 환율을 입력해주십시오 (구주를 신주로 소급 시).&quot;
19*cdf0e10cSrcweir	sMsgNoValidExchangeDate = &quot;유효한 배당 결제일을 입력해주십시오.&quot;
20*cdf0e10cSrcweir	sMsgWrongExchangeDate = &quot;배당 기준일이 경과하여 배당할 수 없습니다.&quot;
21*cdf0e10cSrcweir	sMsgSellTooMuch = &quot;이렇게 많은 주식을 팔 수 없습니다. 최대 매도수: &quot;
22*cdf0e10cSrcweir	sMsgConfirm = &quot;확인 필요&quot;
23*cdf0e10cSrcweir	sMsgFreeStock = &quot;공짜 주식을 입력하시겠습니까?&quot;
24*cdf0e10cSrcweir	sMsgTotalLoss = &quot;주가 폭락세를 입력하시겠습니까?&quot;
25*cdf0e10cSrcweir	sMsgAuthorization = &quot;안정성 조회&quot;
26*cdf0e10cSrcweir	sMsgDeleteAll = &quot;모든 주가 움직임을 삭제하고 계좌 현황을 원래대로 하시겠습니까?&quot;
27*cdf0e10cSrcweir	cSplit = &quot;주식 배당일 &quot;
28*cdf0e10cSrcweir	sHistory = &quot;내역&quot;
29*cdf0e10cSrcweir	TransactTitle(1) = 	 &quot;주식 관리: 주식 매도&quot;
30*cdf0e10cSrcweir	TransactTitle(2) = &quot;주식 관리: 주식 매수&quot;
31*cdf0e10cSrcweir	StockRatesTitle(1) = &quot;주식 관리: 배당금 지불&quot;
32*cdf0e10cSrcweir	StockRatesTitle(2) = &quot;주식 관리: 주식 배분&quot;
33*cdf0e10cSrcweir	StockRatesTitle(3) = sHistory
34*cdf0e10cSrcweir	sDepotCurrency = &quot;주식 계좌 통화&quot;
35*cdf0e10cSrcweir	sStockName = &quot;주식 종목명&quot;
36*cdf0e10cSrcweir	TransactMode = LIFO	&apos; Possible values: &quot;FIFO&quot; and &quot;LIFO&quot;
37*cdf0e10cSrcweir	DateCellStyle = &quot;결과, 날짜&quot;
38*cdf0e10cSrcweir	CurrCellStyle = &quot;1&quot;
39*cdf0e10cSrcweir	sStartDate = &quot;매매일:&quot;
40*cdf0e10cSrcweir	sEndDate = &quot;만기일:&quot;
41*cdf0e10cSrcweir	sStartUpWelcome = &quot;이 템플릿을 사용하여 주식 투자 관리를 효율적으로 할 수 있습니다.&quot;
42*cdf0e10cSrcweir	sStartUpChooseMarket = &quot;인터넷 업데이트를 위해 우선 관련 통화와 증권 장소를 선택하십시오.&quot;
43*cdf0e10cSrcweir	sStartUpHint = &quot;&lt;내역&gt; 기능은 미국 시장용으로만 사용할 수 있습니다.&quot;
44*cdf0e10cSrcweir	sStartupHint = ReplaceString(sStartUpHint, sHistory, &quot;&lt;History&gt;&quot;)
45*cdf0e10cSrcweir	sNoInternetUpdate = &quot;인터넷 업데이트 없음&quot;
46*cdf0e10cSrcweir	sMarketPlace = &quot;증권 장소:&quot;
47*cdf0e10cSrcweir	sNoInternetDataAvailable = &quot;인터넷 시세는 받을 수 없었습니다.&quot;
48*cdf0e10cSrcweir	sCheckInternetSettings = &quot;원인: &lt;BR&gt; 인터넷 설정을 점검해야만 합니다.&lt;BR&gt; 옳지 않은 암호&lt;예를 들어 잘못된 문자 또는 종목 코드&gt;를 입력했습니다.&quot;
49*cdf0e10cSrcweir	sCheckInternetSettings = ReplaceString(sCheckInternetSettings, chr(13), &quot;&lt;BR&gt;&quot;)
50*cdf0e10cSrcweir
51*cdf0e10cSrcweir	sMsgEndDatebeforeNow = &quot;만기일은 오늘 날짜 전에 기입되어야 합니다.&quot;
52*cdf0e10cSrcweir	sMsgStartDatebeforeEndDate = &quot;매매일은 만기일 전에 기입되어야 합니다.&quot;
53*cdf0e10cSrcweir
54*cdf0e10cSrcweir	sMarket(0,0) = &quot;미국 달러&quot;
55*cdf0e10cSrcweir	sMarket(0,1) = &quot;$&quot;
56*cdf0e10cSrcweir	sMarket(0,2) = &quot;뉴욕&quot;
57*cdf0e10cSrcweir	sMarket(0,3) = &quot;http://finance.yahoo.com/d/quotes.csv?s=&lt;StockID&gt;&amp;f=sl1d1t1c1ohgv&amp;e=.csv&quot;
58*cdf0e10cSrcweir	sMarket(0,4) = &quot;http://ichart.finance.yahoo.com/table.csv?&quot; &amp;_
59*cdf0e10cSrcweir				   &quot;s=&lt;StockID&gt;&amp;d=&lt;EndMonth&gt;&amp;e=&lt;EndDay&gt;&amp;f=&lt;Endyear&gt;&amp;g=d&amp;&quot; &amp;_
60*cdf0e10cSrcweir				   &quot;a=&lt;StartMonth&gt;&amp;b=&lt;StartDay&gt;&amp;c=&lt;Startyear&gt;&amp;ignore=.csv&quot;
61*cdf0e10cSrcweir	sMarket(0,5) = &quot;기호&quot;
62*cdf0e10cSrcweir	sMarket(0,6) = &quot;en&quot;
63*cdf0e10cSrcweir	sMarket(0,7) = &quot;US&quot;
64*cdf0e10cSrcweir	sMarket(0,8) = &quot;409&quot;
65*cdf0e10cSrcweir	sMarket(0,9) = &quot;44&quot;
66*cdf0e10cSrcweir	sMarket(0,10) = &quot;1&quot;
67*cdf0e10cSrcweir
68*cdf0e10cSrcweir	sMarket(1,0) = &quot;유로&quot;
69*cdf0e10cSrcweir	sMarket(1,1) = chr(8364)
70*cdf0e10cSrcweir	sMarket(1,2) = &quot;프랑크푸르트&quot;
71*cdf0e10cSrcweir	sMarket(1,3) = &quot;http://de.finance.yahoo.com/d/quotes.csv?s=&lt;StockID&gt;.F&amp;f=sl1t1c1ghpv&amp;e=.csv&quot;
72*cdf0e10cSrcweir	sMarket(1,5) = &quot;WKN&quot;
73*cdf0e10cSrcweir	sMarket(1,6) = &quot;de;nl;pt;el&quot;
74*cdf0e10cSrcweir	sMarket(1,7) = &quot;DE;NL;PT;GR&quot;
75*cdf0e10cSrcweir	sMarket(1,8) = &quot;407;413;816;408&quot;
76*cdf0e10cSrcweir	sMarket(1,9) = &quot;59/9&quot;
77*cdf0e10cSrcweir	sMarket(1,10) = &quot;1&quot;
78*cdf0e10cSrcweir
79*cdf0e10cSrcweir	sMarket(2,0) = &quot;영국 파운드&quot;
80*cdf0e10cSrcweir	sMarket(2,1) = &quot;£&quot;
81*cdf0e10cSrcweir	sMarket(2,2) = &quot;런던&quot;
82*cdf0e10cSrcweir	sMarket(2,3) = &quot;http://uk.finance.yahoo.com/d/quotes.csv?s=&lt;StockID&gt;.L&amp;m=*&amp;f=sl1t1c1ghov&amp;e=.csv&quot;
83*cdf0e10cSrcweir	sMarket(2,5) = &quot;기호&quot;
84*cdf0e10cSrcweir	sMarket(2,6) = &quot;en&quot;
85*cdf0e10cSrcweir	sMarket(2,7) = &quot;GB&quot;
86*cdf0e10cSrcweir	sMarket(2,8) = &quot;809&quot;
87*cdf0e10cSrcweir	sMarket(2,9) = &quot;44&quot;
88*cdf0e10cSrcweir	sMarket(2,10) = &quot;1&quot;
89*cdf0e10cSrcweir
90*cdf0e10cSrcweir	sMarket(3,0) = &quot;엔화&quot;
91*cdf0e10cSrcweir	sMarket(3,1) = &quot;¥&quot;
92*cdf0e10cSrcweir	sMarket(3,2) = &quot;도쿄&quot;
93*cdf0e10cSrcweir	sMarket(3,3) = &quot;&quot;
94*cdf0e10cSrcweir	sMarket(3,5) = &quot;코드&quot;
95*cdf0e10cSrcweir	sMarket(3,6) = &quot;ja&quot;
96*cdf0e10cSrcweir	sMarket(3,7) = &quot;JP&quot;
97*cdf0e10cSrcweir	sMarket(3,8) = &quot;411&quot;
98*cdf0e10cSrcweir	sMarket(3,9) = &quot;&quot;
99*cdf0e10cSrcweir	sMarket(3,10) = &quot;&quot;
100*cdf0e10cSrcweir
101*cdf0e10cSrcweir	sMarket(4,0) = &quot;홍콩 달러&quot;
102*cdf0e10cSrcweir	sMarket(4,1) = &quot;HK$&quot;
103*cdf0e10cSrcweir	sMarket(4,2) = &quot;홍콩&quot;
104*cdf0e10cSrcweir	sMarket(4,3) = &quot;http://hk.finance.yahoo.com/d/quotes.csv?s=&lt;StockID&gt;.HK&amp;f=sl1d1t1c1ohgv&amp;e=.csv&quot;
105*cdf0e10cSrcweir	sMarket(4,5) = &quot;번호&quot;
106*cdf0e10cSrcweir	sMarket(4,6) = &quot;zh&quot;
107*cdf0e10cSrcweir	sMarket(4,7) = &quot;HK&quot;
108*cdf0e10cSrcweir	sMarket(4,8) = &quot;C04&quot;
109*cdf0e10cSrcweir	sMarket(4,9) = &quot;44&quot;
110*cdf0e10cSrcweir	sMarket(4,10) = &quot;1&quot;
111*cdf0e10cSrcweir
112*cdf0e10cSrcweir	sMarket(5,0) = &quot;호주 달러&quot;
113*cdf0e10cSrcweir	sMarket(5,1) = &quot;$&quot;
114*cdf0e10cSrcweir	sMarket(5,2) = &quot;시드니&quot;
115*cdf0e10cSrcweir	sMarket(5,3) = &quot;http://au.finance.yahoo.com/d/quotes.csv?s=&lt;StockID&gt;&amp;f=sl1d1t1c1ohgv&amp;e=.csv&quot;
116*cdf0e10cSrcweir	sMarket(5,5) = &quot;기호&quot;
117*cdf0e10cSrcweir	sMarket(5,6) = &quot;en&quot;
118*cdf0e10cSrcweir	sMarket(5,7) = &quot;AU&quot;
119*cdf0e10cSrcweir	sMarket(5,8) = &quot;C09&quot;
120*cdf0e10cSrcweir	sMarket(5,9) = &quot;44&quot;
121*cdf0e10cSrcweir	sMarket(5,10) = &quot;1&quot;
122*cdf0e10cSrcweir
123*cdf0e10cSrcweir&apos; ****************************End of the default subset*********************************
124*cdf0e10cSrcweir	CompleteMarketList()
125*cdf0e10cSrcweir
126*cdf0e10cSrcweir	LocalizedCurrencies()
127*cdf0e10cSrcweir
128*cdf0e10cSrcweir	With TransactModel
129*cdf0e10cSrcweir		.lblStockNames.Label = sStockname
130*cdf0e10cSrcweir		.lblQuantity.Label = &quot;수량&quot;
131*cdf0e10cSrcweir		.lblRate.Label = &quot;시세&quot;
132*cdf0e10cSrcweir		.lblDate.Label = &quot;배당 결산일&quot;
133*cdf0e10cSrcweir		.hlnCommission.Label = &quot;기타 지출&quot;
134*cdf0e10cSrcweir		.lblCommission.Label = &quot;수수료&quot;
135*cdf0e10cSrcweir		.lblMinimum.Label = &quot;최저 수수료&quot;
136*cdf0e10cSrcweir		.lblFix.Label = &quot;약정 금액/기타 경비&quot;
137*cdf0e10cSrcweir		.cmdGoOn.Label = sOK
138*cdf0e10cSrcweir		.cmdCancel.Label = sCancel
139*cdf0e10cSrcweir	End With
140*cdf0e10cSrcweir
141*cdf0e10cSrcweir	With StockRatesModel
142*cdf0e10cSrcweir		.optPerShare.Label = &quot;배당분/주&quot;
143*cdf0e10cSrcweir		.optTotal.Label = &quot;배당분 합계&quot;
144*cdf0e10cSrcweir		.lblDividend.Label = &quot;금액&quot;
145*cdf0e10cSrcweir		.lblExchangeRate.Label = &quot;환율(구주-&gt;신주)&quot;
146*cdf0e10cSrcweir		.lblColon.Label = &quot;:&quot;
147*cdf0e10cSrcweir		.lblDate.Label = &quot;환율일자&quot;
148*cdf0e10cSrcweir		.lblStockNames.Label = sStockname
149*cdf0e10cSrcweir		.lblStartDate.Label = sStartDate
150*cdf0e10cSrcweir		.lblEndDate.Label = sEndDate
151*cdf0e10cSrcweir		.optDaily.Label = &quot;~매일&quot;
152*cdf0e10cSrcweir		.optWeekly.Label = &quot;~매주&quot;
153*cdf0e10cSrcweir		.hlnInterval.Label = &quot;기간&quot;
154*cdf0e10cSrcweir		.cmdGoOn.Label = sOk
155*cdf0e10cSrcweir		.cmdCancel.Label = sCancel
156*cdf0e10cSrcweir	End With
157*cdf0e10cSrcweirEnd Sub
158*cdf0e10cSrcweir</script:module>