commit 7bc9767bf459916cc3592e69891bcd00795fe95c Author: sp1000je Date: Mon Feb 23 10:01:00 2026 +0900 최초등록 diff --git a/.well-known/pki-validation/gsdv.txt b/.well-known/pki-validation/gsdv.txt new file mode 100644 index 0000000..b3e1042 --- /dev/null +++ b/.well-known/pki-validation/gsdv.txt @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/1.asp b/1.asp new file mode 100644 index 0000000..d78a2eb --- /dev/null +++ b/1.asp @@ -0,0 +1,5 @@ +<%@ codepage = 65001%> +<% session.codepage = 65001 %> +<%Response.CharSet = "UTF-8"%> + +다운!! \ No newline at end of file diff --git a/2.asp b/2.asp new file mode 100644 index 0000000..b11976f --- /dev/null +++ b/2.asp @@ -0,0 +1,60 @@ +<%@ codepage = 65001%> +<% session.codepage = 65001 %> +<%Response.CharSet = "UTF-8"%> +<% + +fileName = "test.zip" +filepath = "D:\www\company\aspmssqlwa.nninc.co.kr\data\board\board_2\"&fileName + +' Dim objFS, objF +' Dim objStream, strFile +' Response.Clear +' Response.ContentType="application/octect-stream name= " & fileName +' +' Response.AddHeader "Content-Disposition", "attachment;filename="&fileName &"" '파일명 +' Response.AddHeader "Content-Transfer-Encoding", "binary" +' Response.AddHeader "Pragma", "no-cache" +' Response.AddHeader "Expires", "0" +' +' ' 스트림을 선언 +' Set objStream = Server.CreateObject("ADODB.Stream") +' objStream.Open +' objStream.Type = 1 +' objStream.LoadFromFile filepath '다운받을경로(파일명포함) +' strFile = objStream.Read +' Response.BinaryWrite strFile +' Set objStream = Nothing + + + + + 'Response.Buffer = TRUE + Response.Clear + Response.Expires = 0 + Response.ContentType = "application/smnet" + Const adTypeBinary = 1 + Const adTypeText = 2 + Response.AddHeader "Content-Disposition","attachment;filename=" & fileName + Set objStream = Server.CreateObject("ADODB.Stream") + objStream.Type = adTypeBinary + objStream.Open + objStream.LoadFromFile(filepath) + '추가시작 + Response.Buffer=false + Dim buff + do + buff=objStream.Read(102400) + Response.BinaryWrite buff + On Error Resume Next + loop while(len(buff)>0) + + + ' Response.BinaryWrite objStream.Read(objStream.Size) + set buff = nothing + objStream.Close + Set objStream = Nothing + Response.Flush + + + +%> \ No newline at end of file diff --git a/500-100.asp b/500-100.asp new file mode 100644 index 0000000..56d3ba2 --- /dev/null +++ b/500-100.asp @@ -0,0 +1,126 @@ +<%@ language="VBScript" %> +<% + + Option Explicit + + Const lngMaxFormBytes = 200 + + Dim objASPError, blnErrorWritten, strServername, strServerIP, strRemoteIP + Dim strMethod, lngPos, datNow, strQueryString, strURL + + If Response.Buffer Then + Response.Clear + Response.Status = "500 Internal Server Error" + Response.ContentType = "text/html" + Response.CharSet = "UTF-8" + Response.Expires = 0 + End If + + Set objASPError = Server.GetLastError +%> + +이 페이지를 표시할 수 없습니다. + + +
+ +

이 페이지를 표시할 수 없습니다.

+연결하려는 페이지에 문제가 있어 표시할 수 없습니다. +
+

다음을 시도하십시오.

+
    +
  • 웹 사이트 관리자에게 오류가 발생한 URL 주소를 알려주십시오.
  • +
+

HTTP 500.100 - 내부 서버 오류: ASP 오류입니다.
IIS(인터넷 정보 서비스)

+
+

기술 정보(지원 인력용)

+
    +
  • 오류 유형:
    <% + Dim bakCodepage + on error resume next + bakCodepage = Session.Codepage + Session.Codepage = 1252 + on error goto 0 + Response.Write Server.HTMLEncode(objASPError.Category) + If objASPError.ASPCode > "" Then Response.Write Server.HTMLEncode(", " & objASPError.ASPCode) + Response.Write Server.HTMLEncode(" (0x" & Hex(objASPError.Number) & ")" ) & "
    " + If objASPError.ASPDescription > "" Then + Response.Write Server.HTMLEncode(objASPError.ASPDescription) & "
    " + elseIf (objASPError.Description > "") Then + Response.Write Server.HTMLEncode(objASPError.Description) & "
    " + end if + blnErrorWritten = False + ' Only show the Source if it is available and the request is from the same machine as IIS + If objASPError.Source > "" Then + strServername = LCase(Request.ServerVariables("SERVER_NAME")) + strServerIP = Request.ServerVariables("LOCAL_ADDR") + strRemoteIP = Request.ServerVariables("REMOTE_ADDR") + If (strServerIP = strRemoteIP) And objASPError.File <> "?" Then + Response.Write Server.HTMLEncode(objASPError.File) + If objASPError.Line > 0 Then Response.Write ", line " & objASPError.Line + If objASPError.Column > 0 Then Response.Write ", column " & objASPError.Column + Response.Write "
    " + Response.Write "" + Response.Write Server.HTMLEncode(objASPError.Source) & "
    " + If objASPError.Column > 0 Then Response.Write String((objASPError.Column - 1), "-") & "^
    " + Response.Write "
    " + blnErrorWritten = True + End If + End If + If Not blnErrorWritten And objASPError.File <> "?" Then + Response.Write "" & Server.HTMLEncode( objASPError.File) + If objASPError.Line > 0 Then Response.Write Server.HTMLEncode(", line " & objASPError.Line) + If objASPError.Column > 0 Then Response.Write ", column " & objASPError.Column + Response.Write "
    " + End If +%> +
  • +
  • 브라우저 종류:
    <%= Server.HTMLEncode(Request.ServerVariables("HTTP_USER_AGENT")) %>

  • +
  • 페이지:
    <% + strMethod = Request.ServerVariables("REQUEST_METHOD") + Response.Write strMethod & " " + If strMethod = "POST" Then + Response.Write Request.TotalBytes & " bytes to " + End If + Response.Write Request.ServerVariables("SCRIPT_NAME") + Response.Write "
  • " + If strMethod = "POST" Then + Response.Write "

  • POST Data:
    " + ' On Error in case Request.BinaryRead was executed in the page that triggered the error. + On Error Resume Next + If Request.TotalBytes > lngMaxFormBytes Then + Response.Write Server.HTMLEncode(Left(Request.Form, lngMaxFormBytes)) & " . . ." + Else + Response.Write Server.HTMLEncode(Request.Form) + End If + On Error Goto 0 + Response.Write "
  • " + End If +%>

    +
  • 시간:
    <% + datNow = Now() + Response.Write Server.HTMLEncode(FormatDateTime(datNow, 1) & ", " & FormatDateTime(datNow, 3)) + on error resume next + Session.Codepage = bakCodepage + on error goto 0 +%>

  • +
  • 추가 정보:
    <% + strQueryString = "prd=iis&sbp=&pver=5.0&ID=500;100&cat=" & Server.URLEncode(objASPError.Category) & "&os=&over=&hrd=&Opt1=" & Server.URLEncode(objASPError.ASPCode) & "&Opt2=" & Server.URLEncode(objASPError.Number) & "&Opt3=" & Server.URLEncode(objASPError.Description) + strURL = "http://www.microsoft.com/ContentRedirect.asp?" & strQueryString +%> +
      +
    • 이 오류에 대한 기술 자료 문서 링크를 보려면 Microsoft 고객기술지원부를 클릭하십시오.
    • +
    • Microsoft 고객기술지원부로 이동하여 HTTP500이라는 단어로 제목을 검색하십시오.
    • +
    • IIS 관리자(inetmgr)에서 액세스할 수 있는 IIS 도움말을 열어 웹 사이트 관리사용자 지정 오류 메시지 항목을 검색하십시오.
    • +
    • IIS SDK(Software Development Kit)나 MSDN 온라인 라이브러리에서 ASP 스크립트 디버깅, 구성 요소 디버깅ISAPI 확장 및 필터 디버깅 항목을 검색하십시오.
    • +
    +
  • +
+ +
diff --git a/common/calendar/date.asp b/common/calendar/date.asp new file mode 100644 index 0000000..b469652 --- /dev/null +++ b/common/calendar/date.asp @@ -0,0 +1,171 @@ + + +<% +tmonth = request("tmonth") +tyear = request("tyear") + +if tmonth = "" then + tmonth = cstr(datepart( "M" , now())) +end if +if tyear = "" then + tyear = cstr(datepart( "YYYY" , now())) +end if + +prevm = cint(tmonth) - 1 +nextm = cint(tmonth) + 1 +prevy = cint( tyear ) +nexty = cint( tyear ) + +if cint( tmonth ) = 12 then + nextm = 1 + nexty = nexty + 1 + tempmonth = 1 + tempyear = cint( tyear ) + 1 +elseif cint( tmonth ) = 1 then + prevm = 12 + prevy = prevy - 1 + tempmonth = cint( tmonth ) + 1 + tempyear = cint( tyear ) +else + tempmonth = cint( tmonth ) + 1 + tempyear = cint( tyear ) +end if + +tempdate = tempyear &"-"& tempmonth &"-01" +tdate = cdate( tempdate ) +endday = day( tdate - 1 ) +%> + + + + + + + + + + + + + + + + + + +<% +d = 0 +syoil = datepart("W" ,cdate(tyear &"-"& tmonth &"-01")) +for i = 1 to 42 step 1 + + if i mod 7 = 1 then + response.write "" + end if + + if syoil <= i then + d = d + 1 + end if + + if d > 0 and d <= endday then + + if cint(d) = day( now() ) and cint(tyear) = year( now() ) and cint(tmonth) = month( now()) then + dtext = ""& d &"" + overout = "bgcolor=#60D4D5" + else + dtext = d + overout = "onmouseover='over2(this)' onmouseout='out(this)'" + end if + + if i mod 7 = 1 then + response.write "" + elseif i mod 7 = 0 then + response.write "" + else + response.write "" + end if + else + response.write "" + end if + + if i mod 7 = 0 then + response.write "" + end if + +next +%> +
+ + + + + +
<%=tyear%><%=tmonth%>
+
"& toDay &""& toDay &""& toDay &" 
+ + + + +<% +Dbcon.close +Set Dbcon = Nothing + +Function toDay() + table = "bbs_15" '̺ + a_num = "19113837" + DayColor = "#FF9900" 'ϵ ¥ + + If Len(tmonth) = 1 Then + tmon = "0" & tmonth + Else + tmon = tmonth + End If + + If Len(d) = 1 Then + tday = "0" & dtext + Else + tday = d + End If + + toDayInfo = tyear & "-" & tmon & "-" & d + sql = "select b_num, b_subject from "&table&" where b_regdate = '"&toDayInfo&"'" + 'response.write sql + Set rs = Dbcon.Execute(sql) + + If rs.bof Or rs.eof Then + toDay = dtext + Else + dtext = ""& dtext & "" + Do Until rs.eof + linkUrl = "" + + subject = subject &linkUrl & StringToHTML(rs("b_subject"), 20, fale) & "
" + + rs.movenext + + Loop + toDay = "

" 'onMouseOut="parent.nd();" + toDay = toDay & dtext & "

" + + + End If + + Set rs = nothing + +End function +%> diff --git a/common/calendar/date_new.asp b/common/calendar/date_new.asp new file mode 100644 index 0000000..e166027 --- /dev/null +++ b/common/calendar/date_new.asp @@ -0,0 +1,184 @@ + + +<% +tmonth = request("tmonth") +tyear = request("tyear") + +if tmonth = "" then + tmonth = cstr(datepart( "M" , now())) +end if +if tyear = "" then + tyear = cstr(datepart( "YYYY" , now())) +end if + +prevm = cint(tmonth) - 1 +nextm = cint(tmonth) + 1 +prevy = cint( tyear ) +nexty = cint( tyear ) + +if cint( tmonth ) = 12 then + nextm = 1 + nexty = nexty + 1 + tempmonth = 1 + tempyear = cint( tyear ) + 1 +elseif cint( tmonth ) = 1 then + prevm = 12 + prevy = prevy - 1 + tempmonth = cint( tmonth ) + 1 + tempyear = cint( tyear ) +else + tempmonth = cint( tmonth ) + 1 + tempyear = cint( tyear ) +end if + +tempdate = tempyear &"-"& tempmonth &"-01" +tdate = cdate( tempdate ) +endday = day( tdate - 1 ) +%> + + + + + + + + + + + + + + + + + + +
+ + + + + +
<%=tyear%> <%=tmonth%>
+
+ + +<% +d = 0 +syoil = datepart("W" ,cdate(tyear &"-"& tmonth &"-01")) +for i = 1 to 42 step 1 + + if i mod 7 = 1 then + response.write "" + end if + + if syoil <= i then + d = d + 1 + end if + + if d > 0 and d <= endday then + + if cint(d) = day( now() ) and cint(tyear) = year( now() ) and cint(tmonth) = month( now()) then + dtext = ""& d &"" + overout = "bgcolor=D56090" + else + dtext = d + overout = "onmouseover='over2(this)' onmouseout='out(this)'" + end if + + if i mod 7 = 1 then + response.write "" + elseif i mod 7 = 0 then + response.write "" + else + response.write "" + end if + else + response.write "" + end if + + if i mod 7 = 0 then + response.write "" + end if + +next +%> +
"& toDay &""& toDay &""& toDay &" 
+ + + + +<% +Dbcon.close +Set Dbcon = Nothing + +Function toDay() + table = "bbs_12" '̺ + DayColor = "#FF9900" 'ϵ ¥ + + If Len(tmonth) = 1 Then + tmon = "0" & tmonth + Else + tmon = tmonth + End If + + If Len(d) = 1 Then + tday = "0" & d + Else + tday = d + End If + + toDayInfo = tyear & "-" & tmon & "-" & tday + 'response.write toDayInfo + 'response.end + sql = "select b_num, b_subject from "&table&" where b_regdate = '"&toDayInfo&"'" + 'response.write sql + Set rs = Dbcon.Execute(sql) + + If rs.bof Or rs.eof Then + toDay = dtext + Else + dtext = ""& dtext & "" + Do Until rs.eof + linkUrl = "" + + subject = subject &linkUrl & StringToHTML(rs("b_subject"), 20, false) & "
" + rs.movenext + + Loop + toDay = "

" 'onMouseOut="parent.nd();" + toDay = toDay & dtext & "

" + + + End If + + Set rs = nothing + +End function +%> diff --git a/common/calendar/ifrmcalendar.htm b/common/calendar/ifrmcalendar.htm new file mode 100644 index 0000000..c5c53c5 --- /dev/null +++ b/common/calendar/ifrmcalendar.htm @@ -0,0 +1,250 @@ + + + + + + + + +
+ + + + +
+ + + + +
+
+
+
+
+ + diff --git a/common/calendar/ifrmcalendar2.htm b/common/calendar/ifrmcalendar2.htm new file mode 100644 index 0000000..af71c10 --- /dev/null +++ b/common/calendar/ifrmcalendar2.htm @@ -0,0 +1,225 @@ + + +Untitled + + + + + +
+ + + + + +
+
+
+ + diff --git a/common/calendar/image/content_week_month_move_ic_01.gif b/common/calendar/image/content_week_month_move_ic_01.gif new file mode 100644 index 0000000..a0a5245 Binary files /dev/null and b/common/calendar/image/content_week_month_move_ic_01.gif differ diff --git a/common/calendar/image/content_week_month_move_ic_02.gif b/common/calendar/image/content_week_month_move_ic_02.gif new file mode 100644 index 0000000..8d0bc7a Binary files /dev/null and b/common/calendar/image/content_week_month_move_ic_02.gif differ diff --git a/common/calendar/image/date_next_icon.gif b/common/calendar/image/date_next_icon.gif new file mode 100644 index 0000000..dd0d228 Binary files /dev/null and b/common/calendar/image/date_next_icon.gif differ diff --git a/common/calendar/image/date_next_icon2.gif b/common/calendar/image/date_next_icon2.gif new file mode 100644 index 0000000..205404d Binary files /dev/null and b/common/calendar/image/date_next_icon2.gif differ diff --git a/common/calendar/image/date_prev_icon.gif b/common/calendar/image/date_prev_icon.gif new file mode 100644 index 0000000..6bd179b Binary files /dev/null and b/common/calendar/image/date_prev_icon.gif differ diff --git a/common/calendar/image/date_prev_icon2.gif b/common/calendar/image/date_prev_icon2.gif new file mode 100644 index 0000000..84d5e84 Binary files /dev/null and b/common/calendar/image/date_prev_icon2.gif differ diff --git a/common/calendar/image/date_s_bt.gif b/common/calendar/image/date_s_bt.gif new file mode 100644 index 0000000..52db33e Binary files /dev/null and b/common/calendar/image/date_s_bt.gif differ diff --git a/common/calendar/image/month_top.gif b/common/calendar/image/month_top.gif new file mode 100644 index 0000000..22703fc Binary files /dev/null and b/common/calendar/image/month_top.gif differ diff --git a/common/calendar/layer.js b/common/calendar/layer.js new file mode 100644 index 0000000..5dc89d9 --- /dev/null +++ b/common/calendar/layer.js @@ -0,0 +1,64 @@ + +var x = 0; +var y = 0; +var snow = 0; +var sw = 0; +var cnt = 0; +var dir = 1; +var offsetx = 3; +var offsety = 3; +var width = 150; +var height = 50; +var doc = .bbb; + +over = overDiv.style; //â +bbb.onmousemove = mouseMove; + + +function drs(text, title,z,k) {dts(1,text,z,k); } + +function nd() { + if ( cnt >= 1 ) { sw = 0 }; + if ( sw == 0 ) { snow = 0; hideObject(over); } + else { cnt++; } +} + +function dts(d,text,z,k) { + //alert(z); + txt = "
"+text+"
" + layerWrite(txt); + dir = d; + x = z; + y = k; + disp(); +} + +function disp() { + if (snow == 0) { + if (dir == 2) { moveTo(over,x+offsetx-(width/2),y+offsety); } // Center + if (dir == 1) { moveTo(over,x+offsetx,y+offsety); } // Right + if (dir == 0) { moveTo(over,x-offsetx-width,y+offsety); } // Left + showObject(over); + snow = 1; + } +} + +function mouseMove(e) { + x=event.x + doc.body.scrollLeft+10 + y=event.y + doc.body.scrollTop + if (x+width-doc.body.scrollLeft > doc.body.clientWidth) x=x-width-25; + if (y+height-doc.body.scrollTop > doc.body.clientHeight) y=y-height; + + if (snow) { + if (dir == 2) { moveTo(over,x+offsetx-(width/2),y+offsety); } // Center + if (dir == 1) { moveTo(over,x+offsetx,y+offsety); } // Right + if (dir == 0) { moveTo(over,x-offsetx-width,y+offsety); } // Left + } +} + +function cClick() { hideObject(over); sw=0; } + +function layerWrite(txt) { document.all["overDiv"].innerHTML = txt } //â +function showObject(obj) { obj.visibility = "visible" } +function hideObject(obj) { obj.visibility = "hidden" } +function moveTo(obj,xL,yL) { obj.left = xL; obj.top = yL; } diff --git a/common/calendar/myb.css b/common/calendar/myb.css new file mode 100644 index 0000000..291b812 --- /dev/null +++ b/common/calendar/myb.css @@ -0,0 +1,78 @@ +IINPUT { background-color:#ffffff; border-bottom:#9E9D9D 1px solid; border-left:#9E9D9D 1px solid; border-right:#9E9D9D 1px solid; border-top: #9E9D9D 1px solid; font-size:9pt; color:#666666; font-family:"" "";} +SELECT {background-color : #ffffff; border-width:1px; border-color:rgb(198,199,198);line-height:130%; font-family:,, verdana, arial; font-size: 9pt; color: black;} +body, table, tr, td,div { + font-family:,, verdana, arial; + font-size: 9pt; + color: #666666; + } + +A:link {color: #666666; text-decoration: none} +A:active {color: #0062C8; text-decoration: none} +A:visited {color: #666666; text-decoration: none} +A:hover {color: #0062C8; text-decoration: underline} + +//class list : button --------------------------------------------------------------------- +.btn {font: 9pt; color:#666666; font-weight=bold; text-decoration:none; font-family: "";} +div.btn {font: 9pt; color:#666666; font-weight=bold; text-decoration:none; font-family: "";} +td.btn {font: 9pt; color:#666666; font-weight=bold; text-decoration:none; font-family: "";} +a.btn {font: 9pt; color:#666666; font-weight=bold; text-decoration:none; font-family: "";} +a.btn:link {font: 9pt; color:#666666; font-weight=bold; text-decoration:none; font-family: "";} +a.btn:active {font: 9pt; color:#444444; font-weight=bold; text-decoration:none; font-family: "";} +a.btn:visited {font: 9pt; color:#666666; font-weight=bold; text-decoration:none; font-family: "";} +a.btn:hover {font: 9pt; color:#444444; font-weight=bold; text-decoration:underline; font-family: "";} + +BODY { + SCROLLBAR-FACE-COLOR: #f7f7f7; + SCROLLBAR-HIGHLIGHT-COLOR: #C7C7C7; + SCROLLBAR-SHADOW-COLOR: #C7C7C7; + SCROLLBAR-3DLIGHT-COLOR: #ffffff; + SCROLLBAR-ARROW-COLOR: #00A0E8; + SCROLLBAR-TRACK-COLOR: #ffffff; + SCROLLBAR-DARKSHADOW-COLOR: #ffffff; } + +.blue_bold {font-family:"", ""; font-weight:bold; font-size: 9pt; color:#006498; text-decoration:none;} +.blue_bold div {font-family: "", ""; font-weight:bold; font-size:9pt; color:#006498; text-decoration:none;} +.blue_bold td {font-family: "", ""; font-weight:bold; font-size:9pt; color:#006498; text-decoration:none;} +.blue_bold a {font-family: "", ""; font-weight:bold; font-size:9pt; color:#006498; text-decoration:none;} +.blue_bold a:link {font-family: "", ""; font-weight:bold; font-size:9pt; color:#006498; text-decoration:none;} +.blue_bold a:active {font-family: "", ""; font-weight:bold; font-size:9pt; color:#006498; text-decoration:none;} +.blue_bold a:visited {font-family: "", ""; font-weight:bold; font-size:9pt; color:#006498; text-decoration:none;} +.blue_bold a:hover {font-family: "", ""; font-weight:bold; font-size:9pt; color:#0062c8; text-decoration:underline;} + +.gray {font-family:"", ""; font-size: 9pt; color:#666666; text-decoration:none;} +.gray div {font-family: "", ""; font-size:9pt; color:#666666; text-decoration:none;} +.gray td {font-family: "", ""; font-size:9pt; color:#666666; text-decoration:none;} +.gray a {font-family: "", ""; font-size:9pt; color:#666666; text-decoration:none;} +.gray a:link {font-family: "", ""; font-size:9pt; color:#666666; text-decoration:none;} +.gray a:active {font-family: "", ""; font-size:9pt; color:#666666; text-decoration:none;} +.gray a:visited {font-family: "", ""; font-size:9pt; color:#000000; text-decoration:none;} +.gray a:hover {font-family: "", ""; font-size:9pt; color:#000000; text-decoration:underline;} + +.verdana {font-family:Verdana; font-size: 7pt; text-decoration:none;} +.verdana a:link {font-family:Verdana; font-size: 7pt; text-decoration:none;} +.verdana a:visited {font-family:Verdana; font-size: 7pt; text-decoration:none;} +.verdana a:active {font-family:Verdana; font-size: 7pt; text-decoration:none;} +.verdana a:hover {font-family:Verdana; font-size: 7pt; text-decoration:underline;} +.verdana td {font-family:Verdana; font-size: 7pt; text-decoration:none;} +.verdana div {font-family:Verdana; font-size: 7pt; text-decoration:none;} + +.verdana_bold {font-family:Verdana; font-size: 7pt; font-weight: bold; text-decoration:none;} +.verdana_bold a:link {font-family:Verdana; font-size: 7pt; text-decoration:none;} +.verdana_bold a:visited {font-family:Verdana; font-size: 7pt; font-weight: bold; text-decoration:none;} +.verdana_bold a:active {font-family:Verdana; font-size: 7pt; font-weight: bold; text-decoration:none;} +.verdana_bold a:hover {font-family:Verdana; font-size: 7pt; font-weight: bold; text-decoration:none;} +.verdana_bold td {font-family:Verdana; font-size: 7pt; font-weight: bold; text-decoration:none;} +.verdana_bold div {font-family:Verdana; font-size: 7pt; font-weight: bold; text-decoration:none;} + +.input { background-color:#ffffff; border-bottom:#9E9D9D 1px solid; border-left:#9E9D9D 1px solid; border-right:#9E9D9D 1px solid; +border-top: #9E9D9D 1px solid; font-size:9pt; color:#000000; font-family:"" "";} + +.input_gray { background-color:#ffffff; border-bottom:#9E9D9D 1px solid; border-left:#9E9D9D 1px solid; border-right:#9E9D9D 1px solid; +border-top: #9E9D9D 1px solid; font-size:9pt; color:#666666; font-family:"" "";} + +.bt { border-left:#818181 1px solid; border-right:#818181 1px solid; +border-top: #818181 1px solid; border-bottom:#818181 1px solid; font-family:Verdana; font-size:9pt; color:#ffffff; background-color:#949494} + + + + diff --git a/common/calendar/total.js b/common/calendar/total.js new file mode 100644 index 0000000..d57b5ba --- /dev/null +++ b/common/calendar/total.js @@ -0,0 +1,51 @@ +var x,y; +document.onclick = MouseDown; +function MouseDown() { + + menuLocBod = window.document.body; + x = window.event.x - 30; + y = window.event.y + menuLocBod.scrollTop - 10; + +} +document.onmousedown = doDown; +function doDown() { + MM_showHideLayers('ifrmcal','','hide'); + +} +function MM_showHideLayers() { //v3.0 + var i,p,v,obj,args=MM_showHideLayers.arguments; + for (i=0; i<(args.length-2); i+=3) + if ((obj=MM_findObj(args[i]))!=null) { + v=args[i+2]; + if (obj.style) { + obj=obj.style; + v=(v=='show')?'visible':(v='hide')?'hidden':v; + } + obj.visibility=v; + } +} +function calendarBtn(form1){ + document.getElementById("resOrNot").checked = true; + if ((obj=MM_findObj('ifrmcal'))!=null) { + if (obj.style) { + obj=obj.style; + } + obj.left=x; + obj.top=y; + } + + calendarfrm.buttonmenu(form1); + MM_showHideLayers('ifrmcal','','show') +} +function MM_findObj(n, d) { //v3.0 + var p,i,x; + if (!d) d=document; + if ((p=n.indexOf("?"))>0&&parent.frames.length) { + d=parent.frames[n.substring(p+1)].document; + n=n.substring(0,p); + } + if (!(x=d[n])&&d.all) x=d.all[n]; + for (i=0;!x&&ispan{position:relative;z-index:99999;font-family:adelle-sans,sans-serif} +[id^=checkbox-7-]:active+label:after{box-shadow:0 0 1px rgba(0,0,0,.6),inset 0 2px 6px rgba(0,0,0,.1),inset 0 -18px 15px -10px rgba(0,0,0,.05)} +[id^=checkbox-7-]:checked+label:after{content:'\2715'} +[id^=checkbox-7-]+label:before{content:' ';position:absolute;background:#6AC6DD;width:0;height:100%;top:0;-webkit-transition:all .3s ease-in;transition:all .3s ease-in;left:0} +[id^=checkbox-7-]:checked+label:before{content:' ';position:absolute;width:100%;height:100%;text-shadow:0 1px 0 rgba(0,0,0,.1);top:0;left:0} +#checkbox-7-2+label:before{width:100%;height:0} +#checkbox-7-2:checked+label:before{width:100%;height:100%} +#checkbox-7-3+label:before{width:100%;height:0;bottom:0;top:auto} +#checkbox-7-3:checked+label:before{width:100%;height:100%} +#checkbox-7-4+label:before{width:0;height:100%;left:auto;right:0} +#checkbox-7-4:checked+label:before{width:100%;height:100%} + +[id^=checkbox-8-]+label{background-color:#FFF;padding:9px;border-radius:50px;display:inline-block;position:relative;margin-right:30px;width:40px;height:15px} +[id^=checkbox-8-]+label:after{content:' ';position:absolute;background:#E6332C;top:0;left:0;width:100%;height:100%;border-radius:100px;box-shadow:inset 0 0 20px rgba(0,0,0,.2)} +[id^=checkbox-8-]+label:before{content:' ';position:absolute;background:#fff;top:2px;left:2px;z-index:99999;width:29px;height:29px;border-radius:100px;box-shadow:0 0 2px rgba(0,0,0,.5),inset 0 -18px 15px -10px rgba(0,0,0,.05)} +[id^=checkbox-8-]+label:active{box-shadow:0 1px 2px rgba(0,0,0,.05),inset 0 1px 3px rgba(0,0,0,.1)} +[id^=checkbox-8-]:checked+label:before{content:' ';position:absolute;left:27px;border-radius:100px} +#checkbox-8-1+label,#checkbox-8-2+label{overflow:hidden} +[id^=checkbox-8-]:checked+label:after{content:' ';font-size:1.5em;position:absolute;background:#63C99C} +#checkbox-8-2+label:after, +#checkbox-8-2+label:before, +#checkbox label,#checkbox-8-4+label:after, +#checkbox-8-4+label:before, +#checkbox label{-webkit-transition:all .1s ease-in;transition:all .1s ease-in} +#checkbox-8-3+label:before, +#checkbox-8-4+label:before{width:35px;height:35px;top:-1px;left:-1px} +#checkbox-8-3:checked+label:before, +#checkbox-8-4:checked+label:before{left:27px} + +[id^=checkbox-9-]+label{background-color:#FFF;padding:9px;border-radius:5px;display:inline-block;position:relative;margin-right:30px;width:45px;box-shadow:0 0 1px rgba(0,0,0,.6);height:10px} +[id^=checkbox-9-]+label:before{content:' ';position:absolute;background:#fff;top:-1px;z-index:99999;left:-1px;width:21px;height:30px;border-radius:3px;box-shadow:0 0 1px rgba(0,0,0,.6),inset 0 -18px 15px -10px rgba(0,0,0,.05)} +[id^=checkbox-9-]+label:after{content:'NO';position:absolute;top:7px;left:37px;font-size:1.2em;color:#868686} +[id^=checkbox-9-]:checked+label:after{content:'YES';left:8px;color:#21BE92} +[id^=checkbox-9-]:checked+label:before{content:' ';position:absolute;z-index:99999;left:44px} +#checkbox-9-3+label:before, +#checkbox-9-4+label:before{width:21px;height:24px;top:2px;left:2px} +#checkbox-9-3:checked+label:before, +#checkbox-9-4:checked+label:before{left:40px} +#checkbox-9-2+label:after, +#checkbox-9-2+label:before, +#checkbox label, +#checkbox-9-4+label:after, +#checkbox-9-4+label:before, +#checkbox label{-webkit-transition:all .1s ease-in;transition:all .1s ease-in} + +[id^=checkbox-10-]+label{background-color:#fafbfa;padding:9px;border-radius:50px;display:inline-block;position:relative;margin-right:30px;-webkit-transition:all .1s ease-in;transition:all .1s ease-in;width:40px;height:15px} +[id^=checkbox-10-]+label:after{content:' ';position:absolute;top:0;-webkit-transition:box-shadow .1s ease-in;transition:box-shadow .1s ease-in;left:0;width:100%;height:100%;border-radius:100px;box-shadow:inset 0 0 0 0 #eee,0 0 1px rgba(0,0,0,.4)} +[id^=checkbox-10-]+label:before{content:' ';position:absolute;background:#fff;top:1px;left:1px;z-index:999999;width:31px;-webkit-transition:all .1s ease-in;transition:all .1s ease-in;height:31px;border-radius:100px;box-shadow:0 3px 1px rgba(0,0,0,.05),0 0 1px rgba(0,0,0,.3)} +[id^=checkbox-10-]:active+label:after{box-shadow:inset 0 0 0 20px #eee,0 0 1px #eee} +[id^=checkbox-10-]:active+label:before{width:37px} +[id^=checkbox-10-]:checked:active+label:before{width:37px;left:20px} +[id^=checkbox-10-]+label:active{box-shadow:0 1px 2px rgba(0,0,0,.05),inset 0 1px 3px rgba(0,0,0,.1)} +[id^=checkbox-10-]:checked+label:before{content:' ';position:absolute;left:26px;border-radius:100px} +[id^=checkbox-10-]:checked+label:after{content:' ';font-size:1.5em;position:absolute;background:#4cda60;box-shadow:0 0 1px #4cda60} +*/ \ No newline at end of file diff --git a/common/css/sub_design.css b/common/css/sub_design.css new file mode 100644 index 0000000..3e8f732 --- /dev/null +++ b/common/css/sub_design.css @@ -0,0 +1,171 @@ +@charset "utf-8"; + +/* 공통 */ +h3.tit{padding:10px 0;font-size:20px;color:#000;letter-spacing:-0.075em;} + +.add_num{width:100%;box-sizing:border-box;} +.add_num li{position:relative;height:20px;padding:10px 5px;font-size:13px;line-height:20px;border-top:1px dashed #d9d9d9;} +.add_num li:first-child{border-top:0;} +.add_num li input{vertical-align:middle;} +.add_num li strong{color:#01bac5;} +.add_num li a{position:absolute;top:50%;right:5px;margin-top:-5px;width:auto!important;height:auto!important;border-right:0!important;background:none;} + +.sentlist{width:100%;font-size:0;line-height:0;box-sizing:border-box;} +.sentlist li{display:inline-block;position:relative;width:210px;padding:0 15px;margin-bottom:30px;text-align:center;} +.sentlist li .ct{overflow-y:scroll;height:88px;padding:20px;margin-bottom:15px;border:1px solid #dbdbdb;border-radius:10px;background:#fff;font-size:12px;line-height:18px;color:#666;text-align:left;} +.sentlist li .info{overflow:hidden;padding-bottom:15px;font-size:12px;line-height:20px;} +.sentlist li .info dt{float:left;font-weight:bold;color:#000;letter-spacing:-0.05em;clear:both;} +.sentlist li .info dd{float:right;text-align:right;} +.sentlist li .info dd.receiver{font-weight:bold;color:#6168fe;} +.sentlist li .btngroup{display:inline-block;} +.sentlist li .btngroup li{width:auto;margin-left:3px;padding:0!important;} + +.ico_success, +.ico_fail, +.ico_ing{position:absolute;top:-10px;right:10px;width:29px;height:29px;} +.ico_success{background:url(/img/sub/ico_success.png) no-repeat;} +.ico_fail{background:url(/img/sub/ico_fail.png) no-repeat;} +.ico_ing{background:url(/img/sub/ico_ing.png) no-repeat;} + +.paginate{padding:30px 0;text-align:center;} +.paginate ul{display:inline-block;margin:0 10px;font-size:0;line-height:0;vertical-align:middle;} +.paginate ul li{display:inline-block;width:30px;height:30px;margin-left:-1px;border:1px solid #ccc;background:#fff;font-family:'tahoma';font-size:11px;line-height:30px;color:#666;} +.paginate ul li a{display:block;} +.paginate ul li a.active{background:#808080;color:#fff;} +.paginate a.prev, +.paginate a.next{display:inline-block;width:40px;height:30px;padding:0 10px;border:1px solid #ccc;line-height:30px;vertical-align:middle;} +.paginate a.prev{background:url(/img/sub/btn_paginate_prev.gif) no-repeat 10px 50% #fff;text-align:right;} +.paginate a.next{background:url(/img/sub/btn_paginate_next.gif) no-repeat 85% 50% #fff;text-align:left;} + +.essential{display:block;text-align:right;} +.essential strong{display:inline-block;padding-left:20px;background:url(/img/sub/ico_essential.gif) no-repeat 0 50%;font-size:14px;color:#ec6161;letter-spacing:-0.075em;} + +/* 버튼공통 */ +.btngroup{display:block;font-size:0;line-height:0;text-align:center;} +.btngroup li{display:inline-block;width:auto;padding:0;margin:0;text-align:center;vertical-align:middle;} +.btngroup li a, +.btngroup li input{display:block;text-decoration:none;font-weight:bold;letter-spacing:-0.075em;vertical-align:middle;border:0 none;} + +.btngroup .column1 li{width:20%;} +.btngroup .column1 li a{border-radius:3px;} + +.btngroup .column2 li{width:50%;} +.btngroup .column2 li:nth-child(1) a, +.btngroup .column2 li:nth-child(1) input{border-radius:3px 0 0 3px;} +.btngroup .column2 li:nth-child(2) a, +.btngroup .column2 li:nth-child(2) input{border-radius:0 3px 3px 0;} + +.btngroup .column3 li{width:33%;} +.btngroup .column3 li:first-child{width:34%;} +.btngroup .column3 li:nth-child(1) a{border-radius:3px 0 0 3px;} +.btngroup .column3 li:nth-child(3) a{border-radius:0 3px 3px 0;} + +.btngroup .btn_sm a{display:inline-block;height:20px;padding:0 10px;font-size:12px;line-height:20px;color:#fff;} +.btngroup .btn_sm a.sm1{background:#6168fe;} +.btngroup .btn_sm a.sm2{background:#9c9ec3;} + +.btngroup .btn_nrm a, +.btngroup .btn_nrm input{height:45px;font-size:14px;line-height:45px;color:#fff;vertical-align:middle;} +.btngroup .btn_nrm a.nrm1, +.btngroup .btn_nrm input.nrm1{background:#6168fe;} +.btngroup .btn_nrm a.nrm2, +.btngroup .btn_nrm input.nrm2{background:#9ea0c1;} +.btngroup .btn_nrm a.nrm3, +.btngroup .btn_nrm input.nrm3{background:#00c9d5;} +.btngroup .btn_nrm li:nth-child(3){border-left:1px solid #b6b8d1;box-sizing:border-box;} + + +.btngroup .btn_nrm_bor a{height:43px;border-top:1px solid #dddcdd;border-right:1px solid #dddcdd;border-bottom:1px solid #dddcdd;font-size:14px;line-height:43px;color:#4e4e4e;background:#fff;} +.btngroup .btn_nrm_bor li:first-child a{border-left:1px solid #dddcdd;} +.btngroup .btn_nrm_bor a.nrm_bor1{background:#f6f1f8;} + +.btngroup .btn_sm_bor a{} + +/* 탭 */ +.con_tab{overflow:hidden;margin-bottom:30px;font-size:0;line-height:0;} +.con_tab li{display:inline-block;margin-left:1px;} +.con_tab li:first-child{margin-left:0;} +.con_tab li a{display:block;width:150px;height:40px;background:#1c1a1b;font-size:14px;font-weight:bold;line-height:40px;color:#fff;letter-spacing:-0.075em;text-align:center;} +.con_tab li a.on{background:#00c9d5;} + +/* 게시판상단 */ +.h_board{overflow:hidden;} +.h_board .float_l{float:left;} +.h_board .float_l .select_basic{display:inline-block;} +.h_board .float_l .k_alpa{display:inline-block;margin-left:10px;vertical-align:middle;} +.h_board .float_l .k_alpa li{float:left;margin-left:2px;} +.h_board .float_l .k_alpa li a{display:block;padding:5px 8px;background:#6a6a6a;text-align:center;font-size:12px;font-weight:bold;color:#fff;} +.h_board .float_l .k_alpa li a.active{background:#00c9d5;} +.h_board .float_r{float:right;font-size:0;line-height:0;} +.h_board .float_r a{display:inline-block;height:45px;margin-left:5px;padding:0 20px;text-align:center;font-size:15px;line-height:45px;color:#fff;letter-spacing:-0.075em;} +.h_board .float_r a.c_gray{background:#6a6a6a;} +.h_board .float_r a.c_mint{background:#00c9d5;} + +.f_board{overflow:hidden;padding-bottom:50px;} +.f_board .btngroup{float:left;} +.f_board .btngroup .column2{width:240px;} +.f_board .btngroup .column3{width:450px;} +.f_board .search_frm{float:right;font-size:0;line-height:0;} +.f_board .search_frm li{display:inline-block;vertical-align:middle;} +.f_board .search_frm li select{height:43px;padding:10px;border:1px solid #fff;font-size:14px;color:#656565;letter-spacing:-0.05em;box-sizing:border-box;vertical-align:middle;} +.f_board .search_frm li input{vertical-align:middle;} +.f_board .search_frm .s_month{border:1px solid #e1e2e9;border-radius:3px;background:#fff;} +.f_board .search_frm .s_word{margin-left:10px;border:1px solid #e1e2e9;border-radius:3px;background:#fff;} +.f_board .search_frm .s_word select{float:left;} +.f_board .search_frm .w_text{width:150px;height:29px;padding:0 10px;margin:6px 0;border:1px solid #fff;font-size:12px;line-height:29px;vertical-align:middle;} +.f_board .search_frm .btn_search{margin-left:5px;padding:12px 13px 12px 14px;background:#e1e2e9;} + +/* Table */ +table.table1{width:100%;margin-top:15px;border-top:2px solid #575757;border-collapse:collapse;clear:both;} +table.table1 thead th{padding:12px 0;border-bottom:1px solid #a6a6a6;border-left:1px dashed #d4d4d4;background:#f9f9f9;font-size:13px;line-height:1.2;font-weight:bold;color:#000;} +table.table1 thead th:first-child, +table.table1 tbody td:first-child{border-left:1px solid #d4d4d4;} +table.table1 thead th:last-child, +table.table1 tbody td:last-child{border-right:1px solid #d4d4d4;} +table.table1 tbody td{padding:12px 10px;border-left:1px dashed #d4d4d4;border-bottom:1px solid #d4d4d4;font-size:13px;line-height:1.2;color:#787878;text-align:center;background:#fff;} +table.table1 tbody td.num{color:#000;text-decoration:underline;} +table.table1 input{vertical-align:middle;} + +table.table2{width:100%;margin-top:60px;border-top:2px solid #575757;border-collapse:collapse;clear:both;} +table.table2 thead th{padding:15px 0;border-bottom:1px solid #a6a6a6;background:url(/img/sub/line_sche_td.gif) no-repeat 0 50%;font-size:13px;font-weight:bold;color:#000;} +table.table2 thead th:first-child{background:none;} +table.table2 tbody th, +table.table2 tbody td{padding:10px;border-bottom:1px solid #d4d4d4;font-size:13px;color:#787878;text-align:center;} +table.table2 tbody th{font-weight:normal;} +table.table2 tbody td{background:url(/img/sub/line_sche_td.gif) no-repeat 0 50%;} + +table.table3{width:100%;margin-top:15px;border-collapse:collapse;clear:both;} +table.table3 tbody th{font-size:13px;font-weight:bold;text-align:left;} +table.table3 tbody th, +table.table3 tbody td{height:45px;padding:3px 15px;font-size:13px;} +table.table3 tbody td ul.term{font-size:0;line-height:0;} +table.table3 tbody td ul.term li{display:inline-block;margin-right:6px;font-size:13px;color:#555;} +table.table3 tbody td .w1{width:100px;} +table.table3 tbody td .w2{width:80px;} +table.table3 tbody td .w3{width:180px;} +table.table3 tbody td .w4{width:100%;} +table.table3 tbody td dl.alram{overflow:hidden;} +table.table3 tbody td dl.alram dt{float:left;width:140px;height:45px;margin-bottom:6px;line-height:45px;vertical-align:middle;clear:both;} +table.table3 tbody td dl.alram dt input{vertical-align:middle;height:45px;} +table.table3 tbody td dl.alram dd{float:left;margin-bottom:6px;} +table.table3 tbody td dl.alram dd li{display:inline-block;vertical-align:middle;} +table.table3 tbody td .editor{width:100%;min-height:250px;margin-top:20px;padding:20px;box-sizing:border-box;border:1px solid #d4d4d4;font-size:13px;line-height:1.6;} + +table.table4{width:100%;margin-top:20px;border-top:2px solid #575757;border-collapse:collapse;clear:both;} +table.table4 tbody th{padding:15px 20px;border-bottom:1px solid #d4d4d4;background:#f9f9f9;font-size:13px;color:#000;text-align:left;} +table.table4 tbody td{padding:15px 20px;border-bottom:1px solid #d4d4d4;background:#fff;font-size:13px;color:#787878;} +table.table4 tbody td ul{display:inline-block;margin-right:10px;} +table.table4 tbody td ul li{display:inline-block;} + +/* input_style */ +.inp_basic{width:100%;height:43px;padding:0 10px;border-radius:3px;border:1px solid #ccc;box-sizing:border-box;font-size:13px;line-height:43px;color:#656565;} +.select_basic{width:100%;height:45px;padding:10px;border-radius:3px;border:1px solid #ccc;box-sizing:border-box;font-size:13px;color:#656565;} +.ess{background:#fbf6f6;border:1px solid #ec6161;} + +/* layer_popup */ +#mask{position:absolute;top:0;left:0;width:100%;background:#000;z-index:100;} +.maskpopbox{position:absolute;top:50%;left:50%;background:#fff;z-index:200;} +.maskpopbox .poptit{height:70px;padding:0 30px;border-bottom:1px solid #ccc;background:#f2f3fa;} +.maskpopbox .poptit h4{float:left;font-size:23px;line-height:70px;color:#000;letter-spacing:-0.075em;} +.maskpopbox .poptit .popcls{float:right;margin-top:24px;} +.maskpopbox .popct{padding:30px;} \ No newline at end of file diff --git a/common/css/sub_layout.css b/common/css/sub_layout.css new file mode 100644 index 0000000..f2ac6a9 --- /dev/null +++ b/common/css/sub_layout.css @@ -0,0 +1,45 @@ +@charset "utf-8"; + +html,body{height:100%;} +#wrapper{_display:inline-block;position:relative;width:100%;height:100%;min-width:1200px;} +#wrapper:after{display:block;clear:both;content:'';} + +#head{float:left;position:fixed;width:200px;height:100%;} +#head .company{padding-top:40px;font-family:'Titillium Web',sans-serif;font-weight:bold;font-size:20px;color:#fff;text-align:center;} +#head .sms_count{position:relative;height:140px;margin:20px 0 40px;color:#fff;text-align:center;background:url(/img/sub/bg_sms_count.png) no-repeat top center;} +#head .sms_count .tit_count{position:absolute;top:40px;left:50%;width:132px;margin-left:-66px;font-size:14px;font-weight:bold;letter-spacing:-0.075em;color:#82feff;text-align:center;} +#head .sms_count .pie-title-center{display:inline-block;position:relative;padding:4px;text-align:center;} +#head .sms_count .pie-value{display:block;position:absolute;font-family:'Titillium Web',sans-serif;font-size:26px;font-weight:bold;top:60px;left:0;right:0;} +#head .skin_color{bottom:40px;text-align:center;} + +#menu_navi ul li{position:relative;} +#menu_navi ul li.menu01 a{background-image:url(/img/common/ico_menu01.png);background-repeat:no-repeat;background-position:20px 22px;} +#menu_navi ul li.menu02 a{background-image:url(/img/common/ico_menu02.png);background-repeat:no-repeat;background-position:20px 22px;} +#menu_navi ul li.menu03 a{background-image:url(/img/common/ico_menu03.png);background-repeat:no-repeat;background-position:20px 22px;} +#menu_navi ul li a{display:block;height:60px;font-size:16px;padding-left:50px;line-height:60px;color:#fff;letter-spacing:-0.025em;text-decoration:none;} + +#menu_navi ul li .depth2 .arr{position:absolute;top:60px;left:20px;display:block;width:13px;height:7px;background:url(/img/common/ico_menu_on_c1.png) no-repeat;z-index:100;} +#menu_navi ul li .depth2 ul{border-top:0!important;} +#menu_navi ul li .depth2 li{height:50px;border-top:1px solid #d6d6d6;border-bottom:0!important;} +#menu_navi ul li .depth2 li:first-child{border-top:none!important;} +#menu_navi ul li .depth2 li a{height:50px;padding-left:20px;background-image:url(/img/common/ico_depth2.gif);background-repeat:no-repeat;background-position:90% 50%;background-color:#fff!important;font-size:15px;line-height:50px;color:#767782;} +#menu_navi ul li .depth2 li a:hover, +#menu_navi ul li .depth2 li a.on{background-image:url(/img/common/ico_depth2_on.gif);background-repeat:no-repeat;background-position:90% 50%;background-color:#fff!important;font-weight:700;color:#1c1c1c;} + +#container{position:relative;margin-left:200px;height:100%;background:#f2f3fa;} +#contents{position:relative;min-width:1000px;background:#f2f3fa;} + +#sub_top{overflow:hidden;width:100%;height:54px;border-bottom:1px solid #e1e2e9;background:#fff;z-index:100;} +#sub_top .inner{position:relative;width:1000px;} +#sub_top h1{float:left;height:54px;padding-left:35px;margin-left:30px;background:url(/img/common/logo_top.png) no-repeat 0 50%;font-family:'Quantico',sans-serif;font-size:20px;line-height:54px;color:#6168fe;letter-spacing:-0.05em;} +#sub_top h1 strong{margin-right:10px;font-size:27px;color:#000;} +#sub_top ul.mem{float:right;border-right:1px solid #e1e2e9;} +#sub_top ul.mem li{float:left;border-left:1px solid #e1e2e9;text-align:center;font-size:0;line-height:0;} +#sub_top ul.mem li a{display:block;width:16px;height:18px;padding:18px 22px;} + +#cont_head{overflow:hidden;width:970px;padding:40px 0 40px 30px;} +#cont_head h2{float:left;font-size:30px;color:#000;font-weight:bold;letter-spacing:-0.075em;} +#cont_head .imp{float:right;height:18px;padding:8px 0 8px 30px;margin-left:30px;background:url(/img/sub/ico_imp.gif) no-repeat 0 50%;font-size:13px;line-height:18px;color:#575757;letter-spacing:-0.025em;} +#cont_head .imp span{text-decoration:underline;} + +#cont_wrap{position:relative;width:100%;max-width:1000px;min-width:1000px;padding-left:30px;box-sizing:border-box;} \ No newline at end of file diff --git a/common/css/template.css b/common/css/template.css new file mode 100644 index 0000000..a75182e --- /dev/null +++ b/common/css/template.css @@ -0,0 +1,178 @@ +@charset "utf-8"; + +body{font-size:75%;font-family:'NanumGothic','나눔고딕','Nanum Gothic','NanumGothicWeb','돋움',Dotum,Gulim,Arial,Verdana,AppleGothic,Sans-serif!important;color:#333;} + +a, +a:link{text-decoration:none;cursor:pointer;color:#555;} + +/* Letter-spacing */ +.ls0 {letter-spacing:0;} +.ls_s {letter-spacing:-0.05em;} +.ls_ss {letter-spacing:-0.3em;} + +/* cursor:pointer */ +.hand{cursor:pointer;} + +/* dispaly */ +.disblock {display:block;} +.disnone {display:none;} +.disinline {display:inline;} +.disinlineblock {display:inline-block;} + +/* float */ +.fl{float:left;} +.fr{float:right;} +.fn{float:none;} + +/* align */ +.tal {text-align: left;} +.tac {text-align: center;} +.tar {text-align: right;} + +/* vertical align */ +.vat {vertical-align:top;} +.vam {vertical-align:middle;} +.vab {vertical-align:bottom;} + +/* font family */ +.ff1 {font-family:돋움,dotum;} +.ff2 {font-family:굴림,gulim;} +.ff3 {font-family:verdana;} +.ff4 {font-family:tahoma;} +.ff5 {font-family:arial;} + +/* font size */ +.fs10 {font-size:10px;} +.fs11 {font-size:11px;} +.fs12 {font-size:12px;} +.fs13 {font-size:13px;} +.fs14 {font-size:14px;} +.fn { font-weight:normal;} +.bold {font-weight:bold;} + +/* font color */ +.orange {color:#f96f00;} +.black {color:#000000;} +.sky_blue {color:#0085c9;} +.blue {color:#0773c7;} +.gray {color:#C2C2C2;} +.gray2 {color:#9B9B9B;} +.green {color:#80a344;} + +/* Line */ +.underline {text-decoration:underline;} + +/* Tag(Paragraph) */ +p { margin: 0; padding:0; border:0;} +p.em { color: #06c; margin: 0; padding: 0; } + +/* 스킨컬러 */ +.skin_color{position:absolute;width:100%;} +.skin_color ul{font-size:0;line-height:0;} +.skin_color ul li{display:inline-block;margin:0 3px;_zoom:1;} + +/* Input,textarea,select */ +.input_box {background-color:#FFFFFF;border:1px solid #CDCDCD;font-size:1em;height:15px;padding:3px 3px 0;} +textarea {border:1px solid #cdcdcd; font-size: 1em; width:98%;} +select, textarea {vertical-align: middle;} + +/* Padding */ +.pt0 {padding-top:0px;} +.pt1 {padding-top:1px;} +.pt2 {padding-top:2px;} +.pt3 {padding-top:3px;} +.pt4 {padding-top:4px;} +.pt5 {padding-top:5px;} +.pt6 {padding-top:6px;} +.pt7 {padding-top:7px;} +.pt8 {padding-top:8px;} +.pt9 {padding-top:9px;} +.pt10 {padding-top:10px;} +.pt20 {padding-top:20px;} +.pt30 {padding-top:30px;} + +.pr0 {padding-right:0px;} +.pr1 {padding-right:1px;} +.pr2 {padding-right:2px;} +.pr3 {padding-right:3px;} +.pr4 {padding-right:4px;} +.pr5 {padding-right:5px;} +.pr6 {padding-right:6px;} +.pr7 {padding-right:7px;} +.pr8 {padding-right:8px;} +.pr9 {padding-right:9px;} +.pr10 {padding-right:10px;} + +.pl0 {padding-left:0px;} +.pl1 {padding-left:1px;} +.pl2 {padding-left:2px;} +.pl3 {padding-left:3px;} +.pl4 {padding-left:4px;} +.pl5 {padding-left:5px;} +.pl6 {padding-left:6px;} +.pl7 {padding-left:7px;} +.pl8 {padding-left:8px;} +.pl9 {padding-left:9px;} +.pl10 {padding-left:10px;} +.pl20 {padding-left:20px;} +.pl30 {padding-left:30px;} + +.pb0 {padding-bottom:0px;} +.pb1 {padding-bottom:1px;} +.pb2 {padding-bottom:2px;} +.pb3 {padding-bottom:3px;} +.pb4 {padding-bottom:4px;} +.pb5 {padding-bottom:5px;} +.pb6 {padding-bottom:6px;} +.pb7 {padding-bottom:7px;} +.pb8 {padding-bottom:8px;} +.pb9 {padding-bottom:9px;} +.pb10 {padding-bottom:10px;} + +/* Margin */ +.mt5 {margin-top:5px;} +.mt10 {margin-top:10px;} +.mt15 {margin-top:15px;} +.mt20 {margin-top:20px;} +.mt25 {margin-top:25px;} +.mt30 {margin-top:30px;} +.mt35 {margin-top:35px;} +.mt40 {margin-top:40px;} + +.ml10 {margin-left:10px;} +.ml15 {margin-left:15px;} +.ml20 {margin-left:20px;} +.ml25 {margin-left:25px;} +.ml30 {margin-left:30px;} +.ml35 {margin-left:35px;} +.ml40 {margin-left:40px;} + +.mr5 {margin-right:5px;} +.mr10 {margin-right:10px;} +.mr15 {margin-right:15px;} +.mr20 {margin-right:20px;} +.mr25 {margin-right:25px;} +.mr30 {margin-right:30px;} +.mr35 {margin-right:35px;} +.mr40 {margin-right:40px;} + +.mb5 {margin-bottom:5px;} +.mb10 {margin-bottom:10px;} +.mb15 {margin-bottom:15px;} +.mb20 {margin-bottom:20px;} +.mb25 {margin-bottom:25px;} +.mb30 {margin-bottom:30px;} +.mb35 {margin-bottom:35px;} +.mb40 {margin-bottom:40px;} + +/* Width */ +.w100 {width:100%;} + + +/* Etc */ +.loading {display:none; position:absolute; left:400px; top:240px; border:2px solid #C6C6C6; background-color:#ffffff; padding:25px; text-align:center; vertical-align:middle; z-index:1000; font-weight:bold; color:#313131; line-height:140%;} +.loading span{color:#7D7D7D; letter-spacing:-1px; font-size:11px;} + + +/***************************** contents list ******************************/ + diff --git a/common/file/bottom.asp b/common/file/bottom.asp new file mode 100644 index 0000000..a598e97 --- /dev/null +++ b/common/file/bottom.asp @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/common/file/head.asp b/common/file/head.asp new file mode 100644 index 0000000..2574bc1 --- /dev/null +++ b/common/file/head.asp @@ -0,0 +1,141 @@ + + +<% +member_login_chk("/index.asp") +%> + + + +문자전송시스템 + + + + + + + +<%If Left(LCase(Request.ServerVariables("PATH_INFO")),10)="/index.asp" Then%> + +<%else%> + + + +<%End If %> + + + + + + + + +<% +If session("a_level") <> "" Then +%> + +<% +End if +%> + + + + +
+ 본문으로 바로가기 + 대메뉴로 바로가기 + 본문으로 바로가기 +
+ +
+ + + + \ No newline at end of file diff --git a/common/file/head_01message.asp b/common/file/head_01message.asp new file mode 100644 index 0000000..1f39402 --- /dev/null +++ b/common/file/head_01message.asp @@ -0,0 +1,29 @@ + + + + + + + + + +
+ + + + + + + + + + + + + + +
+
+ diff --git a/common/file/head_02schedule.asp b/common/file/head_02schedule.asp new file mode 100644 index 0000000..8e440d0 --- /dev/null +++ b/common/file/head_02schedule.asp @@ -0,0 +1,20 @@ + + + + + + + + + +
+ + + + + + + +
+
+ \ No newline at end of file diff --git a/common/file/head_03address.asp b/common/file/head_03address.asp new file mode 100644 index 0000000..b2535b7 --- /dev/null +++ b/common/file/head_03address.asp @@ -0,0 +1,23 @@ + + + + + + + + + +
+ + + + + + + + + + +
+
+ \ No newline at end of file diff --git a/common/file/head_04comm.asp b/common/file/head_04comm.asp new file mode 100644 index 0000000..5d44f1f --- /dev/null +++ b/common/file/head_04comm.asp @@ -0,0 +1,20 @@ + + + + + + + + + +
+ + + + + + + +
+
+ \ No newline at end of file diff --git a/common/file/head_05advice.asp b/common/file/head_05advice.asp new file mode 100644 index 0000000..28b4cff --- /dev/null +++ b/common/file/head_05advice.asp @@ -0,0 +1,20 @@ + + + + + + + + + +
+ + + + + + + +
+
+ \ No newline at end of file diff --git a/common/file/head_06mypage.asp b/common/file/head_06mypage.asp new file mode 100644 index 0000000..f149b8a --- /dev/null +++ b/common/file/head_06mypage.asp @@ -0,0 +1,26 @@ + + + + + + + + + +
+ + + + + + + + + + + + + +
일별발송현황
월별발송현황
개인정보수정
+
+ \ No newline at end of file diff --git a/common/file/head_dsmc.asp b/common/file/head_dsmc.asp new file mode 100644 index 0000000..cfdbf31 --- /dev/null +++ b/common/file/head_dsmc.asp @@ -0,0 +1,198 @@ + + +<% +If session("ss_dsmc_m_num") = "" Then %> + +<% + Return +End if +%> + + + +문자전송시스템 + + + + + + + +<%If Left(LCase(Request.ServerVariables("PATH_INFO")),10)="/index.asp" Then%> + +<%else%> + + + +<%End If %> + + + + + + + + +<% +If session("a_level") <> "" Then +%> + +<% +End if +%> + + + + +
+ 본문으로 바로가기 + 대메뉴로 바로가기 + 본문으로 바로가기 +
+ +
+ +<% +nowcount = smsSelect2(session("ss_dsmc_m_id")) +maxcount = int( (nowcount + 999) / 1000 ) * 1000 '1000단위로 maxconut 생성 +nowpercent = int( ( nowcount / maxcount ) * 100 ) +%> + + + + + +
+ +
+
+

nanum sms service center

+
    +
  • 로그아웃
  • +
+
+
+ + +
+ + ');return D.join('');}; +var FCKToolbarFontFormatCombo=function(A,B){if (A===false) return;this.CommandName='FontFormat';this.Label=this.GetLabel();this.Tooltip=A?A:this.Label;this.Style=B?B:2;this.NormalLabel='Normal';this.PanelWidth=190;this.DefaultLabel=FCKConfig.DefaultFontFormatLabel||'';};FCKToolbarFontFormatCombo.prototype=new FCKToolbarStyleCombo(false);FCKToolbarFontFormatCombo.prototype.GetLabel=function(){return FCKLang.FontFormat;};FCKToolbarFontFormatCombo.prototype.GetStyles=function(){var A={};var B=FCKLang['FontFormats'].split(';');var C={p:B[0],pre:B[1],address:B[2],h1:B[3],h2:B[4],h3:B[5],h4:B[6],h5:B[7],h6:B[8],div:B[9]||(B[0]+' (DIV)')};var D=FCKConfig.FontFormats.split(';');for (var i=0;iEnable SCAYT';return C?'Disable SCAYT':'Enable SCAYT';};var Z=function(tooltip,style){this.Command=FCKCommands.GetCommand('Scayt');this.CommandName='Scayt';this.Label=this.GetLabel();this.Tooltip=FCKLang.ScaytTitle;this.Style=1;};Z.prototype=new FCKToolbarSpecialCombo;Z.prototype.CreateItems=function(){this._Combo.AddItem('Trigger','Enable SCAYT');this._Combo.AddItem('Options',FCKLang.ScaytTitleOptions||"Options");this._Combo.AddItem('Langs',FCKLang.ScaytTitleLangs||"Languages");this._Combo.AddItem('About',FCKLang.ScaytTitleAbout||"About");};Z.prototype.GetLabel=function(){var a=FCKConfig.SkinPath+'fck_strip.gif';return FCKBrowserInfo.IsIE?'
':'';};function ScaytMessage(m){m&&alert(m);};var b=function(){name='ScaytContext';};b.prototype.Execute=function(contextInfo){var c=contextInfo&&contextInfo.action,g=c&&contextInfo.node,Q=window.scayt_control;if (g){switch (c){case 'Suggestion':Q.replace(g,contextInfo.suggestion);break;case 'Ignore':Q.ignore(g);break;case 'Ignore All':Q.ignoreAll(g);break;case 'Add Word':var E=FCK.EditorWindow.parent.parent;E.scayt.addWordToUserDictionary(g);break;}}};function InitSetup(){FCK.ContextMenu.RegisterListener({AddItems:function(menu){var E=FCK.EditorWindow.parent.parent;var Q=window.scayt_control,P=E.scayt;if (!Q) return;var g=Q.getScaytNode();if (!g) return;var h=P.getSuggestion(Q.getWord(g),Q.getLang());if (!h||!h.length) return;menu.AddSeparator();var j=FCK.Config.ScaytMaxSuggestions||5;var k=(j==-1)?h.length:j;for (var i=0;i';G.open();G.write(''+H+''+document.getElementById('xToolbarSpace').innerHTML+'');G.close();if(FCKBrowserInfo.IsAIR) FCKAdobeAIR.ToolbarSet_InitOutFrame(G);FCKTools.AddEventListener(G,'contextmenu',FCKTools.CancelEvent);FCKTools.AppendStyleSheet(G,FCKConfig.SkinEditorCSS);B=D.__FCKToolbarSet=new FCKToolbarSet(G);B._IFrame=F;if (FCK.IECleanup) FCK.IECleanup.AddItem(D,FCKToolbarSet_Target_Cleanup);};B.CurrentInstance=FCK;if (!B.ToolbarItems) B.ToolbarItems=FCKToolbarItems;FCK.AttachToOnSelectionChange(B.RefreshItemsState);return B;};function FCK_OnBlur(A){var B=A.ToolbarSet;if (B.CurrentInstance==A) B.Disable();};function FCK_OnFocus(A){var B=A.ToolbarSet;var C=A||FCK;B.CurrentInstance.FocusManager.RemoveWindow(B._IFrame.contentWindow);B.CurrentInstance=C;C.FocusManager.AddWindow(B._IFrame.contentWindow,true);B.Enable();};function FCKToolbarSet_Cleanup(){this._TargetElement=null;this._IFrame=null;};function FCKToolbarSet_Target_Cleanup(){this.__FCKToolbarSet=null;};var FCKToolbarSet=function(A){this._Document=A;this._TargetElement=A.getElementById('xToolbar');var B=A.getElementById('xExpandHandle');var C=A.getElementById('xCollapseHandle');B.title=FCKLang.ToolbarExpand;FCKTools.AddEventListener(B,'click',FCKToolbarSet_Expand_OnClick);C.title=FCKLang.ToolbarCollapse;FCKTools.AddEventListener(C,'click',FCKToolbarSet_Collapse_OnClick);if (!FCKConfig.ToolbarCanCollapse||FCKConfig.ToolbarStartExpanded) this.Expand();else this.Collapse();C.style.display=FCKConfig.ToolbarCanCollapse?'':'none';if (FCKConfig.ToolbarCanCollapse) C.style.display='';else A.getElementById('xTBLeftBorder').style.display='';this.Toolbars=[];this.IsLoaded=false;if (FCK.IECleanup) FCK.IECleanup.AddItem(this,FCKToolbarSet_Cleanup);};function FCKToolbarSet_Expand_OnClick(){FCK.ToolbarSet.Expand();};function FCKToolbarSet_Collapse_OnClick(){FCK.ToolbarSet.Collapse();};FCKToolbarSet.prototype.Expand=function(){this._ChangeVisibility(false);};FCKToolbarSet.prototype.Collapse=function(){this._ChangeVisibility(true);};FCKToolbarSet.prototype._ChangeVisibility=function(A){this._Document.getElementById('xCollapsed').style.display=A?'':'none';this._Document.getElementById('xExpanded').style.display=A?'none':'';if (window.onresize){FCKTools.RunFunction(window.onresize);}};FCKToolbarSet.prototype.Load=function(A){this.Name=A;this.Items=[];this.ItemsWysiwygOnly=[];this.ItemsContextSensitive=[];this._TargetElement.innerHTML='';var B=FCKConfig.ToolbarSets[A];if (!B){alert(FCKLang.UnknownToolbarSet.replace(/%1/g,A));return;};this.Toolbars=[];for (var x=0;x0) break;}catch (e){break;};D=D.parent;};var E=D.document;var F=function(){if (!B) B=FCKConfig.FloatingPanelsZIndex+999;return++B;};var G=function(){if (!C) return;var H=FCKTools.IsStrictMode(E)?E.documentElement:E.body;FCKDomTools.SetElementStyles(C,{'width':Math.max(H.scrollWidth,H.clientWidth,E.scrollWidth||0)-1+'px','height':Math.max(H.scrollHeight,H.clientHeight,E.scrollHeight||0)-1+'px'});};return {OpenDialog:function(dialogName,dialogTitle,dialogPage,width,height,customValue,resizable){if (!A) this.DisplayMainCover();var I={Title:dialogTitle,Page:dialogPage,Editor:window,CustomValue:customValue,TopWindow:D};FCK.ToolbarSet.CurrentInstance.Selection.Save(true);var J=FCKTools.GetViewPaneSize(D);var K={ 'X':0,'Y':0 };var L=FCKBrowserInfo.IsIE&&(!FCKBrowserInfo.IsIE7||!FCKTools.IsStrictMode(D.document));if (L) K=FCKTools.GetScrollPosition(D);var M=Math.max(K.Y+(J.Height-height-20)/2,0);var N=Math.max(K.X+(J.Width-width-20)/2,0);var O=E.createElement('iframe');FCKTools.ResetStyles(O);O.src=FCKConfig.BasePath+'fckdialog.html';O.frameBorder=0;O.allowTransparency=true;FCKDomTools.SetElementStyles(O,{'position':(L)?'absolute':'fixed','top':M+'px','left':N+'px','width':width+'px','height':height+'px','zIndex':F()});O._DialogArguments=I;E.body.appendChild(O);O._ParentDialog=A;A=O;},OnDialogClose:function(dialogWindow){var O=dialogWindow.frameElement;FCKDomTools.RemoveNode(O);if (O._ParentDialog){A=O._ParentDialog;O._ParentDialog.contentWindow.SetEnabled(true);}else{if (!FCKBrowserInfo.IsIE) FCK.Focus();this.HideMainCover();setTimeout(function(){ A=null;},0);FCK.ToolbarSet.CurrentInstance.Selection.Release();}},DisplayMainCover:function(){C=E.createElement('div');FCKTools.ResetStyles(C);FCKDomTools.SetElementStyles(C,{'position':'absolute','zIndex':F(),'top':'0px','left':'0px','backgroundColor':FCKConfig.BackgroundBlockerColor});FCKDomTools.SetOpacity(C,FCKConfig.BackgroundBlockerOpacity);if (FCKBrowserInfo.IsIE&&!FCKBrowserInfo.IsIE7){var Q=E.createElement('iframe');FCKTools.ResetStyles(Q);Q.hideFocus=true;Q.frameBorder=0;Q.src=FCKTools.GetVoidUrl();FCKDomTools.SetElementStyles(Q,{'width':'100%','height':'100%','position':'absolute','left':'0px','top':'0px','filter':'progid:DXImageTransform.Microsoft.Alpha(opacity=0)'});C.appendChild(Q);};FCKTools.AddEventListener(D,'resize',G);G();E.body.appendChild(C);FCKFocusManager.Lock();var R=FCK.ToolbarSet.CurrentInstance.GetInstanceObject('frameElement');R._fck_originalTabIndex=R.tabIndex;R.tabIndex=-1;},HideMainCover:function(){FCKDomTools.RemoveNode(C);FCKFocusManager.Unlock();var R=FCK.ToolbarSet.CurrentInstance.GetInstanceObject('frameElement');R.tabIndex=R._fck_originalTabIndex;FCKDomTools.ClearElementJSProperty(R,'_fck_originalTabIndex');},GetCover:function(){return C;}};})(); +var FCKMenuItem=function(A,B,C,D,E,F){this.Name=B;this.Label=C||B;this.IsDisabled=E;this.Icon=new FCKIcon(D);this.SubMenu=new FCKMenuBlockPanel();this.SubMenu.Parent=A;this.SubMenu.OnClick=FCKTools.CreateEventListener(FCKMenuItem_SubMenu_OnClick,this);this.CustomData=F;if (FCK.IECleanup) FCK.IECleanup.AddItem(this,FCKMenuItem_Cleanup);};FCKMenuItem.prototype.AddItem=function(A,B,C,D,E){this.HasSubMenu=true;return this.SubMenu.AddItem(A,B,C,D,E);};FCKMenuItem.prototype.AddSeparator=function(){this.SubMenu.AddSeparator();};FCKMenuItem.prototype.Create=function(A){var B=this.HasSubMenu;var C=FCKTools.GetElementDocument(A);var r=this.MainElement=A.insertRow(-1);r.className=this.IsDisabled?'MN_Item_Disabled':'MN_Item';if (!this.IsDisabled){FCKTools.AddEventListenerEx(r,'mouseover',FCKMenuItem_OnMouseOver,[this]);FCKTools.AddEventListenerEx(r,'click',FCKMenuItem_OnClick,[this]);if (!B) FCKTools.AddEventListenerEx(r,'mouseout',FCKMenuItem_OnMouseOut,[this]);};var D=r.insertCell(-1);D.className='MN_Icon';D.appendChild(this.Icon.CreateIconElement(C));D=r.insertCell(-1);D.className='MN_Label';D.noWrap=true;D.appendChild(C.createTextNode(this.Label));D=r.insertCell(-1);if (B){D.className='MN_Arrow';var E=D.appendChild(C.createElement('IMG'));E.src=FCK_IMAGES_PATH+'arrow_'+FCKLang.Dir+'.gif';E.width=4;E.height=7;this.SubMenu.Create();this.SubMenu.Panel.OnHide=FCKTools.CreateEventListener(FCKMenuItem_SubMenu_OnHide,this);}};FCKMenuItem.prototype.Activate=function(){this.MainElement.className='MN_Item_Over';if (this.HasSubMenu){this.SubMenu.Show(this.MainElement.offsetWidth+2,-2,this.MainElement);};FCKTools.RunFunction(this.OnActivate,this);};FCKMenuItem.prototype.Deactivate=function(){this.MainElement.className='MN_Item';if (this.HasSubMenu) this.SubMenu.Hide();};function FCKMenuItem_SubMenu_OnClick(A,B){FCKTools.RunFunction(B.OnClick,B,[A]);};function FCKMenuItem_SubMenu_OnHide(A){A.Deactivate();};function FCKMenuItem_OnClick(A,B){if (B.HasSubMenu) B.Activate();else{B.Deactivate();FCKTools.RunFunction(B.OnClick,B,[B]);}};function FCKMenuItem_OnMouseOver(A,B){B.Activate();};function FCKMenuItem_OnMouseOut(A,B){B.Deactivate();};function FCKMenuItem_Cleanup(){this.MainElement=null;}; +var FCKMenuBlock=function(){this._Items=[];};FCKMenuBlock.prototype.Count=function(){return this._Items.length;};FCKMenuBlock.prototype.AddItem=function(A,B,C,D,E){var F=new FCKMenuItem(this,A,B,C,D,E);F.OnClick=FCKTools.CreateEventListener(FCKMenuBlock_Item_OnClick,this);F.OnActivate=FCKTools.CreateEventListener(FCKMenuBlock_Item_OnActivate,this);this._Items.push(F);return F;};FCKMenuBlock.prototype.AddSeparator=function(){this._Items.push(new FCKMenuSeparator());};FCKMenuBlock.prototype.RemoveAllItems=function(){this._Items=[];var A=this._ItemsTable;if (A){while (A.rows.length>0) A.deleteRow(0);}};FCKMenuBlock.prototype.Create=function(A){if (!this._ItemsTable){if (FCK.IECleanup) FCK.IECleanup.AddItem(this,FCKMenuBlock_Cleanup);this._Window=FCKTools.GetElementWindow(A);var B=FCKTools.GetElementDocument(A);var C=A.appendChild(B.createElement('table'));C.cellPadding=0;C.cellSpacing=0;FCKTools.DisableSelection(C);var D=C.insertRow(-1).insertCell(-1);D.className='MN_Menu';var E=this._ItemsTable=D.appendChild(B.createElement('table'));E.cellPadding=0;E.cellSpacing=0;};for (var i=0;i0&&F.href.length==0);if (G) return;menu.AddSeparator();menu.AddItem('VisitLink',FCKLang.VisitLink);menu.AddSeparator();if (E) menu.AddItem('Link',FCKLang.EditLink,34);menu.AddItem('Unlink',FCKLang.RemoveLink,35);}}};case 'Image':return {AddItems:function(menu,tag,tagName){if (tagName=='IMG'&&!tag.getAttribute('_fckfakelement')){menu.AddSeparator();menu.AddItem('Image',FCKLang.ImageProperties,37);}}};case 'Anchor':return {AddItems:function(menu,tag,tagName){var F=FCKSelection.MoveToAncestorNode('A');var G=(F&&F.name.length>0);if (G||(tagName=='IMG'&&tag.getAttribute('_fckanchor'))){menu.AddSeparator();menu.AddItem('Anchor',FCKLang.AnchorProp,36);menu.AddItem('AnchorDelete',FCKLang.AnchorDelete);}}};case 'Flash':return {AddItems:function(menu,tag,tagName){if (tagName=='IMG'&&tag.getAttribute('_fckflash')){menu.AddSeparator();menu.AddItem('Flash',FCKLang.FlashProperties,38);}}};case 'Form':return {AddItems:function(menu,tag,tagName){if (FCKSelection.HasAncestorNode('FORM')){menu.AddSeparator();menu.AddItem('Form',FCKLang.FormProp,48);}}};case 'Checkbox':return {AddItems:function(menu,tag,tagName){if (tagName=='INPUT'&&tag.type=='checkbox'){menu.AddSeparator();menu.AddItem('Checkbox',FCKLang.CheckboxProp,49);}}};case 'Radio':return {AddItems:function(menu,tag,tagName){if (tagName=='INPUT'&&tag.type=='radio'){menu.AddSeparator();menu.AddItem('Radio',FCKLang.RadioButtonProp,50);}}};case 'TextField':return {AddItems:function(menu,tag,tagName){if (tagName=='INPUT'&&(tag.type=='text'||tag.type=='password')){menu.AddSeparator();menu.AddItem('TextField',FCKLang.TextFieldProp,51);}}};case 'HiddenField':return {AddItems:function(menu,tag,tagName){if (tagName=='IMG'&&tag.getAttribute('_fckinputhidden')){menu.AddSeparator();menu.AddItem('HiddenField',FCKLang.HiddenFieldProp,56);}}};case 'ImageButton':return {AddItems:function(menu,tag,tagName){if (tagName=='INPUT'&&tag.type=='image'){menu.AddSeparator();menu.AddItem('ImageButton',FCKLang.ImageButtonProp,55);}}};case 'Button':return {AddItems:function(menu,tag,tagName){if (tagName=='INPUT'&&(tag.type=='button'||tag.type=='submit'||tag.type=='reset')){menu.AddSeparator();menu.AddItem('Button',FCKLang.ButtonProp,54);}}};case 'Select':return {AddItems:function(menu,tag,tagName){if (tagName=='SELECT'){menu.AddSeparator();menu.AddItem('Select',FCKLang.SelectionFieldProp,53);}}};case 'Textarea':return {AddItems:function(menu,tag,tagName){if (tagName=='TEXTAREA'){menu.AddSeparator();menu.AddItem('Textarea',FCKLang.TextareaProp,52);}}};case 'BulletedList':return {AddItems:function(menu,tag,tagName){if (FCKSelection.HasAncestorNode('UL')){menu.AddSeparator();menu.AddItem('BulletedList',FCKLang.BulletedListProp,27);}}};case 'NumberedList':return {AddItems:function(menu,tag,tagName){if (FCKSelection.HasAncestorNode('OL')){menu.AddSeparator();menu.AddItem('NumberedList',FCKLang.NumberedListProp,26);}}};case 'DivContainer':return {AddItems:function(menu,tag,tagName){var J=FCKDomTools.GetSelectedDivContainers();if (J.length>0){menu.AddSeparator();menu.AddItem('EditDiv',FCKLang.EditDiv,75);menu.AddItem('DeleteDiv',FCKLang.DeleteDiv,76);}}};};return null;};function FCK_ContextMenu_OnBeforeOpen(){FCK.Events.FireEvent('OnSelectionChange');var A,sTagName;if ((A=FCKSelection.GetSelectedElement())) sTagName=A.tagName;var B=FCK.ContextMenu._InnerContextMenu;B.RemoveAllItems();var C=FCK.ContextMenu.Listeners;for (var i=0;i0){D=A.substr(0,B.index);this._sourceHtml=A.substr(B.index);}else{C=true;D=B[0];this._sourceHtml=A.substr(B[0].length);}}else{D=A;this._sourceHtml=null;};return { 'isTag':C,'value':D };},Each:function(A){var B;while ((B=this.Next())) A(B.isTag,B.value);}};var FCKHtmlIterator=function(A){this._sourceHtml=A;};FCKHtmlIterator.prototype={Next:function(){var A=this._sourceHtml;if (A==null) return null;var B=FCKRegexLib.HtmlTag.exec(A);var C=false;var D="";if (B){if (B.index>0){D=A.substr(0,B.index);this._sourceHtml=A.substr(B.index);}else{C=true;D=B[0];this._sourceHtml=A.substr(B[0].length);}}else{D=A;this._sourceHtml=null;};return { 'isTag':C,'value':D };},Each:function(A){var B;while ((B=this.Next())) A(B.isTag,B.value);}}; +var FCKPlugin=function(A,B,C){this.Name=A;this.BasePath=C?C:FCKConfig.PluginsPath;this.Path=this.BasePath+A+'/';if (!B||B.length==0) this.AvailableLangs=[];else this.AvailableLangs=B.split(',');};FCKPlugin.prototype.Load=function(){if (this.AvailableLangs.length>0){var A;if (this.AvailableLangs.IndexOf(FCKLanguageManager.ActiveLanguage.Code)>=0) A=FCKLanguageManager.ActiveLanguage.Code;else A=this.AvailableLangs[0];LoadScript(this.Path+'lang/'+A+'.js');};LoadScript(this.Path+'fckplugin.js');}; +var FCKPlugins=FCK.Plugins={};FCKPlugins.ItemsCount=0;FCKPlugins.Items={};FCKPlugins.Load=function(){var A=FCKPlugins.Items;for (var i=0;i", +DlgInfoTab : "Info", +DlgAlertUrl : "Voeg asseblief die URL in", + +// General Dialogs Labels +DlgGenNotSet : "", +DlgGenId : "Id", +DlgGenLangDir : "Taal rigting", +DlgGenLangDirLtr : "Links na regs (LTR)", +DlgGenLangDirRtl : "Regs na links (RTL)", +DlgGenLangCode : "Taal kode", +DlgGenAccessKey : "Toegang sleutel", +DlgGenName : "Naam", +DlgGenTabIndex : "Tab Index", +DlgGenLongDescr : "Lang beskreiwing URL", +DlgGenClass : "Skakel Tiepe", +DlgGenTitle : "Voorbeveelings Titel", +DlgGenContType : "Voorbeveelings inhoud soort", +DlgGenLinkCharset : "Geskakelde voorbeeld karakterstel", +DlgGenStyle : "Styl", + +// Image Dialog +DlgImgTitle : "Beeld eienskappe", +DlgImgInfoTab : "Beeld informasie", +DlgImgBtnUpload : "Stuur dit na die Server", +DlgImgURL : "URL", +DlgImgUpload : "Uplaai", +DlgImgAlt : "Alternatiewe beskrywing", +DlgImgWidth : "Weidte", +DlgImgHeight : "Hoogde", +DlgImgLockRatio : "Behou preporsie", +DlgBtnResetSize : "Herstel groote", +DlgImgBorder : "Kant", +DlgImgHSpace : "HSpasie", +DlgImgVSpace : "VSpasie", +DlgImgAlign : "Paradeer", +DlgImgAlignLeft : "Links", +DlgImgAlignAbsBottom: "Abs Onder", +DlgImgAlignAbsMiddle: "Abs Middel", +DlgImgAlignBaseline : "Baseline", +DlgImgAlignBottom : "Onder", +DlgImgAlignMiddle : "Middel", +DlgImgAlignRight : "Regs", +DlgImgAlignTextTop : "Text Bo", +DlgImgAlignTop : "Bo", +DlgImgPreview : "Voorskou", +DlgImgAlertUrl : "Voeg asseblief Beeld URL in.", +DlgImgLinkTab : "Skakel", + +// Flash Dialog +DlgFlashTitle : "Flash eienskappe", +DlgFlashChkPlay : "Automaties Speel", +DlgFlashChkLoop : "Herhaling", +DlgFlashChkMenu : "Laat Flash Menu toe", +DlgFlashScale : "Scale", +DlgFlashScaleAll : "Wys alles", +DlgFlashScaleNoBorder : "Geen kante", +DlgFlashScaleFit : "Presiese pas", + +// Link Dialog +DlgLnkWindowTitle : "Skakel", +DlgLnkInfoTab : "Skakel informasie", +DlgLnkTargetTab : "Mikpunt", + +DlgLnkType : "Skakel soort", +DlgLnkTypeURL : "URL", +DlgLnkTypeAnchor : "Skakel na plekhouers in text", +DlgLnkTypeEMail : "E-Mail", +DlgLnkProto : "Protokol", +DlgLnkProtoOther : "", +DlgLnkURL : "URL", +DlgLnkAnchorSel : "Kies 'n plekhouer", +DlgLnkAnchorByName : "Volgens plekhouer naam", +DlgLnkAnchorById : "Volgens element Id", +DlgLnkNoAnchors : "(Geen plekhouers beskikbaar in dokument}", +DlgLnkEMail : "E-Mail Adres", +DlgLnkEMailSubject : "Boodskap Opskrif", +DlgLnkEMailBody : "Boodskap Inhoud", +DlgLnkUpload : "Oplaai", +DlgLnkBtnUpload : "Stuur na Server", + +DlgLnkTarget : "Mikpunt", +DlgLnkTargetFrame : "", +DlgLnkTargetPopup : "", +DlgLnkTargetBlank : "Nuwe Venster (_blank)", +DlgLnkTargetParent : "Vorige Venster (_parent)", +DlgLnkTargetSelf : "Selfde Venster (_self)", +DlgLnkTargetTop : "Boonste Venster (_top)", +DlgLnkTargetFrameName : "Mikpunt Venster Naam", +DlgLnkPopWinName : "Popup Venster Naam", +DlgLnkPopWinFeat : "Popup Venster Geaartheid", +DlgLnkPopResize : "Verstelbare Groote", +DlgLnkPopLocation : "Adres Balk", +DlgLnkPopMenu : "Menu Balk", +DlgLnkPopScroll : "Gleibalkstuk", +DlgLnkPopStatus : "Status Balk", +DlgLnkPopToolbar : "Gereedskap Balk", +DlgLnkPopFullScrn : "Voll Skerm (IE)", +DlgLnkPopDependent : "Afhanklik (Netscape)", +DlgLnkPopWidth : "Weite", +DlgLnkPopHeight : "Hoogde", +DlgLnkPopLeft : "Links Posisie", +DlgLnkPopTop : "Bo Posisie", + +DlnLnkMsgNoUrl : "Voeg asseblief die URL in", +DlnLnkMsgNoEMail : "Voeg asseblief die e-mail adres in", +DlnLnkMsgNoAnchor : "Kies asseblief 'n plekhouer", +DlnLnkMsgInvPopName : "Die popup naam moet begin met alphabetiese karakters sonder spasies.", + +// Color Dialog +DlgColorTitle : "Kies Kleur", +DlgColorBtnClear : "Maak skoon", +DlgColorHighlight : "Highlight", +DlgColorSelected : "Geselekteer", + +// Smiley Dialog +DlgSmileyTitle : "Voeg Smiley by", + +// Special Character Dialog +DlgSpecialCharTitle : "Kies spesiale karakter", + +// Table Dialog +DlgTableTitle : "Tabel eienskappe", +DlgTableRows : "Reie", +DlgTableColumns : "Kolome", +DlgTableBorder : "Kant groote", +DlgTableAlign : "Parideering", +DlgTableAlignNotSet : "", +DlgTableAlignLeft : "Links", +DlgTableAlignCenter : "Middel", +DlgTableAlignRight : "Regs", +DlgTableWidth : "Weite", +DlgTableWidthPx : "pixels", +DlgTableWidthPc : "percent", +DlgTableHeight : "Hoogde", +DlgTableCellSpace : "Cell spasieering", +DlgTableCellPad : "Cell buffer", +DlgTableCaption : "Beskreiwing", +DlgTableSummary : "Opsomming", +DlgTableHeaders : "Headers", //MISSING +DlgTableHeadersNone : "None", //MISSING +DlgTableHeadersColumn : "First column", //MISSING +DlgTableHeadersRow : "First Row", //MISSING +DlgTableHeadersBoth : "Both", //MISSING + +// Table Cell Dialog +DlgCellTitle : "Cell eienskappe", +DlgCellWidth : "Weite", +DlgCellWidthPx : "pixels", +DlgCellWidthPc : "percent", +DlgCellHeight : "Hoogde", +DlgCellWordWrap : "Woord Wrap", +DlgCellWordWrapNotSet : "", +DlgCellWordWrapYes : "Ja", +DlgCellWordWrapNo : "Nee", +DlgCellHorAlign : "Horisontale rigting", +DlgCellHorAlignNotSet : "", +DlgCellHorAlignLeft : "Links", +DlgCellHorAlignCenter : "Middel", +DlgCellHorAlignRight: "Regs", +DlgCellVerAlign : "Vertikale rigting", +DlgCellVerAlignNotSet : "", +DlgCellVerAlignTop : "Bo", +DlgCellVerAlignMiddle : "Middel", +DlgCellVerAlignBottom : "Onder", +DlgCellVerAlignBaseline : "Baseline", +DlgCellType : "Cell Type", //MISSING +DlgCellTypeData : "Data", //MISSING +DlgCellTypeHeader : "Header", //MISSING +DlgCellRowSpan : "Rei strekking", +DlgCellCollSpan : "Kolom strekking", +DlgCellBackColor : "Agtergrond Kleur", +DlgCellBorderColor : "Kant Kleur", +DlgCellBtnSelect : "Keuse...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "Find and Replace", //MISSING + +// Find Dialog +DlgFindTitle : "Vind", +DlgFindFindBtn : "Vind", +DlgFindNotFoundMsg : "Die gespesifiseerde karakters word nie gevind nie.", + +// Replace Dialog +DlgReplaceTitle : "Vervang", +DlgReplaceFindLbl : "Soek wat:", +DlgReplaceReplaceLbl : "Vervang met:", +DlgReplaceCaseChk : "Vergelyk karakter skryfweise", +DlgReplaceReplaceBtn : "Vervang", +DlgReplaceReplAllBtn : "Vervang alles", +DlgReplaceWordChk : "Vergelyk komplete woord", + +// Paste Operations / Dialog +PasteErrorCut : "U browser se sekuriteit instelling behinder die uitsny aksie. Gebruik asseblief die sleutel kombenasie(Ctrl+X).", +PasteErrorCopy : "U browser se sekuriteit instelling behinder die kopieerings aksie. Gebruik asseblief die sleutel kombenasie(Ctrl+C).", + +PasteAsText : "Voeg slegs karakters by", +PasteFromWord : "Byvoeging uit Word", + +DlgPasteMsg2 : "Voeg asseblief die inhoud in die gegewe box by met sleutel kombenasie(Ctrl+V) en druk OK.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING +DlgPasteIgnoreFont : "Ignoreer karakter soort defenisies", +DlgPasteRemoveStyles : "Verweider Styl defenisies", + +// Color Picker +ColorAutomatic : "Automaties", +ColorMoreColors : "Meer Kleure...", + +// Document Properties +DocProps : "Dokument Eienskappe", + +// Anchor Dialog +DlgAnchorTitle : "Plekhouer Eienskappe", +DlgAnchorName : "Plekhouer Naam", +DlgAnchorErrorName : "Voltooi die plekhouer naam asseblief", + +// Speller Pages Dialog +DlgSpellNotInDic : "Nie in woordeboek nie", +DlgSpellChangeTo : "Verander na", +DlgSpellBtnIgnore : "Ignoreer", +DlgSpellBtnIgnoreAll : "Ignoreer na-volgende", +DlgSpellBtnReplace : "Vervang", +DlgSpellBtnReplaceAll : "vervang na-volgende", +DlgSpellBtnUndo : "Ont-skep", +DlgSpellNoSuggestions : "- Geen voorstel -", +DlgSpellProgress : "Spelling word beproef...", +DlgSpellNoMispell : "Spellproef kompleet: Geen foute", +DlgSpellNoChanges : "Spellproef kompleet: Geen woord veranderings", +DlgSpellOneChange : "Spellproef kompleet: Een woord verander", +DlgSpellManyChanges : "Spellproef kompleet: %1 woorde verander", + +IeSpellDownload : "Geen Spellproefer geinstaleer nie. Wil U dit aflaai?", + +// Button Dialog +DlgButtonText : "Karakters (Waarde)", +DlgButtonType : "Soort", +DlgButtonTypeBtn : "Knop", +DlgButtonTypeSbm : "Indien", +DlgButtonTypeRst : "Reset", + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "Naam", +DlgCheckboxValue : "Waarde", +DlgCheckboxSelected : "Uitgekies", + +// Form Dialog +DlgFormName : "Naam", +DlgFormAction : "Aksie", +DlgFormMethod : "Metode", + +// Select Field Dialog +DlgSelectName : "Naam", +DlgSelectValue : "Waarde", +DlgSelectSize : "Grote", +DlgSelectLines : "lyne", +DlgSelectChkMulti : "Laat meerere keuses toe", +DlgSelectOpAvail : "Beskikbare Opsies", +DlgSelectOpText : "Karakters", +DlgSelectOpValue : "Waarde", +DlgSelectBtnAdd : "Byvoeg", +DlgSelectBtnModify : "Verander", +DlgSelectBtnUp : "Op", +DlgSelectBtnDown : "Af", +DlgSelectBtnSetValue : "Stel as uitgekiesde waarde", +DlgSelectBtnDelete : "Verweider", + +// Textarea Dialog +DlgTextareaName : "Naam", +DlgTextareaCols : "Kolom", +DlgTextareaRows : "Reie", + +// Text Field Dialog +DlgTextName : "Naam", +DlgTextValue : "Waarde", +DlgTextCharWidth : "Karakter weite", +DlgTextMaxChars : "Maximale karakters", +DlgTextType : "Soort", +DlgTextTypeText : "Karakters", +DlgTextTypePass : "Wagwoord", + +// Hidden Field Dialog +DlgHiddenName : "Naam", +DlgHiddenValue : "Waarde", + +// Bulleted List Dialog +BulletedListProp : "Gepunkte lys eienskappe", +NumberedListProp : "Genommerde lys eienskappe", +DlgLstStart : "Begin", +DlgLstType : "Soort", +DlgLstTypeCircle : "Sirkel", +DlgLstTypeDisc : "Skyf", +DlgLstTypeSquare : "Vierkant", +DlgLstTypeNumbers : "Nommer (1, 2, 3)", +DlgLstTypeLCase : "Klein Letters (a, b, c)", +DlgLstTypeUCase : "Hoof Letters (A, B, C)", +DlgLstTypeSRoman : "Klein Romeinse nommers (i, ii, iii)", +DlgLstTypeLRoman : "Groot Romeinse nommers (I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "Algemeen", +DlgDocBackTab : "Agtergrond", +DlgDocColorsTab : "Kleure en Rante", +DlgDocMetaTab : "Meta Data", + +DlgDocPageTitle : "Bladsy Opskrif", +DlgDocLangDir : "Taal rigting", +DlgDocLangDirLTR : "Link na Regs (LTR)", +DlgDocLangDirRTL : "Regs na Links (RTL)", +DlgDocLangCode : "Taal Kode", +DlgDocCharSet : "Karakterstel Kodeering", +DlgDocCharSetCE : "Sentraal Europa", +DlgDocCharSetCT : "Chinees Traditioneel (Big5)", +DlgDocCharSetCR : "Cyrillic", +DlgDocCharSetGR : "Grieks", +DlgDocCharSetJP : "Japanees", +DlgDocCharSetKR : "Koreans", +DlgDocCharSetTR : "Turks", +DlgDocCharSetUN : "Unicode (UTF-8)", +DlgDocCharSetWE : "Western European", +DlgDocCharSetOther : "Ander Karakterstel Kodeering", + +DlgDocDocType : "Dokument Opskrif Soort", +DlgDocDocTypeOther : "Ander Dokument Opskrif Soort", +DlgDocIncXHTML : "Voeg XHTML verklaring by", +DlgDocBgColor : "Agtergrond kleur", +DlgDocBgImage : "Agtergrond Beeld URL", +DlgDocBgNoScroll : "Vasgeklemde Agtergrond", +DlgDocCText : "Karakters", +DlgDocCLink : "Skakel", +DlgDocCVisited : "Besoekte Skakel", +DlgDocCActive : "Aktiewe Skakel", +DlgDocMargins : "Bladsy Rante", +DlgDocMaTop : "Bo", +DlgDocMaLeft : "Links", +DlgDocMaRight : "Regs", +DlgDocMaBottom : "Onder", +DlgDocMeIndex : "Dokument Index Sleutelwoorde(comma verdeelt)", +DlgDocMeDescr : "Dokument Beskrywing", +DlgDocMeAuthor : "Skrywer", +DlgDocMeCopy : "Kopiereg", +DlgDocPreview : "Voorskou", + +// Templates Dialog +Templates : "Templates", +DlgTemplatesTitle : "Inhoud Templates", +DlgTemplatesSelMsg : "Kies die template om te gebruik in die editor
(Inhoud word vervang!):", +DlgTemplatesLoading : "Templates word gelaai. U geduld asseblief...", +DlgTemplatesNoTpl : "(Geen templates gedefinieerd)", +DlgTemplatesReplace : "Vervang bestaande inhoud", + +// About Dialog +DlgAboutAboutTab : "Meer oor", +DlgAboutBrowserInfoTab : "Blaai Informasie deur", +DlgAboutLicenseTab : "Lesensie", +DlgAboutVersion : "weergawe", +DlgAboutInfo : "Vir meer informasie gaan na ", + +// Div Dialog +DlgDivGeneralTab : "General", //MISSING +DlgDivAdvancedTab : "Advanced", //MISSING +DlgDivStyle : "Style", //MISSING +DlgDivInlineStyle : "Inline Style", //MISSING + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/ar.js b/fckeditor/editor/lang/ar.js new file mode 100644 index 0000000..dc36dd6 --- /dev/null +++ b/fckeditor/editor/lang/ar.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * Arabic language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "rtl", + +ToolbarCollapse : "ضم شريط الأدوات", +ToolbarExpand : "تمدد شريط الأدوات", + +// Toolbar Items and Context Menu +Save : "حفظ", +NewPage : "صفحة جديدة", +Preview : "معاينة الصفحة", +Cut : "قص", +Copy : "نسخ", +Paste : "لصق", +PasteText : "لصق كنص بسيط", +PasteWord : "لصق من وورد", +Print : "طباعة", +SelectAll : "تحديد الكل", +RemoveFormat : "إزالة التنسيقات", +InsertLinkLbl : "رابط", +InsertLink : "إدراج/تحرير رابط", +RemoveLink : "إزالة رابط", +VisitLink : "افتح الرابط", +Anchor : "إدراج/تحرير إشارة مرجعية", +AnchorDelete : "إزالة إشارة مرجعية", +InsertImageLbl : "صورة", +InsertImage : "إدراج/تحرير صورة", +InsertFlashLbl : "فلاش", +InsertFlash : "إدراج/تحرير فيلم فلاش", +InsertTableLbl : "جدول", +InsertTable : "إدراج/تحرير جدول", +InsertLineLbl : "خط فاصل", +InsertLine : "إدراج خط فاصل", +InsertSpecialCharLbl: "رموز", +InsertSpecialChar : "إدراج رموز..ِ", +InsertSmileyLbl : "ابتسامات", +InsertSmiley : "إدراج ابتسامات", +About : "حول FCKeditor", +Bold : "غامق", +Italic : "مائل", +Underline : "تسطير", +StrikeThrough : "يتوسطه خط", +Subscript : "منخفض", +Superscript : "مرتفع", +LeftJustify : "محاذاة إلى اليسار", +CenterJustify : "توسيط", +RightJustify : "محاذاة إلى اليمين", +BlockJustify : "ضبط", +DecreaseIndent : "إنقاص المسافة البادئة", +IncreaseIndent : "زيادة المسافة البادئة", +Blockquote : "اقتباس", +CreateDiv : "إنشاء حاوية Div", +EditDiv : "تعديل حاوية Div", +DeleteDiv : "إزالة حاوية Div", +Undo : "تراجع", +Redo : "إعادة", +NumberedListLbl : "تعداد رقمي", +NumberedList : "إدراج/إلغاء تعداد رقمي", +BulletedListLbl : "تعداد نقطي", +BulletedList : "إدراج/إلغاء تعداد نقطي", +ShowTableBorders : "معاينة حدود الجداول", +ShowDetails : "معاينة التفاصيل", +Style : "نمط", +FontFormat : "تنسيق", +Font : "خط", +FontSize : "حجم الخط", +TextColor : "لون النص", +BGColor : "لون الخلفية", +Source : "شفرة المصدر", +Find : "بحث", +Replace : "إستبدال", +SpellCheck : "تدقيق إملائي", +UniversalKeyboard : "لوحة المفاتيح العالمية", +PageBreakLbl : "فصل الصفحة", +PageBreak : "إدخال صفحة جديدة", + +Form : "نموذج", +Checkbox : "خانة إختيار", +RadioButton : "زر خيار", +TextField : "مربع نص", +Textarea : "ناحية نص", +HiddenField : "إدراج حقل خفي", +Button : "زر ضغط", +SelectionField : "قائمة منسدلة", +ImageButton : "زر صورة", + +FitWindow : "تكبير حجم المحرر", +ShowBlocks : "مخطط تفصيلي", + +// Context Menu +EditLink : "تحرير رابط", +CellCM : "خلية", +RowCM : "صف", +ColumnCM : "عمود", +InsertRowAfter : "إدراج صف بعد", +InsertRowBefore : "إدراج صف قبل", +DeleteRows : "حذف صفوف", +InsertColumnAfter : "إدراج عمود بعد", +InsertColumnBefore : "إدراج عمود قبل", +DeleteColumns : "حذف أعمدة", +InsertCellAfter : "إدراج خلية بعد", +InsertCellBefore : "إدراج خلية قبل", +DeleteCells : "حذف خلايا", +MergeCells : "دمج خلايا", +MergeRight : "دمج لليمين", +MergeDown : "دمج للأسفل", +HorizontalSplitCell : "تقسيم الخلية أفقياً", +VerticalSplitCell : "تقسيم الخلية عمودياً", +TableDelete : "حذف الجدول", +CellProperties : "خصائص الخلية", +TableProperties : "خصائص الجدول", +ImageProperties : "خصائص الصورة", +FlashProperties : "خصائص فيلم الفلاش", + +AnchorProp : "خصائص الإشارة المرجعية", +ButtonProp : "خصائص زر الضغط", +CheckboxProp : "خصائص خانة الإختيار", +HiddenFieldProp : "خصائص الحقل الخفي", +RadioButtonProp : "خصائص زر الخيار", +ImageButtonProp : "خصائص زر الصورة", +TextFieldProp : "خصائص مربع النص", +SelectionFieldProp : "خصائص القائمة المنسدلة", +TextareaProp : "خصائص ناحية النص", +FormProp : "خصائص النموذج", + +FontFormats : "عادي;منسّق;دوس;العنوان 1;العنوان 2;العنوان 3;العنوان 4;العنوان 5;العنوان 6", + +// Alerts and Messages +ProcessingXHTML : "إنتظر قليلاً ريثما تتم معالَجة‏ XHTML. لن يستغرق طويلاً...", +Done : "تم", +PasteWordConfirm : "يبدو أن النص المراد لصقه منسوخ من برنامج وورد. هل تود تنظيفه قبل الشروع في عملية اللصق؟", +NotCompatiblePaste : "هذه الميزة تحتاج لمتصفح من النوعInternet Explorer إصدار 5.5 فما فوق. هل تود اللصق دون تنظيف الكود؟", +UnknownToolbarItem : "عنصر شريط أدوات غير معروف \"%1\"", +UnknownCommand : "أمر غير معروف \"%1\"", +NotImplemented : "لم يتم دعم هذا الأمر", +UnknownToolbarSet : "لم أتمكن من العثور على طقم الأدوات \"%1\" ", +NoActiveX : "لتأمين متصفحك يجب أن تحدد بعض مميزات المحرر. يتوجب عليك تمكين الخيار \"Run ActiveX controls and plug-ins\". قد تواجة أخطاء وتلاحظ مميزات مفقودة", +BrowseServerBlocked : "لايمكن فتح مصدر المتصفح. فضلا يجب التأكد بأن جميع موانع النوافذ المنبثقة معطلة", +DialogBlocked : "لايمكن فتح نافذة الحوار . فضلا تأكد من أن مانع النوافذ المنبثة معطل .", +VisitLinkBlocked : "لا يمكن فتح نافذة جديدة. تأكد من إيقاف كل مانعي فتح النوافذ من العمل.", + +// Dialogs +DlgBtnOK : "موافق", +DlgBtnCancel : "إلغاء الأمر", +DlgBtnClose : "إغلاق", +DlgBtnBrowseServer : "تصفح الخادم", +DlgAdvancedTag : "متقدم", +DlgOpOther : "<أخرى>", +DlgInfoTab : "معلومات", +DlgAlertUrl : "الرجاء كتابة عنوان الإنترنت", + +// General Dialogs Labels +DlgGenNotSet : "<بدون تحديد>", +DlgGenId : "الرقم", +DlgGenLangDir : "إتجاه النص", +DlgGenLangDirLtr : "اليسار لليمين (LTR)", +DlgGenLangDirRtl : "اليمين لليسار (RTL)", +DlgGenLangCode : "رمز اللغة", +DlgGenAccessKey : "مفاتيح الإختصار", +DlgGenName : "الاسم", +DlgGenTabIndex : "الترتيب", +DlgGenLongDescr : "عنوان الوصف المفصّل", +DlgGenClass : "فئات التنسيق", +DlgGenTitle : "تلميح الشاشة", +DlgGenContType : "نوع التلميح", +DlgGenLinkCharset : "ترميز المادة المطلوبة", +DlgGenStyle : "نمط", + +// Image Dialog +DlgImgTitle : "خصائص الصورة", +DlgImgInfoTab : "معلومات الصورة", +DlgImgBtnUpload : "أرسلها للخادم", +DlgImgURL : "موقع الصورة", +DlgImgUpload : "رفع", +DlgImgAlt : "الوصف", +DlgImgWidth : "العرض", +DlgImgHeight : "الإرتفاع", +DlgImgLockRatio : "تناسق الحجم", +DlgBtnResetSize : "إستعادة الحجم الأصلي", +DlgImgBorder : "سمك الحدود", +DlgImgHSpace : "تباعد أفقي", +DlgImgVSpace : "تباعد عمودي", +DlgImgAlign : "محاذاة", +DlgImgAlignLeft : "يسار", +DlgImgAlignAbsBottom: "أسفل النص", +DlgImgAlignAbsMiddle: "وسط السطر", +DlgImgAlignBaseline : "على السطر", +DlgImgAlignBottom : "أسفل", +DlgImgAlignMiddle : "وسط", +DlgImgAlignRight : "يمين", +DlgImgAlignTextTop : "أعلى النص", +DlgImgAlignTop : "أعلى", +DlgImgPreview : "معاينة", +DlgImgAlertUrl : "فضلاً أكتب الموقع الذي توجد عليه هذه الصورة.", +DlgImgLinkTab : "الرابط", + +// Flash Dialog +DlgFlashTitle : "خصائص فيلم الفلاش", +DlgFlashChkPlay : "تشغيل تلقائي", +DlgFlashChkLoop : "تكرار", +DlgFlashChkMenu : "تمكين قائمة فيلم الفلاش", +DlgFlashScale : "الحجم", +DlgFlashScaleAll : "إظهار الكل", +DlgFlashScaleNoBorder : "بلا حدود", +DlgFlashScaleFit : "ضبط تام", + +// Link Dialog +DlgLnkWindowTitle : "إرتباط تشعبي", +DlgLnkInfoTab : "معلومات الرابط", +DlgLnkTargetTab : "الهدف", + +DlgLnkType : "نوع الربط", +DlgLnkTypeURL : "العنوان", +DlgLnkTypeAnchor : "مكان في هذا المستند", +DlgLnkTypeEMail : "بريد إلكتروني", +DlgLnkProto : "البروتوكول", +DlgLnkProtoOther : "<أخرى>", +DlgLnkURL : "الموقع", +DlgLnkAnchorSel : "اختر علامة مرجعية", +DlgLnkAnchorByName : "حسب اسم العلامة", +DlgLnkAnchorById : "حسب تعريف العنصر", +DlgLnkNoAnchors : "(لا يوجد علامات مرجعية في هذا المستند)", +DlgLnkEMail : "عنوان بريد إلكتروني", +DlgLnkEMailSubject : "موضوع الرسالة", +DlgLnkEMailBody : "محتوى الرسالة", +DlgLnkUpload : "رفع", +DlgLnkBtnUpload : "أرسلها للخادم", + +DlgLnkTarget : "الهدف", +DlgLnkTargetFrame : "<إطار>", +DlgLnkTargetPopup : "<نافذة منبثقة>", +DlgLnkTargetBlank : "إطار جديد (_blank)", +DlgLnkTargetParent : "الإطار الأصل (_parent)", +DlgLnkTargetSelf : "نفس الإطار (_self)", +DlgLnkTargetTop : "صفحة كاملة (_top)", +DlgLnkTargetFrameName : "اسم الإطار الهدف", +DlgLnkPopWinName : "تسمية النافذة المنبثقة", +DlgLnkPopWinFeat : "خصائص النافذة المنبثقة", +DlgLnkPopResize : "قابلة للتحجيم", +DlgLnkPopLocation : "شريط العنوان", +DlgLnkPopMenu : "القوائم الرئيسية", +DlgLnkPopScroll : "أشرطة التمرير", +DlgLnkPopStatus : "شريط الحالة السفلي", +DlgLnkPopToolbar : "شريط الأدوات", +DlgLnkPopFullScrn : "ملئ الشاشة (IE)", +DlgLnkPopDependent : "تابع (Netscape)", +DlgLnkPopWidth : "العرض", +DlgLnkPopHeight : "الإرتفاع", +DlgLnkPopLeft : "التمركز لليسار", +DlgLnkPopTop : "التمركز للأعلى", + +DlnLnkMsgNoUrl : "فضلاً أدخل عنوان الموقع الذي يشير إليه الرابط", +DlnLnkMsgNoEMail : "فضلاً أدخل عنوان البريد الإلكتروني", +DlnLnkMsgNoAnchor : "فضلاً حدد العلامة المرجعية المرغوبة", +DlnLnkMsgInvPopName : "اسم النافذة المنبثقة يجب أن يبدأ بحرف أبجدي دون مسافات", + +// Color Dialog +DlgColorTitle : "اختر لوناً", +DlgColorBtnClear : "مسح", +DlgColorHighlight : "تحديد", +DlgColorSelected : "إختيار", + +// Smiley Dialog +DlgSmileyTitle : "إدراج إبتسامات ", + +// Special Character Dialog +DlgSpecialCharTitle : "إدراج رمز", + +// Table Dialog +DlgTableTitle : "إدراج جدول", +DlgTableRows : "صفوف", +DlgTableColumns : "أعمدة", +DlgTableBorder : "سمك الحدود", +DlgTableAlign : "المحاذاة", +DlgTableAlignNotSet : "<بدون تحديد>", +DlgTableAlignLeft : "يسار", +DlgTableAlignCenter : "وسط", +DlgTableAlignRight : "يمين", +DlgTableWidth : "العرض", +DlgTableWidthPx : "بكسل", +DlgTableWidthPc : "بالمئة", +DlgTableHeight : "الإرتفاع", +DlgTableCellSpace : "تباعد الخلايا", +DlgTableCellPad : "المسافة البادئة", +DlgTableCaption : "الوصف", +DlgTableSummary : "الخلاصة", +DlgTableHeaders : "Headers", //MISSING +DlgTableHeadersNone : "None", //MISSING +DlgTableHeadersColumn : "First column", //MISSING +DlgTableHeadersRow : "First Row", //MISSING +DlgTableHeadersBoth : "Both", //MISSING + +// Table Cell Dialog +DlgCellTitle : "خصائص الخلية", +DlgCellWidth : "العرض", +DlgCellWidthPx : "بكسل", +DlgCellWidthPc : "بالمئة", +DlgCellHeight : "الإرتفاع", +DlgCellWordWrap : "التفاف النص", +DlgCellWordWrapNotSet : "<بدون تحديد>", +DlgCellWordWrapYes : "نعم", +DlgCellWordWrapNo : "لا", +DlgCellHorAlign : "المحاذاة الأفقية", +DlgCellHorAlignNotSet : "<بدون تحديد>", +DlgCellHorAlignLeft : "يسار", +DlgCellHorAlignCenter : "وسط", +DlgCellHorAlignRight: "يمين", +DlgCellVerAlign : "المحاذاة العمودية", +DlgCellVerAlignNotSet : "<بدون تحديد>", +DlgCellVerAlignTop : "أعلى", +DlgCellVerAlignMiddle : "وسط", +DlgCellVerAlignBottom : "أسفل", +DlgCellVerAlignBaseline : "على السطر", +DlgCellType : "Cell Type", //MISSING +DlgCellTypeData : "Data", //MISSING +DlgCellTypeHeader : "Header", //MISSING +DlgCellRowSpan : "إمتداد الصفوف", +DlgCellCollSpan : "إمتداد الأعمدة", +DlgCellBackColor : "لون الخلفية", +DlgCellBorderColor : "لون الحدود", +DlgCellBtnSelect : "حدّد...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "بحث واستبدال", + +// Find Dialog +DlgFindTitle : "بحث", +DlgFindFindBtn : "ابحث", +DlgFindNotFoundMsg : "لم يتم العثور على النص المحدد.", + +// Replace Dialog +DlgReplaceTitle : "إستبدال", +DlgReplaceFindLbl : "البحث عن:", +DlgReplaceReplaceLbl : "إستبدال بـ:", +DlgReplaceCaseChk : "مطابقة حالة الأحرف", +DlgReplaceReplaceBtn : "إستبدال", +DlgReplaceReplAllBtn : "إستبدال الكل", +DlgReplaceWordChk : "الكلمة بالكامل فقط", + +// Paste Operations / Dialog +PasteErrorCut : "الإعدادات الأمنية للمتصفح الذي تستخدمه تمنع القص التلقائي. فضلاً إستخدم لوحة المفاتيح لفعل ذلك (Ctrl+X).", +PasteErrorCopy : "الإعدادات الأمنية للمتصفح الذي تستخدمه تمنع النسخ التلقائي. فضلاً إستخدم لوحة المفاتيح لفعل ذلك (Ctrl+C).", + +PasteAsText : "لصق كنص بسيط", +PasteFromWord : "لصق من وورد", + +DlgPasteMsg2 : "الصق داخل الصندوق بإستخدام زرّي (Ctrl+V) في لوحة المفاتيح، ثم اضغط زر موافق.", +DlgPasteSec : "نظراً لإعدادات الأمان الخاصة بمتصفحك، لن يتمكن هذا المحرر من الوصول لمحتوى حافظتك، لذا وجب عليك لصق المحتوى مرة أخرى في هذه النافذة.", +DlgPasteIgnoreFont : "تجاهل تعريفات أسماء الخطوط", +DlgPasteRemoveStyles : "إزالة تعريفات الأنماط", + +// Color Picker +ColorAutomatic : "تلقائي", +ColorMoreColors : "ألوان إضافية...", + +// Document Properties +DocProps : "خصائص الصفحة", + +// Anchor Dialog +DlgAnchorTitle : "خصائص إشارة مرجعية", +DlgAnchorName : "اسم الإشارة المرجعية", +DlgAnchorErrorName : "الرجاء كتابة اسم الإشارة المرجعية", + +// Speller Pages Dialog +DlgSpellNotInDic : "ليست في القاموس", +DlgSpellChangeTo : "التغيير إلى", +DlgSpellBtnIgnore : "تجاهل", +DlgSpellBtnIgnoreAll : "تجاهل الكل", +DlgSpellBtnReplace : "تغيير", +DlgSpellBtnReplaceAll : "تغيير الكل", +DlgSpellBtnUndo : "تراجع", +DlgSpellNoSuggestions : "- لا توجد إقتراحات -", +DlgSpellProgress : "جاري التدقيق إملائياً", +DlgSpellNoMispell : "تم إكمال التدقيق الإملائي: لم يتم العثور على أي أخطاء إملائية", +DlgSpellNoChanges : "تم إكمال التدقيق الإملائي: لم يتم تغيير أي كلمة", +DlgSpellOneChange : "تم إكمال التدقيق الإملائي: تم تغيير كلمة واحدة فقط", +DlgSpellManyChanges : "تم إكمال التدقيق الإملائي: تم تغيير %1 كلمات\كلمة", + +IeSpellDownload : "المدقق الإملائي (الإنجليزي) غير مثبّت. هل تود تحميله الآن؟", + +// Button Dialog +DlgButtonText : "القيمة/التسمية", +DlgButtonType : "نوع الزر", +DlgButtonTypeBtn : "زر", +DlgButtonTypeSbm : "إرسال", +DlgButtonTypeRst : "إعادة تعيين", + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "الاسم", +DlgCheckboxValue : "القيمة", +DlgCheckboxSelected : "محدد", + +// Form Dialog +DlgFormName : "الاسم", +DlgFormAction : "اسم الملف", +DlgFormMethod : "الأسلوب", + +// Select Field Dialog +DlgSelectName : "الاسم", +DlgSelectValue : "القيمة", +DlgSelectSize : "الحجم", +DlgSelectLines : "الأسطر", +DlgSelectChkMulti : "السماح بتحديدات متعددة", +DlgSelectOpAvail : "الخيارات المتاحة", +DlgSelectOpText : "النص", +DlgSelectOpValue : "القيمة", +DlgSelectBtnAdd : "إضافة", +DlgSelectBtnModify : "تعديل", +DlgSelectBtnUp : "تحريك لأعلى", +DlgSelectBtnDown : "تحريك لأسفل", +DlgSelectBtnSetValue : "إجعلها محددة", +DlgSelectBtnDelete : "إزالة", + +// Textarea Dialog +DlgTextareaName : "الاسم", +DlgTextareaCols : "الأعمدة", +DlgTextareaRows : "الصفوف", + +// Text Field Dialog +DlgTextName : "الاسم", +DlgTextValue : "القيمة", +DlgTextCharWidth : "العرض بالأحرف", +DlgTextMaxChars : "عدد الحروف الأقصى", +DlgTextType : "نوع المحتوى", +DlgTextTypeText : "نص", +DlgTextTypePass : "كلمة مرور", + +// Hidden Field Dialog +DlgHiddenName : "الاسم", +DlgHiddenValue : "القيمة", + +// Bulleted List Dialog +BulletedListProp : "خصائص التعداد النقطي", +NumberedListProp : "خصائص التعداد الرقمي", +DlgLstStart : "البدء عند", +DlgLstType : "النوع", +DlgLstTypeCircle : "دائرة", +DlgLstTypeDisc : "قرص", +DlgLstTypeSquare : "مربع", +DlgLstTypeNumbers : "أرقام (1، 2، 3)َ", +DlgLstTypeLCase : "حروف صغيرة (a, b, c)َ", +DlgLstTypeUCase : "حروف كبيرة (A, B, C)َ", +DlgLstTypeSRoman : "ترقيم روماني صغير (i, ii, iii)َ", +DlgLstTypeLRoman : "ترقيم روماني كبير (I, II, III)َ", + +// Document Properties Dialog +DlgDocGeneralTab : "عام", +DlgDocBackTab : "الخلفية", +DlgDocColorsTab : "الألوان والهوامش", +DlgDocMetaTab : "المعرّفات الرأسية", + +DlgDocPageTitle : "عنوان الصفحة", +DlgDocLangDir : "إتجاه اللغة", +DlgDocLangDirLTR : "اليسار لليمين (LTR)", +DlgDocLangDirRTL : "اليمين لليسار (RTL)", +DlgDocLangCode : "رمز اللغة", +DlgDocCharSet : "ترميز الحروف", +DlgDocCharSetCE : "أوروبا الوسطى", +DlgDocCharSetCT : "الصينية التقليدية (Big5)", +DlgDocCharSetCR : "السيريلية", +DlgDocCharSetGR : "اليونانية", +DlgDocCharSetJP : "اليابانية", +DlgDocCharSetKR : "الكورية", +DlgDocCharSetTR : "التركية", +DlgDocCharSetUN : "Unicode (UTF-8)", +DlgDocCharSetWE : "أوروبا الغربية", +DlgDocCharSetOther : "ترميز آخر", + +DlgDocDocType : "ترويسة نوع الصفحة", +DlgDocDocTypeOther : "ترويسة نوع صفحة أخرى", +DlgDocIncXHTML : "تضمين إعلانات‏ لغة XHTMLَ", +DlgDocBgColor : "لون الخلفية", +DlgDocBgImage : "رابط الصورة الخلفية", +DlgDocBgNoScroll : "جعلها علامة مائية", +DlgDocCText : "النص", +DlgDocCLink : "الروابط", +DlgDocCVisited : "المزارة", +DlgDocCActive : "النشطة", +DlgDocMargins : "هوامش الصفحة", +DlgDocMaTop : "علوي", +DlgDocMaLeft : "أيسر", +DlgDocMaRight : "أيمن", +DlgDocMaBottom : "سفلي", +DlgDocMeIndex : "الكلمات الأساسية (مفصولة بفواصل)َ", +DlgDocMeDescr : "وصف الصفحة", +DlgDocMeAuthor : "الكاتب", +DlgDocMeCopy : "المالك", +DlgDocPreview : "معاينة", + +// Templates Dialog +Templates : "القوالب", +DlgTemplatesTitle : "قوالب المحتوى", +DlgTemplatesSelMsg : "اختر القالب الذي تود وضعه في المحرر
(سيتم فقدان المحتوى الحالي):", +DlgTemplatesLoading : "جاري تحميل قائمة القوالب، الرجاء الإنتظار...", +DlgTemplatesNoTpl : "(لم يتم تعريف أي قالب)", +DlgTemplatesReplace : "استبدال المحتوى", + +// About Dialog +DlgAboutAboutTab : "نبذة", +DlgAboutBrowserInfoTab : "معلومات متصفحك", +DlgAboutLicenseTab : "الترخيص", +DlgAboutVersion : "الإصدار", +DlgAboutInfo : "لمزيد من المعلومات تفضل بزيارة", + +// Div Dialog +DlgDivGeneralTab : "عام", +DlgDivAdvancedTab : "متقدم", +DlgDivStyle : "المظهر", +DlgDivInlineStyle : "المظهر المضمن", + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/bg.js b/fckeditor/editor/lang/bg.js new file mode 100644 index 0000000..dfe970d --- /dev/null +++ b/fckeditor/editor/lang/bg.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * Bulgarian language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "Скрий панела с инструментите", +ToolbarExpand : "Покажи панела с инструментите", + +// Toolbar Items and Context Menu +Save : "Запази", +NewPage : "Нова страница", +Preview : "Предварителен изглед", +Cut : "Изрежи", +Copy : "Запамети", +Paste : "Вмъкни", +PasteText : "Вмъкни само текст", +PasteWord : "Вмъкни от MS Word", +Print : "Печат", +SelectAll : "Селектирай всичко", +RemoveFormat : "Изтрий форматирането", +InsertLinkLbl : "Връзка", +InsertLink : "Добави/Редактирай връзка", +RemoveLink : "Изтрий връзка", +VisitLink : "Open Link", //MISSING +Anchor : "Добави/Редактирай котва", +AnchorDelete : "Remove Anchor", //MISSING +InsertImageLbl : "Изображение", +InsertImage : "Добави/Редактирай изображение", +InsertFlashLbl : "Flash", +InsertFlash : "Добави/Редактиай Flash обект", +InsertTableLbl : "Таблица", +InsertTable : "Добави/Редактирай таблица", +InsertLineLbl : "Линия", +InsertLine : "Вмъкни хоризонтална линия", +InsertSpecialCharLbl: "Специален символ", +InsertSpecialChar : "Вмъкни специален символ", +InsertSmileyLbl : "Усмивка", +InsertSmiley : "Добави усмивка", +About : "За FCKeditor", +Bold : "Удебелен", +Italic : "Курсив", +Underline : "Подчертан", +StrikeThrough : "Зачертан", +Subscript : "Индекс за база", +Superscript : "Индекс за степен", +LeftJustify : "Подравняване в ляво", +CenterJustify : "Подравнявне в средата", +RightJustify : "Подравняване в дясно", +BlockJustify : "Двустранно подравняване", +DecreaseIndent : "Намали отстъпа", +IncreaseIndent : "Увеличи отстъпа", +Blockquote : "Blockquote", //MISSING +CreateDiv : "Create Div Container", //MISSING +EditDiv : "Edit Div Container", //MISSING +DeleteDiv : "Remove Div Container", //MISSING +Undo : "Отмени", +Redo : "Повтори", +NumberedListLbl : "Нумериран списък", +NumberedList : "Добави/Изтрий нумериран списък", +BulletedListLbl : "Ненумериран списък", +BulletedList : "Добави/Изтрий ненумериран списък", +ShowTableBorders : "Покажи рамките на таблицата", +ShowDetails : "Покажи подробности", +Style : "Стил", +FontFormat : "Формат", +Font : "Шрифт", +FontSize : "Размер", +TextColor : "Цвят на текста", +BGColor : "Цвят на фона", +Source : "Код", +Find : "Търси", +Replace : "Замести", +SpellCheck : "Провери правописа", +UniversalKeyboard : "Универсална клавиатура", +PageBreakLbl : "Нов ред", +PageBreak : "Вмъкни нов ред", + +Form : "Формуляр", +Checkbox : "Поле за отметка", +RadioButton : "Поле за опция", +TextField : "Текстово поле", +Textarea : "Текстова област", +HiddenField : "Скрито поле", +Button : "Бутон", +SelectionField : "Падащо меню с опции", +ImageButton : "Бутон-изображение", + +FitWindow : "Maximize the editor size", //MISSING +ShowBlocks : "Show Blocks", //MISSING + +// Context Menu +EditLink : "Редактирай връзка", +CellCM : "Cell", //MISSING +RowCM : "Row", //MISSING +ColumnCM : "Column", //MISSING +InsertRowAfter : "Insert Row After", //MISSING +InsertRowBefore : "Insert Row Before", //MISSING +DeleteRows : "Изтрий редовете", +InsertColumnAfter : "Insert Column After", //MISSING +InsertColumnBefore : "Insert Column Before", //MISSING +DeleteColumns : "Изтрий колоните", +InsertCellAfter : "Insert Cell After", //MISSING +InsertCellBefore : "Insert Cell Before", //MISSING +DeleteCells : "Изтрий клетките", +MergeCells : "Обедини клетките", +MergeRight : "Merge Right", //MISSING +MergeDown : "Merge Down", //MISSING +HorizontalSplitCell : "Split Cell Horizontally", //MISSING +VerticalSplitCell : "Split Cell Vertically", //MISSING +TableDelete : "Изтрий таблицата", +CellProperties : "Параметри на клетката", +TableProperties : "Параметри на таблицата", +ImageProperties : "Параметри на изображението", +FlashProperties : "Параметри на Flash обекта", + +AnchorProp : "Параметри на котвата", +ButtonProp : "Параметри на бутона", +CheckboxProp : "Параметри на полето за отметка", +HiddenFieldProp : "Параметри на скритото поле", +RadioButtonProp : "Параметри на полето за опция", +ImageButtonProp : "Параметри на бутона-изображение", +TextFieldProp : "Параметри на текстовото-поле", +SelectionFieldProp : "Параметри на падащото меню с опции", +TextareaProp : "Параметри на текстовата област", +FormProp : "Параметри на формуляра", + +FontFormats : "Нормален;Форматиран;Адрес;Заглавие 1;Заглавие 2;Заглавие 3;Заглавие 4;Заглавие 5;Заглавие 6;Параграф (DIV)", + +// Alerts and Messages +ProcessingXHTML : "Обработка на XHTML. Моля изчакайте...", +Done : "Готово", +PasteWordConfirm : "Текстът, който искате да вмъкнете е копиран от MS Word. Желаете ли да бъде изчистен преди вмъкването?", +NotCompatiblePaste : "Тази операция изисква MS Internet Explorer версия 5.5 или по-висока. Желаете ли да вмъкнете запаметеното без изчистване?", +UnknownToolbarItem : "Непознат инструмент \"%1\"", +UnknownCommand : "Непозната команда \"%1\"", +NotImplemented : "Командата не е имплементирана", +UnknownToolbarSet : "Панелът \"%1\" не съществува", +NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", //MISSING +BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", //MISSING +DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", //MISSING +VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING + +// Dialogs +DlgBtnOK : "ОК", +DlgBtnCancel : "Отказ", +DlgBtnClose : "Затвори", +DlgBtnBrowseServer : "Разгледай сървъра", +DlgAdvancedTag : "Подробности...", +DlgOpOther : "<Друго>", +DlgInfoTab : "Информация", +DlgAlertUrl : "Моля, въведете пълния път (URL)", + +// General Dialogs Labels +DlgGenNotSet : "<не е настроен>", +DlgGenId : "Идентификатор", +DlgGenLangDir : "посока на речта", +DlgGenLangDirLtr : "От ляво на дясно", +DlgGenLangDirRtl : "От дясно на ляво", +DlgGenLangCode : "Код на езика", +DlgGenAccessKey : "Бърз клавиш", +DlgGenName : "Име", +DlgGenTabIndex : "Ред на достъп", +DlgGenLongDescr : "Описание на връзката", +DlgGenClass : "Клас от стиловите таблици", +DlgGenTitle : "Препоръчително заглавие", +DlgGenContType : "Препоръчителен тип на съдържанието", +DlgGenLinkCharset : "Тип на свързания ресурс", +DlgGenStyle : "Стил", + +// Image Dialog +DlgImgTitle : "Параметри на изображението", +DlgImgInfoTab : "Информация за изображението", +DlgImgBtnUpload : "Прати към сървъра", +DlgImgURL : "Пълен път (URL)", +DlgImgUpload : "Качи", +DlgImgAlt : "Алтернативен текст", +DlgImgWidth : "Ширина", +DlgImgHeight : "Височина", +DlgImgLockRatio : "Запази пропорцията", +DlgBtnResetSize : "Възстанови размера", +DlgImgBorder : "Рамка", +DlgImgHSpace : "Хоризонтален отстъп", +DlgImgVSpace : "Вертикален отстъп", +DlgImgAlign : "Подравняване", +DlgImgAlignLeft : "Ляво", +DlgImgAlignAbsBottom: "Най-долу", +DlgImgAlignAbsMiddle: "Точно по средата", +DlgImgAlignBaseline : "По базовата линия", +DlgImgAlignBottom : "Долу", +DlgImgAlignMiddle : "По средата", +DlgImgAlignRight : "Дясно", +DlgImgAlignTextTop : "Върху текста", +DlgImgAlignTop : "Отгоре", +DlgImgPreview : "Изглед", +DlgImgAlertUrl : "Моля, въведете пълния път до изображението", +DlgImgLinkTab : "Връзка", + +// Flash Dialog +DlgFlashTitle : "Параметри на Flash обекта", +DlgFlashChkPlay : "Автоматично стартиране", +DlgFlashChkLoop : "Ново стартиране след завършването", +DlgFlashChkMenu : "Разрешено Flash меню", +DlgFlashScale : "Оразмеряване", +DlgFlashScaleAll : "Покажи целия обект", +DlgFlashScaleNoBorder : "Без рамка", +DlgFlashScaleFit : "Според мястото", + +// Link Dialog +DlgLnkWindowTitle : "Връзка", +DlgLnkInfoTab : "Информация за връзката", +DlgLnkTargetTab : "Цел", + +DlgLnkType : "Вид на връзката", +DlgLnkTypeURL : "Пълен път (URL)", +DlgLnkTypeAnchor : "Котва в текущата страница", +DlgLnkTypeEMail : "Е-поща", +DlgLnkProto : "Протокол", +DlgLnkProtoOther : "<друго>", +DlgLnkURL : "Пълен път (URL)", +DlgLnkAnchorSel : "Изберете котва", +DlgLnkAnchorByName : "По име на котвата", +DlgLnkAnchorById : "По идентификатор на елемент", +DlgLnkNoAnchors : "(Няма котви в текущия документ)", +DlgLnkEMail : "Адрес за е-поща", +DlgLnkEMailSubject : "Тема на писмото", +DlgLnkEMailBody : "Текст на писмото", +DlgLnkUpload : "Качи", +DlgLnkBtnUpload : "Прати на сървъра", + +DlgLnkTarget : "Цел", +DlgLnkTargetFrame : "<рамка>", +DlgLnkTargetPopup : "<дъщерен прозорец>", +DlgLnkTargetBlank : "Нов прозорец (_blank)", +DlgLnkTargetParent : "Родителски прозорец (_parent)", +DlgLnkTargetSelf : "Активния прозорец (_self)", +DlgLnkTargetTop : "Целия прозорец (_top)", +DlgLnkTargetFrameName : "Име на целевия прозорец", +DlgLnkPopWinName : "Име на дъщерния прозорец", +DlgLnkPopWinFeat : "Параметри на дъщерния прозорец", +DlgLnkPopResize : "С променливи размери", +DlgLnkPopLocation : "Поле за адрес", +DlgLnkPopMenu : "Меню", +DlgLnkPopScroll : "Плъзгач", +DlgLnkPopStatus : "Поле за статус", +DlgLnkPopToolbar : "Панел с бутони", +DlgLnkPopFullScrn : "Голям екран (MS IE)", +DlgLnkPopDependent : "Зависим (Netscape)", +DlgLnkPopWidth : "Ширина", +DlgLnkPopHeight : "Височина", +DlgLnkPopLeft : "Координати - X", +DlgLnkPopTop : "Координати - Y", + +DlnLnkMsgNoUrl : "Моля, напишете пълния път (URL)", +DlnLnkMsgNoEMail : "Моля, напишете адреса за е-поща", +DlnLnkMsgNoAnchor : "Моля, изберете котва", +DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING + +// Color Dialog +DlgColorTitle : "Изберете цвят", +DlgColorBtnClear : "Изчисти", +DlgColorHighlight : "Текущ", +DlgColorSelected : "Избран", + +// Smiley Dialog +DlgSmileyTitle : "Добави усмивка", + +// Special Character Dialog +DlgSpecialCharTitle : "Изберете специален символ", + +// Table Dialog +DlgTableTitle : "Параметри на таблицата", +DlgTableRows : "Редове", +DlgTableColumns : "Колони", +DlgTableBorder : "Размер на рамката", +DlgTableAlign : "Подравняване", +DlgTableAlignNotSet : "<Не е избрано>", +DlgTableAlignLeft : "Ляво", +DlgTableAlignCenter : "Център", +DlgTableAlignRight : "Дясно", +DlgTableWidth : "Ширина", +DlgTableWidthPx : "пиксели", +DlgTableWidthPc : "проценти", +DlgTableHeight : "Височина", +DlgTableCellSpace : "Разстояние между клетките", +DlgTableCellPad : "Отстъп на съдържанието в клетките", +DlgTableCaption : "Заглавие", +DlgTableSummary : "Резюме", +DlgTableHeaders : "Headers", //MISSING +DlgTableHeadersNone : "None", //MISSING +DlgTableHeadersColumn : "First column", //MISSING +DlgTableHeadersRow : "First Row", //MISSING +DlgTableHeadersBoth : "Both", //MISSING + +// Table Cell Dialog +DlgCellTitle : "Параметри на клетката", +DlgCellWidth : "Ширина", +DlgCellWidthPx : "пиксели", +DlgCellWidthPc : "проценти", +DlgCellHeight : "Височина", +DlgCellWordWrap : "пренасяне на нов ред", +DlgCellWordWrapNotSet : "<Не е настроено>", +DlgCellWordWrapYes : "Да", +DlgCellWordWrapNo : "не", +DlgCellHorAlign : "Хоризонтално подравняване", +DlgCellHorAlignNotSet : "<Не е настроено>", +DlgCellHorAlignLeft : "Ляво", +DlgCellHorAlignCenter : "Център", +DlgCellHorAlignRight: "Дясно", +DlgCellVerAlign : "Вертикално подравняване", +DlgCellVerAlignNotSet : "<Не е настроено>", +DlgCellVerAlignTop : "Горе", +DlgCellVerAlignMiddle : "По средата", +DlgCellVerAlignBottom : "Долу", +DlgCellVerAlignBaseline : "По базовата линия", +DlgCellType : "Cell Type", //MISSING +DlgCellTypeData : "Data", //MISSING +DlgCellTypeHeader : "Header", //MISSING +DlgCellRowSpan : "повече от един ред", +DlgCellCollSpan : "повече от една колона", +DlgCellBackColor : "фонов цвят", +DlgCellBorderColor : "цвят на рамката", +DlgCellBtnSelect : "Изберете...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "Find and Replace", //MISSING + +// Find Dialog +DlgFindTitle : "Търси", +DlgFindFindBtn : "Търси", +DlgFindNotFoundMsg : "Указания текст не беше намерен.", + +// Replace Dialog +DlgReplaceTitle : "Замести", +DlgReplaceFindLbl : "Търси:", +DlgReplaceReplaceLbl : "Замести с:", +DlgReplaceCaseChk : "Със същия регистър", +DlgReplaceReplaceBtn : "Замести", +DlgReplaceReplAllBtn : "Замести всички", +DlgReplaceWordChk : "Търси същата дума", + +// Paste Operations / Dialog +PasteErrorCut : "Настройките за сигурност на вашия бразуър не разрешават на редактора да изпълни изрязването. За целта използвайте клавиатурата (Ctrl+X).", +PasteErrorCopy : "Настройките за сигурност на вашия бразуър не разрешават на редактора да изпълни запаметяването. За целта използвайте клавиатурата (Ctrl+C).", + +PasteAsText : "Вмъкни като чист текст", +PasteFromWord : "Вмъкни от MS Word", + +DlgPasteMsg2 : "Вмъкнете тук съдъжанието с клавиатуарата (Ctrl+V) и натиснете OK.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING +DlgPasteIgnoreFont : "Игнорирай шрифтовите дефиниции", +DlgPasteRemoveStyles : "Изтрий стиловите дефиниции", + +// Color Picker +ColorAutomatic : "По подразбиране", +ColorMoreColors : "Други цветове...", + +// Document Properties +DocProps : "Параметри на документа", + +// Anchor Dialog +DlgAnchorTitle : "Параметри на котвата", +DlgAnchorName : "Име на котвата", +DlgAnchorErrorName : "Моля, въведете име на котвата", + +// Speller Pages Dialog +DlgSpellNotInDic : "Липсва в речника", +DlgSpellChangeTo : "Промени на", +DlgSpellBtnIgnore : "Игнорирай", +DlgSpellBtnIgnoreAll : "Игнорирай всички", +DlgSpellBtnReplace : "Замести", +DlgSpellBtnReplaceAll : "Замести всички", +DlgSpellBtnUndo : "Отмени", +DlgSpellNoSuggestions : "- Няма предложения -", +DlgSpellProgress : "Извършване на проверката за правопис...", +DlgSpellNoMispell : "Проверката за правопис завършена: не са открити правописни грешки", +DlgSpellNoChanges : "Проверката за правопис завършена: няма променени думи", +DlgSpellOneChange : "Проверката за правопис завършена: една дума е променена", +DlgSpellManyChanges : "Проверката за правопис завършена: %1 думи са променени", + +IeSpellDownload : "Инструментът за проверка на правопис не е инсталиран. Желаете ли да го инсталирате ?", + +// Button Dialog +DlgButtonText : "Текст (Стойност)", +DlgButtonType : "Тип", +DlgButtonTypeBtn : "Button", //MISSING +DlgButtonTypeSbm : "Submit", //MISSING +DlgButtonTypeRst : "Reset", //MISSING + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "Име", +DlgCheckboxValue : "Стойност", +DlgCheckboxSelected : "Отметнато", + +// Form Dialog +DlgFormName : "Име", +DlgFormAction : "Действие", +DlgFormMethod : "Метод", + +// Select Field Dialog +DlgSelectName : "Име", +DlgSelectValue : "Стойност", +DlgSelectSize : "Размер", +DlgSelectLines : "линии", +DlgSelectChkMulti : "Разрешено множествено селектиране", +DlgSelectOpAvail : "Възможни опции", +DlgSelectOpText : "Текст", +DlgSelectOpValue : "Стойност", +DlgSelectBtnAdd : "Добави", +DlgSelectBtnModify : "Промени", +DlgSelectBtnUp : "Нагоре", +DlgSelectBtnDown : "Надолу", +DlgSelectBtnSetValue : "Настрой като избрана стойност", +DlgSelectBtnDelete : "Изтрий", + +// Textarea Dialog +DlgTextareaName : "Име", +DlgTextareaCols : "Колони", +DlgTextareaRows : "Редове", + +// Text Field Dialog +DlgTextName : "Име", +DlgTextValue : "Стойност", +DlgTextCharWidth : "Ширина на символите", +DlgTextMaxChars : "Максимум символи", +DlgTextType : "Тип", +DlgTextTypeText : "Текст", +DlgTextTypePass : "Парола", + +// Hidden Field Dialog +DlgHiddenName : "Име", +DlgHiddenValue : "Стойност", + +// Bulleted List Dialog +BulletedListProp : "Параметри на ненумерирания списък", +NumberedListProp : "Параметри на нумерирания списък", +DlgLstStart : "Start", //MISSING +DlgLstType : "Тип", +DlgLstTypeCircle : "Окръжност", +DlgLstTypeDisc : "Кръг", +DlgLstTypeSquare : "Квадрат", +DlgLstTypeNumbers : "Числа (1, 2, 3)", +DlgLstTypeLCase : "Малки букви (a, b, c)", +DlgLstTypeUCase : "Големи букви (A, B, C)", +DlgLstTypeSRoman : "Малки римски числа (i, ii, iii)", +DlgLstTypeLRoman : "Големи римски числа (I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "Общи", +DlgDocBackTab : "Фон", +DlgDocColorsTab : "Цветове и отстъпи", +DlgDocMetaTab : "Мета данни", + +DlgDocPageTitle : "Заглавие на страницата", +DlgDocLangDir : "Посока на речта", +DlgDocLangDirLTR : "От ляво на дясно", +DlgDocLangDirRTL : "От дясно на ляво", +DlgDocLangCode : "Код на езика", +DlgDocCharSet : "Кодиране на символите", +DlgDocCharSetCE : "Central European", //MISSING +DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING +DlgDocCharSetCR : "Cyrillic", //MISSING +DlgDocCharSetGR : "Greek", //MISSING +DlgDocCharSetJP : "Japanese", //MISSING +DlgDocCharSetKR : "Korean", //MISSING +DlgDocCharSetTR : "Turkish", //MISSING +DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING +DlgDocCharSetWE : "Western European", //MISSING +DlgDocCharSetOther : "Друго кодиране на символите", + +DlgDocDocType : "Тип на документа", +DlgDocDocTypeOther : "Друг тип на документа", +DlgDocIncXHTML : "Включи XHTML декларация", +DlgDocBgColor : "Цвят на фона", +DlgDocBgImage : "Пълен път до фоновото изображение", +DlgDocBgNoScroll : "Не-повтарящо се фоново изображение", +DlgDocCText : "Текст", +DlgDocCLink : "Връзка", +DlgDocCVisited : "Посетена връзка", +DlgDocCActive : "Активна връзка", +DlgDocMargins : "Отстъпи на страницата", +DlgDocMaTop : "Горе", +DlgDocMaLeft : "Ляво", +DlgDocMaRight : "Дясно", +DlgDocMaBottom : "Долу", +DlgDocMeIndex : "Ключови думи за документа (разделени със запетаи)", +DlgDocMeDescr : "Описание на документа", +DlgDocMeAuthor : "Автор", +DlgDocMeCopy : "Авторски права", +DlgDocPreview : "Изглед", + +// Templates Dialog +Templates : "Шаблони", +DlgTemplatesTitle : "Шаблони", +DlgTemplatesSelMsg : "Изберете шаблон
(текущото съдържание на редактора ще бъде загубено):", +DlgTemplatesLoading : "Зареждане на списъка с шаблоните. Моля изчакайте...", +DlgTemplatesNoTpl : "(Няма дефинирани шаблони)", +DlgTemplatesReplace : "Replace actual contents", //MISSING + +// About Dialog +DlgAboutAboutTab : "За", +DlgAboutBrowserInfoTab : "Информация за браузъра", +DlgAboutLicenseTab : "License", //MISSING +DlgAboutVersion : "версия", +DlgAboutInfo : "За повече информация посетете", + +// Div Dialog +DlgDivGeneralTab : "General", //MISSING +DlgDivAdvancedTab : "Advanced", //MISSING +DlgDivStyle : "Style", //MISSING +DlgDivInlineStyle : "Inline Style", //MISSING + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/bn.js b/fckeditor/editor/lang/bn.js new file mode 100644 index 0000000..3bfa94c --- /dev/null +++ b/fckeditor/editor/lang/bn.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * Bengali/Bangla language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "টূলবার গুটিয়ে দাও", +ToolbarExpand : "টূলবার ছড়িয়ে দাও", + +// Toolbar Items and Context Menu +Save : "সংরক্ষন কর", +NewPage : "নতুন পেজ", +Preview : "প্রিভিউ", +Cut : "কাট", +Copy : "কপি", +Paste : "পেস্ট", +PasteText : "পেস্ট (সাদা টেক্সট)", +PasteWord : "পেস্ট (শব্দ)", +Print : "প্রিন্ট", +SelectAll : "সব সিলেক্ট কর", +RemoveFormat : "ফরমেট সরাও", +InsertLinkLbl : "লিংকের যুক্ত করার লেবেল", +InsertLink : "লিংক যুক্ত কর", +RemoveLink : "লিংক সরাও", +VisitLink : "Open Link", //MISSING +Anchor : "নোঙ্গর", +AnchorDelete : "Remove Anchor", //MISSING +InsertImageLbl : "ছবির লেবেল যুক্ত কর", +InsertImage : "ছবি যুক্ত কর", +InsertFlashLbl : "ফ্লাশ লেবেল যুক্ত কর", +InsertFlash : "ফ্লাশ যুক্ত কর", +InsertTableLbl : "টেবিলের লেবেল যুক্ত কর", +InsertTable : "টেবিল যুক্ত কর", +InsertLineLbl : "রেখা যুক্ত কর", +InsertLine : "রেখা যুক্ত কর", +InsertSpecialCharLbl: "বিশেষ অক্ষরের লেবেল যুক্ত কর", +InsertSpecialChar : "বিশেষ অক্ষর যুক্ত কর", +InsertSmileyLbl : "স্মাইলী", +InsertSmiley : "স্মাইলী যুক্ত কর", +About : "FCKeditor কে বানিয়েছে", +Bold : "বোল্ড", +Italic : "ইটালিক", +Underline : "আন্ডারলাইন", +StrikeThrough : "স্ট্রাইক থ্রু", +Subscript : "অধোলেখ", +Superscript : "অভিলেখ", +LeftJustify : "বা দিকে ঘেঁষা", +CenterJustify : "মাঝ বরাবর ঘেষা", +RightJustify : "ডান দিকে ঘেঁষা", +BlockJustify : "ব্লক জাস্টিফাই", +DecreaseIndent : "ইনডেন্ট কমাও", +IncreaseIndent : "ইনডেন্ট বাড়াও", +Blockquote : "Blockquote", //MISSING +CreateDiv : "Create Div Container", //MISSING +EditDiv : "Edit Div Container", //MISSING +DeleteDiv : "Remove Div Container", //MISSING +Undo : "আনডু", +Redo : "রি-ডু", +NumberedListLbl : "সাংখ্যিক লিস্টের লেবেল", +NumberedList : "সাংখ্যিক লিস্ট", +BulletedListLbl : "বুলেট লিস্ট লেবেল", +BulletedList : "বুলেটেড লিস্ট", +ShowTableBorders : "টেবিল বর্ডার", +ShowDetails : "সবটুকু দেখাও", +Style : "স্টাইল", +FontFormat : "ফন্ট ফরমেট", +Font : "ফন্ট", +FontSize : "সাইজ", +TextColor : "টেক্স্ট রং", +BGColor : "বেকগ্রাউন্ড রং", +Source : "সোর্স", +Find : "খোজো", +Replace : "রিপ্লেস", +SpellCheck : "বানান চেক", +UniversalKeyboard : "সার্বজনীন কিবোর্ড", +PageBreakLbl : "পেজ ব্রেক লেবেল", +PageBreak : "পেজ ব্রেক", + +Form : "ফর্ম", +Checkbox : "চেক বাক্স", +RadioButton : "রেডিও বাটন", +TextField : "টেক্সট ফীল্ড", +Textarea : "টেক্সট এরিয়া", +HiddenField : "গুপ্ত ফীল্ড", +Button : "বাটন", +SelectionField : "বাছাই ফীল্ড", +ImageButton : "ছবির বাটন", + +FitWindow : "উইন্ডো ফিট কর", +ShowBlocks : "Show Blocks", //MISSING + +// Context Menu +EditLink : "লিংক সম্পাদন", +CellCM : "সেল", +RowCM : "রো", +ColumnCM : "কলাম", +InsertRowAfter : "Insert Row After", //MISSING +InsertRowBefore : "Insert Row Before", //MISSING +DeleteRows : "রো মুছে দাও", +InsertColumnAfter : "Insert Column After", //MISSING +InsertColumnBefore : "Insert Column Before", //MISSING +DeleteColumns : "কলাম মুছে দাও", +InsertCellAfter : "Insert Cell After", //MISSING +InsertCellBefore : "Insert Cell Before", //MISSING +DeleteCells : "সেল মুছে দাও", +MergeCells : "সেল জোড়া দাও", +MergeRight : "Merge Right", //MISSING +MergeDown : "Merge Down", //MISSING +HorizontalSplitCell : "Split Cell Horizontally", //MISSING +VerticalSplitCell : "Split Cell Vertically", //MISSING +TableDelete : "টেবিল ডিলীট কর", +CellProperties : "সেলের প্রোপার্টিজ", +TableProperties : "টেবিল প্রোপার্টি", +ImageProperties : "ছবি প্রোপার্টি", +FlashProperties : "ফ্লাশ প্রোপার্টি", + +AnchorProp : "নোঙর প্রোপার্টি", +ButtonProp : "বাটন প্রোপার্টি", +CheckboxProp : "চেক বক্স প্রোপার্টি", +HiddenFieldProp : "গুপ্ত ফীল্ড প্রোপার্টি", +RadioButtonProp : "রেডিও বাটন প্রোপার্টি", +ImageButtonProp : "ছবি বাটন প্রোপার্টি", +TextFieldProp : "টেক্সট ফীল্ড প্রোপার্টি", +SelectionFieldProp : "বাছাই ফীল্ড প্রোপার্টি", +TextareaProp : "টেক্সট এরিয়া প্রোপার্টি", +FormProp : "ফর্ম প্রোপার্টি", + +FontFormats : "সাধারণ;ফর্মেটেড;ঠিকানা;শীর্ষক ১;শীর্ষক ২;শীর্ষক ৩;শীর্ষক ৪;শীর্ষক ৫;শীর্ষক ৬;শীর্ষক (DIV)", + +// Alerts and Messages +ProcessingXHTML : "XHTML প্রসেস করা হচ্ছে", +Done : "শেষ হয়েছে", +PasteWordConfirm : "যে টেকস্টটি আপনি পেস্ট করতে চাচ্ছেন মনে হচ্ছে সেটি ওয়ার্ড থেকে কপি করা। আপনি কি পেস্ট করার আগে একে পরিষ্কার করতে চান?", +NotCompatiblePaste : "এই কমান্ডটি শুধুমাত্র ইন্টারনেট এক্সপ্লোরার ৫.০ বা তার পরের ভার্সনে পাওয়া সম্ভব। আপনি কি পরিষ্কার না করেই পেস্ট করতে চান?", +UnknownToolbarItem : "অজানা টুলবার আইটেম \"%1\"", +UnknownCommand : "অজানা কমান্ড \"%1\"", +NotImplemented : "কমান্ড ইমপ্লিমেন্ট করা হয়নি", +UnknownToolbarSet : "টুলবার সেট \"%1\" এর অস্তিত্ব নেই", +NoActiveX : "আপনার ব্রাউজারের সুরক্ষা সেটিংস কারনে এডিটরের কিছু ফিচার পাওয়া নাও যেতে পারে। আপনাকে অবশ্যই \"Run ActiveX controls and plug-ins\" এনাবেল করে নিতে হবে। আপনি ভুলভ্রান্তি কিছু কিছু ফিচারের অনুপস্থিতি উপলব্ধি করতে পারেন।", +BrowseServerBlocked : "রিসোর্স ব্রাউজার খোলা গেল না। নিশ্চিত করুন যে সব পপআপ ব্লকার বন্ধ করা আছে।", +DialogBlocked : "ডায়ালগ ইউন্ডো খোলা গেল না। নিশ্চিত করুন যে সব পপআপ ব্লকার বন্ধ করা আছে।", +VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING + +// Dialogs +DlgBtnOK : "ওকে", +DlgBtnCancel : "বাতিল", +DlgBtnClose : "বন্ধ কর", +DlgBtnBrowseServer : "ব্রাউজ সার্ভার", +DlgAdvancedTag : "এডভান্সড", +DlgOpOther : "<অন্য>", +DlgInfoTab : "তথ্য", +DlgAlertUrl : "দয়া করে URL যুক্ত করুন", + +// General Dialogs Labels +DlgGenNotSet : "<সেট নেই>", +DlgGenId : "আইডি", +DlgGenLangDir : "ভাষা লেখার দিক", +DlgGenLangDirLtr : "বাম থেকে ডান (LTR)", +DlgGenLangDirRtl : "ডান থেকে বাম (RTL)", +DlgGenLangCode : "ভাষা কোড", +DlgGenAccessKey : "এক্সেস কী", +DlgGenName : "নাম", +DlgGenTabIndex : "ট্যাব ইন্ডেক্স", +DlgGenLongDescr : "URL এর লম্বা বর্ণনা", +DlgGenClass : "স্টাইল-শীট ক্লাস", +DlgGenTitle : "পরামর্শ শীর্ষক", +DlgGenContType : "পরামর্শ কন্টেন্টের প্রকার", +DlgGenLinkCharset : "লিংক রিসোর্স ক্যারেক্টর সেট", +DlgGenStyle : "স্টাইল", + +// Image Dialog +DlgImgTitle : "ছবির প্রোপার্টি", +DlgImgInfoTab : "ছবির তথ্য", +DlgImgBtnUpload : "ইহাকে সার্ভারে প্রেরন কর", +DlgImgURL : "URL", +DlgImgUpload : "আপলোড", +DlgImgAlt : "বিকল্প টেক্সট", +DlgImgWidth : "প্রস্থ", +DlgImgHeight : "দৈর্ঘ্য", +DlgImgLockRatio : "অনুপাত লক কর", +DlgBtnResetSize : "সাইজ পূর্বাবস্থায় ফিরিয়ে দাও", +DlgImgBorder : "বর্ডার", +DlgImgHSpace : "হরাইজন্টাল স্পেস", +DlgImgVSpace : "ভার্টিকেল স্পেস", +DlgImgAlign : "এলাইন", +DlgImgAlignLeft : "বামে", +DlgImgAlignAbsBottom: "Abs নীচে", +DlgImgAlignAbsMiddle: "Abs উপর", +DlgImgAlignBaseline : "মূল রেখা", +DlgImgAlignBottom : "নীচে", +DlgImgAlignMiddle : "মধ্য", +DlgImgAlignRight : "ডানে", +DlgImgAlignTextTop : "টেক্সট উপর", +DlgImgAlignTop : "উপর", +DlgImgPreview : "প্রীভিউ", +DlgImgAlertUrl : "অনুগ্রহক করে ছবির URL টাইপ করুন", +DlgImgLinkTab : "লিংক", + +// Flash Dialog +DlgFlashTitle : "ফ্ল্যাশ প্রোপার্টি", +DlgFlashChkPlay : "অটো প্লে", +DlgFlashChkLoop : "লূপ", +DlgFlashChkMenu : "ফ্ল্যাশ মেনু এনাবল কর", +DlgFlashScale : "স্কেল", +DlgFlashScaleAll : "সব দেখাও", +DlgFlashScaleNoBorder : "কোনো বর্ডার নেই", +DlgFlashScaleFit : "নিখুঁত ফিট", + +// Link Dialog +DlgLnkWindowTitle : "লিংক", +DlgLnkInfoTab : "লিংক তথ্য", +DlgLnkTargetTab : "টার্গেট", + +DlgLnkType : "লিংক প্রকার", +DlgLnkTypeURL : "URL", +DlgLnkTypeAnchor : "এই পেজে নোঙর কর", +DlgLnkTypeEMail : "ইমেইল", +DlgLnkProto : "প্রোটোকল", +DlgLnkProtoOther : "<অন্য>", +DlgLnkURL : "URL", +DlgLnkAnchorSel : "নোঙর বাছাই", +DlgLnkAnchorByName : "নোঙরের নাম দিয়ে", +DlgLnkAnchorById : "নোঙরের আইডি দিয়ে", +DlgLnkNoAnchors : "(No anchors available in the document)", //MISSING +DlgLnkEMail : "ইমেইল ঠিকানা", +DlgLnkEMailSubject : "মেসেজের বিষয়", +DlgLnkEMailBody : "মেসেজের দেহ", +DlgLnkUpload : "আপলোড", +DlgLnkBtnUpload : "একে সার্ভারে পাঠাও", + +DlgLnkTarget : "টার্গেট", +DlgLnkTargetFrame : "<ফ্রেম>", +DlgLnkTargetPopup : "<পপআপ উইন্ডো>", +DlgLnkTargetBlank : "নতুন উইন্ডো (_blank)", +DlgLnkTargetParent : "মূল উইন্ডো (_parent)", +DlgLnkTargetSelf : "এই উইন্ডো (_self)", +DlgLnkTargetTop : "শীর্ষ উইন্ডো (_top)", +DlgLnkTargetFrameName : "টার্গেট ফ্রেমের নাম", +DlgLnkPopWinName : "পপআপ উইন্ডোর নাম", +DlgLnkPopWinFeat : "পপআপ উইন্ডো ফীচার সমূহ", +DlgLnkPopResize : "রিসাইজ করা সম্ভব", +DlgLnkPopLocation : "লোকেশন বার", +DlgLnkPopMenu : "মেন্যু বার", +DlgLnkPopScroll : "স্ক্রল বার", +DlgLnkPopStatus : "স্ট্যাটাস বার", +DlgLnkPopToolbar : "টুল বার", +DlgLnkPopFullScrn : "পূর্ণ পর্দা জুড়ে (IE)", +DlgLnkPopDependent : "ডিপেন্ডেন্ট (Netscape)", +DlgLnkPopWidth : "প্রস্থ", +DlgLnkPopHeight : "দৈর্ঘ্য", +DlgLnkPopLeft : "বামের পজিশন", +DlgLnkPopTop : "ডানের পজিশন", + +DlnLnkMsgNoUrl : "অনুগ্রহ করে URL লিংক টাইপ করুন", +DlnLnkMsgNoEMail : "অনুগ্রহ করে ইমেইল এড্রেস টাইপ করুন", +DlnLnkMsgNoAnchor : "অনুগ্রহ করে নোঙর বাছাই করুন", +DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING + +// Color Dialog +DlgColorTitle : "রং বাছাই কর", +DlgColorBtnClear : "পরিষ্কার কর", +DlgColorHighlight : "হাইলাইট", +DlgColorSelected : "সিলেক্টেড", + +// Smiley Dialog +DlgSmileyTitle : "স্মাইলী যুক্ত কর", + +// Special Character Dialog +DlgSpecialCharTitle : "বিশেষ ক্যারেক্টার বাছাই কর", + +// Table Dialog +DlgTableTitle : "টেবিল প্রোপার্টি", +DlgTableRows : "রো", +DlgTableColumns : "কলাম", +DlgTableBorder : "বর্ডার সাইজ", +DlgTableAlign : "এলাইনমেন্ট", +DlgTableAlignNotSet : "<সেট নেই>", +DlgTableAlignLeft : "বামে", +DlgTableAlignCenter : "মাঝখানে", +DlgTableAlignRight : "ডানে", +DlgTableWidth : "প্রস্থ", +DlgTableWidthPx : "পিক্সেল", +DlgTableWidthPc : "শতকরা", +DlgTableHeight : "দৈর্ঘ্য", +DlgTableCellSpace : "সেল স্পেস", +DlgTableCellPad : "সেল প্যাডিং", +DlgTableCaption : "শীর্ষক", +DlgTableSummary : "সারাংশ", +DlgTableHeaders : "Headers", //MISSING +DlgTableHeadersNone : "None", //MISSING +DlgTableHeadersColumn : "First column", //MISSING +DlgTableHeadersRow : "First Row", //MISSING +DlgTableHeadersBoth : "Both", //MISSING + +// Table Cell Dialog +DlgCellTitle : "সেল প্রোপার্টি", +DlgCellWidth : "প্রস্থ", +DlgCellWidthPx : "পিক্সেল", +DlgCellWidthPc : "শতকরা", +DlgCellHeight : "দৈর্ঘ্য", +DlgCellWordWrap : "ওয়ার্ড রেপ", +DlgCellWordWrapNotSet : "<সেট নেই>", +DlgCellWordWrapYes : "হাঁ", +DlgCellWordWrapNo : "না", +DlgCellHorAlign : "হরাইজন্টাল এলাইনমেন্ট", +DlgCellHorAlignNotSet : "<সেট নেই>", +DlgCellHorAlignLeft : "বামে", +DlgCellHorAlignCenter : "মাঝখানে", +DlgCellHorAlignRight: "ডানে", +DlgCellVerAlign : "ভার্টিক্যাল এলাইনমেন্ট", +DlgCellVerAlignNotSet : "<সেট নেই>", +DlgCellVerAlignTop : "উপর", +DlgCellVerAlignMiddle : "মধ্য", +DlgCellVerAlignBottom : "নীচে", +DlgCellVerAlignBaseline : "মূলরেখা", +DlgCellType : "Cell Type", //MISSING +DlgCellTypeData : "Data", //MISSING +DlgCellTypeHeader : "Header", //MISSING +DlgCellRowSpan : "রো স্প্যান", +DlgCellCollSpan : "কলাম স্প্যান", +DlgCellBackColor : "ব্যাকগ্রাউন্ড রং", +DlgCellBorderColor : "বর্ডারের রং", +DlgCellBtnSelect : "বাছাই কর", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "Find and Replace", //MISSING + +// Find Dialog +DlgFindTitle : "খোঁজো", +DlgFindFindBtn : "খোঁজো", +DlgFindNotFoundMsg : "আপনার উল্লেখিত টেকস্ট পাওয়া যায়নি", + +// Replace Dialog +DlgReplaceTitle : "বদলে দাও", +DlgReplaceFindLbl : "যা খুঁজতে হবে:", +DlgReplaceReplaceLbl : "যার সাথে বদলাতে হবে:", +DlgReplaceCaseChk : "কেস মিলাও", +DlgReplaceReplaceBtn : "বদলে দাও", +DlgReplaceReplAllBtn : "সব বদলে দাও", +DlgReplaceWordChk : "পুরা শব্দ মেলাও", + +// Paste Operations / Dialog +PasteErrorCut : "আপনার ব্রাউজারের সুরক্ষা সেটিংস এডিটরকে অটোমেটিক কাট করার অনুমতি দেয়নি। দয়া করে এই কাজের জন্য কিবোর্ড ব্যবহার করুন (Ctrl+X)।", +PasteErrorCopy : "আপনার ব্রাউজারের সুরক্ষা সেটিংস এডিটরকে অটোমেটিক কপি করার অনুমতি দেয়নি। দয়া করে এই কাজের জন্য কিবোর্ড ব্যবহার করুন (Ctrl+C)।", + +PasteAsText : "সাদা টেক্সট হিসেবে পেস্ট কর", +PasteFromWord : "ওয়ার্ড থেকে পেস্ট কর", + +DlgPasteMsg2 : "অনুগ্রহ করে নীচের বাক্সে কিবোর্ড ব্যবহার করে (Ctrl+V) পেস্ট করুন এবং OK চাপ দিন", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING +DlgPasteIgnoreFont : "ফন্ট ফেস ডেফিনেশন ইগনোর করুন", +DlgPasteRemoveStyles : "স্টাইল ডেফিনেশন সরিয়ে দিন", + +// Color Picker +ColorAutomatic : "অটোমেটিক", +ColorMoreColors : "আরও রং...", + +// Document Properties +DocProps : "ডক্যুমেন্ট প্রোপার্টি", + +// Anchor Dialog +DlgAnchorTitle : "নোঙরের প্রোপার্টি", +DlgAnchorName : "নোঙরের নাম", +DlgAnchorErrorName : "নোঙরের নাম টাইপ করুন", + +// Speller Pages Dialog +DlgSpellNotInDic : "শব্দকোষে নেই", +DlgSpellChangeTo : "এতে বদলাও", +DlgSpellBtnIgnore : "ইগনোর কর", +DlgSpellBtnIgnoreAll : "সব ইগনোর কর", +DlgSpellBtnReplace : "বদলে দাও", +DlgSpellBtnReplaceAll : "সব বদলে দাও", +DlgSpellBtnUndo : "আন্ডু", +DlgSpellNoSuggestions : "- কোন সাজেশন নেই -", +DlgSpellProgress : "বানান পরীক্ষা চলছে...", +DlgSpellNoMispell : "বানান পরীক্ষা শেষ: কোন ভুল বানান পাওয়া যায়নি", +DlgSpellNoChanges : "বানান পরীক্ষা শেষ: কোন শব্দ পরিবর্তন করা হয়নি", +DlgSpellOneChange : "বানান পরীক্ষা শেষ: একটি মাত্র শব্দ পরিবর্তন করা হয়েছে", +DlgSpellManyChanges : "বানান পরীক্ষা শেষ: %1 গুলো শব্দ বদলে গ্যাছে", + +IeSpellDownload : "বানান পরীক্ষক ইনস্টল করা নেই। আপনি কি এখনই এটা ডাউনলোড করতে চান?", + +// Button Dialog +DlgButtonText : "টেক্সট (ভ্যালু)", +DlgButtonType : "প্রকার", +DlgButtonTypeBtn : "Button", //MISSING +DlgButtonTypeSbm : "Submit", //MISSING +DlgButtonTypeRst : "Reset", //MISSING + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "নাম", +DlgCheckboxValue : "ভ্যালু", +DlgCheckboxSelected : "সিলেক্টেড", + +// Form Dialog +DlgFormName : "নাম", +DlgFormAction : "একশ্যন", +DlgFormMethod : "পদ্ধতি", + +// Select Field Dialog +DlgSelectName : "নাম", +DlgSelectValue : "ভ্যালু", +DlgSelectSize : "সাইজ", +DlgSelectLines : "লাইন সমূহ", +DlgSelectChkMulti : "একাধিক সিলেকশন এলাউ কর", +DlgSelectOpAvail : "অন্যান্য বিকল্প", +DlgSelectOpText : "টেক্সট", +DlgSelectOpValue : "ভ্যালু", +DlgSelectBtnAdd : "যুক্ত", +DlgSelectBtnModify : "বদলে দাও", +DlgSelectBtnUp : "উপর", +DlgSelectBtnDown : "নীচে", +DlgSelectBtnSetValue : "বাছাই করা ভ্যালু হিসেবে সেট কর", +DlgSelectBtnDelete : "ডিলীট", + +// Textarea Dialog +DlgTextareaName : "নাম", +DlgTextareaCols : "কলাম", +DlgTextareaRows : "রো", + +// Text Field Dialog +DlgTextName : "নাম", +DlgTextValue : "ভ্যালু", +DlgTextCharWidth : "ক্যারেক্টার প্রশস্ততা", +DlgTextMaxChars : "সর্বাধিক ক্যারেক্টার", +DlgTextType : "টাইপ", +DlgTextTypeText : "টেক্সট", +DlgTextTypePass : "পাসওয়ার্ড", + +// Hidden Field Dialog +DlgHiddenName : "নাম", +DlgHiddenValue : "ভ্যালু", + +// Bulleted List Dialog +BulletedListProp : "বুলেটেড সূচী প্রোপার্টি", +NumberedListProp : "সাংখ্যিক সূচী প্রোপার্টি", +DlgLstStart : "Start", //MISSING +DlgLstType : "প্রকার", +DlgLstTypeCircle : "গোল", +DlgLstTypeDisc : "ডিস্ক", +DlgLstTypeSquare : "চৌকোণা", +DlgLstTypeNumbers : "সংখ্যা (1, 2, 3)", +DlgLstTypeLCase : "ছোট অক্ষর (a, b, c)", +DlgLstTypeUCase : "বড় অক্ষর (A, B, C)", +DlgLstTypeSRoman : "ছোট রোমান সংখ্যা (i, ii, iii)", +DlgLstTypeLRoman : "বড় রোমান সংখ্যা (I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "সাধারন", +DlgDocBackTab : "ব্যাকগ্রাউন্ড", +DlgDocColorsTab : "রং এবং মার্জিন", +DlgDocMetaTab : "মেটাডেটা", + +DlgDocPageTitle : "পেজ শীর্ষক", +DlgDocLangDir : "ভাষা লিখার দিক", +DlgDocLangDirLTR : "বাম থেকে ডানে (LTR)", +DlgDocLangDirRTL : "ডান থেকে বামে (RTL)", +DlgDocLangCode : "ভাষা কোড", +DlgDocCharSet : "ক্যারেক্টার সেট এনকোডিং", +DlgDocCharSetCE : "Central European", //MISSING +DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING +DlgDocCharSetCR : "Cyrillic", //MISSING +DlgDocCharSetGR : "Greek", //MISSING +DlgDocCharSetJP : "Japanese", //MISSING +DlgDocCharSetKR : "Korean", //MISSING +DlgDocCharSetTR : "Turkish", //MISSING +DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING +DlgDocCharSetWE : "Western European", //MISSING +DlgDocCharSetOther : "অন্য ক্যারেক্টার সেট এনকোডিং", + +DlgDocDocType : "ডক্যুমেন্ট টাইপ হেডিং", +DlgDocDocTypeOther : "অন্য ডক্যুমেন্ট টাইপ হেডিং", +DlgDocIncXHTML : "XHTML ডেক্লারেশন যুক্ত কর", +DlgDocBgColor : "ব্যাকগ্রাউন্ড রং", +DlgDocBgImage : "ব্যাকগ্রাউন্ড ছবির URL", +DlgDocBgNoScroll : "স্ক্রলহীন ব্যাকগ্রাউন্ড", +DlgDocCText : "টেক্সট", +DlgDocCLink : "লিংক", +DlgDocCVisited : "ভিজিট করা লিংক", +DlgDocCActive : "সক্রিয় লিংক", +DlgDocMargins : "পেজ মার্জিন", +DlgDocMaTop : "উপর", +DlgDocMaLeft : "বামে", +DlgDocMaRight : "ডানে", +DlgDocMaBottom : "নীচে", +DlgDocMeIndex : "ডক্যুমেন্ট ইন্ডেক্স কিওয়ার্ড (কমা দ্বারা বিচ্ছিন্ন)", +DlgDocMeDescr : "ডক্যূমেন্ট বর্ণনা", +DlgDocMeAuthor : "লেখক", +DlgDocMeCopy : "কপীরাইট", +DlgDocPreview : "প্রীভিউ", + +// Templates Dialog +Templates : "টেমপ্লেট", +DlgTemplatesTitle : "কনটেন্ট টেমপ্লেট", +DlgTemplatesSelMsg : "অনুগ্রহ করে এডিটরে ওপেন করার জন্য টেমপ্লেট বাছাই করুন
(আসল কনটেন্ট হারিয়ে যাবে):", +DlgTemplatesLoading : "টেমপ্লেট লিস্ট হারিয়ে যাবে। অনুগ্রহ করে অপেক্ষা করুন...", +DlgTemplatesNoTpl : "(কোন টেমপ্লেট ডিফাইন করা নেই)", +DlgTemplatesReplace : "Replace actual contents", //MISSING + +// About Dialog +DlgAboutAboutTab : "কে বানিয়েছে", +DlgAboutBrowserInfoTab : "ব্রাউজারের ব্যাপারে তথ্য", +DlgAboutLicenseTab : "লাইসেন্স", +DlgAboutVersion : "ভার্সন", +DlgAboutInfo : "আরও তথ্যের জন্য যান", + +// Div Dialog +DlgDivGeneralTab : "General", //MISSING +DlgDivAdvancedTab : "Advanced", //MISSING +DlgDivStyle : "Style", //MISSING +DlgDivInlineStyle : "Inline Style", //MISSING + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/bs.js b/fckeditor/editor/lang/bs.js new file mode 100644 index 0000000..7bf8297 --- /dev/null +++ b/fckeditor/editor/lang/bs.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * Bosnian language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "Skupi trake sa alatima", +ToolbarExpand : "Otvori trake sa alatima", + +// Toolbar Items and Context Menu +Save : "Snimi", +NewPage : "Novi dokument", +Preview : "Prikaži", +Cut : "Izreži", +Copy : "Kopiraj", +Paste : "Zalijepi", +PasteText : "Zalijepi kao obièan tekst", +PasteWord : "Zalijepi iz Word-a", +Print : "Štampaj", +SelectAll : "Selektuj sve", +RemoveFormat : "Poništi format", +InsertLinkLbl : "Link", +InsertLink : "Ubaci/Izmjeni link", +RemoveLink : "Izbriši link", +VisitLink : "Open Link", //MISSING +Anchor : "Insert/Edit Anchor", //MISSING +AnchorDelete : "Remove Anchor", //MISSING +InsertImageLbl : "Slika", +InsertImage : "Ubaci/Izmjeni sliku", +InsertFlashLbl : "Flash", //MISSING +InsertFlash : "Insert/Edit Flash", //MISSING +InsertTableLbl : "Tabela", +InsertTable : "Ubaci/Izmjeni tabelu", +InsertLineLbl : "Linija", +InsertLine : "Ubaci horizontalnu liniju", +InsertSpecialCharLbl: "Specijalni karakter", +InsertSpecialChar : "Ubaci specijalni karater", +InsertSmileyLbl : "Smješko", +InsertSmiley : "Ubaci smješka", +About : "O FCKeditor-u", +Bold : "Boldiraj", +Italic : "Ukosi", +Underline : "Podvuci", +StrikeThrough : "Precrtaj", +Subscript : "Subscript", +Superscript : "Superscript", +LeftJustify : "Lijevo poravnanje", +CenterJustify : "Centralno poravnanje", +RightJustify : "Desno poravnanje", +BlockJustify : "Puno poravnanje", +DecreaseIndent : "Smanji uvod", +IncreaseIndent : "Poveæaj uvod", +Blockquote : "Blockquote", //MISSING +CreateDiv : "Create Div Container", //MISSING +EditDiv : "Edit Div Container", //MISSING +DeleteDiv : "Remove Div Container", //MISSING +Undo : "Vrati", +Redo : "Ponovi", +NumberedListLbl : "Numerisana lista", +NumberedList : "Ubaci/Izmjeni numerisanu listu", +BulletedListLbl : "Lista", +BulletedList : "Ubaci/Izmjeni listu", +ShowTableBorders : "Pokaži okvire tabela", +ShowDetails : "Pokaži detalje", +Style : "Stil", +FontFormat : "Format", +Font : "Font", +FontSize : "Velièina", +TextColor : "Boja teksta", +BGColor : "Boja pozadine", +Source : "HTML kôd", +Find : "Naði", +Replace : "Zamjeni", +SpellCheck : "Check Spelling", //MISSING +UniversalKeyboard : "Universal Keyboard", //MISSING +PageBreakLbl : "Page Break", //MISSING +PageBreak : "Insert Page Break", //MISSING + +Form : "Form", //MISSING +Checkbox : "Checkbox", //MISSING +RadioButton : "Radio Button", //MISSING +TextField : "Text Field", //MISSING +Textarea : "Textarea", //MISSING +HiddenField : "Hidden Field", //MISSING +Button : "Button", //MISSING +SelectionField : "Selection Field", //MISSING +ImageButton : "Image Button", //MISSING + +FitWindow : "Maximize the editor size", //MISSING +ShowBlocks : "Show Blocks", //MISSING + +// Context Menu +EditLink : "Izmjeni link", +CellCM : "Cell", //MISSING +RowCM : "Row", //MISSING +ColumnCM : "Column", //MISSING +InsertRowAfter : "Insert Row After", //MISSING +InsertRowBefore : "Insert Row Before", //MISSING +DeleteRows : "Briši redove", +InsertColumnAfter : "Insert Column After", //MISSING +InsertColumnBefore : "Insert Column Before", //MISSING +DeleteColumns : "Briši kolone", +InsertCellAfter : "Insert Cell After", //MISSING +InsertCellBefore : "Insert Cell Before", //MISSING +DeleteCells : "Briši æelije", +MergeCells : "Spoji æelije", +MergeRight : "Merge Right", //MISSING +MergeDown : "Merge Down", //MISSING +HorizontalSplitCell : "Split Cell Horizontally", //MISSING +VerticalSplitCell : "Split Cell Vertically", //MISSING +TableDelete : "Delete Table", //MISSING +CellProperties : "Svojstva æelije", +TableProperties : "Svojstva tabele", +ImageProperties : "Svojstva slike", +FlashProperties : "Flash Properties", //MISSING + +AnchorProp : "Anchor Properties", //MISSING +ButtonProp : "Button Properties", //MISSING +CheckboxProp : "Checkbox Properties", //MISSING +HiddenFieldProp : "Hidden Field Properties", //MISSING +RadioButtonProp : "Radio Button Properties", //MISSING +ImageButtonProp : "Image Button Properties", //MISSING +TextFieldProp : "Text Field Properties", //MISSING +SelectionFieldProp : "Selection Field Properties", //MISSING +TextareaProp : "Textarea Properties", //MISSING +FormProp : "Form Properties", //MISSING + +FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6", + +// Alerts and Messages +ProcessingXHTML : "Procesiram XHTML. Molim saèekajte...", +Done : "Gotovo", +PasteWordConfirm : "Tekst koji želite zalijepiti èini se da je kopiran iz Worda. Da li želite da se prvo oèisti?", +NotCompatiblePaste : "Ova komanda je podržana u Internet Explorer-u verzijama 5.5 ili novijim. Da li želite da izvršite lijepljenje teksta bez èišæenja?", +UnknownToolbarItem : "Nepoznata stavka sa trake sa alatima \"%1\"", +UnknownCommand : "Nepoznata komanda \"%1\"", +NotImplemented : "Komanda nije implementirana", +UnknownToolbarSet : "Traka sa alatima \"%1\" ne postoji", +NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", //MISSING +BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", //MISSING +DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", //MISSING +VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING + +// Dialogs +DlgBtnOK : "OK", +DlgBtnCancel : "Odustani", +DlgBtnClose : "Zatvori", +DlgBtnBrowseServer : "Browse Server", //MISSING +DlgAdvancedTag : "Naprednije", +DlgOpOther : "", //MISSING +DlgInfoTab : "Info", //MISSING +DlgAlertUrl : "Please insert the URL", //MISSING + +// General Dialogs Labels +DlgGenNotSet : "", +DlgGenId : "Id", +DlgGenLangDir : "Smjer pisanja", +DlgGenLangDirLtr : "S lijeva na desno (LTR)", +DlgGenLangDirRtl : "S desna na lijevo (RTL)", +DlgGenLangCode : "Jezièni kôd", +DlgGenAccessKey : "Pristupna tipka", +DlgGenName : "Naziv", +DlgGenTabIndex : "Tab indeks", +DlgGenLongDescr : "Dugaèki opis URL-a", +DlgGenClass : "Klase CSS stilova", +DlgGenTitle : "Advisory title", +DlgGenContType : "Advisory vrsta sadržaja", +DlgGenLinkCharset : "Linked Resource Charset", +DlgGenStyle : "Stil", + +// Image Dialog +DlgImgTitle : "Svojstva slike", +DlgImgInfoTab : "Info slike", +DlgImgBtnUpload : "Šalji na server", +DlgImgURL : "URL", +DlgImgUpload : "Šalji", +DlgImgAlt : "Tekst na slici", +DlgImgWidth : "Širina", +DlgImgHeight : "Visina", +DlgImgLockRatio : "Zakljuèaj odnos", +DlgBtnResetSize : "Resetuj dimenzije", +DlgImgBorder : "Okvir", +DlgImgHSpace : "HSpace", +DlgImgVSpace : "VSpace", +DlgImgAlign : "Poravnanje", +DlgImgAlignLeft : "Lijevo", +DlgImgAlignAbsBottom: "Abs dole", +DlgImgAlignAbsMiddle: "Abs sredina", +DlgImgAlignBaseline : "Bazno", +DlgImgAlignBottom : "Dno", +DlgImgAlignMiddle : "Sredina", +DlgImgAlignRight : "Desno", +DlgImgAlignTextTop : "Vrh teksta", +DlgImgAlignTop : "Vrh", +DlgImgPreview : "Prikaz", +DlgImgAlertUrl : "Molimo ukucajte URL od slike.", +DlgImgLinkTab : "Link", //MISSING + +// Flash Dialog +DlgFlashTitle : "Flash Properties", //MISSING +DlgFlashChkPlay : "Auto Play", //MISSING +DlgFlashChkLoop : "Loop", //MISSING +DlgFlashChkMenu : "Enable Flash Menu", //MISSING +DlgFlashScale : "Scale", //MISSING +DlgFlashScaleAll : "Show all", //MISSING +DlgFlashScaleNoBorder : "No Border", //MISSING +DlgFlashScaleFit : "Exact Fit", //MISSING + +// Link Dialog +DlgLnkWindowTitle : "Link", +DlgLnkInfoTab : "Link info", +DlgLnkTargetTab : "Prozor", + +DlgLnkType : "Tip linka", +DlgLnkTypeURL : "URL", +DlgLnkTypeAnchor : "Sidro na ovoj stranici", +DlgLnkTypeEMail : "E-Mail", +DlgLnkProto : "Protokol", +DlgLnkProtoOther : "", +DlgLnkURL : "URL", +DlgLnkAnchorSel : "Izaberi sidro", +DlgLnkAnchorByName : "Po nazivu sidra", +DlgLnkAnchorById : "Po Id-u elementa", +DlgLnkNoAnchors : "(Nema dostupnih sidra na stranici)", +DlgLnkEMail : "E-Mail Adresa", +DlgLnkEMailSubject : "Subjekt poruke", +DlgLnkEMailBody : "Poruka", +DlgLnkUpload : "Šalji", +DlgLnkBtnUpload : "Šalji na server", + +DlgLnkTarget : "Prozor", +DlgLnkTargetFrame : "", +DlgLnkTargetPopup : "", +DlgLnkTargetBlank : "Novi prozor (_blank)", +DlgLnkTargetParent : "Glavni prozor (_parent)", +DlgLnkTargetSelf : "Isti prozor (_self)", +DlgLnkTargetTop : "Najgornji prozor (_top)", +DlgLnkTargetFrameName : "Target Frame Name", //MISSING +DlgLnkPopWinName : "Naziv popup prozora", +DlgLnkPopWinFeat : "Moguænosti popup prozora", +DlgLnkPopResize : "Promjenljive velièine", +DlgLnkPopLocation : "Traka za lokaciju", +DlgLnkPopMenu : "Izborna traka", +DlgLnkPopScroll : "Scroll traka", +DlgLnkPopStatus : "Statusna traka", +DlgLnkPopToolbar : "Traka sa alatima", +DlgLnkPopFullScrn : "Cijeli ekran (IE)", +DlgLnkPopDependent : "Ovisno (Netscape)", +DlgLnkPopWidth : "Širina", +DlgLnkPopHeight : "Visina", +DlgLnkPopLeft : "Lijeva pozicija", +DlgLnkPopTop : "Gornja pozicija", + +DlnLnkMsgNoUrl : "Molimo ukucajte URL link", +DlnLnkMsgNoEMail : "Molimo ukucajte e-mail adresu", +DlnLnkMsgNoAnchor : "Molimo izaberite sidro", +DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING + +// Color Dialog +DlgColorTitle : "Izaberi boju", +DlgColorBtnClear : "Oèisti", +DlgColorHighlight : "Igled", +DlgColorSelected : "Selektovana", + +// Smiley Dialog +DlgSmileyTitle : "Ubaci smješka", + +// Special Character Dialog +DlgSpecialCharTitle : "Izaberi specijalni karakter", + +// Table Dialog +DlgTableTitle : "Svojstva tabele", +DlgTableRows : "Redova", +DlgTableColumns : "Kolona", +DlgTableBorder : "Okvir", +DlgTableAlign : "Poravnanje", +DlgTableAlignNotSet : "", +DlgTableAlignLeft : "Lijevo", +DlgTableAlignCenter : "Centar", +DlgTableAlignRight : "Desno", +DlgTableWidth : "Širina", +DlgTableWidthPx : "piksela", +DlgTableWidthPc : "posto", +DlgTableHeight : "Visina", +DlgTableCellSpace : "Razmak æelija", +DlgTableCellPad : "Uvod æelija", +DlgTableCaption : "Naslov", +DlgTableSummary : "Summary", //MISSING +DlgTableHeaders : "Headers", //MISSING +DlgTableHeadersNone : "None", //MISSING +DlgTableHeadersColumn : "First column", //MISSING +DlgTableHeadersRow : "First Row", //MISSING +DlgTableHeadersBoth : "Both", //MISSING + +// Table Cell Dialog +DlgCellTitle : "Svojstva æelije", +DlgCellWidth : "Širina", +DlgCellWidthPx : "piksela", +DlgCellWidthPc : "posto", +DlgCellHeight : "Visina", +DlgCellWordWrap : "Vrapuj tekst", +DlgCellWordWrapNotSet : "", +DlgCellWordWrapYes : "Da", +DlgCellWordWrapNo : "Ne", +DlgCellHorAlign : "Horizontalno poravnanje", +DlgCellHorAlignNotSet : "", +DlgCellHorAlignLeft : "Lijevo", +DlgCellHorAlignCenter : "Centar", +DlgCellHorAlignRight: "Desno", +DlgCellVerAlign : "Vertikalno poravnanje", +DlgCellVerAlignNotSet : "", +DlgCellVerAlignTop : "Gore", +DlgCellVerAlignMiddle : "Sredina", +DlgCellVerAlignBottom : "Dno", +DlgCellVerAlignBaseline : "Bazno", +DlgCellType : "Cell Type", //MISSING +DlgCellTypeData : "Data", //MISSING +DlgCellTypeHeader : "Header", //MISSING +DlgCellRowSpan : "Spajanje æelija", +DlgCellCollSpan : "Spajanje kolona", +DlgCellBackColor : "Boja pozadine", +DlgCellBorderColor : "Boja okvira", +DlgCellBtnSelect : "Selektuj...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "Find and Replace", //MISSING + +// Find Dialog +DlgFindTitle : "Naði", +DlgFindFindBtn : "Naði", +DlgFindNotFoundMsg : "Traženi tekst nije pronaðen.", + +// Replace Dialog +DlgReplaceTitle : "Zamjeni", +DlgReplaceFindLbl : "Naði šta:", +DlgReplaceReplaceLbl : "Zamjeni sa:", +DlgReplaceCaseChk : "Uporeðuj velika/mala slova", +DlgReplaceReplaceBtn : "Zamjeni", +DlgReplaceReplAllBtn : "Zamjeni sve", +DlgReplaceWordChk : "Uporeðuj samo cijelu rijeè", + +// Paste Operations / Dialog +PasteErrorCut : "Sigurnosne postavke vašeg pretraživaèa ne dozvoljavaju operacije automatskog rezanja. Molimo koristite kraticu na tastaturi (Ctrl+X).", +PasteErrorCopy : "Sigurnosne postavke Vašeg pretraživaèa ne dozvoljavaju operacije automatskog kopiranja. Molimo koristite kraticu na tastaturi (Ctrl+C).", + +PasteAsText : "Zalijepi kao obièan tekst", +PasteFromWord : "Zalijepi iz Word-a", + +DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", //MISSING +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING +DlgPasteIgnoreFont : "Ignore Font Face definitions", //MISSING +DlgPasteRemoveStyles : "Remove Styles definitions", //MISSING + +// Color Picker +ColorAutomatic : "Automatska", +ColorMoreColors : "Više boja...", + +// Document Properties +DocProps : "Document Properties", //MISSING + +// Anchor Dialog +DlgAnchorTitle : "Anchor Properties", //MISSING +DlgAnchorName : "Anchor Name", //MISSING +DlgAnchorErrorName : "Please type the anchor name", //MISSING + +// Speller Pages Dialog +DlgSpellNotInDic : "Not in dictionary", //MISSING +DlgSpellChangeTo : "Change to", //MISSING +DlgSpellBtnIgnore : "Ignore", //MISSING +DlgSpellBtnIgnoreAll : "Ignore All", //MISSING +DlgSpellBtnReplace : "Replace", //MISSING +DlgSpellBtnReplaceAll : "Replace All", //MISSING +DlgSpellBtnUndo : "Undo", //MISSING +DlgSpellNoSuggestions : "- No suggestions -", //MISSING +DlgSpellProgress : "Spell check in progress...", //MISSING +DlgSpellNoMispell : "Spell check complete: No misspellings found", //MISSING +DlgSpellNoChanges : "Spell check complete: No words changed", //MISSING +DlgSpellOneChange : "Spell check complete: One word changed", //MISSING +DlgSpellManyChanges : "Spell check complete: %1 words changed", //MISSING + +IeSpellDownload : "Spell checker not installed. Do you want to download it now?", //MISSING + +// Button Dialog +DlgButtonText : "Text (Value)", //MISSING +DlgButtonType : "Type", //MISSING +DlgButtonTypeBtn : "Button", //MISSING +DlgButtonTypeSbm : "Submit", //MISSING +DlgButtonTypeRst : "Reset", //MISSING + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "Name", //MISSING +DlgCheckboxValue : "Value", //MISSING +DlgCheckboxSelected : "Selected", //MISSING + +// Form Dialog +DlgFormName : "Name", //MISSING +DlgFormAction : "Action", //MISSING +DlgFormMethod : "Method", //MISSING + +// Select Field Dialog +DlgSelectName : "Name", //MISSING +DlgSelectValue : "Value", //MISSING +DlgSelectSize : "Size", //MISSING +DlgSelectLines : "lines", //MISSING +DlgSelectChkMulti : "Allow multiple selections", //MISSING +DlgSelectOpAvail : "Available Options", //MISSING +DlgSelectOpText : "Text", //MISSING +DlgSelectOpValue : "Value", //MISSING +DlgSelectBtnAdd : "Add", //MISSING +DlgSelectBtnModify : "Modify", //MISSING +DlgSelectBtnUp : "Up", //MISSING +DlgSelectBtnDown : "Down", //MISSING +DlgSelectBtnSetValue : "Set as selected value", //MISSING +DlgSelectBtnDelete : "Delete", //MISSING + +// Textarea Dialog +DlgTextareaName : "Name", //MISSING +DlgTextareaCols : "Columns", //MISSING +DlgTextareaRows : "Rows", //MISSING + +// Text Field Dialog +DlgTextName : "Name", //MISSING +DlgTextValue : "Value", //MISSING +DlgTextCharWidth : "Character Width", //MISSING +DlgTextMaxChars : "Maximum Characters", //MISSING +DlgTextType : "Type", //MISSING +DlgTextTypeText : "Text", //MISSING +DlgTextTypePass : "Password", //MISSING + +// Hidden Field Dialog +DlgHiddenName : "Name", //MISSING +DlgHiddenValue : "Value", //MISSING + +// Bulleted List Dialog +BulletedListProp : "Bulleted List Properties", //MISSING +NumberedListProp : "Numbered List Properties", //MISSING +DlgLstStart : "Start", //MISSING +DlgLstType : "Type", //MISSING +DlgLstTypeCircle : "Circle", //MISSING +DlgLstTypeDisc : "Disc", //MISSING +DlgLstTypeSquare : "Square", //MISSING +DlgLstTypeNumbers : "Numbers (1, 2, 3)", //MISSING +DlgLstTypeLCase : "Lowercase Letters (a, b, c)", //MISSING +DlgLstTypeUCase : "Uppercase Letters (A, B, C)", //MISSING +DlgLstTypeSRoman : "Small Roman Numerals (i, ii, iii)", //MISSING +DlgLstTypeLRoman : "Large Roman Numerals (I, II, III)", //MISSING + +// Document Properties Dialog +DlgDocGeneralTab : "General", //MISSING +DlgDocBackTab : "Background", //MISSING +DlgDocColorsTab : "Colors and Margins", //MISSING +DlgDocMetaTab : "Meta Data", //MISSING + +DlgDocPageTitle : "Page Title", //MISSING +DlgDocLangDir : "Language Direction", //MISSING +DlgDocLangDirLTR : "Left to Right (LTR)", //MISSING +DlgDocLangDirRTL : "Right to Left (RTL)", //MISSING +DlgDocLangCode : "Language Code", //MISSING +DlgDocCharSet : "Character Set Encoding", //MISSING +DlgDocCharSetCE : "Central European", //MISSING +DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING +DlgDocCharSetCR : "Cyrillic", //MISSING +DlgDocCharSetGR : "Greek", //MISSING +DlgDocCharSetJP : "Japanese", //MISSING +DlgDocCharSetKR : "Korean", //MISSING +DlgDocCharSetTR : "Turkish", //MISSING +DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING +DlgDocCharSetWE : "Western European", //MISSING +DlgDocCharSetOther : "Other Character Set Encoding", //MISSING + +DlgDocDocType : "Document Type Heading", //MISSING +DlgDocDocTypeOther : "Other Document Type Heading", //MISSING +DlgDocIncXHTML : "Include XHTML Declarations", //MISSING +DlgDocBgColor : "Background Color", //MISSING +DlgDocBgImage : "Background Image URL", //MISSING +DlgDocBgNoScroll : "Nonscrolling Background", //MISSING +DlgDocCText : "Text", //MISSING +DlgDocCLink : "Link", //MISSING +DlgDocCVisited : "Visited Link", //MISSING +DlgDocCActive : "Active Link", //MISSING +DlgDocMargins : "Page Margins", //MISSING +DlgDocMaTop : "Top", //MISSING +DlgDocMaLeft : "Left", //MISSING +DlgDocMaRight : "Right", //MISSING +DlgDocMaBottom : "Bottom", //MISSING +DlgDocMeIndex : "Document Indexing Keywords (comma separated)", //MISSING +DlgDocMeDescr : "Document Description", //MISSING +DlgDocMeAuthor : "Author", //MISSING +DlgDocMeCopy : "Copyright", //MISSING +DlgDocPreview : "Preview", //MISSING + +// Templates Dialog +Templates : "Templates", //MISSING +DlgTemplatesTitle : "Content Templates", //MISSING +DlgTemplatesSelMsg : "Please select the template to open in the editor
(the actual contents will be lost):", //MISSING +DlgTemplatesLoading : "Loading templates list. Please wait...", //MISSING +DlgTemplatesNoTpl : "(No templates defined)", //MISSING +DlgTemplatesReplace : "Replace actual contents", //MISSING + +// About Dialog +DlgAboutAboutTab : "About", //MISSING +DlgAboutBrowserInfoTab : "Browser Info", //MISSING +DlgAboutLicenseTab : "License", //MISSING +DlgAboutVersion : "verzija", +DlgAboutInfo : "Za više informacija posjetite", + +// Div Dialog +DlgDivGeneralTab : "General", //MISSING +DlgDivAdvancedTab : "Advanced", //MISSING +DlgDivStyle : "Style", //MISSING +DlgDivInlineStyle : "Inline Style", //MISSING + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/ca.js b/fckeditor/editor/lang/ca.js new file mode 100644 index 0000000..5306254 --- /dev/null +++ b/fckeditor/editor/lang/ca.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * Catalan language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "Redueix la barra d'eines", +ToolbarExpand : "Amplia la barra d'eines", + +// Toolbar Items and Context Menu +Save : "Desa", +NewPage : "Nova Pàgina", +Preview : "Visualització prèvia", +Cut : "Retalla", +Copy : "Copia", +Paste : "Enganxa", +PasteText : "Enganxa com a text no formatat", +PasteWord : "Enganxa des del Word", +Print : "Imprimeix", +SelectAll : "Selecciona-ho tot", +RemoveFormat : "Elimina Format", +InsertLinkLbl : "Enllaç", +InsertLink : "Insereix/Edita enllaç", +RemoveLink : "Elimina l'enllaç", +VisitLink : "Obre l'enllaç", +Anchor : "Insereix/Edita àncora", +AnchorDelete : "Elimina àncora", +InsertImageLbl : "Imatge", +InsertImage : "Insereix/Edita imatge", +InsertFlashLbl : "Flash", +InsertFlash : "Insereix/Edita Flash", +InsertTableLbl : "Taula", +InsertTable : "Insereix/Edita taula", +InsertLineLbl : "Línia", +InsertLine : "Insereix línia horitzontal", +InsertSpecialCharLbl: "Caràcter Especial", +InsertSpecialChar : "Insereix caràcter especial", +InsertSmileyLbl : "Icona", +InsertSmiley : "Insereix icona", +About : "Quant a l'FCKeditor", +Bold : "Negreta", +Italic : "Cursiva", +Underline : "Subratllat", +StrikeThrough : "Barrat", +Subscript : "Subíndex", +Superscript : "Superíndex", +LeftJustify : "Alinia a l'esquerra", +CenterJustify : "Centrat", +RightJustify : "Alinia a la dreta", +BlockJustify : "Justificat", +DecreaseIndent : "Redueix el sagnat", +IncreaseIndent : "Augmenta el sagnat", +Blockquote : "Bloc de cita", +CreateDiv : "Crea un contenidor Div", +EditDiv : "Edita el contenidor Div", +DeleteDiv : "Elimina el contenidor Div", +Undo : "Desfés", +Redo : "Refés", +NumberedListLbl : "Llista numerada", +NumberedList : "Numeració activada/desactivada", +BulletedListLbl : "Llista de pics", +BulletedList : "Pics activats/descativats", +ShowTableBorders : "Mostra les vores de les taules", +ShowDetails : "Mostra detalls", +Style : "Estil", +FontFormat : "Format", +Font : "Tipus de lletra", +FontSize : "Mida", +TextColor : "Color de Text", +BGColor : "Color de Fons", +Source : "Codi font", +Find : "Cerca", +Replace : "Reemplaça", +SpellCheck : "Revisa l'ortografia", +UniversalKeyboard : "Teclat universal", +PageBreakLbl : "Salt de pàgina", +PageBreak : "Insereix salt de pàgina", + +Form : "Formulari", +Checkbox : "Casella de verificació", +RadioButton : "Botó d'opció", +TextField : "Camp de text", +Textarea : "Àrea de text", +HiddenField : "Camp ocult", +Button : "Botó", +SelectionField : "Camp de selecció", +ImageButton : "Botó d'imatge", + +FitWindow : "Maximiza la mida de l'editor", +ShowBlocks : "Mostra els blocs", + +// Context Menu +EditLink : "Edita l'enllaç", +CellCM : "Cel·la", +RowCM : "Fila", +ColumnCM : "Columna", +InsertRowAfter : "Insereix fila darrera", +InsertRowBefore : "Insereix fila abans de", +DeleteRows : "Suprimeix una fila", +InsertColumnAfter : "Insereix columna darrera", +InsertColumnBefore : "Insereix columna abans de", +DeleteColumns : "Suprimeix una columna", +InsertCellAfter : "Insereix cel·la darrera", +InsertCellBefore : "Insereix cel·la abans de", +DeleteCells : "Suprimeix les cel·les", +MergeCells : "Fusiona les cel·les", +MergeRight : "Fusiona cap a la dreta", +MergeDown : "Fusiona cap avall", +HorizontalSplitCell : "Divideix la cel·la horitzontalment", +VerticalSplitCell : "Divideix la cel·la verticalment", +TableDelete : "Suprimeix la taula", +CellProperties : "Propietats de la cel·la", +TableProperties : "Propietats de la taula", +ImageProperties : "Propietats de la imatge", +FlashProperties : "Propietats del Flash", + +AnchorProp : "Propietats de l'àncora", +ButtonProp : "Propietats del botó", +CheckboxProp : "Propietats de la casella de verificació", +HiddenFieldProp : "Propietats del camp ocult", +RadioButtonProp : "Propietats del botó d'opció", +ImageButtonProp : "Propietats del botó d'imatge", +TextFieldProp : "Propietats del camp de text", +SelectionFieldProp : "Propietats del camp de selecció", +TextareaProp : "Propietats de l'àrea de text", +FormProp : "Propietats del formulari", + +FontFormats : "Normal;Formatejat;Adreça;Encapçalament 1;Encapçalament 2;Encapçalament 3;Encapçalament 4;Encapçalament 5;Encapçalament 6;Normal (DIV)", + +// Alerts and Messages +ProcessingXHTML : "Processant XHTML. Si us plau esperi...", +Done : "Fet", +PasteWordConfirm : "El text que voleu enganxar sembla provenir de Word. Voleu netejar aquest text abans que sigui enganxat?", +NotCompatiblePaste : "Aquesta funció és disponible per a Internet Explorer versió 5.5 o superior. Voleu enganxar sense netejar?", +UnknownToolbarItem : "Element de la barra d'eines desconegut \"%1\"", +UnknownCommand : "Nom de comanda desconegut \"%1\"", +NotImplemented : "Mètode no implementat", +UnknownToolbarSet : "Conjunt de barra d'eines \"%1\" inexistent", +NoActiveX : "Les preferències del navegador poden limitar algunes funcions d'aquest editor. Cal habilitar l'opció \"Executa controls ActiveX i plug-ins\". Poden sorgir errors i poden faltar algunes funcions.", +BrowseServerBlocked : "El visualitzador de recursos no s'ha pogut obrir. Assegura't de que els bloquejos de finestres emergents estan desactivats.", +DialogBlocked : "No ha estat possible obrir una finestra de diàleg. Assegureu-vos que els bloquejos de finestres emergents estan desactivats.", +VisitLinkBlocked : "No ha estat possible obrir una nova finestra. Assegureu-vos que els bloquejos de finestres emergents estan desactivats.", + +// Dialogs +DlgBtnOK : "D'acord", +DlgBtnCancel : "Cancel·la", +DlgBtnClose : "Tanca", +DlgBtnBrowseServer : "Veure servidor", +DlgAdvancedTag : "Avançat", +DlgOpOther : "Altres", +DlgInfoTab : "Info", +DlgAlertUrl : "Si us plau, afegiu la URL", + +// General Dialogs Labels +DlgGenNotSet : "", +DlgGenId : "Id", +DlgGenLangDir : "Direcció de l'idioma", +DlgGenLangDirLtr : "D'esquerra a dreta (LTR)", +DlgGenLangDirRtl : "De dreta a esquerra (RTL)", +DlgGenLangCode : "Codi d'idioma", +DlgGenAccessKey : "Clau d'accés", +DlgGenName : "Nom", +DlgGenTabIndex : "Index de Tab", +DlgGenLongDescr : "Descripció llarga de la URL", +DlgGenClass : "Classes del full d'estil", +DlgGenTitle : "Títol consultiu", +DlgGenContType : "Tipus de contingut consultiu", +DlgGenLinkCharset : "Conjunt de caràcters font enllaçat", +DlgGenStyle : "Estil", + +// Image Dialog +DlgImgTitle : "Propietats de la imatge", +DlgImgInfoTab : "Informació de la imatge", +DlgImgBtnUpload : "Envia-la al servidor", +DlgImgURL : "URL", +DlgImgUpload : "Puja", +DlgImgAlt : "Text alternatiu", +DlgImgWidth : "Amplada", +DlgImgHeight : "Alçada", +DlgImgLockRatio : "Bloqueja les proporcions", +DlgBtnResetSize : "Restaura la mida", +DlgImgBorder : "Vora", +DlgImgHSpace : "Espaiat horit.", +DlgImgVSpace : "Espaiat vert.", +DlgImgAlign : "Alineació", +DlgImgAlignLeft : "Ajusta a l'esquerra", +DlgImgAlignAbsBottom: "Abs Bottom", +DlgImgAlignAbsMiddle: "Abs Middle", +DlgImgAlignBaseline : "Baseline", +DlgImgAlignBottom : "Bottom", +DlgImgAlignMiddle : "Middle", +DlgImgAlignRight : "Ajusta a la dreta", +DlgImgAlignTextTop : "Text Top", +DlgImgAlignTop : "Top", +DlgImgPreview : "Vista prèvia", +DlgImgAlertUrl : "Si us plau, escriviu la URL de la imatge", +DlgImgLinkTab : "Enllaç", + +// Flash Dialog +DlgFlashTitle : "Propietats del Flash", +DlgFlashChkPlay : "Reprodució automàtica", +DlgFlashChkLoop : "Bucle", +DlgFlashChkMenu : "Habilita menú Flash", +DlgFlashScale : "Escala", +DlgFlashScaleAll : "Mostra-ho tot", +DlgFlashScaleNoBorder : "Sense vores", +DlgFlashScaleFit : "Mida exacta", + +// Link Dialog +DlgLnkWindowTitle : "Enllaç", +DlgLnkInfoTab : "Informació de l'enllaç", +DlgLnkTargetTab : "Destí", + +DlgLnkType : "Tipus d'enllaç", +DlgLnkTypeURL : "URL", +DlgLnkTypeAnchor : "Àncora en aquesta pàgina", +DlgLnkTypeEMail : "Correu electrònic", +DlgLnkProto : "Protocol", +DlgLnkProtoOther : "", +DlgLnkURL : "URL", +DlgLnkAnchorSel : "Selecciona una àncora", +DlgLnkAnchorByName : "Per nom d'àncora", +DlgLnkAnchorById : "Per Id d'element", +DlgLnkNoAnchors : "(No hi ha àncores disponibles en aquest document)", +DlgLnkEMail : "Adreça de correu electrònic", +DlgLnkEMailSubject : "Assumpte del missatge", +DlgLnkEMailBody : "Cos del missatge", +DlgLnkUpload : "Puja", +DlgLnkBtnUpload : "Envia al servidor", + +DlgLnkTarget : "Destí", +DlgLnkTargetFrame : "", +DlgLnkTargetPopup : "", +DlgLnkTargetBlank : "Nova finestra (_blank)", +DlgLnkTargetParent : "Finestra pare (_parent)", +DlgLnkTargetSelf : "Mateixa finestra (_self)", +DlgLnkTargetTop : "Finestra Major (_top)", +DlgLnkTargetFrameName : "Nom del marc de destí", +DlgLnkPopWinName : "Nom finestra popup", +DlgLnkPopWinFeat : "Característiques finestra popup", +DlgLnkPopResize : "Redimensionable", +DlgLnkPopLocation : "Barra d'adreça", +DlgLnkPopMenu : "Barra de menú", +DlgLnkPopScroll : "Barres d'scroll", +DlgLnkPopStatus : "Barra d'estat", +DlgLnkPopToolbar : "Barra d'eines", +DlgLnkPopFullScrn : "Pantalla completa (IE)", +DlgLnkPopDependent : "Depenent (Netscape)", +DlgLnkPopWidth : "Amplada", +DlgLnkPopHeight : "Alçada", +DlgLnkPopLeft : "Posició esquerra", +DlgLnkPopTop : "Posició dalt", + +DlnLnkMsgNoUrl : "Si us plau, escrigui l'enllaç URL", +DlnLnkMsgNoEMail : "Si us plau, escrigui l'adreça correu electrònic", +DlnLnkMsgNoAnchor : "Si us plau, escrigui l'àncora", +DlnLnkMsgInvPopName : "El nom de la finestra emergent ha de començar amb una lletra i no pot tenir espais", + +// Color Dialog +DlgColorTitle : "Selecciona el color", +DlgColorBtnClear : "Neteja", +DlgColorHighlight : "Realça", +DlgColorSelected : "Selecciona", + +// Smiley Dialog +DlgSmileyTitle : "Insereix una icona", + +// Special Character Dialog +DlgSpecialCharTitle : "Selecciona el caràcter especial", + +// Table Dialog +DlgTableTitle : "Propietats de la taula", +DlgTableRows : "Files", +DlgTableColumns : "Columnes", +DlgTableBorder : "Mida vora", +DlgTableAlign : "Alineació", +DlgTableAlignNotSet : "", +DlgTableAlignLeft : "Esquerra", +DlgTableAlignCenter : "Centre", +DlgTableAlignRight : "Dreta", +DlgTableWidth : "Amplada", +DlgTableWidthPx : "píxels", +DlgTableWidthPc : "percentatge", +DlgTableHeight : "Alçada", +DlgTableCellSpace : "Espaiat de cel·les", +DlgTableCellPad : "Encoixinament de cel·les", +DlgTableCaption : "Títol", +DlgTableSummary : "Resum", +DlgTableHeaders : "Headers", //MISSING +DlgTableHeadersNone : "None", //MISSING +DlgTableHeadersColumn : "First column", //MISSING +DlgTableHeadersRow : "First Row", //MISSING +DlgTableHeadersBoth : "Both", //MISSING + +// Table Cell Dialog +DlgCellTitle : "Propietats de la cel·la", +DlgCellWidth : "Amplada", +DlgCellWidthPx : "píxels", +DlgCellWidthPc : "percentatge", +DlgCellHeight : "Alçada", +DlgCellWordWrap : "Ajust de paraula", +DlgCellWordWrapNotSet : "", +DlgCellWordWrapYes : "Si", +DlgCellWordWrapNo : "No", +DlgCellHorAlign : "Alineació horitzontal", +DlgCellHorAlignNotSet : "", +DlgCellHorAlignLeft : "Esquerra", +DlgCellHorAlignCenter : "Centre", +DlgCellHorAlignRight: "Dreta", +DlgCellVerAlign : "Alineació vertical", +DlgCellVerAlignNotSet : "", +DlgCellVerAlignTop : "Top", +DlgCellVerAlignMiddle : "Middle", +DlgCellVerAlignBottom : "Bottom", +DlgCellVerAlignBaseline : "Baseline", +DlgCellType : "Cell Type", //MISSING +DlgCellTypeData : "Data", //MISSING +DlgCellTypeHeader : "Header", //MISSING +DlgCellRowSpan : "Rows Span", +DlgCellCollSpan : "Columns Span", +DlgCellBackColor : "Color de fons", +DlgCellBorderColor : "Color de la vora", +DlgCellBtnSelect : "Seleccioneu...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "Cerca i reemplaça", + +// Find Dialog +DlgFindTitle : "Cerca", +DlgFindFindBtn : "Cerca", +DlgFindNotFoundMsg : "El text especificat no s'ha trobat.", + +// Replace Dialog +DlgReplaceTitle : "Reemplaça", +DlgReplaceFindLbl : "Cerca:", +DlgReplaceReplaceLbl : "Remplaça amb:", +DlgReplaceCaseChk : "Distingeix majúscules/minúscules", +DlgReplaceReplaceBtn : "Reemplaça", +DlgReplaceReplAllBtn : "Reemplaça-ho tot", +DlgReplaceWordChk : "Només paraules completes", + +// Paste Operations / Dialog +PasteErrorCut : "La seguretat del vostre navegador no permet executar automàticament les operacions de retallar. Si us plau, utilitzeu el teclat (Ctrl+X).", +PasteErrorCopy : "La seguretat del vostre navegador no permet executar automàticament les operacions de copiar. Si us plau, utilitzeu el teclat (Ctrl+C).", + +PasteAsText : "Enganxa com a text no formatat", +PasteFromWord : "Enganxa com a Word", + +DlgPasteMsg2 : "Si us plau, enganxeu dins del següent camp utilitzant el teclat (Ctrl+V) i premeu OK.", +DlgPasteSec : "A causa de la configuració de seguretat del vostre navegador, l'editor no pot accedir al porta-retalls directament. Enganxeu-ho un altre cop en aquesta finestra.", +DlgPasteIgnoreFont : "Ignora definicions de font", +DlgPasteRemoveStyles : "Elimina definicions d'estil", + +// Color Picker +ColorAutomatic : "Automàtic", +ColorMoreColors : "Més colors...", + +// Document Properties +DocProps : "Propietats del document", + +// Anchor Dialog +DlgAnchorTitle : "Propietats de l'àncora", +DlgAnchorName : "Nom de l'àncora", +DlgAnchorErrorName : "Si us plau, escriviu el nom de l'ancora", + +// Speller Pages Dialog +DlgSpellNotInDic : "No és al diccionari", +DlgSpellChangeTo : "Reemplaça amb", +DlgSpellBtnIgnore : "Ignora", +DlgSpellBtnIgnoreAll : "Ignora-les totes", +DlgSpellBtnReplace : "Canvia", +DlgSpellBtnReplaceAll : "Canvia-les totes", +DlgSpellBtnUndo : "Desfés", +DlgSpellNoSuggestions : "Cap suggeriment", +DlgSpellProgress : "Verificació ortogràfica en curs...", +DlgSpellNoMispell : "Verificació ortogràfica acabada: no hi ha cap paraula mal escrita", +DlgSpellNoChanges : "Verificació ortogràfica: no s'ha canviat cap paraula", +DlgSpellOneChange : "Verificació ortogràfica: s'ha canviat una paraula", +DlgSpellManyChanges : "Verificació ortogràfica: s'han canviat %1 paraules", + +IeSpellDownload : "Verificació ortogràfica no instal·lada. Voleu descarregar-ho ara?", + +// Button Dialog +DlgButtonText : "Text (Valor)", +DlgButtonType : "Tipus", +DlgButtonTypeBtn : "Botó", +DlgButtonTypeSbm : "Transmet formulari", +DlgButtonTypeRst : "Reinicia formulari", + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "Nom", +DlgCheckboxValue : "Valor", +DlgCheckboxSelected : "Seleccionat", + +// Form Dialog +DlgFormName : "Nom", +DlgFormAction : "Acció", +DlgFormMethod : "Mètode", + +// Select Field Dialog +DlgSelectName : "Nom", +DlgSelectValue : "Valor", +DlgSelectSize : "Mida", +DlgSelectLines : "Línies", +DlgSelectChkMulti : "Permet múltiples seleccions", +DlgSelectOpAvail : "Opcions disponibles", +DlgSelectOpText : "Text", +DlgSelectOpValue : "Valor", +DlgSelectBtnAdd : "Afegeix", +DlgSelectBtnModify : "Modifica", +DlgSelectBtnUp : "Amunt", +DlgSelectBtnDown : "Avall", +DlgSelectBtnSetValue : "Selecciona per defecte", +DlgSelectBtnDelete : "Elimina", + +// Textarea Dialog +DlgTextareaName : "Nom", +DlgTextareaCols : "Columnes", +DlgTextareaRows : "Files", + +// Text Field Dialog +DlgTextName : "Nom", +DlgTextValue : "Valor", +DlgTextCharWidth : "Amplada", +DlgTextMaxChars : "Nombre màxim de caràcters", +DlgTextType : "Tipus", +DlgTextTypeText : "Text", +DlgTextTypePass : "Contrasenya", + +// Hidden Field Dialog +DlgHiddenName : "Nom", +DlgHiddenValue : "Valor", + +// Bulleted List Dialog +BulletedListProp : "Propietats de la llista de pics", +NumberedListProp : "Propietats de llista numerada", +DlgLstStart : "Inici", +DlgLstType : "Tipus", +DlgLstTypeCircle : "Cercle", +DlgLstTypeDisc : "Disc", +DlgLstTypeSquare : "Quadrat", +DlgLstTypeNumbers : "Números (1, 2, 3)", +DlgLstTypeLCase : "Lletres minúscules (a, b, c)", +DlgLstTypeUCase : "Lletres majúscules (A, B, C)", +DlgLstTypeSRoman : "Números romans en minúscules (i, ii, iii)", +DlgLstTypeLRoman : "Números romans en majúscules (I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "General", +DlgDocBackTab : "Fons", +DlgDocColorsTab : "Colors i marges", +DlgDocMetaTab : "Metadades", + +DlgDocPageTitle : "Títol de la pàgina", +DlgDocLangDir : "Direcció idioma", +DlgDocLangDirLTR : "Esquerra a dreta (LTR)", +DlgDocLangDirRTL : "Dreta a esquerra (RTL)", +DlgDocLangCode : "Codi d'idioma", +DlgDocCharSet : "Codificació de conjunt de caràcters", +DlgDocCharSetCE : "Centreeuropeu", +DlgDocCharSetCT : "Xinès tradicional (Big5)", +DlgDocCharSetCR : "Ciríl·lic", +DlgDocCharSetGR : "Grec", +DlgDocCharSetJP : "Japonès", +DlgDocCharSetKR : "Coreà", +DlgDocCharSetTR : "Turc", +DlgDocCharSetUN : "Unicode (UTF-8)", +DlgDocCharSetWE : "Europeu occidental", +DlgDocCharSetOther : "Una altra codificació de caràcters", + +DlgDocDocType : "Capçalera de tipus de document", +DlgDocDocTypeOther : "Un altra capçalera de tipus de document", +DlgDocIncXHTML : "Incloure declaracions XHTML", +DlgDocBgColor : "Color de fons", +DlgDocBgImage : "URL de la imatge de fons", +DlgDocBgNoScroll : "Fons fixe", +DlgDocCText : "Text", +DlgDocCLink : "Enllaç", +DlgDocCVisited : "Enllaç visitat", +DlgDocCActive : "Enllaç actiu", +DlgDocMargins : "Marges de pàgina", +DlgDocMaTop : "Cap", +DlgDocMaLeft : "Esquerra", +DlgDocMaRight : "Dreta", +DlgDocMaBottom : "Peu", +DlgDocMeIndex : "Mots clau per a indexació (separats per coma)", +DlgDocMeDescr : "Descripció del document", +DlgDocMeAuthor : "Autor", +DlgDocMeCopy : "Copyright", +DlgDocPreview : "Vista prèvia", + +// Templates Dialog +Templates : "Plantilles", +DlgTemplatesTitle : "Contingut plantilles", +DlgTemplatesSelMsg : "Si us plau, seleccioneu la plantilla per obrir a l'editor
(el contingut actual no serà enregistrat):", +DlgTemplatesLoading : "Carregant la llista de plantilles. Si us plau, espereu...", +DlgTemplatesNoTpl : "(No hi ha plantilles definides)", +DlgTemplatesReplace : "Reemplaça el contingut actual", + +// About Dialog +DlgAboutAboutTab : "Quant a", +DlgAboutBrowserInfoTab : "Informació del navegador", +DlgAboutLicenseTab : "Llicència", +DlgAboutVersion : "versió", +DlgAboutInfo : "Per a més informació aneu a", + +// Div Dialog +DlgDivGeneralTab : "General", +DlgDivAdvancedTab : "Avançat", +DlgDivStyle : "Estil", +DlgDivInlineStyle : "Estil en línia", + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/cs.js b/fckeditor/editor/lang/cs.js new file mode 100644 index 0000000..5745bf5 --- /dev/null +++ b/fckeditor/editor/lang/cs.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * Czech language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "Skrýt panel nástrojů", +ToolbarExpand : "Zobrazit panel nástrojů", + +// Toolbar Items and Context Menu +Save : "Uložit", +NewPage : "Nová stránka", +Preview : "Náhled", +Cut : "Vyjmout", +Copy : "Kopírovat", +Paste : "Vložit", +PasteText : "Vložit jako čistý text", +PasteWord : "Vložit z Wordu", +Print : "Tisk", +SelectAll : "Vybrat vše", +RemoveFormat : "Odstranit formátování", +InsertLinkLbl : "Odkaz", +InsertLink : "Vložit/změnit odkaz", +RemoveLink : "Odstranit odkaz", +VisitLink : "Otevřít odkaz", +Anchor : "Vložít/změnit záložku", +AnchorDelete : "Odstranit kotvu", +InsertImageLbl : "Obrázek", +InsertImage : "Vložit/změnit obrázek", +InsertFlashLbl : "Flash", +InsertFlash : "Vložit/Upravit Flash", +InsertTableLbl : "Tabulka", +InsertTable : "Vložit/změnit tabulku", +InsertLineLbl : "Linka", +InsertLine : "Vložit vodorovnou linku", +InsertSpecialCharLbl: "Speciální znaky", +InsertSpecialChar : "Vložit speciální znaky", +InsertSmileyLbl : "Smajlíky", +InsertSmiley : "Vložit smajlík", +About : "O aplikaci FCKeditor", +Bold : "Tučné", +Italic : "Kurzíva", +Underline : "Podtržené", +StrikeThrough : "Přeškrtnuté", +Subscript : "Dolní index", +Superscript : "Horní index", +LeftJustify : "Zarovnat vlevo", +CenterJustify : "Zarovnat na střed", +RightJustify : "Zarovnat vpravo", +BlockJustify : "Zarovnat do bloku", +DecreaseIndent : "Zmenšit odsazení", +IncreaseIndent : "Zvětšit odsazení", +Blockquote : "Citace", +CreateDiv : "Vytvořit Div kontejner", +EditDiv : "Upravit Div kontejner", +DeleteDiv : "Odstranit Div kontejner", +Undo : "Zpět", +Redo : "Znovu", +NumberedListLbl : "Číslování", +NumberedList : "Vložit/odstranit číslovaný seznam", +BulletedListLbl : "Odrážky", +BulletedList : "Vložit/odstranit odrážky", +ShowTableBorders : "Zobrazit okraje tabulek", +ShowDetails : "Zobrazit podrobnosti", +Style : "Styl", +FontFormat : "Formát", +Font : "Písmo", +FontSize : "Velikost", +TextColor : "Barva textu", +BGColor : "Barva pozadí", +Source : "Zdroj", +Find : "Hledat", +Replace : "Nahradit", +SpellCheck : "Zkontrolovat pravopis", +UniversalKeyboard : "Univerzální klávesnice", +PageBreakLbl : "Konec stránky", +PageBreak : "Vložit konec stránky", + +Form : "Formulář", +Checkbox : "Zaškrtávací políčko", +RadioButton : "Přepínač", +TextField : "Textové pole", +Textarea : "Textová oblast", +HiddenField : "Skryté pole", +Button : "Tlačítko", +SelectionField : "Seznam", +ImageButton : "Obrázkové tlačítko", + +FitWindow : "Maximalizovat velikost editoru", +ShowBlocks : "Ukázat bloky", + +// Context Menu +EditLink : "Změnit odkaz", +CellCM : "Buňka", +RowCM : "Řádek", +ColumnCM : "Sloupec", +InsertRowAfter : "Vložit řádek za", +InsertRowBefore : "Vložit řádek před", +DeleteRows : "Smazat řádky", +InsertColumnAfter : "Vložit sloupec za", +InsertColumnBefore : "Vložit sloupec před", +DeleteColumns : "Smazat sloupec", +InsertCellAfter : "Vložit buňku za", +InsertCellBefore : "Vložit buňku před", +DeleteCells : "Smazat buňky", +MergeCells : "Sloučit buňky", +MergeRight : "Sloučit doprava", +MergeDown : "Sloučit dolů", +HorizontalSplitCell : "Rozdělit buňky vodorovně", +VerticalSplitCell : "Rozdělit buňky svisle", +TableDelete : "Smazat tabulku", +CellProperties : "Vlastnosti buňky", +TableProperties : "Vlastnosti tabulky", +ImageProperties : "Vlastnosti obrázku", +FlashProperties : "Vlastnosti Flashe", + +AnchorProp : "Vlastnosti záložky", +ButtonProp : "Vlastnosti tlačítka", +CheckboxProp : "Vlastnosti zaškrtávacího políčka", +HiddenFieldProp : "Vlastnosti skrytého pole", +RadioButtonProp : "Vlastnosti přepínače", +ImageButtonProp : "Vlastností obrázkového tlačítka", +TextFieldProp : "Vlastnosti textového pole", +SelectionFieldProp : "Vlastnosti seznamu", +TextareaProp : "Vlastnosti textové oblasti", +FormProp : "Vlastnosti formuláře", + +FontFormats : "Normální;Naformátováno;Adresa;Nadpis 1;Nadpis 2;Nadpis 3;Nadpis 4;Nadpis 5;Nadpis 6;Normální (DIV)", + +// Alerts and Messages +ProcessingXHTML : "Probíhá zpracování XHTML. Prosím čekejte...", +Done : "Hotovo", +PasteWordConfirm : "Jak je vidět, vkládaný text je kopírován z Wordu. Chcete jej před vložením vyčistit?", +NotCompatiblePaste : "Tento příkaz je dostupný pouze v Internet Exploreru verze 5.5 nebo vyšší. Chcete vložit text bez vyčištění?", +UnknownToolbarItem : "Neznámá položka panelu nástrojů \"%1\"", +UnknownCommand : "Neznámý příkaz \"%1\"", +NotImplemented : "Příkaz není implementován", +UnknownToolbarSet : "Panel nástrojů \"%1\" neexistuje", +NoActiveX : "Nastavení bezpečnosti Vašeho prohlížeče omezuje funkčnost některých jeho možností. Je třeba zapnout volbu \"Spouštět ovládáací prvky ActiveX a moduly plug-in\", jinak nebude možné využívat všechny dosputné schopnosti editoru.", +BrowseServerBlocked : "Průzkumník zdrojů nelze otevřít. Prověřte, zda nemáte aktivováno blokování popup oken.", +DialogBlocked : "Nelze otevřít dialogové okno. Prověřte, zda nemáte aktivováno blokování popup oken.", +VisitLinkBlocked : "Není možné otevřít nové okno. Prověřte, zda všechny nástroje pro blokování vyskakovacích oken jsou vypnuty.", + +// Dialogs +DlgBtnOK : "OK", +DlgBtnCancel : "Storno", +DlgBtnClose : "Zavřít", +DlgBtnBrowseServer : "Vybrat na serveru", +DlgAdvancedTag : "Rozšířené", +DlgOpOther : "", +DlgInfoTab : "Info", +DlgAlertUrl : "Prosím vložte URL", + +// General Dialogs Labels +DlgGenNotSet : "", +DlgGenId : "Id", +DlgGenLangDir : "Orientace jazyka", +DlgGenLangDirLtr : "Zleva do prava (LTR)", +DlgGenLangDirRtl : "Zprava do leva (RTL)", +DlgGenLangCode : "Kód jazyka", +DlgGenAccessKey : "Přístupový klíč", +DlgGenName : "Jméno", +DlgGenTabIndex : "Pořadí prvku", +DlgGenLongDescr : "Dlouhý popis URL", +DlgGenClass : "Třída stylu", +DlgGenTitle : "Pomocný titulek", +DlgGenContType : "Pomocný typ obsahu", +DlgGenLinkCharset : "Přiřazená znaková sada", +DlgGenStyle : "Styl", + +// Image Dialog +DlgImgTitle : "Vlastnosti obrázku", +DlgImgInfoTab : "Informace o obrázku", +DlgImgBtnUpload : "Odeslat na server", +DlgImgURL : "URL", +DlgImgUpload : "Odeslat", +DlgImgAlt : "Alternativní text", +DlgImgWidth : "Šířka", +DlgImgHeight : "Výška", +DlgImgLockRatio : "Zámek", +DlgBtnResetSize : "Původní velikost", +DlgImgBorder : "Okraje", +DlgImgHSpace : "H-mezera", +DlgImgVSpace : "V-mezera", +DlgImgAlign : "Zarovnání", +DlgImgAlignLeft : "Vlevo", +DlgImgAlignAbsBottom: "Zcela dolů", +DlgImgAlignAbsMiddle: "Doprostřed", +DlgImgAlignBaseline : "Na účaří", +DlgImgAlignBottom : "Dolů", +DlgImgAlignMiddle : "Na střed", +DlgImgAlignRight : "Vpravo", +DlgImgAlignTextTop : "Na horní okraj textu", +DlgImgAlignTop : "Nahoru", +DlgImgPreview : "Náhled", +DlgImgAlertUrl : "Zadejte prosím URL obrázku", +DlgImgLinkTab : "Odkaz", + +// Flash Dialog +DlgFlashTitle : "Vlastnosti Flashe", +DlgFlashChkPlay : "Automatické spuštění", +DlgFlashChkLoop : "Opakování", +DlgFlashChkMenu : "Nabídka Flash", +DlgFlashScale : "Zobrazit", +DlgFlashScaleAll : "Zobrazit vše", +DlgFlashScaleNoBorder : "Bez okraje", +DlgFlashScaleFit : "Přizpůsobit", + +// Link Dialog +DlgLnkWindowTitle : "Odkaz", +DlgLnkInfoTab : "Informace o odkazu", +DlgLnkTargetTab : "Cíl", + +DlgLnkType : "Typ odkazu", +DlgLnkTypeURL : "URL", +DlgLnkTypeAnchor : "Kotva v této stránce", +DlgLnkTypeEMail : "E-Mail", +DlgLnkProto : "Protokol", +DlgLnkProtoOther : "", +DlgLnkURL : "URL", +DlgLnkAnchorSel : "Vybrat kotvu", +DlgLnkAnchorByName : "Podle jména kotvy", +DlgLnkAnchorById : "Podle Id objektu", +DlgLnkNoAnchors : "(Ve stránce není definována žádná kotva!)", +DlgLnkEMail : "E-Mailová adresa", +DlgLnkEMailSubject : "Předmět zprávy", +DlgLnkEMailBody : "Tělo zprávy", +DlgLnkUpload : "Odeslat", +DlgLnkBtnUpload : "Odeslat na Server", + +DlgLnkTarget : "Cíl", +DlgLnkTargetFrame : "", +DlgLnkTargetPopup : "", +DlgLnkTargetBlank : "Nové okno (_blank)", +DlgLnkTargetParent : "Rodičovské okno (_parent)", +DlgLnkTargetSelf : "Stejné okno (_self)", +DlgLnkTargetTop : "Hlavní okno (_top)", +DlgLnkTargetFrameName : "Název cílového rámu", +DlgLnkPopWinName : "Název vyskakovacího okna", +DlgLnkPopWinFeat : "Vlastnosti vyskakovacího okna", +DlgLnkPopResize : "Měnitelná velikost", +DlgLnkPopLocation : "Panel umístění", +DlgLnkPopMenu : "Panel nabídky", +DlgLnkPopScroll : "Posuvníky", +DlgLnkPopStatus : "Stavový řádek", +DlgLnkPopToolbar : "Panel nástrojů", +DlgLnkPopFullScrn : "Celá obrazovka (IE)", +DlgLnkPopDependent : "Závislost (Netscape)", +DlgLnkPopWidth : "Šířka", +DlgLnkPopHeight : "Výška", +DlgLnkPopLeft : "Levý okraj", +DlgLnkPopTop : "Horní okraj", + +DlnLnkMsgNoUrl : "Zadejte prosím URL odkazu", +DlnLnkMsgNoEMail : "Zadejte prosím e-mailovou adresu", +DlnLnkMsgNoAnchor : "Vyberte prosím kotvu", +DlnLnkMsgInvPopName : "Název vyskakovacího okna musí začínat písmenem a nesmí obsahovat mezery", + +// Color Dialog +DlgColorTitle : "Výběr barvy", +DlgColorBtnClear : "Vymazat", +DlgColorHighlight : "Zvýrazněná", +DlgColorSelected : "Vybraná", + +// Smiley Dialog +DlgSmileyTitle : "Vkládání smajlíků", + +// Special Character Dialog +DlgSpecialCharTitle : "Výběr speciálního znaku", + +// Table Dialog +DlgTableTitle : "Vlastnosti tabulky", +DlgTableRows : "Řádky", +DlgTableColumns : "Sloupce", +DlgTableBorder : "Ohraničení", +DlgTableAlign : "Zarovnání", +DlgTableAlignNotSet : "", +DlgTableAlignLeft : "Vlevo", +DlgTableAlignCenter : "Na střed", +DlgTableAlignRight : "Vpravo", +DlgTableWidth : "Šířka", +DlgTableWidthPx : "bodů", +DlgTableWidthPc : "procent", +DlgTableHeight : "Výška", +DlgTableCellSpace : "Vzdálenost buněk", +DlgTableCellPad : "Odsazení obsahu", +DlgTableCaption : "Popis", +DlgTableSummary : "Souhrn", +DlgTableHeaders : "Záhlaví", +DlgTableHeadersNone : "Žádné", +DlgTableHeadersColumn : "První sloupec", +DlgTableHeadersRow : "První řádek", +DlgTableHeadersBoth : "Oboje", + +// Table Cell Dialog +DlgCellTitle : "Vlastnosti buňky", +DlgCellWidth : "Šířka", +DlgCellWidthPx : "bodů", +DlgCellWidthPc : "procent", +DlgCellHeight : "Výška", +DlgCellWordWrap : "Zalamování", +DlgCellWordWrapNotSet : "", +DlgCellWordWrapYes : "Ano", +DlgCellWordWrapNo : "Ne", +DlgCellHorAlign : "Vodorovné zarovnání", +DlgCellHorAlignNotSet : "", +DlgCellHorAlignLeft : "Vlevo", +DlgCellHorAlignCenter : "Na střed", +DlgCellHorAlignRight: "Vpravo", +DlgCellVerAlign : "Svislé zarovnání", +DlgCellVerAlignNotSet : "", +DlgCellVerAlignTop : "Nahoru", +DlgCellVerAlignMiddle : "Doprostřed", +DlgCellVerAlignBottom : "Dolů", +DlgCellVerAlignBaseline : "Na účaří", +DlgCellType : "Typ buňky", +DlgCellTypeData : "Data", +DlgCellTypeHeader : "Zálaví", +DlgCellRowSpan : "Sloučené řádky", +DlgCellCollSpan : "Sloučené sloupce", +DlgCellBackColor : "Barva pozadí", +DlgCellBorderColor : "Barva ohraničení", +DlgCellBtnSelect : "Výběr...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "Najít a nahradit", + +// Find Dialog +DlgFindTitle : "Hledat", +DlgFindFindBtn : "Hledat", +DlgFindNotFoundMsg : "Hledaný text nebyl nalezen.", + +// Replace Dialog +DlgReplaceTitle : "Nahradit", +DlgReplaceFindLbl : "Co hledat:", +DlgReplaceReplaceLbl : "Čím nahradit:", +DlgReplaceCaseChk : "Rozlišovat velikost písma", +DlgReplaceReplaceBtn : "Nahradit", +DlgReplaceReplAllBtn : "Nahradit vše", +DlgReplaceWordChk : "Pouze celá slova", + +// Paste Operations / Dialog +PasteErrorCut : "Bezpečnostní nastavení Vašeho prohlížeče nedovolují editoru spustit funkci pro vyjmutí zvoleného textu do schránky. Prosím vyjměte zvolený text do schránky pomocí klávesnice (Ctrl+X).", +PasteErrorCopy : "Bezpečnostní nastavení Vašeho prohlížeče nedovolují editoru spustit funkci pro kopírování zvoleného textu do schránky. Prosím zkopírujte zvolený text do schránky pomocí klávesnice (Ctrl+C).", + +PasteAsText : "Vložit jako čistý text", +PasteFromWord : "Vložit text z Wordu", + +DlgPasteMsg2 : "Do následujícího pole vložte požadovaný obsah pomocí klávesnice (Ctrl+V) a stiskněte OK.", +DlgPasteSec : "Z důvodů nastavení bezpečnosti Vašeho prohlížeče nemůže editor přistupovat přímo do schránky. Obsah schránky prosím vložte znovu do tohoto okna.", +DlgPasteIgnoreFont : "Ignorovat písmo", +DlgPasteRemoveStyles : "Odstranit styly", + +// Color Picker +ColorAutomatic : "Automaticky", +ColorMoreColors : "Více barev...", + +// Document Properties +DocProps : "Vlastnosti dokumentu", + +// Anchor Dialog +DlgAnchorTitle : "Vlastnosti záložky", +DlgAnchorName : "Název záložky", +DlgAnchorErrorName : "Zadejte prosím název záložky", + +// Speller Pages Dialog +DlgSpellNotInDic : "Není ve slovníku", +DlgSpellChangeTo : "Změnit na", +DlgSpellBtnIgnore : "Přeskočit", +DlgSpellBtnIgnoreAll : "Přeskakovat vše", +DlgSpellBtnReplace : "Zaměnit", +DlgSpellBtnReplaceAll : "Zaměňovat vše", +DlgSpellBtnUndo : "Zpět", +DlgSpellNoSuggestions : "- žádné návrhy -", +DlgSpellProgress : "Probíhá kontrola pravopisu...", +DlgSpellNoMispell : "Kontrola pravopisu dokončena: Žádné pravopisné chyby nenalezeny", +DlgSpellNoChanges : "Kontrola pravopisu dokončena: Beze změn", +DlgSpellOneChange : "Kontrola pravopisu dokončena: Jedno slovo změněno", +DlgSpellManyChanges : "Kontrola pravopisu dokončena: %1 slov změněno", + +IeSpellDownload : "Kontrola pravopisu není nainstalována. Chcete ji nyní stáhnout?", + +// Button Dialog +DlgButtonText : "Popisek", +DlgButtonType : "Typ", +DlgButtonTypeBtn : "Tlačítko", +DlgButtonTypeSbm : "Odeslat", +DlgButtonTypeRst : "Obnovit", + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "Název", +DlgCheckboxValue : "Hodnota", +DlgCheckboxSelected : "Zaškrtnuto", + +// Form Dialog +DlgFormName : "Název", +DlgFormAction : "Akce", +DlgFormMethod : "Metoda", + +// Select Field Dialog +DlgSelectName : "Název", +DlgSelectValue : "Hodnota", +DlgSelectSize : "Velikost", +DlgSelectLines : "Řádků", +DlgSelectChkMulti : "Povolit mnohonásobné výběry", +DlgSelectOpAvail : "Dostupná nastavení", +DlgSelectOpText : "Text", +DlgSelectOpValue : "Hodnota", +DlgSelectBtnAdd : "Přidat", +DlgSelectBtnModify : "Změnit", +DlgSelectBtnUp : "Nahoru", +DlgSelectBtnDown : "Dolů", +DlgSelectBtnSetValue : "Nastavit jako vybranou hodnotu", +DlgSelectBtnDelete : "Smazat", + +// Textarea Dialog +DlgTextareaName : "Název", +DlgTextareaCols : "Sloupců", +DlgTextareaRows : "Řádků", + +// Text Field Dialog +DlgTextName : "Název", +DlgTextValue : "Hodnota", +DlgTextCharWidth : "Šířka ve znacích", +DlgTextMaxChars : "Maximální počet znaků", +DlgTextType : "Typ", +DlgTextTypeText : "Text", +DlgTextTypePass : "Heslo", + +// Hidden Field Dialog +DlgHiddenName : "Název", +DlgHiddenValue : "Hodnota", + +// Bulleted List Dialog +BulletedListProp : "Vlastnosti odrážek", +NumberedListProp : "Vlastnosti číslovaného seznamu", +DlgLstStart : "Začátek", +DlgLstType : "Typ", +DlgLstTypeCircle : "Kružnice", +DlgLstTypeDisc : "Kruh", +DlgLstTypeSquare : "Čtverec", +DlgLstTypeNumbers : "Čísla (1, 2, 3)", +DlgLstTypeLCase : "Malá písmena (a, b, c)", +DlgLstTypeUCase : "Velká písmena (A, B, C)", +DlgLstTypeSRoman : "Malé římská číslice (i, ii, iii)", +DlgLstTypeLRoman : "Velké římské číslice (I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "Obecné", +DlgDocBackTab : "Pozadí", +DlgDocColorsTab : "Barvy a okraje", +DlgDocMetaTab : "Metadata", + +DlgDocPageTitle : "Titulek stránky", +DlgDocLangDir : "Směr jazyku", +DlgDocLangDirLTR : "Zleva do prava ", +DlgDocLangDirRTL : "Zprava doleva", +DlgDocLangCode : "Kód jazyku", +DlgDocCharSet : "Znaková sada", +DlgDocCharSetCE : "Středoevropské jazyky", +DlgDocCharSetCT : "Tradiční čínština (Big5)", +DlgDocCharSetCR : "Cyrilice", +DlgDocCharSetGR : "Řečtina", +DlgDocCharSetJP : "Japonština", +DlgDocCharSetKR : "Korejština", +DlgDocCharSetTR : "Turečtina", +DlgDocCharSetUN : "Unicode (UTF-8)", +DlgDocCharSetWE : "Západoevropské jazyky", +DlgDocCharSetOther : "Další znaková sada", + +DlgDocDocType : "Typ dokumentu", +DlgDocDocTypeOther : "Jiný typ dokumetu", +DlgDocIncXHTML : "Zahrnou deklarace XHTML", +DlgDocBgColor : "Barva pozadí", +DlgDocBgImage : "URL obrázku na pozadí", +DlgDocBgNoScroll : "Nerolovatelné pozadí", +DlgDocCText : "Text", +DlgDocCLink : "Odkaz", +DlgDocCVisited : "Navštívený odkaz", +DlgDocCActive : "Vybraný odkaz", +DlgDocMargins : "Okraje stránky", +DlgDocMaTop : "Horní", +DlgDocMaLeft : "Levý", +DlgDocMaRight : "Pravý", +DlgDocMaBottom : "Dolní", +DlgDocMeIndex : "Klíčová slova (oddělená čárkou)", +DlgDocMeDescr : "Popis dokumentu", +DlgDocMeAuthor : "Autor", +DlgDocMeCopy : "Autorská práva", +DlgDocPreview : "Náhled", + +// Templates Dialog +Templates : "Šablony", +DlgTemplatesTitle : "Šablony obsahu", +DlgTemplatesSelMsg : "Prosím zvolte šablonu pro otevření v editoru
(aktuální obsah editoru bude ztracen):", +DlgTemplatesLoading : "Nahrávám přeheld šablon. Prosím čekejte...", +DlgTemplatesNoTpl : "(Není definována žádná šablona)", +DlgTemplatesReplace : "Nahradit aktuální obsah", + +// About Dialog +DlgAboutAboutTab : "O aplikaci", +DlgAboutBrowserInfoTab : "Informace o prohlížeči", +DlgAboutLicenseTab : "Licence", +DlgAboutVersion : "verze", +DlgAboutInfo : "Více informací získáte na", + +// Div Dialog +DlgDivGeneralTab : "Obecné", +DlgDivAdvancedTab : "Rozšířené", +DlgDivStyle : "Styl", +DlgDivInlineStyle : "Vložený styl", + +ScaytTitle : "SCAYT", +ScaytTitleOptions : "Nastavení", +ScaytTitleLangs : "Jazyky", +ScaytTitleAbout : "O aplikaci" +}; diff --git a/fckeditor/editor/lang/da.js b/fckeditor/editor/lang/da.js new file mode 100644 index 0000000..5d08d51 --- /dev/null +++ b/fckeditor/editor/lang/da.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * Danish language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "Skjul værktøjslinier", +ToolbarExpand : "Vis værktøjslinier", + +// Toolbar Items and Context Menu +Save : "Gem", +NewPage : "Ny side", +Preview : "Vis eksempel", +Cut : "Klip", +Copy : "Kopier", +Paste : "Indsæt", +PasteText : "Indsæt som ikke-formateret tekst", +PasteWord : "Indsæt fra Word", +Print : "Udskriv", +SelectAll : "Vælg alt", +RemoveFormat : "Fjern formatering", +InsertLinkLbl : "Hyperlink", +InsertLink : "Indsæt/rediger hyperlink", +RemoveLink : "Fjern hyperlink", +VisitLink : "Åbn hyperlink", +Anchor : "Indsæt/rediger bogmærke", +AnchorDelete : "Fjern bogmærke", +InsertImageLbl : "Indsæt billede", +InsertImage : "Indsæt/rediger billede", +InsertFlashLbl : "Flash", +InsertFlash : "Indsæt/rediger Flash", +InsertTableLbl : "Table", +InsertTable : "Indsæt/rediger tabel", +InsertLineLbl : "Linie", +InsertLine : "Indsæt vandret linie", +InsertSpecialCharLbl: "Symbol", +InsertSpecialChar : "Indsæt symbol", +InsertSmileyLbl : "Smiley", +InsertSmiley : "Indsæt smiley", +About : "Om FCKeditor", +Bold : "Fed", +Italic : "Kursiv", +Underline : "Understreget", +StrikeThrough : "Overstreget", +Subscript : "Sænket skrift", +Superscript : "Hævet skrift", +LeftJustify : "Venstrestillet", +CenterJustify : "Centreret", +RightJustify : "Højrestillet", +BlockJustify : "Lige margener", +DecreaseIndent : "Formindsk indrykning", +IncreaseIndent : "Forøg indrykning", +Blockquote : "Blokcitat", +CreateDiv : "Opret div container", +EditDiv : "Rediger div container", +DeleteDiv : "Fjern div container", +Undo : "Fortryd", +Redo : "Annuller fortryd", +NumberedListLbl : "Talopstilling", +NumberedList : "Indsæt/fjern talopstilling", +BulletedListLbl : "Punktopstilling", +BulletedList : "Indsæt/fjern punktopstilling", +ShowTableBorders : "Vis tabelkanter", +ShowDetails : "Vis detaljer", +Style : "Typografi", +FontFormat : "Formatering", +Font : "Skrifttype", +FontSize : "Skriftstørrelse", +TextColor : "Tekstfarve", +BGColor : "Baggrundsfarve", +Source : "Kilde", +Find : "Søg", +Replace : "Erstat", +SpellCheck : "Stavekontrol", +UniversalKeyboard : "Universaltastatur", +PageBreakLbl : "Sidskift", +PageBreak : "Indsæt sideskift", + +Form : "Indsæt formular", +Checkbox : "Indsæt afkrydsningsfelt", +RadioButton : "Indsæt alternativknap", +TextField : "Indsæt tekstfelt", +Textarea : "Indsæt tekstboks", +HiddenField : "Indsæt skjult felt", +Button : "Indsæt knap", +SelectionField : "Indsæt liste", +ImageButton : "Indsæt billedknap", + +FitWindow : "Maksimer editor vinduet", +ShowBlocks : "Show Blocks", //MISSING + +// Context Menu +EditLink : "Rediger hyperlink", +CellCM : "Celle", +RowCM : "Række", +ColumnCM : "Kolonne", +InsertRowAfter : "Indsæt række efter", +InsertRowBefore : "Indsæt række før", +DeleteRows : "Slet række", +InsertColumnAfter : "Indsæt kolonne efter", +InsertColumnBefore : "Indsæt kolonne før", +DeleteColumns : "Slet kolonne", +InsertCellAfter : "Indsæt celle efter", +InsertCellBefore : "Indsæt celle før", +DeleteCells : "Slet celle", +MergeCells : "Flet celler", +MergeRight : "Flet til højre", +MergeDown : "Flet nedad", +HorizontalSplitCell : "Del celle vandret", +VerticalSplitCell : "Del celle lodret", +TableDelete : "Slet tabel", +CellProperties : "Egenskaber for celle", +TableProperties : "Egenskaber for tabel", +ImageProperties : "Egenskaber for billede", +FlashProperties : "Egenskaber for Flash", + +AnchorProp : "Egenskaber for bogmærke", +ButtonProp : "Egenskaber for knap", +CheckboxProp : "Egenskaber for afkrydsningsfelt", +HiddenFieldProp : "Egenskaber for skjult felt", +RadioButtonProp : "Egenskaber for alternativknap", +ImageButtonProp : "Egenskaber for billedknap", +TextFieldProp : "Egenskaber for tekstfelt", +SelectionFieldProp : "Egenskaber for liste", +TextareaProp : "Egenskaber for tekstboks", +FormProp : "Egenskaber for formular", + +FontFormats : "Normal;Formateret;Adresse;Overskrift 1;Overskrift 2;Overskrift 3;Overskrift 4;Overskrift 5;Overskrift 6;Normal (DIV)", + +// Alerts and Messages +ProcessingXHTML : "Behandler XHTML...", +Done : "Færdig", +PasteWordConfirm : "Den tekst du forsøger at indsætte ser ud til at komme fra Word.
Vil du rense teksten før den indsættes?", +NotCompatiblePaste : "Denne kommando er tilgændelig i Internet Explorer 5.5 eller senere.
Vil du indsætte teksten uden at rense den ?", +UnknownToolbarItem : "Ukendt værktøjslinjeobjekt \"%1\"!", +UnknownCommand : "Ukendt kommandonavn \"%1\"!", +NotImplemented : "Kommandoen er ikke implementeret!", +UnknownToolbarSet : "Værktøjslinjen \"%1\" eksisterer ikke!", +NoActiveX : "Din browsers sikkerhedsindstillinger begrænser nogle af editorens muligheder.
Slå \"Kør ActiveX-objekter og plug-ins\" til, ellers vil du opleve fejl og manglende muligheder.", +BrowseServerBlocked : "Browseren kunne ikke åbne de nødvendige ressourcer!
Slå pop-up blokering fra.", +DialogBlocked : "Dialogvinduet kunne ikke åbnes!
Slå pop-up blokering fra.", +VisitLinkBlocked : "Det var ikke muligt at åbne et nyt vindue. Tjek, at ingen popup-blokkere er aktive.", + +// Dialogs +DlgBtnOK : "OK", +DlgBtnCancel : "Annuller", +DlgBtnClose : "Luk", +DlgBtnBrowseServer : "Gennemse...", +DlgAdvancedTag : "Avanceret", +DlgOpOther : "", +DlgInfoTab : "Generelt", +DlgAlertUrl : "Indtast URL", + +// General Dialogs Labels +DlgGenNotSet : "", +DlgGenId : "Id", +DlgGenLangDir : "Tekstretning", +DlgGenLangDirLtr : "Fra venstre mod højre (LTR)", +DlgGenLangDirRtl : "Fra højre mod venstre (RTL)", +DlgGenLangCode : "Sprogkode", +DlgGenAccessKey : "Genvejstast", +DlgGenName : "Navn", +DlgGenTabIndex : "Tabulator indeks", +DlgGenLongDescr : "Udvidet beskrivelse", +DlgGenClass : "Typografiark", +DlgGenTitle : "Titel", +DlgGenContType : "Indholdstype", +DlgGenLinkCharset : "Tegnsæt", +DlgGenStyle : "Typografi", + +// Image Dialog +DlgImgTitle : "Egenskaber for billede", +DlgImgInfoTab : "Generelt", +DlgImgBtnUpload : "Upload", +DlgImgURL : "URL", +DlgImgUpload : "Upload", +DlgImgAlt : "Alternativ tekst", +DlgImgWidth : "Bredde", +DlgImgHeight : "Højde", +DlgImgLockRatio : "Lås størrelsesforhold", +DlgBtnResetSize : "Nulstil størrelse", +DlgImgBorder : "Ramme", +DlgImgHSpace : "HMargen", +DlgImgVSpace : "VMargen", +DlgImgAlign : "Justering", +DlgImgAlignLeft : "Venstre", +DlgImgAlignAbsBottom: "Absolut nederst", +DlgImgAlignAbsMiddle: "Absolut centreret", +DlgImgAlignBaseline : "Grundlinje", +DlgImgAlignBottom : "Nederst", +DlgImgAlignMiddle : "Centreret", +DlgImgAlignRight : "Højre", +DlgImgAlignTextTop : "Toppen af teksten", +DlgImgAlignTop : "Øverst", +DlgImgPreview : "Vis eksempel", +DlgImgAlertUrl : "Indtast stien til billedet", +DlgImgLinkTab : "Hyperlink", + +// Flash Dialog +DlgFlashTitle : "Egenskaber for Flash", +DlgFlashChkPlay : "Automatisk afspilning", +DlgFlashChkLoop : "Gentagelse", +DlgFlashChkMenu : "Vis Flash menu", +DlgFlashScale : "Skalér", +DlgFlashScaleAll : "Vis alt", +DlgFlashScaleNoBorder : "Ingen ramme", +DlgFlashScaleFit : "Tilpas størrelse", + +// Link Dialog +DlgLnkWindowTitle : "Egenskaber for hyperlink", +DlgLnkInfoTab : "Generelt", +DlgLnkTargetTab : "Mål", + +DlgLnkType : "Hyperlink type", +DlgLnkTypeURL : "URL", +DlgLnkTypeAnchor : "Bogmærke på denne side", +DlgLnkTypeEMail : "E-mail", +DlgLnkProto : "Protokol", +DlgLnkProtoOther : "", +DlgLnkURL : "URL", +DlgLnkAnchorSel : "Vælg et anker", +DlgLnkAnchorByName : "Efter anker navn", +DlgLnkAnchorById : "Efter element Id", +DlgLnkNoAnchors : "(Ingen bogmærker dokumentet)", +DlgLnkEMail : "E-mailadresse", +DlgLnkEMailSubject : "Emne", +DlgLnkEMailBody : "Brødtekst", +DlgLnkUpload : "Upload", +DlgLnkBtnUpload : "Upload", + +DlgLnkTarget : "Mål", +DlgLnkTargetFrame : "", +DlgLnkTargetPopup : "", +DlgLnkTargetBlank : "Nyt vindue (_blank)", +DlgLnkTargetParent : "Overordnet ramme (_parent)", +DlgLnkTargetSelf : "Samme vindue (_self)", +DlgLnkTargetTop : "Hele vinduet (_top)", +DlgLnkTargetFrameName : "Destinationsvinduets navn", +DlgLnkPopWinName : "Pop-up vinduets navn", +DlgLnkPopWinFeat : "Egenskaber for pop-up", +DlgLnkPopResize : "Skalering", +DlgLnkPopLocation : "Adresselinje", +DlgLnkPopMenu : "Menulinje", +DlgLnkPopScroll : "Scrollbars", +DlgLnkPopStatus : "Statuslinje", +DlgLnkPopToolbar : "Værktøjslinje", +DlgLnkPopFullScrn : "Fuld skærm (IE)", +DlgLnkPopDependent : "Koblet/dependent (Netscape)", +DlgLnkPopWidth : "Bredde", +DlgLnkPopHeight : "Højde", +DlgLnkPopLeft : "Position fra venstre", +DlgLnkPopTop : "Position fra toppen", + +DlnLnkMsgNoUrl : "Indtast hyperlink URL!", +DlnLnkMsgNoEMail : "Indtast e-mailaddresse!", +DlnLnkMsgNoAnchor : "Vælg bogmærke!", +DlnLnkMsgInvPopName : "Navnet på popup'en skal starte med et bogstav og må ikke indeholde mellemrum", + +// Color Dialog +DlgColorTitle : "Vælg farve", +DlgColorBtnClear : "Nulstil", +DlgColorHighlight : "Markeret", +DlgColorSelected : "Valgt", + +// Smiley Dialog +DlgSmileyTitle : "Vælg smiley", + +// Special Character Dialog +DlgSpecialCharTitle : "Vælg symbol", + +// Table Dialog +DlgTableTitle : "Egenskaber for tabel", +DlgTableRows : "Rækker", +DlgTableColumns : "Kolonner", +DlgTableBorder : "Rammebredde", +DlgTableAlign : "Justering", +DlgTableAlignNotSet : "", +DlgTableAlignLeft : "Venstrestillet", +DlgTableAlignCenter : "Centreret", +DlgTableAlignRight : "Højrestillet", +DlgTableWidth : "Bredde", +DlgTableWidthPx : "pixels", +DlgTableWidthPc : "procent", +DlgTableHeight : "Højde", +DlgTableCellSpace : "Celleafstand", +DlgTableCellPad : "Cellemargen", +DlgTableCaption : "Titel", +DlgTableSummary : "Resume", +DlgTableHeaders : "Headers", //MISSING +DlgTableHeadersNone : "None", //MISSING +DlgTableHeadersColumn : "First column", //MISSING +DlgTableHeadersRow : "First Row", //MISSING +DlgTableHeadersBoth : "Both", //MISSING + +// Table Cell Dialog +DlgCellTitle : "Egenskaber for celle", +DlgCellWidth : "Bredde", +DlgCellWidthPx : "pixels", +DlgCellWidthPc : "procent", +DlgCellHeight : "Højde", +DlgCellWordWrap : "Orddeling", +DlgCellWordWrapNotSet : "", +DlgCellWordWrapYes : "Ja", +DlgCellWordWrapNo : "Nej", +DlgCellHorAlign : "Vandret justering", +DlgCellHorAlignNotSet : "", +DlgCellHorAlignLeft : "Venstrestillet", +DlgCellHorAlignCenter : "Centreret", +DlgCellHorAlignRight: "Højrestillet", +DlgCellVerAlign : "Lodret justering", +DlgCellVerAlignNotSet : "", +DlgCellVerAlignTop : "Øverst", +DlgCellVerAlignMiddle : "Centreret", +DlgCellVerAlignBottom : "Nederst", +DlgCellVerAlignBaseline : "Grundlinje", +DlgCellType : "Cell Type", //MISSING +DlgCellTypeData : "Data", //MISSING +DlgCellTypeHeader : "Header", //MISSING +DlgCellRowSpan : "Højde i antal rækker", +DlgCellCollSpan : "Bredde i antal kolonner", +DlgCellBackColor : "Baggrundsfarve", +DlgCellBorderColor : "Rammefarve", +DlgCellBtnSelect : "Vælg...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "Søg og erstat", + +// Find Dialog +DlgFindTitle : "Find", +DlgFindFindBtn : "Find", +DlgFindNotFoundMsg : "Søgeteksten blev ikke fundet!", + +// Replace Dialog +DlgReplaceTitle : "Erstat", +DlgReplaceFindLbl : "Søg efter:", +DlgReplaceReplaceLbl : "Erstat med:", +DlgReplaceCaseChk : "Forskel på store og små bogstaver", +DlgReplaceReplaceBtn : "Erstat", +DlgReplaceReplAllBtn : "Erstat alle", +DlgReplaceWordChk : "Kun hele ord", + +// Paste Operations / Dialog +PasteErrorCut : "Din browsers sikkerhedsindstillinger tillader ikke editoren at klippe tekst automatisk!
Brug i stedet tastaturet til at klippe teksten (Ctrl+X).", +PasteErrorCopy : "Din browsers sikkerhedsindstillinger tillader ikke editoren at kopiere tekst automatisk!
Brug i stedet tastaturet til at kopiere teksten (Ctrl+C).", + +PasteAsText : "Indsæt som ikke-formateret tekst", +PasteFromWord : "Indsæt fra Word", + +DlgPasteMsg2 : "Indsæt i feltet herunder (Ctrl+V) og klik OK.", +DlgPasteSec : "På grund af browserens sikkerhedsindstillinger kan editoren ikke tilgå udklipsholderen direkte. Du skal indsætte udklipsholderens indhold i dette vindue igen.", +DlgPasteIgnoreFont : "Ignorer font definitioner", +DlgPasteRemoveStyles : "Ignorer typografi", + +// Color Picker +ColorAutomatic : "Automatisk", +ColorMoreColors : "Flere farver...", + +// Document Properties +DocProps : "Egenskaber for dokument", + +// Anchor Dialog +DlgAnchorTitle : "Egenskaber for bogmærke", +DlgAnchorName : "Bogmærke navn", +DlgAnchorErrorName : "Indtast bogmærke navn!", + +// Speller Pages Dialog +DlgSpellNotInDic : "Ikke i ordbogen", +DlgSpellChangeTo : "Forslag", +DlgSpellBtnIgnore : "Ignorer", +DlgSpellBtnIgnoreAll : "Ignorer alle", +DlgSpellBtnReplace : "Erstat", +DlgSpellBtnReplaceAll : "Erstat alle", +DlgSpellBtnUndo : "Tilbage", +DlgSpellNoSuggestions : "- ingen forslag -", +DlgSpellProgress : "Stavekontrolen arbejder...", +DlgSpellNoMispell : "Stavekontrol færdig: Ingen fejl fundet", +DlgSpellNoChanges : "Stavekontrol færdig: Ingen ord ændret", +DlgSpellOneChange : "Stavekontrol færdig: Et ord ændret", +DlgSpellManyChanges : "Stavekontrol færdig: %1 ord ændret", + +IeSpellDownload : "Stavekontrol ikke installeret.
Vil du hente den nu?", + +// Button Dialog +DlgButtonText : "Tekst", +DlgButtonType : "Type", +DlgButtonTypeBtn : "Knap", +DlgButtonTypeSbm : "Send", +DlgButtonTypeRst : "Nulstil", + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "Navn", +DlgCheckboxValue : "Værdi", +DlgCheckboxSelected : "Valgt", + +// Form Dialog +DlgFormName : "Navn", +DlgFormAction : "Handling", +DlgFormMethod : "Metod", + +// Select Field Dialog +DlgSelectName : "Navn", +DlgSelectValue : "Værdi", +DlgSelectSize : "Størrelse", +DlgSelectLines : "linier", +DlgSelectChkMulti : "Tillad flere valg", +DlgSelectOpAvail : "Valgmuligheder", +DlgSelectOpText : "Tekst", +DlgSelectOpValue : "Værdi", +DlgSelectBtnAdd : "Tilføj", +DlgSelectBtnModify : "Rediger", +DlgSelectBtnUp : "Op", +DlgSelectBtnDown : "Ned", +DlgSelectBtnSetValue : "Sæt som valgt", +DlgSelectBtnDelete : "Slet", + +// Textarea Dialog +DlgTextareaName : "Navn", +DlgTextareaCols : "Kolonner", +DlgTextareaRows : "Rækker", + +// Text Field Dialog +DlgTextName : "Navn", +DlgTextValue : "Værdi", +DlgTextCharWidth : "Bredde (tegn)", +DlgTextMaxChars : "Max antal tegn", +DlgTextType : "Type", +DlgTextTypeText : "Tekst", +DlgTextTypePass : "Adgangskode", + +// Hidden Field Dialog +DlgHiddenName : "Navn", +DlgHiddenValue : "Værdi", + +// Bulleted List Dialog +BulletedListProp : "Egenskaber for punktopstilling", +NumberedListProp : "Egenskaber for talopstilling", +DlgLstStart : "Start", +DlgLstType : "Type", +DlgLstTypeCircle : "Cirkel", +DlgLstTypeDisc : "Udfyldt cirkel", +DlgLstTypeSquare : "Firkant", +DlgLstTypeNumbers : "Nummereret (1, 2, 3)", +DlgLstTypeLCase : "Små bogstaver (a, b, c)", +DlgLstTypeUCase : "Store bogstaver (A, B, C)", +DlgLstTypeSRoman : "Små romertal (i, ii, iii)", +DlgLstTypeLRoman : "Store romertal (I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "Generelt", +DlgDocBackTab : "Baggrund", +DlgDocColorsTab : "Farver og margen", +DlgDocMetaTab : "Metadata", + +DlgDocPageTitle : "Sidetitel", +DlgDocLangDir : "Sprog", +DlgDocLangDirLTR : "Fra venstre mod højre (LTR)", +DlgDocLangDirRTL : "Fra højre mod venstre (RTL)", +DlgDocLangCode : "Landekode", +DlgDocCharSet : "Tegnsæt kode", +DlgDocCharSetCE : "Centraleuropæisk", +DlgDocCharSetCT : "Traditionel kinesisk (Big5)", +DlgDocCharSetCR : "Kyrillisk", +DlgDocCharSetGR : "Græsk", +DlgDocCharSetJP : "Japansk", +DlgDocCharSetKR : "Koreansk", +DlgDocCharSetTR : "Tyrkisk", +DlgDocCharSetUN : "Unicode (UTF-8)", +DlgDocCharSetWE : "Vesteuropæisk", +DlgDocCharSetOther : "Anden tegnsæt kode", + +DlgDocDocType : "Dokumenttype kategori", +DlgDocDocTypeOther : "Anden dokumenttype kategori", +DlgDocIncXHTML : "Inkludere XHTML deklartion", +DlgDocBgColor : "Baggrundsfarve", +DlgDocBgImage : "Baggrundsbillede URL", +DlgDocBgNoScroll : "Fastlåst baggrund", +DlgDocCText : "Tekst", +DlgDocCLink : "Hyperlink", +DlgDocCVisited : "Besøgt hyperlink", +DlgDocCActive : "Aktivt hyperlink", +DlgDocMargins : "Sidemargen", +DlgDocMaTop : "Øverst", +DlgDocMaLeft : "Venstre", +DlgDocMaRight : "Højre", +DlgDocMaBottom : "Nederst", +DlgDocMeIndex : "Dokument index nøgleord (kommasepareret)", +DlgDocMeDescr : "Dokument beskrivelse", +DlgDocMeAuthor : "Forfatter", +DlgDocMeCopy : "Copyright", +DlgDocPreview : "Vis", + +// Templates Dialog +Templates : "Skabeloner", +DlgTemplatesTitle : "Indholdsskabeloner", +DlgTemplatesSelMsg : "Vælg den skabelon, som skal åbnes i editoren.
(Nuværende indhold vil blive overskrevet!):", +DlgTemplatesLoading : "Henter liste over skabeloner...", +DlgTemplatesNoTpl : "(Der er ikke defineret nogen skabelon!)", +DlgTemplatesReplace : "Erstat det faktiske indhold", + +// About Dialog +DlgAboutAboutTab : "Om", +DlgAboutBrowserInfoTab : "Generelt", +DlgAboutLicenseTab : "Licens", +DlgAboutVersion : "version", +DlgAboutInfo : "For yderlig information gå til", + +// Div Dialog +DlgDivGeneralTab : "Generelt", +DlgDivAdvancedTab : "Avanceret", +DlgDivStyle : "Style", +DlgDivInlineStyle : "Inline style", + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/de.js b/fckeditor/editor/lang/de.js new file mode 100644 index 0000000..5ca8b0c --- /dev/null +++ b/fckeditor/editor/lang/de.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * German language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "Symbolleiste einklappen", +ToolbarExpand : "Symbolleiste ausklappen", + +// Toolbar Items and Context Menu +Save : "Speichern", +NewPage : "Neue Seite", +Preview : "Vorschau", +Cut : "Ausschneiden", +Copy : "Kopieren", +Paste : "Einfügen", +PasteText : "aus Textdatei einfügen", +PasteWord : "aus MS-Word einfügen", +Print : "Drucken", +SelectAll : "Alles auswählen", +RemoveFormat : "Formatierungen entfernen", +InsertLinkLbl : "Link", +InsertLink : "Link einfügen/editieren", +RemoveLink : "Link entfernen", +VisitLink : "Link aufrufen", +Anchor : "Anker einfügen/editieren", +AnchorDelete : "Anker entfernen", +InsertImageLbl : "Bild", +InsertImage : "Bild einfügen/editieren", +InsertFlashLbl : "Flash", +InsertFlash : "Flash einfügen/editieren", +InsertTableLbl : "Tabelle", +InsertTable : "Tabelle einfügen/editieren", +InsertLineLbl : "Linie", +InsertLine : "Horizontale Linie einfügen", +InsertSpecialCharLbl: "Sonderzeichen", +InsertSpecialChar : "Sonderzeichen einfügen/editieren", +InsertSmileyLbl : "Smiley", +InsertSmiley : "Smiley einfügen", +About : "Über FCKeditor", +Bold : "Fett", +Italic : "Kursiv", +Underline : "Unterstrichen", +StrikeThrough : "Durchgestrichen", +Subscript : "Tiefgestellt", +Superscript : "Hochgestellt", +LeftJustify : "Linksbündig", +CenterJustify : "Zentriert", +RightJustify : "Rechtsbündig", +BlockJustify : "Blocksatz", +DecreaseIndent : "Einzug verringern", +IncreaseIndent : "Einzug erhöhen", +Blockquote : "Zitatblock", +CreateDiv : "Erzeuge Div Block", +EditDiv : "Bearbeite Div Block", +DeleteDiv : "Entferne Div Block", +Undo : "Rückgängig", +Redo : "Wiederherstellen", +NumberedListLbl : "Nummerierte Liste", +NumberedList : "Nummerierte Liste einfügen/entfernen", +BulletedListLbl : "Liste", +BulletedList : "Liste einfügen/entfernen", +ShowTableBorders : "Zeige Tabellenrahmen", +ShowDetails : "Zeige Details", +Style : "Stil", +FontFormat : "Format", +Font : "Schriftart", +FontSize : "Größe", +TextColor : "Textfarbe", +BGColor : "Hintergrundfarbe", +Source : "Quellcode", +Find : "Suchen", +Replace : "Ersetzen", +SpellCheck : "Rechtschreibprüfung", +UniversalKeyboard : "Universal-Tastatur", +PageBreakLbl : "Seitenumbruch", +PageBreak : "Seitenumbruch einfügen", + +Form : "Formular", +Checkbox : "Checkbox", +RadioButton : "Radiobutton", +TextField : "Textfeld einzeilig", +Textarea : "Textfeld mehrzeilig", +HiddenField : "verstecktes Feld", +Button : "Klickbutton", +SelectionField : "Auswahlfeld", +ImageButton : "Bildbutton", + +FitWindow : "Editor maximieren", +ShowBlocks : "Blöcke anzeigen", + +// Context Menu +EditLink : "Link editieren", +CellCM : "Zelle", +RowCM : "Zeile", +ColumnCM : "Spalte", +InsertRowAfter : "Zeile unterhalb einfügen", +InsertRowBefore : "Zeile oberhalb einfügen", +DeleteRows : "Zeile entfernen", +InsertColumnAfter : "Spalte rechts danach einfügen", +InsertColumnBefore : "Spalte links davor einfügen", +DeleteColumns : "Spalte löschen", +InsertCellAfter : "Zelle danach einfügen", +InsertCellBefore : "Zelle davor einfügen", +DeleteCells : "Zelle löschen", +MergeCells : "Zellen verbinden", +MergeRight : "nach rechts verbinden", +MergeDown : "nach unten verbinden", +HorizontalSplitCell : "Zelle horizontal teilen", +VerticalSplitCell : "Zelle vertikal teilen", +TableDelete : "Tabelle löschen", +CellProperties : "Zellen-Eigenschaften", +TableProperties : "Tabellen-Eigenschaften", +ImageProperties : "Bild-Eigenschaften", +FlashProperties : "Flash-Eigenschaften", + +AnchorProp : "Anker-Eigenschaften", +ButtonProp : "Button-Eigenschaften", +CheckboxProp : "Checkbox-Eigenschaften", +HiddenFieldProp : "Verstecktes Feld-Eigenschaften", +RadioButtonProp : "Optionsfeld-Eigenschaften", +ImageButtonProp : "Bildbutton-Eigenschaften", +TextFieldProp : "Textfeld (einzeilig) Eigenschaften", +SelectionFieldProp : "Auswahlfeld-Eigenschaften", +TextareaProp : "Textfeld (mehrzeilig) Eigenschaften", +FormProp : "Formular-Eigenschaften", + +FontFormats : "Normal;Formatiert;Addresse;Überschrift 1;Überschrift 2;Überschrift 3;Überschrift 4;Überschrift 5;Überschrift 6;Normal (DIV)", + +// Alerts and Messages +ProcessingXHTML : "Bearbeite XHTML. Bitte warten...", +Done : "Fertig", +PasteWordConfirm : "Der Text, den Sie einfügen möchten, scheint aus MS-Word kopiert zu sein. Möchten Sie ihn zuvor bereinigen lassen?", +NotCompatiblePaste : "Diese Funktion steht nur im Internet Explorer ab Version 5.5 zur Verfügung. Möchten Sie den Text unbereinigt einfügen?", +UnknownToolbarItem : "Unbekanntes Menüleisten-Objekt \"%1\"", +UnknownCommand : "Unbekannter Befehl \"%1\"", +NotImplemented : "Befehl nicht implementiert", +UnknownToolbarSet : "Menüleiste \"%1\" existiert nicht", +NoActiveX : "Die Sicherheitseinstellungen Ihres Browsers beschränken evtl. einige Funktionen des Editors. Aktivieren Sie die Option \"ActiveX-Steuerelemente und Plugins ausführen\" in den Sicherheitseinstellungen, um diese Funktionen nutzen zu können", +BrowseServerBlocked : "Ein Auswahlfenster konnte nicht geöffnet werden. Stellen Sie sicher, das alle Popup-Blocker ausgeschaltet sind.", +DialogBlocked : "Das Dialog-Fenster konnte nicht geöffnet werden. Stellen Sie sicher, das alle Popup-Blocker ausgeschaltet sind.", +VisitLinkBlocked : "Es war leider nicht möglich ein neues Fenster zu öffnen. Bitte versichern Sie sich das der Popup-Blocker ausgeschaltet ist.", + +// Dialogs +DlgBtnOK : "OK", +DlgBtnCancel : "Abbrechen", +DlgBtnClose : "Schließen", +DlgBtnBrowseServer : "Server durchsuchen", +DlgAdvancedTag : "Erweitert", +DlgOpOther : "", +DlgInfoTab : "Info", +DlgAlertUrl : "Bitte tragen Sie die URL ein", + +// General Dialogs Labels +DlgGenNotSet : "", +DlgGenId : "ID", +DlgGenLangDir : "Schreibrichtung", +DlgGenLangDirLtr : "Links nach Rechts (LTR)", +DlgGenLangDirRtl : "Rechts nach Links (RTL)", +DlgGenLangCode : "Sprachenkürzel", +DlgGenAccessKey : "Zugriffstaste", +DlgGenName : "Name", +DlgGenTabIndex : "Tab-Index", +DlgGenLongDescr : "Langform URL", +DlgGenClass : "Stylesheet Klasse", +DlgGenTitle : "Titel Beschreibung", +DlgGenContType : "Inhaltstyp", +DlgGenLinkCharset : "Ziel-Zeichensatz", +DlgGenStyle : "Style", + +// Image Dialog +DlgImgTitle : "Bild-Eigenschaften", +DlgImgInfoTab : "Bild-Info", +DlgImgBtnUpload : "Zum Server senden", +DlgImgURL : "Bildauswahl", +DlgImgUpload : "Upload", +DlgImgAlt : "Alternativer Text", +DlgImgWidth : "Breite", +DlgImgHeight : "Höhe", +DlgImgLockRatio : "Größenverhältniss beibehalten", +DlgBtnResetSize : "Größe zurücksetzen", +DlgImgBorder : "Rahmen", +DlgImgHSpace : "Horizontal-Abstand", +DlgImgVSpace : "Vertikal-Abstand", +DlgImgAlign : "Ausrichtung", +DlgImgAlignLeft : "Links", +DlgImgAlignAbsBottom: "Abs Unten", +DlgImgAlignAbsMiddle: "Abs Mitte", +DlgImgAlignBaseline : "Baseline", +DlgImgAlignBottom : "Unten", +DlgImgAlignMiddle : "Mitte", +DlgImgAlignRight : "Rechts", +DlgImgAlignTextTop : "Text Oben", +DlgImgAlignTop : "Oben", +DlgImgPreview : "Vorschau", +DlgImgAlertUrl : "Bitte geben Sie die Bild-URL an", +DlgImgLinkTab : "Link", + +// Flash Dialog +DlgFlashTitle : "Flash-Eigenschaften", +DlgFlashChkPlay : "autom. Abspielen", +DlgFlashChkLoop : "Endlosschleife", +DlgFlashChkMenu : "Flash-Menü aktivieren", +DlgFlashScale : "Skalierung", +DlgFlashScaleAll : "Alles anzeigen", +DlgFlashScaleNoBorder : "ohne Rand", +DlgFlashScaleFit : "Passgenau", + +// Link Dialog +DlgLnkWindowTitle : "Link", +DlgLnkInfoTab : "Link-Info", +DlgLnkTargetTab : "Zielseite", + +DlgLnkType : "Link-Typ", +DlgLnkTypeURL : "URL", +DlgLnkTypeAnchor : "Anker in dieser Seite", +DlgLnkTypeEMail : "E-Mail", +DlgLnkProto : "Protokoll", +DlgLnkProtoOther : "", +DlgLnkURL : "URL", +DlgLnkAnchorSel : "Anker auswählen", +DlgLnkAnchorByName : "nach Anker Name", +DlgLnkAnchorById : "nach Element Id", +DlgLnkNoAnchors : "(keine Anker im Dokument vorhanden)", +DlgLnkEMail : "E-Mail Addresse", +DlgLnkEMailSubject : "Betreffzeile", +DlgLnkEMailBody : "Nachrichtentext", +DlgLnkUpload : "Upload", +DlgLnkBtnUpload : "Zum Server senden", + +DlgLnkTarget : "Zielseite", +DlgLnkTargetFrame : "", +DlgLnkTargetPopup : "", +DlgLnkTargetBlank : "Neues Fenster (_blank)", +DlgLnkTargetParent : "Oberes Fenster (_parent)", +DlgLnkTargetSelf : "Gleiches Fenster (_self)", +DlgLnkTargetTop : "Oberstes Fenster (_top)", +DlgLnkTargetFrameName : "Ziel-Fenster-Name", +DlgLnkPopWinName : "Pop-up Fenster-Name", +DlgLnkPopWinFeat : "Pop-up Fenster-Eigenschaften", +DlgLnkPopResize : "Vergrößerbar", +DlgLnkPopLocation : "Adress-Leiste", +DlgLnkPopMenu : "Menü-Leiste", +DlgLnkPopScroll : "Rollbalken", +DlgLnkPopStatus : "Statusleiste", +DlgLnkPopToolbar : "Werkzeugleiste", +DlgLnkPopFullScrn : "Vollbild (IE)", +DlgLnkPopDependent : "Abhängig (Netscape)", +DlgLnkPopWidth : "Breite", +DlgLnkPopHeight : "Höhe", +DlgLnkPopLeft : "Linke Position", +DlgLnkPopTop : "Obere Position", + +DlnLnkMsgNoUrl : "Bitte geben Sie die Link-URL an", +DlnLnkMsgNoEMail : "Bitte geben Sie e-Mail Adresse an", +DlnLnkMsgNoAnchor : "Bitte wählen Sie einen Anker aus", +DlnLnkMsgInvPopName : "Der Name des Popups muss mit einem Buchstaben beginnen und darf keine Leerzeichen enthalten", + +// Color Dialog +DlgColorTitle : "Farbauswahl", +DlgColorBtnClear : "Keine Farbe", +DlgColorHighlight : "Vorschau", +DlgColorSelected : "Ausgewählt", + +// Smiley Dialog +DlgSmileyTitle : "Smiley auswählen", + +// Special Character Dialog +DlgSpecialCharTitle : "Sonderzeichen auswählen", + +// Table Dialog +DlgTableTitle : "Tabellen-Eigenschaften", +DlgTableRows : "Zeile", +DlgTableColumns : "Spalte", +DlgTableBorder : "Rahmen", +DlgTableAlign : "Ausrichtung", +DlgTableAlignNotSet : "", +DlgTableAlignLeft : "Links", +DlgTableAlignCenter : "Zentriert", +DlgTableAlignRight : "Rechts", +DlgTableWidth : "Breite", +DlgTableWidthPx : "Pixel", +DlgTableWidthPc : "%", +DlgTableHeight : "Höhe", +DlgTableCellSpace : "Zellenabstand außen", +DlgTableCellPad : "Zellenabstand innen", +DlgTableCaption : "Überschrift", +DlgTableSummary : "Inhaltsübersicht", +DlgTableHeaders : "Headers", //MISSING +DlgTableHeadersNone : "None", //MISSING +DlgTableHeadersColumn : "First column", //MISSING +DlgTableHeadersRow : "First Row", //MISSING +DlgTableHeadersBoth : "Both", //MISSING + +// Table Cell Dialog +DlgCellTitle : "Zellen-Eigenschaften", +DlgCellWidth : "Breite", +DlgCellWidthPx : "Pixel", +DlgCellWidthPc : "%", +DlgCellHeight : "Höhe", +DlgCellWordWrap : "Umbruch", +DlgCellWordWrapNotSet : "", +DlgCellWordWrapYes : "Ja", +DlgCellWordWrapNo : "Nein", +DlgCellHorAlign : "Horizontale Ausrichtung", +DlgCellHorAlignNotSet : "", +DlgCellHorAlignLeft : "Links", +DlgCellHorAlignCenter : "Zentriert", +DlgCellHorAlignRight: "Rechts", +DlgCellVerAlign : "Vertikale Ausrichtung", +DlgCellVerAlignNotSet : "", +DlgCellVerAlignTop : "Oben", +DlgCellVerAlignMiddle : "Mitte", +DlgCellVerAlignBottom : "Unten", +DlgCellVerAlignBaseline : "Grundlinie", +DlgCellType : "Cell Type", //MISSING +DlgCellTypeData : "Data", //MISSING +DlgCellTypeHeader : "Header", //MISSING +DlgCellRowSpan : "Zeilen zusammenfassen", +DlgCellCollSpan : "Spalten zusammenfassen", +DlgCellBackColor : "Hintergrundfarbe", +DlgCellBorderColor : "Rahmenfarbe", +DlgCellBtnSelect : "Auswahl...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "Suchen und Ersetzen", + +// Find Dialog +DlgFindTitle : "Finden", +DlgFindFindBtn : "Finden", +DlgFindNotFoundMsg : "Der gesuchte Text wurde nicht gefunden.", + +// Replace Dialog +DlgReplaceTitle : "Ersetzen", +DlgReplaceFindLbl : "Suche nach:", +DlgReplaceReplaceLbl : "Ersetze mit:", +DlgReplaceCaseChk : "Groß-Kleinschreibung beachten", +DlgReplaceReplaceBtn : "Ersetzen", +DlgReplaceReplAllBtn : "Alle Ersetzen", +DlgReplaceWordChk : "Nur ganze Worte suchen", + +// Paste Operations / Dialog +PasteErrorCut : "Die Sicherheitseinstellungen Ihres Browsers lassen es nicht zu, den Text automatisch auszuschneiden. Bitte benutzen Sie die System-Zwischenablage über STRG-X (ausschneiden) und STRG-V (einfügen).", +PasteErrorCopy : "Die Sicherheitseinstellungen Ihres Browsers lassen es nicht zu, den Text automatisch kopieren. Bitte benutzen Sie die System-Zwischenablage über STRG-C (kopieren).", + +PasteAsText : "Als Text einfügen", +PasteFromWord : "Aus Word einfügen", + +DlgPasteMsg2 : "Bitte fügen Sie den Text in der folgenden Box über die Tastatur (mit Strg+V) ein und bestätigen Sie mit OK.", +DlgPasteSec : "Aufgrund von Sicherheitsbeschränkungen Ihres Browsers kann der Editor nicht direkt auf die Zwischenablage zugreifen. Bitte fügen Sie den Inhalt erneut in diesem Fenster ein.", +DlgPasteIgnoreFont : "Ignoriere Schriftart-Definitionen", +DlgPasteRemoveStyles : "Entferne Style-Definitionen", + +// Color Picker +ColorAutomatic : "Automatisch", +ColorMoreColors : "Weitere Farben...", + +// Document Properties +DocProps : "Dokument-Eigenschaften", + +// Anchor Dialog +DlgAnchorTitle : "Anker-Eigenschaften", +DlgAnchorName : "Anker Name", +DlgAnchorErrorName : "Bitte geben Sie den Namen des Ankers ein", + +// Speller Pages Dialog +DlgSpellNotInDic : "Nicht im Wörterbuch", +DlgSpellChangeTo : "Ändern in", +DlgSpellBtnIgnore : "Ignorieren", +DlgSpellBtnIgnoreAll : "Alle Ignorieren", +DlgSpellBtnReplace : "Ersetzen", +DlgSpellBtnReplaceAll : "Alle Ersetzen", +DlgSpellBtnUndo : "Rückgängig", +DlgSpellNoSuggestions : " - keine Vorschläge - ", +DlgSpellProgress : "Rechtschreibprüfung läuft...", +DlgSpellNoMispell : "Rechtschreibprüfung abgeschlossen - keine Fehler gefunden", +DlgSpellNoChanges : "Rechtschreibprüfung abgeschlossen - keine Worte geändert", +DlgSpellOneChange : "Rechtschreibprüfung abgeschlossen - ein Wort geändert", +DlgSpellManyChanges : "Rechtschreibprüfung abgeschlossen - %1 Wörter geändert", + +IeSpellDownload : "Rechtschreibprüfung nicht installiert. Möchten Sie sie jetzt herunterladen?", + +// Button Dialog +DlgButtonText : "Text (Wert)", +DlgButtonType : "Typ", +DlgButtonTypeBtn : "Button", +DlgButtonTypeSbm : "Absenden", +DlgButtonTypeRst : "Zurücksetzen", + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "Name", +DlgCheckboxValue : "Wert", +DlgCheckboxSelected : "ausgewählt", + +// Form Dialog +DlgFormName : "Name", +DlgFormAction : "Action", +DlgFormMethod : "Method", + +// Select Field Dialog +DlgSelectName : "Name", +DlgSelectValue : "Wert", +DlgSelectSize : "Größe", +DlgSelectLines : "Linien", +DlgSelectChkMulti : "Erlaube Mehrfachauswahl", +DlgSelectOpAvail : "Mögliche Optionen", +DlgSelectOpText : "Text", +DlgSelectOpValue : "Wert", +DlgSelectBtnAdd : "Hinzufügen", +DlgSelectBtnModify : "Ändern", +DlgSelectBtnUp : "Hoch", +DlgSelectBtnDown : "Runter", +DlgSelectBtnSetValue : "Setze als Standardwert", +DlgSelectBtnDelete : "Entfernen", + +// Textarea Dialog +DlgTextareaName : "Name", +DlgTextareaCols : "Spalten", +DlgTextareaRows : "Reihen", + +// Text Field Dialog +DlgTextName : "Name", +DlgTextValue : "Wert", +DlgTextCharWidth : "Zeichenbreite", +DlgTextMaxChars : "Max. Zeichen", +DlgTextType : "Typ", +DlgTextTypeText : "Text", +DlgTextTypePass : "Passwort", + +// Hidden Field Dialog +DlgHiddenName : "Name", +DlgHiddenValue : "Wert", + +// Bulleted List Dialog +BulletedListProp : "Listen-Eigenschaften", +NumberedListProp : "Nummerierte Listen-Eigenschaften", +DlgLstStart : "Start", +DlgLstType : "Typ", +DlgLstTypeCircle : "Ring", +DlgLstTypeDisc : "Kreis", +DlgLstTypeSquare : "Quadrat", +DlgLstTypeNumbers : "Nummern (1, 2, 3)", +DlgLstTypeLCase : "Kleinbuchstaben (a, b, c)", +DlgLstTypeUCase : "Großbuchstaben (A, B, C)", +DlgLstTypeSRoman : "Kleine römische Zahlen (i, ii, iii)", +DlgLstTypeLRoman : "Große römische Zahlen (I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "Allgemein", +DlgDocBackTab : "Hintergrund", +DlgDocColorsTab : "Farben und Abstände", +DlgDocMetaTab : "Metadaten", + +DlgDocPageTitle : "Seitentitel", +DlgDocLangDir : "Schriftrichtung", +DlgDocLangDirLTR : "Links nach Rechts", +DlgDocLangDirRTL : "Rechts nach Links", +DlgDocLangCode : "Sprachkürzel", +DlgDocCharSet : "Zeichenkodierung", +DlgDocCharSetCE : "Zentraleuropäisch", +DlgDocCharSetCT : "traditionell Chinesisch (Big5)", +DlgDocCharSetCR : "Kyrillisch", +DlgDocCharSetGR : "Griechisch", +DlgDocCharSetJP : "Japanisch", +DlgDocCharSetKR : "Koreanisch", +DlgDocCharSetTR : "Türkisch", +DlgDocCharSetUN : "Unicode (UTF-8)", +DlgDocCharSetWE : "Westeuropäisch", +DlgDocCharSetOther : "Andere Zeichenkodierung", + +DlgDocDocType : "Dokumententyp", +DlgDocDocTypeOther : "Anderer Dokumententyp", +DlgDocIncXHTML : "Beziehe XHTML Deklarationen ein", +DlgDocBgColor : "Hintergrundfarbe", +DlgDocBgImage : "Hintergrundbild URL", +DlgDocBgNoScroll : "feststehender Hintergrund", +DlgDocCText : "Text", +DlgDocCLink : "Link", +DlgDocCVisited : "Besuchter Link", +DlgDocCActive : "Aktiver Link", +DlgDocMargins : "Seitenränder", +DlgDocMaTop : "Oben", +DlgDocMaLeft : "Links", +DlgDocMaRight : "Rechts", +DlgDocMaBottom : "Unten", +DlgDocMeIndex : "Schlüsselwörter (durch Komma getrennt)", +DlgDocMeDescr : "Dokument-Beschreibung", +DlgDocMeAuthor : "Autor", +DlgDocMeCopy : "Copyright", +DlgDocPreview : "Vorschau", + +// Templates Dialog +Templates : "Vorlagen", +DlgTemplatesTitle : "Vorlagen", +DlgTemplatesSelMsg : "Klicken Sie auf eine Vorlage, um sie im Editor zu öffnen (der aktuelle Inhalt wird dabei gelöscht!):", +DlgTemplatesLoading : "Liste der Vorlagen wird geladen. Bitte warten...", +DlgTemplatesNoTpl : "(keine Vorlagen definiert)", +DlgTemplatesReplace : "Aktuellen Inhalt ersetzen", + +// About Dialog +DlgAboutAboutTab : "Über", +DlgAboutBrowserInfoTab : "Browser-Info", +DlgAboutLicenseTab : "Lizenz", +DlgAboutVersion : "Version", +DlgAboutInfo : "Für weitere Informationen siehe", + +// Div Dialog +DlgDivGeneralTab : "Allgemein", +DlgDivAdvancedTab : "Erweitert", +DlgDivStyle : "Style", +DlgDivInlineStyle : "Inline Style", + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/el.js b/fckeditor/editor/lang/el.js new file mode 100644 index 0000000..f911ce0 --- /dev/null +++ b/fckeditor/editor/lang/el.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * Greek language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "Απόκρυψη Μπάρας Εργαλείων", +ToolbarExpand : "Εμφάνιση Μπάρας Εργαλείων", + +// Toolbar Items and Context Menu +Save : "Αποθήκευση", +NewPage : "Νέα Σελίδα", +Preview : "Προεπισκόπιση", +Cut : "Αποκοπή", +Copy : "Αντιγραφή", +Paste : "Επικόλληση", +PasteText : "Επικόλληση (απλό κείμενο)", +PasteWord : "Επικόλληση από το Word", +Print : "Εκτύπωση", +SelectAll : "Επιλογή όλων", +RemoveFormat : "Αφαίρεση Μορφοποίησης", +InsertLinkLbl : "Σύνδεσμος (Link)", +InsertLink : "Εισαγωγή/Μεταβολή Συνδέσμου (Link)", +RemoveLink : "Αφαίρεση Συνδέσμου (Link)", +VisitLink : "Open Link", //MISSING +Anchor : "Εισαγωγή/επεξεργασία Anchor", +AnchorDelete : "Remove Anchor", //MISSING +InsertImageLbl : "Εικόνα", +InsertImage : "Εισαγωγή/Μεταβολή Εικόνας", +InsertFlashLbl : "Εισαγωγή Flash", +InsertFlash : "Εισαγωγή/επεξεργασία Flash", +InsertTableLbl : "Πίνακας", +InsertTable : "Εισαγωγή/Μεταβολή Πίνακα", +InsertLineLbl : "Γραμμή", +InsertLine : "Εισαγωγή Οριζόντιας Γραμμής", +InsertSpecialCharLbl: "Ειδικό Σύμβολο", +InsertSpecialChar : "Εισαγωγή Ειδικού Συμβόλου", +InsertSmileyLbl : "Smiley", +InsertSmiley : "Εισαγωγή Smiley", +About : "Περί του FCKeditor", +Bold : "Έντονα", +Italic : "Πλάγια", +Underline : "Υπογράμμιση", +StrikeThrough : "Διαγράμμιση", +Subscript : "Δείκτης", +Superscript : "Εκθέτης", +LeftJustify : "Στοίχιση Αριστερά", +CenterJustify : "Στοίχιση στο Κέντρο", +RightJustify : "Στοίχιση Δεξιά", +BlockJustify : "Πλήρης Στοίχιση (Block)", +DecreaseIndent : "Μείωση Εσοχής", +IncreaseIndent : "Αύξηση Εσοχής", +Blockquote : "Blockquote", //MISSING +CreateDiv : "Create Div Container", //MISSING +EditDiv : "Edit Div Container", //MISSING +DeleteDiv : "Remove Div Container", //MISSING +Undo : "Αναίρεση", +Redo : "Επαναφορά", +NumberedListLbl : "Λίστα με Αριθμούς", +NumberedList : "Εισαγωγή/Διαγραφή Λίστας με Αριθμούς", +BulletedListLbl : "Λίστα με Bullets", +BulletedList : "Εισαγωγή/Διαγραφή Λίστας με Bullets", +ShowTableBorders : "Προβολή Ορίων Πίνακα", +ShowDetails : "Προβολή Λεπτομερειών", +Style : "Στυλ", +FontFormat : "Μορφή Γραμματοσειράς", +Font : "Γραμματοσειρά", +FontSize : "Μέγεθος", +TextColor : "Χρώμα Γραμμάτων", +BGColor : "Χρώμα Υποβάθρου", +Source : "HTML κώδικας", +Find : "Αναζήτηση", +Replace : "Αντικατάσταση", +SpellCheck : "Ορθογραφικός έλεγχος", +UniversalKeyboard : "Διεθνής πληκτρολόγιο", +PageBreakLbl : "Τέλος σελίδας", +PageBreak : "Εισαγωγή τέλους σελίδας", + +Form : "Φόρμα", +Checkbox : "Κουτί επιλογής", +RadioButton : "Κουμπί Radio", +TextField : "Πεδίο κειμένου", +Textarea : "Περιοχή κειμένου", +HiddenField : "Κρυφό πεδίο", +Button : "Κουμπί", +SelectionField : "Πεδίο επιλογής", +ImageButton : "Κουμπί εικόνας", + +FitWindow : "Μεγιστοποίηση προγράμματος", +ShowBlocks : "Show Blocks", //MISSING + +// Context Menu +EditLink : "Μεταβολή Συνδέσμου (Link)", +CellCM : "Κελί", +RowCM : "Σειρά", +ColumnCM : "Στήλη", +InsertRowAfter : "Insert Row After", //MISSING +InsertRowBefore : "Insert Row Before", //MISSING +DeleteRows : "Διαγραφή Γραμμών", +InsertColumnAfter : "Insert Column After", //MISSING +InsertColumnBefore : "Insert Column Before", //MISSING +DeleteColumns : "Διαγραφή Κολωνών", +InsertCellAfter : "Insert Cell After", //MISSING +InsertCellBefore : "Insert Cell Before", //MISSING +DeleteCells : "Διαγραφή Κελιών", +MergeCells : "Ενοποίηση Κελιών", +MergeRight : "Merge Right", //MISSING +MergeDown : "Merge Down", //MISSING +HorizontalSplitCell : "Split Cell Horizontally", //MISSING +VerticalSplitCell : "Split Cell Vertically", //MISSING +TableDelete : "Διαγραφή πίνακα", +CellProperties : "Ιδιότητες Κελιού", +TableProperties : "Ιδιότητες Πίνακα", +ImageProperties : "Ιδιότητες Εικόνας", +FlashProperties : "Ιδιότητες Flash", + +AnchorProp : "Ιδιότητες άγκυρας", +ButtonProp : "Ιδιότητες κουμπιού", +CheckboxProp : "Ιδιότητες κουμπιού επιλογής", +HiddenFieldProp : "Ιδιότητες κρυφού πεδίου", +RadioButtonProp : "Ιδιότητες κουμπιού radio", +ImageButtonProp : "Ιδιότητες κουμπιού εικόνας", +TextFieldProp : "Ιδιότητες πεδίου κειμένου", +SelectionFieldProp : "Ιδιότητες πεδίου επιλογής", +TextareaProp : "Ιδιότητες περιοχής κειμένου", +FormProp : "Ιδιότητες φόρμας", + +FontFormats : "Κανονικό;Μορφοποιημένο;Διεύθυνση;Επικεφαλίδα 1;Επικεφαλίδα 2;Επικεφαλίδα 3;Επικεφαλίδα 4;Επικεφαλίδα 5;Επικεφαλίδα 6", + +// Alerts and Messages +ProcessingXHTML : "Επεξεργασία XHTML. Παρακαλώ περιμένετε...", +Done : "Έτοιμο", +PasteWordConfirm : "Το κείμενο που θέλετε να επικολήσετε, φαίνεται πως προέρχεται από το Word. Θέλετε να καθαριστεί πριν επικοληθεί;", +NotCompatiblePaste : "Αυτή η επιλογή είναι διαθέσιμη στον Internet Explorer έκδοση 5.5+. Θέλετε να γίνει η επικόλληση χωρίς καθαρισμό;", +UnknownToolbarItem : "Άγνωστο αντικείμενο της μπάρας εργαλείων \"%1\"", +UnknownCommand : "Άγνωστή εντολή \"%1\"", +NotImplemented : "Η εντολή δεν έχει ενεργοποιηθεί", +UnknownToolbarSet : "Η μπάρα εργαλείων \"%1\" δεν υπάρχει", +NoActiveX : "Οι ρυθμίσεις ασφαλείας του browser σας μπορεί να περιορίσουν κάποιες ρυθμίσεις του προγράμματος. Χρειάζεται να ενεργοποιήσετε την επιλογή \"Run ActiveX controls and plug-ins\". Ίσως παρουσιαστούν λάθη και παρατηρήσετε ελειπείς λειτουργίες.", +BrowseServerBlocked : "Οι πόροι του browser σας δεν είναι προσπελάσιμοι. Σιγουρευτείτε ότι δεν υπάρχουν ενεργοί popup blockers.", +DialogBlocked : "Δεν ήταν δυνατό να ανοίξει το παράθυρο διαλόγου. Σιγουρευτείτε ότι δεν υπάρχουν ενεργοί popup blockers.", +VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING + +// Dialogs +DlgBtnOK : "OK", +DlgBtnCancel : "Ακύρωση", +DlgBtnClose : "Κλείσιμο", +DlgBtnBrowseServer : "Εξερεύνηση διακομιστή", +DlgAdvancedTag : "Για προχωρημένους", +DlgOpOther : "<Άλλα>", +DlgInfoTab : "Πληροφορίες", +DlgAlertUrl : "Παρακαλώ εισάγετε URL", + +// General Dialogs Labels +DlgGenNotSet : "<χωρίς>", +DlgGenId : "Id", +DlgGenLangDir : "Κατεύθυνση κειμένου", +DlgGenLangDirLtr : "Αριστερά προς Δεξιά (LTR)", +DlgGenLangDirRtl : "Δεξιά προς Αριστερά (RTL)", +DlgGenLangCode : "Κωδικός Γλώσσας", +DlgGenAccessKey : "Συντόμευση (Access Key)", +DlgGenName : "Όνομα", +DlgGenTabIndex : "Tab Index", +DlgGenLongDescr : "Αναλυτική περιγραφή URL", +DlgGenClass : "Stylesheet Classes", +DlgGenTitle : "Συμβουλευτικός τίτλος", +DlgGenContType : "Συμβουλευτικός τίτλος περιεχομένου", +DlgGenLinkCharset : "Linked Resource Charset", +DlgGenStyle : "Στύλ", + +// Image Dialog +DlgImgTitle : "Ιδιότητες Εικόνας", +DlgImgInfoTab : "Πληροφορίες Εικόνας", +DlgImgBtnUpload : "Αποστολή στον Διακομιστή", +DlgImgURL : "URL", +DlgImgUpload : "Αποστολή", +DlgImgAlt : "Εναλλακτικό Κείμενο (ALT)", +DlgImgWidth : "Πλάτος", +DlgImgHeight : "Ύψος", +DlgImgLockRatio : "Κλείδωμα Αναλογίας", +DlgBtnResetSize : "Επαναφορά Αρχικού Μεγέθους", +DlgImgBorder : "Περιθώριο", +DlgImgHSpace : "Οριζόντιος Χώρος (HSpace)", +DlgImgVSpace : "Κάθετος Χώρος (VSpace)", +DlgImgAlign : "Ευθυγράμμιση (Align)", +DlgImgAlignLeft : "Αριστερά", +DlgImgAlignAbsBottom: "Απόλυτα Κάτω (Abs Bottom)", +DlgImgAlignAbsMiddle: "Απόλυτα στη Μέση (Abs Middle)", +DlgImgAlignBaseline : "Γραμμή Βάσης (Baseline)", +DlgImgAlignBottom : "Κάτω (Bottom)", +DlgImgAlignMiddle : "Μέση (Middle)", +DlgImgAlignRight : "Δεξιά (Right)", +DlgImgAlignTextTop : "Κορυφή Κειμένου (Text Top)", +DlgImgAlignTop : "Πάνω (Top)", +DlgImgPreview : "Προεπισκόπιση", +DlgImgAlertUrl : "Εισάγετε την τοποθεσία (URL) της εικόνας", +DlgImgLinkTab : "Σύνδεσμος", + +// Flash Dialog +DlgFlashTitle : "Ιδιότητες flash", +DlgFlashChkPlay : "Αυτόματη έναρξη", +DlgFlashChkLoop : "Επανάληψη", +DlgFlashChkMenu : "Ενεργοποίηση Flash Menu", +DlgFlashScale : "Κλίμακα", +DlgFlashScaleAll : "Εμφάνιση όλων", +DlgFlashScaleNoBorder : "Χωρίς όρια", +DlgFlashScaleFit : "Ακριβής εφαρμογή", + +// Link Dialog +DlgLnkWindowTitle : "Σύνδεσμος (Link)", +DlgLnkInfoTab : "Link", +DlgLnkTargetTab : "Παράθυρο Στόχος (Target)", + +DlgLnkType : "Τύπος συνδέσμου (Link)", +DlgLnkTypeURL : "URL", +DlgLnkTypeAnchor : "Άγκυρα σε αυτή τη σελίδα", +DlgLnkTypeEMail : "E-Mail", +DlgLnkProto : "Προτόκολο", +DlgLnkProtoOther : "<άλλο>", +DlgLnkURL : "URL", +DlgLnkAnchorSel : "Επιλέξτε μια άγκυρα", +DlgLnkAnchorByName : "Βάσει του Ονόματος (Name) της άγκυρας", +DlgLnkAnchorById : "Βάσει του Element Id", +DlgLnkNoAnchors : "(Δεν υπάρχουν άγκυρες στο κείμενο)", +DlgLnkEMail : "Διεύθυνση Ηλεκτρονικού Ταχυδρομείου", +DlgLnkEMailSubject : "Θέμα Μηνύματος", +DlgLnkEMailBody : "Κείμενο Μηνύματος", +DlgLnkUpload : "Αποστολή", +DlgLnkBtnUpload : "Αποστολή στον Διακομιστή", + +DlgLnkTarget : "Παράθυρο Στόχος (Target)", +DlgLnkTargetFrame : "<πλαίσιο>", +DlgLnkTargetPopup : "<παράθυρο popup>", +DlgLnkTargetBlank : "Νέο Παράθυρο (_blank)", +DlgLnkTargetParent : "Γονικό Παράθυρο (_parent)", +DlgLnkTargetSelf : "Ίδιο Παράθυρο (_self)", +DlgLnkTargetTop : "Ανώτατο Παράθυρο (_top)", +DlgLnkTargetFrameName : "Όνομα πλαισίου στόχου", +DlgLnkPopWinName : "Όνομα Popup Window", +DlgLnkPopWinFeat : "Επιλογές Popup Window", +DlgLnkPopResize : "Με αλλαγή Μεγέθους", +DlgLnkPopLocation : "Μπάρα Τοποθεσίας", +DlgLnkPopMenu : "Μπάρα Menu", +DlgLnkPopScroll : "Μπάρες Κύλισης", +DlgLnkPopStatus : "Μπάρα Status", +DlgLnkPopToolbar : "Μπάρα Εργαλείων", +DlgLnkPopFullScrn : "Ολόκληρη η Οθόνη (IE)", +DlgLnkPopDependent : "Dependent (Netscape)", +DlgLnkPopWidth : "Πλάτος", +DlgLnkPopHeight : "Ύψος", +DlgLnkPopLeft : "Τοποθεσία Αριστερής Άκρης", +DlgLnkPopTop : "Τοποθεσία Πάνω Άκρης", + +DlnLnkMsgNoUrl : "Εισάγετε την τοποθεσία (URL) του υπερσυνδέσμου (Link)", +DlnLnkMsgNoEMail : "Εισάγετε την διεύθυνση ηλεκτρονικού ταχυδρομείου", +DlnLnkMsgNoAnchor : "Επιλέξτε ένα Anchor", +DlnLnkMsgInvPopName : "Το όνομα του popup πρέπει να αρχίζει με χαρακτήρα της αλφαβήτου και να μην περιέχει κενά", + +// Color Dialog +DlgColorTitle : "Επιλογή χρώματος", +DlgColorBtnClear : "Καθαρισμός", +DlgColorHighlight : "Προεπισκόπιση", +DlgColorSelected : "Επιλεγμένο", + +// Smiley Dialog +DlgSmileyTitle : "Επιλέξτε ένα Smiley", + +// Special Character Dialog +DlgSpecialCharTitle : "Επιλέξτε ένα Ειδικό Σύμβολο", + +// Table Dialog +DlgTableTitle : "Ιδιότητες Πίνακα", +DlgTableRows : "Γραμμές", +DlgTableColumns : "Κολώνες", +DlgTableBorder : "Μέγεθος Περιθωρίου", +DlgTableAlign : "Στοίχιση", +DlgTableAlignNotSet : "<χωρίς>", +DlgTableAlignLeft : "Αριστερά", +DlgTableAlignCenter : "Κέντρο", +DlgTableAlignRight : "Δεξιά", +DlgTableWidth : "Πλάτος", +DlgTableWidthPx : "pixels", +DlgTableWidthPc : "\%", +DlgTableHeight : "Ύψος", +DlgTableCellSpace : "Απόσταση κελιών", +DlgTableCellPad : "Γέμισμα κελιών", +DlgTableCaption : "Υπέρτιτλος", +DlgTableSummary : "Περίληψη", +DlgTableHeaders : "Headers", //MISSING +DlgTableHeadersNone : "None", //MISSING +DlgTableHeadersColumn : "First column", //MISSING +DlgTableHeadersRow : "First Row", //MISSING +DlgTableHeadersBoth : "Both", //MISSING + +// Table Cell Dialog +DlgCellTitle : "Ιδιότητες Κελιού", +DlgCellWidth : "Πλάτος", +DlgCellWidthPx : "pixels", +DlgCellWidthPc : "\%", +DlgCellHeight : "Ύψος", +DlgCellWordWrap : "Με αλλαγή γραμμής", +DlgCellWordWrapNotSet : "<χωρίς>", +DlgCellWordWrapYes : "Ναι", +DlgCellWordWrapNo : "Όχι", +DlgCellHorAlign : "Οριζόντια Στοίχιση", +DlgCellHorAlignNotSet : "<χωρίς>", +DlgCellHorAlignLeft : "Αριστερά", +DlgCellHorAlignCenter : "Κέντρο", +DlgCellHorAlignRight: "Δεξιά", +DlgCellVerAlign : "Κάθετη Στοίχιση", +DlgCellVerAlignNotSet : "<χωρίς>", +DlgCellVerAlignTop : "Πάνω (Top)", +DlgCellVerAlignMiddle : "Μέση (Middle)", +DlgCellVerAlignBottom : "Κάτω (Bottom)", +DlgCellVerAlignBaseline : "Γραμμή Βάσης (Baseline)", +DlgCellType : "Cell Type", //MISSING +DlgCellTypeData : "Data", //MISSING +DlgCellTypeHeader : "Header", //MISSING +DlgCellRowSpan : "Αριθμός Γραμμών (Rows Span)", +DlgCellCollSpan : "Αριθμός Κολωνών (Columns Span)", +DlgCellBackColor : "Χρώμα Υποβάθρου", +DlgCellBorderColor : "Χρώμα Περιθωρίου", +DlgCellBtnSelect : "Επιλογή...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "Find and Replace", //MISSING + +// Find Dialog +DlgFindTitle : "Αναζήτηση", +DlgFindFindBtn : "Αναζήτηση", +DlgFindNotFoundMsg : "Το κείμενο δεν βρέθηκε.", + +// Replace Dialog +DlgReplaceTitle : "Αντικατάσταση", +DlgReplaceFindLbl : "Αναζήτηση:", +DlgReplaceReplaceLbl : "Αντικατάσταση με:", +DlgReplaceCaseChk : "Έλεγχος πεζών/κεφαλαίων", +DlgReplaceReplaceBtn : "Αντικατάσταση", +DlgReplaceReplAllBtn : "Αντικατάσταση Όλων", +DlgReplaceWordChk : "Εύρεση πλήρους λέξης", + +// Paste Operations / Dialog +PasteErrorCut : "Οι ρυθμίσεις ασφαλείας του φυλλομετρητή σας δεν επιτρέπουν την επιλεγμένη εργασία αποκοπής. Χρησιμοποιείστε το πληκτρολόγιο (Ctrl+X).", +PasteErrorCopy : "Οι ρυθμίσεις ασφαλείας του φυλλομετρητή σας δεν επιτρέπουν την επιλεγμένη εργασία αντιγραφής. Χρησιμοποιείστε το πληκτρολόγιο (Ctrl+C).", + +PasteAsText : "Επικόλληση ως Απλό Κείμενο", +PasteFromWord : "Επικόλληση από το Word", + +DlgPasteMsg2 : "Παρακαλώ επικολήστε στο ακόλουθο κουτί χρησιμοποιόντας το πληκτρολόγιο (Ctrl+V) και πατήστε OK.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING +DlgPasteIgnoreFont : "Αγνόηση προδιαγραφών γραμματοσειράς", +DlgPasteRemoveStyles : "Αφαίρεση προδιαγραφών στύλ", + +// Color Picker +ColorAutomatic : "Αυτόματο", +ColorMoreColors : "Περισσότερα χρώματα...", + +// Document Properties +DocProps : "Ιδιότητες εγγράφου", + +// Anchor Dialog +DlgAnchorTitle : "Ιδιότητες άγκυρας", +DlgAnchorName : "Όνομα άγκυρας", +DlgAnchorErrorName : "Παρακαλούμε εισάγετε όνομα άγκυρας", + +// Speller Pages Dialog +DlgSpellNotInDic : "Δεν υπάρχει στο λεξικό", +DlgSpellChangeTo : "Αλλαγή σε", +DlgSpellBtnIgnore : "Αγνόηση", +DlgSpellBtnIgnoreAll : "Αγνόηση όλων", +DlgSpellBtnReplace : "Αντικατάσταση", +DlgSpellBtnReplaceAll : "Αντικατάσταση όλων", +DlgSpellBtnUndo : "Αναίρεση", +DlgSpellNoSuggestions : "- Δεν υπάρχουν προτάσεις -", +DlgSpellProgress : "Ορθογραφικός έλεγχος σε εξέλιξη...", +DlgSpellNoMispell : "Ο ορθογραφικός έλεγχος ολοκληρώθηκε: Δεν βρέθηκαν λάθη", +DlgSpellNoChanges : "Ο ορθογραφικός έλεγχος ολοκληρώθηκε: Δεν άλλαξαν λέξεις", +DlgSpellOneChange : "Ο ορθογραφικός έλεγχος ολοκληρώθηκε: Μια λέξη άλλαξε", +DlgSpellManyChanges : "Ο ορθογραφικός έλεγχος ολοκληρώθηκε: %1 λέξεις άλλαξαν", + +IeSpellDownload : "Δεν υπάρχει εγκατεστημένος ορθογράφος. Θέλετε να τον κατεβάσετε τώρα;", + +// Button Dialog +DlgButtonText : "Κείμενο (Τιμή)", +DlgButtonType : "Τύπος", +DlgButtonTypeBtn : "Κουμπί", +DlgButtonTypeSbm : "Καταχώρηση", +DlgButtonTypeRst : "Επαναφορά", + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "Όνομα", +DlgCheckboxValue : "Τιμή", +DlgCheckboxSelected : "Επιλεγμένο", + +// Form Dialog +DlgFormName : "Όνομα", +DlgFormAction : "Δράση", +DlgFormMethod : "Μάθοδος", + +// Select Field Dialog +DlgSelectName : "Όνομα", +DlgSelectValue : "Τιμή", +DlgSelectSize : "Μέγεθος", +DlgSelectLines : "γραμμές", +DlgSelectChkMulti : "Πολλαπλές επιλογές", +DlgSelectOpAvail : "Διαθέσιμες επιλογές", +DlgSelectOpText : "Κείμενο", +DlgSelectOpValue : "Τιμή", +DlgSelectBtnAdd : "Προσθήκη", +DlgSelectBtnModify : "Αλλαγή", +DlgSelectBtnUp : "Πάνω", +DlgSelectBtnDown : "Κάτω", +DlgSelectBtnSetValue : "Προεπιλεγμένη επιλογή", +DlgSelectBtnDelete : "Διαγραφή", + +// Textarea Dialog +DlgTextareaName : "Όνομα", +DlgTextareaCols : "Στήλες", +DlgTextareaRows : "Σειρές", + +// Text Field Dialog +DlgTextName : "Όνομα", +DlgTextValue : "Τιμή", +DlgTextCharWidth : "Μήκος χαρακτήρων", +DlgTextMaxChars : "Μέγιστοι χαρακτήρες", +DlgTextType : "Τύπος", +DlgTextTypeText : "Κείμενο", +DlgTextTypePass : "Κωδικός", + +// Hidden Field Dialog +DlgHiddenName : "Όνομα", +DlgHiddenValue : "Τιμή", + +// Bulleted List Dialog +BulletedListProp : "Ιδιότητες λίστας Bulleted", +NumberedListProp : "Ιδιότητες αριθμημένης λίστας ", +DlgLstStart : "Αρχή", +DlgLstType : "Τύπος", +DlgLstTypeCircle : "Κύκλος", +DlgLstTypeDisc : "Δίσκος", +DlgLstTypeSquare : "Τετράγωνο", +DlgLstTypeNumbers : "Αριθμοί (1, 2, 3)", +DlgLstTypeLCase : "Πεζά γράμματα (a, b, c)", +DlgLstTypeUCase : "Κεφαλαία γράμματα (A, B, C)", +DlgLstTypeSRoman : "Μικρά λατινικά αριθμητικά (i, ii, iii)", +DlgLstTypeLRoman : "Μεγάλα λατινικά αριθμητικά (I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "Γενικά", +DlgDocBackTab : "Φόντο", +DlgDocColorsTab : "Χρώματα και περιθώρια", +DlgDocMetaTab : "Δεδομένα Meta", + +DlgDocPageTitle : "Τίτλος σελίδας", +DlgDocLangDir : "Κατεύθυνση γραφής", +DlgDocLangDirLTR : "αριστερά προς δεξιά (LTR)", +DlgDocLangDirRTL : "δεξιά προς αριστερά (RTL)", +DlgDocLangCode : "Κωδικός γλώσσας", +DlgDocCharSet : "Κωδικοποίηση χαρακτήρων", +DlgDocCharSetCE : "Κεντρικής Ευρώπης", +DlgDocCharSetCT : "Παραδοσιακά κινέζικα (Big5)", +DlgDocCharSetCR : "Κυριλλική", +DlgDocCharSetGR : "Ελληνική", +DlgDocCharSetJP : "Ιαπωνική", +DlgDocCharSetKR : "Κορεάτικη", +DlgDocCharSetTR : "Τουρκική", +DlgDocCharSetUN : "Διεθνής (UTF-8)", +DlgDocCharSetWE : "Δυτικής Ευρώπης", +DlgDocCharSetOther : "Άλλη κωδικοποίηση χαρακτήρων", + +DlgDocDocType : "Επικεφαλίδα τύπου εγγράφου", +DlgDocDocTypeOther : "Άλλη επικεφαλίδα τύπου εγγράφου", +DlgDocIncXHTML : "Να συμπεριληφθούν οι δηλώσεις XHTML", +DlgDocBgColor : "Χρώμα φόντου", +DlgDocBgImage : "Διεύθυνση εικόνας φόντου", +DlgDocBgNoScroll : "Φόντο χωρίς κύλιση", +DlgDocCText : "Κείμενο", +DlgDocCLink : "Σύνδεσμος", +DlgDocCVisited : "Σύνδεσμος που έχει επισκευθεί", +DlgDocCActive : "Ενεργός σύνδεσμος", +DlgDocMargins : "Περιθώρια σελίδας", +DlgDocMaTop : "Κορυφή", +DlgDocMaLeft : "Αριστερά", +DlgDocMaRight : "Δεξιά", +DlgDocMaBottom : "Κάτω", +DlgDocMeIndex : "Λέξεις κλειδιά δείκτες εγγράφου (διαχωρισμός με κόμμα)", +DlgDocMeDescr : "Περιγραφή εγγράφου", +DlgDocMeAuthor : "Συγγραφέας", +DlgDocMeCopy : "Πνευματικά δικαιώματα", +DlgDocPreview : "Προεπισκόπηση", + +// Templates Dialog +Templates : "Πρότυπα", +DlgTemplatesTitle : "Πρότυπα περιεχομένου", +DlgTemplatesSelMsg : "Παρακαλώ επιλέξτε πρότυπο για εισαγωγή στο πρόγραμμα
(τα υπάρχοντα περιεχόμενα θα χαθούν):", +DlgTemplatesLoading : "Φόρτωση καταλόγου προτύπων. Παρακαλώ περιμένετε...", +DlgTemplatesNoTpl : "(Δεν έχουν καθοριστεί πρότυπα)", +DlgTemplatesReplace : "Αντικατάσταση υπάρχοντων περιεχομένων", + +// About Dialog +DlgAboutAboutTab : "Σχετικά", +DlgAboutBrowserInfoTab : "Πληροφορίες Browser", +DlgAboutLicenseTab : "Άδεια", +DlgAboutVersion : "έκδοση", +DlgAboutInfo : "Για περισσότερες πληροφορίες", + +// Div Dialog +DlgDivGeneralTab : "General", //MISSING +DlgDivAdvancedTab : "Advanced", //MISSING +DlgDivStyle : "Style", //MISSING +DlgDivInlineStyle : "Inline Style", //MISSING + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/en-au.js b/fckeditor/editor/lang/en-au.js new file mode 100644 index 0000000..df4cfb5 --- /dev/null +++ b/fckeditor/editor/lang/en-au.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * English (Australia) language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "Collapse Toolbar", +ToolbarExpand : "Expand Toolbar", + +// Toolbar Items and Context Menu +Save : "Save", +NewPage : "New Page", +Preview : "Preview", +Cut : "Cut", +Copy : "Copy", +Paste : "Paste", +PasteText : "Paste as plain text", +PasteWord : "Paste from Word", +Print : "Print", +SelectAll : "Select All", +RemoveFormat : "Remove Format", +InsertLinkLbl : "Link", +InsertLink : "Insert/Edit Link", +RemoveLink : "Remove Link", +VisitLink : "Open Link", +Anchor : "Insert/Edit Anchor", +AnchorDelete : "Remove Anchor", +InsertImageLbl : "Image", +InsertImage : "Insert/Edit Image", +InsertFlashLbl : "Flash", +InsertFlash : "Insert/Edit Flash", +InsertTableLbl : "Table", +InsertTable : "Insert/Edit Table", +InsertLineLbl : "Line", +InsertLine : "Insert Horizontal Line", +InsertSpecialCharLbl: "Special Character", +InsertSpecialChar : "Insert Special Character", +InsertSmileyLbl : "Smiley", +InsertSmiley : "Insert Smiley", +About : "About FCKeditor", +Bold : "Bold", +Italic : "Italic", +Underline : "Underline", +StrikeThrough : "Strike Through", +Subscript : "Subscript", +Superscript : "Superscript", +LeftJustify : "Left Justify", +CenterJustify : "Centre Justify", +RightJustify : "Right Justify", +BlockJustify : "Block Justify", +DecreaseIndent : "Decrease Indent", +IncreaseIndent : "Increase Indent", +Blockquote : "Blockquote", +CreateDiv : "Create Div Container", +EditDiv : "Edit Div Container", +DeleteDiv : "Remove Div Container", +Undo : "Undo", +Redo : "Redo", +NumberedListLbl : "Numbered List", +NumberedList : "Insert/Remove Numbered List", +BulletedListLbl : "Bulleted List", +BulletedList : "Insert/Remove Bulleted List", +ShowTableBorders : "Show Table Borders", +ShowDetails : "Show Details", +Style : "Style", +FontFormat : "Format", +Font : "Font", +FontSize : "Size", +TextColor : "Text Colour", +BGColor : "Background Colour", +Source : "Source", +Find : "Find", +Replace : "Replace", +SpellCheck : "Check Spelling", +UniversalKeyboard : "Universal Keyboard", +PageBreakLbl : "Page Break", +PageBreak : "Insert Page Break", + +Form : "Form", +Checkbox : "Checkbox", +RadioButton : "Radio Button", +TextField : "Text Field", +Textarea : "Textarea", +HiddenField : "Hidden Field", +Button : "Button", +SelectionField : "Selection Field", +ImageButton : "Image Button", + +FitWindow : "Maximize the editor size", +ShowBlocks : "Show Blocks", + +// Context Menu +EditLink : "Edit Link", +CellCM : "Cell", +RowCM : "Row", +ColumnCM : "Column", +InsertRowAfter : "Insert Row After", +InsertRowBefore : "Insert Row Before", +DeleteRows : "Delete Rows", +InsertColumnAfter : "Insert Column After", +InsertColumnBefore : "Insert Column Before", +DeleteColumns : "Delete Columns", +InsertCellAfter : "Insert Cell After", +InsertCellBefore : "Insert Cell Before", +DeleteCells : "Delete Cells", +MergeCells : "Merge Cells", +MergeRight : "Merge Right", +MergeDown : "Merge Down", +HorizontalSplitCell : "Split Cell Horizontally", +VerticalSplitCell : "Split Cell Vertically", +TableDelete : "Delete Table", +CellProperties : "Cell Properties", +TableProperties : "Table Properties", +ImageProperties : "Image Properties", +FlashProperties : "Flash Properties", + +AnchorProp : "Anchor Properties", +ButtonProp : "Button Properties", +CheckboxProp : "Checkbox Properties", +HiddenFieldProp : "Hidden Field Properties", +RadioButtonProp : "Radio Button Properties", +ImageButtonProp : "Image Button Properties", +TextFieldProp : "Text Field Properties", +SelectionFieldProp : "Selection Field Properties", +TextareaProp : "Textarea Properties", +FormProp : "Form Properties", + +FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)", + +// Alerts and Messages +ProcessingXHTML : "Processing XHTML. Please wait...", +Done : "Done", +PasteWordConfirm : "The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?", +NotCompatiblePaste : "This command is available for Internet Explorer version 5.5 or more. Do you want to paste without cleaning?", +UnknownToolbarItem : "Unknown toolbar item \"%1\"", +UnknownCommand : "Unknown command name \"%1\"", +NotImplemented : "Command not implemented", +UnknownToolbarSet : "Toolbar set \"%1\" doesn't exist", +NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", +BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", +DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", +VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", + +// Dialogs +DlgBtnOK : "OK", +DlgBtnCancel : "Cancel", +DlgBtnClose : "Close", +DlgBtnBrowseServer : "Browse Server", +DlgAdvancedTag : "Advanced", +DlgOpOther : "", +DlgInfoTab : "Info", +DlgAlertUrl : "Please insert the URL", + +// General Dialogs Labels +DlgGenNotSet : "", +DlgGenId : "Id", +DlgGenLangDir : "Language Direction", +DlgGenLangDirLtr : "Left to Right (LTR)", +DlgGenLangDirRtl : "Right to Left (RTL)", +DlgGenLangCode : "Language Code", +DlgGenAccessKey : "Access Key", +DlgGenName : "Name", +DlgGenTabIndex : "Tab Index", +DlgGenLongDescr : "Long Description URL", +DlgGenClass : "Stylesheet Classes", +DlgGenTitle : "Advisory Title", +DlgGenContType : "Advisory Content Type", +DlgGenLinkCharset : "Linked Resource Charset", +DlgGenStyle : "Style", + +// Image Dialog +DlgImgTitle : "Image Properties", +DlgImgInfoTab : "Image Info", +DlgImgBtnUpload : "Send it to the Server", +DlgImgURL : "URL", +DlgImgUpload : "Upload", +DlgImgAlt : "Alternative Text", +DlgImgWidth : "Width", +DlgImgHeight : "Height", +DlgImgLockRatio : "Lock Ratio", +DlgBtnResetSize : "Reset Size", +DlgImgBorder : "Border", +DlgImgHSpace : "HSpace", +DlgImgVSpace : "VSpace", +DlgImgAlign : "Align", +DlgImgAlignLeft : "Left", +DlgImgAlignAbsBottom: "Abs Bottom", +DlgImgAlignAbsMiddle: "Abs Middle", +DlgImgAlignBaseline : "Baseline", +DlgImgAlignBottom : "Bottom", +DlgImgAlignMiddle : "Middle", +DlgImgAlignRight : "Right", +DlgImgAlignTextTop : "Text Top", +DlgImgAlignTop : "Top", +DlgImgPreview : "Preview", +DlgImgAlertUrl : "Please type the image URL", +DlgImgLinkTab : "Link", + +// Flash Dialog +DlgFlashTitle : "Flash Properties", +DlgFlashChkPlay : "Auto Play", +DlgFlashChkLoop : "Loop", +DlgFlashChkMenu : "Enable Flash Menu", +DlgFlashScale : "Scale", +DlgFlashScaleAll : "Show all", +DlgFlashScaleNoBorder : "No Border", +DlgFlashScaleFit : "Exact Fit", + +// Link Dialog +DlgLnkWindowTitle : "Link", +DlgLnkInfoTab : "Link Info", +DlgLnkTargetTab : "Target", + +DlgLnkType : "Link Type", +DlgLnkTypeURL : "URL", +DlgLnkTypeAnchor : "Link to anchor in the text", +DlgLnkTypeEMail : "E-Mail", +DlgLnkProto : "Protocol", +DlgLnkProtoOther : "", +DlgLnkURL : "URL", +DlgLnkAnchorSel : "Select an Anchor", +DlgLnkAnchorByName : "By Anchor Name", +DlgLnkAnchorById : "By Element Id", +DlgLnkNoAnchors : "(No anchors available in the document)", +DlgLnkEMail : "E-Mail Address", +DlgLnkEMailSubject : "Message Subject", +DlgLnkEMailBody : "Message Body", +DlgLnkUpload : "Upload", +DlgLnkBtnUpload : "Send it to the Server", + +DlgLnkTarget : "Target", +DlgLnkTargetFrame : "", +DlgLnkTargetPopup : "", +DlgLnkTargetBlank : "New Window (_blank)", +DlgLnkTargetParent : "Parent Window (_parent)", +DlgLnkTargetSelf : "Same Window (_self)", +DlgLnkTargetTop : "Topmost Window (_top)", +DlgLnkTargetFrameName : "Target Frame Name", +DlgLnkPopWinName : "Popup Window Name", +DlgLnkPopWinFeat : "Popup Window Features", +DlgLnkPopResize : "Resizable", +DlgLnkPopLocation : "Location Bar", +DlgLnkPopMenu : "Menu Bar", +DlgLnkPopScroll : "Scroll Bars", +DlgLnkPopStatus : "Status Bar", +DlgLnkPopToolbar : "Toolbar", +DlgLnkPopFullScrn : "Full Screen (IE)", +DlgLnkPopDependent : "Dependent (Netscape)", +DlgLnkPopWidth : "Width", +DlgLnkPopHeight : "Height", +DlgLnkPopLeft : "Left Position", +DlgLnkPopTop : "Top Position", + +DlnLnkMsgNoUrl : "Please type the link URL", +DlnLnkMsgNoEMail : "Please type the e-mail address", +DlnLnkMsgNoAnchor : "Please select an anchor", +DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", + +// Color Dialog +DlgColorTitle : "Select Colour", +DlgColorBtnClear : "Clear", +DlgColorHighlight : "Highlight", +DlgColorSelected : "Selected", + +// Smiley Dialog +DlgSmileyTitle : "Insert a Smiley", + +// Special Character Dialog +DlgSpecialCharTitle : "Select Special Character", + +// Table Dialog +DlgTableTitle : "Table Properties", +DlgTableRows : "Rows", +DlgTableColumns : "Columns", +DlgTableBorder : "Border size", +DlgTableAlign : "Alignment", +DlgTableAlignNotSet : "", +DlgTableAlignLeft : "Left", +DlgTableAlignCenter : "Centre", +DlgTableAlignRight : "Right", +DlgTableWidth : "Width", +DlgTableWidthPx : "pixels", +DlgTableWidthPc : "percent", +DlgTableHeight : "Height", +DlgTableCellSpace : "Cell spacing", +DlgTableCellPad : "Cell padding", +DlgTableCaption : "Caption", +DlgTableSummary : "Summary", +DlgTableHeaders : "Headers", //MISSING +DlgTableHeadersNone : "None", //MISSING +DlgTableHeadersColumn : "First column", //MISSING +DlgTableHeadersRow : "First Row", //MISSING +DlgTableHeadersBoth : "Both", //MISSING + +// Table Cell Dialog +DlgCellTitle : "Cell Properties", +DlgCellWidth : "Width", +DlgCellWidthPx : "pixels", +DlgCellWidthPc : "percent", +DlgCellHeight : "Height", +DlgCellWordWrap : "Word Wrap", +DlgCellWordWrapNotSet : "", +DlgCellWordWrapYes : "Yes", +DlgCellWordWrapNo : "No", +DlgCellHorAlign : "Horizontal Alignment", +DlgCellHorAlignNotSet : "", +DlgCellHorAlignLeft : "Left", +DlgCellHorAlignCenter : "Centre", +DlgCellHorAlignRight: "Right", +DlgCellVerAlign : "Vertical Alignment", +DlgCellVerAlignNotSet : "", +DlgCellVerAlignTop : "Top", +DlgCellVerAlignMiddle : "Middle", +DlgCellVerAlignBottom : "Bottom", +DlgCellVerAlignBaseline : "Baseline", +DlgCellType : "Cell Type", +DlgCellTypeData : "Data", +DlgCellTypeHeader : "Header", +DlgCellRowSpan : "Rows Span", +DlgCellCollSpan : "Columns Span", +DlgCellBackColor : "Background Colour", +DlgCellBorderColor : "Border Colour", +DlgCellBtnSelect : "Select...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "Find and Replace", + +// Find Dialog +DlgFindTitle : "Find", +DlgFindFindBtn : "Find", +DlgFindNotFoundMsg : "The specified text was not found.", + +// Replace Dialog +DlgReplaceTitle : "Replace", +DlgReplaceFindLbl : "Find what:", +DlgReplaceReplaceLbl : "Replace with:", +DlgReplaceCaseChk : "Match case", +DlgReplaceReplaceBtn : "Replace", +DlgReplaceReplAllBtn : "Replace All", +DlgReplaceWordChk : "Match whole word", + +// Paste Operations / Dialog +PasteErrorCut : "Your browser security settings don't permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl+X).", +PasteErrorCopy : "Your browser security settings don't permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl+C).", + +PasteAsText : "Paste as Plain Text", +PasteFromWord : "Paste from Word", + +DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", +DlgPasteIgnoreFont : "Ignore Font Face definitions", +DlgPasteRemoveStyles : "Remove Styles definitions", + +// Color Picker +ColorAutomatic : "Automatic", +ColorMoreColors : "More Colours...", + +// Document Properties +DocProps : "Document Properties", + +// Anchor Dialog +DlgAnchorTitle : "Anchor Properties", +DlgAnchorName : "Anchor Name", +DlgAnchorErrorName : "Please type the anchor name", + +// Speller Pages Dialog +DlgSpellNotInDic : "Not in dictionary", +DlgSpellChangeTo : "Change to", +DlgSpellBtnIgnore : "Ignore", +DlgSpellBtnIgnoreAll : "Ignore All", +DlgSpellBtnReplace : "Replace", +DlgSpellBtnReplaceAll : "Replace All", +DlgSpellBtnUndo : "Undo", +DlgSpellNoSuggestions : "- No suggestions -", +DlgSpellProgress : "Spell check in progress...", +DlgSpellNoMispell : "Spell check complete: No misspellings found", +DlgSpellNoChanges : "Spell check complete: No words changed", +DlgSpellOneChange : "Spell check complete: One word changed", +DlgSpellManyChanges : "Spell check complete: %1 words changed", + +IeSpellDownload : "Spell checker not installed. Do you want to download it now?", + +// Button Dialog +DlgButtonText : "Text (Value)", +DlgButtonType : "Type", +DlgButtonTypeBtn : "Button", +DlgButtonTypeSbm : "Submit", +DlgButtonTypeRst : "Reset", + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "Name", +DlgCheckboxValue : "Value", +DlgCheckboxSelected : "Selected", + +// Form Dialog +DlgFormName : "Name", +DlgFormAction : "Action", +DlgFormMethod : "Method", + +// Select Field Dialog +DlgSelectName : "Name", +DlgSelectValue : "Value", +DlgSelectSize : "Size", +DlgSelectLines : "lines", +DlgSelectChkMulti : "Allow multiple selections", +DlgSelectOpAvail : "Available Options", +DlgSelectOpText : "Text", +DlgSelectOpValue : "Value", +DlgSelectBtnAdd : "Add", +DlgSelectBtnModify : "Modify", +DlgSelectBtnUp : "Up", +DlgSelectBtnDown : "Down", +DlgSelectBtnSetValue : "Set as selected value", +DlgSelectBtnDelete : "Delete", + +// Textarea Dialog +DlgTextareaName : "Name", +DlgTextareaCols : "Columns", +DlgTextareaRows : "Rows", + +// Text Field Dialog +DlgTextName : "Name", +DlgTextValue : "Value", +DlgTextCharWidth : "Character Width", +DlgTextMaxChars : "Maximum Characters", +DlgTextType : "Type", +DlgTextTypeText : "Text", +DlgTextTypePass : "Password", + +// Hidden Field Dialog +DlgHiddenName : "Name", +DlgHiddenValue : "Value", + +// Bulleted List Dialog +BulletedListProp : "Bulleted List Properties", +NumberedListProp : "Numbered List Properties", +DlgLstStart : "Start", +DlgLstType : "Type", +DlgLstTypeCircle : "Circle", +DlgLstTypeDisc : "Disc", +DlgLstTypeSquare : "Square", +DlgLstTypeNumbers : "Numbers (1, 2, 3)", +DlgLstTypeLCase : "Lowercase Letters (a, b, c)", +DlgLstTypeUCase : "Uppercase Letters (A, B, C)", +DlgLstTypeSRoman : "Small Roman Numerals (i, ii, iii)", +DlgLstTypeLRoman : "Large Roman Numerals (I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "General", +DlgDocBackTab : "Background", +DlgDocColorsTab : "Colours and Margins", +DlgDocMetaTab : "Meta Data", + +DlgDocPageTitle : "Page Title", +DlgDocLangDir : "Language Direction", +DlgDocLangDirLTR : "Left to Right (LTR)", +DlgDocLangDirRTL : "Right to Left (RTL)", +DlgDocLangCode : "Language Code", +DlgDocCharSet : "Character Set Encoding", +DlgDocCharSetCE : "Central European", +DlgDocCharSetCT : "Chinese Traditional (Big5)", +DlgDocCharSetCR : "Cyrillic", +DlgDocCharSetGR : "Greek", +DlgDocCharSetJP : "Japanese", +DlgDocCharSetKR : "Korean", +DlgDocCharSetTR : "Turkish", +DlgDocCharSetUN : "Unicode (UTF-8)", +DlgDocCharSetWE : "Western European", +DlgDocCharSetOther : "Other Character Set Encoding", + +DlgDocDocType : "Document Type Heading", +DlgDocDocTypeOther : "Other Document Type Heading", +DlgDocIncXHTML : "Include XHTML Declarations", +DlgDocBgColor : "Background Colour", +DlgDocBgImage : "Background Image URL", +DlgDocBgNoScroll : "Nonscrolling Background", +DlgDocCText : "Text", +DlgDocCLink : "Link", +DlgDocCVisited : "Visited Link", +DlgDocCActive : "Active Link", +DlgDocMargins : "Page Margins", +DlgDocMaTop : "Top", +DlgDocMaLeft : "Left", +DlgDocMaRight : "Right", +DlgDocMaBottom : "Bottom", +DlgDocMeIndex : "Document Indexing Keywords (comma separated)", +DlgDocMeDescr : "Document Description", +DlgDocMeAuthor : "Author", +DlgDocMeCopy : "Copyright", +DlgDocPreview : "Preview", + +// Templates Dialog +Templates : "Templates", +DlgTemplatesTitle : "Content Templates", +DlgTemplatesSelMsg : "Please select the template to open in the editor
(the actual contents will be lost):", +DlgTemplatesLoading : "Loading templates list. Please wait...", +DlgTemplatesNoTpl : "(No templates defined)", +DlgTemplatesReplace : "Replace actual contents", + +// About Dialog +DlgAboutAboutTab : "About", +DlgAboutBrowserInfoTab : "Browser Info", +DlgAboutLicenseTab : "License", +DlgAboutVersion : "version", +DlgAboutInfo : "For further information go to", + +// Div Dialog +DlgDivGeneralTab : "General", +DlgDivAdvancedTab : "Advanced", +DlgDivStyle : "Style", +DlgDivInlineStyle : "Inline Style", + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/en-ca.js b/fckeditor/editor/lang/en-ca.js new file mode 100644 index 0000000..fb3352e --- /dev/null +++ b/fckeditor/editor/lang/en-ca.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * English (Canadian) language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "Collapse Toolbar", +ToolbarExpand : "Expand Toolbar", + +// Toolbar Items and Context Menu +Save : "Save", +NewPage : "New Page", +Preview : "Preview", +Cut : "Cut", +Copy : "Copy", +Paste : "Paste", +PasteText : "Paste as plain text", +PasteWord : "Paste from Word", +Print : "Print", +SelectAll : "Select All", +RemoveFormat : "Remove Format", +InsertLinkLbl : "Link", +InsertLink : "Insert/Edit Link", +RemoveLink : "Remove Link", +VisitLink : "Open Link", +Anchor : "Insert/Edit Anchor", +AnchorDelete : "Remove Anchor", +InsertImageLbl : "Image", +InsertImage : "Insert/Edit Image", +InsertFlashLbl : "Flash", +InsertFlash : "Insert/Edit Flash", +InsertTableLbl : "Table", +InsertTable : "Insert/Edit Table", +InsertLineLbl : "Line", +InsertLine : "Insert Horizontal Line", +InsertSpecialCharLbl: "Special Character", +InsertSpecialChar : "Insert Special Character", +InsertSmileyLbl : "Smiley", +InsertSmiley : "Insert Smiley", +About : "About FCKeditor", +Bold : "Bold", +Italic : "Italic", +Underline : "Underline", +StrikeThrough : "Strike Through", +Subscript : "Subscript", +Superscript : "Superscript", +LeftJustify : "Left Justify", +CenterJustify : "Centre Justify", +RightJustify : "Right Justify", +BlockJustify : "Block Justify", +DecreaseIndent : "Decrease Indent", +IncreaseIndent : "Increase Indent", +Blockquote : "Blockquote", +CreateDiv : "Create Div Container", +EditDiv : "Edit Div Container", +DeleteDiv : "Remove Div Container", +Undo : "Undo", +Redo : "Redo", +NumberedListLbl : "Numbered List", +NumberedList : "Insert/Remove Numbered List", +BulletedListLbl : "Bulleted List", +BulletedList : "Insert/Remove Bulleted List", +ShowTableBorders : "Show Table Borders", +ShowDetails : "Show Details", +Style : "Style", +FontFormat : "Format", +Font : "Font", +FontSize : "Size", +TextColor : "Text Colour", +BGColor : "Background Colour", +Source : "Source", +Find : "Find", +Replace : "Replace", +SpellCheck : "Check Spelling", +UniversalKeyboard : "Universal Keyboard", +PageBreakLbl : "Page Break", +PageBreak : "Insert Page Break", + +Form : "Form", +Checkbox : "Checkbox", +RadioButton : "Radio Button", +TextField : "Text Field", +Textarea : "Textarea", +HiddenField : "Hidden Field", +Button : "Button", +SelectionField : "Selection Field", +ImageButton : "Image Button", + +FitWindow : "Maximize the editor size", +ShowBlocks : "Show Blocks", + +// Context Menu +EditLink : "Edit Link", +CellCM : "Cell", +RowCM : "Row", +ColumnCM : "Column", +InsertRowAfter : "Insert Row After", +InsertRowBefore : "Insert Row Before", +DeleteRows : "Delete Rows", +InsertColumnAfter : "Insert Column After", +InsertColumnBefore : "Insert Column Before", +DeleteColumns : "Delete Columns", +InsertCellAfter : "Insert Cell After", +InsertCellBefore : "Insert Cell Before", +DeleteCells : "Delete Cells", +MergeCells : "Merge Cells", +MergeRight : "Merge Right", +MergeDown : "Merge Down", +HorizontalSplitCell : "Split Cell Horizontally", +VerticalSplitCell : "Split Cell Vertically", +TableDelete : "Delete Table", +CellProperties : "Cell Properties", +TableProperties : "Table Properties", +ImageProperties : "Image Properties", +FlashProperties : "Flash Properties", + +AnchorProp : "Anchor Properties", +ButtonProp : "Button Properties", +CheckboxProp : "Checkbox Properties", +HiddenFieldProp : "Hidden Field Properties", +RadioButtonProp : "Radio Button Properties", +ImageButtonProp : "Image Button Properties", +TextFieldProp : "Text Field Properties", +SelectionFieldProp : "Selection Field Properties", +TextareaProp : "Textarea Properties", +FormProp : "Form Properties", + +FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)", + +// Alerts and Messages +ProcessingXHTML : "Processing XHTML. Please wait...", +Done : "Done", +PasteWordConfirm : "The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?", +NotCompatiblePaste : "This command is available for Internet Explorer version 5.5 or more. Do you want to paste without cleaning?", +UnknownToolbarItem : "Unknown toolbar item \"%1\"", +UnknownCommand : "Unknown command name \"%1\"", +NotImplemented : "Command not implemented", +UnknownToolbarSet : "Toolbar set \"%1\" doesn't exist", +NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", +BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", +DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", +VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", + +// Dialogs +DlgBtnOK : "OK", +DlgBtnCancel : "Cancel", +DlgBtnClose : "Close", +DlgBtnBrowseServer : "Browse Server", +DlgAdvancedTag : "Advanced", +DlgOpOther : "", +DlgInfoTab : "Info", +DlgAlertUrl : "Please insert the URL", + +// General Dialogs Labels +DlgGenNotSet : "", +DlgGenId : "Id", +DlgGenLangDir : "Language Direction", +DlgGenLangDirLtr : "Left to Right (LTR)", +DlgGenLangDirRtl : "Right to Left (RTL)", +DlgGenLangCode : "Language Code", +DlgGenAccessKey : "Access Key", +DlgGenName : "Name", +DlgGenTabIndex : "Tab Index", +DlgGenLongDescr : "Long Description URL", +DlgGenClass : "Stylesheet Classes", +DlgGenTitle : "Advisory Title", +DlgGenContType : "Advisory Content Type", +DlgGenLinkCharset : "Linked Resource Charset", +DlgGenStyle : "Style", + +// Image Dialog +DlgImgTitle : "Image Properties", +DlgImgInfoTab : "Image Info", +DlgImgBtnUpload : "Send it to the Server", +DlgImgURL : "URL", +DlgImgUpload : "Upload", +DlgImgAlt : "Alternative Text", +DlgImgWidth : "Width", +DlgImgHeight : "Height", +DlgImgLockRatio : "Lock Ratio", +DlgBtnResetSize : "Reset Size", +DlgImgBorder : "Border", +DlgImgHSpace : "HSpace", +DlgImgVSpace : "VSpace", +DlgImgAlign : "Align", +DlgImgAlignLeft : "Left", +DlgImgAlignAbsBottom: "Abs Bottom", +DlgImgAlignAbsMiddle: "Abs Middle", +DlgImgAlignBaseline : "Baseline", +DlgImgAlignBottom : "Bottom", +DlgImgAlignMiddle : "Middle", +DlgImgAlignRight : "Right", +DlgImgAlignTextTop : "Text Top", +DlgImgAlignTop : "Top", +DlgImgPreview : "Preview", +DlgImgAlertUrl : "Please type the image URL", +DlgImgLinkTab : "Link", + +// Flash Dialog +DlgFlashTitle : "Flash Properties", +DlgFlashChkPlay : "Auto Play", +DlgFlashChkLoop : "Loop", +DlgFlashChkMenu : "Enable Flash Menu", +DlgFlashScale : "Scale", +DlgFlashScaleAll : "Show all", +DlgFlashScaleNoBorder : "No Border", +DlgFlashScaleFit : "Exact Fit", + +// Link Dialog +DlgLnkWindowTitle : "Link", +DlgLnkInfoTab : "Link Info", +DlgLnkTargetTab : "Target", + +DlgLnkType : "Link Type", +DlgLnkTypeURL : "URL", +DlgLnkTypeAnchor : "Link to anchor in the text", +DlgLnkTypeEMail : "E-Mail", +DlgLnkProto : "Protocol", +DlgLnkProtoOther : "", +DlgLnkURL : "URL", +DlgLnkAnchorSel : "Select an Anchor", +DlgLnkAnchorByName : "By Anchor Name", +DlgLnkAnchorById : "By Element Id", +DlgLnkNoAnchors : "(No anchors available in the document)", +DlgLnkEMail : "E-Mail Address", +DlgLnkEMailSubject : "Message Subject", +DlgLnkEMailBody : "Message Body", +DlgLnkUpload : "Upload", +DlgLnkBtnUpload : "Send it to the Server", + +DlgLnkTarget : "Target", +DlgLnkTargetFrame : "", +DlgLnkTargetPopup : "", +DlgLnkTargetBlank : "New Window (_blank)", +DlgLnkTargetParent : "Parent Window (_parent)", +DlgLnkTargetSelf : "Same Window (_self)", +DlgLnkTargetTop : "Topmost Window (_top)", +DlgLnkTargetFrameName : "Target Frame Name", +DlgLnkPopWinName : "Popup Window Name", +DlgLnkPopWinFeat : "Popup Window Features", +DlgLnkPopResize : "Resizable", +DlgLnkPopLocation : "Location Bar", +DlgLnkPopMenu : "Menu Bar", +DlgLnkPopScroll : "Scroll Bars", +DlgLnkPopStatus : "Status Bar", +DlgLnkPopToolbar : "Toolbar", +DlgLnkPopFullScrn : "Full Screen (IE)", +DlgLnkPopDependent : "Dependent (Netscape)", +DlgLnkPopWidth : "Width", +DlgLnkPopHeight : "Height", +DlgLnkPopLeft : "Left Position", +DlgLnkPopTop : "Top Position", + +DlnLnkMsgNoUrl : "Please type the link URL", +DlnLnkMsgNoEMail : "Please type the e-mail address", +DlnLnkMsgNoAnchor : "Please select an anchor", +DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", + +// Color Dialog +DlgColorTitle : "Select Colour", +DlgColorBtnClear : "Clear", +DlgColorHighlight : "Highlight", +DlgColorSelected : "Selected", + +// Smiley Dialog +DlgSmileyTitle : "Insert a Smiley", + +// Special Character Dialog +DlgSpecialCharTitle : "Select Special Character", + +// Table Dialog +DlgTableTitle : "Table Properties", +DlgTableRows : "Rows", +DlgTableColumns : "Columns", +DlgTableBorder : "Border size", +DlgTableAlign : "Alignment", +DlgTableAlignNotSet : "", +DlgTableAlignLeft : "Left", +DlgTableAlignCenter : "Centre", +DlgTableAlignRight : "Right", +DlgTableWidth : "Width", +DlgTableWidthPx : "pixels", +DlgTableWidthPc : "percent", +DlgTableHeight : "Height", +DlgTableCellSpace : "Cell spacing", +DlgTableCellPad : "Cell padding", +DlgTableCaption : "Caption", +DlgTableSummary : "Summary", +DlgTableHeaders : "Headers", //MISSING +DlgTableHeadersNone : "None", //MISSING +DlgTableHeadersColumn : "First column", //MISSING +DlgTableHeadersRow : "First Row", //MISSING +DlgTableHeadersBoth : "Both", //MISSING + +// Table Cell Dialog +DlgCellTitle : "Cell Properties", +DlgCellWidth : "Width", +DlgCellWidthPx : "pixels", +DlgCellWidthPc : "percent", +DlgCellHeight : "Height", +DlgCellWordWrap : "Word Wrap", +DlgCellWordWrapNotSet : "", +DlgCellWordWrapYes : "Yes", +DlgCellWordWrapNo : "No", +DlgCellHorAlign : "Horizontal Alignment", +DlgCellHorAlignNotSet : "", +DlgCellHorAlignLeft : "Left", +DlgCellHorAlignCenter : "Centre", +DlgCellHorAlignRight: "Right", +DlgCellVerAlign : "Vertical Alignment", +DlgCellVerAlignNotSet : "", +DlgCellVerAlignTop : "Top", +DlgCellVerAlignMiddle : "Middle", +DlgCellVerAlignBottom : "Bottom", +DlgCellVerAlignBaseline : "Baseline", +DlgCellType : "Cell Type", +DlgCellTypeData : "Data", +DlgCellTypeHeader : "Header", +DlgCellRowSpan : "Rows Span", +DlgCellCollSpan : "Columns Span", +DlgCellBackColor : "Background Colour", +DlgCellBorderColor : "Border Colour", +DlgCellBtnSelect : "Select...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "Find and Replace", + +// Find Dialog +DlgFindTitle : "Find", +DlgFindFindBtn : "Find", +DlgFindNotFoundMsg : "The specified text was not found.", + +// Replace Dialog +DlgReplaceTitle : "Replace", +DlgReplaceFindLbl : "Find what:", +DlgReplaceReplaceLbl : "Replace with:", +DlgReplaceCaseChk : "Match case", +DlgReplaceReplaceBtn : "Replace", +DlgReplaceReplAllBtn : "Replace All", +DlgReplaceWordChk : "Match whole word", + +// Paste Operations / Dialog +PasteErrorCut : "Your browser security settings don't permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl+X).", +PasteErrorCopy : "Your browser security settings don't permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl+C).", + +PasteAsText : "Paste as Plain Text", +PasteFromWord : "Paste from Word", + +DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", +DlgPasteIgnoreFont : "Ignore Font Face definitions", +DlgPasteRemoveStyles : "Remove Styles definitions", + +// Color Picker +ColorAutomatic : "Automatic", +ColorMoreColors : "More Colours...", + +// Document Properties +DocProps : "Document Properties", + +// Anchor Dialog +DlgAnchorTitle : "Anchor Properties", +DlgAnchorName : "Anchor Name", +DlgAnchorErrorName : "Please type the anchor name", + +// Speller Pages Dialog +DlgSpellNotInDic : "Not in dictionary", +DlgSpellChangeTo : "Change to", +DlgSpellBtnIgnore : "Ignore", +DlgSpellBtnIgnoreAll : "Ignore All", +DlgSpellBtnReplace : "Replace", +DlgSpellBtnReplaceAll : "Replace All", +DlgSpellBtnUndo : "Undo", +DlgSpellNoSuggestions : "- No suggestions -", +DlgSpellProgress : "Spell check in progress...", +DlgSpellNoMispell : "Spell check complete: No misspellings found", +DlgSpellNoChanges : "Spell check complete: No words changed", +DlgSpellOneChange : "Spell check complete: One word changed", +DlgSpellManyChanges : "Spell check complete: %1 words changed", + +IeSpellDownload : "Spell checker not installed. Do you want to download it now?", + +// Button Dialog +DlgButtonText : "Text (Value)", +DlgButtonType : "Type", +DlgButtonTypeBtn : "Button", +DlgButtonTypeSbm : "Submit", +DlgButtonTypeRst : "Reset", + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "Name", +DlgCheckboxValue : "Value", +DlgCheckboxSelected : "Selected", + +// Form Dialog +DlgFormName : "Name", +DlgFormAction : "Action", +DlgFormMethod : "Method", + +// Select Field Dialog +DlgSelectName : "Name", +DlgSelectValue : "Value", +DlgSelectSize : "Size", +DlgSelectLines : "lines", +DlgSelectChkMulti : "Allow multiple selections", +DlgSelectOpAvail : "Available Options", +DlgSelectOpText : "Text", +DlgSelectOpValue : "Value", +DlgSelectBtnAdd : "Add", +DlgSelectBtnModify : "Modify", +DlgSelectBtnUp : "Up", +DlgSelectBtnDown : "Down", +DlgSelectBtnSetValue : "Set as selected value", +DlgSelectBtnDelete : "Delete", + +// Textarea Dialog +DlgTextareaName : "Name", +DlgTextareaCols : "Columns", +DlgTextareaRows : "Rows", + +// Text Field Dialog +DlgTextName : "Name", +DlgTextValue : "Value", +DlgTextCharWidth : "Character Width", +DlgTextMaxChars : "Maximum Characters", +DlgTextType : "Type", +DlgTextTypeText : "Text", +DlgTextTypePass : "Password", + +// Hidden Field Dialog +DlgHiddenName : "Name", +DlgHiddenValue : "Value", + +// Bulleted List Dialog +BulletedListProp : "Bulleted List Properties", +NumberedListProp : "Numbered List Properties", +DlgLstStart : "Start", +DlgLstType : "Type", +DlgLstTypeCircle : "Circle", +DlgLstTypeDisc : "Disc", +DlgLstTypeSquare : "Square", +DlgLstTypeNumbers : "Numbers (1, 2, 3)", +DlgLstTypeLCase : "Lowercase Letters (a, b, c)", +DlgLstTypeUCase : "Uppercase Letters (A, B, C)", +DlgLstTypeSRoman : "Small Roman Numerals (i, ii, iii)", +DlgLstTypeLRoman : "Large Roman Numerals (I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "General", +DlgDocBackTab : "Background", +DlgDocColorsTab : "Colours and Margins", +DlgDocMetaTab : "Meta Data", + +DlgDocPageTitle : "Page Title", +DlgDocLangDir : "Language Direction", +DlgDocLangDirLTR : "Left to Right (LTR)", +DlgDocLangDirRTL : "Right to Left (RTL)", +DlgDocLangCode : "Language Code", +DlgDocCharSet : "Character Set Encoding", +DlgDocCharSetCE : "Central European", +DlgDocCharSetCT : "Chinese Traditional (Big5)", +DlgDocCharSetCR : "Cyrillic", +DlgDocCharSetGR : "Greek", +DlgDocCharSetJP : "Japanese", +DlgDocCharSetKR : "Korean", +DlgDocCharSetTR : "Turkish", +DlgDocCharSetUN : "Unicode (UTF-8)", +DlgDocCharSetWE : "Western European", +DlgDocCharSetOther : "Other Character Set Encoding", + +DlgDocDocType : "Document Type Heading", +DlgDocDocTypeOther : "Other Document Type Heading", +DlgDocIncXHTML : "Include XHTML Declarations", +DlgDocBgColor : "Background Colour", +DlgDocBgImage : "Background Image URL", +DlgDocBgNoScroll : "Nonscrolling Background", +DlgDocCText : "Text", +DlgDocCLink : "Link", +DlgDocCVisited : "Visited Link", +DlgDocCActive : "Active Link", +DlgDocMargins : "Page Margins", +DlgDocMaTop : "Top", +DlgDocMaLeft : "Left", +DlgDocMaRight : "Right", +DlgDocMaBottom : "Bottom", +DlgDocMeIndex : "Document Indexing Keywords (comma separated)", +DlgDocMeDescr : "Document Description", +DlgDocMeAuthor : "Author", +DlgDocMeCopy : "Copyright", +DlgDocPreview : "Preview", + +// Templates Dialog +Templates : "Templates", +DlgTemplatesTitle : "Content Templates", +DlgTemplatesSelMsg : "Please select the template to open in the editor
(the actual contents will be lost):", +DlgTemplatesLoading : "Loading templates list. Please wait...", +DlgTemplatesNoTpl : "(No templates defined)", +DlgTemplatesReplace : "Replace actual contents", + +// About Dialog +DlgAboutAboutTab : "About", +DlgAboutBrowserInfoTab : "Browser Info", +DlgAboutLicenseTab : "License", +DlgAboutVersion : "version", +DlgAboutInfo : "For further information go to", + +// Div Dialog +DlgDivGeneralTab : "General", +DlgDivAdvancedTab : "Advanced", +DlgDivStyle : "Style", +DlgDivInlineStyle : "Inline Style", + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/en-uk.js b/fckeditor/editor/lang/en-uk.js new file mode 100644 index 0000000..6324dc2 --- /dev/null +++ b/fckeditor/editor/lang/en-uk.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * English (United Kingdom) language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "Collapse Toolbar", +ToolbarExpand : "Expand Toolbar", + +// Toolbar Items and Context Menu +Save : "Save", +NewPage : "New Page", +Preview : "Preview", +Cut : "Cut", +Copy : "Copy", +Paste : "Paste", +PasteText : "Paste as plain text", +PasteWord : "Paste from Word", +Print : "Print", +SelectAll : "Select All", +RemoveFormat : "Remove Format", +InsertLinkLbl : "Link", +InsertLink : "Insert/Edit Link", +RemoveLink : "Remove Link", +VisitLink : "Open Link", +Anchor : "Insert/Edit Anchor", +AnchorDelete : "Remove Anchor", +InsertImageLbl : "Image", +InsertImage : "Insert/Edit Image", +InsertFlashLbl : "Flash", +InsertFlash : "Insert/Edit Flash", +InsertTableLbl : "Table", +InsertTable : "Insert/Edit Table", +InsertLineLbl : "Line", +InsertLine : "Insert Horizontal Line", +InsertSpecialCharLbl: "Special Character", +InsertSpecialChar : "Insert Special Character", +InsertSmileyLbl : "Smiley", +InsertSmiley : "Insert Smiley", +About : "About FCKeditor", +Bold : "Bold", +Italic : "Italic", +Underline : "Underline", +StrikeThrough : "Strike Through", +Subscript : "Subscript", +Superscript : "Superscript", +LeftJustify : "Left Justify", +CenterJustify : "Centre Justify", +RightJustify : "Right Justify", +BlockJustify : "Block Justify", +DecreaseIndent : "Decrease Indent", +IncreaseIndent : "Increase Indent", +Blockquote : "Blockquote", +CreateDiv : "Create Div Container", +EditDiv : "Edit Div Container", +DeleteDiv : "Remove Div Container", +Undo : "Undo", +Redo : "Redo", +NumberedListLbl : "Numbered List", +NumberedList : "Insert/Remove Numbered List", +BulletedListLbl : "Bulleted List", +BulletedList : "Insert/Remove Bulleted List", +ShowTableBorders : "Show Table Borders", +ShowDetails : "Show Details", +Style : "Style", +FontFormat : "Format", +Font : "Font", +FontSize : "Size", +TextColor : "Text Colour", +BGColor : "Background Colour", +Source : "Source", +Find : "Find", +Replace : "Replace", +SpellCheck : "Check Spelling", +UniversalKeyboard : "Universal Keyboard", +PageBreakLbl : "Page Break", +PageBreak : "Insert Page Break", + +Form : "Form", +Checkbox : "Checkbox", +RadioButton : "Radio Button", +TextField : "Text Field", +Textarea : "Textarea", +HiddenField : "Hidden Field", +Button : "Button", +SelectionField : "Selection Field", +ImageButton : "Image Button", + +FitWindow : "Maximize the editor size", +ShowBlocks : "Show Blocks", + +// Context Menu +EditLink : "Edit Link", +CellCM : "Cell", +RowCM : "Row", +ColumnCM : "Column", +InsertRowAfter : "Insert Row After", +InsertRowBefore : "Insert Row Before", +DeleteRows : "Delete Rows", +InsertColumnAfter : "Insert Column After", +InsertColumnBefore : "Insert Column Before", +DeleteColumns : "Delete Columns", +InsertCellAfter : "Insert Cell After", +InsertCellBefore : "Insert Cell Before", +DeleteCells : "Delete Cells", +MergeCells : "Merge Cells", +MergeRight : "Merge Right", +MergeDown : "Merge Down", +HorizontalSplitCell : "Split Cell Horizontally", +VerticalSplitCell : "Split Cell Vertically", +TableDelete : "Delete Table", +CellProperties : "Cell Properties", +TableProperties : "Table Properties", +ImageProperties : "Image Properties", +FlashProperties : "Flash Properties", + +AnchorProp : "Anchor Properties", +ButtonProp : "Button Properties", +CheckboxProp : "Checkbox Properties", +HiddenFieldProp : "Hidden Field Properties", +RadioButtonProp : "Radio Button Properties", +ImageButtonProp : "Image Button Properties", +TextFieldProp : "Text Field Properties", +SelectionFieldProp : "Selection Field Properties", +TextareaProp : "Textarea Properties", +FormProp : "Form Properties", + +FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)", + +// Alerts and Messages +ProcessingXHTML : "Processing XHTML. Please wait...", +Done : "Done", +PasteWordConfirm : "The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?", +NotCompatiblePaste : "This command is available for Internet Explorer version 5.5 or more. Do you want to paste without cleaning?", +UnknownToolbarItem : "Unknown toolbar item \"%1\"", +UnknownCommand : "Unknown command name \"%1\"", +NotImplemented : "Command not implemented", +UnknownToolbarSet : "Toolbar set \"%1\" doesn't exist", +NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", +BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", +DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", +VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", + +// Dialogs +DlgBtnOK : "OK", +DlgBtnCancel : "Cancel", +DlgBtnClose : "Close", +DlgBtnBrowseServer : "Browse Server", +DlgAdvancedTag : "Advanced", +DlgOpOther : "", +DlgInfoTab : "Info", +DlgAlertUrl : "Please insert the URL", + +// General Dialogs Labels +DlgGenNotSet : "", +DlgGenId : "Id", +DlgGenLangDir : "Language Direction", +DlgGenLangDirLtr : "Left to Right (LTR)", +DlgGenLangDirRtl : "Right to Left (RTL)", +DlgGenLangCode : "Language Code", +DlgGenAccessKey : "Access Key", +DlgGenName : "Name", +DlgGenTabIndex : "Tab Index", +DlgGenLongDescr : "Long Description URL", +DlgGenClass : "Stylesheet Classes", +DlgGenTitle : "Advisory Title", +DlgGenContType : "Advisory Content Type", +DlgGenLinkCharset : "Linked Resource Charset", +DlgGenStyle : "Style", + +// Image Dialog +DlgImgTitle : "Image Properties", +DlgImgInfoTab : "Image Info", +DlgImgBtnUpload : "Send it to the Server", +DlgImgURL : "URL", +DlgImgUpload : "Upload", +DlgImgAlt : "Alternative Text", +DlgImgWidth : "Width", +DlgImgHeight : "Height", +DlgImgLockRatio : "Lock Ratio", +DlgBtnResetSize : "Reset Size", +DlgImgBorder : "Border", +DlgImgHSpace : "HSpace", +DlgImgVSpace : "VSpace", +DlgImgAlign : "Align", +DlgImgAlignLeft : "Left", +DlgImgAlignAbsBottom: "Abs Bottom", +DlgImgAlignAbsMiddle: "Abs Middle", +DlgImgAlignBaseline : "Baseline", +DlgImgAlignBottom : "Bottom", +DlgImgAlignMiddle : "Middle", +DlgImgAlignRight : "Right", +DlgImgAlignTextTop : "Text Top", +DlgImgAlignTop : "Top", +DlgImgPreview : "Preview", +DlgImgAlertUrl : "Please type the image URL", +DlgImgLinkTab : "Link", + +// Flash Dialog +DlgFlashTitle : "Flash Properties", +DlgFlashChkPlay : "Auto Play", +DlgFlashChkLoop : "Loop", +DlgFlashChkMenu : "Enable Flash Menu", +DlgFlashScale : "Scale", +DlgFlashScaleAll : "Show all", +DlgFlashScaleNoBorder : "No Border", +DlgFlashScaleFit : "Exact Fit", + +// Link Dialog +DlgLnkWindowTitle : "Link", +DlgLnkInfoTab : "Link Info", +DlgLnkTargetTab : "Target", + +DlgLnkType : "Link Type", +DlgLnkTypeURL : "URL", +DlgLnkTypeAnchor : "Link to anchor in the text", +DlgLnkTypeEMail : "E-Mail", +DlgLnkProto : "Protocol", +DlgLnkProtoOther : "", +DlgLnkURL : "URL", +DlgLnkAnchorSel : "Select an Anchor", +DlgLnkAnchorByName : "By Anchor Name", +DlgLnkAnchorById : "By Element Id", +DlgLnkNoAnchors : "(No anchors available in the document)", +DlgLnkEMail : "E-Mail Address", +DlgLnkEMailSubject : "Message Subject", +DlgLnkEMailBody : "Message Body", +DlgLnkUpload : "Upload", +DlgLnkBtnUpload : "Send it to the Server", + +DlgLnkTarget : "Target", +DlgLnkTargetFrame : "", +DlgLnkTargetPopup : "", +DlgLnkTargetBlank : "New Window (_blank)", +DlgLnkTargetParent : "Parent Window (_parent)", +DlgLnkTargetSelf : "Same Window (_self)", +DlgLnkTargetTop : "Topmost Window (_top)", +DlgLnkTargetFrameName : "Target Frame Name", +DlgLnkPopWinName : "Popup Window Name", +DlgLnkPopWinFeat : "Popup Window Features", +DlgLnkPopResize : "Resizable", +DlgLnkPopLocation : "Location Bar", +DlgLnkPopMenu : "Menu Bar", +DlgLnkPopScroll : "Scroll Bars", +DlgLnkPopStatus : "Status Bar", +DlgLnkPopToolbar : "Toolbar", +DlgLnkPopFullScrn : "Full Screen (IE)", +DlgLnkPopDependent : "Dependent (Netscape)", +DlgLnkPopWidth : "Width", +DlgLnkPopHeight : "Height", +DlgLnkPopLeft : "Left Position", +DlgLnkPopTop : "Top Position", + +DlnLnkMsgNoUrl : "Please type the link URL", +DlnLnkMsgNoEMail : "Please type the e-mail address", +DlnLnkMsgNoAnchor : "Please select an anchor", +DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", + +// Color Dialog +DlgColorTitle : "Select Colour", +DlgColorBtnClear : "Clear", +DlgColorHighlight : "Highlight", +DlgColorSelected : "Selected", + +// Smiley Dialog +DlgSmileyTitle : "Insert a Smiley", + +// Special Character Dialog +DlgSpecialCharTitle : "Select Special Character", + +// Table Dialog +DlgTableTitle : "Table Properties", +DlgTableRows : "Rows", +DlgTableColumns : "Columns", +DlgTableBorder : "Border size", +DlgTableAlign : "Alignment", +DlgTableAlignNotSet : "", +DlgTableAlignLeft : "Left", +DlgTableAlignCenter : "Centre", +DlgTableAlignRight : "Right", +DlgTableWidth : "Width", +DlgTableWidthPx : "pixels", +DlgTableWidthPc : "percent", +DlgTableHeight : "Height", +DlgTableCellSpace : "Cell spacing", +DlgTableCellPad : "Cell padding", +DlgTableCaption : "Caption", +DlgTableSummary : "Summary", +DlgTableHeaders : "Headers", //MISSING +DlgTableHeadersNone : "None", //MISSING +DlgTableHeadersColumn : "First column", //MISSING +DlgTableHeadersRow : "First Row", //MISSING +DlgTableHeadersBoth : "Both", //MISSING + +// Table Cell Dialog +DlgCellTitle : "Cell Properties", +DlgCellWidth : "Width", +DlgCellWidthPx : "pixels", +DlgCellWidthPc : "percent", +DlgCellHeight : "Height", +DlgCellWordWrap : "Word Wrap", +DlgCellWordWrapNotSet : "", +DlgCellWordWrapYes : "Yes", +DlgCellWordWrapNo : "No", +DlgCellHorAlign : "Horizontal Alignment", +DlgCellHorAlignNotSet : "", +DlgCellHorAlignLeft : "Left", +DlgCellHorAlignCenter : "Centre", +DlgCellHorAlignRight: "Right", +DlgCellVerAlign : "Vertical Alignment", +DlgCellVerAlignNotSet : "", +DlgCellVerAlignTop : "Top", +DlgCellVerAlignMiddle : "Middle", +DlgCellVerAlignBottom : "Bottom", +DlgCellVerAlignBaseline : "Baseline", +DlgCellType : "Cell Type", +DlgCellTypeData : "Data", +DlgCellTypeHeader : "Header", +DlgCellRowSpan : "Rows Span", +DlgCellCollSpan : "Columns Span", +DlgCellBackColor : "Background Colour", +DlgCellBorderColor : "Border Colour", +DlgCellBtnSelect : "Select...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "Find and Replace", + +// Find Dialog +DlgFindTitle : "Find", +DlgFindFindBtn : "Find", +DlgFindNotFoundMsg : "The specified text was not found.", + +// Replace Dialog +DlgReplaceTitle : "Replace", +DlgReplaceFindLbl : "Find what:", +DlgReplaceReplaceLbl : "Replace with:", +DlgReplaceCaseChk : "Match case", +DlgReplaceReplaceBtn : "Replace", +DlgReplaceReplAllBtn : "Replace All", +DlgReplaceWordChk : "Match whole word", + +// Paste Operations / Dialog +PasteErrorCut : "Your browser security settings don't permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl+X).", +PasteErrorCopy : "Your browser security settings don't permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl+C).", + +PasteAsText : "Paste as Plain Text", +PasteFromWord : "Paste from Word", + +DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", +DlgPasteIgnoreFont : "Ignore Font Face definitions", +DlgPasteRemoveStyles : "Remove Styles definitions", + +// Color Picker +ColorAutomatic : "Automatic", +ColorMoreColors : "More Colours...", + +// Document Properties +DocProps : "Document Properties", + +// Anchor Dialog +DlgAnchorTitle : "Anchor Properties", +DlgAnchorName : "Anchor Name", +DlgAnchorErrorName : "Please type the anchor name", + +// Speller Pages Dialog +DlgSpellNotInDic : "Not in dictionary", +DlgSpellChangeTo : "Change to", +DlgSpellBtnIgnore : "Ignore", +DlgSpellBtnIgnoreAll : "Ignore All", +DlgSpellBtnReplace : "Replace", +DlgSpellBtnReplaceAll : "Replace All", +DlgSpellBtnUndo : "Undo", +DlgSpellNoSuggestions : "- No suggestions -", +DlgSpellProgress : "Spell check in progress...", +DlgSpellNoMispell : "Spell check complete: No misspellings found", +DlgSpellNoChanges : "Spell check complete: No words changed", +DlgSpellOneChange : "Spell check complete: One word changed", +DlgSpellManyChanges : "Spell check complete: %1 words changed", + +IeSpellDownload : "Spell checker not installed. Do you want to download it now?", + +// Button Dialog +DlgButtonText : "Text (Value)", +DlgButtonType : "Type", +DlgButtonTypeBtn : "Button", +DlgButtonTypeSbm : "Submit", +DlgButtonTypeRst : "Reset", + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "Name", +DlgCheckboxValue : "Value", +DlgCheckboxSelected : "Selected", + +// Form Dialog +DlgFormName : "Name", +DlgFormAction : "Action", +DlgFormMethod : "Method", + +// Select Field Dialog +DlgSelectName : "Name", +DlgSelectValue : "Value", +DlgSelectSize : "Size", +DlgSelectLines : "lines", +DlgSelectChkMulti : "Allow multiple selections", +DlgSelectOpAvail : "Available Options", +DlgSelectOpText : "Text", +DlgSelectOpValue : "Value", +DlgSelectBtnAdd : "Add", +DlgSelectBtnModify : "Modify", +DlgSelectBtnUp : "Up", +DlgSelectBtnDown : "Down", +DlgSelectBtnSetValue : "Set as selected value", +DlgSelectBtnDelete : "Delete", + +// Textarea Dialog +DlgTextareaName : "Name", +DlgTextareaCols : "Columns", +DlgTextareaRows : "Rows", + +// Text Field Dialog +DlgTextName : "Name", +DlgTextValue : "Value", +DlgTextCharWidth : "Character Width", +DlgTextMaxChars : "Maximum Characters", +DlgTextType : "Type", +DlgTextTypeText : "Text", +DlgTextTypePass : "Password", + +// Hidden Field Dialog +DlgHiddenName : "Name", +DlgHiddenValue : "Value", + +// Bulleted List Dialog +BulletedListProp : "Bulleted List Properties", +NumberedListProp : "Numbered List Properties", +DlgLstStart : "Start", +DlgLstType : "Type", +DlgLstTypeCircle : "Circle", +DlgLstTypeDisc : "Disc", +DlgLstTypeSquare : "Square", +DlgLstTypeNumbers : "Numbers (1, 2, 3)", +DlgLstTypeLCase : "Lowercase Letters (a, b, c)", +DlgLstTypeUCase : "Uppercase Letters (A, B, C)", +DlgLstTypeSRoman : "Small Roman Numerals (i, ii, iii)", +DlgLstTypeLRoman : "Large Roman Numerals (I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "General", +DlgDocBackTab : "Background", +DlgDocColorsTab : "Colours and Margins", +DlgDocMetaTab : "Meta Data", + +DlgDocPageTitle : "Page Title", +DlgDocLangDir : "Language Direction", +DlgDocLangDirLTR : "Left to Right (LTR)", +DlgDocLangDirRTL : "Right to Left (RTL)", +DlgDocLangCode : "Language Code", +DlgDocCharSet : "Character Set Encoding", +DlgDocCharSetCE : "Central European", +DlgDocCharSetCT : "Chinese Traditional (Big5)", +DlgDocCharSetCR : "Cyrillic", +DlgDocCharSetGR : "Greek", +DlgDocCharSetJP : "Japanese", +DlgDocCharSetKR : "Korean", +DlgDocCharSetTR : "Turkish", +DlgDocCharSetUN : "Unicode (UTF-8)", +DlgDocCharSetWE : "Western European", +DlgDocCharSetOther : "Other Character Set Encoding", + +DlgDocDocType : "Document Type Heading", +DlgDocDocTypeOther : "Other Document Type Heading", +DlgDocIncXHTML : "Include XHTML Declarations", +DlgDocBgColor : "Background Colour", +DlgDocBgImage : "Background Image URL", +DlgDocBgNoScroll : "Nonscrolling Background", +DlgDocCText : "Text", +DlgDocCLink : "Link", +DlgDocCVisited : "Visited Link", +DlgDocCActive : "Active Link", +DlgDocMargins : "Page Margins", +DlgDocMaTop : "Top", +DlgDocMaLeft : "Left", +DlgDocMaRight : "Right", +DlgDocMaBottom : "Bottom", +DlgDocMeIndex : "Document Indexing Keywords (comma separated)", +DlgDocMeDescr : "Document Description", +DlgDocMeAuthor : "Author", +DlgDocMeCopy : "Copyright", +DlgDocPreview : "Preview", + +// Templates Dialog +Templates : "Templates", +DlgTemplatesTitle : "Content Templates", +DlgTemplatesSelMsg : "Please select the template to open in the editor
(the actual contents will be lost):", +DlgTemplatesLoading : "Loading templates list. Please wait...", +DlgTemplatesNoTpl : "(No templates defined)", +DlgTemplatesReplace : "Replace actual contents", + +// About Dialog +DlgAboutAboutTab : "About", +DlgAboutBrowserInfoTab : "Browser Info", +DlgAboutLicenseTab : "License", +DlgAboutVersion : "version", +DlgAboutInfo : "For further information go to", + +// Div Dialog +DlgDivGeneralTab : "General", +DlgDivAdvancedTab : "Advanced", +DlgDivStyle : "Style", +DlgDivInlineStyle : "Inline Style", + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/en.js b/fckeditor/editor/lang/en.js new file mode 100644 index 0000000..5338695 --- /dev/null +++ b/fckeditor/editor/lang/en.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * English language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "Collapse Toolbar", +ToolbarExpand : "Expand Toolbar", + +// Toolbar Items and Context Menu +Save : "Save", +NewPage : "New Page", +Preview : "Preview", +Cut : "Cut", +Copy : "Copy", +Paste : "Paste", +PasteText : "Paste as plain text", +PasteWord : "Paste from Word", +Print : "Print", +SelectAll : "Select All", +RemoveFormat : "Remove Format", +InsertLinkLbl : "Link", +InsertLink : "Insert/Edit Link", +RemoveLink : "Remove Link", +VisitLink : "Open Link", +Anchor : "Insert/Edit Anchor", +AnchorDelete : "Remove Anchor", +InsertImageLbl : "Image", +InsertImage : "Insert/Edit Image", +InsertFlashLbl : "Flash", +InsertFlash : "Insert/Edit Flash", +InsertTableLbl : "Table", +InsertTable : "Insert/Edit Table", +InsertLineLbl : "Line", +InsertLine : "Insert Horizontal Line", +InsertSpecialCharLbl: "Special Character", +InsertSpecialChar : "Insert Special Character", +InsertSmileyLbl : "Smiley", +InsertSmiley : "Insert Smiley", +About : "About FCKeditor", +Bold : "Bold", +Italic : "Italic", +Underline : "Underline", +StrikeThrough : "Strike Through", +Subscript : "Subscript", +Superscript : "Superscript", +LeftJustify : "Left Justify", +CenterJustify : "Center Justify", +RightJustify : "Right Justify", +BlockJustify : "Block Justify", +DecreaseIndent : "Decrease Indent", +IncreaseIndent : "Increase Indent", +Blockquote : "Blockquote", +CreateDiv : "Create Div Container", +EditDiv : "Edit Div Container", +DeleteDiv : "Remove Div Container", +Undo : "Undo", +Redo : "Redo", +NumberedListLbl : "Numbered List", +NumberedList : "Insert/Remove Numbered List", +BulletedListLbl : "Bulleted List", +BulletedList : "Insert/Remove Bulleted List", +ShowTableBorders : "Show Table Borders", +ShowDetails : "Show Details", +Style : "Style", +FontFormat : "Format", +Font : "Font", +FontSize : "Size", +TextColor : "Text Color", +BGColor : "Background Color", +Source : "Source", +Find : "Find", +Replace : "Replace", +SpellCheck : "Check Spelling", +UniversalKeyboard : "Universal Keyboard", +PageBreakLbl : "Page Break", +PageBreak : "Insert Page Break", + +Form : "Form", +Checkbox : "Checkbox", +RadioButton : "Radio Button", +TextField : "Text Field", +Textarea : "Textarea", +HiddenField : "Hidden Field", +Button : "Button", +SelectionField : "Selection Field", +ImageButton : "Image Button", + +FitWindow : "Maximize the editor size", +ShowBlocks : "Show Blocks", + +// Context Menu +EditLink : "Edit Link", +CellCM : "Cell", +RowCM : "Row", +ColumnCM : "Column", +InsertRowAfter : "Insert Row After", +InsertRowBefore : "Insert Row Before", +DeleteRows : "Delete Rows", +InsertColumnAfter : "Insert Column After", +InsertColumnBefore : "Insert Column Before", +DeleteColumns : "Delete Columns", +InsertCellAfter : "Insert Cell After", +InsertCellBefore : "Insert Cell Before", +DeleteCells : "Delete Cells", +MergeCells : "Merge Cells", +MergeRight : "Merge Right", +MergeDown : "Merge Down", +HorizontalSplitCell : "Split Cell Horizontally", +VerticalSplitCell : "Split Cell Vertically", +TableDelete : "Delete Table", +CellProperties : "Cell Properties", +TableProperties : "Table Properties", +ImageProperties : "Image Properties", +FlashProperties : "Flash Properties", + +AnchorProp : "Anchor Properties", +ButtonProp : "Button Properties", +CheckboxProp : "Checkbox Properties", +HiddenFieldProp : "Hidden Field Properties", +RadioButtonProp : "Radio Button Properties", +ImageButtonProp : "Image Button Properties", +TextFieldProp : "Text Field Properties", +SelectionFieldProp : "Selection Field Properties", +TextareaProp : "Textarea Properties", +FormProp : "Form Properties", + +FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)", + +// Alerts and Messages +ProcessingXHTML : "Processing XHTML. Please wait...", +Done : "Done", +PasteWordConfirm : "The text you want to paste seems to be copied from Word. Do you want to clean it before pasting?", +NotCompatiblePaste : "This command is available for Internet Explorer version 5.5 or more. Do you want to paste without cleaning?", +UnknownToolbarItem : "Unknown toolbar item \"%1\"", +UnknownCommand : "Unknown command name \"%1\"", +NotImplemented : "Command not implemented", +UnknownToolbarSet : "Toolbar set \"%1\" doesn't exist", +NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", +BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", +DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", +VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", + +// Dialogs +DlgBtnOK : "OK", +DlgBtnCancel : "Cancel", +DlgBtnClose : "Close", +DlgBtnBrowseServer : "Browse Server", +DlgAdvancedTag : "Advanced", +DlgOpOther : "", +DlgInfoTab : "Info", +DlgAlertUrl : "Please insert the URL", + +// General Dialogs Labels +DlgGenNotSet : "", +DlgGenId : "Id", +DlgGenLangDir : "Language Direction", +DlgGenLangDirLtr : "Left to Right (LTR)", +DlgGenLangDirRtl : "Right to Left (RTL)", +DlgGenLangCode : "Language Code", +DlgGenAccessKey : "Access Key", +DlgGenName : "Name", +DlgGenTabIndex : "Tab Index", +DlgGenLongDescr : "Long Description URL", +DlgGenClass : "Stylesheet Classes", +DlgGenTitle : "Advisory Title", +DlgGenContType : "Advisory Content Type", +DlgGenLinkCharset : "Linked Resource Charset", +DlgGenStyle : "Style", + +// Image Dialog +DlgImgTitle : "Image Properties", +DlgImgInfoTab : "Image Info", +DlgImgBtnUpload : "Send it to the Server", +DlgImgURL : "URL", +DlgImgUpload : "Upload", +DlgImgAlt : "Alternative Text", +DlgImgWidth : "Width", +DlgImgHeight : "Height", +DlgImgLockRatio : "Lock Ratio", +DlgBtnResetSize : "Reset Size", +DlgImgBorder : "Border", +DlgImgHSpace : "HSpace", +DlgImgVSpace : "VSpace", +DlgImgAlign : "Align", +DlgImgAlignLeft : "Left", +DlgImgAlignAbsBottom: "Abs Bottom", +DlgImgAlignAbsMiddle: "Abs Middle", +DlgImgAlignBaseline : "Baseline", +DlgImgAlignBottom : "Bottom", +DlgImgAlignMiddle : "Middle", +DlgImgAlignRight : "Right", +DlgImgAlignTextTop : "Text Top", +DlgImgAlignTop : "Top", +DlgImgPreview : "Preview", +DlgImgAlertUrl : "Please type the image URL", +DlgImgLinkTab : "Link", + +// Flash Dialog +DlgFlashTitle : "Flash Properties", +DlgFlashChkPlay : "Auto Play", +DlgFlashChkLoop : "Loop", +DlgFlashChkMenu : "Enable Flash Menu", +DlgFlashScale : "Scale", +DlgFlashScaleAll : "Show all", +DlgFlashScaleNoBorder : "No Border", +DlgFlashScaleFit : "Exact Fit", + +// Link Dialog +DlgLnkWindowTitle : "Link", +DlgLnkInfoTab : "Link Info", +DlgLnkTargetTab : "Target", + +DlgLnkType : "Link Type", +DlgLnkTypeURL : "URL", +DlgLnkTypeAnchor : "Link to anchor in the text", +DlgLnkTypeEMail : "E-Mail", +DlgLnkProto : "Protocol", +DlgLnkProtoOther : "", +DlgLnkURL : "URL", +DlgLnkAnchorSel : "Select an Anchor", +DlgLnkAnchorByName : "By Anchor Name", +DlgLnkAnchorById : "By Element Id", +DlgLnkNoAnchors : "(No anchors available in the document)", +DlgLnkEMail : "E-Mail Address", +DlgLnkEMailSubject : "Message Subject", +DlgLnkEMailBody : "Message Body", +DlgLnkUpload : "Upload", +DlgLnkBtnUpload : "Send it to the Server", + +DlgLnkTarget : "Target", +DlgLnkTargetFrame : "", +DlgLnkTargetPopup : "", +DlgLnkTargetBlank : "New Window (_blank)", +DlgLnkTargetParent : "Parent Window (_parent)", +DlgLnkTargetSelf : "Same Window (_self)", +DlgLnkTargetTop : "Topmost Window (_top)", +DlgLnkTargetFrameName : "Target Frame Name", +DlgLnkPopWinName : "Popup Window Name", +DlgLnkPopWinFeat : "Popup Window Features", +DlgLnkPopResize : "Resizable", +DlgLnkPopLocation : "Location Bar", +DlgLnkPopMenu : "Menu Bar", +DlgLnkPopScroll : "Scroll Bars", +DlgLnkPopStatus : "Status Bar", +DlgLnkPopToolbar : "Toolbar", +DlgLnkPopFullScrn : "Full Screen (IE)", +DlgLnkPopDependent : "Dependent (Netscape)", +DlgLnkPopWidth : "Width", +DlgLnkPopHeight : "Height", +DlgLnkPopLeft : "Left Position", +DlgLnkPopTop : "Top Position", + +DlnLnkMsgNoUrl : "Please type the link URL", +DlnLnkMsgNoEMail : "Please type the e-mail address", +DlnLnkMsgNoAnchor : "Please select an anchor", +DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", + +// Color Dialog +DlgColorTitle : "Select Color", +DlgColorBtnClear : "Clear", +DlgColorHighlight : "Highlight", +DlgColorSelected : "Selected", + +// Smiley Dialog +DlgSmileyTitle : "Insert a Smiley", + +// Special Character Dialog +DlgSpecialCharTitle : "Select Special Character", + +// Table Dialog +DlgTableTitle : "Table Properties", +DlgTableRows : "Rows", +DlgTableColumns : "Columns", +DlgTableBorder : "Border size", +DlgTableAlign : "Alignment", +DlgTableAlignNotSet : "", +DlgTableAlignLeft : "Left", +DlgTableAlignCenter : "Center", +DlgTableAlignRight : "Right", +DlgTableWidth : "Width", +DlgTableWidthPx : "pixels", +DlgTableWidthPc : "percent", +DlgTableHeight : "Height", +DlgTableCellSpace : "Cell spacing", +DlgTableCellPad : "Cell padding", +DlgTableCaption : "Caption", +DlgTableSummary : "Summary", +DlgTableHeaders : "Headers", +DlgTableHeadersNone : "None", +DlgTableHeadersColumn : "First column", +DlgTableHeadersRow : "First Row", +DlgTableHeadersBoth : "Both", + +// Table Cell Dialog +DlgCellTitle : "Cell Properties", +DlgCellWidth : "Width", +DlgCellWidthPx : "pixels", +DlgCellWidthPc : "percent", +DlgCellHeight : "Height", +DlgCellWordWrap : "Word Wrap", +DlgCellWordWrapNotSet : "", +DlgCellWordWrapYes : "Yes", +DlgCellWordWrapNo : "No", +DlgCellHorAlign : "Horizontal Alignment", +DlgCellHorAlignNotSet : "", +DlgCellHorAlignLeft : "Left", +DlgCellHorAlignCenter : "Center", +DlgCellHorAlignRight: "Right", +DlgCellVerAlign : "Vertical Alignment", +DlgCellVerAlignNotSet : "", +DlgCellVerAlignTop : "Top", +DlgCellVerAlignMiddle : "Middle", +DlgCellVerAlignBottom : "Bottom", +DlgCellVerAlignBaseline : "Baseline", +DlgCellType : "Cell Type", +DlgCellTypeData : "Data", +DlgCellTypeHeader : "Header", +DlgCellRowSpan : "Rows Span", +DlgCellCollSpan : "Columns Span", +DlgCellBackColor : "Background Color", +DlgCellBorderColor : "Border Color", +DlgCellBtnSelect : "Select...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "Find and Replace", + +// Find Dialog +DlgFindTitle : "Find", +DlgFindFindBtn : "Find", +DlgFindNotFoundMsg : "The specified text was not found.", + +// Replace Dialog +DlgReplaceTitle : "Replace", +DlgReplaceFindLbl : "Find what:", +DlgReplaceReplaceLbl : "Replace with:", +DlgReplaceCaseChk : "Match case", +DlgReplaceReplaceBtn : "Replace", +DlgReplaceReplAllBtn : "Replace All", +DlgReplaceWordChk : "Match whole word", + +// Paste Operations / Dialog +PasteErrorCut : "Your browser security settings don't permit the editor to automatically execute cutting operations. Please use the keyboard for that (Ctrl+X).", +PasteErrorCopy : "Your browser security settings don't permit the editor to automatically execute copying operations. Please use the keyboard for that (Ctrl+C).", + +PasteAsText : "Paste as Plain Text", +PasteFromWord : "Paste from Word", + +DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", +DlgPasteIgnoreFont : "Ignore Font Face definitions", +DlgPasteRemoveStyles : "Remove Styles definitions", + +// Color Picker +ColorAutomatic : "Automatic", +ColorMoreColors : "More Colors...", + +// Document Properties +DocProps : "Document Properties", + +// Anchor Dialog +DlgAnchorTitle : "Anchor Properties", +DlgAnchorName : "Anchor Name", +DlgAnchorErrorName : "Please type the anchor name", + +// Speller Pages Dialog +DlgSpellNotInDic : "Not in dictionary", +DlgSpellChangeTo : "Change to", +DlgSpellBtnIgnore : "Ignore", +DlgSpellBtnIgnoreAll : "Ignore All", +DlgSpellBtnReplace : "Replace", +DlgSpellBtnReplaceAll : "Replace All", +DlgSpellBtnUndo : "Undo", +DlgSpellNoSuggestions : "- No suggestions -", +DlgSpellProgress : "Spell check in progress...", +DlgSpellNoMispell : "Spell check complete: No misspellings found", +DlgSpellNoChanges : "Spell check complete: No words changed", +DlgSpellOneChange : "Spell check complete: One word changed", +DlgSpellManyChanges : "Spell check complete: %1 words changed", + +IeSpellDownload : "Spell checker not installed. Do you want to download it now?", + +// Button Dialog +DlgButtonText : "Text (Value)", +DlgButtonType : "Type", +DlgButtonTypeBtn : "Button", +DlgButtonTypeSbm : "Submit", +DlgButtonTypeRst : "Reset", + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "Name", +DlgCheckboxValue : "Value", +DlgCheckboxSelected : "Selected", + +// Form Dialog +DlgFormName : "Name", +DlgFormAction : "Action", +DlgFormMethod : "Method", + +// Select Field Dialog +DlgSelectName : "Name", +DlgSelectValue : "Value", +DlgSelectSize : "Size", +DlgSelectLines : "lines", +DlgSelectChkMulti : "Allow multiple selections", +DlgSelectOpAvail : "Available Options", +DlgSelectOpText : "Text", +DlgSelectOpValue : "Value", +DlgSelectBtnAdd : "Add", +DlgSelectBtnModify : "Modify", +DlgSelectBtnUp : "Up", +DlgSelectBtnDown : "Down", +DlgSelectBtnSetValue : "Set as selected value", +DlgSelectBtnDelete : "Delete", + +// Textarea Dialog +DlgTextareaName : "Name", +DlgTextareaCols : "Columns", +DlgTextareaRows : "Rows", + +// Text Field Dialog +DlgTextName : "Name", +DlgTextValue : "Value", +DlgTextCharWidth : "Character Width", +DlgTextMaxChars : "Maximum Characters", +DlgTextType : "Type", +DlgTextTypeText : "Text", +DlgTextTypePass : "Password", + +// Hidden Field Dialog +DlgHiddenName : "Name", +DlgHiddenValue : "Value", + +// Bulleted List Dialog +BulletedListProp : "Bulleted List Properties", +NumberedListProp : "Numbered List Properties", +DlgLstStart : "Start", +DlgLstType : "Type", +DlgLstTypeCircle : "Circle", +DlgLstTypeDisc : "Disc", +DlgLstTypeSquare : "Square", +DlgLstTypeNumbers : "Numbers (1, 2, 3)", +DlgLstTypeLCase : "Lowercase Letters (a, b, c)", +DlgLstTypeUCase : "Uppercase Letters (A, B, C)", +DlgLstTypeSRoman : "Small Roman Numerals (i, ii, iii)", +DlgLstTypeLRoman : "Large Roman Numerals (I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "General", +DlgDocBackTab : "Background", +DlgDocColorsTab : "Colors and Margins", +DlgDocMetaTab : "Meta Data", + +DlgDocPageTitle : "Page Title", +DlgDocLangDir : "Language Direction", +DlgDocLangDirLTR : "Left to Right (LTR)", +DlgDocLangDirRTL : "Right to Left (RTL)", +DlgDocLangCode : "Language Code", +DlgDocCharSet : "Character Set Encoding", +DlgDocCharSetCE : "Central European", +DlgDocCharSetCT : "Chinese Traditional (Big5)", +DlgDocCharSetCR : "Cyrillic", +DlgDocCharSetGR : "Greek", +DlgDocCharSetJP : "Japanese", +DlgDocCharSetKR : "Korean", +DlgDocCharSetTR : "Turkish", +DlgDocCharSetUN : "Unicode (UTF-8)", +DlgDocCharSetWE : "Western European", +DlgDocCharSetOther : "Other Character Set Encoding", + +DlgDocDocType : "Document Type Heading", +DlgDocDocTypeOther : "Other Document Type Heading", +DlgDocIncXHTML : "Include XHTML Declarations", +DlgDocBgColor : "Background Color", +DlgDocBgImage : "Background Image URL", +DlgDocBgNoScroll : "Nonscrolling Background", +DlgDocCText : "Text", +DlgDocCLink : "Link", +DlgDocCVisited : "Visited Link", +DlgDocCActive : "Active Link", +DlgDocMargins : "Page Margins", +DlgDocMaTop : "Top", +DlgDocMaLeft : "Left", +DlgDocMaRight : "Right", +DlgDocMaBottom : "Bottom", +DlgDocMeIndex : "Document Indexing Keywords (comma separated)", +DlgDocMeDescr : "Document Description", +DlgDocMeAuthor : "Author", +DlgDocMeCopy : "Copyright", +DlgDocPreview : "Preview", + +// Templates Dialog +Templates : "Templates", +DlgTemplatesTitle : "Content Templates", +DlgTemplatesSelMsg : "Please select the template to open in the editor
(the actual contents will be lost):", +DlgTemplatesLoading : "Loading templates list. Please wait...", +DlgTemplatesNoTpl : "(No templates defined)", +DlgTemplatesReplace : "Replace actual contents", + +// About Dialog +DlgAboutAboutTab : "About", +DlgAboutBrowserInfoTab : "Browser Info", +DlgAboutLicenseTab : "License", +DlgAboutVersion : "version", +DlgAboutInfo : "For further information go to", + +// Div Dialog +DlgDivGeneralTab : "General", +DlgDivAdvancedTab : "Advanced", +DlgDivStyle : "Style", +DlgDivInlineStyle : "Inline Style", + +ScaytTitle : "SCAYT", +ScaytTitleOptions : "Options", +ScaytTitleLangs : "Languages", +ScaytTitleAbout : "About" +}; diff --git a/fckeditor/editor/lang/eo.js b/fckeditor/editor/lang/eo.js new file mode 100644 index 0000000..624a98d --- /dev/null +++ b/fckeditor/editor/lang/eo.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * Esperanto language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "Kaŝi Ilobreton", +ToolbarExpand : "Vidigi Ilojn", + +// Toolbar Items and Context Menu +Save : "Sekurigi", +NewPage : "Nova Paĝo", +Preview : "Vidigi Aspekton", +Cut : "Eltondi", +Copy : "Kopii", +Paste : "Interglui", +PasteText : "Interglui kiel Tekston", +PasteWord : "Interglui el Word", +Print : "Presi", +SelectAll : "Elekti ĉion", +RemoveFormat : "Forigi Formaton", +InsertLinkLbl : "Ligilo", +InsertLink : "Enmeti/Ŝanĝi Ligilon", +RemoveLink : "Forigi Ligilon", +VisitLink : "Open Link", //MISSING +Anchor : "Enmeti/Ŝanĝi Ankron", +AnchorDelete : "Remove Anchor", //MISSING +InsertImageLbl : "Bildo", +InsertImage : "Enmeti/Ŝanĝi Bildon", +InsertFlashLbl : "Flash", //MISSING +InsertFlash : "Insert/Edit Flash", //MISSING +InsertTableLbl : "Tabelo", +InsertTable : "Enmeti/Ŝanĝi Tabelon", +InsertLineLbl : "Horizonta Linio", +InsertLine : "Enmeti Horizonta Linio", +InsertSpecialCharLbl: "Speciala Signo", +InsertSpecialChar : "Enmeti Specialan Signon", +InsertSmileyLbl : "Mienvinjeto", +InsertSmiley : "Enmeti Mienvinjeton", +About : "Pri FCKeditor", +Bold : "Grasa", +Italic : "Kursiva", +Underline : "Substreko", +StrikeThrough : "Trastreko", +Subscript : "Subskribo", +Superscript : "Superskribo", +LeftJustify : "Maldekstrigi", +CenterJustify : "Centrigi", +RightJustify : "Dekstrigi", +BlockJustify : "Ĝisrandigi Ambaŭflanke", +DecreaseIndent : "Malpligrandigi Krommarĝenon", +IncreaseIndent : "Pligrandigi Krommarĝenon", +Blockquote : "Blockquote", //MISSING +CreateDiv : "Create Div Container", //MISSING +EditDiv : "Edit Div Container", //MISSING +DeleteDiv : "Remove Div Container", //MISSING +Undo : "Malfari", +Redo : "Refari", +NumberedListLbl : "Numera Listo", +NumberedList : "Enmeti/Forigi Numeran Liston", +BulletedListLbl : "Bula Listo", +BulletedList : "Enmeti/Forigi Bulan Liston", +ShowTableBorders : "Vidigi Borderojn de Tabelo", +ShowDetails : "Vidigi Detalojn", +Style : "Stilo", +FontFormat : "Formato", +Font : "Tiparo", +FontSize : "Grando", +TextColor : "Teksta Koloro", +BGColor : "Fona Koloro", +Source : "Fonto", +Find : "Serĉi", +Replace : "Anstataŭigi", +SpellCheck : "Literumada Kontrolilo", +UniversalKeyboard : "Universala Klavaro", +PageBreakLbl : "Page Break", //MISSING +PageBreak : "Insert Page Break", //MISSING + +Form : "Formularo", +Checkbox : "Markobutono", +RadioButton : "Radiobutono", +TextField : "Teksta kampo", +Textarea : "Teksta Areo", +HiddenField : "Kaŝita Kampo", +Button : "Butono", +SelectionField : "Elekta Kampo", +ImageButton : "Bildbutono", + +FitWindow : "Maximize the editor size", //MISSING +ShowBlocks : "Show Blocks", //MISSING + +// Context Menu +EditLink : "Modifier Ligilon", +CellCM : "Cell", //MISSING +RowCM : "Row", //MISSING +ColumnCM : "Column", //MISSING +InsertRowAfter : "Insert Row After", //MISSING +InsertRowBefore : "Insert Row Before", //MISSING +DeleteRows : "Forigi Liniojn", +InsertColumnAfter : "Insert Column After", //MISSING +InsertColumnBefore : "Insert Column Before", //MISSING +DeleteColumns : "Forigi Kolumnojn", +InsertCellAfter : "Insert Cell After", //MISSING +InsertCellBefore : "Insert Cell Before", //MISSING +DeleteCells : "Forigi Ĉelojn", +MergeCells : "Kunfandi Ĉelojn", +MergeRight : "Merge Right", //MISSING +MergeDown : "Merge Down", //MISSING +HorizontalSplitCell : "Split Cell Horizontally", //MISSING +VerticalSplitCell : "Split Cell Vertically", //MISSING +TableDelete : "Delete Table", //MISSING +CellProperties : "Atributoj de Ĉelo", +TableProperties : "Atributoj de Tabelo", +ImageProperties : "Atributoj de Bildo", +FlashProperties : "Flash Properties", //MISSING + +AnchorProp : "Ankraj Atributoj", +ButtonProp : "Butonaj Atributoj", +CheckboxProp : "Markobutonaj Atributoj", +HiddenFieldProp : "Atributoj de Kaŝita Kampo", +RadioButtonProp : "Radiobutonaj Atributoj", +ImageButtonProp : "Bildbutonaj Atributoj", +TextFieldProp : "Atributoj de Teksta Kampo", +SelectionFieldProp : "Atributoj de Elekta Kampo", +TextareaProp : "Atributoj de Teksta Areo", +FormProp : "Formularaj Atributoj", + +FontFormats : "Normala;Formatita;Adreso;Titolo 1;Titolo 2;Titolo 3;Titolo 4;Titolo 5;Titolo 6;Paragrafo (DIV)", + +// Alerts and Messages +ProcessingXHTML : "Traktado de XHTML. Bonvolu pacienci...", +Done : "Finita", +PasteWordConfirm : "La algluota teksto ŝajnas esti Word-devena. Ĉu vi volas purigi ĝin antaŭ ol interglui?", +NotCompatiblePaste : "Tiu ĉi komando bezonas almenaŭ Internet Explorer 5.5. Ĉu vi volas daŭrigi sen purigado?", +UnknownToolbarItem : "Ilobretero nekonata \"%1\"", +UnknownCommand : "Komandonomo nekonata \"%1\"", +NotImplemented : "Komando ne ankoraŭ realigita", +UnknownToolbarSet : "La ilobreto \"%1\" ne ekzistas", +NoActiveX : "Your browser's security settings could limit some features of the editor. You must enable the option \"Run ActiveX controls and plug-ins\". You may experience errors and notice missing features.", //MISSING +BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", //MISSING +DialogBlocked : "It was not possible to open the dialog window. Make sure all popup blockers are disabled.", //MISSING +VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING + +// Dialogs +DlgBtnOK : "Akcepti", +DlgBtnCancel : "Rezigni", +DlgBtnClose : "Fermi", +DlgBtnBrowseServer : "Foliumi en la Servilo", +DlgAdvancedTag : "Speciala", +DlgOpOther : "", +DlgInfoTab : "Info", //MISSING +DlgAlertUrl : "Please insert the URL", //MISSING + +// General Dialogs Labels +DlgGenNotSet : "", +DlgGenId : "Id", +DlgGenLangDir : "Skribdirekto", +DlgGenLangDirLtr : "De maldekstro dekstren (LTR)", +DlgGenLangDirRtl : "De dekstro maldekstren (RTL)", +DlgGenLangCode : "Lingva Kodo", +DlgGenAccessKey : "Fulmoklavo", +DlgGenName : "Nomo", +DlgGenTabIndex : "Taba Ordo", +DlgGenLongDescr : "URL de Longa Priskribo", +DlgGenClass : "Klasoj de Stilfolioj", +DlgGenTitle : "Indika Titolo", +DlgGenContType : "Indika Enhavotipo", +DlgGenLinkCharset : "Signaro de la Ligita Rimedo", +DlgGenStyle : "Stilo", + +// Image Dialog +DlgImgTitle : "Atributoj de Bildo", +DlgImgInfoTab : "Informoj pri Bildo", +DlgImgBtnUpload : "Sendu al Servilo", +DlgImgURL : "URL", +DlgImgUpload : "Alŝuti", +DlgImgAlt : "Anstataŭiga Teksto", +DlgImgWidth : "Larĝo", +DlgImgHeight : "Alto", +DlgImgLockRatio : "Konservi Proporcion", +DlgBtnResetSize : "Origina Grando", +DlgImgBorder : "Bordero", +DlgImgHSpace : "HSpaco", +DlgImgVSpace : "VSpaco", +DlgImgAlign : "Ĝisrandigo", +DlgImgAlignLeft : "Maldekstre", +DlgImgAlignAbsBottom: "Abs Malsupre", +DlgImgAlignAbsMiddle: "Abs Centre", +DlgImgAlignBaseline : "Je Malsupro de Teksto", +DlgImgAlignBottom : "Malsupre", +DlgImgAlignMiddle : "Centre", +DlgImgAlignRight : "Dekstre", +DlgImgAlignTextTop : "Je Supro de Teksto", +DlgImgAlignTop : "Supre", +DlgImgPreview : "Vidigi Aspekton", +DlgImgAlertUrl : "Bonvolu tajpi la URL de la bildo", +DlgImgLinkTab : "Link", //MISSING + +// Flash Dialog +DlgFlashTitle : "Flash Properties", //MISSING +DlgFlashChkPlay : "Auto Play", //MISSING +DlgFlashChkLoop : "Loop", //MISSING +DlgFlashChkMenu : "Enable Flash Menu", //MISSING +DlgFlashScale : "Scale", //MISSING +DlgFlashScaleAll : "Show all", //MISSING +DlgFlashScaleNoBorder : "No Border", //MISSING +DlgFlashScaleFit : "Exact Fit", //MISSING + +// Link Dialog +DlgLnkWindowTitle : "Ligilo", +DlgLnkInfoTab : "Informoj pri la Ligilo", +DlgLnkTargetTab : "Celo", + +DlgLnkType : "Tipo de Ligilo", +DlgLnkTypeURL : "URL", +DlgLnkTypeAnchor : "Ankri en tiu ĉi paĝo", +DlgLnkTypeEMail : "Retpoŝto", +DlgLnkProto : "Protokolo", +DlgLnkProtoOther : "", +DlgLnkURL : "URL", +DlgLnkAnchorSel : "Elekti Ankron", +DlgLnkAnchorByName : "Per Ankronomo", +DlgLnkAnchorById : "Per Elementidentigilo", +DlgLnkNoAnchors : "", +DlgLnkEMail : "Retadreso", +DlgLnkEMailSubject : "Temlinio", +DlgLnkEMailBody : "Mesaĝa korpo", +DlgLnkUpload : "Alŝuti", +DlgLnkBtnUpload : "Sendi al Servilo", + +DlgLnkTarget : "Celo", +DlgLnkTargetFrame : "", +DlgLnkTargetPopup : "<ŝprucfenestro>", +DlgLnkTargetBlank : "Nova Fenestro (_blank)", +DlgLnkTargetParent : "Gepatra Fenestro (_parent)", +DlgLnkTargetSelf : "Sama Fenestro (_self)", +DlgLnkTargetTop : "Plej Supra Fenestro (_top)", +DlgLnkTargetFrameName : "Nomo de Kadro", +DlgLnkPopWinName : "Nomo de Ŝprucfenestro", +DlgLnkPopWinFeat : "Atributoj de la Ŝprucfenestro", +DlgLnkPopResize : "Grando Ŝanĝebla", +DlgLnkPopLocation : "Adresobreto", +DlgLnkPopMenu : "Menubreto", +DlgLnkPopScroll : "Rulumlisteloj", +DlgLnkPopStatus : "Statobreto", +DlgLnkPopToolbar : "Ilobreto", +DlgLnkPopFullScrn : "Tutekrane (IE)", +DlgLnkPopDependent : "Dependa (Netscape)", +DlgLnkPopWidth : "Larĝo", +DlgLnkPopHeight : "Alto", +DlgLnkPopLeft : "Pozicio de Maldekstro", +DlgLnkPopTop : "Pozicio de Supro", + +DlnLnkMsgNoUrl : "Bonvolu entajpi la URL-on", +DlnLnkMsgNoEMail : "Bonvolu entajpi la retadreson", +DlnLnkMsgNoAnchor : "Bonvolu elekti ankron", +DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING + +// Color Dialog +DlgColorTitle : "Elekti", +DlgColorBtnClear : "Forigi", +DlgColorHighlight : "Emfazi", +DlgColorSelected : "Elektita", + +// Smiley Dialog +DlgSmileyTitle : "Enmeti Mienvinjeton", + +// Special Character Dialog +DlgSpecialCharTitle : "Enmeti Specialan Signon", + +// Table Dialog +DlgTableTitle : "Atributoj de Tabelo", +DlgTableRows : "Linioj", +DlgTableColumns : "Kolumnoj", +DlgTableBorder : "Bordero", +DlgTableAlign : "Ĝisrandigo", +DlgTableAlignNotSet : "", +DlgTableAlignLeft : "Maldekstre", +DlgTableAlignCenter : "Centre", +DlgTableAlignRight : "Dekstre", +DlgTableWidth : "Larĝo", +DlgTableWidthPx : "Bitbilderoj", +DlgTableWidthPc : "elcentoj", +DlgTableHeight : "Alto", +DlgTableCellSpace : "Interspacigo de Ĉeloj", +DlgTableCellPad : "Ĉirkaŭenhava Plenigado", +DlgTableCaption : "Titolo", +DlgTableSummary : "Summary", //MISSING +DlgTableHeaders : "Headers", //MISSING +DlgTableHeadersNone : "None", //MISSING +DlgTableHeadersColumn : "First column", //MISSING +DlgTableHeadersRow : "First Row", //MISSING +DlgTableHeadersBoth : "Both", //MISSING + +// Table Cell Dialog +DlgCellTitle : "Atributoj de Celo", +DlgCellWidth : "Larĝo", +DlgCellWidthPx : "bitbilderoj", +DlgCellWidthPc : "elcentoj", +DlgCellHeight : "Alto", +DlgCellWordWrap : "Linifaldo", +DlgCellWordWrapNotSet : "", +DlgCellWordWrapYes : "Jes", +DlgCellWordWrapNo : "Ne", +DlgCellHorAlign : "Horizonta Ĝisrandigo", +DlgCellHorAlignNotSet : "", +DlgCellHorAlignLeft : "Maldekstre", +DlgCellHorAlignCenter : "Centre", +DlgCellHorAlignRight: "Dekstre", +DlgCellVerAlign : "Vertikala Ĝisrandigo", +DlgCellVerAlignNotSet : "", +DlgCellVerAlignTop : "Supre", +DlgCellVerAlignMiddle : "Centre", +DlgCellVerAlignBottom : "Malsupre", +DlgCellVerAlignBaseline : "Je Malsupro de Teksto", +DlgCellType : "Cell Type", //MISSING +DlgCellTypeData : "Data", //MISSING +DlgCellTypeHeader : "Header", //MISSING +DlgCellRowSpan : "Linioj Kunfanditaj", +DlgCellCollSpan : "Kolumnoj Kunfanditaj", +DlgCellBackColor : "Fono", +DlgCellBorderColor : "Bordero", +DlgCellBtnSelect : "Elekti...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "Find and Replace", //MISSING + +// Find Dialog +DlgFindTitle : "Serĉi", +DlgFindFindBtn : "Serĉi", +DlgFindNotFoundMsg : "La celteksto ne estas trovita.", + +// Replace Dialog +DlgReplaceTitle : "Anstataŭigi", +DlgReplaceFindLbl : "Serĉi:", +DlgReplaceReplaceLbl : "Anstataŭigi per:", +DlgReplaceCaseChk : "Kongruigi Usklecon", +DlgReplaceReplaceBtn : "Anstataŭigi", +DlgReplaceReplAllBtn : "Anstataŭigi Ĉiun", +DlgReplaceWordChk : "Tuta Vorto", + +// Paste Operations / Dialog +PasteErrorCut : "La sekurecagordo de via TTT-legilo ne permesas, ke la redaktilo faras eltondajn operaciojn. Bonvolu uzi la klavaron por tio (ctrl-X).", +PasteErrorCopy : "La sekurecagordo de via TTT-legilo ne permesas, ke la redaktilo faras kopiajn operaciojn. Bonvolu uzi la klavaron por tio (ctrl-C).", + +PasteAsText : "Interglui kiel Tekston", +PasteFromWord : "Interglui el Word", + +DlgPasteMsg2 : "Please paste inside the following box using the keyboard (Ctrl+V) and hit OK.", //MISSING +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING +DlgPasteIgnoreFont : "Ignore Font Face definitions", //MISSING +DlgPasteRemoveStyles : "Remove Styles definitions", //MISSING + +// Color Picker +ColorAutomatic : "Aŭtomata", +ColorMoreColors : "Pli da Koloroj...", + +// Document Properties +DocProps : "Dokumentaj Atributoj", + +// Anchor Dialog +DlgAnchorTitle : "Ankraj Atributoj", +DlgAnchorName : "Ankra Nomo", +DlgAnchorErrorName : "Bv tajpi la ankran nomon", + +// Speller Pages Dialog +DlgSpellNotInDic : "Ne trovita en la vortaro", +DlgSpellChangeTo : "Ŝanĝi al", +DlgSpellBtnIgnore : "Malatenti", +DlgSpellBtnIgnoreAll : "Malatenti Ĉiun", +DlgSpellBtnReplace : "Anstataŭigi", +DlgSpellBtnReplaceAll : "Anstataŭigi Ĉiun", +DlgSpellBtnUndo : "Malfari", +DlgSpellNoSuggestions : "- Neniu propono -", +DlgSpellProgress : "Literumkontrolado daŭras...", +DlgSpellNoMispell : "Literumkontrolado finita: neniu fuŝo trovita", +DlgSpellNoChanges : "Literumkontrolado finita: neniu vorto ŝanĝita", +DlgSpellOneChange : "Literumkontrolado finita: unu vorto ŝanĝita", +DlgSpellManyChanges : "Literumkontrolado finita: %1 vortoj ŝanĝitaj", + +IeSpellDownload : "Literumada Kontrolilo ne instalita. Ĉu vi volas elŝuti ĝin nun?", + +// Button Dialog +DlgButtonText : "Teksto (Valoro)", +DlgButtonType : "Tipo", +DlgButtonTypeBtn : "Button", //MISSING +DlgButtonTypeSbm : "Submit", //MISSING +DlgButtonTypeRst : "Reset", //MISSING + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "Nomo", +DlgCheckboxValue : "Valoro", +DlgCheckboxSelected : "Elektita", + +// Form Dialog +DlgFormName : "Nomo", +DlgFormAction : "Ago", +DlgFormMethod : "Metodo", + +// Select Field Dialog +DlgSelectName : "Nomo", +DlgSelectValue : "Valoro", +DlgSelectSize : "Grando", +DlgSelectLines : "Linioj", +DlgSelectChkMulti : "Permesi Plurajn Elektojn", +DlgSelectOpAvail : "Elektoj Disponeblaj", +DlgSelectOpText : "Teksto", +DlgSelectOpValue : "Valoro", +DlgSelectBtnAdd : "Aldoni", +DlgSelectBtnModify : "Modifi", +DlgSelectBtnUp : "Supren", +DlgSelectBtnDown : "Malsupren", +DlgSelectBtnSetValue : "Agordi kiel Elektitan Valoron", +DlgSelectBtnDelete : "Forigi", + +// Textarea Dialog +DlgTextareaName : "Nomo", +DlgTextareaCols : "Kolumnoj", +DlgTextareaRows : "Vicoj", + +// Text Field Dialog +DlgTextName : "Nomo", +DlgTextValue : "Valoro", +DlgTextCharWidth : "Signolarĝo", +DlgTextMaxChars : "Maksimuma Nombro da Signoj", +DlgTextType : "Tipo", +DlgTextTypeText : "Teksto", +DlgTextTypePass : "Pasvorto", + +// Hidden Field Dialog +DlgHiddenName : "Nomo", +DlgHiddenValue : "Valoro", + +// Bulleted List Dialog +BulletedListProp : "Atributoj de Bula Listo", +NumberedListProp : "Atributoj de Numera Listo", +DlgLstStart : "Start", //MISSING +DlgLstType : "Tipo", +DlgLstTypeCircle : "Cirklo", +DlgLstTypeDisc : "Disc", //MISSING +DlgLstTypeSquare : "Kvadrato", +DlgLstTypeNumbers : "Ciferoj (1, 2, 3)", +DlgLstTypeLCase : "Minusklaj Literoj (a, b, c)", +DlgLstTypeUCase : "Majusklaj Literoj (A, B, C)", +DlgLstTypeSRoman : "Malgrandaj Romanaj Ciferoj (i, ii, iii)", +DlgLstTypeLRoman : "Grandaj Romanaj Ciferoj (I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "Ĝeneralaĵoj", +DlgDocBackTab : "Fono", +DlgDocColorsTab : "Koloroj kaj Marĝenoj", +DlgDocMetaTab : "Metadatumoj", + +DlgDocPageTitle : "Paĝotitolo", +DlgDocLangDir : "Skribdirekto de la Lingvo", +DlgDocLangDirLTR : "De maldekstro dekstren (LTR)", +DlgDocLangDirRTL : "De dekstro maldekstren (LTR)", +DlgDocLangCode : "Lingvokodo", +DlgDocCharSet : "Signara Kodo", +DlgDocCharSetCE : "Central European", //MISSING +DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING +DlgDocCharSetCR : "Cyrillic", //MISSING +DlgDocCharSetGR : "Greek", //MISSING +DlgDocCharSetJP : "Japanese", //MISSING +DlgDocCharSetKR : "Korean", //MISSING +DlgDocCharSetTR : "Turkish", //MISSING +DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING +DlgDocCharSetWE : "Western European", //MISSING +DlgDocCharSetOther : "Alia Signara Kodo", + +DlgDocDocType : "Dokumenta Tipo", +DlgDocDocTypeOther : "Alia Dokumenta Tipo", +DlgDocIncXHTML : "Inkluzivi XHTML Deklaroj", +DlgDocBgColor : "Fona Koloro", +DlgDocBgImage : "URL de Fona Bildo", +DlgDocBgNoScroll : "Neruluma Fono", +DlgDocCText : "Teksto", +DlgDocCLink : "Ligilo", +DlgDocCVisited : "Vizitita Ligilo", +DlgDocCActive : "Aktiva Ligilo", +DlgDocMargins : "Paĝaj Marĝenoj", +DlgDocMaTop : "Supra", +DlgDocMaLeft : "Maldekstra", +DlgDocMaRight : "Dekstra", +DlgDocMaBottom : "Malsupra", +DlgDocMeIndex : "Ŝlosilvortoj de la Dokumento (apartigita de komoj)", +DlgDocMeDescr : "Dokumenta Priskribo", +DlgDocMeAuthor : "Verkinto", +DlgDocMeCopy : "Kopirajto", +DlgDocPreview : "Aspekto", + +// Templates Dialog +Templates : "Templates", //MISSING +DlgTemplatesTitle : "Content Templates", //MISSING +DlgTemplatesSelMsg : "Please select the template to open in the editor
(the actual contents will be lost):", //MISSING +DlgTemplatesLoading : "Loading templates list. Please wait...", //MISSING +DlgTemplatesNoTpl : "(No templates defined)", //MISSING +DlgTemplatesReplace : "Replace actual contents", //MISSING + +// About Dialog +DlgAboutAboutTab : "Pri", +DlgAboutBrowserInfoTab : "Informoj pri TTT-legilo", +DlgAboutLicenseTab : "License", //MISSING +DlgAboutVersion : "versio", +DlgAboutInfo : "Por pli da informoj, vizitu", + +// Div Dialog +DlgDivGeneralTab : "General", //MISSING +DlgDivAdvancedTab : "Advanced", //MISSING +DlgDivStyle : "Style", //MISSING +DlgDivInlineStyle : "Inline Style", //MISSING + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/es.js b/fckeditor/editor/lang/es.js new file mode 100644 index 0000000..d870dcd --- /dev/null +++ b/fckeditor/editor/lang/es.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * Spanish language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "Contraer Barra", +ToolbarExpand : "Expandir Barra", + +// Toolbar Items and Context Menu +Save : "Guardar", +NewPage : "Nueva Página", +Preview : "Vista Previa", +Cut : "Cortar", +Copy : "Copiar", +Paste : "Pegar", +PasteText : "Pegar como texto plano", +PasteWord : "Pegar desde Word", +Print : "Imprimir", +SelectAll : "Seleccionar Todo", +RemoveFormat : "Eliminar Formato", +InsertLinkLbl : "Vínculo", +InsertLink : "Insertar/Editar Vínculo", +RemoveLink : "Eliminar Vínculo", +VisitLink : "Abrir enlace", +Anchor : "Referencia", +AnchorDelete : "Eliminar Referencia", +InsertImageLbl : "Imagen", +InsertImage : "Insertar/Editar Imagen", +InsertFlashLbl : "Flash", +InsertFlash : "Insertar/Editar Flash", +InsertTableLbl : "Tabla", +InsertTable : "Insertar/Editar Tabla", +InsertLineLbl : "Línea", +InsertLine : "Insertar Línea Horizontal", +InsertSpecialCharLbl: "Caracter Especial", +InsertSpecialChar : "Insertar Caracter Especial", +InsertSmileyLbl : "Emoticons", +InsertSmiley : "Insertar Emoticons", +About : "Acerca de FCKeditor", +Bold : "Negrita", +Italic : "Cursiva", +Underline : "Subrayado", +StrikeThrough : "Tachado", +Subscript : "Subíndice", +Superscript : "Superíndice", +LeftJustify : "Alinear a Izquierda", +CenterJustify : "Centrar", +RightJustify : "Alinear a Derecha", +BlockJustify : "Justificado", +DecreaseIndent : "Disminuir Sangría", +IncreaseIndent : "Aumentar Sangría", +Blockquote : "Cita", +CreateDiv : "Crear contenedor (div)", +EditDiv : "Editar contenedor (div)", +DeleteDiv : "Eliminar contenedor (div)", +Undo : "Deshacer", +Redo : "Rehacer", +NumberedListLbl : "Numeración", +NumberedList : "Insertar/Eliminar Numeración", +BulletedListLbl : "Viñetas", +BulletedList : "Insertar/Eliminar Viñetas", +ShowTableBorders : "Mostrar Bordes de Tablas", +ShowDetails : "Mostrar saltos de Párrafo", +Style : "Estilo", +FontFormat : "Formato", +Font : "Fuente", +FontSize : "Tamaño", +TextColor : "Color de Texto", +BGColor : "Color de Fondo", +Source : "Fuente HTML", +Find : "Buscar", +Replace : "Reemplazar", +SpellCheck : "Ortografía", +UniversalKeyboard : "Teclado Universal", +PageBreakLbl : "Salto de Página", +PageBreak : "Insertar Salto de Página", + +Form : "Formulario", +Checkbox : "Casilla de Verificación", +RadioButton : "Botones de Radio", +TextField : "Campo de Texto", +Textarea : "Area de Texto", +HiddenField : "Campo Oculto", +Button : "Botón", +SelectionField : "Campo de Selección", +ImageButton : "Botón Imagen", + +FitWindow : "Maximizar el tamaño del editor", +ShowBlocks : "Mostrar bloques", + +// Context Menu +EditLink : "Editar Vínculo", +CellCM : "Celda", +RowCM : "Fila", +ColumnCM : "Columna", +InsertRowAfter : "Insertar fila en la parte inferior", +InsertRowBefore : "Insertar fila en la parte superior", +DeleteRows : "Eliminar Filas", +InsertColumnAfter : "Insertar columna a la derecha", +InsertColumnBefore : "Insertar columna a la izquierda", +DeleteColumns : "Eliminar Columnas", +InsertCellAfter : "Insertar celda a la derecha", +InsertCellBefore : "Insertar celda a la izquierda", +DeleteCells : "Eliminar Celdas", +MergeCells : "Combinar Celdas", +MergeRight : "Combinar a la derecha", +MergeDown : "Combinar hacia abajo", +HorizontalSplitCell : "Dividir la celda horizontalmente", +VerticalSplitCell : "Dividir la celda verticalmente", +TableDelete : "Eliminar Tabla", +CellProperties : "Propiedades de Celda", +TableProperties : "Propiedades de Tabla", +ImageProperties : "Propiedades de Imagen", +FlashProperties : "Propiedades de Flash", + +AnchorProp : "Propiedades de Referencia", +ButtonProp : "Propiedades de Botón", +CheckboxProp : "Propiedades de Casilla", +HiddenFieldProp : "Propiedades de Campo Oculto", +RadioButtonProp : "Propiedades de Botón de Radio", +ImageButtonProp : "Propiedades de Botón de Imagen", +TextFieldProp : "Propiedades de Campo de Texto", +SelectionFieldProp : "Propiedades de Campo de Selección", +TextareaProp : "Propiedades de Area de Texto", +FormProp : "Propiedades de Formulario", + +FontFormats : "Normal;Con formato;Dirección;Encabezado 1;Encabezado 2;Encabezado 3;Encabezado 4;Encabezado 5;Encabezado 6;Normal (DIV)", + +// Alerts and Messages +ProcessingXHTML : "Procesando XHTML. Por favor, espere...", +Done : "Hecho", +PasteWordConfirm : "El texto que desea parece provenir de Word. Desea depurarlo antes de pegarlo?", +NotCompatiblePaste : "Este comando está disponible sólo para Internet Explorer version 5.5 or superior. Desea pegar sin depurar?", +UnknownToolbarItem : "Item de barra desconocido \"%1\"", +UnknownCommand : "Nombre de comando desconocido \"%1\"", +NotImplemented : "Comando no implementado", +UnknownToolbarSet : "Nombre de barra \"%1\" no definido", +NoActiveX : "La configuración de las opciones de seguridad de su navegador puede estar limitando algunas características del editor. Por favor active la opción \"Ejecutar controles y complementos de ActiveX \", de lo contrario puede experimentar errores o ausencia de funcionalidades.", +BrowseServerBlocked : "La ventana de visualización del servidor no pudo ser abierta. Verifique que su navegador no esté bloqueando las ventanas emergentes (pop up).", +DialogBlocked : "No se ha podido abrir la ventana de diálogo. Verifique que su navegador no esté bloqueando las ventanas emergentes (pop up).", +VisitLinkBlocked : "Nose ha podido abrir la ventana. Asegurese de que todos los bloqueadores de popups están deshabilitados.", + +// Dialogs +DlgBtnOK : "OK", +DlgBtnCancel : "Cancelar", +DlgBtnClose : "Cerrar", +DlgBtnBrowseServer : "Ver Servidor", +DlgAdvancedTag : "Avanzado", +DlgOpOther : "", +DlgInfoTab : "Información", +DlgAlertUrl : "Inserte el URL", + +// General Dialogs Labels +DlgGenNotSet : "", +DlgGenId : "Id", +DlgGenLangDir : "Orientación", +DlgGenLangDirLtr : "Izquierda a Derecha (LTR)", +DlgGenLangDirRtl : "Derecha a Izquierda (RTL)", +DlgGenLangCode : "Cód. de idioma", +DlgGenAccessKey : "Clave de Acceso", +DlgGenName : "Nombre", +DlgGenTabIndex : "Indice de tabulación", +DlgGenLongDescr : "Descripción larga URL", +DlgGenClass : "Clases de hojas de estilo", +DlgGenTitle : "Título", +DlgGenContType : "Tipo de Contenido", +DlgGenLinkCharset : "Fuente de caracteres vinculado", +DlgGenStyle : "Estilo", + +// Image Dialog +DlgImgTitle : "Propiedades de Imagen", +DlgImgInfoTab : "Información de Imagen", +DlgImgBtnUpload : "Enviar al Servidor", +DlgImgURL : "URL", +DlgImgUpload : "Cargar", +DlgImgAlt : "Texto Alternativo", +DlgImgWidth : "Anchura", +DlgImgHeight : "Altura", +DlgImgLockRatio : "Proporcional", +DlgBtnResetSize : "Tamaño Original", +DlgImgBorder : "Borde", +DlgImgHSpace : "Esp.Horiz", +DlgImgVSpace : "Esp.Vert", +DlgImgAlign : "Alineación", +DlgImgAlignLeft : "Izquierda", +DlgImgAlignAbsBottom: "Abs inferior", +DlgImgAlignAbsMiddle: "Abs centro", +DlgImgAlignBaseline : "Línea de base", +DlgImgAlignBottom : "Pie", +DlgImgAlignMiddle : "Centro", +DlgImgAlignRight : "Derecha", +DlgImgAlignTextTop : "Tope del texto", +DlgImgAlignTop : "Tope", +DlgImgPreview : "Vista Previa", +DlgImgAlertUrl : "Por favor escriba la URL de la imagen", +DlgImgLinkTab : "Vínculo", + +// Flash Dialog +DlgFlashTitle : "Propiedades de Flash", +DlgFlashChkPlay : "Autoejecución", +DlgFlashChkLoop : "Repetir", +DlgFlashChkMenu : "Activar Menú Flash", +DlgFlashScale : "Escala", +DlgFlashScaleAll : "Mostrar todo", +DlgFlashScaleNoBorder : "Sin Borde", +DlgFlashScaleFit : "Ajustado", + +// Link Dialog +DlgLnkWindowTitle : "Vínculo", +DlgLnkInfoTab : "Información de Vínculo", +DlgLnkTargetTab : "Destino", + +DlgLnkType : "Tipo de vínculo", +DlgLnkTypeURL : "URL", +DlgLnkTypeAnchor : "Referencia en esta página", +DlgLnkTypeEMail : "E-Mail", +DlgLnkProto : "Protocolo", +DlgLnkProtoOther : "", +DlgLnkURL : "URL", +DlgLnkAnchorSel : "Seleccionar una referencia", +DlgLnkAnchorByName : "Por Nombre de Referencia", +DlgLnkAnchorById : "Por ID de elemento", +DlgLnkNoAnchors : "(No hay referencias disponibles en el documento)", +DlgLnkEMail : "Dirección de E-Mail", +DlgLnkEMailSubject : "Título del Mensaje", +DlgLnkEMailBody : "Cuerpo del Mensaje", +DlgLnkUpload : "Cargar", +DlgLnkBtnUpload : "Enviar al Servidor", + +DlgLnkTarget : "Destino", +DlgLnkTargetFrame : "", +DlgLnkTargetPopup : "", +DlgLnkTargetBlank : "Nueva Ventana(_blank)", +DlgLnkTargetParent : "Ventana Padre (_parent)", +DlgLnkTargetSelf : "Misma Ventana (_self)", +DlgLnkTargetTop : "Ventana primaria (_top)", +DlgLnkTargetFrameName : "Nombre del Marco Destino", +DlgLnkPopWinName : "Nombre de Ventana Emergente", +DlgLnkPopWinFeat : "Características de Ventana Emergente", +DlgLnkPopResize : "Ajustable", +DlgLnkPopLocation : "Barra de ubicación", +DlgLnkPopMenu : "Barra de Menú", +DlgLnkPopScroll : "Barras de desplazamiento", +DlgLnkPopStatus : "Barra de Estado", +DlgLnkPopToolbar : "Barra de Herramientas", +DlgLnkPopFullScrn : "Pantalla Completa (IE)", +DlgLnkPopDependent : "Dependiente (Netscape)", +DlgLnkPopWidth : "Anchura", +DlgLnkPopHeight : "Altura", +DlgLnkPopLeft : "Posición Izquierda", +DlgLnkPopTop : "Posición Derecha", + +DlnLnkMsgNoUrl : "Por favor tipee el vínculo URL", +DlnLnkMsgNoEMail : "Por favor tipee la dirección de e-mail", +DlnLnkMsgNoAnchor : "Por favor seleccione una referencia", +DlnLnkMsgInvPopName : "El nombre debe empezar con un caracter alfanumérico y no debe contener espacios", + +// Color Dialog +DlgColorTitle : "Seleccionar Color", +DlgColorBtnClear : "Ninguno", +DlgColorHighlight : "Resaltado", +DlgColorSelected : "Seleccionado", + +// Smiley Dialog +DlgSmileyTitle : "Insertar un Emoticon", + +// Special Character Dialog +DlgSpecialCharTitle : "Seleccione un caracter especial", + +// Table Dialog +DlgTableTitle : "Propiedades de Tabla", +DlgTableRows : "Filas", +DlgTableColumns : "Columnas", +DlgTableBorder : "Tamaño de Borde", +DlgTableAlign : "Alineación", +DlgTableAlignNotSet : "", +DlgTableAlignLeft : "Izquierda", +DlgTableAlignCenter : "Centrado", +DlgTableAlignRight : "Derecha", +DlgTableWidth : "Anchura", +DlgTableWidthPx : "pixeles", +DlgTableWidthPc : "porcentaje", +DlgTableHeight : "Altura", +DlgTableCellSpace : "Esp. e/celdas", +DlgTableCellPad : "Esp. interior", +DlgTableCaption : "Título", +DlgTableSummary : "Síntesis", +DlgTableHeaders : "Encabezados", +DlgTableHeadersNone : "Ninguno", +DlgTableHeadersColumn : "Primera columna", +DlgTableHeadersRow : "Primera fila", +DlgTableHeadersBoth : "Ambas", + +// Table Cell Dialog +DlgCellTitle : "Propiedades de Celda", +DlgCellWidth : "Anchura", +DlgCellWidthPx : "pixeles", +DlgCellWidthPc : "porcentaje", +DlgCellHeight : "Altura", +DlgCellWordWrap : "Cortar Línea", +DlgCellWordWrapNotSet : "", +DlgCellWordWrapYes : "Si", +DlgCellWordWrapNo : "No", +DlgCellHorAlign : "Alineación Horizontal", +DlgCellHorAlignNotSet : "", +DlgCellHorAlignLeft : "Izquierda", +DlgCellHorAlignCenter : "Centrado", +DlgCellHorAlignRight: "Derecha", +DlgCellVerAlign : "Alineación Vertical", +DlgCellVerAlignNotSet : "", +DlgCellVerAlignTop : "Tope", +DlgCellVerAlignMiddle : "Medio", +DlgCellVerAlignBottom : "ie", +DlgCellVerAlignBaseline : "Línea de Base", +DlgCellType : "Tipo de celda", +DlgCellTypeData : "Datos", +DlgCellTypeHeader : "Encabezado", +DlgCellRowSpan : "Abarcar Filas", +DlgCellCollSpan : "Abarcar Columnas", +DlgCellBackColor : "Color de Fondo", +DlgCellBorderColor : "Color de Borde", +DlgCellBtnSelect : "Seleccione...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "Buscar y Reemplazar", + +// Find Dialog +DlgFindTitle : "Buscar", +DlgFindFindBtn : "Buscar", +DlgFindNotFoundMsg : "El texto especificado no ha sido encontrado.", + +// Replace Dialog +DlgReplaceTitle : "Reemplazar", +DlgReplaceFindLbl : "Texto a buscar:", +DlgReplaceReplaceLbl : "Reemplazar con:", +DlgReplaceCaseChk : "Coincidir may/min", +DlgReplaceReplaceBtn : "Reemplazar", +DlgReplaceReplAllBtn : "Reemplazar Todo", +DlgReplaceWordChk : "Coincidir toda la palabra", + +// Paste Operations / Dialog +PasteErrorCut : "La configuración de seguridad de este navegador no permite la ejecución automática de operaciones de cortado. Por favor use el teclado (Ctrl+X).", +PasteErrorCopy : "La configuración de seguridad de este navegador no permite la ejecución automática de operaciones de copiado. Por favor use el teclado (Ctrl+C).", + +PasteAsText : "Pegar como Texto Plano", +PasteFromWord : "Pegar desde Word", + +DlgPasteMsg2 : "Por favor pegue dentro del cuadro utilizando el teclado (Ctrl+V); luego presione OK.", +DlgPasteSec : "Debido a la configuración de seguridad de su navegador, el editor no tiene acceso al portapapeles. Es necesario que lo pegue de nuevo en esta ventana.", +DlgPasteIgnoreFont : "Ignorar definiciones de fuentes", +DlgPasteRemoveStyles : "Remover definiciones de estilo", + +// Color Picker +ColorAutomatic : "Automático", +ColorMoreColors : "Más Colores...", + +// Document Properties +DocProps : "Propiedades del Documento", + +// Anchor Dialog +DlgAnchorTitle : "Propiedades de la Referencia", +DlgAnchorName : "Nombre de la Referencia", +DlgAnchorErrorName : "Por favor, complete el nombre de la Referencia", + +// Speller Pages Dialog +DlgSpellNotInDic : "No se encuentra en el Diccionario", +DlgSpellChangeTo : "Cambiar a", +DlgSpellBtnIgnore : "Ignorar", +DlgSpellBtnIgnoreAll : "Ignorar Todo", +DlgSpellBtnReplace : "Reemplazar", +DlgSpellBtnReplaceAll : "Reemplazar Todo", +DlgSpellBtnUndo : "Deshacer", +DlgSpellNoSuggestions : "- No hay sugerencias -", +DlgSpellProgress : "Control de Ortografía en progreso...", +DlgSpellNoMispell : "Control finalizado: no se encontraron errores", +DlgSpellNoChanges : "Control finalizado: no se ha cambiado ninguna palabra", +DlgSpellOneChange : "Control finalizado: se ha cambiado una palabra", +DlgSpellManyChanges : "Control finalizado: se ha cambiado %1 palabras", + +IeSpellDownload : "Módulo de Control de Ortografía no instalado. ¿Desea descargarlo ahora?", + +// Button Dialog +DlgButtonText : "Texto (Valor)", +DlgButtonType : "Tipo", +DlgButtonTypeBtn : "Boton", +DlgButtonTypeSbm : "Enviar", +DlgButtonTypeRst : "Reestablecer", + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "Nombre", +DlgCheckboxValue : "Valor", +DlgCheckboxSelected : "Seleccionado", + +// Form Dialog +DlgFormName : "Nombre", +DlgFormAction : "Acción", +DlgFormMethod : "Método", + +// Select Field Dialog +DlgSelectName : "Nombre", +DlgSelectValue : "Valor", +DlgSelectSize : "Tamaño", +DlgSelectLines : "Lineas", +DlgSelectChkMulti : "Permitir múltiple selección", +DlgSelectOpAvail : "Opciones disponibles", +DlgSelectOpText : "Texto", +DlgSelectOpValue : "Valor", +DlgSelectBtnAdd : "Agregar", +DlgSelectBtnModify : "Modificar", +DlgSelectBtnUp : "Subir", +DlgSelectBtnDown : "Bajar", +DlgSelectBtnSetValue : "Establecer como predeterminado", +DlgSelectBtnDelete : "Eliminar", + +// Textarea Dialog +DlgTextareaName : "Nombre", +DlgTextareaCols : "Columnas", +DlgTextareaRows : "Filas", + +// Text Field Dialog +DlgTextName : "Nombre", +DlgTextValue : "Valor", +DlgTextCharWidth : "Caracteres de ancho", +DlgTextMaxChars : "Máximo caracteres", +DlgTextType : "Tipo", +DlgTextTypeText : "Texto", +DlgTextTypePass : "Contraseña", + +// Hidden Field Dialog +DlgHiddenName : "Nombre", +DlgHiddenValue : "Valor", + +// Bulleted List Dialog +BulletedListProp : "Propiedades de Viñetas", +NumberedListProp : "Propiedades de Numeraciones", +DlgLstStart : "Inicio", +DlgLstType : "Tipo", +DlgLstTypeCircle : "Círculo", +DlgLstTypeDisc : "Disco", +DlgLstTypeSquare : "Cuadrado", +DlgLstTypeNumbers : "Números (1, 2, 3)", +DlgLstTypeLCase : "letras en minúsculas (a, b, c)", +DlgLstTypeUCase : "letras en mayúsculas (A, B, C)", +DlgLstTypeSRoman : "Números Romanos (i, ii, iii)", +DlgLstTypeLRoman : "Números Romanos (I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "General", +DlgDocBackTab : "Fondo", +DlgDocColorsTab : "Colores y Márgenes", +DlgDocMetaTab : "Meta Información", + +DlgDocPageTitle : "Título de Página", +DlgDocLangDir : "Orientación de idioma", +DlgDocLangDirLTR : "Izq. a Derecha (LTR)", +DlgDocLangDirRTL : "Der. a Izquierda (RTL)", +DlgDocLangCode : "Código de Idioma", +DlgDocCharSet : "Codif. de Conjunto de Caracteres", +DlgDocCharSetCE : "Centro Europeo", +DlgDocCharSetCT : "Chino Tradicional (Big5)", +DlgDocCharSetCR : "Cirílico", +DlgDocCharSetGR : "Griego", +DlgDocCharSetJP : "Japonés", +DlgDocCharSetKR : "Coreano", +DlgDocCharSetTR : "Turco", +DlgDocCharSetUN : "Unicode (UTF-8)", +DlgDocCharSetWE : "Europeo occidental", +DlgDocCharSetOther : "Otra Codificación", + +DlgDocDocType : "Encabezado de Tipo de Documento", +DlgDocDocTypeOther : "Otro Encabezado", +DlgDocIncXHTML : "Incluir Declaraciones XHTML", +DlgDocBgColor : "Color de Fondo", +DlgDocBgImage : "URL de Imagen de Fondo", +DlgDocBgNoScroll : "Fondo sin rolido", +DlgDocCText : "Texto", +DlgDocCLink : "Vínculo", +DlgDocCVisited : "Vínculo Visitado", +DlgDocCActive : "Vínculo Activo", +DlgDocMargins : "Márgenes de Página", +DlgDocMaTop : "Tope", +DlgDocMaLeft : "Izquierda", +DlgDocMaRight : "Derecha", +DlgDocMaBottom : "Pie", +DlgDocMeIndex : "Claves de indexación del Documento (separados por comas)", +DlgDocMeDescr : "Descripción del Documento", +DlgDocMeAuthor : "Autor", +DlgDocMeCopy : "Copyright", +DlgDocPreview : "Vista Previa", + +// Templates Dialog +Templates : "Plantillas", +DlgTemplatesTitle : "Contenido de Plantillas", +DlgTemplatesSelMsg : "Por favor selecciona la plantilla a abrir en el editor
(el contenido actual se perderá):", +DlgTemplatesLoading : "Cargando lista de Plantillas. Por favor, aguarde...", +DlgTemplatesNoTpl : "(No hay plantillas definidas)", +DlgTemplatesReplace : "Reemplazar el contenido actual", + +// About Dialog +DlgAboutAboutTab : "Acerca de", +DlgAboutBrowserInfoTab : "Información de Navegador", +DlgAboutLicenseTab : "Licencia", +DlgAboutVersion : "versión", +DlgAboutInfo : "Para mayor información por favor dirigirse a", + +// Div Dialog +DlgDivGeneralTab : "General", +DlgDivAdvancedTab : "Avanzado", +DlgDivStyle : "Estilo", +DlgDivInlineStyle : "Estilos CSS", + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/et.js b/fckeditor/editor/lang/et.js new file mode 100644 index 0000000..d45b474 --- /dev/null +++ b/fckeditor/editor/lang/et.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * Estonian language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "Voldi tööriistariba", +ToolbarExpand : "Laienda tööriistariba", + +// Toolbar Items and Context Menu +Save : "Salvesta", +NewPage : "Uus leht", +Preview : "Eelvaade", +Cut : "Lõika", +Copy : "Kopeeri", +Paste : "Kleebi", +PasteText : "Kleebi tavalise tekstina", +PasteWord : "Kleebi Wordist", +Print : "Prindi", +SelectAll : "Vali kõik", +RemoveFormat : "Eemalda vorming", +InsertLinkLbl : "Link", +InsertLink : "Sisesta link / Muuda linki", +RemoveLink : "Eemalda link", +VisitLink : "Open Link", //MISSING +Anchor : "Sisesta ankur / Muuda ankrut", +AnchorDelete : "Eemalda ankur", +InsertImageLbl : "Pilt", +InsertImage : "Sisesta pilt / Muuda pilti", +InsertFlashLbl : "Flash", +InsertFlash : "Sisesta flash / Muuda flashi", +InsertTableLbl : "Tabel", +InsertTable : "Sisesta tabel / Muuda tabelit", +InsertLineLbl : "Joon", +InsertLine : "Sisesta horisontaaljoon", +InsertSpecialCharLbl: "Erimärgid", +InsertSpecialChar : "Sisesta erimärk", +InsertSmileyLbl : "Emotikon", +InsertSmiley : "Sisesta emotikon", +About : "FCKeditor teave", +Bold : "Paks", +Italic : "Kursiiv", +Underline : "Allajoonitud", +StrikeThrough : "Läbijoonitud", +Subscript : "Allindeks", +Superscript : "Ülaindeks", +LeftJustify : "Vasakjoondus", +CenterJustify : "Keskjoondus", +RightJustify : "Paremjoondus", +BlockJustify : "Rööpjoondus", +DecreaseIndent : "Vähenda taanet", +IncreaseIndent : "Suurenda taanet", +Blockquote : "Blokktsitaat", +CreateDiv : "Create Div Container", //MISSING +EditDiv : "Edit Div Container", //MISSING +DeleteDiv : "Remove Div Container", //MISSING +Undo : "Võta tagasi", +Redo : "Korda toimingut", +NumberedListLbl : "Nummerdatud loetelu", +NumberedList : "Sisesta/Eemalda nummerdatud loetelu", +BulletedListLbl : "Punktiseeritud loetelu", +BulletedList : "Sisesta/Eemalda punktiseeritud loetelu", +ShowTableBorders : "Näita tabeli jooni", +ShowDetails : "Näita üksikasju", +Style : "Laad", +FontFormat : "Vorming", +Font : "Kiri", +FontSize : "Suurus", +TextColor : "Teksti värv", +BGColor : "Tausta värv", +Source : "Lähtekood", +Find : "Otsi", +Replace : "Asenda", +SpellCheck : "Kontrolli õigekirja", +UniversalKeyboard : "Universaalne klaviatuur", +PageBreakLbl : "Lehepiir", +PageBreak : "Sisesta lehevahetuskoht", + +Form : "Vorm", +Checkbox : "Märkeruut", +RadioButton : "Raadionupp", +TextField : "Tekstilahter", +Textarea : "Tekstiala", +HiddenField : "Varjatud lahter", +Button : "Nupp", +SelectionField : "Valiklahter", +ImageButton : "Piltnupp", + +FitWindow : "Maksimeeri redaktori mõõtmed", +ShowBlocks : "Näita blokke", + +// Context Menu +EditLink : "Muuda linki", +CellCM : "Lahter", +RowCM : "Rida", +ColumnCM : "Veerg", +InsertRowAfter : "Sisesta rida peale", +InsertRowBefore : "Sisesta rida enne", +DeleteRows : "Eemalda read", +InsertColumnAfter : "Sisesta veerg peale", +InsertColumnBefore : "Sisesta veerg enne", +DeleteColumns : "Eemalda veerud", +InsertCellAfter : "Sisesta lahter peale", +InsertCellBefore : "Sisesta lahter enne", +DeleteCells : "Eemalda lahtrid", +MergeCells : "Ühenda lahtrid", +MergeRight : "Ühenda paremale", +MergeDown : "Ühenda alla", +HorizontalSplitCell : "Poolita lahter horisontaalselt", +VerticalSplitCell : "Poolita lahter vertikaalselt", +TableDelete : "Kustuta tabel", +CellProperties : "Lahtri atribuudid", +TableProperties : "Tabeli atribuudid", +ImageProperties : "Pildi atribuudid", +FlashProperties : "Flash omadused", + +AnchorProp : "Ankru omadused", +ButtonProp : "Nupu omadused", +CheckboxProp : "Märkeruudu omadused", +HiddenFieldProp : "Varjatud lahtri omadused", +RadioButtonProp : "Raadionupu omadused", +ImageButtonProp : "Piltnupu omadused", +TextFieldProp : "Tekstilahtri omadused", +SelectionFieldProp : "Valiklahtri omadused", +TextareaProp : "Tekstiala omadused", +FormProp : "Vormi omadused", + +FontFormats : "Tavaline;Vormindatud;Aadress;Pealkiri 1;Pealkiri 2;Pealkiri 3;Pealkiri 4;Pealkiri 5;Pealkiri 6;Tavaline (DIV)", + +// Alerts and Messages +ProcessingXHTML : "Töötlen XHTML'i. Palun oota...", +Done : "Tehtud", +PasteWordConfirm : "Tekst, mida soovid lisada paistab pärinevat Word'ist. Kas soovid seda enne kleepimist puhastada?", +NotCompatiblePaste : "See käsk on saadaval ainult Internet Explorer versioon 5.5 või uuema puhul. Kas soovid kleepida ilma puhastamata?", +UnknownToolbarItem : "Tundmatu tööriistarea üksus \"%1\"", +UnknownCommand : "Tundmatu käsunimi \"%1\"", +NotImplemented : "Käsku ei täidetud", +UnknownToolbarSet : "Tööriistariba \"%1\" ei eksisteeri", +NoActiveX : "Sinu veebisirvija turvalisuse seaded võivad limiteerida mõningaid tekstirdaktori kasutusvõimalusi. Sa peaksid võimaldama valiku \"Run ActiveX controls and plug-ins\" oma veebisirvija seadetes. Muidu võid sa täheldada vigu tekstiredaktori töös ja märgata puuduvaid funktsioone.", +BrowseServerBlocked : "Ressursside sirvija avamine ebaõnnestus. Võimalda pop-up akende avanemine.", +DialogBlocked : "Ei olenud võimalik avada dialoogi akent. Võimalda pop-up akende avanemine.", +VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING + +// Dialogs +DlgBtnOK : "OK", +DlgBtnCancel : "Loobu", +DlgBtnClose : "Sulge", +DlgBtnBrowseServer : "Sirvi serverit", +DlgAdvancedTag : "Täpsemalt", +DlgOpOther : "", +DlgInfoTab : "Info", +DlgAlertUrl : "Palun sisesta URL", + +// General Dialogs Labels +DlgGenNotSet : "", +DlgGenId : "Id", +DlgGenLangDir : "Keele suund", +DlgGenLangDirLtr : "Vasakult paremale (LTR)", +DlgGenLangDirRtl : "Paremalt vasakule (RTL)", +DlgGenLangCode : "Keele kood", +DlgGenAccessKey : "Juurdepääsu võti", +DlgGenName : "Nimi", +DlgGenTabIndex : "Tab indeks", +DlgGenLongDescr : "Pikk kirjeldus URL", +DlgGenClass : "Stiilistiku klassid", +DlgGenTitle : "Juhendav tiitel", +DlgGenContType : "Juhendava sisu tüüp", +DlgGenLinkCharset : "Lingitud ressurssi märgistik", +DlgGenStyle : "Laad", + +// Image Dialog +DlgImgTitle : "Pildi atribuudid", +DlgImgInfoTab : "Pildi info", +DlgImgBtnUpload : "Saada serverissee", +DlgImgURL : "URL", +DlgImgUpload : "Lae üles", +DlgImgAlt : "Alternatiivne tekst", +DlgImgWidth : "Laius", +DlgImgHeight : "Kõrgus", +DlgImgLockRatio : "Lukusta kuvasuhe", +DlgBtnResetSize : "Lähtesta suurus", +DlgImgBorder : "Joon", +DlgImgHSpace : "H. vaheruum", +DlgImgVSpace : "V. vaheruum", +DlgImgAlign : "Joondus", +DlgImgAlignLeft : "Vasak", +DlgImgAlignAbsBottom: "Abs alla", +DlgImgAlignAbsMiddle: "Abs keskele", +DlgImgAlignBaseline : "Baasjoonele", +DlgImgAlignBottom : "Alla", +DlgImgAlignMiddle : "Keskele", +DlgImgAlignRight : "Paremale", +DlgImgAlignTextTop : "Tekstit üles", +DlgImgAlignTop : "Üles", +DlgImgPreview : "Eelvaade", +DlgImgAlertUrl : "Palun kirjuta pildi URL", +DlgImgLinkTab : "Link", + +// Flash Dialog +DlgFlashTitle : "Flash omadused", +DlgFlashChkPlay : "Automaatne start ", +DlgFlashChkLoop : "Korduv", +DlgFlashChkMenu : "Võimalda flash menüü", +DlgFlashScale : "Mastaap", +DlgFlashScaleAll : "Näita kõike", +DlgFlashScaleNoBorder : "Äärist ei ole", +DlgFlashScaleFit : "Täpne sobivus", + +// Link Dialog +DlgLnkWindowTitle : "Link", +DlgLnkInfoTab : "Lingi info", +DlgLnkTargetTab : "Sihtkoht", + +DlgLnkType : "Lingi tüüp", +DlgLnkTypeURL : "URL", +DlgLnkTypeAnchor : "Ankur sellel lehel", +DlgLnkTypeEMail : "E-post", +DlgLnkProto : "Protokoll", +DlgLnkProtoOther : "", +DlgLnkURL : "URL", +DlgLnkAnchorSel : "Vali ankur", +DlgLnkAnchorByName : "Ankru nime järgi", +DlgLnkAnchorById : "Elemendi id järgi", +DlgLnkNoAnchors : "(Selles dokumendis ei ole ankruid)", +DlgLnkEMail : "E-posti aadress", +DlgLnkEMailSubject : "Sõnumi teema", +DlgLnkEMailBody : "Sõnumi tekst", +DlgLnkUpload : "Lae üles", +DlgLnkBtnUpload : "Saada serverisse", + +DlgLnkTarget : "Sihtkoht", +DlgLnkTargetFrame : "", +DlgLnkTargetPopup : "", +DlgLnkTargetBlank : "Uus aken (_blank)", +DlgLnkTargetParent : "Esivanem aken (_parent)", +DlgLnkTargetSelf : "Sama aken (_self)", +DlgLnkTargetTop : "Pealmine aken (_top)", +DlgLnkTargetFrameName : "Sihtmärk raami nimi", +DlgLnkPopWinName : "Hüpikakna nimi", +DlgLnkPopWinFeat : "Hüpikakna omadused", +DlgLnkPopResize : "Suurendatav", +DlgLnkPopLocation : "Aadressiriba", +DlgLnkPopMenu : "Menüüriba", +DlgLnkPopScroll : "Kerimisribad", +DlgLnkPopStatus : "Olekuriba", +DlgLnkPopToolbar : "Tööriistariba", +DlgLnkPopFullScrn : "Täisekraan (IE)", +DlgLnkPopDependent : "Sõltuv (Netscape)", +DlgLnkPopWidth : "Laius", +DlgLnkPopHeight : "Kõrgus", +DlgLnkPopLeft : "Vasak asukoht", +DlgLnkPopTop : "Ülemine asukoht", + +DlnLnkMsgNoUrl : "Palun kirjuta lingi URL", +DlnLnkMsgNoEMail : "Palun kirjuta E-Posti aadress", +DlnLnkMsgNoAnchor : "Palun vali ankur", +DlnLnkMsgInvPopName : "Hüpikakna nimi peab algama alfabeetilise tähega ja ei tohi sisaldada tühikuid", + +// Color Dialog +DlgColorTitle : "Vali värv", +DlgColorBtnClear : "Tühjenda", +DlgColorHighlight : "Märgi", +DlgColorSelected : "Valitud", + +// Smiley Dialog +DlgSmileyTitle : "Sisesta emotikon", + +// Special Character Dialog +DlgSpecialCharTitle : "Vali erimärk", + +// Table Dialog +DlgTableTitle : "Tabeli atribuudid", +DlgTableRows : "Read", +DlgTableColumns : "Veerud", +DlgTableBorder : "Joone suurus", +DlgTableAlign : "Joondus", +DlgTableAlignNotSet : "", +DlgTableAlignLeft : "Vasak", +DlgTableAlignCenter : "Kesk", +DlgTableAlignRight : "Parem", +DlgTableWidth : "Laius", +DlgTableWidthPx : "pikslit", +DlgTableWidthPc : "protsenti", +DlgTableHeight : "Kõrgus", +DlgTableCellSpace : "Lahtri vahe", +DlgTableCellPad : "Lahtri täidis", +DlgTableCaption : "Tabeli tiitel", +DlgTableSummary : "Kokkuvõte", +DlgTableHeaders : "Headers", //MISSING +DlgTableHeadersNone : "None", //MISSING +DlgTableHeadersColumn : "First column", //MISSING +DlgTableHeadersRow : "First Row", //MISSING +DlgTableHeadersBoth : "Both", //MISSING + +// Table Cell Dialog +DlgCellTitle : "Lahtri atribuudid", +DlgCellWidth : "Laius", +DlgCellWidthPx : "pikslit", +DlgCellWidthPc : "protsenti", +DlgCellHeight : "Kõrgus", +DlgCellWordWrap : "Sõna ülekanne", +DlgCellWordWrapNotSet : "", +DlgCellWordWrapYes : "Jah", +DlgCellWordWrapNo : "Ei", +DlgCellHorAlign : "Horisontaaljoondus", +DlgCellHorAlignNotSet : "", +DlgCellHorAlignLeft : "Vasak", +DlgCellHorAlignCenter : "Kesk", +DlgCellHorAlignRight: "Parem", +DlgCellVerAlign : "Vertikaaljoondus", +DlgCellVerAlignNotSet : "", +DlgCellVerAlignTop : "Üles", +DlgCellVerAlignMiddle : "Keskele", +DlgCellVerAlignBottom : "Alla", +DlgCellVerAlignBaseline : "Baasjoonele", +DlgCellType : "Cell Type", //MISSING +DlgCellTypeData : "Data", //MISSING +DlgCellTypeHeader : "Header", //MISSING +DlgCellRowSpan : "Reaulatus", +DlgCellCollSpan : "Veeruulatus", +DlgCellBackColor : "Tausta värv", +DlgCellBorderColor : "Joone värv", +DlgCellBtnSelect : "Vali...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "Otsi ja asenda", + +// Find Dialog +DlgFindTitle : "Otsi", +DlgFindFindBtn : "Otsi", +DlgFindNotFoundMsg : "Valitud teksti ei leitud.", + +// Replace Dialog +DlgReplaceTitle : "Asenda", +DlgReplaceFindLbl : "Leia mida:", +DlgReplaceReplaceLbl : "Asenda millega:", +DlgReplaceCaseChk : "Erista suur- ja väiketähti", +DlgReplaceReplaceBtn : "Asenda", +DlgReplaceReplAllBtn : "Asenda kõik", +DlgReplaceWordChk : "Otsi terviklike sõnu", + +// Paste Operations / Dialog +PasteErrorCut : "Sinu veebisirvija turvaseaded ei luba redaktoril automaatselt lõigata. Palun kasutage selleks klaviatuuri klahvikombinatsiooni (Ctrl+X).", +PasteErrorCopy : "Sinu veebisirvija turvaseaded ei luba redaktoril automaatselt kopeerida. Palun kasutage selleks klaviatuuri klahvikombinatsiooni (Ctrl+C).", + +PasteAsText : "Kleebi tavalise tekstina", +PasteFromWord : "Kleebi Wordist", + +DlgPasteMsg2 : "Palun kleebi järgnevasse kasti kasutades klaviatuuri klahvikombinatsiooni (Ctrl+V) ja vajuta seejärel OK.", +DlgPasteSec : "Sinu veebisirvija turvaseadete tõttu, ei oma redaktor otsest ligipääsu lõikelaua andmetele. Sa pead kleepima need uuesti siia aknasse.", +DlgPasteIgnoreFont : "Ignoreeri kirja definitsioone", +DlgPasteRemoveStyles : "Eemalda stiilide definitsioonid", + +// Color Picker +ColorAutomatic : "Automaatne", +ColorMoreColors : "Rohkem värve...", + +// Document Properties +DocProps : "Dokumendi omadused", + +// Anchor Dialog +DlgAnchorTitle : "Ankru omadused", +DlgAnchorName : "Ankru nimi", +DlgAnchorErrorName : "Palun sisest ankru nimi", + +// Speller Pages Dialog +DlgSpellNotInDic : "Puudub sõnastikust", +DlgSpellChangeTo : "Muuda", +DlgSpellBtnIgnore : "Ignoreeri", +DlgSpellBtnIgnoreAll : "Ignoreeri kõiki", +DlgSpellBtnReplace : "Asenda", +DlgSpellBtnReplaceAll : "Asenda kõik", +DlgSpellBtnUndo : "Võta tagasi", +DlgSpellNoSuggestions : "- Soovitused puuduvad -", +DlgSpellProgress : "Toimub õigekirja kontroll...", +DlgSpellNoMispell : "Õigekirja kontroll sooritatud: õigekirjuvigu ei leitud", +DlgSpellNoChanges : "Õigekirja kontroll sooritatud: ühtegi sõna ei muudetud", +DlgSpellOneChange : "Õigekirja kontroll sooritatud: üks sõna muudeti", +DlgSpellManyChanges : "Õigekirja kontroll sooritatud: %1 sõna muudetud", + +IeSpellDownload : "Õigekirja kontrollija ei ole installeeritud. Soovid sa selle alla laadida?", + +// Button Dialog +DlgButtonText : "Tekst (väärtus)", +DlgButtonType : "Tüüp", +DlgButtonTypeBtn : "Nupp", +DlgButtonTypeSbm : "Saada", +DlgButtonTypeRst : "Lähtesta", + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "Nimi", +DlgCheckboxValue : "Väärtus", +DlgCheckboxSelected : "Valitud", + +// Form Dialog +DlgFormName : "Nimi", +DlgFormAction : "Toiming", +DlgFormMethod : "Meetod", + +// Select Field Dialog +DlgSelectName : "Nimi", +DlgSelectValue : "Väärtus", +DlgSelectSize : "Suurus", +DlgSelectLines : "ridu", +DlgSelectChkMulti : "Võimalda mitu valikut", +DlgSelectOpAvail : "Võimalikud valikud", +DlgSelectOpText : "Tekst", +DlgSelectOpValue : "Väärtus", +DlgSelectBtnAdd : "Lisa", +DlgSelectBtnModify : "Muuda", +DlgSelectBtnUp : "Üles", +DlgSelectBtnDown : "Alla", +DlgSelectBtnSetValue : "Sea valitud olekuna", +DlgSelectBtnDelete : "Kustuta", + +// Textarea Dialog +DlgTextareaName : "Nimi", +DlgTextareaCols : "Veerge", +DlgTextareaRows : "Ridu", + +// Text Field Dialog +DlgTextName : "Nimi", +DlgTextValue : "Väärtus", +DlgTextCharWidth : "Laius (tähemärkides)", +DlgTextMaxChars : "Maksimaalselt tähemärke", +DlgTextType : "Tüüp", +DlgTextTypeText : "Tekst", +DlgTextTypePass : "Parool", + +// Hidden Field Dialog +DlgHiddenName : "Nimi", +DlgHiddenValue : "Väärtus", + +// Bulleted List Dialog +BulletedListProp : "Täpitud loetelu omadused", +NumberedListProp : "Nummerdatud loetelu omadused", +DlgLstStart : "Alusta", +DlgLstType : "Tüüp", +DlgLstTypeCircle : "Ring", +DlgLstTypeDisc : "Ketas", +DlgLstTypeSquare : "Ruut", +DlgLstTypeNumbers : "Numbrid (1, 2, 3)", +DlgLstTypeLCase : "Väiketähed (a, b, c)", +DlgLstTypeUCase : "Suurtähed (A, B, C)", +DlgLstTypeSRoman : "Väiksed Rooma numbrid (i, ii, iii)", +DlgLstTypeLRoman : "Suured Rooma numbrid (I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "Üldine", +DlgDocBackTab : "Taust", +DlgDocColorsTab : "Värvid ja veerised", +DlgDocMetaTab : "Meta andmed", + +DlgDocPageTitle : "Lehekülje tiitel", +DlgDocLangDir : "Kirja suund", +DlgDocLangDirLTR : "Vasakult paremale (LTR)", +DlgDocLangDirRTL : "Paremalt vasakule (RTL)", +DlgDocLangCode : "Keele kood", +DlgDocCharSet : "Märgistiku kodeering", +DlgDocCharSetCE : "Kesk-Euroopa", +DlgDocCharSetCT : "Hiina traditsiooniline (Big5)", +DlgDocCharSetCR : "Kirillisa", +DlgDocCharSetGR : "Kreeka", +DlgDocCharSetJP : "Jaapani", +DlgDocCharSetKR : "Korea", +DlgDocCharSetTR : "Türgi", +DlgDocCharSetUN : "Unicode (UTF-8)", +DlgDocCharSetWE : "Lääne-Euroopa", +DlgDocCharSetOther : "Ülejäänud märgistike kodeeringud", + +DlgDocDocType : "Dokumendi tüüppäis", +DlgDocDocTypeOther : "Teised dokumendi tüüppäised", +DlgDocIncXHTML : "Arva kaasa XHTML deklaratsioonid", +DlgDocBgColor : "Taustavärv", +DlgDocBgImage : "Taustapildi URL", +DlgDocBgNoScroll : "Mittekeritav tagataust", +DlgDocCText : "Tekst", +DlgDocCLink : "Link", +DlgDocCVisited : "Külastatud link", +DlgDocCActive : "Aktiivne link", +DlgDocMargins : "Lehekülje äärised", +DlgDocMaTop : "Ülaserv", +DlgDocMaLeft : "Vasakserv", +DlgDocMaRight : "Paremserv", +DlgDocMaBottom : "Alaserv", +DlgDocMeIndex : "Dokumendi võtmesõnad (eraldatud komadega)", +DlgDocMeDescr : "Dokumendi kirjeldus", +DlgDocMeAuthor : "Autor", +DlgDocMeCopy : "Autoriõigus", +DlgDocPreview : "Eelvaade", + +// Templates Dialog +Templates : "Šabloon", +DlgTemplatesTitle : "Sisu šabloonid", +DlgTemplatesSelMsg : "Palun vali šabloon, et avada see redaktoris
(praegune sisu läheb kaotsi):", +DlgTemplatesLoading : "Laen šabloonide nimekirja. Palun oota...", +DlgTemplatesNoTpl : "(Ühtegi šablooni ei ole defineeritud)", +DlgTemplatesReplace : "Asenda tegelik sisu", + +// About Dialog +DlgAboutAboutTab : "Teave", +DlgAboutBrowserInfoTab : "Veebisirvija info", +DlgAboutLicenseTab : "Litsents", +DlgAboutVersion : "versioon", +DlgAboutInfo : "Täpsema info saamiseks mine", + +// Div Dialog +DlgDivGeneralTab : "General", //MISSING +DlgDivAdvancedTab : "Advanced", //MISSING +DlgDivStyle : "Style", //MISSING +DlgDivInlineStyle : "Inline Style", //MISSING + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/eu.js b/fckeditor/editor/lang/eu.js new file mode 100644 index 0000000..ac32b38 --- /dev/null +++ b/fckeditor/editor/lang/eu.js @@ -0,0 +1,540 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * Basque language file. + * Euskara hizkuntza fitxategia. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "Estutu Tresna Barra", +ToolbarExpand : "Hedatu Tresna Barra", + +// Toolbar Items and Context Menu +Save : "Gorde", +NewPage : "Orrialde Berria", +Preview : "Aurrebista", +Cut : "Ebaki", +Copy : "Kopiatu", +Paste : "Itsatsi", +PasteText : "Itsatsi testu bezala", +PasteWord : "Itsatsi Word-etik", +Print : "Inprimatu", +SelectAll : "Hautatu dena", +RemoveFormat : "Kendu Formatua", +InsertLinkLbl : "Esteka", +InsertLink : "Txertatu/Editatu Esteka", +RemoveLink : "Kendu Esteka", +VisitLink : "Ireki Esteka", +Anchor : "Aingura", +AnchorDelete : "Ezabatu Aingura", +InsertImageLbl : "Irudia", +InsertImage : "Txertatu/Editatu Irudia", +InsertFlashLbl : "Flasha", +InsertFlash : "Txertatu/Editatu Flasha", +InsertTableLbl : "Taula", +InsertTable : "Txertatu/Editatu Taula", +InsertLineLbl : "Lerroa", +InsertLine : "Txertatu Marra Horizontala", +InsertSpecialCharLbl: "Karaktere Berezia", +InsertSpecialChar : "Txertatu Karaktere Berezia", +InsertSmileyLbl : "Aurpegierak", +InsertSmiley : "Txertatu Aurpegierak", +About : "FCKeditor-ri buruz", +Bold : "Lodia", +Italic : "Etzana", +Underline : "Azpimarratu", +StrikeThrough : "Marratua", +Subscript : "Azpi-indize", +Superscript : "Goi-indize", +LeftJustify : "Lerrokatu Ezkerrean", +CenterJustify : "Lerrokatu Erdian", +RightJustify : "Lerrokatu Eskuman", +BlockJustify : "Justifikatu", +DecreaseIndent : "Txikitu Koska", +IncreaseIndent : "Handitu Koska", +Blockquote : "Aipamen blokea", +CreateDiv : "Sortu Div Edukitzailea", +EditDiv : "Editatu Div Edukitzailea", +DeleteDiv : "Ezabatu Div Edukitzailea", +Undo : "Desegin", +Redo : "Berregin", +NumberedListLbl : "Zenbakidun Zerrenda", +NumberedList : "Txertatu/Kendu Zenbakidun zerrenda", +BulletedListLbl : "Buletdun Zerrenda", +BulletedList : "Txertatu/Kendu Buletdun zerrenda", +ShowTableBorders : "Erakutsi Taularen Ertzak", +ShowDetails : "Erakutsi Xehetasunak", +Style : "Estiloa", +FontFormat : "Formatua", +Font : "Letra-tipoa", +FontSize : "Tamaina", +TextColor : "Testu Kolorea", +BGColor : "Atzeko kolorea", +Source : "HTML Iturburua", +Find : "Bilatu", +Replace : "Ordezkatu", +SpellCheck : "Ortografia", +UniversalKeyboard : "Teklatu Unibertsala", +PageBreakLbl : "Orrialde-jauzia", +PageBreak : "Txertatu Orrialde-jauzia", + +Form : "Formularioa", +Checkbox : "Kontrol-laukia", +RadioButton : "Aukera-botoia", +TextField : "Testu Eremua", +Textarea : "Testu-area", +HiddenField : "Ezkutuko Eremua", +Button : "Botoia", +SelectionField : "Hautespen Eremua", +ImageButton : "Irudi Botoia", + +FitWindow : "Maximizatu editorearen tamaina", +ShowBlocks : "Blokeak erakutsi", + +// Context Menu +EditLink : "Aldatu Esteka", +CellCM : "Gelaxka", +RowCM : "Errenkada", +ColumnCM : "Zutabea", +InsertRowAfter : "Txertatu Lerroa Ostean", +InsertRowBefore : "Txertatu Lerroa Aurretik", +DeleteRows : "Ezabatu Errenkadak", +InsertColumnAfter : "Txertatu Zutabea Ostean", +InsertColumnBefore : "Txertatu Zutabea Aurretik", +DeleteColumns : "Ezabatu Zutabeak", +InsertCellAfter : "Txertatu Gelaxka Ostean", +InsertCellBefore : "Txertatu Gelaxka Aurretik", +DeleteCells : "Kendu Gelaxkak", +MergeCells : "Batu Gelaxkak", +MergeRight : "Elkartu Eskumara", +MergeDown : "Elkartu Behera", +HorizontalSplitCell : "Banatu Gelaxkak Horizontalki", +VerticalSplitCell : "Banatu Gelaxkak Bertikalki", +TableDelete : "Ezabatu Taula", +CellProperties : "Gelaxkaren Ezaugarriak", +TableProperties : "Taularen Ezaugarriak", +ImageProperties : "Irudiaren Ezaugarriak", +FlashProperties : "Flasharen Ezaugarriak", + +AnchorProp : "Ainguraren Ezaugarriak", +ButtonProp : "Botoiaren Ezaugarriak", +CheckboxProp : "Kontrol-laukiko Ezaugarriak", +HiddenFieldProp : "Ezkutuko Eremuaren Ezaugarriak", +RadioButtonProp : "Aukera-botoiaren Ezaugarriak", +ImageButtonProp : "Irudi Botoiaren Ezaugarriak", +TextFieldProp : "Testu Eremuaren Ezaugarriak", +SelectionFieldProp : "Hautespen Eremuaren Ezaugarriak", +TextareaProp : "Testu-arearen Ezaugarriak", +FormProp : "Formularioaren Ezaugarriak", + +FontFormats : "Arrunta;Formateatua;Helbidea;Izenburua 1;Izenburua 2;Izenburua 3;Izenburua 4;Izenburua 5;Izenburua 6;Paragrafoa (DIV)", + +// Alerts and Messages +ProcessingXHTML : "XHTML Prozesatzen. Itxaron mesedez...", +Done : "Eginda", +PasteWordConfirm : "Itsatsi nahi duzun testua Wordetik hartua dela dirudi. Itsatsi baino lehen garbitu nahi duzu?", +NotCompatiblePaste : "Komando hau Internet Explorer 5.5 bertsiorako edo ondorengoentzako erabilgarria dago. Garbitu gabe itsatsi nahi duzu?", +UnknownToolbarItem : "Ataza barrako elementu ezezaguna \"%1\"", +UnknownCommand : "Komando izen ezezaguna \"%1\"", +NotImplemented : "Komando ez inplementatua", +UnknownToolbarSet : "Ataza barra \"%1\" taldea ez da existitzen", +NoActiveX : "Zure nabigatzailearen segurtasun hobespenak editore honen zenbait ezaugarri mugatu ditzake. \"ActiveX kontrolak eta pluginak\" aktibatu beharko zenituzke, bestela erroreak eta ezaugarrietan mugak egon daitezke.", +BrowseServerBlocked : "Baliabideen arakatzailea ezin da ireki. Ziurtatu popup blokeatzaileak desgaituta dituzula.", +DialogBlocked : "Ezin da elkarrizketa-leihoa ireki. Ziurtatu popup blokeatzaileak desgaituta dituzula.", +VisitLinkBlocked : "Ezin da leiho berri bat ireki. Ziurtatu popup blokeatzaileak desgaituta dituzula.", + +// Dialogs +DlgBtnOK : "Ados", +DlgBtnCancel : "Utzi", +DlgBtnClose : "Itxi", +DlgBtnBrowseServer : "Zerbitzaria arakatu", +DlgAdvancedTag : "Aurreratua", +DlgOpOther : "", +DlgInfoTab : "Informazioa", +DlgAlertUrl : "Mesedez URLa idatzi ezazu", + +// General Dialogs Labels +DlgGenNotSet : "", +DlgGenId : "Id", +DlgGenLangDir : "Hizkuntzaren Norabidea", +DlgGenLangDirLtr : "Ezkerretik Eskumara(LTR)", +DlgGenLangDirRtl : "Eskumatik Ezkerrera (RTL)", +DlgGenLangCode : "Hizkuntza Kodea", +DlgGenAccessKey : "Sarbide-gakoa", +DlgGenName : "Izena", +DlgGenTabIndex : "Tabulazio Indizea", +DlgGenLongDescr : "URL Deskribapen Luzea", +DlgGenClass : "Estilo-orriko Klaseak", +DlgGenTitle : "Izenburua", +DlgGenContType : "Eduki Mota (Content Type)", +DlgGenLinkCharset : "Estekatutako Karaktere Multzoa", +DlgGenStyle : "Estiloa", + +// Image Dialog +DlgImgTitle : "Irudi Ezaugarriak", +DlgImgInfoTab : "Irudi informazioa", +DlgImgBtnUpload : "Zerbitzarira bidalia", +DlgImgURL : "URL", +DlgImgUpload : "Gora Kargatu", +DlgImgAlt : "Ordezko Testua", +DlgImgWidth : "Zabalera", +DlgImgHeight : "Altuera", +DlgImgLockRatio : "Erlazioa Blokeatu", +DlgBtnResetSize : "Tamaina Berrezarri", +DlgImgBorder : "Ertza", +DlgImgHSpace : "HSpace", +DlgImgVSpace : "VSpace", +DlgImgAlign : "Lerrokatu", +DlgImgAlignLeft : "Ezkerrera", +DlgImgAlignAbsBottom: "Abs Behean", +DlgImgAlignAbsMiddle: "Abs Erdian", +DlgImgAlignBaseline : "Oinan", +DlgImgAlignBottom : "Behean", +DlgImgAlignMiddle : "Erdian", +DlgImgAlignRight : "Eskuman", +DlgImgAlignTextTop : "Testua Goian", +DlgImgAlignTop : "Goian", +DlgImgPreview : "Aurrebista", +DlgImgAlertUrl : "Mesedez Irudiaren URLa idatzi", +DlgImgLinkTab : "Esteka", + +// Flash Dialog +DlgFlashTitle : "Flasharen Ezaugarriak", +DlgFlashChkPlay : "Automatikoki Erreproduzitu", +DlgFlashChkLoop : "Begizta", +DlgFlashChkMenu : "Flasharen Menua Gaitu", +DlgFlashScale : "Eskalatu", +DlgFlashScaleAll : "Dena erakutsi", +DlgFlashScaleNoBorder : "Ertzik gabe", +DlgFlashScaleFit : "Doitu", + +// Link Dialog +DlgLnkWindowTitle : "Esteka", +DlgLnkInfoTab : "Estekaren Informazioa", +DlgLnkTargetTab : "Helburua", + +DlgLnkType : "Esteka Mota", +DlgLnkTypeURL : "URL", +DlgLnkTypeAnchor : "Aingura orrialde honetan", +DlgLnkTypeEMail : "ePosta", +DlgLnkProto : "Protokoloa", +DlgLnkProtoOther : "", +DlgLnkURL : "URL", +DlgLnkAnchorSel : "Aingura bat hautatu", +DlgLnkAnchorByName : "Aingura izenagatik", +DlgLnkAnchorById : "Elementuaren ID-gatik", +DlgLnkNoAnchors : "(Ez daude aingurak eskuragarri dokumentuan)", +DlgLnkEMail : "ePosta Helbidea", +DlgLnkEMailSubject : "Mezuaren Gaia", +DlgLnkEMailBody : "Mezuaren Gorputza", +DlgLnkUpload : "Gora kargatu", +DlgLnkBtnUpload : "Zerbitzarira bidali", + +DlgLnkTarget : "Target (Helburua)", +DlgLnkTargetFrame : "", +DlgLnkTargetPopup : "", +DlgLnkTargetBlank : "Leiho Berria (_blank)", +DlgLnkTargetParent : "Leiho Gurasoa (_parent)", +DlgLnkTargetSelf : "Leiho Berdina (_self)", +DlgLnkTargetTop : "Goiko Leihoa (_top)", +DlgLnkTargetFrameName : "Marko Helburuaren Izena", +DlgLnkPopWinName : "Popup Leihoaren Izena", +DlgLnkPopWinFeat : "Popup Leihoaren Ezaugarriak", +DlgLnkPopResize : "Tamaina Aldakorra", +DlgLnkPopLocation : "Kokaleku Barra", +DlgLnkPopMenu : "Menu Barra", +DlgLnkPopScroll : "Korritze Barrak", +DlgLnkPopStatus : "Egoera Barra", +DlgLnkPopToolbar : "Tresna Barra", +DlgLnkPopFullScrn : "Pantaila Osoa (IE)", +DlgLnkPopDependent : "Menpekoa (Netscape)", +DlgLnkPopWidth : "Zabalera", +DlgLnkPopHeight : "Altuera", +DlgLnkPopLeft : "Ezkerreko Posizioa", +DlgLnkPopTop : "Goiko Posizioa", + +DlnLnkMsgNoUrl : "Mesedez URL esteka idatzi", +DlnLnkMsgNoEMail : "Mesedez ePosta helbidea idatzi", +DlnLnkMsgNoAnchor : "Mesedez aingura bat aukeratu", +DlnLnkMsgInvPopName : "Popup leihoaren izenak karaktere alfabetiko batekin hasi behar du eta eta ezin du zuriunerik izan", + +// Color Dialog +DlgColorTitle : "Kolore Aukeraketa", +DlgColorBtnClear : "Garbitu", +DlgColorHighlight : "Nabarmendu", +DlgColorSelected : "Aukeratuta", + +// Smiley Dialog +DlgSmileyTitle : "Aurpegiera Sartu", + +// Special Character Dialog +DlgSpecialCharTitle : "Karaktere Berezia Aukeratu", + +// Table Dialog +DlgTableTitle : "Taularen Ezaugarriak", +DlgTableRows : "Lerroak", +DlgTableColumns : "Zutabeak", +DlgTableBorder : "Ertzaren Zabalera", +DlgTableAlign : "Lerrokatu", +DlgTableAlignNotSet : "", +DlgTableAlignLeft : "Ezkerrean", +DlgTableAlignCenter : "Erdian", +DlgTableAlignRight : "Eskuman", +DlgTableWidth : "Zabalera", +DlgTableWidthPx : "pixel", +DlgTableWidthPc : "ehuneko", +DlgTableHeight : "Altuera", +DlgTableCellSpace : "Gelaxka arteko tartea", +DlgTableCellPad : "Gelaxken betegarria", +DlgTableCaption : "Epigrafea", +DlgTableSummary : "Laburpena", +DlgTableHeaders : "Headers", //MISSING +DlgTableHeadersNone : "None", //MISSING +DlgTableHeadersColumn : "First column", //MISSING +DlgTableHeadersRow : "First Row", //MISSING +DlgTableHeadersBoth : "Both", //MISSING + +// Table Cell Dialog +DlgCellTitle : "Gelaxken Ezaugarriak", +DlgCellWidth : "Zabalera", +DlgCellWidthPx : "pixel", +DlgCellWidthPc : "ehuneko", +DlgCellHeight : "Altuera", +DlgCellWordWrap : "Itzulbira", +DlgCellWordWrapNotSet : "", +DlgCellWordWrapYes : "Bai", +DlgCellWordWrapNo : "Ez", +DlgCellHorAlign : "Lerrokatu Horizontalki", +DlgCellHorAlignNotSet : "", +DlgCellHorAlignLeft : "Ezkerrean", +DlgCellHorAlignCenter : "Erdian", +DlgCellHorAlignRight: "Eskuman", +DlgCellVerAlign : "Lerrokatu Bertikalki", +DlgCellVerAlignNotSet : "", +DlgCellVerAlignTop : "Goian", +DlgCellVerAlignMiddle : "Erdian", +DlgCellVerAlignBottom : "Behean", +DlgCellVerAlignBaseline : "Oinean", +DlgCellType : "Cell Type", //MISSING +DlgCellTypeData : "Data", //MISSING +DlgCellTypeHeader : "Header", //MISSING +DlgCellRowSpan : "Lerroak Hedatu", +DlgCellCollSpan : "Zutabeak Hedatu", +DlgCellBackColor : "Atzeko Kolorea", +DlgCellBorderColor : "Ertzako Kolorea", +DlgCellBtnSelect : "Aukeratu...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "Bilatu eta Ordeztu", + +// Find Dialog +DlgFindTitle : "Bilaketa", +DlgFindFindBtn : "Bilatu", +DlgFindNotFoundMsg : "Idatzitako testua ez da topatu.", + +// Replace Dialog +DlgReplaceTitle : "Ordeztu", +DlgReplaceFindLbl : "Zer bilatu:", +DlgReplaceReplaceLbl : "Zerekin ordeztu:", +DlgReplaceCaseChk : "Maiuskula/minuskula", +DlgReplaceReplaceBtn : "Ordeztu", +DlgReplaceReplAllBtn : "Ordeztu Guztiak", +DlgReplaceWordChk : "Esaldi osoa bilatu", + +// Paste Operations / Dialog +PasteErrorCut : "Zure web nabigatzailearen segurtasun ezarpenak testuak automatikoki moztea ez dute baimentzen. Mesedez teklatua erabili ezazu (Ctrl+X).", +PasteErrorCopy : "Zure web nabigatzailearen segurtasun ezarpenak testuak automatikoki kopiatzea ez dute baimentzen. Mesedez teklatua erabili ezazu (Ctrl+C).", + +PasteAsText : "Testu Arrunta bezala Itsatsi", +PasteFromWord : "Word-etik itsatsi", + +DlgPasteMsg2 : "Mesedez teklatua erabilita (Ctrl+V) ondorego eremuan testua itsatsi eta OK sakatu.", +DlgPasteSec : "Nabigatzailearen segurtasun ezarpenak direla eta, editoreak ezin du arbela zuzenean erabili. Leiho honetan berriro itsatsi behar duzu.", +DlgPasteIgnoreFont : "Letra Motaren definizioa ezikusi", +DlgPasteRemoveStyles : "Estilo definizioak kendu", + +// Color Picker +ColorAutomatic : "Automatikoa", +ColorMoreColors : "Kolore gehiago...", + +// Document Properties +DocProps : "Dokumentuaren Ezarpenak", + +// Anchor Dialog +DlgAnchorTitle : "Ainguraren Ezaugarriak", +DlgAnchorName : "Ainguraren Izena", +DlgAnchorErrorName : "Idatzi ainguraren izena", + +// Speller Pages Dialog +DlgSpellNotInDic : "Ez dago hiztegian", +DlgSpellChangeTo : "Honekin ordezkatu", +DlgSpellBtnIgnore : "Ezikusi", +DlgSpellBtnIgnoreAll : "Denak Ezikusi", +DlgSpellBtnReplace : "Ordezkatu", +DlgSpellBtnReplaceAll : "Denak Ordezkatu", +DlgSpellBtnUndo : "Desegin", +DlgSpellNoSuggestions : "- Iradokizunik ez -", +DlgSpellProgress : "Zuzenketa ortografikoa martxan...", +DlgSpellNoMispell : "Zuzenketa ortografikoa bukatuta: Akatsik ez", +DlgSpellNoChanges : "Zuzenketa ortografikoa bukatuta: Ez da ezer aldatu", +DlgSpellOneChange : "Zuzenketa ortografikoa bukatuta: Hitz bat aldatu da", +DlgSpellManyChanges : "Zuzenketa ortografikoa bukatuta: %1 hitz aldatu dira", + +IeSpellDownload : "Zuzentzaile ortografikoa ez dago instalatuta. Deskargatu nahi duzu?", + +// Button Dialog +DlgButtonText : "Testua (Balorea)", +DlgButtonType : "Mota", +DlgButtonTypeBtn : "Botoia", +DlgButtonTypeSbm : "Bidali", +DlgButtonTypeRst : "Garbitu", + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "Izena", +DlgCheckboxValue : "Balorea", +DlgCheckboxSelected : "Hautatuta", + +// Form Dialog +DlgFormName : "Izena", +DlgFormAction : "Ekintza", +DlgFormMethod : "Metodoa", + +// Select Field Dialog +DlgSelectName : "Izena", +DlgSelectValue : "Balorea", +DlgSelectSize : "Tamaina", +DlgSelectLines : "lerro kopurura", +DlgSelectChkMulti : "Hautaketa anitzak baimendu", +DlgSelectOpAvail : "Aukera Eskuragarriak", +DlgSelectOpText : "Testua", +DlgSelectOpValue : "Balorea", +DlgSelectBtnAdd : "Gehitu", +DlgSelectBtnModify : "Aldatu", +DlgSelectBtnUp : "Gora", +DlgSelectBtnDown : "Behera", +DlgSelectBtnSetValue : "Aukeratutako balorea ezarri", +DlgSelectBtnDelete : "Ezabatu", + +// Textarea Dialog +DlgTextareaName : "Izena", +DlgTextareaCols : "Zutabeak", +DlgTextareaRows : "Lerroak", + +// Text Field Dialog +DlgTextName : "Izena", +DlgTextValue : "Balorea", +DlgTextCharWidth : "Zabalera", +DlgTextMaxChars : "Zenbat karaktere gehienez", +DlgTextType : "Mota", +DlgTextTypeText : "Testua", +DlgTextTypePass : "Pasahitza", + +// Hidden Field Dialog +DlgHiddenName : "Izena", +DlgHiddenValue : "Balorea", + +// Bulleted List Dialog +BulletedListProp : "Buletdun Zerrendaren Ezarpenak", +NumberedListProp : "Zenbakidun Zerrendaren Ezarpenak", +DlgLstStart : "Hasiera", +DlgLstType : "Mota", +DlgLstTypeCircle : "Zirkulua", +DlgLstTypeDisc : "Diskoa", +DlgLstTypeSquare : "Karratua", +DlgLstTypeNumbers : "Zenbakiak (1, 2, 3)", +DlgLstTypeLCase : "Letra xeheak (a, b, c)", +DlgLstTypeUCase : "Letra larriak (A, B, C)", +DlgLstTypeSRoman : "Erromatar zenbaki zeheak (i, ii, iii)", +DlgLstTypeLRoman : "Erromatar zenbaki larriak (I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "Orokorra", +DlgDocBackTab : "Atzealdea", +DlgDocColorsTab : "Koloreak eta Marjinak", +DlgDocMetaTab : "Meta Informazioa", + +DlgDocPageTitle : "Orriaren Izenburua", +DlgDocLangDir : "Hizkuntzaren Norabidea", +DlgDocLangDirLTR : "Ezkerretik eskumara (LTR)", +DlgDocLangDirRTL : "Eskumatik ezkerrera (RTL)", +DlgDocLangCode : "Hizkuntzaren Kodea", +DlgDocCharSet : "Karaktere Multzoaren Kodeketa", +DlgDocCharSetCE : "Erdialdeko Europakoa", +DlgDocCharSetCT : "Txinatar Tradizionala (Big5)", +DlgDocCharSetCR : "Zirilikoa", +DlgDocCharSetGR : "Grekoa", +DlgDocCharSetJP : "Japoniarra", +DlgDocCharSetKR : "Korearra", +DlgDocCharSetTR : "Turkiarra", +DlgDocCharSetUN : "Unicode (UTF-8)", +DlgDocCharSetWE : "Mendebaldeko Europakoa", +DlgDocCharSetOther : "Beste Karaktere Multzoko Kodeketa", + +DlgDocDocType : "Document Type Goiburua", +DlgDocDocTypeOther : "Beste Document Type Goiburua", +DlgDocIncXHTML : "XHTML Ezarpenak", +DlgDocBgColor : "Atzeko Kolorea", +DlgDocBgImage : "Atzeko Irudiaren URL-a", +DlgDocBgNoScroll : "Korritze gabeko Atzealdea", +DlgDocCText : "Testua", +DlgDocCLink : "Estekak", +DlgDocCVisited : "Bisitatutako Estekak", +DlgDocCActive : "Esteka Aktiboa", +DlgDocMargins : "Orrialdearen marjinak", +DlgDocMaTop : "Goian", +DlgDocMaLeft : "Ezkerrean", +DlgDocMaRight : "Eskuman", +DlgDocMaBottom : "Behean", +DlgDocMeIndex : "Dokumentuaren Gako-hitzak (komarekin bananduta)", +DlgDocMeDescr : "Dokumentuaren Deskribapena", +DlgDocMeAuthor : "Egilea", +DlgDocMeCopy : "Copyright", +DlgDocPreview : "Aurrebista", + +// Templates Dialog +Templates : "Txantiloiak", +DlgTemplatesTitle : "Eduki Txantiloiak", +DlgTemplatesSelMsg : "Mesedez txantiloia aukeratu editorean kargatzeko
(orain dauden edukiak galduko dira):", +DlgTemplatesLoading : "Txantiloiak kargatzen. Itxaron mesedez...", +DlgTemplatesNoTpl : "(Ez dago definitutako txantiloirik)", +DlgTemplatesReplace : "Ordeztu oraingo edukiak", + +// About Dialog +DlgAboutAboutTab : "Honi buruz", +DlgAboutBrowserInfoTab : "Nabigatzailearen Informazioa", +DlgAboutLicenseTab : "Lizentzia", +DlgAboutVersion : "bertsioa", +DlgAboutInfo : "Informazio gehiago eskuratzeko hona joan", + +// Div Dialog +DlgDivGeneralTab : "Orokorra", +DlgDivAdvancedTab : "Aurreratua", +DlgDivStyle : "Estiloa", +DlgDivInlineStyle : "Inline Estiloa", + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/fa.js b/fckeditor/editor/lang/fa.js new file mode 100644 index 0000000..6811555 --- /dev/null +++ b/fckeditor/editor/lang/fa.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * Persian language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "rtl", + +ToolbarCollapse : "برچیدن نوارابزار", +ToolbarExpand : "گستردن نوارابزار", + +// Toolbar Items and Context Menu +Save : "ذخیره", +NewPage : "برگهٴ تازه", +Preview : "پیش‌نمایش", +Cut : "برش", +Copy : "کپی", +Paste : "چسباندن", +PasteText : "چسباندن به عنوان متن ِساده", +PasteWord : "چسباندن از Word", +Print : "چاپ", +SelectAll : "گزینش همه", +RemoveFormat : "برداشتن فرمت", +InsertLinkLbl : "پیوند", +InsertLink : "گنجاندن/ویرایش ِپیوند", +RemoveLink : "برداشتن پیوند", +VisitLink : "باز کردن پیوند", +Anchor : "گنجاندن/ویرایش ِلنگر", +AnchorDelete : "برداشتن لنگر", +InsertImageLbl : "تصویر", +InsertImage : "گنجاندن/ویرایش ِتصویر", +InsertFlashLbl : "Flash", +InsertFlash : "گنجاندن/ویرایش ِFlash", +InsertTableLbl : "جدول", +InsertTable : "گنجاندن/ویرایش ِجدول", +InsertLineLbl : "خط", +InsertLine : "گنجاندن خط ِافقی", +InsertSpecialCharLbl: "نویسهٴ ویژه", +InsertSpecialChar : "گنجاندن نویسهٴ ویژه", +InsertSmileyLbl : "خندانک", +InsertSmiley : "گنجاندن خندانک", +About : "دربارهٴ FCKeditor", +Bold : "درشت", +Italic : "خمیده", +Underline : "خط‌زیردار", +StrikeThrough : "میان‌خط", +Subscript : "زیرنویس", +Superscript : "بالانویس", +LeftJustify : "چپ‌چین", +CenterJustify : "میان‌چین", +RightJustify : "راست‌چین", +BlockJustify : "بلوک‌چین", +DecreaseIndent : "کاهش تورفتگی", +IncreaseIndent : "افزایش تورفتگی", +Blockquote : "بلوک نقل قول", +CreateDiv : "Create Div Container", //MISSING +EditDiv : "Edit Div Container", //MISSING +DeleteDiv : "Remove Div Container", //MISSING +Undo : "واچیدن", +Redo : "بازچیدن", +NumberedListLbl : "فهرست شماره‌دار", +NumberedList : "گنجاندن/برداشتن فهرست شماره‌دار", +BulletedListLbl : "فهرست نقطه‌ای", +BulletedList : "گنجاندن/برداشتن فهرست نقطه‌ای", +ShowTableBorders : "نمایش لبهٴ جدول", +ShowDetails : "نمایش جزئیات", +Style : "سبک", +FontFormat : "فرمت", +Font : "قلم", +FontSize : "اندازه", +TextColor : "رنگ متن", +BGColor : "رنگ پس‌زمینه", +Source : "منبع", +Find : "جستجو", +Replace : "جایگزینی", +SpellCheck : "بررسی املا", +UniversalKeyboard : "صفحه‌کلید جهانی", +PageBreakLbl : "شکستگی ِپایان ِبرگه", +PageBreak : "گنجاندن شکستگی ِپایان ِبرگه", + +Form : "فرم", +Checkbox : "خانهٴ گزینه‌ای", +RadioButton : "دکمهٴ رادیویی", +TextField : "فیلد متنی", +Textarea : "ناحیهٴ متنی", +HiddenField : "فیلد پنهان", +Button : "دکمه", +SelectionField : "فیلد چندگزینه‌ای", +ImageButton : "دکمهٴ تصویری", + +FitWindow : "بیشینه‌سازی ِاندازهٴ ویرایشگر", +ShowBlocks : "نمایش بلوک‌ها", + +// Context Menu +EditLink : "ویرایش پیوند", +CellCM : "سلول", +RowCM : "سطر", +ColumnCM : "ستون", +InsertRowAfter : "افزودن سطر بعد از", +InsertRowBefore : "افزودن سطر قبل از", +DeleteRows : "حذف سطرها", +InsertColumnAfter : "افزودن ستون بعد از", +InsertColumnBefore : "افزودن ستون قبل از", +DeleteColumns : "حذف ستونها", +InsertCellAfter : "افزودن سلول بعد از", +InsertCellBefore : "افزودن سلول قبل از", +DeleteCells : "حذف سلولها", +MergeCells : "ادغام سلولها", +MergeRight : "ادغام به راست", +MergeDown : "ادغام به پایین", +HorizontalSplitCell : "جدا کردن افقی سلول", +VerticalSplitCell : "جدا کردن عمودی سلول", +TableDelete : "پاک‌کردن جدول", +CellProperties : "ویژگیهای سلول", +TableProperties : "ویژگیهای جدول", +ImageProperties : "ویژگیهای تصویر", +FlashProperties : "ویژگیهای Flash", + +AnchorProp : "ویژگیهای لنگر", +ButtonProp : "ویژگیهای دکمه", +CheckboxProp : "ویژگیهای خانهٴ گزینه‌ای", +HiddenFieldProp : "ویژگیهای فیلد پنهان", +RadioButtonProp : "ویژگیهای دکمهٴ رادیویی", +ImageButtonProp : "ویژگیهای دکمهٴ تصویری", +TextFieldProp : "ویژگیهای فیلد متنی", +SelectionFieldProp : "ویژگیهای فیلد چندگزینه‌ای", +TextareaProp : "ویژگیهای ناحیهٴ متنی", +FormProp : "ویژگیهای فرم", + +FontFormats : "نرمال;فرمت‌شده;آدرس;سرنویس 1;سرنویس 2;سرنویس 3;سرنویس 4;سرنویس 5;سرنویس 6;بند;(DIV)", + +// Alerts and Messages +ProcessingXHTML : "پردازش XHTML. لطفا صبر کنید...", +Done : "انجام شد", +PasteWordConfirm : "متنی که می‌خواهید بچسبانید به نظر می‌رسد از Word کپی شده است. آیا می‌خواهید قبل از چسباندن آن را پاک‌سازی کنید؟", +NotCompatiblePaste : "این فرمان برای مرورگر Internet Explorer از نگارش 5.5 یا بالاتر در دسترس است. آیا می‌خواهید بدون پاک‌سازی، متن را بچسبانید؟", +UnknownToolbarItem : "فقرهٴ نوارابزار ناشناخته \"%1\"", +UnknownCommand : "نام دستور ناشناخته \"%1\"", +NotImplemented : "دستور پیاده‌سازی‌نشده", +UnknownToolbarSet : "مجموعهٴ نوارابزار \"%1\" وجود ندارد", +NoActiveX : "تنظیمات امنیتی مرورگر شما ممکن است در بعضی از ویژگیهای مرورگر محدودیت ایجاد کند. شما باید گزینهٴ \"Run ActiveX controls and plug-ins\" را فعال کنید. ممکن است شما با خطاهایی روبرو باشید و متوجه کمبود ویژگیهایی شوید.", +BrowseServerBlocked : "توانایی بازگشایی مرورگر منابع فراهم نیست. اطمینان حاصل کنید که تمامی برنامه‌های پیشگیری از نمایش popup را از کار بازداشته‌اید.", +DialogBlocked : "توانایی بازگشایی پنجرهٴ کوچک ِگفتگو فراهم نیست. اطمینان حاصل کنید که تمامی برنامه‌های پیشگیری از نمایش popup را از کار بازداشته‌اید.", +VisitLinkBlocked : "امکان بازکردن یک پنجره جدید نیست. اطمینان حاصل کنید که تمامی برنامه‌های پیشگیری از نمایش popup را از کار بازداشته‌اید.", + +// Dialogs +DlgBtnOK : "پذیرش", +DlgBtnCancel : "انصراف", +DlgBtnClose : "بستن", +DlgBtnBrowseServer : "فهرست‌نمایی سرور", +DlgAdvancedTag : "پیشرفته", +DlgOpOther : "<غیره>", +DlgInfoTab : "اطلاعات", +DlgAlertUrl : "لطفاً URL را بنویسید", + +// General Dialogs Labels +DlgGenNotSet : "<تعین‌نشده>", +DlgGenId : "شناسه", +DlgGenLangDir : "جهت‌نمای زبان", +DlgGenLangDirLtr : "چپ به راست (LTR)", +DlgGenLangDirRtl : "راست به چپ (RTL)", +DlgGenLangCode : "کد زبان", +DlgGenAccessKey : "کلید دستیابی", +DlgGenName : "نام", +DlgGenTabIndex : "نمایهٴ دسترسی با Tab", +DlgGenLongDescr : "URL توصیف طولانی", +DlgGenClass : "کلاسهای شیوه‌نامه(Stylesheet)", +DlgGenTitle : "عنوان کمکی", +DlgGenContType : "نوع محتوای کمکی", +DlgGenLinkCharset : "نویسه‌گان منبع ِپیوندشده", +DlgGenStyle : "شیوه(style)", + +// Image Dialog +DlgImgTitle : "ویژگیهای تصویر", +DlgImgInfoTab : "اطلاعات تصویر", +DlgImgBtnUpload : "به سرور بفرست", +DlgImgURL : "URL", +DlgImgUpload : "انتقال به سرور", +DlgImgAlt : "متن جایگزین", +DlgImgWidth : "پهنا", +DlgImgHeight : "درازا", +DlgImgLockRatio : "قفل‌کردن ِنسبت", +DlgBtnResetSize : "بازنشانی اندازه", +DlgImgBorder : "لبه", +DlgImgHSpace : "فاصلهٴ افقی", +DlgImgVSpace : "فاصلهٴ عمودی", +DlgImgAlign : "چینش", +DlgImgAlignLeft : "چپ", +DlgImgAlignAbsBottom: "پائین مطلق", +DlgImgAlignAbsMiddle: "وسط مطلق", +DlgImgAlignBaseline : "خط‌پایه", +DlgImgAlignBottom : "پائین", +DlgImgAlignMiddle : "وسط", +DlgImgAlignRight : "راست", +DlgImgAlignTextTop : "متن بالا", +DlgImgAlignTop : "بالا", +DlgImgPreview : "پیش‌نمایش", +DlgImgAlertUrl : "لطفا URL تصویر را بنویسید", +DlgImgLinkTab : "پیوند", + +// Flash Dialog +DlgFlashTitle : "ویژگیهای Flash", +DlgFlashChkPlay : "آغاز ِخودکار", +DlgFlashChkLoop : "اجرای پیاپی", +DlgFlashChkMenu : "دردسترس‌بودن منوی Flash", +DlgFlashScale : "مقیاس", +DlgFlashScaleAll : "نمایش همه", +DlgFlashScaleNoBorder : "بدون کران", +DlgFlashScaleFit : "جایگیری کامل", + +// Link Dialog +DlgLnkWindowTitle : "پیوند", +DlgLnkInfoTab : "اطلاعات پیوند", +DlgLnkTargetTab : "مقصد", + +DlgLnkType : "نوع پیوند", +DlgLnkTypeURL : "URL", +DlgLnkTypeAnchor : "لنگر در همین صفحه", +DlgLnkTypeEMail : "پست الکترونیکی", +DlgLnkProto : "پروتکل", +DlgLnkProtoOther : "<دیگر>", +DlgLnkURL : "URL", +DlgLnkAnchorSel : "یک لنگر برگزینید", +DlgLnkAnchorByName : "با نام لنگر", +DlgLnkAnchorById : "با شناسهٴ المان", +DlgLnkNoAnchors : "(در این سند لنگری دردسترس نیست)", +DlgLnkEMail : "نشانی پست الکترونیکی", +DlgLnkEMailSubject : "موضوع پیام", +DlgLnkEMailBody : "متن پیام", +DlgLnkUpload : "انتقال به سرور", +DlgLnkBtnUpload : "به سرور بفرست", + +DlgLnkTarget : "مقصد", +DlgLnkTargetFrame : "<فریم>", +DlgLnkTargetPopup : "<پنجرهٴ پاپاپ>", +DlgLnkTargetBlank : "پنجرهٴ دیگر (_blank)", +DlgLnkTargetParent : "پنجرهٴ والد (_parent)", +DlgLnkTargetSelf : "همان پنجره (_self)", +DlgLnkTargetTop : "بالاترین پنجره (_top)", +DlgLnkTargetFrameName : "نام فریم مقصد", +DlgLnkPopWinName : "نام پنجرهٴ پاپاپ", +DlgLnkPopWinFeat : "ویژگیهای پنجرهٴ پاپاپ", +DlgLnkPopResize : "قابل تغییر اندازه", +DlgLnkPopLocation : "نوار موقعیت", +DlgLnkPopMenu : "نوار منو", +DlgLnkPopScroll : "میله‌های پیمایش", +DlgLnkPopStatus : "نوار وضعیت", +DlgLnkPopToolbar : "نوارابزار", +DlgLnkPopFullScrn : "تمام‌صفحه (IE)", +DlgLnkPopDependent : "وابسته (Netscape)", +DlgLnkPopWidth : "پهنا", +DlgLnkPopHeight : "درازا", +DlgLnkPopLeft : "موقعیت ِچپ", +DlgLnkPopTop : "موقعیت ِبالا", + +DlnLnkMsgNoUrl : "لطفا URL پیوند را بنویسید", +DlnLnkMsgNoEMail : "لطفا نشانی پست الکترونیکی را بنویسید", +DlnLnkMsgNoAnchor : "لطفا لنگری را برگزینید", +DlnLnkMsgInvPopName : "نام پنجرهٴ پاپاپ باید با یک نویسهٴ الفبایی آغاز گردد و نباید فاصله‌های خالی در آن باشند", + +// Color Dialog +DlgColorTitle : "گزینش رنگ", +DlgColorBtnClear : "پاک‌کردن", +DlgColorHighlight : "نمونه", +DlgColorSelected : "برگزیده", + +// Smiley Dialog +DlgSmileyTitle : "گنجاندن خندانک", + +// Special Character Dialog +DlgSpecialCharTitle : "گزینش نویسهٴ‌ویژه", + +// Table Dialog +DlgTableTitle : "ویژگیهای جدول", +DlgTableRows : "سطرها", +DlgTableColumns : "ستونها", +DlgTableBorder : "اندازهٴ لبه", +DlgTableAlign : "چینش", +DlgTableAlignNotSet : "<تعین‌نشده>", +DlgTableAlignLeft : "چپ", +DlgTableAlignCenter : "وسط", +DlgTableAlignRight : "راست", +DlgTableWidth : "پهنا", +DlgTableWidthPx : "پیکسل", +DlgTableWidthPc : "درصد", +DlgTableHeight : "درازا", +DlgTableCellSpace : "فاصلهٴ میان سلولها", +DlgTableCellPad : "فاصلهٴ پرشده در سلول", +DlgTableCaption : "عنوان", +DlgTableSummary : "خلاصه", +DlgTableHeaders : "Headers", //MISSING +DlgTableHeadersNone : "None", //MISSING +DlgTableHeadersColumn : "First column", //MISSING +DlgTableHeadersRow : "First Row", //MISSING +DlgTableHeadersBoth : "Both", //MISSING + +// Table Cell Dialog +DlgCellTitle : "ویژگیهای سلول", +DlgCellWidth : "پهنا", +DlgCellWidthPx : "پیکسل", +DlgCellWidthPc : "درصد", +DlgCellHeight : "درازا", +DlgCellWordWrap : "شکستن واژه‌ها", +DlgCellWordWrapNotSet : "<تعین‌نشده>", +DlgCellWordWrapYes : "بله", +DlgCellWordWrapNo : "خیر", +DlgCellHorAlign : "چینش ِافقی", +DlgCellHorAlignNotSet : "<تعین‌نشده>", +DlgCellHorAlignLeft : "چپ", +DlgCellHorAlignCenter : "وسط", +DlgCellHorAlignRight: "راست", +DlgCellVerAlign : "چینش ِعمودی", +DlgCellVerAlignNotSet : "<تعین‌نشده>", +DlgCellVerAlignTop : "بالا", +DlgCellVerAlignMiddle : "میان", +DlgCellVerAlignBottom : "پائین", +DlgCellVerAlignBaseline : "خط‌پایه", +DlgCellType : "Cell Type", //MISSING +DlgCellTypeData : "Data", //MISSING +DlgCellTypeHeader : "Header", //MISSING +DlgCellRowSpan : "گستردگی سطرها", +DlgCellCollSpan : "گستردگی ستونها", +DlgCellBackColor : "رنگ پس‌زمینه", +DlgCellBorderColor : "رنگ لبه", +DlgCellBtnSelect : "برگزینید...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "جستجو و جایگزینی", + +// Find Dialog +DlgFindTitle : "یافتن", +DlgFindFindBtn : "یافتن", +DlgFindNotFoundMsg : "متن موردنظر یافت نشد.", + +// Replace Dialog +DlgReplaceTitle : "جایگزینی", +DlgReplaceFindLbl : "چه‌چیز را می‌یابید:", +DlgReplaceReplaceLbl : "جایگزینی با:", +DlgReplaceCaseChk : "همسانی در بزرگی و کوچکی نویسه‌ها", +DlgReplaceReplaceBtn : "جایگزینی", +DlgReplaceReplAllBtn : "جایگزینی همهٴ یافته‌ها", +DlgReplaceWordChk : "همسانی با واژهٴ کامل", + +// Paste Operations / Dialog +PasteErrorCut : "تنظیمات امنیتی مرورگر شما اجازه نمی‌دهد که ویرایشگر به طور خودکار عملکردهای برش را انجام دهد. لطفا با دکمه‌های صفحه‌کلید این کار را انجام دهید (Ctrl+X).", +PasteErrorCopy : "تنظیمات امنیتی مرورگر شما اجازه نمی‌دهد که ویرایشگر به طور خودکار عملکردهای کپی‌کردن را انجام دهد. لطفا با دکمه‌های صفحه‌کلید این کار را انجام دهید (Ctrl+C).", + +PasteAsText : "چسباندن به عنوان متن ِساده", +PasteFromWord : "چسباندن از Word", + +DlgPasteMsg2 : "لطفا متن را با کلیدهای (Ctrl+V) در این جعبهٴ متنی بچسبانید و پذیرش را بزنید.", +DlgPasteSec : "به خاطر تنظیمات امنیتی مرورگر شما، ویرایشگر نمی‌تواند دسترسی مستقیم به داده‌های clipboard داشته باشد. شما باید دوباره آنرا در این پنجره بچسبانید.", +DlgPasteIgnoreFont : "چشم‌پوشی از تعاریف نوع قلم", +DlgPasteRemoveStyles : "چشم‌پوشی از تعاریف سبک (style)", + +// Color Picker +ColorAutomatic : "خودکار", +ColorMoreColors : "رنگهای بیشتر...", + +// Document Properties +DocProps : "ویژگیهای سند", + +// Anchor Dialog +DlgAnchorTitle : "ویژگیهای لنگر", +DlgAnchorName : "نام لنگر", +DlgAnchorErrorName : "لطفا نام لنگر را بنویسید", + +// Speller Pages Dialog +DlgSpellNotInDic : "در واژه‌نامه یافت نشد", +DlgSpellChangeTo : "تغییر به", +DlgSpellBtnIgnore : "چشم‌پوشی", +DlgSpellBtnIgnoreAll : "چشم‌پوشی همه", +DlgSpellBtnReplace : "جایگزینی", +DlgSpellBtnReplaceAll : "جایگزینی همه", +DlgSpellBtnUndo : "واچینش", +DlgSpellNoSuggestions : "- پیشنهادی نیست -", +DlgSpellProgress : "بررسی املا در حال انجام...", +DlgSpellNoMispell : "بررسی املا انجام شد. هیچ غلط‌املائی یافت نشد", +DlgSpellNoChanges : "بررسی املا انجام شد. هیچ واژه‌ای تغییر نیافت", +DlgSpellOneChange : "بررسی املا انجام شد. یک واژه تغییر یافت", +DlgSpellManyChanges : "بررسی املا انجام شد. %1 واژه تغییر یافت", + +IeSpellDownload : "بررسی‌کنندهٴ املا نصب نشده است. آیا می‌خواهید آن را هم‌اکنون دریافت کنید؟", + +// Button Dialog +DlgButtonText : "متن (مقدار)", +DlgButtonType : "نوع", +DlgButtonTypeBtn : "دکمه", +DlgButtonTypeSbm : "Submit", +DlgButtonTypeRst : "بازنشانی (Reset)", + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "نام", +DlgCheckboxValue : "مقدار", +DlgCheckboxSelected : "برگزیده", + +// Form Dialog +DlgFormName : "نام", +DlgFormAction : "رویداد", +DlgFormMethod : "متد", + +// Select Field Dialog +DlgSelectName : "نام", +DlgSelectValue : "مقدار", +DlgSelectSize : "اندازه", +DlgSelectLines : "خطوط", +DlgSelectChkMulti : "گزینش چندگانه فراهم باشد", +DlgSelectOpAvail : "گزینه‌های دردسترس", +DlgSelectOpText : "متن", +DlgSelectOpValue : "مقدار", +DlgSelectBtnAdd : "افزودن", +DlgSelectBtnModify : "ویرایش", +DlgSelectBtnUp : "بالا", +DlgSelectBtnDown : "پائین", +DlgSelectBtnSetValue : "تنظیم به عنوان مقدار ِبرگزیده", +DlgSelectBtnDelete : "پاک‌کردن", + +// Textarea Dialog +DlgTextareaName : "نام", +DlgTextareaCols : "ستونها", +DlgTextareaRows : "سطرها", + +// Text Field Dialog +DlgTextName : "نام", +DlgTextValue : "مقدار", +DlgTextCharWidth : "پهنای نویسه", +DlgTextMaxChars : "بیشینهٴ نویسه‌ها", +DlgTextType : "نوع", +DlgTextTypeText : "متن", +DlgTextTypePass : "گذرواژه", + +// Hidden Field Dialog +DlgHiddenName : "نام", +DlgHiddenValue : "مقدار", + +// Bulleted List Dialog +BulletedListProp : "ویژگیهای فهرست نقطه‌ای", +NumberedListProp : "ویژگیهای فهرست شماره‌دار", +DlgLstStart : "آغاز", +DlgLstType : "نوع", +DlgLstTypeCircle : "دایره", +DlgLstTypeDisc : "قرص", +DlgLstTypeSquare : "چهارگوش", +DlgLstTypeNumbers : "شماره‌ها (1، 2، 3)", +DlgLstTypeLCase : "نویسه‌های کوچک (a، b، c)", +DlgLstTypeUCase : "نویسه‌های بزرگ (A، B، C)", +DlgLstTypeSRoman : "شمارگان رومی کوچک (i، ii، iii)", +DlgLstTypeLRoman : "شمارگان رومی بزرگ (I، II، III)", + +// Document Properties Dialog +DlgDocGeneralTab : "عمومی", +DlgDocBackTab : "پس‌زمینه", +DlgDocColorsTab : "رنگها و حاشیه‌ها", +DlgDocMetaTab : "فراداده", + +DlgDocPageTitle : "عنوان صفحه", +DlgDocLangDir : "جهت زبان", +DlgDocLangDirLTR : "چپ به راست (LTR(", +DlgDocLangDirRTL : "راست به چپ (RTL(", +DlgDocLangCode : "کد زبان", +DlgDocCharSet : "رمزگذاری نویسه‌گان", +DlgDocCharSetCE : "اروپای مرکزی", +DlgDocCharSetCT : "چینی رسمی (Big5)", +DlgDocCharSetCR : "سیریلیک", +DlgDocCharSetGR : "یونانی", +DlgDocCharSetJP : "ژاپنی", +DlgDocCharSetKR : "کره‌ای", +DlgDocCharSetTR : "ترکی", +DlgDocCharSetUN : "یونیکُد (UTF-8)", +DlgDocCharSetWE : "اروپای غربی", +DlgDocCharSetOther : "رمزگذاری نویسه‌گان دیگر", + +DlgDocDocType : "عنوان نوع سند", +DlgDocDocTypeOther : "عنوان نوع سند دیگر", +DlgDocIncXHTML : "شامل تعاریف XHTML", +DlgDocBgColor : "رنگ پس‌زمینه", +DlgDocBgImage : "URL تصویر پس‌زمینه", +DlgDocBgNoScroll : "پس‌زمینهٴ پیمایش‌ناپذیر", +DlgDocCText : "متن", +DlgDocCLink : "پیوند", +DlgDocCVisited : "پیوند مشاهده‌شده", +DlgDocCActive : "پیوند فعال", +DlgDocMargins : "حاشیه‌های صفحه", +DlgDocMaTop : "بالا", +DlgDocMaLeft : "چپ", +DlgDocMaRight : "راست", +DlgDocMaBottom : "پایین", +DlgDocMeIndex : "کلیدواژگان نمایه‌گذاری سند (با کاما جدا شوند)", +DlgDocMeDescr : "توصیف سند", +DlgDocMeAuthor : "نویسنده", +DlgDocMeCopy : "کپی‌رایت", +DlgDocPreview : "پیش‌نمایش", + +// Templates Dialog +Templates : "الگوها", +DlgTemplatesTitle : "الگوهای محتویات", +DlgTemplatesSelMsg : "لطفا الگوی موردنظر را برای بازکردن در ویرایشگر برگزینید
(محتویات کنونی از دست خواهند رفت):", +DlgTemplatesLoading : "بارگذاری فهرست الگوها. لطفا صبر کنید...", +DlgTemplatesNoTpl : "(الگوئی تعریف نشده است)", +DlgTemplatesReplace : "محتویات کنونی جایگزین شوند", + +// About Dialog +DlgAboutAboutTab : "درباره", +DlgAboutBrowserInfoTab : "اطلاعات مرورگر", +DlgAboutLicenseTab : "گواهینامه", +DlgAboutVersion : "نگارش", +DlgAboutInfo : "برای آگاهی بیشتر به این نشانی بروید", + +// Div Dialog +DlgDivGeneralTab : "General", //MISSING +DlgDivAdvancedTab : "Advanced", //MISSING +DlgDivStyle : "Style", //MISSING +DlgDivInlineStyle : "Inline Style", //MISSING + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/fi.js b/fckeditor/editor/lang/fi.js new file mode 100644 index 0000000..5eb8945 --- /dev/null +++ b/fckeditor/editor/lang/fi.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * Finnish language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "Piilota työkalurivi", +ToolbarExpand : "Näytä työkalurivi", + +// Toolbar Items and Context Menu +Save : "Tallenna", +NewPage : "Tyhjennä", +Preview : "Esikatsele", +Cut : "Leikkaa", +Copy : "Kopioi", +Paste : "Liitä", +PasteText : "Liitä tekstinä", +PasteWord : "Liitä Wordista", +Print : "Tulosta", +SelectAll : "Valitse kaikki", +RemoveFormat : "Poista muotoilu", +InsertLinkLbl : "Linkki", +InsertLink : "Lisää linkki/muokkaa linkkiä", +RemoveLink : "Poista linkki", +VisitLink : "Avaa linkki", +Anchor : "Lisää ankkuri/muokkaa ankkuria", +AnchorDelete : "Poista ankkuri", +InsertImageLbl : "Kuva", +InsertImage : "Lisää kuva/muokkaa kuvaa", +InsertFlashLbl : "Flash", +InsertFlash : "Lisää/muokkaa Flashia", +InsertTableLbl : "Taulu", +InsertTable : "Lisää taulu/muokkaa taulua", +InsertLineLbl : "Murtoviiva", +InsertLine : "Lisää murtoviiva", +InsertSpecialCharLbl: "Erikoismerkki", +InsertSpecialChar : "Lisää erikoismerkki", +InsertSmileyLbl : "Hymiö", +InsertSmiley : "Lisää hymiö", +About : "FCKeditorista", +Bold : "Lihavoitu", +Italic : "Kursivoitu", +Underline : "Alleviivattu", +StrikeThrough : "Yliviivattu", +Subscript : "Alaindeksi", +Superscript : "Yläindeksi", +LeftJustify : "Tasaa vasemmat reunat", +CenterJustify : "Keskitä", +RightJustify : "Tasaa oikeat reunat", +BlockJustify : "Tasaa molemmat reunat", +DecreaseIndent : "Pienennä sisennystä", +IncreaseIndent : "Suurenna sisennystä", +Blockquote : "Lainaus", +CreateDiv : "Lisää Div", +EditDiv : "Muokkaa Div:ä", +DeleteDiv : "Poista Div", +Undo : "Kumoa", +Redo : "Toista", +NumberedListLbl : "Numerointi", +NumberedList : "Lisää/poista numerointi", +BulletedListLbl : "Luottelomerkit", +BulletedList : "Lisää/poista luottelomerkit", +ShowTableBorders : "Näytä taulun rajat", +ShowDetails : "Näytä muotoilu", +Style : "Tyyli", +FontFormat : "Muotoilu", +Font : "Fontti", +FontSize : "Koko", +TextColor : "Tekstiväri", +BGColor : "Taustaväri", +Source : "Koodi", +Find : "Etsi", +Replace : "Korvaa", +SpellCheck : "Tarkista oikeinkirjoitus", +UniversalKeyboard : "Universaali näppäimistö", +PageBreakLbl : "Sivun vaihto", +PageBreak : "Lisää sivun vaihto", + +Form : "Lomake", +Checkbox : "Valintaruutu", +RadioButton : "Radiopainike", +TextField : "Tekstikenttä", +Textarea : "Tekstilaatikko", +HiddenField : "Piilokenttä", +Button : "Painike", +SelectionField : "Valintakenttä", +ImageButton : "Kuvapainike", + +FitWindow : "Suurenna editori koko ikkunaan", +ShowBlocks : "Näytä elementit", + +// Context Menu +EditLink : "Muokkaa linkkiä", +CellCM : "Solu", +RowCM : "Rivi", +ColumnCM : "Sarake", +InsertRowAfter : "Lisää rivi alapuolelle", +InsertRowBefore : "Lisää rivi yläpuolelle", +DeleteRows : "Poista rivit", +InsertColumnAfter : "Lisää sarake oikealle", +InsertColumnBefore : "Lisää sarake vasemmalle", +DeleteColumns : "Poista sarakkeet", +InsertCellAfter : "Lisää solu perään", +InsertCellBefore : "Lisää solu eteen", +DeleteCells : "Poista solut", +MergeCells : "Yhdistä solut", +MergeRight : "Yhdistä oikealla olevan kanssa", +MergeDown : "Yhdistä alla olevan kanssa", +HorizontalSplitCell : "Jaa solu vaakasuunnassa", +VerticalSplitCell : "Jaa solu pystysuunnassa", +TableDelete : "Poista taulu", +CellProperties : "Solun ominaisuudet", +TableProperties : "Taulun ominaisuudet", +ImageProperties : "Kuvan ominaisuudet", +FlashProperties : "Flash ominaisuudet", + +AnchorProp : "Ankkurin ominaisuudet", +ButtonProp : "Painikkeen ominaisuudet", +CheckboxProp : "Valintaruudun ominaisuudet", +HiddenFieldProp : "Piilokentän ominaisuudet", +RadioButtonProp : "Radiopainikkeen ominaisuudet", +ImageButtonProp : "Kuvapainikkeen ominaisuudet", +TextFieldProp : "Tekstikentän ominaisuudet", +SelectionFieldProp : "Valintakentän ominaisuudet", +TextareaProp : "Tekstilaatikon ominaisuudet", +FormProp : "Lomakkeen ominaisuudet", + +FontFormats : "Normaali;Muotoiltu;Osoite;Otsikko 1;Otsikko 2;Otsikko 3;Otsikko 4;Otsikko 5;Otsikko 6", + +// Alerts and Messages +ProcessingXHTML : "Prosessoidaan XHTML:ää. Odota hetki...", +Done : "Valmis", +PasteWordConfirm : "Teksti, jonka haluat liittää, näyttää olevan kopioitu Wordista. Haluatko puhdistaa sen ennen liittämistä?", +NotCompatiblePaste : "Tämä komento toimii vain Internet Explorer 5.5:ssa tai uudemmassa. Haluatko liittää ilman puhdistusta?", +UnknownToolbarItem : "Tuntemanton työkalu \"%1\"", +UnknownCommand : "Tuntematon komento \"%1\"", +NotImplemented : "Komentoa ei ole liitetty sovellukseen", +UnknownToolbarSet : "Työkalukokonaisuus \"%1\" ei ole olemassa", +NoActiveX : "Selaimesi turvallisuusasetukset voivat rajoittaa joitain editorin ominaisuuksia. Sinun pitää ottaa käyttöön asetuksista \"Suorita ActiveX komponentit ja -plugin-laajennukset\". Saatat kohdata virheitä ja huomata puuttuvia ominaisuuksia.", +BrowseServerBlocked : "Resurssiselainta ei voitu avata. Varmista, että ponnahdusikkunoiden estäjät eivät ole päällä.", +DialogBlocked : "Apuikkunaa ei voitu avaata. Varmista, että ponnahdusikkunoiden estäjät eivät ole päällä.", +VisitLinkBlocked : "IUutta ikkunaa ei voitu avata. Varmista, että ponnahdusikkunoiden estäjät eivät ole päällä.", + +// Dialogs +DlgBtnOK : "OK", +DlgBtnCancel : "Peruuta", +DlgBtnClose : "Sulje", +DlgBtnBrowseServer : "Selaa palvelinta", +DlgAdvancedTag : "Lisäominaisuudet", +DlgOpOther : "Muut", +DlgInfoTab : "Info", +DlgAlertUrl : "Lisää URL", + +// General Dialogs Labels +DlgGenNotSet : "", +DlgGenId : "Tunniste", +DlgGenLangDir : "Kielen suunta", +DlgGenLangDirLtr : "Vasemmalta oikealle (LTR)", +DlgGenLangDirRtl : "Oikealta vasemmalle (RTL)", +DlgGenLangCode : "Kielikoodi", +DlgGenAccessKey : "Pikanäppäin", +DlgGenName : "Nimi", +DlgGenTabIndex : "Tabulaattori indeksi", +DlgGenLongDescr : "Pitkän kuvauksen URL", +DlgGenClass : "Tyyliluokat", +DlgGenTitle : "Avustava otsikko", +DlgGenContType : "Avustava sisällön tyyppi", +DlgGenLinkCharset : "Linkitetty kirjaimisto", +DlgGenStyle : "Tyyli", + +// Image Dialog +DlgImgTitle : "Kuvan ominaisuudet", +DlgImgInfoTab : "Kuvan tiedot", +DlgImgBtnUpload : "Lähetä palvelimelle", +DlgImgURL : "Osoite", +DlgImgUpload : "Lisää kuva", +DlgImgAlt : "Vaihtoehtoinen teksti", +DlgImgWidth : "Leveys", +DlgImgHeight : "Korkeus", +DlgImgLockRatio : "Lukitse suhteet", +DlgBtnResetSize : "Alkuperäinen koko", +DlgImgBorder : "Raja", +DlgImgHSpace : "Vaakatila", +DlgImgVSpace : "Pystytila", +DlgImgAlign : "Kohdistus", +DlgImgAlignLeft : "Vasemmalle", +DlgImgAlignAbsBottom: "Aivan alas", +DlgImgAlignAbsMiddle: "Aivan keskelle", +DlgImgAlignBaseline : "Alas (teksti)", +DlgImgAlignBottom : "Alas", +DlgImgAlignMiddle : "Keskelle", +DlgImgAlignRight : "Oikealle", +DlgImgAlignTextTop : "Ylös (teksti)", +DlgImgAlignTop : "Ylös", +DlgImgPreview : "Esikatselu", +DlgImgAlertUrl : "Kirjoita kuvan osoite (URL)", +DlgImgLinkTab : "Linkki", + +// Flash Dialog +DlgFlashTitle : "Flash ominaisuudet", +DlgFlashChkPlay : "Automaattinen käynnistys", +DlgFlashChkLoop : "Toisto", +DlgFlashChkMenu : "Näytä Flash-valikko", +DlgFlashScale : "Levitä", +DlgFlashScaleAll : "Näytä kaikki", +DlgFlashScaleNoBorder : "Ei rajaa", +DlgFlashScaleFit : "Tarkka koko", + +// Link Dialog +DlgLnkWindowTitle : "Linkki", +DlgLnkInfoTab : "Linkin tiedot", +DlgLnkTargetTab : "Kohde", + +DlgLnkType : "Linkkityyppi", +DlgLnkTypeURL : "Osoite", +DlgLnkTypeAnchor : "Ankkuri tässä sivussa", +DlgLnkTypeEMail : "Sähköposti", +DlgLnkProto : "Protokolla", +DlgLnkProtoOther : "", +DlgLnkURL : "Osoite", +DlgLnkAnchorSel : "Valitse ankkuri", +DlgLnkAnchorByName : "Ankkurin nimen mukaan", +DlgLnkAnchorById : "Ankkurin ID:n mukaan", +DlgLnkNoAnchors : "(Ei ankkureita tässä dokumentissa)", +DlgLnkEMail : "Sähköpostiosoite", +DlgLnkEMailSubject : "Aihe", +DlgLnkEMailBody : "Viesti", +DlgLnkUpload : "Lisää tiedosto", +DlgLnkBtnUpload : "Lähetä palvelimelle", + +DlgLnkTarget : "Kohde", +DlgLnkTargetFrame : "", +DlgLnkTargetPopup : "", +DlgLnkTargetBlank : "Uusi ikkuna (_blank)", +DlgLnkTargetParent : "Emoikkuna (_parent)", +DlgLnkTargetSelf : "Sama ikkuna (_self)", +DlgLnkTargetTop : "Päällimmäisin ikkuna (_top)", +DlgLnkTargetFrameName : "Kohdekehyksen nimi", +DlgLnkPopWinName : "Popup ikkunan nimi", +DlgLnkPopWinFeat : "Popup ikkunan ominaisuudet", +DlgLnkPopResize : "Venytettävä", +DlgLnkPopLocation : "Osoiterivi", +DlgLnkPopMenu : "Valikkorivi", +DlgLnkPopScroll : "Vierityspalkit", +DlgLnkPopStatus : "Tilarivi", +DlgLnkPopToolbar : "Vakiopainikkeet", +DlgLnkPopFullScrn : "Täysi ikkuna (IE)", +DlgLnkPopDependent : "Riippuva (Netscape)", +DlgLnkPopWidth : "Leveys", +DlgLnkPopHeight : "Korkeus", +DlgLnkPopLeft : "Vasemmalta (px)", +DlgLnkPopTop : "Ylhäältä (px)", + +DlnLnkMsgNoUrl : "Linkille on kirjoitettava URL", +DlnLnkMsgNoEMail : "Kirjoita sähköpostiosoite", +DlnLnkMsgNoAnchor : "Valitse ankkuri", +DlnLnkMsgInvPopName : "Popup-ikkunan nimi pitää alkaa aakkosella ja ei saa sisältää välejä", + +// Color Dialog +DlgColorTitle : "Valitse väri", +DlgColorBtnClear : "Tyhjennä", +DlgColorHighlight : "Kohdalla", +DlgColorSelected : "Valittu", + +// Smiley Dialog +DlgSmileyTitle : "Lisää hymiö", + +// Special Character Dialog +DlgSpecialCharTitle : "Valitse erikoismerkki", + +// Table Dialog +DlgTableTitle : "Taulun ominaisuudet", +DlgTableRows : "Rivit", +DlgTableColumns : "Sarakkeet", +DlgTableBorder : "Rajan paksuus", +DlgTableAlign : "Kohdistus", +DlgTableAlignNotSet : "", +DlgTableAlignLeft : "Vasemmalle", +DlgTableAlignCenter : "Keskelle", +DlgTableAlignRight : "Oikealle", +DlgTableWidth : "Leveys", +DlgTableWidthPx : "pikseliä", +DlgTableWidthPc : "prosenttia", +DlgTableHeight : "Korkeus", +DlgTableCellSpace : "Solujen väli", +DlgTableCellPad : "Solujen sisennys", +DlgTableCaption : "Otsikko", +DlgTableSummary : "Yhteenveto", +DlgTableHeaders : "Ylätunnisteet", +DlgTableHeadersNone : "Ei ylätunnisteita", +DlgTableHeadersColumn : "Ensimmäinen sarake", +DlgTableHeadersRow : "Ensimmäinen rivi", +DlgTableHeadersBoth : "Molemmat", + +// Table Cell Dialog +DlgCellTitle : "Solun ominaisuudet", +DlgCellWidth : "Leveys", +DlgCellWidthPx : "pikseliä", +DlgCellWidthPc : "prosenttia", +DlgCellHeight : "Korkeus", +DlgCellWordWrap : "Tekstikierrätys", +DlgCellWordWrapNotSet : "", +DlgCellWordWrapYes : "Kyllä", +DlgCellWordWrapNo : "Ei", +DlgCellHorAlign : "Vaakakohdistus", +DlgCellHorAlignNotSet : "", +DlgCellHorAlignLeft : "Vasemmalle", +DlgCellHorAlignCenter : "Keskelle", +DlgCellHorAlignRight: "Oikealle", +DlgCellVerAlign : "Pystykohdistus", +DlgCellVerAlignNotSet : "", +DlgCellVerAlignTop : "Ylös", +DlgCellVerAlignMiddle : "Keskelle", +DlgCellVerAlignBottom : "Alas", +DlgCellVerAlignBaseline : "Tekstin alas", +DlgCellType : "Solun tyyppi", +DlgCellTypeData : "Sisältö", +DlgCellTypeHeader : "Ylätunniste", +DlgCellRowSpan : "Rivin jatkuvuus", +DlgCellCollSpan : "Sarakkeen jatkuvuus", +DlgCellBackColor : "Taustaväri", +DlgCellBorderColor : "Rajan väri", +DlgCellBtnSelect : "Valitse...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "Etsi ja korvaa", + +// Find Dialog +DlgFindTitle : "Etsi", +DlgFindFindBtn : "Etsi", +DlgFindNotFoundMsg : "Etsittyä tekstiä ei löytynyt.", + +// Replace Dialog +DlgReplaceTitle : "Korvaa", +DlgReplaceFindLbl : "Etsi mitä:", +DlgReplaceReplaceLbl : "Korvaa tällä:", +DlgReplaceCaseChk : "Sama kirjainkoko", +DlgReplaceReplaceBtn : "Korvaa", +DlgReplaceReplAllBtn : "Korvaa kaikki", +DlgReplaceWordChk : "Koko sana", + +// Paste Operations / Dialog +PasteErrorCut : "Selaimesi turva-asetukset eivät salli editorin toteuttaa leikkaamista. Käytä näppäimistöä leikkaamiseen (Ctrl+X).", +PasteErrorCopy : "Selaimesi turva-asetukset eivät salli editorin toteuttaa kopioimista. Käytä näppäimistöä kopioimiseen (Ctrl+C).", + +PasteAsText : "Liitä tekstinä", +PasteFromWord : "Liitä Wordista", + +DlgPasteMsg2 : "Liitä painamalla (Ctrl+V) ja painamalla OK.", +DlgPasteSec : "Selaimesi turva-asetukset eivät salli editorin käyttää leikepöytää suoraan. Sinun pitää suorittaa liittäminen tässä ikkunassa.", +DlgPasteIgnoreFont : "Jätä huomioimatta fonttimääritykset", +DlgPasteRemoveStyles : "Poista tyylimääritykset", + +// Color Picker +ColorAutomatic : "Automaattinen", +ColorMoreColors : "Lisää värejä...", + +// Document Properties +DocProps : "Dokumentin ominaisuudet", + +// Anchor Dialog +DlgAnchorTitle : "Ankkurin ominaisuudet", +DlgAnchorName : "Nimi", +DlgAnchorErrorName : "Ankkurille on kirjoitettava nimi", + +// Speller Pages Dialog +DlgSpellNotInDic : "Ei sanakirjassa", +DlgSpellChangeTo : "Vaihda", +DlgSpellBtnIgnore : "Jätä huomioimatta", +DlgSpellBtnIgnoreAll : "Jätä kaikki huomioimatta", +DlgSpellBtnReplace : "Korvaa", +DlgSpellBtnReplaceAll : "Korvaa kaikki", +DlgSpellBtnUndo : "Kumoa", +DlgSpellNoSuggestions : "Ei ehdotuksia", +DlgSpellProgress : "Tarkistus käynnissä...", +DlgSpellNoMispell : "Tarkistus valmis: Ei virheitä", +DlgSpellNoChanges : "Tarkistus valmis: Yhtään sanaa ei muutettu", +DlgSpellOneChange : "Tarkistus valmis: Yksi sana muutettiin", +DlgSpellManyChanges : "Tarkistus valmis: %1 sanaa muutettiin", + +IeSpellDownload : "Oikeinkirjoituksen tarkistusta ei ole asennettu. Haluatko ladata sen nyt?", + +// Button Dialog +DlgButtonText : "Teksti (arvo)", +DlgButtonType : "Tyyppi", +DlgButtonTypeBtn : "Painike", +DlgButtonTypeSbm : "Lähetä", +DlgButtonTypeRst : "Tyhjennä", + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "Nimi", +DlgCheckboxValue : "Arvo", +DlgCheckboxSelected : "Valittu", + +// Form Dialog +DlgFormName : "Nimi", +DlgFormAction : "Toiminto", +DlgFormMethod : "Tapa", + +// Select Field Dialog +DlgSelectName : "Nimi", +DlgSelectValue : "Arvo", +DlgSelectSize : "Koko", +DlgSelectLines : "Rivit", +DlgSelectChkMulti : "Salli usea valinta", +DlgSelectOpAvail : "Ominaisuudet", +DlgSelectOpText : "Teksti", +DlgSelectOpValue : "Arvo", +DlgSelectBtnAdd : "Lisää", +DlgSelectBtnModify : "Muuta", +DlgSelectBtnUp : "Ylös", +DlgSelectBtnDown : "Alas", +DlgSelectBtnSetValue : "Aseta valituksi", +DlgSelectBtnDelete : "Poista", + +// Textarea Dialog +DlgTextareaName : "Nimi", +DlgTextareaCols : "Sarakkeita", +DlgTextareaRows : "Rivejä", + +// Text Field Dialog +DlgTextName : "Nimi", +DlgTextValue : "Arvo", +DlgTextCharWidth : "Leveys", +DlgTextMaxChars : "Maksimi merkkimäärä", +DlgTextType : "Tyyppi", +DlgTextTypeText : "Teksti", +DlgTextTypePass : "Salasana", + +// Hidden Field Dialog +DlgHiddenName : "Nimi", +DlgHiddenValue : "Arvo", + +// Bulleted List Dialog +BulletedListProp : "Luettelon ominaisuudet", +NumberedListProp : "Numeroinnin ominaisuudet", +DlgLstStart : "Alku", +DlgLstType : "Tyyppi", +DlgLstTypeCircle : "Kehä", +DlgLstTypeDisc : "Ympyrä", +DlgLstTypeSquare : "Neliö", +DlgLstTypeNumbers : "Numerot (1, 2, 3)", +DlgLstTypeLCase : "Pienet kirjaimet (a, b, c)", +DlgLstTypeUCase : "Isot kirjaimet (A, B, C)", +DlgLstTypeSRoman : "Pienet roomalaiset numerot (i, ii, iii)", +DlgLstTypeLRoman : "Isot roomalaiset numerot (Ii, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "Yleiset", +DlgDocBackTab : "Tausta", +DlgDocColorsTab : "Värit ja marginaalit", +DlgDocMetaTab : "Meta-tieto", + +DlgDocPageTitle : "Sivun nimi", +DlgDocLangDir : "Kielen suunta", +DlgDocLangDirLTR : "Vasemmalta oikealle (LTR)", +DlgDocLangDirRTL : "Oikealta vasemmalle (RTL)", +DlgDocLangCode : "Kielikoodi", +DlgDocCharSet : "Merkistökoodaus", +DlgDocCharSetCE : "Keskieurooppalainen", +DlgDocCharSetCT : "Kiina, perinteinen (Big5)", +DlgDocCharSetCR : "Kyrillinen", +DlgDocCharSetGR : "Kreikka", +DlgDocCharSetJP : "Japani", +DlgDocCharSetKR : "Korealainen", +DlgDocCharSetTR : "Turkkilainen", +DlgDocCharSetUN : "Unicode (UTF-8)", +DlgDocCharSetWE : "Länsieurooppalainen", +DlgDocCharSetOther : "Muu merkistökoodaus", + +DlgDocDocType : "Dokumentin tyyppi", +DlgDocDocTypeOther : "Muu dokumentin tyyppi", +DlgDocIncXHTML : "Lisää XHTML julistukset", +DlgDocBgColor : "Taustaväri", +DlgDocBgImage : "Taustakuva", +DlgDocBgNoScroll : "Paikallaanpysyvä tausta", +DlgDocCText : "Teksti", +DlgDocCLink : "Linkki", +DlgDocCVisited : "Vierailtu linkki", +DlgDocCActive : "Aktiivinen linkki", +DlgDocMargins : "Sivun marginaalit", +DlgDocMaTop : "Ylä", +DlgDocMaLeft : "Vasen", +DlgDocMaRight : "Oikea", +DlgDocMaBottom : "Ala", +DlgDocMeIndex : "Hakusanat (pilkulla erotettuna)", +DlgDocMeDescr : "Kuvaus", +DlgDocMeAuthor : "Tekijä", +DlgDocMeCopy : "Tekijänoikeudet", +DlgDocPreview : "Esikatselu", + +// Templates Dialog +Templates : "Pohjat", +DlgTemplatesTitle : "Sisältöpohjat", +DlgTemplatesSelMsg : "Valitse pohja editoriin
(aiempi sisältö menetetään):", +DlgTemplatesLoading : "Ladataan listaa pohjista. Hetkinen...", +DlgTemplatesNoTpl : "(Ei määriteltyjä pohjia)", +DlgTemplatesReplace : "Korvaa editorin koko sisältö", + +// About Dialog +DlgAboutAboutTab : "Editorista", +DlgAboutBrowserInfoTab : "Selaimen tiedot", +DlgAboutLicenseTab : "Lisenssi", +DlgAboutVersion : "versio", +DlgAboutInfo : "Lisää tietoa osoitteesta", + +// Div Dialog +DlgDivGeneralTab : "Edistynyt", +DlgDivAdvancedTab : "Advanced", //MISSING +DlgDivStyle : "Tyyli", +DlgDivInlineStyle : "Rivin sisäinen tyyli", + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/fo.js b/fckeditor/editor/lang/fo.js new file mode 100644 index 0000000..22da6b4 --- /dev/null +++ b/fckeditor/editor/lang/fo.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * Faroese language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "Fjal amboðsbjálkan", +ToolbarExpand : "Vís amboðsbjálkan", + +// Toolbar Items and Context Menu +Save : "Goym", +NewPage : "Nýggj síða", +Preview : "Frumsýning", +Cut : "Kvett", +Copy : "Avrita", +Paste : "Innrita", +PasteText : "Innrita reinan tekst", +PasteWord : "Innrita frá Word", +Print : "Prenta", +SelectAll : "Markera alt", +RemoveFormat : "Strika sniðgeving", +InsertLinkLbl : "Tilknýti", +InsertLink : "Ger/broyt tilknýti", +RemoveLink : "Strika tilknýti", +VisitLink : "Opna tilknýti", +Anchor : "Ger/broyt marknastein", +AnchorDelete : "Strika marknastein", +InsertImageLbl : "Myndir", +InsertImage : "Set inn/broyt mynd", +InsertFlashLbl : "Flash", +InsertFlash : "Set inn/broyt Flash", +InsertTableLbl : "Tabell", +InsertTable : "Set inn/broyt tabell", +InsertLineLbl : "Linja", +InsertLine : "Ger vatnrætta linju", +InsertSpecialCharLbl: "Sertekn", +InsertSpecialChar : "Set inn sertekn", +InsertSmileyLbl : "Smiley", +InsertSmiley : "Set inn Smiley", +About : "Um FCKeditor", +Bold : "Feit skrift", +Italic : "Skráskrift", +Underline : "Undirstrikað", +StrikeThrough : "Yvirstrikað", +Subscript : "Lækkað skrift", +Superscript : "Hækkað skrift", +LeftJustify : "Vinstrasett", +CenterJustify : "Miðsett", +RightJustify : "Høgrasett", +BlockJustify : "Javnir tekstkantar", +DecreaseIndent : "Minka reglubrotarinntriv", +IncreaseIndent : "Økja reglubrotarinntriv", +Blockquote : "Blockquote", +CreateDiv : "Ger DIV øki", +EditDiv : "Broyt DIV øki", +DeleteDiv : "Strika DIV øki", +Undo : "Angra", +Redo : "Vend aftur", +NumberedListLbl : "Talmerktur listi", +NumberedList : "Ger/strika talmerktan lista", +BulletedListLbl : "Punktmerktur listi", +BulletedList : "Ger/strika punktmerktan lista", +ShowTableBorders : "Vís tabellbordar", +ShowDetails : "Vís í smálutum", +Style : "Typografi", +FontFormat : "Skriftsnið", +Font : "Skrift", +FontSize : "Skriftstødd", +TextColor : "Tekstlitur", +BGColor : "Bakgrundslitur", +Source : "Kelda", +Find : "Leita", +Replace : "Yvirskriva", +SpellCheck : "Kanna stavseting", +UniversalKeyboard : "Knappaborð", +PageBreakLbl : "Síðuskift", +PageBreak : "Ger síðuskift", + +Form : "Formur", +Checkbox : "Flugubein", +RadioButton : "Radioknøttur", +TextField : "Tekstteigur", +Textarea : "Tekstumráði", +HiddenField : "Fjaldur teigur", +Button : "Knøttur", +SelectionField : "Valskrá", +ImageButton : "Myndaknøttur", + +FitWindow : "Set tekstviðgera til fulla stødd", +ShowBlocks : "Vís blokkar", + +// Context Menu +EditLink : "Broyt tilknýti", +CellCM : "Meski", +RowCM : "Rað", +ColumnCM : "Kolonna", +InsertRowAfter : "Set rað inn aftaná", +InsertRowBefore : "Set rað inn áðrenn", +DeleteRows : "Strika røðir", +InsertColumnAfter : "Set kolonnu inn aftaná", +InsertColumnBefore : "Set kolonnu inn áðrenn", +DeleteColumns : "Strika kolonnur", +InsertCellAfter : "Set meska inn aftaná", +InsertCellBefore : "Set meska inn áðrenn", +DeleteCells : "Strika meskar", +MergeCells : "Flætta meskar", +MergeRight : "Flætta meskar til høgru", +MergeDown : "Flætta saman", +HorizontalSplitCell : "Kloyv meska vatnrætt", +VerticalSplitCell : "Kloyv meska loddrætt", +TableDelete : "Strika tabell", +CellProperties : "Meskueginleikar", +TableProperties : "Tabelleginleikar", +ImageProperties : "Myndaeginleikar", +FlashProperties : "Flash eginleikar", + +AnchorProp : "Eginleikar fyri marknastein", +ButtonProp : "Eginleikar fyri knøtt", +CheckboxProp : "Eginleikar fyri flugubein", +HiddenFieldProp : "Eginleikar fyri fjaldan teig", +RadioButtonProp : "Eginleikar fyri radioknøtt", +ImageButtonProp : "Eginleikar fyri myndaknøtt", +TextFieldProp : "Eginleikar fyri tekstteig", +SelectionFieldProp : "Eginleikar fyri valskrá", +TextareaProp : "Eginleikar fyri tekstumráði", +FormProp : "Eginleikar fyri Form", + +FontFormats : "Vanligt;Sniðgivið;Adressa;Yvirskrift 1;Yvirskrift 2;Yvirskrift 3;Yvirskrift 4;Yvirskrift 5;Yvirskrift 6", + +// Alerts and Messages +ProcessingXHTML : "XHTML verður viðgjørt. Bíða við...", +Done : "Liðugt", +PasteWordConfirm : "Teksturin, royndur verður at seta inn, tykist at stava frá Word. Vilt tú reinsa tekstin, áðrenn hann verður settur inn?", +NotCompatiblePaste : "Hetta er bert tøkt í Internet Explorer 5.5 og nýggjari. Vilt tú seta tekstin inn kortini - óreinsaðan?", +UnknownToolbarItem : "Ókendur lutur í amboðsbjálkanum \"%1\"", +UnknownCommand : "Ókend kommando \"%1\"", +NotImplemented : "Hetta er ikki tøkt í hesi útgávuni", +UnknownToolbarSet : "Amboðsbjálkin \"%1\" finst ikki", +NoActiveX : "Trygdaruppsetingin í alnótskaganum kann sum er avmarka onkrar hentleikar í tekstviðgeranum. Tú mást loyva møguleikanum \"Run/Kør ActiveX controls and plug-ins\". Tú kanst uppliva feilir og ávaringar um tvørrandi hentleikar.", +BrowseServerBlocked : "Ambætarakagin kundi ikki opnast. Tryggja tær, at allar pop-up forðingar eru óvirknar.", +DialogBlocked : "Tað eyðnaðist ikki at opna samskiftisrútin. Tryggja tær, at allar pop-up forðingar eru óvirknar.", +VisitLinkBlocked : "Tað eyðnaðist ikki at opna nýggjan rút. Tryggja tær, at allar pop-up forðingar eru óvirknar.", + +// Dialogs +DlgBtnOK : "Góðkent", +DlgBtnCancel : "Avlýst", +DlgBtnClose : "Lat aftur", +DlgBtnBrowseServer : "Ambætarakagi", +DlgAdvancedTag : "Fjølbroytt", +DlgOpOther : "", +DlgInfoTab : "Upplýsingar", +DlgAlertUrl : "Vinarliga veit ein URL", + +// General Dialogs Labels +DlgGenNotSet : "", +DlgGenId : "Id", +DlgGenLangDir : "Tekstkós", +DlgGenLangDirLtr : "Frá vinstru til høgru (LTR)", +DlgGenLangDirRtl : "Frá høgru til vinstru (RTL)", +DlgGenLangCode : "Málkoda", +DlgGenAccessKey : "Snarvegisknappur", +DlgGenName : "Navn", +DlgGenTabIndex : "Inntriv indeks", +DlgGenLongDescr : "Víðkað URL frágreiðing", +DlgGenClass : "Typografi klassar", +DlgGenTitle : "Vegleiðandi heiti", +DlgGenContType : "Vegleiðandi innihaldsslag", +DlgGenLinkCharset : "Atknýtt teknsett", +DlgGenStyle : "Typografi", + +// Image Dialog +DlgImgTitle : "Myndaeginleikar", +DlgImgInfoTab : "Myndaupplýsingar", +DlgImgBtnUpload : "Send til ambætaran", +DlgImgURL : "URL", +DlgImgUpload : "Send", +DlgImgAlt : "Alternativur tekstur", +DlgImgWidth : "Breidd", +DlgImgHeight : "Hædd", +DlgImgLockRatio : "Læs lutfallið", +DlgBtnResetSize : "Upprunastødd", +DlgImgBorder : "Bordi", +DlgImgHSpace : "Høgri breddi", +DlgImgVSpace : "Vinstri breddi", +DlgImgAlign : "Justering", +DlgImgAlignLeft : "Vinstra", +DlgImgAlignAbsBottom: "Abs botnur", +DlgImgAlignAbsMiddle: "Abs miðja", +DlgImgAlignBaseline : "Basislinja", +DlgImgAlignBottom : "Botnur", +DlgImgAlignMiddle : "Miðja", +DlgImgAlignRight : "Høgra", +DlgImgAlignTextTop : "Tekst toppur", +DlgImgAlignTop : "Ovast", +DlgImgPreview : "Frumsýning", +DlgImgAlertUrl : "Rita slóðina til myndina", +DlgImgLinkTab : "Tilknýti", + +// Flash Dialog +DlgFlashTitle : "Flash eginleikar", +DlgFlashChkPlay : "Avspælingin byrjar sjálv", +DlgFlashChkLoop : "Endurspæl", +DlgFlashChkMenu : "Ger Flash skrá virkna", +DlgFlashScale : "Skalering", +DlgFlashScaleAll : "Vís alt", +DlgFlashScaleNoBorder : "Eingin bordi", +DlgFlashScaleFit : "Neyv skalering", + +// Link Dialog +DlgLnkWindowTitle : "Tilknýti", +DlgLnkInfoTab : "Tilknýtis upplýsingar", +DlgLnkTargetTab : "Mál", + +DlgLnkType : "Tilknýtisslag", +DlgLnkTypeURL : "URL", +DlgLnkTypeAnchor : "Tilknýti til marknastein í tekstinum", +DlgLnkTypeEMail : "Teldupostur", +DlgLnkProto : "Protokoll", +DlgLnkProtoOther : "", +DlgLnkURL : "URL", +DlgLnkAnchorSel : "Vel ein marknastein", +DlgLnkAnchorByName : "Eftir navni á marknasteini", +DlgLnkAnchorById : "Eftir element Id", +DlgLnkNoAnchors : "(Eingir marknasteinar eru í hesum dokumentið)", +DlgLnkEMail : "Teldupost-adressa", +DlgLnkEMailSubject : "Evni", +DlgLnkEMailBody : "Breyðtekstur", +DlgLnkUpload : "Send til ambætaran", +DlgLnkBtnUpload : "Send til ambætaran", + +DlgLnkTarget : "Mál", +DlgLnkTargetFrame : "", +DlgLnkTargetPopup : "", +DlgLnkTargetBlank : "Nýtt vindeyga (_blank)", +DlgLnkTargetParent : "Upphavliga vindeygað (_parent)", +DlgLnkTargetSelf : "Sama vindeygað (_self)", +DlgLnkTargetTop : "Alt vindeygað (_top)", +DlgLnkTargetFrameName : "Vís navn vindeygans", +DlgLnkPopWinName : "Popup vindeygans navn", +DlgLnkPopWinFeat : "Popup vindeygans víðkaðu eginleikar", +DlgLnkPopResize : "Kann broyta stødd", +DlgLnkPopLocation : "Adressulinja", +DlgLnkPopMenu : "Skrábjálki", +DlgLnkPopScroll : "Rullibjálki", +DlgLnkPopStatus : "Støðufrágreiðingarbjálki", +DlgLnkPopToolbar : "Amboðsbjálki", +DlgLnkPopFullScrn : "Fullur skermur (IE)", +DlgLnkPopDependent : "Bundið (Netscape)", +DlgLnkPopWidth : "Breidd", +DlgLnkPopHeight : "Hædd", +DlgLnkPopLeft : "Frástøða frá vinstru", +DlgLnkPopTop : "Frástøða frá íerva", + +DlnLnkMsgNoUrl : "Vinarliga skriva tilknýti (URL)", +DlnLnkMsgNoEMail : "Vinarliga skriva teldupost-adressu", +DlnLnkMsgNoAnchor : "Vinarliga vel marknastein", +DlnLnkMsgInvPopName : "Popup navnið má byrja við bókstavi og má ikki hava millumrúm", + +// Color Dialog +DlgColorTitle : "Vel lit", +DlgColorBtnClear : "Strika alt", +DlgColorHighlight : "Framhevja", +DlgColorSelected : "Valt", + +// Smiley Dialog +DlgSmileyTitle : "Vel Smiley", + +// Special Character Dialog +DlgSpecialCharTitle : "Vel sertekn", + +// Table Dialog +DlgTableTitle : "Eginleikar fyri tabell", +DlgTableRows : "Røðir", +DlgTableColumns : "Kolonnur", +DlgTableBorder : "Bordabreidd", +DlgTableAlign : "Justering", +DlgTableAlignNotSet : "", +DlgTableAlignLeft : "Vinstrasett", +DlgTableAlignCenter : "Miðsett", +DlgTableAlignRight : "Høgrasett", +DlgTableWidth : "Breidd", +DlgTableWidthPx : "pixels", +DlgTableWidthPc : "prosent", +DlgTableHeight : "Hædd", +DlgTableCellSpace : "Fjarstøða millum meskar", +DlgTableCellPad : "Meskubreddi", +DlgTableCaption : "Tabellfrágreiðing", +DlgTableSummary : "Samandráttur", +DlgTableHeaders : "Headers", //MISSING +DlgTableHeadersNone : "None", //MISSING +DlgTableHeadersColumn : "First column", //MISSING +DlgTableHeadersRow : "First Row", //MISSING +DlgTableHeadersBoth : "Both", //MISSING + +// Table Cell Dialog +DlgCellTitle : "Mesku eginleikar", +DlgCellWidth : "Breidd", +DlgCellWidthPx : "pixels", +DlgCellWidthPc : "prosent", +DlgCellHeight : "Hædd", +DlgCellWordWrap : "Orðkloyving", +DlgCellWordWrapNotSet : "", +DlgCellWordWrapYes : "Ja", +DlgCellWordWrapNo : "Nei", +DlgCellHorAlign : "Vatnrøtt justering", +DlgCellHorAlignNotSet : "", +DlgCellHorAlignLeft : "Vinstrasett", +DlgCellHorAlignCenter : "Miðsett", +DlgCellHorAlignRight: "Høgrasett", +DlgCellVerAlign : "Lodrøtt justering", +DlgCellVerAlignNotSet : "", +DlgCellVerAlignTop : "Ovast", +DlgCellVerAlignMiddle : "Miðjan", +DlgCellVerAlignBottom : "Niðast", +DlgCellVerAlignBaseline : "Basislinja", +DlgCellType : "Cell Type", //MISSING +DlgCellTypeData : "Data", //MISSING +DlgCellTypeHeader : "Header", //MISSING +DlgCellRowSpan : "Røðir, meskin fevnir um", +DlgCellCollSpan : "Kolonnur, meskin fevnir um", +DlgCellBackColor : "Bakgrundslitur", +DlgCellBorderColor : "Litur á borda", +DlgCellBtnSelect : "Vel...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "Finn og broyt", + +// Find Dialog +DlgFindTitle : "Finn", +DlgFindFindBtn : "Finn", +DlgFindNotFoundMsg : "Leititeksturin varð ikki funnin", + +// Replace Dialog +DlgReplaceTitle : "Yvirskriva", +DlgReplaceFindLbl : "Finn:", +DlgReplaceReplaceLbl : "Yvirskriva við:", +DlgReplaceCaseChk : "Munur á stórum og smáðum bókstavum", +DlgReplaceReplaceBtn : "Yvirskriva", +DlgReplaceReplAllBtn : "Yvirskriva alt", +DlgReplaceWordChk : "Bert heil orð", + +// Paste Operations / Dialog +PasteErrorCut : "Trygdaruppseting alnótskagans forðar tekstviðgeranum í at kvetta tekstin. Vinarliga nýt knappaborðið til at kvetta tekstin (CTRL+X).", +PasteErrorCopy : "Trygdaruppseting alnótskagans forðar tekstviðgeranum í at avrita tekstin. Vinarliga nýt knappaborðið til at avrita tekstin (CTRL+C).", + +PasteAsText : "Innrita som reinan tekst", +PasteFromWord : "Innrita fra Word", + +DlgPasteMsg2 : "Vinarliga koyr tekstin í hendan rútin við knappaborðinum (CTRL+V) og klikk á Góðtak.", +DlgPasteSec : "Trygdaruppseting alnótskagans forðar tekstviðgeranum í beinleiðis atgongd til avritingarminnið. Tygum mugu royna aftur í hesum rútinum.", +DlgPasteIgnoreFont : "Forfjóna Font definitiónirnar", +DlgPasteRemoveStyles : "Strika typografi definitiónir", + +// Color Picker +ColorAutomatic : "Automatiskt", +ColorMoreColors : "Fleiri litir...", + +// Document Properties +DocProps : "Eginleikar fyri dokument", + +// Anchor Dialog +DlgAnchorTitle : "Eginleikar fyri marknastein", +DlgAnchorName : "Heiti marknasteinsins", +DlgAnchorErrorName : "Vinarliga rita marknasteinsins heiti", + +// Speller Pages Dialog +DlgSpellNotInDic : "Finst ikki í orðabókini", +DlgSpellChangeTo : "Broyt til", +DlgSpellBtnIgnore : "Forfjóna", +DlgSpellBtnIgnoreAll : "Forfjóna alt", +DlgSpellBtnReplace : "Yvirskriva", +DlgSpellBtnReplaceAll : "Yvirskriva alt", +DlgSpellBtnUndo : "Angra", +DlgSpellNoSuggestions : "- Einki uppskot -", +DlgSpellProgress : "Rættstavarin arbeiðir...", +DlgSpellNoMispell : "Rættstavarain liðugur: Eingin feilur funnin", +DlgSpellNoChanges : "Rættstavarain liðugur: Einki orð varð broytt", +DlgSpellOneChange : "Rættstavarain liðugur: Eitt orð er broytt", +DlgSpellManyChanges : "Rættstavarain liðugur: %1 orð broytt", + +IeSpellDownload : "Rættstavarin er ikki tøkur í tekstviðgeranum. Vilt tú heinta hann nú?", + +// Button Dialog +DlgButtonText : "Tekstur", +DlgButtonType : "Slag", +DlgButtonTypeBtn : "Knøttur", +DlgButtonTypeSbm : "Send", +DlgButtonTypeRst : "Nullstilla", + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "Navn", +DlgCheckboxValue : "Virði", +DlgCheckboxSelected : "Valt", + +// Form Dialog +DlgFormName : "Navn", +DlgFormAction : "Hending", +DlgFormMethod : "Háttur", + +// Select Field Dialog +DlgSelectName : "Navn", +DlgSelectValue : "Virði", +DlgSelectSize : "Stødd", +DlgSelectLines : "Linjur", +DlgSelectChkMulti : "Loyv fleiri valmøguleikum samstundis", +DlgSelectOpAvail : "Tøkir møguleikar", +DlgSelectOpText : "Tekstur", +DlgSelectOpValue : "Virði", +DlgSelectBtnAdd : "Legg afturat", +DlgSelectBtnModify : "Broyt", +DlgSelectBtnUp : "Upp", +DlgSelectBtnDown : "Niður", +DlgSelectBtnSetValue : "Set sum valt virði", +DlgSelectBtnDelete : "Strika", + +// Textarea Dialog +DlgTextareaName : "Navn", +DlgTextareaCols : "kolonnur", +DlgTextareaRows : "røðir", + +// Text Field Dialog +DlgTextName : "Navn", +DlgTextValue : "Virði", +DlgTextCharWidth : "Breidd (sjónlig tekn)", +DlgTextMaxChars : "Mest loyvdu tekn", +DlgTextType : "Slag", +DlgTextTypeText : "Tekstur", +DlgTextTypePass : "Loyniorð", + +// Hidden Field Dialog +DlgHiddenName : "Navn", +DlgHiddenValue : "Virði", + +// Bulleted List Dialog +BulletedListProp : "Eginleikar fyri punktmerktan lista", +NumberedListProp : "Eginleikar fyri talmerktan lista", +DlgLstStart : "Byrjan", +DlgLstType : "Slag", +DlgLstTypeCircle : "Sirkul", +DlgLstTypeDisc : "Fyltur sirkul", +DlgLstTypeSquare : "Fjórhyrningur", +DlgLstTypeNumbers : "Talmerkt (1, 2, 3)", +DlgLstTypeLCase : "Smáir bókstavir (a, b, c)", +DlgLstTypeUCase : "Stórir bókstavir (A, B, C)", +DlgLstTypeSRoman : "Smá rómaratøl (i, ii, iii)", +DlgLstTypeLRoman : "Stór rómaratøl (I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "Generelt", +DlgDocBackTab : "Bakgrund", +DlgDocColorsTab : "Litir og breddar", +DlgDocMetaTab : "META-upplýsingar", + +DlgDocPageTitle : "Síðuheiti", +DlgDocLangDir : "Tekstkós", +DlgDocLangDirLTR : "Frá vinstru móti høgru (LTR)", +DlgDocLangDirRTL : "Frá høgru móti vinstru (RTL)", +DlgDocLangCode : "Málkoda", +DlgDocCharSet : "Teknsett koda", +DlgDocCharSetCE : "Miðeuropa", +DlgDocCharSetCT : "Kinesiskt traditionelt (Big5)", +DlgDocCharSetCR : "Cyrilliskt", +DlgDocCharSetGR : "Grikst", +DlgDocCharSetJP : "Japanskt", +DlgDocCharSetKR : "Koreanskt", +DlgDocCharSetTR : "Turkiskt", +DlgDocCharSetUN : "UNICODE (UTF-8)", +DlgDocCharSetWE : "Vestureuropa", +DlgDocCharSetOther : "Onnur teknsett koda", + +DlgDocDocType : "Dokumentslag yvirskrift", +DlgDocDocTypeOther : "Annað dokumentslag yvirskrift", +DlgDocIncXHTML : "Viðfest XHTML deklaratiónir", +DlgDocBgColor : "Bakgrundslitur", +DlgDocBgImage : "Leið til bakgrundsmynd (URL)", +DlgDocBgNoScroll : "Læst bakgrund (rullar ikki)", +DlgDocCText : "Tekstur", +DlgDocCLink : "Tilknýti", +DlgDocCVisited : "Vitjaði tilknýti", +DlgDocCActive : "Virkin tilknýti", +DlgDocMargins : "Síðubreddar", +DlgDocMaTop : "Ovast", +DlgDocMaLeft : "Vinstra", +DlgDocMaRight : "Høgra", +DlgDocMaBottom : "Niðast", +DlgDocMeIndex : "Dokument index lyklaorð (sundurbýtt við komma)", +DlgDocMeDescr : "Dokumentlýsing", +DlgDocMeAuthor : "Høvundur", +DlgDocMeCopy : "Upphavsrættindi", +DlgDocPreview : "Frumsýning", + +// Templates Dialog +Templates : "Skabelónir", +DlgTemplatesTitle : "Innihaldsskabelónir", +DlgTemplatesSelMsg : "Vinarliga vel ta skabelón, ið skal opnast í tekstviðgeranum
(Hetta yvirskrivar núverandi innihald):", +DlgTemplatesLoading : "Heinti yvirlit yvir skabelónir. Vinarliga bíða við...", +DlgTemplatesNoTpl : "(Ongar skabelónir tøkar)", +DlgTemplatesReplace : "Yvirskriva núverandi innihald", + +// About Dialog +DlgAboutAboutTab : "Um", +DlgAboutBrowserInfoTab : "Upplýsingar um alnótskagan", +DlgAboutLicenseTab : "License", +DlgAboutVersion : "version", +DlgAboutInfo : "Fyri fleiri upplýsingar, far til", + +// Div Dialog +DlgDivGeneralTab : "Generelt", +DlgDivAdvancedTab : "Fjølbroytt", +DlgDivStyle : "Typografi", +DlgDivInlineStyle : "Inline typografi", + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/fr-ca.js b/fckeditor/editor/lang/fr-ca.js new file mode 100644 index 0000000..089e5f3 --- /dev/null +++ b/fckeditor/editor/lang/fr-ca.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * Canadian French language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "Masquer Outils", +ToolbarExpand : "Afficher Outils", + +// Toolbar Items and Context Menu +Save : "Sauvegarder", +NewPage : "Nouvelle page", +Preview : "Previsualiser", +Cut : "Couper", +Copy : "Copier", +Paste : "Coller", +PasteText : "Coller en tant que texte", +PasteWord : "Coller en tant que Word (formaté)", +Print : "Imprimer", +SelectAll : "Tout sélectionner", +RemoveFormat : "Supprimer le formatage", +InsertLinkLbl : "Lien", +InsertLink : "Insérer/modifier le lien", +RemoveLink : "Supprimer le lien", +VisitLink : "Suivre le lien", +Anchor : "Insérer/modifier l'ancre", +AnchorDelete : "Supprimer l'ancre", +InsertImageLbl : "Image", +InsertImage : "Insérer/modifier l'image", +InsertFlashLbl : "Animation Flash", +InsertFlash : "Insérer/modifier l'animation Flash", +InsertTableLbl : "Tableau", +InsertTable : "Insérer/modifier le tableau", +InsertLineLbl : "Séparateur", +InsertLine : "Insérer un séparateur", +InsertSpecialCharLbl: "Caractères spéciaux", +InsertSpecialChar : "Insérer un caractère spécial", +InsertSmileyLbl : "Emoticon", +InsertSmiley : "Insérer un Emoticon", +About : "A propos de FCKeditor", +Bold : "Gras", +Italic : "Italique", +Underline : "Souligné", +StrikeThrough : "Barrer", +Subscript : "Indice", +Superscript : "Exposant", +LeftJustify : "Aligner à gauche", +CenterJustify : "Centrer", +RightJustify : "Aligner à Droite", +BlockJustify : "Texte justifié", +DecreaseIndent : "Diminuer le retrait", +IncreaseIndent : "Augmenter le retrait", +Blockquote : "Citation", +CreateDiv : "Créer Balise Div", +EditDiv : "Modifier Balise Div", +DeleteDiv : "Supprimer Balise Div", +Undo : "Annuler", +Redo : "Refaire", +NumberedListLbl : "Liste numérotée", +NumberedList : "Insérer/supprimer la liste numérotée", +BulletedListLbl : "Liste à puces", +BulletedList : "Insérer/supprimer la liste à puces", +ShowTableBorders : "Afficher les bordures du tableau", +ShowDetails : "Afficher les caractères invisibles", +Style : "Style", +FontFormat : "Format", +Font : "Police", +FontSize : "Taille", +TextColor : "Couleur de caractère", +BGColor : "Couleur de fond", +Source : "Source", +Find : "Chercher", +Replace : "Remplacer", +SpellCheck : "Orthographe", +UniversalKeyboard : "Clavier universel", +PageBreakLbl : "Saut de page", +PageBreak : "Insérer un saut de page", + +Form : "Formulaire", +Checkbox : "Case à cocher", +RadioButton : "Bouton radio", +TextField : "Champ texte", +Textarea : "Zone de texte", +HiddenField : "Champ caché", +Button : "Bouton", +SelectionField : "Champ de sélection", +ImageButton : "Bouton image", + +FitWindow : "Edition pleine page", +ShowBlocks : "Afficher les blocs", + +// Context Menu +EditLink : "Modifier le lien", +CellCM : "Cellule", +RowCM : "Ligne", +ColumnCM : "Colonne", +InsertRowAfter : "Insérer une ligne après", +InsertRowBefore : "Insérer une ligne avant", +DeleteRows : "Supprimer des lignes", +InsertColumnAfter : "Insérer une colonne après", +InsertColumnBefore : "Insérer une colonne avant", +DeleteColumns : "Supprimer des colonnes", +InsertCellAfter : "Insérer une cellule après", +InsertCellBefore : "Insérer une cellule avant", +DeleteCells : "Supprimer des cellules", +MergeCells : "Fusionner les cellules", +MergeRight : "Fusionner à droite", +MergeDown : "Fusionner en bas", +HorizontalSplitCell : "Scinder la cellule horizontalement", +VerticalSplitCell : "Scinder la cellule verticalement", +TableDelete : "Supprimer le tableau", +CellProperties : "Propriétés de cellule", +TableProperties : "Propriétés du tableau", +ImageProperties : "Propriétés de l'image", +FlashProperties : "Propriétés de l'animation Flash", + +AnchorProp : "Propriétés de l'ancre", +ButtonProp : "Propriétés du bouton", +CheckboxProp : "Propriétés de la case à cocher", +HiddenFieldProp : "Propriétés du champ caché", +RadioButtonProp : "Propriétés du bouton radio", +ImageButtonProp : "Propriétés du bouton image", +TextFieldProp : "Propriétés du champ texte", +SelectionFieldProp : "Propriétés de la liste/du menu", +TextareaProp : "Propriétés de la zone de texte", +FormProp : "Propriétés du formulaire", + +FontFormats : "Normal;Formaté;Adresse;En-tête 1;En-tête 2;En-tête 3;En-tête 4;En-tête 5;En-tête 6;Normal (DIV)", + +// Alerts and Messages +ProcessingXHTML : "Calcul XHTML. Veuillez patienter...", +Done : "Terminé", +PasteWordConfirm : "Le texte à coller semble provenir de Word. Désirez-vous le nettoyer avant de coller?", +NotCompatiblePaste : "Cette commande nécessite Internet Explorer version 5.5 et plus. Souhaitez-vous coller sans nettoyage?", +UnknownToolbarItem : "Élément de barre d'outil inconnu \"%1\"", +UnknownCommand : "Nom de commande inconnu \"%1\"", +NotImplemented : "Commande indisponible", +UnknownToolbarSet : "La barre d'outils \"%1\" n'existe pas", +NoActiveX : "Les paramètres de sécurité de votre navigateur peuvent limiter quelques fonctionnalités de l'éditeur. Veuillez activer l'option \"Exécuter les contrôles ActiveX et les plug-ins\". Il se peut que vous rencontriez des erreurs et remarquiez quelques limitations.", +BrowseServerBlocked : "Le navigateur n'a pas pu être ouvert. Assurez-vous que les bloqueurs de popups soient désactivés.", +DialogBlocked : "La fenêtre de dialogue n'a pas pu s'ouvrir. Assurez-vous que les bloqueurs de popups soient désactivés.", +VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING + +// Dialogs +DlgBtnOK : "OK", +DlgBtnCancel : "Annuler", +DlgBtnClose : "Fermer", +DlgBtnBrowseServer : "Parcourir le serveur", +DlgAdvancedTag : "Avancée", +DlgOpOther : "", +DlgInfoTab : "Info", +DlgAlertUrl : "Veuillez saisir l'URL", + +// General Dialogs Labels +DlgGenNotSet : "", +DlgGenId : "Id", +DlgGenLangDir : "Sens d'écriture", +DlgGenLangDirLtr : "De gauche à droite (LTR)", +DlgGenLangDirRtl : "De droite à gauche (RTL)", +DlgGenLangCode : "Code langue", +DlgGenAccessKey : "Équivalent clavier", +DlgGenName : "Nom", +DlgGenTabIndex : "Ordre de tabulation", +DlgGenLongDescr : "URL de description longue", +DlgGenClass : "Classes de feuilles de style", +DlgGenTitle : "Titre", +DlgGenContType : "Type de contenu", +DlgGenLinkCharset : "Encodage de caractère", +DlgGenStyle : "Style", + +// Image Dialog +DlgImgTitle : "Propriétés de l'image", +DlgImgInfoTab : "Informations sur l'image", +DlgImgBtnUpload : "Envoyer sur le serveur", +DlgImgURL : "URL", +DlgImgUpload : "Télécharger", +DlgImgAlt : "Texte de remplacement", +DlgImgWidth : "Largeur", +DlgImgHeight : "Hauteur", +DlgImgLockRatio : "Garder les proportions", +DlgBtnResetSize : "Taille originale", +DlgImgBorder : "Bordure", +DlgImgHSpace : "Espacement horizontal", +DlgImgVSpace : "Espacement vertical", +DlgImgAlign : "Alignement", +DlgImgAlignLeft : "Gauche", +DlgImgAlignAbsBottom: "Abs Bas", +DlgImgAlignAbsMiddle: "Abs Milieu", +DlgImgAlignBaseline : "Bas du texte", +DlgImgAlignBottom : "Bas", +DlgImgAlignMiddle : "Milieu", +DlgImgAlignRight : "Droite", +DlgImgAlignTextTop : "Haut du texte", +DlgImgAlignTop : "Haut", +DlgImgPreview : "Prévisualisation", +DlgImgAlertUrl : "Veuillez saisir l'URL de l'image", +DlgImgLinkTab : "Lien", + +// Flash Dialog +DlgFlashTitle : "Propriétés de l'animation Flash", +DlgFlashChkPlay : "Lecture automatique", +DlgFlashChkLoop : "Boucle", +DlgFlashChkMenu : "Activer le menu Flash", +DlgFlashScale : "Affichage", +DlgFlashScaleAll : "Par défaut (tout montrer)", +DlgFlashScaleNoBorder : "Sans bordure", +DlgFlashScaleFit : "Ajuster aux dimensions", + +// Link Dialog +DlgLnkWindowTitle : "Propriétés du lien", +DlgLnkInfoTab : "Informations sur le lien", +DlgLnkTargetTab : "Destination", + +DlgLnkType : "Type de lien", +DlgLnkTypeURL : "URL", +DlgLnkTypeAnchor : "Ancre dans cette page", +DlgLnkTypeEMail : "E-Mail", +DlgLnkProto : "Protocole", +DlgLnkProtoOther : "", +DlgLnkURL : "URL", +DlgLnkAnchorSel : "Sélectionner une ancre", +DlgLnkAnchorByName : "Par nom", +DlgLnkAnchorById : "Par id", +DlgLnkNoAnchors : "(Pas d'ancre disponible dans le document)", +DlgLnkEMail : "Adresse E-Mail", +DlgLnkEMailSubject : "Sujet du message", +DlgLnkEMailBody : "Corps du message", +DlgLnkUpload : "Télécharger", +DlgLnkBtnUpload : "Envoyer sur le serveur", + +DlgLnkTarget : "Destination", +DlgLnkTargetFrame : "", +DlgLnkTargetPopup : "", +DlgLnkTargetBlank : "Nouvelle fenêtre (_blank)", +DlgLnkTargetParent : "Fenêtre mère (_parent)", +DlgLnkTargetSelf : "Même fenêtre (_self)", +DlgLnkTargetTop : "Fenêtre supérieure (_top)", +DlgLnkTargetFrameName : "Nom du cadre de destination", +DlgLnkPopWinName : "Nom de la fenêtre popup", +DlgLnkPopWinFeat : "Caractéristiques de la fenêtre popup", +DlgLnkPopResize : "Taille modifiable", +DlgLnkPopLocation : "Barre d'adresses", +DlgLnkPopMenu : "Barre de menu", +DlgLnkPopScroll : "Barres de défilement", +DlgLnkPopStatus : "Barre d'état", +DlgLnkPopToolbar : "Barre d'outils", +DlgLnkPopFullScrn : "Plein écran (IE)", +DlgLnkPopDependent : "Dépendante (Netscape)", +DlgLnkPopWidth : "Largeur", +DlgLnkPopHeight : "Hauteur", +DlgLnkPopLeft : "Position à partir de la gauche", +DlgLnkPopTop : "Position à partir du haut", + +DlnLnkMsgNoUrl : "Veuillez saisir l'URL", +DlnLnkMsgNoEMail : "Veuillez saisir l'adresse e-mail", +DlnLnkMsgNoAnchor : "Veuillez sélectionner une ancre", +DlnLnkMsgInvPopName : "Le nom de la fenêtre popup doit commencer par une lettre et ne doit pas contenir d'espace", + +// Color Dialog +DlgColorTitle : "Sélectionner", +DlgColorBtnClear : "Effacer", +DlgColorHighlight : "Prévisualisation", +DlgColorSelected : "Sélectionné", + +// Smiley Dialog +DlgSmileyTitle : "Insérer un Emoticon", + +// Special Character Dialog +DlgSpecialCharTitle : "Insérer un caractère spécial", + +// Table Dialog +DlgTableTitle : "Propriétés du tableau", +DlgTableRows : "Lignes", +DlgTableColumns : "Colonnes", +DlgTableBorder : "Taille de la bordure", +DlgTableAlign : "Alignement", +DlgTableAlignNotSet : "", +DlgTableAlignLeft : "Gauche", +DlgTableAlignCenter : "Centré", +DlgTableAlignRight : "Droite", +DlgTableWidth : "Largeur", +DlgTableWidthPx : "pixels", +DlgTableWidthPc : "pourcentage", +DlgTableHeight : "Hauteur", +DlgTableCellSpace : "Espacement", +DlgTableCellPad : "Contour", +DlgTableCaption : "Titre", +DlgTableSummary : "Résumé", +DlgTableHeaders : "Headers", //MISSING +DlgTableHeadersNone : "None", //MISSING +DlgTableHeadersColumn : "First column", //MISSING +DlgTableHeadersRow : "First Row", //MISSING +DlgTableHeadersBoth : "Both", //MISSING + +// Table Cell Dialog +DlgCellTitle : "Propriétés de la cellule", +DlgCellWidth : "Largeur", +DlgCellWidthPx : "pixels", +DlgCellWidthPc : "pourcentage", +DlgCellHeight : "Hauteur", +DlgCellWordWrap : "Retour à la ligne", +DlgCellWordWrapNotSet : "", +DlgCellWordWrapYes : "Oui", +DlgCellWordWrapNo : "Non", +DlgCellHorAlign : "Alignement horizontal", +DlgCellHorAlignNotSet : "", +DlgCellHorAlignLeft : "Gauche", +DlgCellHorAlignCenter : "Centré", +DlgCellHorAlignRight: "Droite", +DlgCellVerAlign : "Alignement vertical", +DlgCellVerAlignNotSet : "", +DlgCellVerAlignTop : "Haut", +DlgCellVerAlignMiddle : "Milieu", +DlgCellVerAlignBottom : "Bas", +DlgCellVerAlignBaseline : "Bas du texte", +DlgCellType : "Cell Type", //MISSING +DlgCellTypeData : "Data", //MISSING +DlgCellTypeHeader : "Header", //MISSING +DlgCellRowSpan : "Lignes fusionnées", +DlgCellCollSpan : "Colonnes fusionnées", +DlgCellBackColor : "Couleur de fond", +DlgCellBorderColor : "Couleur de bordure", +DlgCellBtnSelect : "Sélectionner...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "Chercher et Remplacer", + +// Find Dialog +DlgFindTitle : "Chercher", +DlgFindFindBtn : "Chercher", +DlgFindNotFoundMsg : "Le texte indiqué est introuvable.", + +// Replace Dialog +DlgReplaceTitle : "Remplacer", +DlgReplaceFindLbl : "Rechercher:", +DlgReplaceReplaceLbl : "Remplacer par:", +DlgReplaceCaseChk : "Respecter la casse", +DlgReplaceReplaceBtn : "Remplacer", +DlgReplaceReplAllBtn : "Tout remplacer", +DlgReplaceWordChk : "Mot entier", + +// Paste Operations / Dialog +PasteErrorCut : "Les paramètres de sécurité de votre navigateur empêchent l'éditeur de couper automatiquement vos données. Veuillez utiliser les équivalents claviers (Ctrl+X).", +PasteErrorCopy : "Les paramètres de sécurité de votre navigateur empêchent l'éditeur de copier automatiquement vos données. Veuillez utiliser les équivalents claviers (Ctrl+C).", + +PasteAsText : "Coller comme texte", +PasteFromWord : "Coller à partir de Word", + +DlgPasteMsg2 : "Veuillez coller dans la zone ci-dessous en utilisant le clavier (Ctrl+V) et appuyer sur OK.", +DlgPasteSec : "A cause des paramètres de sécurité de votre navigateur, l'éditeur ne peut accéder au presse-papier directement. Vous devez coller à nouveau le contenu dans cette fenêtre.", +DlgPasteIgnoreFont : "Ignorer les polices de caractères", +DlgPasteRemoveStyles : "Supprimer les styles", + +// Color Picker +ColorAutomatic : "Automatique", +ColorMoreColors : "Plus de couleurs...", + +// Document Properties +DocProps : "Propriétés du document", + +// Anchor Dialog +DlgAnchorTitle : "Propriétés de l'ancre", +DlgAnchorName : "Nom de l'ancre", +DlgAnchorErrorName : "Veuillez saisir le nom de l'ancre", + +// Speller Pages Dialog +DlgSpellNotInDic : "Pas dans le dictionnaire", +DlgSpellChangeTo : "Changer en", +DlgSpellBtnIgnore : "Ignorer", +DlgSpellBtnIgnoreAll : "Ignorer tout", +DlgSpellBtnReplace : "Remplacer", +DlgSpellBtnReplaceAll : "Remplacer tout", +DlgSpellBtnUndo : "Annuler", +DlgSpellNoSuggestions : "- Pas de suggestion -", +DlgSpellProgress : "Vérification d'orthographe en cours...", +DlgSpellNoMispell : "Vérification d'orthographe terminée: pas d'erreur trouvée", +DlgSpellNoChanges : "Vérification d'orthographe terminée: Pas de modifications", +DlgSpellOneChange : "Vérification d'orthographe terminée: Un mot modifié", +DlgSpellManyChanges : "Vérification d'orthographe terminée: %1 mots modifiés", + +IeSpellDownload : "Le Correcteur d'orthographe n'est pas installé. Souhaitez-vous le télécharger maintenant?", + +// Button Dialog +DlgButtonText : "Texte (Valeur)", +DlgButtonType : "Type", +DlgButtonTypeBtn : "Bouton", +DlgButtonTypeSbm : "Soumettre", +DlgButtonTypeRst : "Réinitialiser", + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "Nom", +DlgCheckboxValue : "Valeur", +DlgCheckboxSelected : "Sélectionné", + +// Form Dialog +DlgFormName : "Nom", +DlgFormAction : "Action", +DlgFormMethod : "Méthode", + +// Select Field Dialog +DlgSelectName : "Nom", +DlgSelectValue : "Valeur", +DlgSelectSize : "Taille", +DlgSelectLines : "lignes", +DlgSelectChkMulti : "Sélection multiple", +DlgSelectOpAvail : "Options disponibles", +DlgSelectOpText : "Texte", +DlgSelectOpValue : "Valeur", +DlgSelectBtnAdd : "Ajouter", +DlgSelectBtnModify : "Modifier", +DlgSelectBtnUp : "Monter", +DlgSelectBtnDown : "Descendre", +DlgSelectBtnSetValue : "Valeur sélectionnée", +DlgSelectBtnDelete : "Supprimer", + +// Textarea Dialog +DlgTextareaName : "Nom", +DlgTextareaCols : "Colonnes", +DlgTextareaRows : "Lignes", + +// Text Field Dialog +DlgTextName : "Nom", +DlgTextValue : "Valeur", +DlgTextCharWidth : "Largeur en caractères", +DlgTextMaxChars : "Nombre maximum de caractères", +DlgTextType : "Type", +DlgTextTypeText : "Texte", +DlgTextTypePass : "Mot de passe", + +// Hidden Field Dialog +DlgHiddenName : "Nom", +DlgHiddenValue : "Valeur", + +// Bulleted List Dialog +BulletedListProp : "Propriétés de liste à puces", +NumberedListProp : "Propriétés de liste numérotée", +DlgLstStart : "Début", +DlgLstType : "Type", +DlgLstTypeCircle : "Cercle", +DlgLstTypeDisc : "Disque", +DlgLstTypeSquare : "Carré", +DlgLstTypeNumbers : "Nombres (1, 2, 3)", +DlgLstTypeLCase : "Lettres minuscules (a, b, c)", +DlgLstTypeUCase : "Lettres majuscules (A, B, C)", +DlgLstTypeSRoman : "Chiffres romains minuscules (i, ii, iii)", +DlgLstTypeLRoman : "Chiffres romains majuscules (I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "Général", +DlgDocBackTab : "Fond", +DlgDocColorsTab : "Couleurs et Marges", +DlgDocMetaTab : "Méta-Données", + +DlgDocPageTitle : "Titre de la page", +DlgDocLangDir : "Sens d'écriture", +DlgDocLangDirLTR : "De la gauche vers la droite (LTR)", +DlgDocLangDirRTL : "De la droite vers la gauche (RTL)", +DlgDocLangCode : "Code langue", +DlgDocCharSet : "Encodage de caractère", +DlgDocCharSetCE : "Europe Centrale", +DlgDocCharSetCT : "Chinois Traditionnel (Big5)", +DlgDocCharSetCR : "Cyrillique", +DlgDocCharSetGR : "Grecque", +DlgDocCharSetJP : "Japonais", +DlgDocCharSetKR : "Coréen", +DlgDocCharSetTR : "Turcque", +DlgDocCharSetUN : "Unicode (UTF-8)", +DlgDocCharSetWE : "Occidental", +DlgDocCharSetOther : "Autre encodage de caractère", + +DlgDocDocType : "Type de document", +DlgDocDocTypeOther : "Autre type de document", +DlgDocIncXHTML : "Inclure les déclarations XHTML", +DlgDocBgColor : "Couleur de fond", +DlgDocBgImage : "Image de fond", +DlgDocBgNoScroll : "Image fixe sans défilement", +DlgDocCText : "Texte", +DlgDocCLink : "Lien", +DlgDocCVisited : "Lien visité", +DlgDocCActive : "Lien activé", +DlgDocMargins : "Marges", +DlgDocMaTop : "Haut", +DlgDocMaLeft : "Gauche", +DlgDocMaRight : "Droite", +DlgDocMaBottom : "Bas", +DlgDocMeIndex : "Mots-clés (séparés par des virgules)", +DlgDocMeDescr : "Description", +DlgDocMeAuthor : "Auteur", +DlgDocMeCopy : "Copyright", +DlgDocPreview : "Prévisualisation", + +// Templates Dialog +Templates : "Modèles", +DlgTemplatesTitle : "Modèles de contenu", +DlgTemplatesSelMsg : "Sélectionner le modèle à ouvrir dans l'éditeur
(le contenu actuel sera remplacé):", +DlgTemplatesLoading : "Chargement de la liste des modèles. Veuillez patienter...", +DlgTemplatesNoTpl : "(Aucun modèle disponible)", +DlgTemplatesReplace : "Remplacer tout le contenu actuel", + +// About Dialog +DlgAboutAboutTab : "Á propos de", +DlgAboutBrowserInfoTab : "Navigateur", +DlgAboutLicenseTab : "License", +DlgAboutVersion : "Version", +DlgAboutInfo : "Pour plus d'informations, visiter", + +// Div Dialog +DlgDivGeneralTab : "Général", +DlgDivAdvancedTab : "Avancé", +DlgDivStyle : "Style", +DlgDivInlineStyle : "Attribut Style", + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/fr.js b/fckeditor/editor/lang/fr.js new file mode 100644 index 0000000..3620dbc --- /dev/null +++ b/fckeditor/editor/lang/fr.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * French language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "Masquer Outils", +ToolbarExpand : "Afficher Outils", + +// Toolbar Items and Context Menu +Save : "Enregistrer", +NewPage : "Nouvelle page", +Preview : "Prévisualisation", +Cut : "Couper", +Copy : "Copier", +Paste : "Coller", +PasteText : "Coller comme texte", +PasteWord : "Coller de Word", +Print : "Imprimer", +SelectAll : "Tout sélectionner", +RemoveFormat : "Supprimer le format", +InsertLinkLbl : "Lien", +InsertLink : "Insérer/modifier le lien", +RemoveLink : "Supprimer le lien", +VisitLink : "Suivre le lien", +Anchor : "Insérer/modifier l'ancre", +AnchorDelete : "Supprimer l'ancre", +InsertImageLbl : "Image", +InsertImage : "Insérer/modifier l'image", +InsertFlashLbl : "Animation Flash", +InsertFlash : "Insérer/modifier l'animation Flash", +InsertTableLbl : "Tableau", +InsertTable : "Insérer/modifier le tableau", +InsertLineLbl : "Séparateur", +InsertLine : "Insérer un séparateur", +InsertSpecialCharLbl: "Caractères spéciaux", +InsertSpecialChar : "Insérer un caractère spécial", +InsertSmileyLbl : "Smiley", +InsertSmiley : "Insérer un Smiley", +About : "A propos de FCKeditor", +Bold : "Gras", +Italic : "Italique", +Underline : "Souligné", +StrikeThrough : "Barré", +Subscript : "Indice", +Superscript : "Exposant", +LeftJustify : "Aligné à gauche", +CenterJustify : "Centré", +RightJustify : "Aligné à Droite", +BlockJustify : "Texte justifié", +DecreaseIndent : "Diminuer le retrait", +IncreaseIndent : "Augmenter le retrait", +Blockquote : "Citation", +CreateDiv : "Créer Balise Div", +EditDiv : "Modifier Balise Div", +DeleteDiv : "Supprimer Balise Div", +Undo : "Annuler", +Redo : "Refaire", +NumberedListLbl : "Liste numérotée", +NumberedList : "Insérer/supprimer la liste numérotée", +BulletedListLbl : "Liste à puces", +BulletedList : "Insérer/supprimer la liste à puces", +ShowTableBorders : "Afficher les bordures du tableau", +ShowDetails : "Afficher les caractères invisibles", +Style : "Style", +FontFormat : "Format", +Font : "Police", +FontSize : "Taille", +TextColor : "Couleur de caractère", +BGColor : "Couleur de fond", +Source : "Source", +Find : "Chercher", +Replace : "Remplacer", +SpellCheck : "Orthographe", +UniversalKeyboard : "Clavier universel", +PageBreakLbl : "Saut de page", +PageBreak : "Insérer un saut de page", + +Form : "Formulaire", +Checkbox : "Case à cocher", +RadioButton : "Bouton radio", +TextField : "Champ texte", +Textarea : "Zone de texte", +HiddenField : "Champ caché", +Button : "Bouton", +SelectionField : "Liste/menu", +ImageButton : "Bouton image", + +FitWindow : "Edition pleine page", +ShowBlocks : "Afficher les blocs", + +// Context Menu +EditLink : "Modifier le lien", +CellCM : "Cellule", +RowCM : "Ligne", +ColumnCM : "Colonne", +InsertRowAfter : "Insérer une ligne après", +InsertRowBefore : "Insérer une ligne avant", +DeleteRows : "Supprimer des lignes", +InsertColumnAfter : "Insérer une colonne après", +InsertColumnBefore : "Insérer une colonne avant", +DeleteColumns : "Supprimer des colonnes", +InsertCellAfter : "Insérer une cellule après", +InsertCellBefore : "Insérer une cellule avant", +DeleteCells : "Supprimer des cellules", +MergeCells : "Fusionner les cellules", +MergeRight : "Fusionner à droite", +MergeDown : "Fusionner en bas", +HorizontalSplitCell : "Scinder la cellule horizontalement", +VerticalSplitCell : "Scinder la cellule verticalement", +TableDelete : "Supprimer le tableau", +CellProperties : "Propriétés de cellule", +TableProperties : "Propriétés du tableau", +ImageProperties : "Propriétés de l'image", +FlashProperties : "Propriétés de l'animation Flash", + +AnchorProp : "Propriétés de l'ancre", +ButtonProp : "Propriétés du bouton", +CheckboxProp : "Propriétés de la case à cocher", +HiddenFieldProp : "Propriétés du champ caché", +RadioButtonProp : "Propriétés du bouton radio", +ImageButtonProp : "Propriétés du bouton image", +TextFieldProp : "Propriétés du champ texte", +SelectionFieldProp : "Propriétés de la liste/du menu", +TextareaProp : "Propriétés de la zone de texte", +FormProp : "Propriétés du formulaire", + +FontFormats : "Normal;Formaté;Adresse;En-tête 1;En-tête 2;En-tête 3;En-tête 4;En-tête 5;En-tête 6;Normal (DIV)", + +// Alerts and Messages +ProcessingXHTML : "Calcul XHTML. Veuillez patienter...", +Done : "Terminé", +PasteWordConfirm : "Le texte à coller semble provenir de Word. Désirez-vous le nettoyer avant de coller?", +NotCompatiblePaste : "Cette commande nécessite Internet Explorer version 5.5 minimum. Souhaitez-vous coller sans nettoyage?", +UnknownToolbarItem : "Elément de barre d'outil inconnu \"%1\"", +UnknownCommand : "Nom de commande inconnu \"%1\"", +NotImplemented : "Commande non encore écrite", +UnknownToolbarSet : "La barre d'outils \"%1\" n'existe pas", +NoActiveX : "Les paramètres de sécurité de votre navigateur peuvent limiter quelques fonctionnalités de l'éditeur. Veuillez activer l'option \"Exécuter les contrôles ActiveX et les plug-ins\". Il se peut que vous rencontriez des erreurs et remarquiez quelques limitations.", +BrowseServerBlocked : "Le navigateur n'a pas pu être ouvert. Assurez-vous que les bloqueurs de popups soient désactivés.", +DialogBlocked : "La fenêtre de dialogue n'a pas pu s'ouvrir. Assurez-vous que les bloqueurs de popups soient désactivés.", +VisitLinkBlocked : "Impossible d'ouvrir une nouvelle fenêtre. Assurez-vous que les bloqueurs de popups soient désactivés.", + +// Dialogs +DlgBtnOK : "OK", +DlgBtnCancel : "Annuler", +DlgBtnClose : "Fermer", +DlgBtnBrowseServer : "Parcourir le serveur", +DlgAdvancedTag : "Avancé", +DlgOpOther : "", +DlgInfoTab : "Info", +DlgAlertUrl : "Veuillez saisir l'URL", + +// General Dialogs Labels +DlgGenNotSet : "", +DlgGenId : "Id", +DlgGenLangDir : "Sens d'écriture", +DlgGenLangDirLtr : "De gauche à droite (LTR)", +DlgGenLangDirRtl : "De droite à gauche (RTL)", +DlgGenLangCode : "Code langue", +DlgGenAccessKey : "Equivalent clavier", +DlgGenName : "Nom", +DlgGenTabIndex : "Ordre de tabulation", +DlgGenLongDescr : "URL de description longue", +DlgGenClass : "Classes de feuilles de style", +DlgGenTitle : "Titre", +DlgGenContType : "Type de contenu", +DlgGenLinkCharset : "Encodage de caractère", +DlgGenStyle : "Style", + +// Image Dialog +DlgImgTitle : "Propriétés de l'image", +DlgImgInfoTab : "Informations sur l'image", +DlgImgBtnUpload : "Envoyer sur le serveur", +DlgImgURL : "URL", +DlgImgUpload : "Télécharger", +DlgImgAlt : "Texte de remplacement", +DlgImgWidth : "Largeur", +DlgImgHeight : "Hauteur", +DlgImgLockRatio : "Garder les proportions", +DlgBtnResetSize : "Taille originale", +DlgImgBorder : "Bordure", +DlgImgHSpace : "Espacement horizontal", +DlgImgVSpace : "Espacement vertical", +DlgImgAlign : "Alignement", +DlgImgAlignLeft : "Gauche", +DlgImgAlignAbsBottom: "Abs Bas", +DlgImgAlignAbsMiddle: "Abs Milieu", +DlgImgAlignBaseline : "Bas du texte", +DlgImgAlignBottom : "Bas", +DlgImgAlignMiddle : "Milieu", +DlgImgAlignRight : "Droite", +DlgImgAlignTextTop : "Haut du texte", +DlgImgAlignTop : "Haut", +DlgImgPreview : "Prévisualisation", +DlgImgAlertUrl : "Veuillez saisir l'URL de l'image", +DlgImgLinkTab : "Lien", + +// Flash Dialog +DlgFlashTitle : "Propriétés de l'animation Flash", +DlgFlashChkPlay : "Lecture automatique", +DlgFlashChkLoop : "Boucle", +DlgFlashChkMenu : "Activer le menu Flash", +DlgFlashScale : "Affichage", +DlgFlashScaleAll : "Par défaut (tout montrer)", +DlgFlashScaleNoBorder : "Sans bordure", +DlgFlashScaleFit : "Ajuster aux dimensions", + +// Link Dialog +DlgLnkWindowTitle : "Propriétés du lien", +DlgLnkInfoTab : "Informations sur le lien", +DlgLnkTargetTab : "Destination", + +DlgLnkType : "Type de lien", +DlgLnkTypeURL : "URL", +DlgLnkTypeAnchor : "Ancre dans cette page", +DlgLnkTypeEMail : "E-Mail", +DlgLnkProto : "Protocole", +DlgLnkProtoOther : "", +DlgLnkURL : "URL", +DlgLnkAnchorSel : "Sélectionner une ancre", +DlgLnkAnchorByName : "Par nom", +DlgLnkAnchorById : "Par id", +DlgLnkNoAnchors : "(Pas d'ancre disponible dans le document)", +DlgLnkEMail : "Adresse E-Mail", +DlgLnkEMailSubject : "Sujet du message", +DlgLnkEMailBody : "Corps du message", +DlgLnkUpload : "Télécharger", +DlgLnkBtnUpload : "Envoyer sur le serveur", + +DlgLnkTarget : "Destination", +DlgLnkTargetFrame : "", +DlgLnkTargetPopup : "", +DlgLnkTargetBlank : "Nouvelle fenêtre (_blank)", +DlgLnkTargetParent : "Fenêtre mère (_parent)", +DlgLnkTargetSelf : "Même fenêtre (_self)", +DlgLnkTargetTop : "Fenêtre supérieure (_top)", +DlgLnkTargetFrameName : "Nom du cadre de destination", +DlgLnkPopWinName : "Nom de la fenêtre popup", +DlgLnkPopWinFeat : "Caractéristiques de la fenêtre popup", +DlgLnkPopResize : "Taille modifiable", +DlgLnkPopLocation : "Barre d'adresses", +DlgLnkPopMenu : "Barre de menu", +DlgLnkPopScroll : "Barres de défilement", +DlgLnkPopStatus : "Barre d'état", +DlgLnkPopToolbar : "Barre d'outils", +DlgLnkPopFullScrn : "Plein écran (IE)", +DlgLnkPopDependent : "Dépendante (Netscape)", +DlgLnkPopWidth : "Largeur", +DlgLnkPopHeight : "Hauteur", +DlgLnkPopLeft : "Position à partir de la gauche", +DlgLnkPopTop : "Position à partir du haut", + +DlnLnkMsgNoUrl : "Veuillez saisir l'URL", +DlnLnkMsgNoEMail : "Veuillez saisir l'adresse e-mail", +DlnLnkMsgNoAnchor : "Veuillez sélectionner une ancre", +DlnLnkMsgInvPopName : "Le nom de la fenêtre popup doit commencer par une lettre et ne doit pas contenir d'espace", + +// Color Dialog +DlgColorTitle : "Sélectionner", +DlgColorBtnClear : "Effacer", +DlgColorHighlight : "Prévisualisation", +DlgColorSelected : "Sélectionné", + +// Smiley Dialog +DlgSmileyTitle : "Insérer un Smiley", + +// Special Character Dialog +DlgSpecialCharTitle : "Insérer un caractère spécial", + +// Table Dialog +DlgTableTitle : "Propriétés du tableau", +DlgTableRows : "Lignes", +DlgTableColumns : "Colonnes", +DlgTableBorder : "Bordure", +DlgTableAlign : "Alignement", +DlgTableAlignNotSet : "", +DlgTableAlignLeft : "Gauche", +DlgTableAlignCenter : "Centré", +DlgTableAlignRight : "Droite", +DlgTableWidth : "Largeur", +DlgTableWidthPx : "pixels", +DlgTableWidthPc : "pourcentage", +DlgTableHeight : "Hauteur", +DlgTableCellSpace : "Espacement", +DlgTableCellPad : "Contour", +DlgTableCaption : "Titre", +DlgTableSummary : "Résumé", +DlgTableHeaders : "Entêtes", +DlgTableHeadersNone : "Sans", +DlgTableHeadersColumn : "Première colonne", +DlgTableHeadersRow : "Première Ligne", +DlgTableHeadersBoth : "Les 2", + +// Table Cell Dialog +DlgCellTitle : "Propriétés de la cellule", +DlgCellWidth : "Largeur", +DlgCellWidthPx : "pixels", +DlgCellWidthPc : "pourcentage", +DlgCellHeight : "Hauteur", +DlgCellWordWrap : "Retour à la ligne", +DlgCellWordWrapNotSet : "", +DlgCellWordWrapYes : "Oui", +DlgCellWordWrapNo : "Non", +DlgCellHorAlign : "Alignement horizontal", +DlgCellHorAlignNotSet : "", +DlgCellHorAlignLeft : "Gauche", +DlgCellHorAlignCenter : "Centré", +DlgCellHorAlignRight: "Droite", +DlgCellVerAlign : "Alignement vertical", +DlgCellVerAlignNotSet : "", +DlgCellVerAlignTop : "Haut", +DlgCellVerAlignMiddle : "Milieu", +DlgCellVerAlignBottom : "Bas", +DlgCellVerAlignBaseline : "Bas du texte", +DlgCellType : "Type de Cellule", +DlgCellTypeData : "Données", +DlgCellTypeHeader : "Entête", +DlgCellRowSpan : "Lignes fusionnées", +DlgCellCollSpan : "Colonnes fusionnées", +DlgCellBackColor : "Fond", +DlgCellBorderColor : "Bordure", +DlgCellBtnSelect : "Choisir...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "Chercher et Remplacer", + +// Find Dialog +DlgFindTitle : "Chercher", +DlgFindFindBtn : "Chercher", +DlgFindNotFoundMsg : "Le texte indiqué est introuvable.", + +// Replace Dialog +DlgReplaceTitle : "Remplacer", +DlgReplaceFindLbl : "Rechercher:", +DlgReplaceReplaceLbl : "Remplacer par:", +DlgReplaceCaseChk : "Respecter la casse", +DlgReplaceReplaceBtn : "Remplacer", +DlgReplaceReplAllBtn : "Tout remplacer", +DlgReplaceWordChk : "Mot entier", + +// Paste Operations / Dialog +PasteErrorCut : "Les paramètres de sécurité de votre navigateur empêchent l'éditeur de couper automatiquement vos données. Veuillez utiliser les équivalents claviers (Ctrl+X).", +PasteErrorCopy : "Les paramètres de sécurité de votre navigateur empêchent l'éditeur de copier automatiquement vos données. Veuillez utiliser les équivalents claviers (Ctrl+C).", + +PasteAsText : "Coller comme texte", +PasteFromWord : "Coller à partir de Word", + +DlgPasteMsg2 : "Veuillez coller dans la zone ci-dessous en utilisant le clavier (Ctrl+V) et cliquez sur OK.", +DlgPasteSec : "A cause des paramètres de sécurité de votre navigateur, l'éditeur ne peut accéder au presse-papier directement. Vous devez coller à nouveau le contenu dans cette fenêtre.", +DlgPasteIgnoreFont : "Ignorer les polices de caractères", +DlgPasteRemoveStyles : "Supprimer les styles", + +// Color Picker +ColorAutomatic : "Automatique", +ColorMoreColors : "Plus de couleurs...", + +// Document Properties +DocProps : "Propriétés du document", + +// Anchor Dialog +DlgAnchorTitle : "Propriétés de l'ancre", +DlgAnchorName : "Nom de l'ancre", +DlgAnchorErrorName : "Veuillez saisir le nom de l'ancre", + +// Speller Pages Dialog +DlgSpellNotInDic : "Pas dans le dictionnaire", +DlgSpellChangeTo : "Changer en", +DlgSpellBtnIgnore : "Ignorer", +DlgSpellBtnIgnoreAll : "Ignorer tout", +DlgSpellBtnReplace : "Remplacer", +DlgSpellBtnReplaceAll : "Remplacer tout", +DlgSpellBtnUndo : "Annuler", +DlgSpellNoSuggestions : "- Aucune suggestion -", +DlgSpellProgress : "Vérification d'orthographe en cours...", +DlgSpellNoMispell : "Vérification d'orthographe terminée: Aucune erreur trouvée", +DlgSpellNoChanges : "Vérification d'orthographe terminée: Pas de modifications", +DlgSpellOneChange : "Vérification d'orthographe terminée: Un mot modifié", +DlgSpellManyChanges : "Vérification d'orthographe terminée: %1 mots modifiés", + +IeSpellDownload : "Le Correcteur n'est pas installé. Souhaitez-vous le télécharger maintenant?", + +// Button Dialog +DlgButtonText : "Texte (valeur)", +DlgButtonType : "Type", +DlgButtonTypeBtn : "Bouton", +DlgButtonTypeSbm : "Envoyer", +DlgButtonTypeRst : "Réinitialiser", + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "Nom", +DlgCheckboxValue : "Valeur", +DlgCheckboxSelected : "Sélectionné", + +// Form Dialog +DlgFormName : "Nom", +DlgFormAction : "Action", +DlgFormMethod : "Méthode", + +// Select Field Dialog +DlgSelectName : "Nom", +DlgSelectValue : "Valeur", +DlgSelectSize : "Taille", +DlgSelectLines : "lignes", +DlgSelectChkMulti : "Sélection multiple", +DlgSelectOpAvail : "Options disponibles", +DlgSelectOpText : "Texte", +DlgSelectOpValue : "Valeur", +DlgSelectBtnAdd : "Ajouter", +DlgSelectBtnModify : "Modifier", +DlgSelectBtnUp : "Monter", +DlgSelectBtnDown : "Descendre", +DlgSelectBtnSetValue : "Valeur sélectionnée", +DlgSelectBtnDelete : "Supprimer", + +// Textarea Dialog +DlgTextareaName : "Nom", +DlgTextareaCols : "Colonnes", +DlgTextareaRows : "Lignes", + +// Text Field Dialog +DlgTextName : "Nom", +DlgTextValue : "Valeur", +DlgTextCharWidth : "Largeur en caractères", +DlgTextMaxChars : "Nombre maximum de caractères", +DlgTextType : "Type", +DlgTextTypeText : "Texte", +DlgTextTypePass : "Mot de passe", + +// Hidden Field Dialog +DlgHiddenName : "Nom", +DlgHiddenValue : "Valeur", + +// Bulleted List Dialog +BulletedListProp : "Propriétés de liste à puces", +NumberedListProp : "Propriétés de liste numérotée", +DlgLstStart : "Début", +DlgLstType : "Type", +DlgLstTypeCircle : "Cercle", +DlgLstTypeDisc : "Disque", +DlgLstTypeSquare : "Carré", +DlgLstTypeNumbers : "Nombres (1, 2, 3)", +DlgLstTypeLCase : "Lettres minuscules (a, b, c)", +DlgLstTypeUCase : "Lettres majuscules (A, B, C)", +DlgLstTypeSRoman : "Chiffres romains minuscules (i, ii, iii)", +DlgLstTypeLRoman : "Chiffres romains majuscules (I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "Général", +DlgDocBackTab : "Fond", +DlgDocColorsTab : "Couleurs et marges", +DlgDocMetaTab : "Métadonnées", + +DlgDocPageTitle : "Titre de la page", +DlgDocLangDir : "Sens d'écriture", +DlgDocLangDirLTR : "De la gauche vers la droite (LTR)", +DlgDocLangDirRTL : "De la droite vers la gauche (RTL)", +DlgDocLangCode : "Code langue", +DlgDocCharSet : "Encodage de caractère", +DlgDocCharSetCE : "Europe Centrale", +DlgDocCharSetCT : "Chinois Traditionnel (Big5)", +DlgDocCharSetCR : "Cyrillique", +DlgDocCharSetGR : "Grec", +DlgDocCharSetJP : "Japonais", +DlgDocCharSetKR : "Coréen", +DlgDocCharSetTR : "Turc", +DlgDocCharSetUN : "Unicode (UTF-8)", +DlgDocCharSetWE : "Occidental", +DlgDocCharSetOther : "Autre encodage de caractère", + +DlgDocDocType : "Type de document", +DlgDocDocTypeOther : "Autre type de document", +DlgDocIncXHTML : "Inclure les déclarations XHTML", +DlgDocBgColor : "Couleur de fond", +DlgDocBgImage : "Image de fond", +DlgDocBgNoScroll : "Image fixe sans défilement", +DlgDocCText : "Texte", +DlgDocCLink : "Lien", +DlgDocCVisited : "Lien visité", +DlgDocCActive : "Lien activé", +DlgDocMargins : "Marges", +DlgDocMaTop : "Haut", +DlgDocMaLeft : "Gauche", +DlgDocMaRight : "Droite", +DlgDocMaBottom : "Bas", +DlgDocMeIndex : "Mots-clés (séparés par des virgules)", +DlgDocMeDescr : "Description", +DlgDocMeAuthor : "Auteur", +DlgDocMeCopy : "Copyright", +DlgDocPreview : "Prévisualisation", + +// Templates Dialog +Templates : "Modèles", +DlgTemplatesTitle : "Modèles de contenu", +DlgTemplatesSelMsg : "Veuillez sélectionner le modèle à ouvrir dans l'éditeur
(le contenu actuel sera remplacé):", +DlgTemplatesLoading : "Chargement de la liste des modèles. Veuillez patienter...", +DlgTemplatesNoTpl : "(Aucun modèle disponible)", +DlgTemplatesReplace : "Remplacer tout le contenu", + +// About Dialog +DlgAboutAboutTab : "A propos de", +DlgAboutBrowserInfoTab : "Navigateur", +DlgAboutLicenseTab : "Licence", +DlgAboutVersion : "Version", +DlgAboutInfo : "Pour plus d'informations, aller à", + +// Div Dialog +DlgDivGeneralTab : "Général", +DlgDivAdvancedTab : "Avancé", +DlgDivStyle : "Style", +DlgDivInlineStyle : "Attribut Style", + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/gl.js b/fckeditor/editor/lang/gl.js new file mode 100644 index 0000000..0ebfd48 --- /dev/null +++ b/fckeditor/editor/lang/gl.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * Galician language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "Ocultar Ferramentas", +ToolbarExpand : "Mostrar Ferramentas", + +// Toolbar Items and Context Menu +Save : "Gardar", +NewPage : "Nova Páxina", +Preview : "Vista Previa", +Cut : "Cortar", +Copy : "Copiar", +Paste : "Pegar", +PasteText : "Pegar como texto plano", +PasteWord : "Pegar dende Word", +Print : "Imprimir", +SelectAll : "Seleccionar todo", +RemoveFormat : "Eliminar Formato", +InsertLinkLbl : "Ligazón", +InsertLink : "Inserir/Editar Ligazón", +RemoveLink : "Eliminar Ligazón", +VisitLink : "Open Link", //MISSING +Anchor : "Inserir/Editar Referencia", +AnchorDelete : "Remove Anchor", //MISSING +InsertImageLbl : "Imaxe", +InsertImage : "Inserir/Editar Imaxe", +InsertFlashLbl : "Flash", +InsertFlash : "Inserir/Editar Flash", +InsertTableLbl : "Tabla", +InsertTable : "Inserir/Editar Tabla", +InsertLineLbl : "Liña", +InsertLine : "Inserir Liña Horizontal", +InsertSpecialCharLbl: "Carácter Special", +InsertSpecialChar : "Inserir Carácter Especial", +InsertSmileyLbl : "Smiley", +InsertSmiley : "Inserir Smiley", +About : "Acerca de FCKeditor", +Bold : "Negrita", +Italic : "Cursiva", +Underline : "Sub-raiado", +StrikeThrough : "Tachado", +Subscript : "Subíndice", +Superscript : "Superíndice", +LeftJustify : "Aliñar á Esquerda", +CenterJustify : "Centrado", +RightJustify : "Aliñar á Dereita", +BlockJustify : "Xustificado", +DecreaseIndent : "Disminuir Sangría", +IncreaseIndent : "Aumentar Sangría", +Blockquote : "Blockquote", //MISSING +CreateDiv : "Create Div Container", //MISSING +EditDiv : "Edit Div Container", //MISSING +DeleteDiv : "Remove Div Container", //MISSING +Undo : "Desfacer", +Redo : "Refacer", +NumberedListLbl : "Lista Numerada", +NumberedList : "Inserir/Eliminar Lista Numerada", +BulletedListLbl : "Marcas", +BulletedList : "Inserir/Eliminar Marcas", +ShowTableBorders : "Mostrar Bordes das Táboas", +ShowDetails : "Mostrar Marcas Parágrafo", +Style : "Estilo", +FontFormat : "Formato", +Font : "Tipo", +FontSize : "Tamaño", +TextColor : "Cor do Texto", +BGColor : "Cor do Fondo", +Source : "Código Fonte", +Find : "Procurar", +Replace : "Substituir", +SpellCheck : "Corrección Ortográfica", +UniversalKeyboard : "Teclado Universal", +PageBreakLbl : "Salto de Páxina", +PageBreak : "Inserir Salto de Páxina", + +Form : "Formulario", +Checkbox : "Cadro de Verificación", +RadioButton : "Botón de Radio", +TextField : "Campo de Texto", +Textarea : "Área de Texto", +HiddenField : "Campo Oculto", +Button : "Botón", +SelectionField : "Campo de Selección", +ImageButton : "Botón de Imaxe", + +FitWindow : "Maximizar o tamaño do editor", +ShowBlocks : "Show Blocks", //MISSING + +// Context Menu +EditLink : "Editar Ligazón", +CellCM : "Cela", +RowCM : "Fila", +ColumnCM : "Columna", +InsertRowAfter : "Insert Row After", //MISSING +InsertRowBefore : "Insert Row Before", //MISSING +DeleteRows : "Borrar Filas", +InsertColumnAfter : "Insert Column After", //MISSING +InsertColumnBefore : "Insert Column Before", //MISSING +DeleteColumns : "Borrar Columnas", +InsertCellAfter : "Insert Cell After", //MISSING +InsertCellBefore : "Insert Cell Before", //MISSING +DeleteCells : "Borrar Cela", +MergeCells : "Unir Celas", +MergeRight : "Merge Right", //MISSING +MergeDown : "Merge Down", //MISSING +HorizontalSplitCell : "Split Cell Horizontally", //MISSING +VerticalSplitCell : "Split Cell Vertically", //MISSING +TableDelete : "Borrar Táboa", +CellProperties : "Propriedades da Cela", +TableProperties : "Propriedades da Táboa", +ImageProperties : "Propriedades Imaxe", +FlashProperties : "Propriedades Flash", + +AnchorProp : "Propriedades da Referencia", +ButtonProp : "Propriedades do Botón", +CheckboxProp : "Propriedades do Cadro de Verificación", +HiddenFieldProp : "Propriedades do Campo Oculto", +RadioButtonProp : "Propriedades do Botón de Radio", +ImageButtonProp : "Propriedades do Botón de Imaxe", +TextFieldProp : "Propriedades do Campo de Texto", +SelectionFieldProp : "Propriedades do Campo de Selección", +TextareaProp : "Propriedades da Área de Texto", +FormProp : "Propriedades do Formulario", + +FontFormats : "Normal;Formateado;Enderezo;Enacabezado 1;Encabezado 2;Encabezado 3;Encabezado 4;Encabezado 5;Encabezado 6;Paragraph (DIV)", + +// Alerts and Messages +ProcessingXHTML : "Procesando XHTML. Por facor, agarde...", +Done : "Feiro", +PasteWordConfirm : "Parece que o texto que quere pegar está copiado do Word.¿Quere limpar o formato antes de pegalo?", +NotCompatiblePaste : "Este comando está disponible para Internet Explorer versión 5.5 ou superior. ¿Quere pegalo sen limpar o formato?", +UnknownToolbarItem : "Ítem de ferramentas descoñecido \"%1\"", +UnknownCommand : "Nome de comando descoñecido \"%1\"", +NotImplemented : "Comando non implementado", +UnknownToolbarSet : "O conxunto de ferramentas \"%1\" non existe", +NoActiveX : "As opcións de seguridade do seu navegador poderían limitar algunha das características de editor. Debe activar a opción \"Executar controis ActiveX e plug-ins\". Pode notar que faltan características e experimentar erros", +BrowseServerBlocked : "Non se poido abrir o navegador de recursos. Asegúrese de que están desactivados os bloqueadores de xanelas emerxentes", +DialogBlocked : "Non foi posible abrir a xanela de diálogo. Asegúrese de que están desactivados os bloqueadores de xanelas emerxentes", +VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING + +// Dialogs +DlgBtnOK : "OK", +DlgBtnCancel : "Cancelar", +DlgBtnClose : "Pechar", +DlgBtnBrowseServer : "Navegar no Servidor", +DlgAdvancedTag : "Advanzado", +DlgOpOther : "", +DlgInfoTab : "Info", +DlgAlertUrl : "Por favor, insira a URL", + +// General Dialogs Labels +DlgGenNotSet : "", +DlgGenId : "Id", +DlgGenLangDir : "Orientación do Idioma", +DlgGenLangDirLtr : "Esquerda a Dereita (LTR)", +DlgGenLangDirRtl : "Dereita a Esquerda (RTL)", +DlgGenLangCode : "Código do Idioma", +DlgGenAccessKey : "Chave de Acceso", +DlgGenName : "Nome", +DlgGenTabIndex : "Índice de Tabulación", +DlgGenLongDescr : "Descrición Completa da URL", +DlgGenClass : "Clases da Folla de Estilos", +DlgGenTitle : "Título", +DlgGenContType : "Tipo de Contido", +DlgGenLinkCharset : "Fonte de Caracteres Vinculado", +DlgGenStyle : "Estilo", + +// Image Dialog +DlgImgTitle : "Propriedades da Imaxe", +DlgImgInfoTab : "Información da Imaxe", +DlgImgBtnUpload : "Enviar ó Servidor", +DlgImgURL : "URL", +DlgImgUpload : "Carregar", +DlgImgAlt : "Texto Alternativo", +DlgImgWidth : "Largura", +DlgImgHeight : "Altura", +DlgImgLockRatio : "Proporcional", +DlgBtnResetSize : "Tamaño Orixinal", +DlgImgBorder : "Límite", +DlgImgHSpace : "Esp. Horiz.", +DlgImgVSpace : "Esp. Vert.", +DlgImgAlign : "Aliñamento", +DlgImgAlignLeft : "Esquerda", +DlgImgAlignAbsBottom: "Abs Inferior", +DlgImgAlignAbsMiddle: "Abs Centro", +DlgImgAlignBaseline : "Liña Base", +DlgImgAlignBottom : "Pé", +DlgImgAlignMiddle : "Centro", +DlgImgAlignRight : "Dereita", +DlgImgAlignTextTop : "Tope do Texto", +DlgImgAlignTop : "Tope", +DlgImgPreview : "Vista Previa", +DlgImgAlertUrl : "Por favor, escriba a URL da imaxe", +DlgImgLinkTab : "Ligazón", + +// Flash Dialog +DlgFlashTitle : "Propriedades Flash", +DlgFlashChkPlay : "Auto Execución", +DlgFlashChkLoop : "Bucle", +DlgFlashChkMenu : "Activar Menú Flash", +DlgFlashScale : "Escalar", +DlgFlashScaleAll : "Amosar Todo", +DlgFlashScaleNoBorder : "Sen Borde", +DlgFlashScaleFit : "Encaixar axustando", + +// Link Dialog +DlgLnkWindowTitle : "Ligazón", +DlgLnkInfoTab : "Información da Ligazón", +DlgLnkTargetTab : "Referencia a esta páxina", + +DlgLnkType : "Tipo de Ligazón", +DlgLnkTypeURL : "URL", +DlgLnkTypeAnchor : "Referencia nesta páxina", +DlgLnkTypeEMail : "E-Mail", +DlgLnkProto : "Protocolo", +DlgLnkProtoOther : "", +DlgLnkURL : "URL", +DlgLnkAnchorSel : "Seleccionar unha Referencia", +DlgLnkAnchorByName : "Por Nome de Referencia", +DlgLnkAnchorById : "Por Element Id", +DlgLnkNoAnchors : "(Non hai referencias disponibles no documento)", +DlgLnkEMail : "Enderezo de E-Mail", +DlgLnkEMailSubject : "Asunto do Mensaxe", +DlgLnkEMailBody : "Corpo do Mensaxe", +DlgLnkUpload : "Carregar", +DlgLnkBtnUpload : "Enviar ó servidor", + +DlgLnkTarget : "Destino", +DlgLnkTargetFrame : "", +DlgLnkTargetPopup : "", +DlgLnkTargetBlank : "Nova Xanela (_blank)", +DlgLnkTargetParent : "Xanela Pai (_parent)", +DlgLnkTargetSelf : "Mesma Xanela (_self)", +DlgLnkTargetTop : "Xanela Primaria (_top)", +DlgLnkTargetFrameName : "Nome do Marco Destino", +DlgLnkPopWinName : "Nome da Xanela Emerxente", +DlgLnkPopWinFeat : "Características da Xanela Emerxente", +DlgLnkPopResize : "Axustable", +DlgLnkPopLocation : "Barra de Localización", +DlgLnkPopMenu : "Barra de Menú", +DlgLnkPopScroll : "Barras de Desplazamento", +DlgLnkPopStatus : "Barra de Estado", +DlgLnkPopToolbar : "Barra de Ferramentas", +DlgLnkPopFullScrn : "A Toda Pantalla (IE)", +DlgLnkPopDependent : "Dependente (Netscape)", +DlgLnkPopWidth : "Largura", +DlgLnkPopHeight : "Altura", +DlgLnkPopLeft : "Posición Esquerda", +DlgLnkPopTop : "Posición dende Arriba", + +DlnLnkMsgNoUrl : "Por favor, escriba a ligazón URL", +DlnLnkMsgNoEMail : "Por favor, escriba o enderezo de e-mail", +DlnLnkMsgNoAnchor : "Por favor, seleccione un destino", +DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING + +// Color Dialog +DlgColorTitle : "Seleccionar Color", +DlgColorBtnClear : "Nengunha", +DlgColorHighlight : "Destacado", +DlgColorSelected : "Seleccionado", + +// Smiley Dialog +DlgSmileyTitle : "Inserte un Smiley", + +// Special Character Dialog +DlgSpecialCharTitle : "Seleccione Caracter Especial", + +// Table Dialog +DlgTableTitle : "Propiedades da Táboa", +DlgTableRows : "Filas", +DlgTableColumns : "Columnas", +DlgTableBorder : "Tamaño do Borde", +DlgTableAlign : "Aliñamento", +DlgTableAlignNotSet : "", +DlgTableAlignLeft : "Esquerda", +DlgTableAlignCenter : "Centro", +DlgTableAlignRight : "Ereita", +DlgTableWidth : "Largura", +DlgTableWidthPx : "pixels", +DlgTableWidthPc : "percent", +DlgTableHeight : "Altura", +DlgTableCellSpace : "Marxe entre Celas", +DlgTableCellPad : "Marxe interior", +DlgTableCaption : "Título", +DlgTableSummary : "Sumario", +DlgTableHeaders : "Headers", //MISSING +DlgTableHeadersNone : "None", //MISSING +DlgTableHeadersColumn : "First column", //MISSING +DlgTableHeadersRow : "First Row", //MISSING +DlgTableHeadersBoth : "Both", //MISSING + +// Table Cell Dialog +DlgCellTitle : "Propriedades da Cela", +DlgCellWidth : "Largura", +DlgCellWidthPx : "pixels", +DlgCellWidthPc : "percent", +DlgCellHeight : "Altura", +DlgCellWordWrap : "Axustar Liñas", +DlgCellWordWrapNotSet : "", +DlgCellWordWrapYes : "Si", +DlgCellWordWrapNo : "Non", +DlgCellHorAlign : "Aliñamento Horizontal", +DlgCellHorAlignNotSet : "", +DlgCellHorAlignLeft : "Esquerda", +DlgCellHorAlignCenter : "Centro", +DlgCellHorAlignRight: "Dereita", +DlgCellVerAlign : "Aliñamento Vertical", +DlgCellVerAlignNotSet : "", +DlgCellVerAlignTop : "Arriba", +DlgCellVerAlignMiddle : "Medio", +DlgCellVerAlignBottom : "Abaixo", +DlgCellVerAlignBaseline : "Liña de Base", +DlgCellType : "Cell Type", //MISSING +DlgCellTypeData : "Data", //MISSING +DlgCellTypeHeader : "Header", //MISSING +DlgCellRowSpan : "Ocupar Filas", +DlgCellCollSpan : "Ocupar Columnas", +DlgCellBackColor : "Color de Fondo", +DlgCellBorderColor : "Color de Borde", +DlgCellBtnSelect : "Seleccionar...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "Find and Replace", //MISSING + +// Find Dialog +DlgFindTitle : "Procurar", +DlgFindFindBtn : "Procurar", +DlgFindNotFoundMsg : "Non te atopou o texto indicado.", + +// Replace Dialog +DlgReplaceTitle : "Substituir", +DlgReplaceFindLbl : "Texto a procurar:", +DlgReplaceReplaceLbl : "Substituir con:", +DlgReplaceCaseChk : "Coincidir Mai./min.", +DlgReplaceReplaceBtn : "Substituir", +DlgReplaceReplAllBtn : "Substitiur Todo", +DlgReplaceWordChk : "Coincidir con toda a palabra", + +// Paste Operations / Dialog +PasteErrorCut : "Os axustes de seguridade do seu navegador non permiten que o editor realice automáticamente as tarefas de corte. Por favor, use o teclado para iso (Ctrl+X).", +PasteErrorCopy : "Os axustes de seguridade do seu navegador non permiten que o editor realice automáticamente as tarefas de copia. Por favor, use o teclado para iso (Ctrl+C).", + +PasteAsText : "Pegar como texto plano", +PasteFromWord : "Pegar dende Word", + +DlgPasteMsg2 : "Por favor, pegue dentro do seguinte cadro usando o teclado (Ctrl+V) e pulse OK.", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING +DlgPasteIgnoreFont : "Ignorar as definicións de Tipografía", +DlgPasteRemoveStyles : "Eliminar as definicións de Estilos", + +// Color Picker +ColorAutomatic : "Automático", +ColorMoreColors : "Máis Cores...", + +// Document Properties +DocProps : "Propriedades do Documento", + +// Anchor Dialog +DlgAnchorTitle : "Propriedades da Referencia", +DlgAnchorName : "Nome da Referencia", +DlgAnchorErrorName : "Por favor, escriba o nome da referencia", + +// Speller Pages Dialog +DlgSpellNotInDic : "Non está no diccionario", +DlgSpellChangeTo : "Cambiar a", +DlgSpellBtnIgnore : "Ignorar", +DlgSpellBtnIgnoreAll : "Ignorar Todas", +DlgSpellBtnReplace : "Substituir", +DlgSpellBtnReplaceAll : "Substituir Todas", +DlgSpellBtnUndo : "Desfacer", +DlgSpellNoSuggestions : "- Sen candidatos -", +DlgSpellProgress : "Corrección ortográfica en progreso...", +DlgSpellNoMispell : "Corrección ortográfica rematada: Non se atoparon erros", +DlgSpellNoChanges : "Corrección ortográfica rematada: Non se substituiu nengunha verba", +DlgSpellOneChange : "Corrección ortográfica rematada: Unha verba substituida", +DlgSpellManyChanges : "Corrección ortográfica rematada: %1 verbas substituidas", + +IeSpellDownload : "O corrector ortográfico non está instalado. ¿Quere descargalo agora?", + +// Button Dialog +DlgButtonText : "Texto (Valor)", +DlgButtonType : "Tipo", +DlgButtonTypeBtn : "Button", //MISSING +DlgButtonTypeSbm : "Submit", //MISSING +DlgButtonTypeRst : "Reset", //MISSING + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "Nome", +DlgCheckboxValue : "Valor", +DlgCheckboxSelected : "Seleccionado", + +// Form Dialog +DlgFormName : "Nome", +DlgFormAction : "Acción", +DlgFormMethod : "Método", + +// Select Field Dialog +DlgSelectName : "Nome", +DlgSelectValue : "Valor", +DlgSelectSize : "Tamaño", +DlgSelectLines : "liñas", +DlgSelectChkMulti : "Permitir múltiples seleccións", +DlgSelectOpAvail : "Opcións Disponibles", +DlgSelectOpText : "Texto", +DlgSelectOpValue : "Valor", +DlgSelectBtnAdd : "Engadir", +DlgSelectBtnModify : "Modificar", +DlgSelectBtnUp : "Subir", +DlgSelectBtnDown : "Baixar", +DlgSelectBtnSetValue : "Definir como valor por defecto", +DlgSelectBtnDelete : "Borrar", + +// Textarea Dialog +DlgTextareaName : "Nome", +DlgTextareaCols : "Columnas", +DlgTextareaRows : "Filas", + +// Text Field Dialog +DlgTextName : "Nome", +DlgTextValue : "Valor", +DlgTextCharWidth : "Tamaño do Caracter", +DlgTextMaxChars : "Máximo de Caracteres", +DlgTextType : "Tipo", +DlgTextTypeText : "Texto", +DlgTextTypePass : "Chave", + +// Hidden Field Dialog +DlgHiddenName : "Nome", +DlgHiddenValue : "Valor", + +// Bulleted List Dialog +BulletedListProp : "Propriedades das Marcas", +NumberedListProp : "Propriedades da Lista de Numeración", +DlgLstStart : "Start", //MISSING +DlgLstType : "Tipo", +DlgLstTypeCircle : "Círculo", +DlgLstTypeDisc : "Disco", +DlgLstTypeSquare : "Cuadrado", +DlgLstTypeNumbers : "Números (1, 2, 3)", +DlgLstTypeLCase : "Letras Minúsculas (a, b, c)", +DlgLstTypeUCase : "Letras Maiúsculas (A, B, C)", +DlgLstTypeSRoman : "Números Romanos en minúscula (i, ii, iii)", +DlgLstTypeLRoman : "Números Romanos en Maiúscula (I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "Xeral", +DlgDocBackTab : "Fondo", +DlgDocColorsTab : "Cores e Marxes", +DlgDocMetaTab : "Meta Data", + +DlgDocPageTitle : "Título da Páxina", +DlgDocLangDir : "Orientación do Idioma", +DlgDocLangDirLTR : "Esquerda a Dereita (LTR)", +DlgDocLangDirRTL : "Dereita a Esquerda (RTL)", +DlgDocLangCode : "Código de Idioma", +DlgDocCharSet : "Codificación do Xogo de Caracteres", +DlgDocCharSetCE : "Central European", //MISSING +DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING +DlgDocCharSetCR : "Cyrillic", //MISSING +DlgDocCharSetGR : "Greek", //MISSING +DlgDocCharSetJP : "Japanese", //MISSING +DlgDocCharSetKR : "Korean", //MISSING +DlgDocCharSetTR : "Turkish", //MISSING +DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING +DlgDocCharSetWE : "Western European", //MISSING +DlgDocCharSetOther : "Outra Codificación do Xogo de Caracteres", + +DlgDocDocType : "Encabezado do Tipo de Documento", +DlgDocDocTypeOther : "Outro Encabezado do Tipo de Documento", +DlgDocIncXHTML : "Incluir Declaracións XHTML", +DlgDocBgColor : "Cor de Fondo", +DlgDocBgImage : "URL da Imaxe de Fondo", +DlgDocBgNoScroll : "Fondo Fixo", +DlgDocCText : "Texto", +DlgDocCLink : "Ligazóns", +DlgDocCVisited : "Ligazón Visitada", +DlgDocCActive : "Ligazón Activa", +DlgDocMargins : "Marxes da Páxina", +DlgDocMaTop : "Arriba", +DlgDocMaLeft : "Esquerda", +DlgDocMaRight : "Dereita", +DlgDocMaBottom : "Abaixo", +DlgDocMeIndex : "Palabras Chave de Indexación do Documento (separadas por comas)", +DlgDocMeDescr : "Descripción do Documento", +DlgDocMeAuthor : "Autor", +DlgDocMeCopy : "Copyright", +DlgDocPreview : "Vista Previa", + +// Templates Dialog +Templates : "Plantillas", +DlgTemplatesTitle : "Plantillas de Contido", +DlgTemplatesSelMsg : "Por favor, seleccione a plantilla a abrir no editor
(o contido actual perderase):", +DlgTemplatesLoading : "Cargando listado de plantillas. Por favor, espere...", +DlgTemplatesNoTpl : "(Non hai plantillas definidas)", +DlgTemplatesReplace : "Replace actual contents", //MISSING + +// About Dialog +DlgAboutAboutTab : "Acerca de", +DlgAboutBrowserInfoTab : "Información do Navegador", +DlgAboutLicenseTab : "Licencia", +DlgAboutVersion : "versión", +DlgAboutInfo : "Para máis información visitar:", + +// Div Dialog +DlgDivGeneralTab : "General", //MISSING +DlgDivAdvancedTab : "Advanced", //MISSING +DlgDivStyle : "Style", //MISSING +DlgDivInlineStyle : "Inline Style", //MISSING + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/gu.js b/fckeditor/editor/lang/gu.js new file mode 100644 index 0000000..361ab21 --- /dev/null +++ b/fckeditor/editor/lang/gu.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * Gujarati language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "ટૂલબાર નાનું કરવું", +ToolbarExpand : "ટૂલબાર મોટું કરવું", + +// Toolbar Items and Context Menu +Save : "સેવ", +NewPage : "નવુ પાનું", +Preview : "પૂર્વદર્શન", +Cut : "કાપવું", +Copy : "નકલ", +Paste : "પેસ્ટ", +PasteText : "પેસ્ટ (સાદી ટેક્સ્ટ)", +PasteWord : "પેસ્ટ (વડૅ ટેક્સ્ટ)", +Print : "પ્રિન્ટ", +SelectAll : "બઘું પસંદ કરવું", +RemoveFormat : "ફૉર્મટ કાઢવું", +InsertLinkLbl : "સંબંધન, લિંક", +InsertLink : "લિંક ઇન્સર્ટ/દાખલ કરવી", +RemoveLink : "લિંક કાઢવી", +VisitLink : "Open Link", //MISSING +Anchor : "ઍંકર ઇન્સર્ટ/દાખલ કરવી", +AnchorDelete : "ઍંકર કાઢવી", +InsertImageLbl : "ચિત્ર", +InsertImage : "ચિત્ર ઇન્સર્ટ/દાખલ કરવું", +InsertFlashLbl : "ફ્લૅશ", +InsertFlash : "ફ્લૅશ ઇન્સર્ટ/દાખલ કરવું", +InsertTableLbl : "ટેબલ, કોઠો", +InsertTable : "ટેબલ, કોઠો ઇન્સર્ટ/દાખલ કરવું", +InsertLineLbl : "રેખા", +InsertLine : "સમસ્તરીય રેખા ઇન્સર્ટ/દાખલ કરવી", +InsertSpecialCharLbl: "વિશિષ્ટ અક્ષર", +InsertSpecialChar : "વિશિષ્ટ અક્ષર ઇન્સર્ટ/દાખલ કરવું", +InsertSmileyLbl : "સ્માઇલી", +InsertSmiley : "સ્માઇલી ઇન્સર્ટ/દાખલ કરવી", +About : "FCKeditorના વિષે", +Bold : "બોલ્ડ/સ્પષ્ટ", +Italic : "ઇટેલિક, ત્રાંસા", +Underline : "અન્ડર્લાઇન, નીચે લીટી", +StrikeThrough : "છેકી નાખવું", +Subscript : "એક ચિહ્નની નીચે કરેલું બીજું ચિહ્ન", +Superscript : "એક ચિહ્ન ઉપર કરેલું બીજું ચિહ્ન.", +LeftJustify : "ડાબી બાજુએ/બાજુ તરફ", +CenterJustify : "સંકેંદ્રણ/સેંટરિંગ", +RightJustify : "જમણી બાજુએ/બાજુ તરફ", +BlockJustify : "બ્લૉક, અંતરાય જસ્ટિફાઇ", +DecreaseIndent : "ઇન્ડેન્ટ લીટીના આરંભમાં જગ્યા ઘટાડવી", +IncreaseIndent : "ઇન્ડેન્ટ, લીટીના આરંભમાં જગ્યા વધારવી", +Blockquote : "બ્લૉક-કોટ, અવતરણચિહ્નો", +CreateDiv : "Create Div Container", //MISSING +EditDiv : "Edit Div Container", //MISSING +DeleteDiv : "Remove Div Container", //MISSING +Undo : "રદ કરવું; પહેલાં હતી એવી સ્થિતિ પાછી લાવવી", +Redo : "રિડૂ; પછી હતી એવી સ્થિતિ પાછી લાવવી", +NumberedListLbl : "સંખ્યાંકન સૂચિ", +NumberedList : "સંખ્યાંકન સૂચિ ઇન્સર્ટ/દાખલ કરવી", +BulletedListLbl : "બુલેટ સૂચિ", +BulletedList : "બુલેટ સૂચિ ઇન્સર્ટ/દાખલ કરવી", +ShowTableBorders : "ટેબલ, કોઠાની બાજુ(બોર્ડર) બતાવવી", +ShowDetails : "વિસ્તૃત વિગતવાર બતાવવું", +Style : "શૈલી/રીત", +FontFormat : "ફૉન્ટ ફૉર્મટ, રચનાની શૈલી", +Font : "ફૉન્ટ", +FontSize : "ફૉન્ટ સાઇઝ/કદ", +TextColor : "શબ્દનો રંગ", +BGColor : "બૅકગ્રાઉન્ડ રંગ,", +Source : "મૂળ કે પ્રાથમિક દસ્તાવેજ", +Find : "શોધવું", +Replace : "રિપ્લેસ/બદલવું", +SpellCheck : "જોડણી (સ્પેલિંગ) તપાસવી", +UniversalKeyboard : "યૂનિવર્સલ/વિશ્વવ્યાપક કીબૉર્ડ", +PageBreakLbl : "પેજબ્રેક/પાનાને અલગ કરવું", +PageBreak : "ઇન્સર્ટ પેજબ્રેક/પાનાને અલગ કરવું/દાખલ કરવું", + +Form : "ફૉર્મ/પત્રક", +Checkbox : "ચેક બોક્સ", +RadioButton : "રેડિઓ બટન", +TextField : "ટેક્સ્ટ ફીલ્ડ, શબ્દ ક્ષેત્ર", +Textarea : "ટેક્સ્ટ એરિઆ, શબ્દ વિસ્તાર", +HiddenField : "ગુપ્ત ક્ષેત્ર", +Button : "બટન", +SelectionField : "પસંદગી ક્ષેત્ર", +ImageButton : "ચિત્ર બટન", + +FitWindow : "એડિટરની સાઇઝ અધિકતમ કરવી", +ShowBlocks : "બ્લૉક બતાવવું", + +// Context Menu +EditLink : " લિંક એડિટ/માં ફેરફાર કરવો", +CellCM : "કોષના ખાના", +RowCM : "પંક્તિના ખાના", +ColumnCM : "કૉલમ/ઊભી કટાર", +InsertRowAfter : "પછી પંક્તિ ઉમેરવી", +InsertRowBefore : "પહેલાં પંક્તિ ઉમેરવી", +DeleteRows : "પંક્તિઓ ડિલીટ/કાઢી નાખવી", +InsertColumnAfter : "પછી કૉલમ/ઊભી કટાર ઉમેરવી", +InsertColumnBefore : "પહેલાં કૉલમ/ઊભી કટાર ઉમેરવી", +DeleteColumns : "કૉલમ/ઊભી કટાર ડિલીટ/કાઢી નાખવી", +InsertCellAfter : "પછી કોષ ઉમેરવો", +InsertCellBefore : "પહેલાં કોષ ઉમેરવો", +DeleteCells : "કોષ ડિલીટ/કાઢી નાખવો", +MergeCells : "કોષ ભેગા કરવા", +MergeRight : "જમણી બાજુ ભેગા કરવા", +MergeDown : "નીચે ભેગા કરવા", +HorizontalSplitCell : "કોષને સમસ્તરીય વિભાજન કરવું", +VerticalSplitCell : "કોષને સીધું ને ઊભું વિભાજન કરવું", +TableDelete : "કોઠો ડિલીટ/કાઢી નાખવું", +CellProperties : "કોષના ગુણ", +TableProperties : "કોઠાના ગુણ", +ImageProperties : "ચિત્રના ગુણ", +FlashProperties : "ફ્લૅશના ગુણ", + +AnchorProp : "ઍંકરના ગુણ", +ButtonProp : "બટનના ગુણ", +CheckboxProp : "ચેક બોક્સ ગુણ", +HiddenFieldProp : "ગુપ્ત ક્ષેત્રના ગુણ", +RadioButtonProp : "રેડિઓ બટનના ગુણ", +ImageButtonProp : "ચિત્ર બટનના ગુણ", +TextFieldProp : "ટેક્સ્ટ ફીલ્ડ, શબ્દ ક્ષેત્રના ગુણ", +SelectionFieldProp : "પસંદગી ક્ષેત્રના ગુણ", +TextareaProp : "ટેક્સ્ટ એઅરિઆ, શબ્દ વિસ્તારના ગુણ", +FormProp : "ફૉર્મ/પત્રકના ગુણ", + +FontFormats : "સામાન્ય;ફૉર્મટેડ;સરનામું;શીર્ષક 1;શીર્ષક 2;શીર્ષક 3;શીર્ષક 4;શીર્ષક 5;શીર્ષક 6;શીર્ષક (DIV)", + +// Alerts and Messages +ProcessingXHTML : "XHTML પ્રક્રિયા ચાલુ છે. મહેરબાની કરીને રાહ જોવો...", +Done : "પતી ગયું", +PasteWordConfirm : "તમે જે ટેક્સ્ટ પેસ્ટ કરવા માંગો છો, તે વડૅમાંથી કોપી કરેલુ લાગે છે. પેસ્ટ કરતા પહેલાં ટેક્સ્ટ સાફ કરવી છે?", +NotCompatiblePaste : "આ કમાન્ડ ઈનટરનેટ એક્સપ્લોરર(Internet Explorer) 5.5 અથવા એના પછીના વર્ઝન માટેજ છે. ટેક્સ્ટને સાફ કયૅા પહેલાં પેસ્ટ કરવી છે?", +UnknownToolbarItem : "અજાણી ટૂલબાર આઇટમ \"%1\"", +UnknownCommand : "અજાણયો કમાન્ડ \"%1\"", +NotImplemented : "કમાન્ડ ઇમ્પ્લિમન્ટ નથી કરોયો", +UnknownToolbarSet : "ટૂલબાર સેટ \"%1\" ઉપલબ્ધ નથી", +NoActiveX : "તમારા બ્રાઉઝરની સુરક્ષા સેટિંગસ એડિટરના અમુક ફીચરને પરવાનગી આપતી નથી. કૃપયા \"Run ActiveX controls and plug-ins\" વિકલ્પને ઇનેબલ/સમર્થ કરો. તમારા બ્રાઉઝરમાં એરર ઇન્વિઝિબલ ફીચરનો અનુભવ થઈ શકે છે. કૃપયા પૉપ-અપ બ્લૉકર ડિસેબલ કરો.", +BrowseServerBlocked : "રિસૉર્સ બ્રાઉઝર ખોલી ન સકાયું.", +DialogBlocked : "ડાયલૉગ વિન્ડો ખોલી ન સકાયું. કૃપયા પૉપ-અપ બ્લૉકર ડિસેબલ કરો.", +VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING + +// Dialogs +DlgBtnOK : "ઠીક છે", +DlgBtnCancel : "રદ કરવું", +DlgBtnClose : "બંધ કરવું", +DlgBtnBrowseServer : "સર્વર બ્રાઉઝ કરો", +DlgAdvancedTag : "અડ્વાન્સડ", +DlgOpOther : "<અન્ય>", +DlgInfoTab : "સૂચના", +DlgAlertUrl : "URL ઇન્સર્ટ કરો", + +// General Dialogs Labels +DlgGenNotSet : "<સેટ નથી>", +DlgGenId : "Id", +DlgGenLangDir : "ભાષા લેખવાની પદ્ધતિ", +DlgGenLangDirLtr : "ડાબે થી જમણે (LTR)", +DlgGenLangDirRtl : "જમણે થી ડાબે (RTL)", +DlgGenLangCode : "ભાષા કોડ", +DlgGenAccessKey : "ઍક્સેસ કી", +DlgGenName : "નામ", +DlgGenTabIndex : "ટૅબ ઇન્ડેક્સ", +DlgGenLongDescr : "વધારે માહિતી માટે URL", +DlgGenClass : "સ્ટાઇલ-શીટ ક્લાસ", +DlgGenTitle : "મુખ્ય મથાળું", +DlgGenContType : "મુખ્ય કન્ટેન્ટ પ્રકાર", +DlgGenLinkCharset : "લિંક રિસૉર્સ કૅરિક્ટર સેટ", +DlgGenStyle : "સ્ટાઇલ", + +// Image Dialog +DlgImgTitle : "ચિત્રના ગુણ", +DlgImgInfoTab : "ચિત્ર ની જાણકારી", +DlgImgBtnUpload : "આ સર્વરને મોકલવું", +DlgImgURL : "URL", +DlgImgUpload : "અપલોડ", +DlgImgAlt : "ઑલ્ટર્નટ ટેક્સ્ટ", +DlgImgWidth : "પહોળાઈ", +DlgImgHeight : "ઊંચાઈ", +DlgImgLockRatio : "લૉક ગુણોત્તર", +DlgBtnResetSize : "રીસેટ સાઇઝ", +DlgImgBorder : "બોર્ડર", +DlgImgHSpace : "સમસ્તરીય જગ્યા", +DlgImgVSpace : "લંબરૂપ જગ્યા", +DlgImgAlign : "લાઇનદોરીમાં ગોઠવવું", +DlgImgAlignLeft : "ડાબી બાજુ ગોઠવવું", +DlgImgAlignAbsBottom: "Abs નીચે", +DlgImgAlignAbsMiddle: "Abs ઉપર", +DlgImgAlignBaseline : "આધાર લીટી", +DlgImgAlignBottom : "નીચે", +DlgImgAlignMiddle : "વચ્ચે", +DlgImgAlignRight : "જમણી", +DlgImgAlignTextTop : "ટેક્સ્ટ ઉપર", +DlgImgAlignTop : "ઉપર", +DlgImgPreview : "પૂર્વદર્શન", +DlgImgAlertUrl : "ચિત્રની URL ટાઇપ કરો", +DlgImgLinkTab : "લિંક", + +// Flash Dialog +DlgFlashTitle : "ફ્લૅશ ગુણ", +DlgFlashChkPlay : "ઑટો/સ્વયં પ્લે", +DlgFlashChkLoop : "લૂપ", +DlgFlashChkMenu : "ફ્લૅશ મેન્યૂ નો પ્રયોગ કરો", +DlgFlashScale : "સ્કેલ", +DlgFlashScaleAll : "સ્કેલ ઓલ/બધુ બતાવો", +DlgFlashScaleNoBorder : "સ્કેલ બોર્ડર વગર", +DlgFlashScaleFit : "સ્કેલ એકદમ ફીટ", + +// Link Dialog +DlgLnkWindowTitle : "લિંક", +DlgLnkInfoTab : "લિંક ઇન્ફૉ ટૅબ", +DlgLnkTargetTab : "ટાર્ગેટ/લક્ષ્ય ટૅબ", + +DlgLnkType : "લિંક પ્રકાર", +DlgLnkTypeURL : "URL", +DlgLnkTypeAnchor : "આ પેજનો ઍંકર", +DlgLnkTypeEMail : "ઈ-મેલ", +DlgLnkProto : "પ્રોટોકૉલ", +DlgLnkProtoOther : "<અન્ય>", +DlgLnkURL : "URL", +DlgLnkAnchorSel : "ઍંકર પસંદ કરો", +DlgLnkAnchorByName : "ઍંકર નામથી પસંદ કરો", +DlgLnkAnchorById : "ઍંકર એલિમન્ટ Id થી પસંદ કરો", +DlgLnkNoAnchors : "(ડૉક્યુમન્ટમાં ઍંકરની સંખ્યા)", +DlgLnkEMail : "ઈ-મેલ સરનામું", +DlgLnkEMailSubject : "ઈ-મેલ વિષય", +DlgLnkEMailBody : "સંદેશ", +DlgLnkUpload : "અપલોડ", +DlgLnkBtnUpload : "આ સર્વરને મોકલવું", + +DlgLnkTarget : "ટાર્ગેટ/લક્ષ્ય", +DlgLnkTargetFrame : "<ફ્રેમ>", +DlgLnkTargetPopup : "<પૉપ-અપ વિન્ડો>", +DlgLnkTargetBlank : "નવી વિન્ડો (_blank)", +DlgLnkTargetParent : "મૂળ વિન્ડો (_parent)", +DlgLnkTargetSelf : "આજ વિન્ડો (_self)", +DlgLnkTargetTop : "ઉપરની વિન્ડો (_top)", +DlgLnkTargetFrameName : "ટાર્ગેટ ફ્રેમ નું નામ", +DlgLnkPopWinName : "પૉપ-અપ વિન્ડો નું નામ", +DlgLnkPopWinFeat : "પૉપ-અપ વિન્ડો ફીચરસૅ", +DlgLnkPopResize : "સાઇઝ બદલી સકાય છે", +DlgLnkPopLocation : "લોકેશન બાર", +DlgLnkPopMenu : "મેન્યૂ બાર", +DlgLnkPopScroll : "સ્ક્રોલ બાર", +DlgLnkPopStatus : "સ્ટૅટસ બાર", +DlgLnkPopToolbar : "ટૂલ બાર", +DlgLnkPopFullScrn : "ફુલ સ્ક્રીન (IE)", +DlgLnkPopDependent : "ડિપેન્ડન્ટ (Netscape)", +DlgLnkPopWidth : "પહોળાઈ", +DlgLnkPopHeight : "ઊંચાઈ", +DlgLnkPopLeft : "ડાબી બાજુ", +DlgLnkPopTop : "જમણી બાજુ", + +DlnLnkMsgNoUrl : "લિંક URL ટાઇપ કરો", +DlnLnkMsgNoEMail : "ઈ-મેલ સરનામું ટાઇપ કરો", +DlnLnkMsgNoAnchor : "ઍંકર પસંદ કરો", +DlnLnkMsgInvPopName : "પૉપ-અપ વિન્ડો નું નામ ઍલ્ફબેટથી શરૂ કરવો અને તેમાં સ્પેઇસ ન હોવી જોઈએ", + +// Color Dialog +DlgColorTitle : "રંગ પસંદ કરો", +DlgColorBtnClear : "સાફ કરો", +DlgColorHighlight : "હાઈલાઇટ", +DlgColorSelected : "સિલેક્ટેડ/પસંદ કરવું", + +// Smiley Dialog +DlgSmileyTitle : "સ્માઇલી પસંદ કરો", + +// Special Character Dialog +DlgSpecialCharTitle : "સ્પેશિઅલ વિશિષ્ટ અક્ષર પસંદ કરો", + +// Table Dialog +DlgTableTitle : "ટેબલ, કોઠાનું મથાળું", +DlgTableRows : "પંક્તિના ખાના", +DlgTableColumns : "કૉલમ/ઊભી કટાર", +DlgTableBorder : "કોઠાની બાજુ(બોર્ડર) સાઇઝ", +DlgTableAlign : "અલાઇનમન્ટ/ગોઠવાયેલું ", +DlgTableAlignNotSet : "<સેટ નથી>", +DlgTableAlignLeft : "ડાબી બાજુ", +DlgTableAlignCenter : "મધ્ય સેન્ટર", +DlgTableAlignRight : "જમણી બાજુ", +DlgTableWidth : "પહોળાઈ", +DlgTableWidthPx : "પિકસલ", +DlgTableWidthPc : "પ્રતિશત", +DlgTableHeight : "ઊંચાઈ", +DlgTableCellSpace : "સેલ અંતર", +DlgTableCellPad : "સેલ પૅડિંગ", +DlgTableCaption : "મથાળું/કૅપ્શન ", +DlgTableSummary : "ટૂંકો એહેવાલ", +DlgTableHeaders : "Headers", //MISSING +DlgTableHeadersNone : "None", //MISSING +DlgTableHeadersColumn : "First column", //MISSING +DlgTableHeadersRow : "First Row", //MISSING +DlgTableHeadersBoth : "Both", //MISSING + +// Table Cell Dialog +DlgCellTitle : "પંક્તિના ખાનાના ગુણ", +DlgCellWidth : "પહોળાઈ", +DlgCellWidthPx : "પિકસલ", +DlgCellWidthPc : "પ્રતિશત", +DlgCellHeight : "ઊંચાઈ", +DlgCellWordWrap : "વર્ડ રૅપ", +DlgCellWordWrapNotSet : "<સેટ નથી>", +DlgCellWordWrapYes : "હા", +DlgCellWordWrapNo : "ના", +DlgCellHorAlign : "સમસ્તરીય ગોઠવવું", +DlgCellHorAlignNotSet : "<સેટ નથી>", +DlgCellHorAlignLeft : "ડાબી બાજુ", +DlgCellHorAlignCenter : "મધ્ય સેન્ટર", +DlgCellHorAlignRight: "જમણી બાજુ", +DlgCellVerAlign : "લંબરૂપ ગોઠવવું", +DlgCellVerAlignNotSet : "<સેટ નથી>", +DlgCellVerAlignTop : "ઉપર", +DlgCellVerAlignMiddle : "મધ્ય સેન્ટર", +DlgCellVerAlignBottom : "નીચે", +DlgCellVerAlignBaseline : "મૂળ રેખા", +DlgCellType : "Cell Type", //MISSING +DlgCellTypeData : "Data", //MISSING +DlgCellTypeHeader : "Header", //MISSING +DlgCellRowSpan : "પંક્તિ સ્પાન", +DlgCellCollSpan : "કૉલમ/ઊભી કટાર સ્પાન", +DlgCellBackColor : "બૅકગ્રાઉન્ડ રંગ", +DlgCellBorderColor : "બોર્ડરનો રંગ", +DlgCellBtnSelect : "પસંદ કરો...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "શોધવું અને બદલવું", + +// Find Dialog +DlgFindTitle : "શોધવું", +DlgFindFindBtn : "શોધવું", +DlgFindNotFoundMsg : "તમે શોધેલી ટેક્સ્ટ નથી મળી", + +// Replace Dialog +DlgReplaceTitle : "બદલવું", +DlgReplaceFindLbl : "આ શોધો", +DlgReplaceReplaceLbl : "આનાથી બદલો", +DlgReplaceCaseChk : "કેસ સરખા રાખો", +DlgReplaceReplaceBtn : "બદલવું", +DlgReplaceReplAllBtn : "બઘા બદલી ", +DlgReplaceWordChk : "બઘા શબ્દ સરખા રાખો", + +// Paste Operations / Dialog +PasteErrorCut : "તમારા બ્રાઉઝર ની સુરક્ષિત સેટિંગસ કટ કરવાની પરવાનગી નથી આપતી. (Ctrl+X) નો ઉપયોગ કરો.", +PasteErrorCopy : "તમારા બ્રાઉઝર ની સુરક્ષિત સેટિંગસ કોપી કરવાની પરવાનગી નથી આપતી. (Ctrl+C) का प्रयोग करें।", + +PasteAsText : "પેસ્ટ (ટેક્સ્ટ)", +PasteFromWord : "પેસ્ટ (વર્ડ થી)", + +DlgPasteMsg2 : "Ctrl+V નો પ્રયોગ કરી પેસ્ટ કરો", +DlgPasteSec : "તમારા બ્રાઉઝર ની સુરક્ષિત સેટિંગસના કારણે,એડિટર તમારા કિલ્પબોર્ડ ડેટા ને કોપી નથી કરી શકતો. તમારે આ વિન્ડોમાં ફરીથી પેસ્ટ કરવું પડશે.", +DlgPasteIgnoreFont : "ફૉન્ટફેસ વ્યાખ્યાની અવગણના", +DlgPasteRemoveStyles : "સ્ટાઇલ વ્યાખ્યા કાઢી નાખવી", + +// Color Picker +ColorAutomatic : "સ્વચાલિત", +ColorMoreColors : "ઔર રંગ...", + +// Document Properties +DocProps : "ડૉક્યુમન્ટ ગુણ/પ્રૉપર્ટિઝ", + +// Anchor Dialog +DlgAnchorTitle : "ઍંકર ગુણ/પ્રૉપર્ટિઝ", +DlgAnchorName : "ઍંકરનું નામ", +DlgAnchorErrorName : "ઍંકરનું નામ ટાઈપ કરો", + +// Speller Pages Dialog +DlgSpellNotInDic : "શબ્દકોશમાં નથી", +DlgSpellChangeTo : "આનાથી બદલવું", +DlgSpellBtnIgnore : "ઇગ્નોર/અવગણના કરવી", +DlgSpellBtnIgnoreAll : "બધાની ઇગ્નોર/અવગણના કરવી", +DlgSpellBtnReplace : "બદલવું", +DlgSpellBtnReplaceAll : "બધા બદલી કરો", +DlgSpellBtnUndo : "અન્ડૂ", +DlgSpellNoSuggestions : "- કઇ સજેશન નથી -", +DlgSpellProgress : "શબ્દની જોડણી/સ્પેલ ચેક ચાલુ છે...", +DlgSpellNoMispell : "શબ્દની જોડણી/સ્પેલ ચેક પૂર્ણ: ખોટી જોડણી મળી નથી", +DlgSpellNoChanges : "શબ્દની જોડણી/સ્પેલ ચેક પૂર્ણ: એકપણ શબ્દ બદલયો નથી", +DlgSpellOneChange : "શબ્દની જોડણી/સ્પેલ ચેક પૂર્ણ: એક શબ્દ બદલયો છે", +DlgSpellManyChanges : "શબ્દની જોડણી/સ્પેલ ચેક પૂર્ણ: %1 શબ્દ બદલયા છે", + +IeSpellDownload : "સ્પેલ-ચેકર ઇન્સ્ટોલ નથી. શું તમે ડાઉનલોડ કરવા માંગો છો?", + +// Button Dialog +DlgButtonText : "ટેક્સ્ટ (વૅલ્યૂ)", +DlgButtonType : "પ્રકાર", +DlgButtonTypeBtn : "બટન", +DlgButtonTypeSbm : "સબ્મિટ", +DlgButtonTypeRst : "રિસેટ", + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "નામ", +DlgCheckboxValue : "વૅલ્યૂ", +DlgCheckboxSelected : "સિલેક્ટેડ", + +// Form Dialog +DlgFormName : "નામ", +DlgFormAction : "ક્રિયા", +DlgFormMethod : "પદ્ધતિ", + +// Select Field Dialog +DlgSelectName : "નામ", +DlgSelectValue : "વૅલ્યૂ", +DlgSelectSize : "સાઇઝ", +DlgSelectLines : "લીટીઓ", +DlgSelectChkMulti : "એકથી વધારે પસંદ કરી શકો", +DlgSelectOpAvail : "ઉપલબ્ધ વિકલ્પ", +DlgSelectOpText : "ટેક્સ્ટ", +DlgSelectOpValue : "વૅલ્યૂ", +DlgSelectBtnAdd : "ઉમેરવું", +DlgSelectBtnModify : "બદલવું", +DlgSelectBtnUp : "ઉપર", +DlgSelectBtnDown : "નીચે", +DlgSelectBtnSetValue : "પસંદ કરલી વૅલ્યૂ સેટ કરો", +DlgSelectBtnDelete : "રદ કરવું", + +// Textarea Dialog +DlgTextareaName : "નામ", +DlgTextareaCols : "કૉલમ/ઊભી કટાર", +DlgTextareaRows : "પંક્તિઓ", + +// Text Field Dialog +DlgTextName : "નામ", +DlgTextValue : "વૅલ્યૂ", +DlgTextCharWidth : "કેરેક્ટરની પહોળાઈ", +DlgTextMaxChars : "અધિકતમ કેરેક્ટર", +DlgTextType : "ટાઇપ", +DlgTextTypeText : "ટેક્સ્ટ", +DlgTextTypePass : "પાસવર્ડ", + +// Hidden Field Dialog +DlgHiddenName : "નામ", +DlgHiddenValue : "વૅલ્યૂ", + +// Bulleted List Dialog +BulletedListProp : "બુલેટ સૂચિ ગુણ", +NumberedListProp : "સંખ્યાંક્તિ સૂચિ ગુણ", +DlgLstStart : "શરૂઆતથી", +DlgLstType : "પ્રકાર", +DlgLstTypeCircle : "વર્તુળ", +DlgLstTypeDisc : "ડિસ્ક", +DlgLstTypeSquare : "ચોરસ", +DlgLstTypeNumbers : "સંખ્યા (1, 2, 3)", +DlgLstTypeLCase : "નાના અક્ષર (a, b, c)", +DlgLstTypeUCase : "મોટા અક્ષર (A, B, C)", +DlgLstTypeSRoman : "નાના રોમન આંક (i, ii, iii)", +DlgLstTypeLRoman : "મોટા રોમન આંક (I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "સાધારણ", +DlgDocBackTab : "બૅકગ્રાઉન્ડ", +DlgDocColorsTab : "રંગ અને માર્જિન/કિનાર", +DlgDocMetaTab : "મેટાડૅટા", + +DlgDocPageTitle : "પેજ મથાળું/ટાઇટલ", +DlgDocLangDir : "ભાષા લેખવાની પદ્ધતિ", +DlgDocLangDirLTR : "ડાબે થી જમણે (LTR)", +DlgDocLangDirRTL : "જમણે થી ડાબે (RTL)", +DlgDocLangCode : "ભાષા કોડ", +DlgDocCharSet : "કેરેક્ટર સેટ એન્કોડિંગ", +DlgDocCharSetCE : "મધ્ય યુરોપિઅન (Central European)", +DlgDocCharSetCT : "ચાઇનીઝ (Chinese Traditional Big5)", +DlgDocCharSetCR : "સિરીલિક (Cyrillic)", +DlgDocCharSetGR : "ગ્રીક (Greek)", +DlgDocCharSetJP : "જાપાનિઝ (Japanese)", +DlgDocCharSetKR : "કોરીયન (Korean)", +DlgDocCharSetTR : "ટર્કિ (Turkish)", +DlgDocCharSetUN : "યૂનિકોડ (UTF-8)", +DlgDocCharSetWE : "પશ્ચિમ યુરોપિઅન (Western European)", +DlgDocCharSetOther : "અન્ય કેરેક્ટર સેટ એન્કોડિંગ", + +DlgDocDocType : "ડૉક્યુમન્ટ પ્રકાર શીર્ષક", +DlgDocDocTypeOther : "અન્ય ડૉક્યુમન્ટ પ્રકાર શીર્ષક", +DlgDocIncXHTML : "XHTML સૂચના સમાવિષ્ટ કરવી", +DlgDocBgColor : "બૅકગ્રાઉન્ડ રંગ", +DlgDocBgImage : "બૅકગ્રાઉન્ડ ચિત્ર URL", +DlgDocBgNoScroll : "સ્ક્રોલ ન થાય તેવું બૅકગ્રાઉન્ડ", +DlgDocCText : "ટેક્સ્ટ", +DlgDocCLink : "લિંક", +DlgDocCVisited : "વિઝિટેડ લિંક", +DlgDocCActive : "સક્રિય લિંક", +DlgDocMargins : "પેજ માર્જિન", +DlgDocMaTop : "ઉપર", +DlgDocMaLeft : "ડાબી", +DlgDocMaRight : "જમણી", +DlgDocMaBottom : "નીચે", +DlgDocMeIndex : "ડૉક્યુમન્ટ ઇન્ડેક્સ સંકેતશબ્દ (અલ્પવિરામ (,) થી અલગ કરો)", +DlgDocMeDescr : "ડૉક્યુમન્ટ વર્ણન", +DlgDocMeAuthor : "લેખક", +DlgDocMeCopy : "કૉપિરાઇટ", +DlgDocPreview : "પૂર્વદર્શન", + +// Templates Dialog +Templates : "ટેમ્પ્લેટ", +DlgTemplatesTitle : "કન્ટેન્ટ ટેમ્પ્લેટ", +DlgTemplatesSelMsg : "એડિટરમાં ઓપન કરવા ટેમ્પ્લેટ પસંદ કરો (વર્તમાન કન્ટેન્ટ સેવ નહીં થાય):", +DlgTemplatesLoading : "ટેમ્પ્લેટ સૂચિ લોડ થાય છે. રાહ જુઓ...", +DlgTemplatesNoTpl : "(કોઈ ટેમ્પ્લેટ ડિફાઇન નથી)", +DlgTemplatesReplace : "મૂળ શબ્દને બદલો", + +// About Dialog +DlgAboutAboutTab : "FCKEditor ના વિષે", +DlgAboutBrowserInfoTab : "બ્રાઉઝર ના વિષે", +DlgAboutLicenseTab : "લાઇસન્સ", +DlgAboutVersion : "વર્ઝન", +DlgAboutInfo : "વધારે માહિતી માટે:", + +// Div Dialog +DlgDivGeneralTab : "General", //MISSING +DlgDivAdvancedTab : "Advanced", //MISSING +DlgDivStyle : "Style", //MISSING +DlgDivInlineStyle : "Inline Style", //MISSING + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/he.js b/fckeditor/editor/lang/he.js new file mode 100644 index 0000000..5ce4e45 --- /dev/null +++ b/fckeditor/editor/lang/he.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * Hebrew language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "rtl", + +ToolbarCollapse : "כיווץ סרגל הכלים", +ToolbarExpand : "פתיחת סרגל הכלים", + +// Toolbar Items and Context Menu +Save : "שמירה", +NewPage : "דף חדש", +Preview : "תצוגה מקדימה", +Cut : "גזירה", +Copy : "העתקה", +Paste : "הדבקה", +PasteText : "הדבקה כטקסט פשוט", +PasteWord : "הדבקה מ-וורד", +Print : "הדפסה", +SelectAll : "בחירת הכל", +RemoveFormat : "הסרת העיצוב", +InsertLinkLbl : "קישור", +InsertLink : "הוספת/עריכת קישור", +RemoveLink : "הסרת הקישור", +VisitLink : "פתח קישור", +Anchor : "הוספת/עריכת נקודת עיגון", +AnchorDelete : "הסר נקודת עיגון", +InsertImageLbl : "תמונה", +InsertImage : "הוספת/עריכת תמונה", +InsertFlashLbl : "פלאש", +InsertFlash : "הוסף/ערוך פלאש", +InsertTableLbl : "טבלה", +InsertTable : "הוספת/עריכת טבלה", +InsertLineLbl : "קו", +InsertLine : "הוספת קו אופקי", +InsertSpecialCharLbl: "תו מיוחד", +InsertSpecialChar : "הוספת תו מיוחד", +InsertSmileyLbl : "סמיילי", +InsertSmiley : "הוספת סמיילי", +About : "אודות FCKeditor", +Bold : "מודגש", +Italic : "נטוי", +Underline : "קו תחתון", +StrikeThrough : "כתיב מחוק", +Subscript : "כתיב תחתון", +Superscript : "כתיב עליון", +LeftJustify : "יישור לשמאל", +CenterJustify : "מרכוז", +RightJustify : "יישור לימין", +BlockJustify : "יישור לשוליים", +DecreaseIndent : "הקטנת אינדנטציה", +IncreaseIndent : "הגדלת אינדנטציה", +Blockquote : "בלוק ציטוט", +CreateDiv : "צור מיכל(תג)DIV", +EditDiv : "ערוך מיכל (תג)DIV", +DeleteDiv : "הסר מיכל(תג) DIV", +Undo : "ביטול צעד אחרון", +Redo : "חזרה על צעד אחרון", +NumberedListLbl : "רשימה ממוספרת", +NumberedList : "הוספת/הסרת רשימה ממוספרת", +BulletedListLbl : "רשימת נקודות", +BulletedList : "הוספת/הסרת רשימת נקודות", +ShowTableBorders : "הצגת מסגרת הטבלה", +ShowDetails : "הצגת פרטים", +Style : "סגנון", +FontFormat : "עיצוב", +Font : "גופן", +FontSize : "גודל", +TextColor : "צבע טקסט", +BGColor : "צבע רקע", +Source : "מקור", +Find : "חיפוש", +Replace : "החלפה", +SpellCheck : "בדיקת איות", +UniversalKeyboard : "מקלדת אוניברסלית", +PageBreakLbl : "שבירת דף", +PageBreak : "הוסף שבירת דף", + +Form : "טופס", +Checkbox : "תיבת סימון", +RadioButton : "לחצן אפשרויות", +TextField : "שדה טקסט", +Textarea : "איזור טקסט", +HiddenField : "שדה חבוי", +Button : "כפתור", +SelectionField : "שדה בחירה", +ImageButton : "כפתור תמונה", + +FitWindow : "הגדל את גודל העורך", +ShowBlocks : "הצג בלוקים", + +// Context Menu +EditLink : "עריכת קישור", +CellCM : "תא", +RowCM : "שורה", +ColumnCM : "עמודה", +InsertRowAfter : "הוסף שורה אחרי", +InsertRowBefore : "הוסף שורה לפני", +DeleteRows : "מחיקת שורות", +InsertColumnAfter : "הוסף עמודה אחרי", +InsertColumnBefore : "הוסף עמודה לפני", +DeleteColumns : "מחיקת עמודות", +InsertCellAfter : "הוסף תא אחרי", +InsertCellBefore : "הוסף תא אחרי", +DeleteCells : "מחיקת תאים", +MergeCells : "מיזוג תאים", +MergeRight : "מזג ימינה", +MergeDown : "מזג למטה", +HorizontalSplitCell : "פצל תא אופקית", +VerticalSplitCell : "פצל תא אנכית", +TableDelete : "מחק טבלה", +CellProperties : "תכונות התא", +TableProperties : "תכונות הטבלה", +ImageProperties : "תכונות התמונה", +FlashProperties : "מאפייני פלאש", + +AnchorProp : "מאפייני נקודת עיגון", +ButtonProp : "מאפייני כפתור", +CheckboxProp : "מאפייני תיבת סימון", +HiddenFieldProp : "מאפיני שדה חבוי", +RadioButtonProp : "מאפייני לחצן אפשרויות", +ImageButtonProp : "מאפיני כפתור תמונה", +TextFieldProp : "מאפייני שדה טקסט", +SelectionFieldProp : "מאפייני שדה בחירה", +TextareaProp : "מאפיני איזור טקסט", +FormProp : "מאפיני טופס", + +FontFormats : "נורמלי;קוד;כתובת;כותרת;כותרת 2;כותרת 3;כותרת 4;כותרת 5;כותרת 6", + +// Alerts and Messages +ProcessingXHTML : "מעבד XHTML, נא להמתין...", +Done : "המשימה הושלמה", +PasteWordConfirm : "נראה הטקסט שבכוונתך להדביק מקורו בקובץ וורד. האם ברצונך לנקות אותו טרם ההדבקה?", +NotCompatiblePaste : "פעולה זו זמינה לדפדפן אינטרנט אקספלורר מגירסא 5.5 ומעלה. האם להמשיך בהדבקה ללא הניקוי?", +UnknownToolbarItem : "פריט לא ידוע בסרגל הכלים \"%1\"", +UnknownCommand : "שם פעולה לא ידוע \"%1\"", +NotImplemented : "הפקודה לא מיושמת", +UnknownToolbarSet : "ערכת סרגל הכלים \"%1\" לא קיימת", +NoActiveX : "הגדרות אבטחה של הדפדפן עלולות לגביל את אפשרויות העריכה.יש לאפשר את האופציה \"הרץ פקדים פעילים ותוספות\". תוכל לחוות טעויות וחיווים של אפשרויות שחסרים.", +BrowseServerBlocked : "לא ניתן לגשת לדפדפן משאבים.אנא וודא שחוסם חלונות הקופצים לא פעיל.", +DialogBlocked : "לא היה ניתן לפתוח חלון דיאלוג. אנא וודא שחוסם חלונות קופצים לא פעיל.", +VisitLinkBlocked : "לא ניתן לפתוח חלון חדש.נא לוודא שחוסמי החלונות הקופצים לא פעילים.", + +// Dialogs +DlgBtnOK : "אישור", +DlgBtnCancel : "ביטול", +DlgBtnClose : "סגירה", +DlgBtnBrowseServer : "סייר השרת", +DlgAdvancedTag : "אפשרויות מתקדמות", +DlgOpOther : "<אחר>", +DlgInfoTab : "מידע", +DlgAlertUrl : "אנא הזן URL", + +// General Dialogs Labels +DlgGenNotSet : "<לא נקבע>", +DlgGenId : "זיהוי (Id)", +DlgGenLangDir : "כיוון שפה", +DlgGenLangDirLtr : "שמאל לימין (LTR)", +DlgGenLangDirRtl : "ימין לשמאל (RTL)", +DlgGenLangCode : "קוד שפה", +DlgGenAccessKey : "מקש גישה", +DlgGenName : "שם", +DlgGenTabIndex : "מספר טאב", +DlgGenLongDescr : "קישור לתיאור מפורט", +DlgGenClass : "גיליונות עיצוב קבוצות", +DlgGenTitle : "כותרת מוצעת", +DlgGenContType : "Content Type מוצע", +DlgGenLinkCharset : "קידוד המשאב המקושר", +DlgGenStyle : "סגנון", + +// Image Dialog +DlgImgTitle : "תכונות התמונה", +DlgImgInfoTab : "מידע על התמונה", +DlgImgBtnUpload : "שליחה לשרת", +DlgImgURL : "כתובת (URL)", +DlgImgUpload : "העלאה", +DlgImgAlt : "טקסט חלופי", +DlgImgWidth : "רוחב", +DlgImgHeight : "גובה", +DlgImgLockRatio : "נעילת היחס", +DlgBtnResetSize : "איפוס הגודל", +DlgImgBorder : "מסגרת", +DlgImgHSpace : "מרווח אופקי", +DlgImgVSpace : "מרווח אנכי", +DlgImgAlign : "יישור", +DlgImgAlignLeft : "לשמאל", +DlgImgAlignAbsBottom: "לתחתית האבסולוטית", +DlgImgAlignAbsMiddle: "מרכוז אבסולוטי", +DlgImgAlignBaseline : "לקו התחתית", +DlgImgAlignBottom : "לתחתית", +DlgImgAlignMiddle : "לאמצע", +DlgImgAlignRight : "לימין", +DlgImgAlignTextTop : "לראש הטקסט", +DlgImgAlignTop : "למעלה", +DlgImgPreview : "תצוגה מקדימה", +DlgImgAlertUrl : "נא להקליד את כתובת התמונה", +DlgImgLinkTab : "קישור", + +// Flash Dialog +DlgFlashTitle : "מאפיני פלאש", +DlgFlashChkPlay : "נגן אוטומטי", +DlgFlashChkLoop : "לולאה", +DlgFlashChkMenu : "אפשר תפריט פלאש", +DlgFlashScale : "גודל", +DlgFlashScaleAll : "הצג הכל", +DlgFlashScaleNoBorder : "ללא גבולות", +DlgFlashScaleFit : "התאמה מושלמת", + +// Link Dialog +DlgLnkWindowTitle : "קישור", +DlgLnkInfoTab : "מידע על הקישור", +DlgLnkTargetTab : "מטרה", + +DlgLnkType : "סוג קישור", +DlgLnkTypeURL : "כתובת (URL)", +DlgLnkTypeAnchor : "עוגן בעמוד זה", +DlgLnkTypeEMail : "דוא''ל", +DlgLnkProto : "פרוטוקול", +DlgLnkProtoOther : "<אחר>", +DlgLnkURL : "כתובת (URL)", +DlgLnkAnchorSel : "בחירת עוגן", +DlgLnkAnchorByName : "עפ''י שם העוגן", +DlgLnkAnchorById : "עפ''י זיהוי (Id) הרכיב", +DlgLnkNoAnchors : "(אין עוגנים זמינים בדף)", +DlgLnkEMail : "כתובת הדוא''ל", +DlgLnkEMailSubject : "נושא ההודעה", +DlgLnkEMailBody : "גוף ההודעה", +DlgLnkUpload : "העלאה", +DlgLnkBtnUpload : "שליחה לשרת", + +DlgLnkTarget : "מטרה", +DlgLnkTargetFrame : "<מסגרת>", +DlgLnkTargetPopup : "<חלון קופץ>", +DlgLnkTargetBlank : "חלון חדש (_blank)", +DlgLnkTargetParent : "חלון האב (_parent)", +DlgLnkTargetSelf : "באותו החלון (_self)", +DlgLnkTargetTop : "חלון ראשי (_top)", +DlgLnkTargetFrameName : "שם מסגרת היעד", +DlgLnkPopWinName : "שם החלון הקופץ", +DlgLnkPopWinFeat : "תכונות החלון הקופץ", +DlgLnkPopResize : "בעל גודל ניתן לשינוי", +DlgLnkPopLocation : "סרגל כתובת", +DlgLnkPopMenu : "סרגל תפריט", +DlgLnkPopScroll : "ניתן לגלילה", +DlgLnkPopStatus : "סרגל חיווי", +DlgLnkPopToolbar : "סרגל הכלים", +DlgLnkPopFullScrn : "מסך מלא (IE)", +DlgLnkPopDependent : "תלוי (Netscape)", +DlgLnkPopWidth : "רוחב", +DlgLnkPopHeight : "גובה", +DlgLnkPopLeft : "מיקום צד שמאל", +DlgLnkPopTop : "מיקום צד עליון", + +DlnLnkMsgNoUrl : "נא להקליד את כתובת הקישור (URL)", +DlnLnkMsgNoEMail : "נא להקליד את כתובת הדוא''ל", +DlnLnkMsgNoAnchor : "נא לבחור עוגן במסמך", +DlnLnkMsgInvPopName : "שם החלון הקופץ חייב להתחיל באותיות ואסור לכלול רווחים", + +// Color Dialog +DlgColorTitle : "בחירת צבע", +DlgColorBtnClear : "איפוס", +DlgColorHighlight : "נוכחי", +DlgColorSelected : "נבחר", + +// Smiley Dialog +DlgSmileyTitle : "הוספת סמיילי", + +// Special Character Dialog +DlgSpecialCharTitle : "בחירת תו מיוחד", + +// Table Dialog +DlgTableTitle : "תכונות טבלה", +DlgTableRows : "שורות", +DlgTableColumns : "עמודות", +DlgTableBorder : "גודל מסגרת", +DlgTableAlign : "יישור", +DlgTableAlignNotSet : "<לא נקבע>", +DlgTableAlignLeft : "שמאל", +DlgTableAlignCenter : "מרכז", +DlgTableAlignRight : "ימין", +DlgTableWidth : "רוחב", +DlgTableWidthPx : "פיקסלים", +DlgTableWidthPc : "אחוז", +DlgTableHeight : "גובה", +DlgTableCellSpace : "מרווח תא", +DlgTableCellPad : "ריפוד תא", +DlgTableCaption : "כיתוב", +DlgTableSummary : "סיכום", +DlgTableHeaders : "כותרות", +DlgTableHeadersNone : "אין", +DlgTableHeadersColumn : "עמודה ראשונה", +DlgTableHeadersRow : "שורה ראשונה", +DlgTableHeadersBoth : "שניהם", + +// Table Cell Dialog +DlgCellTitle : "תכונות תא", +DlgCellWidth : "רוחב", +DlgCellWidthPx : "פיקסלים", +DlgCellWidthPc : "אחוז", +DlgCellHeight : "גובה", +DlgCellWordWrap : "גלילת שורות", +DlgCellWordWrapNotSet : "<לא נקבע>", +DlgCellWordWrapYes : "כן", +DlgCellWordWrapNo : "לא", +DlgCellHorAlign : "יישור אופקי", +DlgCellHorAlignNotSet : "<לא נקבע>", +DlgCellHorAlignLeft : "שמאל", +DlgCellHorAlignCenter : "מרכז", +DlgCellHorAlignRight: "ימין", +DlgCellVerAlign : "יישור אנכי", +DlgCellVerAlignNotSet : "<לא נקבע>", +DlgCellVerAlignTop : "למעלה", +DlgCellVerAlignMiddle : "לאמצע", +DlgCellVerAlignBottom : "לתחתית", +DlgCellVerAlignBaseline : "קו תחתית", +DlgCellType : "סוג תא", +DlgCellTypeData : "סוג", +DlgCellTypeHeader : "כותרת", +DlgCellRowSpan : "טווח שורות", +DlgCellCollSpan : "טווח עמודות", +DlgCellBackColor : "צבע רקע", +DlgCellBorderColor : "צבע מסגרת", +DlgCellBtnSelect : "בחירה...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "חפש והחלף", + +// Find Dialog +DlgFindTitle : "חיפוש", +DlgFindFindBtn : "חיפוש", +DlgFindNotFoundMsg : "הטקסט המבוקש לא נמצא.", + +// Replace Dialog +DlgReplaceTitle : "החלפה", +DlgReplaceFindLbl : "חיפוש מחרוזת:", +DlgReplaceReplaceLbl : "החלפה במחרוזת:", +DlgReplaceCaseChk : "התאמת סוג אותיות (Case)", +DlgReplaceReplaceBtn : "החלפה", +DlgReplaceReplAllBtn : "החלפה בכל העמוד", +DlgReplaceWordChk : "התאמה למילה המלאה", + +// Paste Operations / Dialog +PasteErrorCut : "הגדרות האבטחה בדפדפן שלך לא מאפשרות לעורך לבצע פעולות גזירה אוטומטיות. יש להשתמש במקלדת לשם כך (Ctrl+X).", +PasteErrorCopy : "הגדרות האבטחה בדפדפן שלך לא מאפשרות לעורך לבצע פעולות העתקה אוטומטיות. יש להשתמש במקלדת לשם כך (Ctrl+C).", + +PasteAsText : "הדבקה כטקסט פשוט", +PasteFromWord : "הדבקה מ-וורד", + +DlgPasteMsg2 : "אנא הדבק בתוך הקופסה באמצעות (Ctrl+V) ולחץ על אישור.", +DlgPasteSec : "עקב הגדרות אבטחה בדפדפן, לא ניתן לגשת אל לוח הגזירים (clipboard) בצורה ישירה.אנא בצע הדבק שוב בחלון זה.", +DlgPasteIgnoreFont : "התעלם מהגדרות סוג פונט", +DlgPasteRemoveStyles : "הסר הגדרות סגנון", + +// Color Picker +ColorAutomatic : "אוטומטי", +ColorMoreColors : "צבעים נוספים...", + +// Document Properties +DocProps : "מאפיני מסמך", + +// Anchor Dialog +DlgAnchorTitle : "מאפיני נקודת עיגון", +DlgAnchorName : "שם לנקודת עיגון", +DlgAnchorErrorName : "אנא הזן שם לנקודת עיגון", + +// Speller Pages Dialog +DlgSpellNotInDic : "לא נמצא במילון", +DlgSpellChangeTo : "שנה ל", +DlgSpellBtnIgnore : "התעלם", +DlgSpellBtnIgnoreAll : "התעלם מהכל", +DlgSpellBtnReplace : "החלף", +DlgSpellBtnReplaceAll : "החלף הכל", +DlgSpellBtnUndo : "החזר", +DlgSpellNoSuggestions : "- אין הצעות -", +DlgSpellProgress : "בדיקות איות בתהליך ....", +DlgSpellNoMispell : "בדיקות איות הסתיימה: לא נמצאו שגיעות כתיב", +DlgSpellNoChanges : "בדיקות איות הסתיימה: לא שונתה אף מילה", +DlgSpellOneChange : "בדיקות איות הסתיימה: שונתה מילה אחת", +DlgSpellManyChanges : "בדיקות איות הסתיימה: %1 מילים שונו", + +IeSpellDownload : "בודק האיות לא מותקן, האם אתה מעוניין להוריד?", + +// Button Dialog +DlgButtonText : "טקסט (ערך)", +DlgButtonType : "סוג", +DlgButtonTypeBtn : "כפתור", +DlgButtonTypeSbm : "שלח", +DlgButtonTypeRst : "אפס", + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "שם", +DlgCheckboxValue : "ערך", +DlgCheckboxSelected : "בחור", + +// Form Dialog +DlgFormName : "שם", +DlgFormAction : "שלח אל", +DlgFormMethod : "סוג שליחה", + +// Select Field Dialog +DlgSelectName : "שם", +DlgSelectValue : "ערך", +DlgSelectSize : "גודל", +DlgSelectLines : "שורות", +DlgSelectChkMulti : "אפשר בחירות מרובות", +DlgSelectOpAvail : "אפשרויות זמינות", +DlgSelectOpText : "טקסט", +DlgSelectOpValue : "ערך", +DlgSelectBtnAdd : "הוסף", +DlgSelectBtnModify : "שנה", +DlgSelectBtnUp : "למעלה", +DlgSelectBtnDown : "למטה", +DlgSelectBtnSetValue : "קבע כברירת מחדל", +DlgSelectBtnDelete : "מחק", + +// Textarea Dialog +DlgTextareaName : "שם", +DlgTextareaCols : "עמודות", +DlgTextareaRows : "שורות", + +// Text Field Dialog +DlgTextName : "שם", +DlgTextValue : "ערך", +DlgTextCharWidth : "רוחב באותיות", +DlgTextMaxChars : "מקסימות אותיות", +DlgTextType : "סוג", +DlgTextTypeText : "טקסט", +DlgTextTypePass : "סיסמה", + +// Hidden Field Dialog +DlgHiddenName : "שם", +DlgHiddenValue : "ערך", + +// Bulleted List Dialog +BulletedListProp : "מאפייני רשימה", +NumberedListProp : "מאפייני רשימה ממוספרת", +DlgLstStart : "התחלה", +DlgLstType : "סוג", +DlgLstTypeCircle : "עיגול", +DlgLstTypeDisc : "דיסק", +DlgLstTypeSquare : "מרובע", +DlgLstTypeNumbers : "מספרים (1, 2, 3)", +DlgLstTypeLCase : "אותיות קטנות (a, b, c)", +DlgLstTypeUCase : "אותיות גדולות (A, B, C)", +DlgLstTypeSRoman : "ספרות רומאיות קטנות (i, ii, iii)", +DlgLstTypeLRoman : "ספרות רומאיות גדולות (I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "כללי", +DlgDocBackTab : "רקע", +DlgDocColorsTab : "צבעים וגבולות", +DlgDocMetaTab : "נתוני META", + +DlgDocPageTitle : "כותרת דף", +DlgDocLangDir : "כיוון שפה", +DlgDocLangDirLTR : "שמאל לימין (LTR)", +DlgDocLangDirRTL : "ימין לשמאל (RTL)", +DlgDocLangCode : "קוד שפה", +DlgDocCharSet : "קידוד אותיות", +DlgDocCharSetCE : "מרכז אירופה", +DlgDocCharSetCT : "סיני מסורתי (Big5)", +DlgDocCharSetCR : "קירילי", +DlgDocCharSetGR : "יוונית", +DlgDocCharSetJP : "יפנית", +DlgDocCharSetKR : "קוראנית", +DlgDocCharSetTR : "טורקית", +DlgDocCharSetUN : "יוני קוד (UTF-8)", +DlgDocCharSetWE : "מערב אירופה", +DlgDocCharSetOther : "קידוד אותיות אחר", + +DlgDocDocType : "הגדרות סוג מסמך", +DlgDocDocTypeOther : "הגדרות סוג מסמך אחרות", +DlgDocIncXHTML : "כלול הגדרות XHTML", +DlgDocBgColor : "צבע רקע", +DlgDocBgImage : "URL לתמונת רקע", +DlgDocBgNoScroll : "רגע ללא גלילה", +DlgDocCText : "טקסט", +DlgDocCLink : "קישור", +DlgDocCVisited : "קישור שבוקר", +DlgDocCActive : " קישור פעיל", +DlgDocMargins : "גבולות דף", +DlgDocMaTop : "למעלה", +DlgDocMaLeft : "שמאלה", +DlgDocMaRight : "ימינה", +DlgDocMaBottom : "למטה", +DlgDocMeIndex : "מפתח עניינים של המסמך )מופרד בפסיק(", +DlgDocMeDescr : "תאור מסמך", +DlgDocMeAuthor : "מחבר", +DlgDocMeCopy : "זכויות יוצרים", +DlgDocPreview : "תצוגה מקדימה", + +// Templates Dialog +Templates : "תבניות", +DlgTemplatesTitle : "תביות תוכן", +DlgTemplatesSelMsg : "אנא בחר תבנית לפתיחה בעורך
התוכן המקורי ימחק:", +DlgTemplatesLoading : "מעלה רשימת תבניות אנא המתן", +DlgTemplatesNoTpl : "(לא הוגדרו תבניות)", +DlgTemplatesReplace : "החלפת תוכן ממשי", + +// About Dialog +DlgAboutAboutTab : "אודות", +DlgAboutBrowserInfoTab : "גירסת דפדפן", +DlgAboutLicenseTab : "רשיון", +DlgAboutVersion : "גירסא", +DlgAboutInfo : "מידע נוסף ניתן למצוא כאן:", + +// Div Dialog +DlgDivGeneralTab : "כללי", +DlgDivAdvancedTab : "מתקדם", +DlgDivStyle : "סגנון", +DlgDivInlineStyle : "סגנון בתוך השורה", + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/hi.js b/fckeditor/editor/lang/hi.js new file mode 100644 index 0000000..93035ab --- /dev/null +++ b/fckeditor/editor/lang/hi.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * Hindi language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "टूलबार सिमटायें", +ToolbarExpand : "टूलबार का विस्तार करें", + +// Toolbar Items and Context Menu +Save : "सेव", +NewPage : "नया पेज", +Preview : "प्रीव्यू", +Cut : "कट", +Copy : "कॉपी", +Paste : "पेस्ट", +PasteText : "पेस्ट (सादा टॅक्स्ट)", +PasteWord : "पेस्ट (वर्ड से)", +Print : "प्रिन्ट", +SelectAll : "सब सॅलॅक्ट करें", +RemoveFormat : "फ़ॉर्मैट हटायें", +InsertLinkLbl : "लिंक", +InsertLink : "लिंक इन्सर्ट/संपादन", +RemoveLink : "लिंक हटायें", +VisitLink : "लिंक खोलें", +Anchor : "ऐंकर इन्सर्ट/संपादन", +AnchorDelete : "ऐंकर हटायें", +InsertImageLbl : "तस्वीर", +InsertImage : "तस्वीर इन्सर्ट/संपादन", +InsertFlashLbl : "फ़्लैश", +InsertFlash : "फ़्लैश इन्सर्ट/संपादन", +InsertTableLbl : "टेबल", +InsertTable : "टेबल इन्सर्ट/संपादन", +InsertLineLbl : "रेखा", +InsertLine : "हॉरिज़ॉन्टल रेखा इन्सर्ट करें", +InsertSpecialCharLbl: "विशेष करॅक्टर", +InsertSpecialChar : "विशेष करॅक्टर इन्सर्ट करें", +InsertSmileyLbl : "स्माइली", +InsertSmiley : "स्माइली इन्सर्ट करें", +About : "FCKeditor के बारे में", +Bold : "बोल्ड", +Italic : "इटैलिक", +Underline : "रेखांकण", +StrikeThrough : "स्ट्राइक थ्रू", +Subscript : "अधोलेख", +Superscript : "अभिलेख", +LeftJustify : "बायीं तरफ", +CenterJustify : "बीच में", +RightJustify : "दायीं तरफ", +BlockJustify : "ब्लॉक जस्टीफ़ाई", +DecreaseIndent : "इन्डॅन्ट कम करें", +IncreaseIndent : "इन्डॅन्ट बढ़ायें", +Blockquote : "ब्लॉक-कोट", +CreateDiv : "डिव (Div) कन्टेनर बनायें", +EditDiv : "डिव (Div) कन्टेनर बदलें", +DeleteDiv : "डिव कन्टेनर हटायें", +Undo : "अन्डू", +Redo : "रीडू", +NumberedListLbl : "अंकीय सूची", +NumberedList : "अंकीय सूची इन्सर्ट/संपादन", +BulletedListLbl : "बुलॅट सूची", +BulletedList : "बुलॅट सूची इन्सर्ट/संपादन", +ShowTableBorders : "टेबल बॉर्डरयें दिखायें", +ShowDetails : "ज्यादा दिखायें", +Style : "स्टाइल", +FontFormat : "फ़ॉर्मैट", +Font : "फ़ॉन्ट", +FontSize : "साइज़", +TextColor : "टेक्स्ट रंग", +BGColor : "बैक्ग्राउन्ड रंग", +Source : "सोर्स", +Find : "खोजें", +Replace : "रीप्लेस", +SpellCheck : "वर्तनी (स्पेलिंग) जाँच", +UniversalKeyboard : "यूनीवर्सल कीबोर्ड", +PageBreakLbl : "पेज ब्रेक", +PageBreak : "पेज ब्रेक इन्सर्ट् करें", + +Form : "फ़ॉर्म", +Checkbox : "चॅक बॉक्स", +RadioButton : "रेडिओ बटन", +TextField : "टेक्स्ट फ़ील्ड", +Textarea : "टेक्स्ट एरिया", +HiddenField : "गुप्त फ़ील्ड", +Button : "बटन", +SelectionField : "चुनाव फ़ील्ड", +ImageButton : "तस्वीर बटन", + +FitWindow : "एडिटर साइज़ को चरम सीमा तक बढ़ायें", +ShowBlocks : "ब्लॉक दिखायें", + +// Context Menu +EditLink : "लिंक संपादन", +CellCM : "खाना", +RowCM : "पंक्ति", +ColumnCM : "कालम", +InsertRowAfter : "बाद में पंक्ति डालें", +InsertRowBefore : "पहले पंक्ति डालें", +DeleteRows : "पंक्तियाँ डिलीट करें", +InsertColumnAfter : "बाद में कालम डालें", +InsertColumnBefore : "पहले कालम डालें", +DeleteColumns : "कालम डिलीट करें", +InsertCellAfter : "बाद में सैल डालें", +InsertCellBefore : "पहले सैल डालें", +DeleteCells : "सैल डिलीट करें", +MergeCells : "सैल मिलायें", +MergeRight : "बाँया विलय", +MergeDown : "नीचे विलय करें", +HorizontalSplitCell : "सैल को क्षैतिज स्थिति में विभाजित करें", +VerticalSplitCell : "सैल को लम्बाकार में विभाजित करें", +TableDelete : "टेबल डिलीट करें", +CellProperties : "सैल प्रॉपर्टीज़", +TableProperties : "टेबल प्रॉपर्टीज़", +ImageProperties : "तस्वीर प्रॉपर्टीज़", +FlashProperties : "फ़्लैश प्रॉपर्टीज़", + +AnchorProp : "ऐंकर प्रॉपर्टीज़", +ButtonProp : "बटन प्रॉपर्टीज़", +CheckboxProp : "चॅक बॉक्स प्रॉपर्टीज़", +HiddenFieldProp : "गुप्त फ़ील्ड प्रॉपर्टीज़", +RadioButtonProp : "रेडिओ बटन प्रॉपर्टीज़", +ImageButtonProp : "तस्वीर बटन प्रॉपर्टीज़", +TextFieldProp : "टेक्स्ट फ़ील्ड प्रॉपर्टीज़", +SelectionFieldProp : "चुनाव फ़ील्ड प्रॉपर्टीज़", +TextareaProp : "टेक्स्त एरिया प्रॉपर्टीज़", +FormProp : "फ़ॉर्म प्रॉपर्टीज़", + +FontFormats : "साधारण;फ़ॉर्मैटॅड;पता;शीर्षक 1;शीर्षक 2;शीर्षक 3;शीर्षक 4;शीर्षक 5;शीर्षक 6;शीर्षक (DIV)", + +// Alerts and Messages +ProcessingXHTML : "XHTML प्रोसॅस हो रहा है। ज़रा ठहरें...", +Done : "पूरा हुआ", +PasteWordConfirm : "आप जो टेक्स्ट पेस्ट करना चाहते हैं, वह वर्ड से कॉपी किया हुआ लग रहा है। क्या पेस्ट करने से पहले आप इसे साफ़ करना चाहेंगे?", +NotCompatiblePaste : "यह कमांड इन्टरनॅट एक्स्प्लोरर(Internet Explorer) 5.5 या उसके बाद के वर्ज़न के लिए ही उपलब्ध है। क्या आप बिना साफ़ किए पेस्ट करना चाहेंगे?", +UnknownToolbarItem : "अनजान टूलबार आइटम \"%1\"", +UnknownCommand : "अनजान कमान्ड \"%1\"", +NotImplemented : "कमान्ड इम्प्लीमॅन्ट नहीं किया गया है", +UnknownToolbarSet : "टूलबार सॅट \"%1\" उपलब्ध नहीं है", +NoActiveX : "आपके ब्राउज़र् की सुरक्शा सेटिंग्स् एडिटर की कुछ् फ़ीचरों को सीमित कर् सकती हैं। क्रिपया \"Run ActiveX controls and plug-ins\" विकल्प को एनेबल करें. आपको एरर्स् और गायब फ़ीचर्स् का अनुभव हो सकता है।", +BrowseServerBlocked : "रिसोर्सेज़ ब्राउज़र् नहीं खोला जा सका। क्रिपया सभी पॉप्-अप् ब्लॉकर्स् को निष्क्रिय करें।", +DialogBlocked : "डायलग विन्डो नहीं खोला जा सका। क्रिपया सभी पॉप्-अप् ब्लॉकर्स् को निष्क्रिय करें।", +VisitLinkBlocked : "नया विन्डो नहीं खोला जा सका। क्रिपया सभी पॉप्-अप् ब्लॉकर्स् को निष्क्रिय करें।", + +// Dialogs +DlgBtnOK : "ठीक है", +DlgBtnCancel : "रद्द करें", +DlgBtnClose : "बन्द करें", +DlgBtnBrowseServer : "सर्वर ब्राउज़ करें", +DlgAdvancedTag : "ऍड्वान्स्ड", +DlgOpOther : "<अन्य>", +DlgInfoTab : "सूचना", +DlgAlertUrl : "URL इन्सर्ट करें", + +// General Dialogs Labels +DlgGenNotSet : "<सॅट नहीं>", +DlgGenId : "Id", +DlgGenLangDir : "भाषा लिखने की दिशा", +DlgGenLangDirLtr : "बायें से दायें (LTR)", +DlgGenLangDirRtl : "दायें से बायें (RTL)", +DlgGenLangCode : "भाषा कोड", +DlgGenAccessKey : "ऍक्सॅस की", +DlgGenName : "नाम", +DlgGenTabIndex : "टैब इन्डॅक्स", +DlgGenLongDescr : "अधिक विवरण के लिए URL", +DlgGenClass : "स्टाइल-शीट क्लास", +DlgGenTitle : "परामर्श शीर्शक", +DlgGenContType : "परामर्श कन्टॅन्ट प्रकार", +DlgGenLinkCharset : "लिंक रिसोर्स करॅक्टर सॅट", +DlgGenStyle : "स्टाइल", + +// Image Dialog +DlgImgTitle : "तस्वीर प्रॉपर्टीज़", +DlgImgInfoTab : "तस्वीर की जानकारी", +DlgImgBtnUpload : "इसे सर्वर को भेजें", +DlgImgURL : "URL", +DlgImgUpload : "अपलोड", +DlgImgAlt : "वैकल्पिक टेक्स्ट", +DlgImgWidth : "चौड़ाई", +DlgImgHeight : "ऊँचाई", +DlgImgLockRatio : "लॉक अनुपात", +DlgBtnResetSize : "रीसॅट साइज़", +DlgImgBorder : "बॉर्डर", +DlgImgHSpace : "हॉरिज़ॉन्टल स्पेस", +DlgImgVSpace : "वर्टिकल स्पेस", +DlgImgAlign : "ऍलाइन", +DlgImgAlignLeft : "दायें", +DlgImgAlignAbsBottom: "Abs नीचे", +DlgImgAlignAbsMiddle: "Abs ऊपर", +DlgImgAlignBaseline : "मूल रेखा", +DlgImgAlignBottom : "नीचे", +DlgImgAlignMiddle : "मध्य", +DlgImgAlignRight : "दायें", +DlgImgAlignTextTop : "टेक्स्ट ऊपर", +DlgImgAlignTop : "ऊपर", +DlgImgPreview : "प्रीव्यू", +DlgImgAlertUrl : "तस्वीर का URL टाइप करें ", +DlgImgLinkTab : "लिंक", + +// Flash Dialog +DlgFlashTitle : "फ़्लैश प्रॉपर्टीज़", +DlgFlashChkPlay : "ऑटो प्ले", +DlgFlashChkLoop : "लूप", +DlgFlashChkMenu : "फ़्लैश मॅन्यू का प्रयोग करें", +DlgFlashScale : "स्केल", +DlgFlashScaleAll : "सभी दिखायें", +DlgFlashScaleNoBorder : "कोई बॉर्डर नहीं", +DlgFlashScaleFit : "बिल्कुल फ़िट", + +// Link Dialog +DlgLnkWindowTitle : "लिंक", +DlgLnkInfoTab : "लिंक ", +DlgLnkTargetTab : "टार्गेट", + +DlgLnkType : "लिंक प्रकार", +DlgLnkTypeURL : "URL", +DlgLnkTypeAnchor : "इस पेज का ऐंकर", +DlgLnkTypeEMail : "ई-मेल", +DlgLnkProto : "प्रोटोकॉल", +DlgLnkProtoOther : "<अन्य>", +DlgLnkURL : "URL", +DlgLnkAnchorSel : "ऐंकर चुनें", +DlgLnkAnchorByName : "ऐंकर नाम से", +DlgLnkAnchorById : "ऍलीमॅन्ट Id से", +DlgLnkNoAnchors : "(डॉक्यूमॅन्ट में ऐंकर्स की संख्या)", +DlgLnkEMail : "ई-मेल पता", +DlgLnkEMailSubject : "संदेश विषय", +DlgLnkEMailBody : "संदेश", +DlgLnkUpload : "अपलोड", +DlgLnkBtnUpload : "इसे सर्वर को भेजें", + +DlgLnkTarget : "टार्गेट", +DlgLnkTargetFrame : "<फ़्रेम>", +DlgLnkTargetPopup : "<पॉप-अप विन्डो>", +DlgLnkTargetBlank : "नया विन्डो (_blank)", +DlgLnkTargetParent : "मूल विन्डो (_parent)", +DlgLnkTargetSelf : "इसी विन्डो (_self)", +DlgLnkTargetTop : "शीर्ष विन्डो (_top)", +DlgLnkTargetFrameName : "टार्गेट फ़्रेम का नाम", +DlgLnkPopWinName : "पॉप-अप विन्डो का नाम", +DlgLnkPopWinFeat : "पॉप-अप विन्डो फ़ीचर्स", +DlgLnkPopResize : "साइज़ बदला जा सकता है", +DlgLnkPopLocation : "लोकेशन बार", +DlgLnkPopMenu : "मॅन्यू बार", +DlgLnkPopScroll : "स्क्रॉल बार", +DlgLnkPopStatus : "स्टेटस बार", +DlgLnkPopToolbar : "टूल बार", +DlgLnkPopFullScrn : "फ़ुल स्क्रीन (IE)", +DlgLnkPopDependent : "डिपेन्डॅन्ट (Netscape)", +DlgLnkPopWidth : "चौड़ाई", +DlgLnkPopHeight : "ऊँचाई", +DlgLnkPopLeft : "बायीं तरफ", +DlgLnkPopTop : "दायीं तरफ", + +DlnLnkMsgNoUrl : "लिंक URL टाइप करें", +DlnLnkMsgNoEMail : "ई-मेल पता टाइप करें", +DlnLnkMsgNoAnchor : "ऐंकर चुनें", +DlnLnkMsgInvPopName : "पॉप-अप का नाम अल्फाबेट से शुरू होना चाहिये और उसमें स्पेस नहीं होने चाहिए", + +// Color Dialog +DlgColorTitle : "रंग चुनें", +DlgColorBtnClear : "साफ़ करें", +DlgColorHighlight : "हाइलाइट", +DlgColorSelected : "सॅलॅक्टॅड", + +// Smiley Dialog +DlgSmileyTitle : "स्माइली इन्सर्ट करें", + +// Special Character Dialog +DlgSpecialCharTitle : "विशेष करॅक्टर चुनें", + +// Table Dialog +DlgTableTitle : "टेबल प्रॉपर्टीज़", +DlgTableRows : "पंक्तियाँ", +DlgTableColumns : "कालम", +DlgTableBorder : "बॉर्डर साइज़", +DlgTableAlign : "ऍलाइन्मॅन्ट", +DlgTableAlignNotSet : "<सॅट नहीं>", +DlgTableAlignLeft : "दायें", +DlgTableAlignCenter : "बीच में", +DlgTableAlignRight : "बायें", +DlgTableWidth : "चौड़ाई", +DlgTableWidthPx : "पिक्सैल", +DlgTableWidthPc : "प्रतिशत", +DlgTableHeight : "ऊँचाई", +DlgTableCellSpace : "सैल अंतर", +DlgTableCellPad : "सैल पैडिंग", +DlgTableCaption : "शीर्षक", +DlgTableSummary : "सारांश", +DlgTableHeaders : "Headers", //MISSING +DlgTableHeadersNone : "None", //MISSING +DlgTableHeadersColumn : "First column", //MISSING +DlgTableHeadersRow : "First Row", //MISSING +DlgTableHeadersBoth : "Both", //MISSING + +// Table Cell Dialog +DlgCellTitle : "सैल प्रॉपर्टीज़", +DlgCellWidth : "चौड़ाई", +DlgCellWidthPx : "पिक्सैल", +DlgCellWidthPc : "प्रतिशत", +DlgCellHeight : "ऊँचाई", +DlgCellWordWrap : "वर्ड रैप", +DlgCellWordWrapNotSet : "<सॅट नहीं>", +DlgCellWordWrapYes : "हाँ", +DlgCellWordWrapNo : "नहीं", +DlgCellHorAlign : "हॉरिज़ॉन्टल ऍलाइन्मॅन्ट", +DlgCellHorAlignNotSet : "<सॅट नहीं>", +DlgCellHorAlignLeft : "दायें", +DlgCellHorAlignCenter : "बीच में", +DlgCellHorAlignRight: "बायें", +DlgCellVerAlign : "वर्टिकल ऍलाइन्मॅन्ट", +DlgCellVerAlignNotSet : "<सॅट नहीं>", +DlgCellVerAlignTop : "ऊपर", +DlgCellVerAlignMiddle : "मध्य", +DlgCellVerAlignBottom : "नीचे", +DlgCellVerAlignBaseline : "मूलरेखा", +DlgCellType : "Cell Type", //MISSING +DlgCellTypeData : "Data", //MISSING +DlgCellTypeHeader : "Header", //MISSING +DlgCellRowSpan : "पंक्ति स्पैन", +DlgCellCollSpan : "कालम स्पैन", +DlgCellBackColor : "बैक्ग्राउन्ड रंग", +DlgCellBorderColor : "बॉर्डर का रंग", +DlgCellBtnSelect : "चुनें...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "खोजें और बदलें", + +// Find Dialog +DlgFindTitle : "खोजें", +DlgFindFindBtn : "खोजें", +DlgFindNotFoundMsg : "आपके द्वारा दिया गया टेक्स्ट नहीं मिला", + +// Replace Dialog +DlgReplaceTitle : "रिप्लेस", +DlgReplaceFindLbl : "यह खोजें:", +DlgReplaceReplaceLbl : "इससे रिप्लेस करें:", +DlgReplaceCaseChk : "केस मिलायें", +DlgReplaceReplaceBtn : "रिप्लेस", +DlgReplaceReplAllBtn : "सभी रिप्लेस करें", +DlgReplaceWordChk : "पूरा शब्द मिलायें", + +// Paste Operations / Dialog +PasteErrorCut : "आपके ब्राउज़र की सुरक्षा सॅटिन्ग्स ने कट करने की अनुमति नहीं प्रदान की है। (Ctrl+X) का प्रयोग करें।", +PasteErrorCopy : "आपके ब्राआउज़र की सुरक्षा सॅटिन्ग्स ने कॉपी करने की अनुमति नहीं प्रदान की है। (Ctrl+C) का प्रयोग करें।", + +PasteAsText : "पेस्ट (सादा टॅक्स्ट)", +PasteFromWord : "पेस्ट (वर्ड से)", + +DlgPasteMsg2 : "Ctrl+V का प्रयोग करके पेस्ट करें और ठीक है करें.", +DlgPasteSec : "आपके ब्राउज़र की सुरक्षा आपके ब्राउज़र की सुरKश सैटिंग के कारण, एडिटर आपके क्लिपबोर्ड डेटा को नहीं पा सकता है. आपको उसे इस विन्डो में दोबारा पेस्ट करना होगा.", +DlgPasteIgnoreFont : "फ़ॉन्ट परिभाषा निकालें", +DlgPasteRemoveStyles : "स्टाइल परिभाषा निकालें", + +// Color Picker +ColorAutomatic : "स्वचालित", +ColorMoreColors : "और रंग...", + +// Document Properties +DocProps : "डॉक्यूमॅन्ट प्रॉपर्टीज़", + +// Anchor Dialog +DlgAnchorTitle : "ऐंकर प्रॉपर्टीज़", +DlgAnchorName : "ऐंकर का नाम", +DlgAnchorErrorName : "ऐंकर का नाम टाइप करें", + +// Speller Pages Dialog +DlgSpellNotInDic : "शब्दकोश में नहीं", +DlgSpellChangeTo : "इसमें बदलें", +DlgSpellBtnIgnore : "इग्नोर", +DlgSpellBtnIgnoreAll : "सभी इग्नोर करें", +DlgSpellBtnReplace : "रिप्लेस", +DlgSpellBtnReplaceAll : "सभी रिप्लेस करें", +DlgSpellBtnUndo : "अन्डू", +DlgSpellNoSuggestions : "- कोई सुझाव नहीं -", +DlgSpellProgress : "वर्तनी की जाँच (स्पॅल-चॅक) जारी है...", +DlgSpellNoMispell : "वर्तनी की जाँच : कोई गलत वर्तनी (स्पॅलिंग) नहीं पाई गई", +DlgSpellNoChanges : "वर्तनी की जाँच :कोई शब्द नहीं बदला गया", +DlgSpellOneChange : "वर्तनी की जाँच : एक शब्द बदला गया", +DlgSpellManyChanges : "वर्तनी की जाँच : %1 शब्द बदले गये", + +IeSpellDownload : "स्पॅल-चॅकर इन्स्टाल नहीं किया गया है। क्या आप इसे डा‌उनलोड करना चाहेंगे?", + +// Button Dialog +DlgButtonText : "टेक्स्ट (वैल्यू)", +DlgButtonType : "प्रकार", +DlgButtonTypeBtn : "बटन", +DlgButtonTypeSbm : "सब्मिट", +DlgButtonTypeRst : "रिसेट", + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "नाम", +DlgCheckboxValue : "वैल्यू", +DlgCheckboxSelected : "सॅलॅक्टॅड", + +// Form Dialog +DlgFormName : "नाम", +DlgFormAction : "क्रिया", +DlgFormMethod : "तरीका", + +// Select Field Dialog +DlgSelectName : "नाम", +DlgSelectValue : "वैल्यू", +DlgSelectSize : "साइज़", +DlgSelectLines : "पंक्तियाँ", +DlgSelectChkMulti : "एक से ज्यादा विकल्प चुनने दें", +DlgSelectOpAvail : "उपलब्ध विकल्प", +DlgSelectOpText : "टेक्स्ट", +DlgSelectOpValue : "वैल्यू", +DlgSelectBtnAdd : "जोड़ें", +DlgSelectBtnModify : "बदलें", +DlgSelectBtnUp : "ऊपर", +DlgSelectBtnDown : "नीचे", +DlgSelectBtnSetValue : "चुनी गई वैल्यू सॅट करें", +DlgSelectBtnDelete : "डिलीट", + +// Textarea Dialog +DlgTextareaName : "नाम", +DlgTextareaCols : "कालम", +DlgTextareaRows : "पंक्तियां", + +// Text Field Dialog +DlgTextName : "नाम", +DlgTextValue : "वैल्यू", +DlgTextCharWidth : "करॅक्टर की चौढ़ाई", +DlgTextMaxChars : "अधिकतम करॅक्टर", +DlgTextType : "टाइप", +DlgTextTypeText : "टेक्स्ट", +DlgTextTypePass : "पास्वर्ड", + +// Hidden Field Dialog +DlgHiddenName : "नाम", +DlgHiddenValue : "वैल्यू", + +// Bulleted List Dialog +BulletedListProp : "बुलॅट सूची प्रॉपर्टीज़", +NumberedListProp : "अंकीय सूची प्रॉपर्टीज़", +DlgLstStart : "प्रारम्भ", +DlgLstType : "प्रकार", +DlgLstTypeCircle : "गोल", +DlgLstTypeDisc : "डिस्क", +DlgLstTypeSquare : "चौकॊण", +DlgLstTypeNumbers : "अंक (1, 2, 3)", +DlgLstTypeLCase : "छोटे अक्षर (a, b, c)", +DlgLstTypeUCase : "बड़े अक्षर (A, B, C)", +DlgLstTypeSRoman : "छोटे रोमन अंक (i, ii, iii)", +DlgLstTypeLRoman : "बड़े रोमन अंक (I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "आम", +DlgDocBackTab : "बैक्ग्राउन्ड", +DlgDocColorsTab : "रंग और मार्जिन", +DlgDocMetaTab : "मॅटाडेटा", + +DlgDocPageTitle : "पेज शीर्षक", +DlgDocLangDir : "भाषा लिखने की दिशा", +DlgDocLangDirLTR : "बायें से दायें (LTR)", +DlgDocLangDirRTL : "दायें से बायें (RTL)", +DlgDocLangCode : "भाषा कोड", +DlgDocCharSet : "करेक्टर सॅट ऍन्कोडिंग", +DlgDocCharSetCE : "मध्य यूरोपीय (Central European)", +DlgDocCharSetCT : "चीनी (Chinese Traditional Big5)", +DlgDocCharSetCR : "सिरीलिक (Cyrillic)", +DlgDocCharSetGR : "यवन (Greek)", +DlgDocCharSetJP : "जापानी (Japanese)", +DlgDocCharSetKR : "कोरीयन (Korean)", +DlgDocCharSetTR : "तुर्की (Turkish)", +DlgDocCharSetUN : "यूनीकोड (UTF-8)", +DlgDocCharSetWE : "पश्चिम यूरोपीय (Western European)", +DlgDocCharSetOther : "अन्य करेक्टर सॅट ऍन्कोडिंग", + +DlgDocDocType : "डॉक्यूमॅन्ट प्रकार शीर्षक", +DlgDocDocTypeOther : "अन्य डॉक्यूमॅन्ट प्रकार शीर्षक", +DlgDocIncXHTML : "XHTML सूचना सम्मिलित करें", +DlgDocBgColor : "बैक्ग्राउन्ड रंग", +DlgDocBgImage : "बैक्ग्राउन्ड तस्वीर URL", +DlgDocBgNoScroll : "स्क्रॉल न करने वाला बैक्ग्राउन्ड", +DlgDocCText : "टेक्स्ट", +DlgDocCLink : "लिंक", +DlgDocCVisited : "विज़िट किया गया लिंक", +DlgDocCActive : "सक्रिय लिंक", +DlgDocMargins : "पेज मार्जिन", +DlgDocMaTop : "ऊपर", +DlgDocMaLeft : "बायें", +DlgDocMaRight : "दायें", +DlgDocMaBottom : "नीचे", +DlgDocMeIndex : "डॉक्युमॅन्ट इन्डेक्स संकेतशब्द (अल्पविराम से अलग करें)", +DlgDocMeDescr : "डॉक्यूमॅन्ट करॅक्टरन", +DlgDocMeAuthor : "लेखक", +DlgDocMeCopy : "कॉपीराइट", +DlgDocPreview : "प्रीव्यू", + +// Templates Dialog +Templates : "टॅम्प्लेट", +DlgTemplatesTitle : "कन्टेन्ट टॅम्प्लेट", +DlgTemplatesSelMsg : "ऍडिटर में ओपन करने हेतु टॅम्प्लेट चुनें(वर्तमान कन्टॅन्ट सेव नहीं होंगे):", +DlgTemplatesLoading : "टॅम्प्लेट सूची लोड की जा रही है। ज़रा ठहरें...", +DlgTemplatesNoTpl : "(कोई टॅम्प्लेट डिफ़ाइन नहीं किया गया है)", +DlgTemplatesReplace : "मूल शब्दों को बदलें", + +// About Dialog +DlgAboutAboutTab : "FCKEditor के बारे में", +DlgAboutBrowserInfoTab : "ब्राउज़र के बारे में", +DlgAboutLicenseTab : "लाइसैन्स", +DlgAboutVersion : "वर्ज़न", +DlgAboutInfo : "अधिक जानकारी के लिये यहाँ जायें:", + +// Div Dialog +DlgDivGeneralTab : "सामान्य", +DlgDivAdvancedTab : "एड्वान्स्ड", +DlgDivStyle : "स्टाइल", +DlgDivInlineStyle : "इनलाइन स्टाइल", + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/hr.js b/fckeditor/editor/lang/hr.js new file mode 100644 index 0000000..6ed1037 --- /dev/null +++ b/fckeditor/editor/lang/hr.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * Croatian language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "Smanji trake s alatima", +ToolbarExpand : "Proširi trake s alatima", + +// Toolbar Items and Context Menu +Save : "Snimi", +NewPage : "Nova stranica", +Preview : "Pregledaj", +Cut : "Izreži", +Copy : "Kopiraj", +Paste : "Zalijepi", +PasteText : "Zalijepi kao čisti tekst", +PasteWord : "Zalijepi iz Worda", +Print : "Ispiši", +SelectAll : "Odaberi sve", +RemoveFormat : "Ukloni formatiranje", +InsertLinkLbl : "Link", +InsertLink : "Ubaci/promijeni link", +RemoveLink : "Ukloni link", +VisitLink : "Otvori link", +Anchor : "Ubaci/promijeni sidro", +AnchorDelete : "Ukloni sidro", +InsertImageLbl : "Slika", +InsertImage : "Ubaci/promijeni sliku", +InsertFlashLbl : "Flash", +InsertFlash : "Ubaci/promijeni Flash", +InsertTableLbl : "Tablica", +InsertTable : "Ubaci/promijeni tablicu", +InsertLineLbl : "Linija", +InsertLine : "Ubaci vodoravnu liniju", +InsertSpecialCharLbl: "Posebni karakteri", +InsertSpecialChar : "Ubaci posebne znakove", +InsertSmileyLbl : "Smješko", +InsertSmiley : "Ubaci smješka", +About : "O FCKeditoru", +Bold : "Podebljaj", +Italic : "Ukosi", +Underline : "Potcrtano", +StrikeThrough : "Precrtano", +Subscript : "Subscript", +Superscript : "Superscript", +LeftJustify : "Lijevo poravnanje", +CenterJustify : "Središnje poravnanje", +RightJustify : "Desno poravnanje", +BlockJustify : "Blok poravnanje", +DecreaseIndent : "Pomakni ulijevo", +IncreaseIndent : "Pomakni udesno", +Blockquote : "Blockquote", +CreateDiv : "Napravi Div kontejner", +EditDiv : "Uredi Div kontejner", +DeleteDiv : "Ukloni Div kontejner", +Undo : "Poništi", +Redo : "Ponovi", +NumberedListLbl : "Brojčana lista", +NumberedList : "Ubaci/ukloni brojčanu listu", +BulletedListLbl : "Obična lista", +BulletedList : "Ubaci/ukloni običnu listu", +ShowTableBorders : "Prikaži okvir tablice", +ShowDetails : "Prikaži detalje", +Style : "Stil", +FontFormat : "Format", +Font : "Font", +FontSize : "Veličina", +TextColor : "Boja teksta", +BGColor : "Boja pozadine", +Source : "Kôd", +Find : "Pronađi", +Replace : "Zamijeni", +SpellCheck : "Provjeri pravopis", +UniversalKeyboard : "Univerzalna tipkovnica", +PageBreakLbl : "Prijelom stranice", +PageBreak : "Ubaci prijelom stranice", + +Form : "Form", +Checkbox : "Checkbox", +RadioButton : "Radio Button", +TextField : "Text Field", +Textarea : "Textarea", +HiddenField : "Hidden Field", +Button : "Button", +SelectionField : "Selection Field", +ImageButton : "Image Button", + +FitWindow : "Povećaj veličinu editora", +ShowBlocks : "Prikaži blokove", + +// Context Menu +EditLink : "Promijeni link", +CellCM : "Ćelija", +RowCM : "Red", +ColumnCM : "Kolona", +InsertRowAfter : "Ubaci red poslije", +InsertRowBefore : "Ubaci red prije", +DeleteRows : "Izbriši redove", +InsertColumnAfter : "Ubaci kolonu poslije", +InsertColumnBefore : "Ubaci kolonu prije", +DeleteColumns : "Izbriši kolone", +InsertCellAfter : "Ubaci ćeliju poslije", +InsertCellBefore : "Ubaci ćeliju prije", +DeleteCells : "Izbriši ćelije", +MergeCells : "Spoji ćelije", +MergeRight : "Spoji desno", +MergeDown : "Spoji dolje", +HorizontalSplitCell : "Podijeli ćeliju vodoravno", +VerticalSplitCell : "Podijeli ćeliju okomito", +TableDelete : "Izbriši tablicu", +CellProperties : "Svojstva ćelije", +TableProperties : "Svojstva tablice", +ImageProperties : "Svojstva slike", +FlashProperties : "Flash svojstva", + +AnchorProp : "Svojstva sidra", +ButtonProp : "Image Button svojstva", +CheckboxProp : "Checkbox svojstva", +HiddenFieldProp : "Hidden Field svojstva", +RadioButtonProp : "Radio Button svojstva", +ImageButtonProp : "Image Button svojstva", +TextFieldProp : "Text Field svojstva", +SelectionFieldProp : "Selection svojstva", +TextareaProp : "Textarea svojstva", +FormProp : "Form svojstva", + +FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)", + +// Alerts and Messages +ProcessingXHTML : "Obrađujem XHTML. Molimo pričekajte...", +Done : "Završio", +PasteWordConfirm : "Tekst koji želite zalijepiti čini se da je kopiran iz Worda. Želite li prije očistiti tekst?", +NotCompatiblePaste : "Ova naredba je dostupna samo u Internet Exploreru 5.5 ili novijem. Želite li nastaviti bez čišćenja?", +UnknownToolbarItem : "Nepoznati član trake s alatima \"%1\"", +UnknownCommand : "Nepoznata naredba \"%1\"", +NotImplemented : "Naredba nije implementirana", +UnknownToolbarSet : "Traka s alatima \"%1\" ne postoji", +NoActiveX : "Vaše postavke pretraživača mogle bi ograničiti neke od mogućnosti editora. Morate uključiti opciju \"Run ActiveX controls and plug-ins\" u postavkama. Ukoliko to ne učinite, moguće su razliite greške tijekom rada.", +BrowseServerBlocked : "Pretraivač nije moguće otvoriti. Provjerite da li je uključeno blokiranje pop-up prozora.", +DialogBlocked : "Nije moguće otvoriti novi prozor. Provjerite da li je uključeno blokiranje pop-up prozora.", +VisitLinkBlocked : "Nije moguće otvoriti novi prozor. Provjerite da li je uključeno blokiranje pop-up prozora.", + +// Dialogs +DlgBtnOK : "OK", +DlgBtnCancel : "Poništi", +DlgBtnClose : "Zatvori", +DlgBtnBrowseServer : "Pretraži server", +DlgAdvancedTag : "Napredno", +DlgOpOther : "", +DlgInfoTab : "Info", +DlgAlertUrl : "Molimo unesite URL", + +// General Dialogs Labels +DlgGenNotSet : "", +DlgGenId : "Id", +DlgGenLangDir : "Smjer jezika", +DlgGenLangDirLtr : "S lijeva na desno (LTR)", +DlgGenLangDirRtl : "S desna na lijevo (RTL)", +DlgGenLangCode : "Kôd jezika", +DlgGenAccessKey : "Pristupna tipka", +DlgGenName : "Naziv", +DlgGenTabIndex : "Tab Indeks", +DlgGenLongDescr : "Dugački opis URL", +DlgGenClass : "Stylesheet klase", +DlgGenTitle : "Advisory naslov", +DlgGenContType : "Advisory vrsta sadržaja", +DlgGenLinkCharset : "Kodna stranica povezanih resursa", +DlgGenStyle : "Stil", + +// Image Dialog +DlgImgTitle : "Svojstva slika", +DlgImgInfoTab : "Info slike", +DlgImgBtnUpload : "Pošalji na server", +DlgImgURL : "URL", +DlgImgUpload : "Pošalji", +DlgImgAlt : "Alternativni tekst", +DlgImgWidth : "Širina", +DlgImgHeight : "Visina", +DlgImgLockRatio : "Zaključaj odnos", +DlgBtnResetSize : "Obriši veličinu", +DlgImgBorder : "Okvir", +DlgImgHSpace : "HSpace", +DlgImgVSpace : "VSpace", +DlgImgAlign : "Poravnaj", +DlgImgAlignLeft : "Lijevo", +DlgImgAlignAbsBottom: "Abs dolje", +DlgImgAlignAbsMiddle: "Abs sredina", +DlgImgAlignBaseline : "Bazno", +DlgImgAlignBottom : "Dolje", +DlgImgAlignMiddle : "Sredina", +DlgImgAlignRight : "Desno", +DlgImgAlignTextTop : "Vrh teksta", +DlgImgAlignTop : "Vrh", +DlgImgPreview : "Pregledaj", +DlgImgAlertUrl : "Unesite URL slike", +DlgImgLinkTab : "Link", + +// Flash Dialog +DlgFlashTitle : "Flash svojstva", +DlgFlashChkPlay : "Auto Play", +DlgFlashChkLoop : "Ponavljaj", +DlgFlashChkMenu : "Omogući Flash izbornik", +DlgFlashScale : "Omjer", +DlgFlashScaleAll : "Prikaži sve", +DlgFlashScaleNoBorder : "Bez okvira", +DlgFlashScaleFit : "Točna veličina", + +// Link Dialog +DlgLnkWindowTitle : "Link", +DlgLnkInfoTab : "Link Info", +DlgLnkTargetTab : "Meta", + +DlgLnkType : "Link vrsta", +DlgLnkTypeURL : "URL", +DlgLnkTypeAnchor : "Sidro na ovoj stranici", +DlgLnkTypeEMail : "E-Mail", +DlgLnkProto : "Protokol", +DlgLnkProtoOther : "", +DlgLnkURL : "URL", +DlgLnkAnchorSel : "Odaberi sidro", +DlgLnkAnchorByName : "Po nazivu sidra", +DlgLnkAnchorById : "Po Id elementa", +DlgLnkNoAnchors : "(Nema dostupnih sidra)", +DlgLnkEMail : "E-Mail adresa", +DlgLnkEMailSubject : "Naslov", +DlgLnkEMailBody : "Sadržaj poruke", +DlgLnkUpload : "Pošalji", +DlgLnkBtnUpload : "Pošalji na server", + +DlgLnkTarget : "Meta", +DlgLnkTargetFrame : "", +DlgLnkTargetPopup : "", +DlgLnkTargetBlank : "Novi prozor (_blank)", +DlgLnkTargetParent : "Roditeljski prozor (_parent)", +DlgLnkTargetSelf : "Isti prozor (_self)", +DlgLnkTargetTop : "Vršni prozor (_top)", +DlgLnkTargetFrameName : "Ime ciljnog okvira", +DlgLnkPopWinName : "Naziv popup prozora", +DlgLnkPopWinFeat : "Mogućnosti popup prozora", +DlgLnkPopResize : "Promjenljive veličine", +DlgLnkPopLocation : "Traka za lokaciju", +DlgLnkPopMenu : "Izborna traka", +DlgLnkPopScroll : "Scroll traka", +DlgLnkPopStatus : "Statusna traka", +DlgLnkPopToolbar : "Traka s alatima", +DlgLnkPopFullScrn : "Cijeli ekran (IE)", +DlgLnkPopDependent : "Ovisno (Netscape)", +DlgLnkPopWidth : "Širina", +DlgLnkPopHeight : "Visina", +DlgLnkPopLeft : "Lijeva pozicija", +DlgLnkPopTop : "Gornja pozicija", + +DlnLnkMsgNoUrl : "Molimo upišite URL link", +DlnLnkMsgNoEMail : "Molimo upišite e-mail adresu", +DlnLnkMsgNoAnchor : "Molimo odaberite sidro", +DlnLnkMsgInvPopName : "Ime popup prozora mora početi sa slovom i ne smije sadržavati razmake", + +// Color Dialog +DlgColorTitle : "Odaberite boju", +DlgColorBtnClear : "Obriši", +DlgColorHighlight : "Osvijetli", +DlgColorSelected : "Odaberi", + +// Smiley Dialog +DlgSmileyTitle : "Ubaci smješka", + +// Special Character Dialog +DlgSpecialCharTitle : "Odaberite posebni karakter", + +// Table Dialog +DlgTableTitle : "Svojstva tablice", +DlgTableRows : "Redova", +DlgTableColumns : "Kolona", +DlgTableBorder : "Veličina okvira", +DlgTableAlign : "Poravnanje", +DlgTableAlignNotSet : "", +DlgTableAlignLeft : "Lijevo", +DlgTableAlignCenter : "Središnje", +DlgTableAlignRight : "Desno", +DlgTableWidth : "Širina", +DlgTableWidthPx : "piksela", +DlgTableWidthPc : "postotaka", +DlgTableHeight : "Visina", +DlgTableCellSpace : "Prostornost ćelija", +DlgTableCellPad : "Razmak ćelija", +DlgTableCaption : "Naslov", +DlgTableSummary : "Sažetak", +DlgTableHeaders : "Headers", //MISSING +DlgTableHeadersNone : "None", //MISSING +DlgTableHeadersColumn : "First column", //MISSING +DlgTableHeadersRow : "First Row", //MISSING +DlgTableHeadersBoth : "Both", //MISSING + +// Table Cell Dialog +DlgCellTitle : "Svojstva ćelije", +DlgCellWidth : "Širina", +DlgCellWidthPx : "piksela", +DlgCellWidthPc : "postotaka", +DlgCellHeight : "Visina", +DlgCellWordWrap : "Word Wrap", +DlgCellWordWrapNotSet : "", +DlgCellWordWrapYes : "Da", +DlgCellWordWrapNo : "Ne", +DlgCellHorAlign : "Vodoravno poravnanje", +DlgCellHorAlignNotSet : "", +DlgCellHorAlignLeft : "Lijevo", +DlgCellHorAlignCenter : "Središnje", +DlgCellHorAlignRight: "Desno", +DlgCellVerAlign : "Okomito poravnanje", +DlgCellVerAlignNotSet : "", +DlgCellVerAlignTop : "Gornje", +DlgCellVerAlignMiddle : "Srednišnje", +DlgCellVerAlignBottom : "Donje", +DlgCellVerAlignBaseline : "Bazno", +DlgCellType : "Cell Type", //MISSING +DlgCellTypeData : "Data", //MISSING +DlgCellTypeHeader : "Header", //MISSING +DlgCellRowSpan : "Spajanje redova", +DlgCellCollSpan : "Spajanje kolona", +DlgCellBackColor : "Boja pozadine", +DlgCellBorderColor : "Boja okvira", +DlgCellBtnSelect : "Odaberi...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "Pronađi i zamijeni", + +// Find Dialog +DlgFindTitle : "Pronađi", +DlgFindFindBtn : "Pronađi", +DlgFindNotFoundMsg : "Traženi tekst nije pronađen.", + +// Replace Dialog +DlgReplaceTitle : "Zamijeni", +DlgReplaceFindLbl : "Pronađi:", +DlgReplaceReplaceLbl : "Zamijeni s:", +DlgReplaceCaseChk : "Usporedi mala/velika slova", +DlgReplaceReplaceBtn : "Zamijeni", +DlgReplaceReplAllBtn : "Zamijeni sve", +DlgReplaceWordChk : "Usporedi cijele riječi", + +// Paste Operations / Dialog +PasteErrorCut : "Sigurnosne postavke Vašeg pretraživača ne dozvoljavaju operacije automatskog izrezivanja. Molimo koristite kraticu na tipkovnici (Ctrl+X).", +PasteErrorCopy : "Sigurnosne postavke Vašeg pretraživača ne dozvoljavaju operacije automatskog kopiranja. Molimo koristite kraticu na tipkovnici (Ctrl+C).", + +PasteAsText : "Zalijepi kao čisti tekst", +PasteFromWord : "Zalijepi iz Worda", + +DlgPasteMsg2 : "Molimo zaljepite unutar doljnjeg okvira koristeći tipkovnicu (Ctrl+V) i kliknite OK.", +DlgPasteSec : "Zbog sigurnosnih postavki Vašeg pretraživača, editor nema direktan pristup Vašem međuspremniku. Potrebno je ponovno zalijepiti tekst u ovaj prozor.", +DlgPasteIgnoreFont : "Zanemari definiciju vrste fonta", +DlgPasteRemoveStyles : "Ukloni definicije stilova", + +// Color Picker +ColorAutomatic : "Automatski", +ColorMoreColors : "Više boja...", + +// Document Properties +DocProps : "Svojstva dokumenta", + +// Anchor Dialog +DlgAnchorTitle : "Svojstva sidra", +DlgAnchorName : "Ime sidra", +DlgAnchorErrorName : "Molimo unesite ime sidra", + +// Speller Pages Dialog +DlgSpellNotInDic : "Nije u rječniku", +DlgSpellChangeTo : "Promijeni u", +DlgSpellBtnIgnore : "Zanemari", +DlgSpellBtnIgnoreAll : "Zanemari sve", +DlgSpellBtnReplace : "Zamijeni", +DlgSpellBtnReplaceAll : "Zamijeni sve", +DlgSpellBtnUndo : "Vrati", +DlgSpellNoSuggestions : "-Nema preporuke-", +DlgSpellProgress : "Provjera u tijeku...", +DlgSpellNoMispell : "Provjera završena: Nema grešaka", +DlgSpellNoChanges : "Provjera završena: Nije napravljena promjena", +DlgSpellOneChange : "Provjera završena: Jedna riječ promjenjena", +DlgSpellManyChanges : "Provjera završena: Promijenjeno %1 riječi", + +IeSpellDownload : "Provjera pravopisa nije instalirana. Želite li skinuti provjeru pravopisa?", + +// Button Dialog +DlgButtonText : "Tekst (vrijednost)", +DlgButtonType : "Vrsta", +DlgButtonTypeBtn : "Gumb", +DlgButtonTypeSbm : "Pošalji", +DlgButtonTypeRst : "Poništi", + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "Ime", +DlgCheckboxValue : "Vrijednost", +DlgCheckboxSelected : "Odabrano", + +// Form Dialog +DlgFormName : "Ime", +DlgFormAction : "Akcija", +DlgFormMethod : "Metoda", + +// Select Field Dialog +DlgSelectName : "Ime", +DlgSelectValue : "Vrijednost", +DlgSelectSize : "Veličina", +DlgSelectLines : "linija", +DlgSelectChkMulti : "Dozvoli višestruki odabir", +DlgSelectOpAvail : "Dostupne opcije", +DlgSelectOpText : "Tekst", +DlgSelectOpValue : "Vrijednost", +DlgSelectBtnAdd : "Dodaj", +DlgSelectBtnModify : "Promijeni", +DlgSelectBtnUp : "Gore", +DlgSelectBtnDown : "Dolje", +DlgSelectBtnSetValue : "Postavi kao odabranu vrijednost", +DlgSelectBtnDelete : "Obriši", + +// Textarea Dialog +DlgTextareaName : "Ime", +DlgTextareaCols : "Kolona", +DlgTextareaRows : "Redova", + +// Text Field Dialog +DlgTextName : "Ime", +DlgTextValue : "Vrijednost", +DlgTextCharWidth : "Širina", +DlgTextMaxChars : "Najviše karaktera", +DlgTextType : "Vrsta", +DlgTextTypeText : "Tekst", +DlgTextTypePass : "Šifra", + +// Hidden Field Dialog +DlgHiddenName : "Ime", +DlgHiddenValue : "Vrijednost", + +// Bulleted List Dialog +BulletedListProp : "Svojstva liste", +NumberedListProp : "Svojstva brojčane liste", +DlgLstStart : "Početak", +DlgLstType : "Vrsta", +DlgLstTypeCircle : "Krug", +DlgLstTypeDisc : "Disk", +DlgLstTypeSquare : "Kvadrat", +DlgLstTypeNumbers : "Brojevi (1, 2, 3)", +DlgLstTypeLCase : "Mala slova (a, b, c)", +DlgLstTypeUCase : "Velika slova (A, B, C)", +DlgLstTypeSRoman : "Male rimske brojke (i, ii, iii)", +DlgLstTypeLRoman : "Velike rimske brojke (I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "Općenito", +DlgDocBackTab : "Pozadina", +DlgDocColorsTab : "Boje i margine", +DlgDocMetaTab : "Meta Data", + +DlgDocPageTitle : "Naslov stranice", +DlgDocLangDir : "Smjer jezika", +DlgDocLangDirLTR : "S lijeva na desno", +DlgDocLangDirRTL : "S desna na lijevo", +DlgDocLangCode : "Kôd jezika", +DlgDocCharSet : "Enkodiranje znakova", +DlgDocCharSetCE : "Središnja Europa", +DlgDocCharSetCT : "Tradicionalna kineska (Big5)", +DlgDocCharSetCR : "Ćirilica", +DlgDocCharSetGR : "Grčka", +DlgDocCharSetJP : "Japanska", +DlgDocCharSetKR : "Koreanska", +DlgDocCharSetTR : "Turska", +DlgDocCharSetUN : "Unicode (UTF-8)", +DlgDocCharSetWE : "Zapadna Europa", +DlgDocCharSetOther : "Ostalo enkodiranje znakova", + +DlgDocDocType : "Zaglavlje vrste dokumenta", +DlgDocDocTypeOther : "Ostalo zaglavlje vrste dokumenta", +DlgDocIncXHTML : "Ubaci XHTML deklaracije", +DlgDocBgColor : "Boja pozadine", +DlgDocBgImage : "URL slike pozadine", +DlgDocBgNoScroll : "Pozadine se ne pomiče", +DlgDocCText : "Tekst", +DlgDocCLink : "Link", +DlgDocCVisited : "Posjećeni link", +DlgDocCActive : "Aktivni link", +DlgDocMargins : "Margine stranice", +DlgDocMaTop : "Vrh", +DlgDocMaLeft : "Lijevo", +DlgDocMaRight : "Desno", +DlgDocMaBottom : "Dolje", +DlgDocMeIndex : "Ključne riječi dokumenta (odvojene zarezom)", +DlgDocMeDescr : "Opis dokumenta", +DlgDocMeAuthor : "Autor", +DlgDocMeCopy : "Autorska prava", +DlgDocPreview : "Pregledaj", + +// Templates Dialog +Templates : "Predlošci", +DlgTemplatesTitle : "Predlošci sadržaja", +DlgTemplatesSelMsg : "Molimo odaberite predložak koji želite otvoriti
(stvarni sadržaj će biti izgubljen):", +DlgTemplatesLoading : "Učitavam listu predložaka. Molimo pričekajte...", +DlgTemplatesNoTpl : "(Nema definiranih predložaka)", +DlgTemplatesReplace : "Zamijeni trenutne sadržaje", + +// About Dialog +DlgAboutAboutTab : "O FCKEditoru", +DlgAboutBrowserInfoTab : "Podaci o pretraživaču", +DlgAboutLicenseTab : "Licenca", +DlgAboutVersion : "inačica", +DlgAboutInfo : "Za više informacija posjetite", + +// Div Dialog +DlgDivGeneralTab : "Općenito", +DlgDivAdvancedTab : "Napredno", +DlgDivStyle : "Stil", +DlgDivInlineStyle : "Stil u redu", + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/hu.js b/fckeditor/editor/lang/hu.js new file mode 100644 index 0000000..8d49649 --- /dev/null +++ b/fckeditor/editor/lang/hu.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * Hungarian language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "Eszköztár elrejtése", +ToolbarExpand : "Eszköztár megjelenítése", + +// Toolbar Items and Context Menu +Save : "Mentés", +NewPage : "Új oldal", +Preview : "Előnézet", +Cut : "Kivágás", +Copy : "Másolás", +Paste : "Beillesztés", +PasteText : "Beillesztés formázás nélkül", +PasteWord : "Beillesztés Word-ből", +Print : "Nyomtatás", +SelectAll : "Mindent kijelöl", +RemoveFormat : "Formázás eltávolítása", +InsertLinkLbl : "Hivatkozás", +InsertLink : "Hivatkozás beillesztése/módosítása", +RemoveLink : "Hivatkozás törlése", +VisitLink : "Open Link", //MISSING +Anchor : "Horgony beillesztése/szerkesztése", +AnchorDelete : "Horgony eltávolítása", +InsertImageLbl : "Kép", +InsertImage : "Kép beillesztése/módosítása", +InsertFlashLbl : "Flash", +InsertFlash : "Flash beillesztése, módosítása", +InsertTableLbl : "Táblázat", +InsertTable : "Táblázat beillesztése/módosítása", +InsertLineLbl : "Vonal", +InsertLine : "Elválasztóvonal beillesztése", +InsertSpecialCharLbl: "Speciális karakter", +InsertSpecialChar : "Speciális karakter beillesztése", +InsertSmileyLbl : "Hangulatjelek", +InsertSmiley : "Hangulatjelek beillesztése", +About : "FCKeditor névjegy", +Bold : "Félkövér", +Italic : "Dőlt", +Underline : "Aláhúzott", +StrikeThrough : "Áthúzott", +Subscript : "Alsó index", +Superscript : "Felső index", +LeftJustify : "Balra", +CenterJustify : "Középre", +RightJustify : "Jobbra", +BlockJustify : "Sorkizárt", +DecreaseIndent : "Behúzás csökkentése", +IncreaseIndent : "Behúzás növelése", +Blockquote : "Idézet blokk", +CreateDiv : "Create Div Container", //MISSING +EditDiv : "Edit Div Container", //MISSING +DeleteDiv : "Remove Div Container", //MISSING +Undo : "Visszavonás", +Redo : "Ismétlés", +NumberedListLbl : "Számozás", +NumberedList : "Számozás beillesztése/törlése", +BulletedListLbl : "Felsorolás", +BulletedList : "Felsorolás beillesztése/törlése", +ShowTableBorders : "Táblázat szegély mutatása", +ShowDetails : "Részletek mutatása", +Style : "Stílus", +FontFormat : "Formátum", +Font : "Betűtípus", +FontSize : "Méret", +TextColor : "Betűszín", +BGColor : "Háttérszín", +Source : "Forráskód", +Find : "Keresés", +Replace : "Csere", +SpellCheck : "Helyesírás-ellenőrzés", +UniversalKeyboard : "Univerzális billentyűzet", +PageBreakLbl : "Oldaltörés", +PageBreak : "Oldaltörés beillesztése", + +Form : "Űrlap", +Checkbox : "Jelölőnégyzet", +RadioButton : "Választógomb", +TextField : "Szövegmező", +Textarea : "Szövegterület", +HiddenField : "Rejtettmező", +Button : "Gomb", +SelectionField : "Legördülő lista", +ImageButton : "Képgomb", + +FitWindow : "Maximalizálás", +ShowBlocks : "Blokkok megjelenítése", + +// Context Menu +EditLink : "Hivatkozás módosítása", +CellCM : "Cella", +RowCM : "Sor", +ColumnCM : "Oszlop", +InsertRowAfter : "Sor beillesztése az aktuális sor mögé", +InsertRowBefore : "Sor beillesztése az aktuális sor elé", +DeleteRows : "Sorok törlése", +InsertColumnAfter : "Oszlop beillesztése az aktuális oszlop mögé", +InsertColumnBefore : "Oszlop beillesztése az aktuális oszlop elé", +DeleteColumns : "Oszlopok törlése", +InsertCellAfter : "Cella beillesztése az aktuális cella mögé", +InsertCellBefore : "Cella beillesztése az aktuális cella elé", +DeleteCells : "Cellák törlése", +MergeCells : "Cellák egyesítése", +MergeRight : "Cellák egyesítése jobbra", +MergeDown : "Cellák egyesítése lefelé", +HorizontalSplitCell : "Cellák szétválasztása vízszintesen", +VerticalSplitCell : "Cellák szétválasztása függőlegesen", +TableDelete : "Táblázat törlése", +CellProperties : "Cella tulajdonságai", +TableProperties : "Táblázat tulajdonságai", +ImageProperties : "Kép tulajdonságai", +FlashProperties : "Flash tulajdonságai", + +AnchorProp : "Horgony tulajdonságai", +ButtonProp : "Gomb tulajdonságai", +CheckboxProp : "Jelölőnégyzet tulajdonságai", +HiddenFieldProp : "Rejtett mező tulajdonságai", +RadioButtonProp : "Választógomb tulajdonságai", +ImageButtonProp : "Képgomb tulajdonságai", +TextFieldProp : "Szövegmező tulajdonságai", +SelectionFieldProp : "Legördülő lista tulajdonságai", +TextareaProp : "Szövegterület tulajdonságai", +FormProp : "Űrlap tulajdonságai", + +FontFormats : "Normál;Formázott;Címsor;Fejléc 1;Fejléc 2;Fejléc 3;Fejléc 4;Fejléc 5;Fejléc 6;Bekezdés (DIV)", + +// Alerts and Messages +ProcessingXHTML : "XHTML feldolgozása. Kérem várjon...", +Done : "Kész", +PasteWordConfirm : "A beilleszteni kívánt szöveg Word-ből van másolva. El kívánja távolítani a formázást a beillesztés előtt?", +NotCompatiblePaste : "Ez a parancs csak Internet Explorer 5.5 verziótól használható. Megpróbálja beilleszteni a szöveget az eredeti formázással?", +UnknownToolbarItem : "Ismeretlen eszköztár elem \"%1\"", +UnknownCommand : "Ismeretlen parancs \"%1\"", +NotImplemented : "A parancs nem hajtható végre", +UnknownToolbarSet : "Az eszközkészlet \"%1\" nem létezik", +NoActiveX : "A böngésző biztonsági beállításai korlátozzák a szerkesztő lehetőségeit. Engedélyezni kell ezt az opciót: \"Run ActiveX controls and plug-ins\". Ettől függetlenül előfordulhatnak hibaüzenetek ill. bizonyos funkciók hiányozhatnak.", +BrowseServerBlocked : "Nem lehet megnyitni a fájlböngészőt. Bizonyosodjon meg róla, hogy a felbukkanó ablakok engedélyezve vannak.", +DialogBlocked : "Nem lehet megnyitni a párbeszédablakot. Bizonyosodjon meg róla, hogy a felbukkanó ablakok engedélyezve vannak.", +VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING + +// Dialogs +DlgBtnOK : "Rendben", +DlgBtnCancel : "Mégsem", +DlgBtnClose : "Bezárás", +DlgBtnBrowseServer : "Böngészés a szerveren", +DlgAdvancedTag : "További opciók", +DlgOpOther : "Egyéb", +DlgInfoTab : "Alaptulajdonságok", +DlgAlertUrl : "Illessze be a webcímet", + +// General Dialogs Labels +DlgGenNotSet : "", +DlgGenId : "Azonosító", +DlgGenLangDir : "Írás iránya", +DlgGenLangDirLtr : "Balról jobbra", +DlgGenLangDirRtl : "Jobbról balra", +DlgGenLangCode : "Nyelv kódja", +DlgGenAccessKey : "Billentyűkombináció", +DlgGenName : "Név", +DlgGenTabIndex : "Tabulátor index", +DlgGenLongDescr : "Részletes leírás webcíme", +DlgGenClass : "Stíluskészlet", +DlgGenTitle : "Súgócimke", +DlgGenContType : "Súgó tartalomtípusa", +DlgGenLinkCharset : "Hivatkozott tartalom kódlapja", +DlgGenStyle : "Stílus", + +// Image Dialog +DlgImgTitle : "Kép tulajdonságai", +DlgImgInfoTab : "Alaptulajdonságok", +DlgImgBtnUpload : "Küldés a szerverre", +DlgImgURL : "Hivatkozás", +DlgImgUpload : "Feltöltés", +DlgImgAlt : "Buborék szöveg", +DlgImgWidth : "Szélesség", +DlgImgHeight : "Magasság", +DlgImgLockRatio : "Arány megtartása", +DlgBtnResetSize : "Eredeti méret", +DlgImgBorder : "Keret", +DlgImgHSpace : "Vízsz. táv", +DlgImgVSpace : "Függ. táv", +DlgImgAlign : "Igazítás", +DlgImgAlignLeft : "Bal", +DlgImgAlignAbsBottom: "Legaljára", +DlgImgAlignAbsMiddle: "Közepére", +DlgImgAlignBaseline : "Alapvonalhoz", +DlgImgAlignBottom : "Aljára", +DlgImgAlignMiddle : "Középre", +DlgImgAlignRight : "Jobbra", +DlgImgAlignTextTop : "Szöveg tetejére", +DlgImgAlignTop : "Tetejére", +DlgImgPreview : "Előnézet", +DlgImgAlertUrl : "Töltse ki a kép webcímét", +DlgImgLinkTab : "Hivatkozás", + +// Flash Dialog +DlgFlashTitle : "Flash tulajdonságai", +DlgFlashChkPlay : "Automata lejátszás", +DlgFlashChkLoop : "Folyamatosan", +DlgFlashChkMenu : "Flash menü engedélyezése", +DlgFlashScale : "Méretezés", +DlgFlashScaleAll : "Mindent mutat", +DlgFlashScaleNoBorder : "Keret nélkül", +DlgFlashScaleFit : "Teljes kitöltés", + +// Link Dialog +DlgLnkWindowTitle : "Hivatkozás tulajdonságai", +DlgLnkInfoTab : "Alaptulajdonságok", +DlgLnkTargetTab : "Megjelenítés", + +DlgLnkType : "Hivatkozás típusa", +DlgLnkTypeURL : "Webcím", +DlgLnkTypeAnchor : "Horgony az oldalon", +DlgLnkTypeEMail : "E-Mail", +DlgLnkProto : "Protokoll", +DlgLnkProtoOther : "", +DlgLnkURL : "Webcím", +DlgLnkAnchorSel : "Horgony választása", +DlgLnkAnchorByName : "Horgony név szerint", +DlgLnkAnchorById : "Azonosító szerint", +DlgLnkNoAnchors : "(Nincs horgony a dokumentumban)", +DlgLnkEMail : "E-Mail cím", +DlgLnkEMailSubject : "Üzenet tárgya", +DlgLnkEMailBody : "Üzenet", +DlgLnkUpload : "Feltöltés", +DlgLnkBtnUpload : "Küldés a szerverre", + +DlgLnkTarget : "Tartalom megjelenítése", +DlgLnkTargetFrame : "", +DlgLnkTargetPopup : "", +DlgLnkTargetBlank : "Új ablakban (_blank)", +DlgLnkTargetParent : "Szülő ablakban (_parent)", +DlgLnkTargetSelf : "Azonos ablakban (_self)", +DlgLnkTargetTop : "Legfelső ablakban (_top)", +DlgLnkTargetFrameName : "Keret neve", +DlgLnkPopWinName : "Felugró ablak neve", +DlgLnkPopWinFeat : "Felugró ablak jellemzői", +DlgLnkPopResize : "Méretezhető", +DlgLnkPopLocation : "Címsor", +DlgLnkPopMenu : "Menü sor", +DlgLnkPopScroll : "Gördítősáv", +DlgLnkPopStatus : "Állapotsor", +DlgLnkPopToolbar : "Eszköztár", +DlgLnkPopFullScrn : "Teljes képernyő (csak IE)", +DlgLnkPopDependent : "Szülőhöz kapcsolt (csak Netscape)", +DlgLnkPopWidth : "Szélesség", +DlgLnkPopHeight : "Magasság", +DlgLnkPopLeft : "Bal pozíció", +DlgLnkPopTop : "Felső pozíció", + +DlnLnkMsgNoUrl : "Adja meg a hivatkozás webcímét", +DlnLnkMsgNoEMail : "Adja meg az E-Mail címet", +DlnLnkMsgNoAnchor : "Válasszon egy horgonyt", +DlnLnkMsgInvPopName : "A felbukkanó ablak neve alfanumerikus karakterrel kezdôdjön, valamint ne tartalmazzon szóközt", + +// Color Dialog +DlgColorTitle : "Színválasztás", +DlgColorBtnClear : "Törlés", +DlgColorHighlight : "Előnézet", +DlgColorSelected : "Kiválasztott", + +// Smiley Dialog +DlgSmileyTitle : "Hangulatjel beszúrása", + +// Special Character Dialog +DlgSpecialCharTitle : "Speciális karakter választása", + +// Table Dialog +DlgTableTitle : "Táblázat tulajdonságai", +DlgTableRows : "Sorok", +DlgTableColumns : "Oszlopok", +DlgTableBorder : "Szegélyméret", +DlgTableAlign : "Igazítás", +DlgTableAlignNotSet : "", +DlgTableAlignLeft : "Balra", +DlgTableAlignCenter : "Középre", +DlgTableAlignRight : "Jobbra", +DlgTableWidth : "Szélesség", +DlgTableWidthPx : "képpont", +DlgTableWidthPc : "százalék", +DlgTableHeight : "Magasság", +DlgTableCellSpace : "Cella térköz", +DlgTableCellPad : "Cella belső margó", +DlgTableCaption : "Felirat", +DlgTableSummary : "Leírás", +DlgTableHeaders : "Headers", //MISSING +DlgTableHeadersNone : "None", //MISSING +DlgTableHeadersColumn : "First column", //MISSING +DlgTableHeadersRow : "First Row", //MISSING +DlgTableHeadersBoth : "Both", //MISSING + +// Table Cell Dialog +DlgCellTitle : "Cella tulajdonságai", +DlgCellWidth : "Szélesség", +DlgCellWidthPx : "képpont", +DlgCellWidthPc : "százalék", +DlgCellHeight : "Magasság", +DlgCellWordWrap : "Sortörés", +DlgCellWordWrapNotSet : "", +DlgCellWordWrapYes : "Igen", +DlgCellWordWrapNo : "Nem", +DlgCellHorAlign : "Vízsz. igazítás", +DlgCellHorAlignNotSet : "", +DlgCellHorAlignLeft : "Balra", +DlgCellHorAlignCenter : "Középre", +DlgCellHorAlignRight: "Jobbra", +DlgCellVerAlign : "Függ. igazítás", +DlgCellVerAlignNotSet : "", +DlgCellVerAlignTop : "Tetejére", +DlgCellVerAlignMiddle : "Középre", +DlgCellVerAlignBottom : "Aljára", +DlgCellVerAlignBaseline : "Egyvonalba", +DlgCellType : "Cell Type", //MISSING +DlgCellTypeData : "Data", //MISSING +DlgCellTypeHeader : "Header", //MISSING +DlgCellRowSpan : "Sorok egyesítése", +DlgCellCollSpan : "Oszlopok egyesítése", +DlgCellBackColor : "Háttérszín", +DlgCellBorderColor : "Szegélyszín", +DlgCellBtnSelect : "Kiválasztás...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "Keresés és csere", + +// Find Dialog +DlgFindTitle : "Keresés", +DlgFindFindBtn : "Keresés", +DlgFindNotFoundMsg : "A keresett szöveg nem található.", + +// Replace Dialog +DlgReplaceTitle : "Csere", +DlgReplaceFindLbl : "Keresett szöveg:", +DlgReplaceReplaceLbl : "Csere erre:", +DlgReplaceCaseChk : "kis- és nagybetű megkülönböztetése", +DlgReplaceReplaceBtn : "Csere", +DlgReplaceReplAllBtn : "Az összes cseréje", +DlgReplaceWordChk : "csak ha ez a teljes szó", + +// Paste Operations / Dialog +PasteErrorCut : "A böngésző biztonsági beállításai nem engedélyezik a szerkesztőnek, hogy végrehajtsa a kivágás műveletet. Használja az alábbi billentyűkombinációt (Ctrl+X).", +PasteErrorCopy : "A böngésző biztonsági beállításai nem engedélyezik a szerkesztőnek, hogy végrehajtsa a másolás műveletet. Használja az alábbi billentyűkombinációt (Ctrl+X).", + +PasteAsText : "Beillesztés formázatlan szövegként", +PasteFromWord : "Beillesztés Word-ből", + +DlgPasteMsg2 : "Másolja be az alábbi mezőbe a Ctrl+V billentyűk lenyomásával, majd nyomjon Rendben-t.", +DlgPasteSec : "A böngésző biztonsági beállításai miatt a szerkesztő nem képes hozzáférni a vágólap adataihoz. Illeszd be újra ebben az ablakban.", +DlgPasteIgnoreFont : "Betű formázások megszüntetése", +DlgPasteRemoveStyles : "Stílusok eltávolítása", + +// Color Picker +ColorAutomatic : "Automatikus", +ColorMoreColors : "További színek...", + +// Document Properties +DocProps : "Dokumentum tulajdonságai", + +// Anchor Dialog +DlgAnchorTitle : "Horgony tulajdonságai", +DlgAnchorName : "Horgony neve", +DlgAnchorErrorName : "Kérem adja meg a horgony nevét", + +// Speller Pages Dialog +DlgSpellNotInDic : "Nincs a szótárban", +DlgSpellChangeTo : "Módosítás", +DlgSpellBtnIgnore : "Kihagyja", +DlgSpellBtnIgnoreAll : "Mindet kihagyja", +DlgSpellBtnReplace : "Csere", +DlgSpellBtnReplaceAll : "Összes cseréje", +DlgSpellBtnUndo : "Visszavonás", +DlgSpellNoSuggestions : "Nincs javaslat", +DlgSpellProgress : "Helyesírás-ellenőrzés folyamatban...", +DlgSpellNoMispell : "Helyesírás-ellenőrzés kész: Nem találtam hibát", +DlgSpellNoChanges : "Helyesírás-ellenőrzés kész: Nincs változtatott szó", +DlgSpellOneChange : "Helyesírás-ellenőrzés kész: Egy szó cserélve", +DlgSpellManyChanges : "Helyesírás-ellenőrzés kész: %1 szó cserélve", + +IeSpellDownload : "A helyesírás-ellenőrző nincs telepítve. Szeretné letölteni most?", + +// Button Dialog +DlgButtonText : "Szöveg (Érték)", +DlgButtonType : "Típus", +DlgButtonTypeBtn : "Gomb", +DlgButtonTypeSbm : "Küldés", +DlgButtonTypeRst : "Alaphelyzet", + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "Név", +DlgCheckboxValue : "Érték", +DlgCheckboxSelected : "Kiválasztott", + +// Form Dialog +DlgFormName : "Név", +DlgFormAction : "Adatfeldolgozást végző hivatkozás", +DlgFormMethod : "Adatküldés módja", + +// Select Field Dialog +DlgSelectName : "Név", +DlgSelectValue : "Érték", +DlgSelectSize : "Méret", +DlgSelectLines : "sor", +DlgSelectChkMulti : "több sor is kiválasztható", +DlgSelectOpAvail : "Elérhető opciók", +DlgSelectOpText : "Szöveg", +DlgSelectOpValue : "Érték", +DlgSelectBtnAdd : "Hozzáad", +DlgSelectBtnModify : "Módosít", +DlgSelectBtnUp : "Fel", +DlgSelectBtnDown : "Le", +DlgSelectBtnSetValue : "Legyen az alapértelmezett érték", +DlgSelectBtnDelete : "Töröl", + +// Textarea Dialog +DlgTextareaName : "Név", +DlgTextareaCols : "Karakterek száma egy sorban", +DlgTextareaRows : "Sorok száma", + +// Text Field Dialog +DlgTextName : "Név", +DlgTextValue : "Érték", +DlgTextCharWidth : "Megjelenített karakterek száma", +DlgTextMaxChars : "Maximális karakterszám", +DlgTextType : "Típus", +DlgTextTypeText : "Szöveg", +DlgTextTypePass : "Jelszó", + +// Hidden Field Dialog +DlgHiddenName : "Név", +DlgHiddenValue : "Érték", + +// Bulleted List Dialog +BulletedListProp : "Felsorolás tulajdonságai", +NumberedListProp : "Számozás tulajdonságai", +DlgLstStart : "Start", +DlgLstType : "Formátum", +DlgLstTypeCircle : "Kör", +DlgLstTypeDisc : "Lemez", +DlgLstTypeSquare : "Négyzet", +DlgLstTypeNumbers : "Számok (1, 2, 3)", +DlgLstTypeLCase : "Kisbetűk (a, b, c)", +DlgLstTypeUCase : "Nagybetűk (A, B, C)", +DlgLstTypeSRoman : "Kis római számok (i, ii, iii)", +DlgLstTypeLRoman : "Nagy római számok (I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "Általános", +DlgDocBackTab : "Háttér", +DlgDocColorsTab : "Színek és margók", +DlgDocMetaTab : "Meta adatok", + +DlgDocPageTitle : "Oldalcím", +DlgDocLangDir : "Írás iránya", +DlgDocLangDirLTR : "Balról jobbra", +DlgDocLangDirRTL : "Jobbról balra", +DlgDocLangCode : "Nyelv kód", +DlgDocCharSet : "Karakterkódolás", +DlgDocCharSetCE : "Közép-Európai", +DlgDocCharSetCT : "Kínai Tradicionális (Big5)", +DlgDocCharSetCR : "Cyrill", +DlgDocCharSetGR : "Görög", +DlgDocCharSetJP : "Japán", +DlgDocCharSetKR : "Koreai", +DlgDocCharSetTR : "Török", +DlgDocCharSetUN : "Unicode (UTF-8)", +DlgDocCharSetWE : "Nyugat-Európai", +DlgDocCharSetOther : "Más karakterkódolás", + +DlgDocDocType : "Dokumentum típus fejléc", +DlgDocDocTypeOther : "Más dokumentum típus fejléc", +DlgDocIncXHTML : "XHTML deklarációk beillesztése", +DlgDocBgColor : "Háttérszín", +DlgDocBgImage : "Háttérkép cím", +DlgDocBgNoScroll : "Nem gördíthető háttér", +DlgDocCText : "Szöveg", +DlgDocCLink : "Cím", +DlgDocCVisited : "Látogatott cím", +DlgDocCActive : "Aktív cím", +DlgDocMargins : "Oldal margók", +DlgDocMaTop : "Felső", +DlgDocMaLeft : "Bal", +DlgDocMaRight : "Jobb", +DlgDocMaBottom : "Alsó", +DlgDocMeIndex : "Dokumentum keresőszavak (vesszővel elválasztva)", +DlgDocMeDescr : "Dokumentum leírás", +DlgDocMeAuthor : "Szerző", +DlgDocMeCopy : "Szerzői jog", +DlgDocPreview : "Előnézet", + +// Templates Dialog +Templates : "Sablonok", +DlgTemplatesTitle : "Elérhető sablonok", +DlgTemplatesSelMsg : "Válassza ki melyik sablon nyíljon meg a szerkesztőben
(a jelenlegi tartalom elveszik):", +DlgTemplatesLoading : "Sablon lista betöltése. Kis türelmet...", +DlgTemplatesNoTpl : "(Nincs sablon megadva)", +DlgTemplatesReplace : "Kicseréli a jelenlegi tartalmat", + +// About Dialog +DlgAboutAboutTab : "Névjegy", +DlgAboutBrowserInfoTab : "Böngésző információ", +DlgAboutLicenseTab : "Licensz", +DlgAboutVersion : "verzió", +DlgAboutInfo : "További információkért látogasson el ide:", + +// Div Dialog +DlgDivGeneralTab : "General", //MISSING +DlgDivAdvancedTab : "Advanced", //MISSING +DlgDivStyle : "Style", //MISSING +DlgDivInlineStyle : "Inline Style", //MISSING + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/is.js b/fckeditor/editor/lang/is.js new file mode 100644 index 0000000..9bbb14a --- /dev/null +++ b/fckeditor/editor/lang/is.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * Icelandic language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "Fela verkstiku", +ToolbarExpand : "Sýna verkstiku", + +// Toolbar Items and Context Menu +Save : "Vista", +NewPage : "Ný síða", +Preview : "Forskoða", +Cut : "Klippa", +Copy : "Afrita", +Paste : "Líma", +PasteText : "Líma ósniðinn texta", +PasteWord : "Líma úr Word", +Print : "Prenta", +SelectAll : "Velja allt", +RemoveFormat : "Fjarlægja snið", +InsertLinkLbl : "Stikla", +InsertLink : "Stofna/breyta stiklu", +RemoveLink : "Fjarlægja stiklu", +VisitLink : "Opna stiklusíðu", +Anchor : "Stofna/breyta kaflamerki", +AnchorDelete : "Eyða kaflamerki", +InsertImageLbl : "Setja inn mynd", +InsertImage : "Setja inn/breyta mynd", +InsertFlashLbl : "Flash", +InsertFlash : "Setja inn/breyta Flash", +InsertTableLbl : "Tafla", +InsertTable : "Setja inn/breyta töflu", +InsertLineLbl : "Lína", +InsertLine : "Lóðrétt lína", +InsertSpecialCharLbl: "Merki", +InsertSpecialChar : "Setja inn merki", +InsertSmileyLbl : "Svipur", +InsertSmiley : "Setja upp svip", +About : "Um FCKeditor", +Bold : "Feitletrað", +Italic : "Skáletrað", +Underline : "Undirstrikað", +StrikeThrough : "Yfirstrikað", +Subscript : "Niðurskrifað", +Superscript : "Uppskrifað", +LeftJustify : "Vinstrijöfnun", +CenterJustify : "Miðja texta", +RightJustify : "Hægrijöfnun", +BlockJustify : "Jafna báðum megin", +DecreaseIndent : "Auka inndrátt", +IncreaseIndent : "Minnka inndrátt", +Blockquote : "Inndráttur", +CreateDiv : "Búa til DIV-hýsil", +EditDiv : "Breyta DIV-hýsli", +DeleteDiv : "Eyða DIV-hýsli", +Undo : "Afturkalla", +Redo : "Hætta við afturköllun", +NumberedListLbl : "Númeraður listi", +NumberedList : "Setja inn/fella númeraðan lista", +BulletedListLbl : "Punktalisti", +BulletedList : "Setja inn/fella punktalista", +ShowTableBorders : "Sýna töflugrind", +ShowDetails : "Sýna smáatriði", +Style : "Stílflokkur", +FontFormat : "Stílsnið", +Font : "Leturgerð ", +FontSize : "Leturstærð ", +TextColor : "Litur texta", +BGColor : "Bakgrunnslitur", +Source : "Kóði", +Find : "Leita", +Replace : "Skipta út", +SpellCheck : "Villuleit", +UniversalKeyboard : "Hnattrænt lyklaborð", +PageBreakLbl : "Síðuskil", +PageBreak : "Setja inn síðuskil", + +Form : "Setja inn innsláttarform", +Checkbox : "Setja inn hökunarreit", +RadioButton : "Setja inn valhnapp", +TextField : "Setja inn textareit", +Textarea : "Setja inn textasvæði", +HiddenField : "Setja inn falið svæði", +Button : "Setja inn hnapp", +SelectionField : "Setja inn lista", +ImageButton : "Setja inn myndahnapp", + +FitWindow : "Skoða ritil í fullri stærð", +ShowBlocks : "Sýna blokkir", + +// Context Menu +EditLink : "Breyta stiklu", +CellCM : "Reitur", +RowCM : "Röð", +ColumnCM : "Dálkur", +InsertRowAfter : "Skjóta inn röð fyrir neðan", +InsertRowBefore : "Skjóta inn röð fyrir ofan", +DeleteRows : "Eyða röð", +InsertColumnAfter : "Skjóta inn dálki hægra megin", +InsertColumnBefore : "Skjóta inn dálki vinstra megin", +DeleteColumns : "Fella dálk", +InsertCellAfter : "Skjóta inn reiti fyrir framan", +InsertCellBefore : "Skjóta inn reiti fyrir aftan", +DeleteCells : "Fella reit", +MergeCells : "Sameina reiti", +MergeRight : "Sameina til hægri", +MergeDown : "Sameina niður á við", +HorizontalSplitCell : "Kljúfa reit lárétt", +VerticalSplitCell : "Kljúfa reit lóðrétt", +TableDelete : "Fella töflu", +CellProperties : "Eigindi reits", +TableProperties : "Eigindi töflu", +ImageProperties : "Eigindi myndar", +FlashProperties : "Eigindi Flash", + +AnchorProp : "Eigindi kaflamerkis", +ButtonProp : "Eigindi hnapps", +CheckboxProp : "Eigindi markreits", +HiddenFieldProp : "Eigindi falins svæðis", +RadioButtonProp : "Eigindi valhnapps", +ImageButtonProp : "Eigindi myndahnapps", +TextFieldProp : "Eigindi textareits", +SelectionFieldProp : "Eigindi lista", +TextareaProp : "Eigindi textasvæðis", +FormProp : "Eigindi innsláttarforms", + +FontFormats : "Venjulegt letur;Forsniðið;Vistfang;Fyrirsögn 1;Fyrirsögn 2;Fyrirsögn 3;Fyrirsögn 4;Fyrirsögn 5;Fyrirsögn 6;Venjulegt (DIV)", + +// Alerts and Messages +ProcessingXHTML : "Meðhöndla XHTML...", +Done : "Tilbúið", +PasteWordConfirm : "Textinn sem þú ætlar að líma virðist koma úr Word. Viltu hreinsa óþarfar Word-skipanir úr honum?", +NotCompatiblePaste : "Þessi aðgerð er bundin við Internet Explorer 5.5 og nýrri. Viltu líma textann án þess að hreinsa hann?", +UnknownToolbarItem : "Óþekktur hlutur í verkstiku \"%1\"!", +UnknownCommand : "Óþekkt skipanaheiti \"%1\"!", +NotImplemented : "Skipun ekki virkjuð!", +UnknownToolbarSet : "Verkstikan \"%1\" ekki til!", +NoActiveX : "Öryggisstillingarnar í vafranum þínum leyfa ekki alla möguleika ritilsins.
Láttu vafrann leyfa Active-X og viðbætur til að komast hjá villum og takmörkunum.", +BrowseServerBlocked : "Ritillinn getur ekki opnað nauðsynlega hjálparglugga!
Láttu hann leyfa þessari síðu að opna sprettiglugga.", +DialogBlocked : "Ekki var hægt að opna skipanaglugga!
Nauðsynlegt er að leyfa síðunni að opna sprettiglugga.", +VisitLinkBlocked : "Ekki var hægt að opna nýjan glugga. Gangtu úr skugga um að engir sprettigluggabanar séu virkir.", + +// Dialogs +DlgBtnOK : "Í lagi", +DlgBtnCancel : "Hætta við", +DlgBtnClose : "Loka", +DlgBtnBrowseServer : "Fletta í skjalasafni", +DlgAdvancedTag : "Tæknilegt", +DlgOpOther : "", +DlgInfoTab : "Upplýsingar", +DlgAlertUrl : "Sláðu inn slóð", + +// General Dialogs Labels +DlgGenNotSet : "", +DlgGenId : "Auðkenni", +DlgGenLangDir : "Lesstefna", +DlgGenLangDirLtr : "Frá vinstri til hægri (LTR)", +DlgGenLangDirRtl : "Frá hægri til vinstri (RTL)", +DlgGenLangCode : "Tungumálakóði", +DlgGenAccessKey : "Skammvalshnappur", +DlgGenName : "Nafn", +DlgGenTabIndex : "Raðnúmer innsláttarreits", +DlgGenLongDescr : "Nánari lýsing", +DlgGenClass : "Stílsniðsflokkur", +DlgGenTitle : "Titill", +DlgGenContType : "Tegund innihalds", +DlgGenLinkCharset : "Táknróf", +DlgGenStyle : "Stíll", + +// Image Dialog +DlgImgTitle : "Eigindi myndar", +DlgImgInfoTab : "Almennt", +DlgImgBtnUpload : "Hlaða upp", +DlgImgURL : "Vefslóð", +DlgImgUpload : "Hlaða upp", +DlgImgAlt : "Baklægur texti", +DlgImgWidth : "Breidd", +DlgImgHeight : "Hæð", +DlgImgLockRatio : "Festa stærðarhlutfall", +DlgBtnResetSize : "Reikna stærð", +DlgImgBorder : "Rammi", +DlgImgHSpace : "Vinstri bil", +DlgImgVSpace : "Hægri bil", +DlgImgAlign : "Jöfnun", +DlgImgAlignLeft : "Vinstri", +DlgImgAlignAbsBottom: "Abs neðst", +DlgImgAlignAbsMiddle: "Abs miðjuð", +DlgImgAlignBaseline : "Grunnlína", +DlgImgAlignBottom : "Neðst", +DlgImgAlignMiddle : "Miðjuð", +DlgImgAlignRight : "Hægri", +DlgImgAlignTextTop : "Efri brún texta", +DlgImgAlignTop : "Efst", +DlgImgPreview : "Sýna dæmi", +DlgImgAlertUrl : "Sláðu inn slóðina að myndinni", +DlgImgLinkTab : "Stikla", + +// Flash Dialog +DlgFlashTitle : "Eigindi Flash", +DlgFlashChkPlay : "Sjálfvirk spilun", +DlgFlashChkLoop : "Endurtekning", +DlgFlashChkMenu : "Sýna Flash-valmynd", +DlgFlashScale : "Skali", +DlgFlashScaleAll : "Sýna allt", +DlgFlashScaleNoBorder : "Án ramma", +DlgFlashScaleFit : "Fella skala að stærð", + +// Link Dialog +DlgLnkWindowTitle : "Stikla", +DlgLnkInfoTab : "Almennt", +DlgLnkTargetTab : "Mark", + +DlgLnkType : "Stikluflokkur", +DlgLnkTypeURL : "Vefslóð", +DlgLnkTypeAnchor : "Bókamerki á þessari síðu", +DlgLnkTypeEMail : "Netfang", +DlgLnkProto : "Samskiptastaðall", +DlgLnkProtoOther : "", +DlgLnkURL : "Vefslóð", +DlgLnkAnchorSel : "Veldu akkeri", +DlgLnkAnchorByName : "Eftir akkerisnafni", +DlgLnkAnchorById : "Eftir auðkenni einingar", +DlgLnkNoAnchors : "", +DlgLnkEMail : "Netfang", +DlgLnkEMailSubject : "Efni", +DlgLnkEMailBody : "Meginmál", +DlgLnkUpload : "Senda upp", +DlgLnkBtnUpload : "Senda upp", + +DlgLnkTarget : "Mark", +DlgLnkTargetFrame : "", +DlgLnkTargetPopup : "", +DlgLnkTargetBlank : "Nýr gluggi (_blank)", +DlgLnkTargetParent : "Yfirsettur rammi (_parent)", +DlgLnkTargetSelf : "Sami gluggi (_self)", +DlgLnkTargetTop : "Allur glugginn (_top)", +DlgLnkTargetFrameName : "Nafn markglugga", +DlgLnkPopWinName : "Nafn sprettiglugga", +DlgLnkPopWinFeat : "Eigindi sprettiglugga", +DlgLnkPopResize : "Skölun", +DlgLnkPopLocation : "Fanglína", +DlgLnkPopMenu : "Vallína", +DlgLnkPopScroll : "Skrunstikur", +DlgLnkPopStatus : "Stöðustika", +DlgLnkPopToolbar : "Verkfærastika", +DlgLnkPopFullScrn : "Heilskjár (IE)", +DlgLnkPopDependent : "Háð venslum (Netscape)", +DlgLnkPopWidth : "Breidd", +DlgLnkPopHeight : "Hæð", +DlgLnkPopLeft : "Fjarlægð frá vinstri", +DlgLnkPopTop : "Fjarlægð frá efri brún", + +DlnLnkMsgNoUrl : "Sláðu inn veffang stiklunnar!", +DlnLnkMsgNoEMail : "Sláðu inn netfang!", +DlnLnkMsgNoAnchor : "Veldu fyrst eitthvert bókamerki!", +DlnLnkMsgInvPopName : "Sprettisíðan verður að byrja á bókstaf (a-z) og má ekki innihalda stafabil", + +// Color Dialog +DlgColorTitle : "Velja lit", +DlgColorBtnClear : "Núllstilla", +DlgColorHighlight : "Litmerkja", +DlgColorSelected : "Valið", + +// Smiley Dialog +DlgSmileyTitle : "Velja svip", + +// Special Character Dialog +DlgSpecialCharTitle : "Velja tákn", + +// Table Dialog +DlgTableTitle : "Eigindi töflu", +DlgTableRows : "Raðir", +DlgTableColumns : "Dálkar", +DlgTableBorder : "Breidd ramma", +DlgTableAlign : "Jöfnun", +DlgTableAlignNotSet : "", +DlgTableAlignLeft : "Vinstrijafnað", +DlgTableAlignCenter : "Miðjað", +DlgTableAlignRight : "Hægrijafnað", +DlgTableWidth : "Breidd", +DlgTableWidthPx : "myndeindir", +DlgTableWidthPc : "prósent", +DlgTableHeight : "Hæð", +DlgTableCellSpace : "Bil milli reita", +DlgTableCellPad : "Reitaspássía", +DlgTableCaption : "Titill", +DlgTableSummary : "Áfram", +DlgTableHeaders : "Fyrirsagnir", +DlgTableHeadersNone : "Engar", +DlgTableHeadersColumn : "Fyrsti dálkur", +DlgTableHeadersRow : "Fyrsta röð", +DlgTableHeadersBoth : "Hvort tveggja", + +// Table Cell Dialog +DlgCellTitle : "Eigindi reits", +DlgCellWidth : "Breidd", +DlgCellWidthPx : "myndeindir", +DlgCellWidthPc : "prósent", +DlgCellHeight : "Hæð", +DlgCellWordWrap : "Línuskipting", +DlgCellWordWrapNotSet : "", +DlgCellWordWrapYes : "Já", +DlgCellWordWrapNo : "Nei", +DlgCellHorAlign : "Lárétt jöfnun", +DlgCellHorAlignNotSet : "", +DlgCellHorAlignLeft : "Vinstrijafnað", +DlgCellHorAlignCenter : "Miðjað", +DlgCellHorAlignRight: "Hægrijafnað", +DlgCellVerAlign : "Lóðrétt jöfnun", +DlgCellVerAlignNotSet : "", +DlgCellVerAlignTop : "Efst", +DlgCellVerAlignMiddle : "Miðjað", +DlgCellVerAlignBottom : "Neðst", +DlgCellVerAlignBaseline : "Grunnlína", +DlgCellType : "Tegund reits", +DlgCellTypeData : "Gögn", +DlgCellTypeHeader : "Fyrirsögn", +DlgCellRowSpan : "Hæð í röðum talið", +DlgCellCollSpan : "Breidd í dálkum talið", +DlgCellBackColor : "Bakgrunnslitur", +DlgCellBorderColor : "Rammalitur", +DlgCellBtnSelect : "Veldu...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "Finna og skipta", + +// Find Dialog +DlgFindTitle : "Finna", +DlgFindFindBtn : "Finna", +DlgFindNotFoundMsg : "Leitartexti fannst ekki!", + +// Replace Dialog +DlgReplaceTitle : "Skipta út", +DlgReplaceFindLbl : "Leita að:", +DlgReplaceReplaceLbl : "Skipta út fyrir:", +DlgReplaceCaseChk : "Gera greinarmun á¡ há¡- og lágstöfum", +DlgReplaceReplaceBtn : "Skipta út", +DlgReplaceReplAllBtn : "Skipta út allsstaðar", +DlgReplaceWordChk : "Aðeins heil orð", + +// Paste Operations / Dialog +PasteErrorCut : "Öryggisstillingar vafrans þíns leyfa ekki klippingu texta með músaraðgerð. Notaðu lyklaborðið í klippa (Ctrl+X).", +PasteErrorCopy : "Öryggisstillingar vafrans þíns leyfa ekki afritun texta með músaraðgerð. Notaðu lyklaborðið í afrita (Ctrl+C).", + +PasteAsText : "Líma sem ósniðinn texta", +PasteFromWord : "Líma úr Word", + +DlgPasteMsg2 : "Límdu í svæðið hér að neðan og (Ctrl+V) og smelltu á OK.", +DlgPasteSec : "Vegna öryggisstillinga í vafranum þínum fær ritillinn ekki beinan aðgang að klippuborðinu. Þú verður að líma innihaldið aftur inn í þennan glugga.", +DlgPasteIgnoreFont : "Hunsa leturskilgreiningar", +DlgPasteRemoveStyles : "Hunsa letureigindi", + +// Color Picker +ColorAutomatic : "Sjálfval", +ColorMoreColors : "Fleiri liti...", + +// Document Properties +DocProps : "Eigindi skjals", + +// Anchor Dialog +DlgAnchorTitle : "Eigindi bókamerkis", +DlgAnchorName : "Nafn bókamerkis", +DlgAnchorErrorName : "Sláðu inn nafn bókamerkis!", + +// Speller Pages Dialog +DlgSpellNotInDic : "Ekki í orðabókinni", +DlgSpellChangeTo : "Tillaga", +DlgSpellBtnIgnore : "Hunsa", +DlgSpellBtnIgnoreAll : "Hunsa allt", +DlgSpellBtnReplace : "Skipta", +DlgSpellBtnReplaceAll : "Skipta öllu", +DlgSpellBtnUndo : "Til baka", +DlgSpellNoSuggestions : "- engar tillögur -", +DlgSpellProgress : "Villuleit í gangi...", +DlgSpellNoMispell : "Villuleit lokið: Engin villa fannst", +DlgSpellNoChanges : "Villuleit lokið: Engu orði breytt", +DlgSpellOneChange : "Villuleit lokið: Einu orði breytt", +DlgSpellManyChanges : "Villuleit lokið: %1 orðum breytt", + +IeSpellDownload : "Villuleit ekki sett upp.
Viltu setja hana upp?", + +// Button Dialog +DlgButtonText : "Texti", +DlgButtonType : "Gerð", +DlgButtonTypeBtn : "Hnappur", +DlgButtonTypeSbm : "Staðfesta", +DlgButtonTypeRst : "Hreinsa", + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "Nafn", +DlgCheckboxValue : "Gildi", +DlgCheckboxSelected : "Valið", + +// Form Dialog +DlgFormName : "Nafn", +DlgFormAction : "Aðgerð", +DlgFormMethod : "Aðferð", + +// Select Field Dialog +DlgSelectName : "Nafn", +DlgSelectValue : "Gildi", +DlgSelectSize : "Stærð", +DlgSelectLines : "línur", +DlgSelectChkMulti : "Leyfa fleiri kosti", +DlgSelectOpAvail : "Kostir", +DlgSelectOpText : "Texti", +DlgSelectOpValue : "Gildi", +DlgSelectBtnAdd : "Bæta við", +DlgSelectBtnModify : "Breyta", +DlgSelectBtnUp : "Upp", +DlgSelectBtnDown : "Niður", +DlgSelectBtnSetValue : "Merkja sem valið", +DlgSelectBtnDelete : "Eyða", + +// Textarea Dialog +DlgTextareaName : "Nafn", +DlgTextareaCols : "Dálkar", +DlgTextareaRows : "Línur", + +// Text Field Dialog +DlgTextName : "Nafn", +DlgTextValue : "Gildi", +DlgTextCharWidth : "Breidd (leturtákn)", +DlgTextMaxChars : "Hámarksfjöldi leturtákna", +DlgTextType : "Gerð", +DlgTextTypeText : "Texti", +DlgTextTypePass : "Lykilorð", + +// Hidden Field Dialog +DlgHiddenName : "Nafn", +DlgHiddenValue : "Gildi", + +// Bulleted List Dialog +BulletedListProp : "Eigindi depillista", +NumberedListProp : "Eigindi tölusetts lista", +DlgLstStart : "Byrja", +DlgLstType : "Gerð", +DlgLstTypeCircle : "Hringur", +DlgLstTypeDisc : "Fylltur hringur", +DlgLstTypeSquare : "Ferningur", +DlgLstTypeNumbers : "Tölusett (1, 2, 3)", +DlgLstTypeLCase : "Lágstafir (a, b, c)", +DlgLstTypeUCase : "Hástafir (A, B, C)", +DlgLstTypeSRoman : "Rómverkar lágstafatölur (i, ii, iii)", +DlgLstTypeLRoman : "Rómverkar hástafatölur (I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "Almennt", +DlgDocBackTab : "Bakgrunnur", +DlgDocColorsTab : "Litir og rammar", +DlgDocMetaTab : "Lýsigögn", + +DlgDocPageTitle : "Titill síðu", +DlgDocLangDir : "Tungumál", +DlgDocLangDirLTR : "Vinstri til hægri (LTR)", +DlgDocLangDirRTL : "Hægri til vinstri (RTL)", +DlgDocLangCode : "Tungumálakóði", +DlgDocCharSet : "Letursett", +DlgDocCharSetCE : "Mið-evrópskt", +DlgDocCharSetCT : "Kínverskt, hefðbundið (Big5)", +DlgDocCharSetCR : "Kýrilskt", +DlgDocCharSetGR : "Grískt", +DlgDocCharSetJP : "Japanskt", +DlgDocCharSetKR : "Kóreskt", +DlgDocCharSetTR : "Tyrkneskt", +DlgDocCharSetUN : "Unicode (UTF-8)", +DlgDocCharSetWE : "Vestur-evrópst", +DlgDocCharSetOther : "Annað letursett", + +DlgDocDocType : "Flokkur skjalategunda", +DlgDocDocTypeOther : "Annar flokkur skjalategunda", +DlgDocIncXHTML : "Fella inn XHTML lýsingu", +DlgDocBgColor : "Bakgrunnslitur", +DlgDocBgImage : "Slóð bakgrunnsmyndar", +DlgDocBgNoScroll : "Læstur bakgrunnur", +DlgDocCText : "Texti", +DlgDocCLink : "Stikla", +DlgDocCVisited : "Heimsótt stikla", +DlgDocCActive : "Virk stikla", +DlgDocMargins : "Hliðarspássía", +DlgDocMaTop : "Efst", +DlgDocMaLeft : "Vinstri", +DlgDocMaRight : "Hægri", +DlgDocMaBottom : "Neðst", +DlgDocMeIndex : "Lykilorð efnisorðaskrár (aðgreind með kommum)", +DlgDocMeDescr : "Lýsing skjals", +DlgDocMeAuthor : "Höfundur", +DlgDocMeCopy : "Höfundarréttur", +DlgDocPreview : "Sýna", + +// Templates Dialog +Templates : "Sniðmát", +DlgTemplatesTitle : "Innihaldssniðmát", +DlgTemplatesSelMsg : "Veldu sniðmát til að opna í ritlinum.
(Núverandi innihald víkur fyrir því!):", +DlgTemplatesLoading : "Sæki lista yfir sniðmát...", +DlgTemplatesNoTpl : "(Ekkert sniðmát er skilgreint!)", +DlgTemplatesReplace : "Skipta út raunverulegu innihaldi", + +// About Dialog +DlgAboutAboutTab : "Um", +DlgAboutBrowserInfoTab : "Almennt", +DlgAboutLicenseTab : "Leyfi", +DlgAboutVersion : "útgáfa", +DlgAboutInfo : "Nánari upplýsinar, sjá:", + +// Div Dialog +DlgDivGeneralTab : "Almennt", +DlgDivAdvancedTab : "Sérhæft", +DlgDivStyle : "Stíll", +DlgDivInlineStyle : "Línulægur stíll", + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/it.js b/fckeditor/editor/lang/it.js new file mode 100644 index 0000000..ca0de52 --- /dev/null +++ b/fckeditor/editor/lang/it.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * Italian language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "Nascondi la barra degli strumenti", +ToolbarExpand : "Mostra la barra degli strumenti", + +// Toolbar Items and Context Menu +Save : "Salva", +NewPage : "Nuova pagina vuota", +Preview : "Anteprima", +Cut : "Taglia", +Copy : "Copia", +Paste : "Incolla", +PasteText : "Incolla come testo semplice", +PasteWord : "Incolla da Word", +Print : "Stampa", +SelectAll : "Seleziona tutto", +RemoveFormat : "Elimina formattazione", +InsertLinkLbl : "Collegamento", +InsertLink : "Inserisci/Modifica collegamento", +RemoveLink : "Elimina collegamento", +VisitLink : "Open Link", //MISSING +Anchor : "Inserisci/Modifica Ancora", +AnchorDelete : "Rimuovi Ancora", +InsertImageLbl : "Immagine", +InsertImage : "Inserisci/Modifica immagine", +InsertFlashLbl : "Oggetto Flash", +InsertFlash : "Inserisci/Modifica Oggetto Flash", +InsertTableLbl : "Tabella", +InsertTable : "Inserisci/Modifica tabella", +InsertLineLbl : "Riga orizzontale", +InsertLine : "Inserisci riga orizzontale", +InsertSpecialCharLbl: "Caratteri speciali", +InsertSpecialChar : "Inserisci carattere speciale", +InsertSmileyLbl : "Emoticon", +InsertSmiley : "Inserisci emoticon", +About : "Informazioni su FCKeditor", +Bold : "Grassetto", +Italic : "Corsivo", +Underline : "Sottolineato", +StrikeThrough : "Barrato", +Subscript : "Pedice", +Superscript : "Apice", +LeftJustify : "Allinea a sinistra", +CenterJustify : "Centra", +RightJustify : "Allinea a destra", +BlockJustify : "Giustifica", +DecreaseIndent : "Riduci rientro", +IncreaseIndent : "Aumenta rientro", +Blockquote : "Blockquote", //MISSING +CreateDiv : "Create Div Container", //MISSING +EditDiv : "Edit Div Container", //MISSING +DeleteDiv : "Remove Div Container", //MISSING +Undo : "Annulla", +Redo : "Ripristina", +NumberedListLbl : "Elenco numerato", +NumberedList : "Inserisci/Modifica elenco numerato", +BulletedListLbl : "Elenco puntato", +BulletedList : "Inserisci/Modifica elenco puntato", +ShowTableBorders : "Mostra bordi tabelle", +ShowDetails : "Mostra dettagli", +Style : "Stile", +FontFormat : "Formato", +Font : "Font", +FontSize : "Dimensione", +TextColor : "Colore testo", +BGColor : "Colore sfondo", +Source : "Codice Sorgente", +Find : "Trova", +Replace : "Sostituisci", +SpellCheck : "Correttore ortografico", +UniversalKeyboard : "Tastiera universale", +PageBreakLbl : "Interruzione di pagina", +PageBreak : "Inserisci interruzione di pagina", + +Form : "Modulo", +Checkbox : "Checkbox", +RadioButton : "Radio Button", +TextField : "Campo di testo", +Textarea : "Area di testo", +HiddenField : "Campo nascosto", +Button : "Bottone", +SelectionField : "Menu di selezione", +ImageButton : "Bottone immagine", + +FitWindow : "Massimizza l'area dell'editor", +ShowBlocks : "Visualizza Blocchi", + +// Context Menu +EditLink : "Modifica collegamento", +CellCM : "Cella", +RowCM : "Riga", +ColumnCM : "Colonna", +InsertRowAfter : "Inserisci Riga Dopo", +InsertRowBefore : "Inserisci Riga Prima", +DeleteRows : "Elimina righe", +InsertColumnAfter : "Inserisci Colonna Dopo", +InsertColumnBefore : "Inserisci Colonna Prima", +DeleteColumns : "Elimina colonne", +InsertCellAfter : "Inserisci Cella Dopo", +InsertCellBefore : "Inserisci Cella Prima", +DeleteCells : "Elimina celle", +MergeCells : "Unisce celle", +MergeRight : "Unisci a Destra", +MergeDown : "Unisci in Basso", +HorizontalSplitCell : "Dividi Cella Orizzontalmente", +VerticalSplitCell : "Dividi Cella Verticalmente", +TableDelete : "Cancella Tabella", +CellProperties : "Proprietà cella", +TableProperties : "Proprietà tabella", +ImageProperties : "Proprietà immagine", +FlashProperties : "Proprietà Oggetto Flash", + +AnchorProp : "Proprietà ancora", +ButtonProp : "Proprietà bottone", +CheckboxProp : "Proprietà checkbox", +HiddenFieldProp : "Proprietà campo nascosto", +RadioButtonProp : "Proprietà radio button", +ImageButtonProp : "Proprietà bottone immagine", +TextFieldProp : "Proprietà campo di testo", +SelectionFieldProp : "Proprietà menu di selezione", +TextareaProp : "Proprietà area di testo", +FormProp : "Proprietà modulo", + +FontFormats : "Normale;Formattato;Indirizzo;Titolo 1;Titolo 2;Titolo 3;Titolo 4;Titolo 5;Titolo 6;Paragrafo (DIV)", + +// Alerts and Messages +ProcessingXHTML : "Elaborazione XHTML in corso. Attendere prego...", +Done : "Completato", +PasteWordConfirm : "Il testo da incollare sembra provenire da Word. Desideri pulirlo prima di incollare?", +NotCompatiblePaste : "Questa funzione è disponibile solo per Internet Explorer 5.5 o superiore. Desideri incollare il testo senza pulirlo?", +UnknownToolbarItem : "Elemento della barra strumenti sconosciuto \"%1\"", +UnknownCommand : "Comando sconosciuto \"%1\"", +NotImplemented : "Comando non implementato", +UnknownToolbarSet : "La barra di strumenti \"%1\" non esiste", +NoActiveX : "Le impostazioni di sicurezza del tuo browser potrebbero limitare alcune funzionalità dell'editor. Devi abilitare l'opzione \"Esegui controlli e plug-in ActiveX\". Potresti avere errori e notare funzionalità mancanti.", +BrowseServerBlocked : "Non è possibile aprire la finestra di espolorazione risorse. Verifica che tutti i blocca popup siano bloccati.", +DialogBlocked : "Non è possibile aprire la finestra di dialogo. Verifica che tutti i blocca popup siano bloccati.", +VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING + +// Dialogs +DlgBtnOK : "OK", +DlgBtnCancel : "Annulla", +DlgBtnClose : "Chiudi", +DlgBtnBrowseServer : "Cerca sul server", +DlgAdvancedTag : "Avanzate", +DlgOpOther : "", +DlgInfoTab : "Info", +DlgAlertUrl : "Devi inserire l'URL", + +// General Dialogs Labels +DlgGenNotSet : "", +DlgGenId : "Id", +DlgGenLangDir : "Direzione scrittura", +DlgGenLangDirLtr : "Da Sinistra a Destra (LTR)", +DlgGenLangDirRtl : "Da Destra a Sinistra (RTL)", +DlgGenLangCode : "Codice Lingua", +DlgGenAccessKey : "Scorciatoia
da tastiera", +DlgGenName : "Nome", +DlgGenTabIndex : "Ordine di tabulazione", +DlgGenLongDescr : "URL descrizione estesa", +DlgGenClass : "Nome classe CSS", +DlgGenTitle : "Titolo", +DlgGenContType : "Tipo della risorsa collegata", +DlgGenLinkCharset : "Set di caretteri della risorsa collegata", +DlgGenStyle : "Stile", + +// Image Dialog +DlgImgTitle : "Proprietà immagine", +DlgImgInfoTab : "Informazioni immagine", +DlgImgBtnUpload : "Invia al server", +DlgImgURL : "URL", +DlgImgUpload : "Carica", +DlgImgAlt : "Testo alternativo", +DlgImgWidth : "Larghezza", +DlgImgHeight : "Altezza", +DlgImgLockRatio : "Blocca rapporto", +DlgBtnResetSize : "Reimposta dimensione", +DlgImgBorder : "Bordo", +DlgImgHSpace : "HSpace", +DlgImgVSpace : "VSpace", +DlgImgAlign : "Allineamento", +DlgImgAlignLeft : "Sinistra", +DlgImgAlignAbsBottom: "In basso assoluto", +DlgImgAlignAbsMiddle: "Centrato assoluto", +DlgImgAlignBaseline : "Linea base", +DlgImgAlignBottom : "In Basso", +DlgImgAlignMiddle : "Centrato", +DlgImgAlignRight : "Destra", +DlgImgAlignTextTop : "In alto al testo", +DlgImgAlignTop : "In Alto", +DlgImgPreview : "Anteprima", +DlgImgAlertUrl : "Devi inserire l'URL per l'immagine", +DlgImgLinkTab : "Collegamento", + +// Flash Dialog +DlgFlashTitle : "Proprietà Oggetto Flash", +DlgFlashChkPlay : "Avvio Automatico", +DlgFlashChkLoop : "Cicla", +DlgFlashChkMenu : "Abilita Menu di Flash", +DlgFlashScale : "Ridimensiona", +DlgFlashScaleAll : "Mostra Tutto", +DlgFlashScaleNoBorder : "Senza Bordo", +DlgFlashScaleFit : "Dimensione Esatta", + +// Link Dialog +DlgLnkWindowTitle : "Collegamento", +DlgLnkInfoTab : "Informazioni collegamento", +DlgLnkTargetTab : "Destinazione", + +DlgLnkType : "Tipo di Collegamento", +DlgLnkTypeURL : "URL", +DlgLnkTypeAnchor : "Ancora nella pagina", +DlgLnkTypeEMail : "E-Mail", +DlgLnkProto : "Protocollo", +DlgLnkProtoOther : "", +DlgLnkURL : "URL", +DlgLnkAnchorSel : "Scegli Ancora", +DlgLnkAnchorByName : "Per Nome", +DlgLnkAnchorById : "Per id elemento", +DlgLnkNoAnchors : "(Nessuna ancora disponibile nel documento)", +DlgLnkEMail : "Indirizzo E-Mail", +DlgLnkEMailSubject : "Oggetto del messaggio", +DlgLnkEMailBody : "Corpo del messaggio", +DlgLnkUpload : "Carica", +DlgLnkBtnUpload : "Invia al Server", + +DlgLnkTarget : "Destinazione", +DlgLnkTargetFrame : "", +DlgLnkTargetPopup : "", +DlgLnkTargetBlank : "Nuova finestra (_blank)", +DlgLnkTargetParent : "Finestra padre (_parent)", +DlgLnkTargetSelf : "Stessa finestra (_self)", +DlgLnkTargetTop : "Finestra superiore (_top)", +DlgLnkTargetFrameName : "Nome del riquadro di destinazione", +DlgLnkPopWinName : "Nome finestra popup", +DlgLnkPopWinFeat : "Caratteristiche finestra popup", +DlgLnkPopResize : "Ridimensionabile", +DlgLnkPopLocation : "Barra degli indirizzi", +DlgLnkPopMenu : "Barra del menu", +DlgLnkPopScroll : "Barre di scorrimento", +DlgLnkPopStatus : "Barra di stato", +DlgLnkPopToolbar : "Barra degli strumenti", +DlgLnkPopFullScrn : "A tutto schermo (IE)", +DlgLnkPopDependent : "Dipendente (Netscape)", +DlgLnkPopWidth : "Larghezza", +DlgLnkPopHeight : "Altezza", +DlgLnkPopLeft : "Posizione da sinistra", +DlgLnkPopTop : "Posizione dall'alto", + +DlnLnkMsgNoUrl : "Devi inserire l'URL del collegamento", +DlnLnkMsgNoEMail : "Devi inserire un'indirizzo e-mail", +DlnLnkMsgNoAnchor : "Devi selezionare un'ancora", +DlnLnkMsgInvPopName : "Il nome del popup deve iniziare con una lettera, e non può contenere spazi", + +// Color Dialog +DlgColorTitle : "Seleziona colore", +DlgColorBtnClear : "Vuota", +DlgColorHighlight : "Evidenziato", +DlgColorSelected : "Selezionato", + +// Smiley Dialog +DlgSmileyTitle : "Inserisci emoticon", + +// Special Character Dialog +DlgSpecialCharTitle : "Seleziona carattere speciale", + +// Table Dialog +DlgTableTitle : "Proprietà tabella", +DlgTableRows : "Righe", +DlgTableColumns : "Colonne", +DlgTableBorder : "Dimensione bordo", +DlgTableAlign : "Allineamento", +DlgTableAlignNotSet : "", +DlgTableAlignLeft : "Sinistra", +DlgTableAlignCenter : "Centrato", +DlgTableAlignRight : "Destra", +DlgTableWidth : "Larghezza", +DlgTableWidthPx : "pixel", +DlgTableWidthPc : "percento", +DlgTableHeight : "Altezza", +DlgTableCellSpace : "Spaziatura celle", +DlgTableCellPad : "Padding celle", +DlgTableCaption : "Intestazione", +DlgTableSummary : "Indice", +DlgTableHeaders : "Headers", //MISSING +DlgTableHeadersNone : "None", //MISSING +DlgTableHeadersColumn : "First column", //MISSING +DlgTableHeadersRow : "First Row", //MISSING +DlgTableHeadersBoth : "Both", //MISSING + +// Table Cell Dialog +DlgCellTitle : "Proprietà cella", +DlgCellWidth : "Larghezza", +DlgCellWidthPx : "pixel", +DlgCellWidthPc : "percento", +DlgCellHeight : "Altezza", +DlgCellWordWrap : "A capo automatico", +DlgCellWordWrapNotSet : "", +DlgCellWordWrapYes : "Si", +DlgCellWordWrapNo : "No", +DlgCellHorAlign : "Allineamento orizzontale", +DlgCellHorAlignNotSet : "", +DlgCellHorAlignLeft : "Sinistra", +DlgCellHorAlignCenter : "Centrato", +DlgCellHorAlignRight: "Destra", +DlgCellVerAlign : "Allineamento verticale", +DlgCellVerAlignNotSet : "", +DlgCellVerAlignTop : "In Alto", +DlgCellVerAlignMiddle : "Centrato", +DlgCellVerAlignBottom : "In Basso", +DlgCellVerAlignBaseline : "Linea base", +DlgCellType : "Cell Type", //MISSING +DlgCellTypeData : "Data", //MISSING +DlgCellTypeHeader : "Header", //MISSING +DlgCellRowSpan : "Righe occupate", +DlgCellCollSpan : "Colonne occupate", +DlgCellBackColor : "Colore sfondo", +DlgCellBorderColor : "Colore bordo", +DlgCellBtnSelect : "Scegli...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "Cerca e Sostituisci", + +// Find Dialog +DlgFindTitle : "Trova", +DlgFindFindBtn : "Trova", +DlgFindNotFoundMsg : "L'elemento cercato non è stato trovato.", + +// Replace Dialog +DlgReplaceTitle : "Sostituisci", +DlgReplaceFindLbl : "Trova:", +DlgReplaceReplaceLbl : "Sostituisci con:", +DlgReplaceCaseChk : "Maiuscole/minuscole", +DlgReplaceReplaceBtn : "Sostituisci", +DlgReplaceReplAllBtn : "Sostituisci tutto", +DlgReplaceWordChk : "Solo parole intere", + +// Paste Operations / Dialog +PasteErrorCut : "Le impostazioni di sicurezza del browser non permettono di tagliare automaticamente il testo. Usa la tastiera (Ctrl+X).", +PasteErrorCopy : "Le impostazioni di sicurezza del browser non permettono di copiare automaticamente il testo. Usa la tastiera (Ctrl+C).", + +PasteAsText : "Incolla come testo semplice", +PasteFromWord : "Incolla da Word", + +DlgPasteMsg2 : "Incolla il testo all'interno dell'area sottostante usando la scorciatoia di tastiere (Ctrl+V) e premi OK.", +DlgPasteSec : "A causa delle impostazioni di sicurezza del browser,l'editor non è in grado di accedere direttamente agli appunti. E' pertanto necessario incollarli di nuovo in questa finestra.", +DlgPasteIgnoreFont : "Ignora le definizioni di Font", +DlgPasteRemoveStyles : "Rimuovi le definizioni di Stile", + +// Color Picker +ColorAutomatic : "Automatico", +ColorMoreColors : "Altri colori...", + +// Document Properties +DocProps : "Proprietà del Documento", + +// Anchor Dialog +DlgAnchorTitle : "Proprietà ancora", +DlgAnchorName : "Nome ancora", +DlgAnchorErrorName : "Inserici il nome dell'ancora", + +// Speller Pages Dialog +DlgSpellNotInDic : "Non nel dizionario", +DlgSpellChangeTo : "Cambia in", +DlgSpellBtnIgnore : "Ignora", +DlgSpellBtnIgnoreAll : "Ignora tutto", +DlgSpellBtnReplace : "Cambia", +DlgSpellBtnReplaceAll : "Cambia tutto", +DlgSpellBtnUndo : "Annulla", +DlgSpellNoSuggestions : "- Nessun suggerimento -", +DlgSpellProgress : "Controllo ortografico in corso", +DlgSpellNoMispell : "Controllo ortografico completato: nessun errore trovato", +DlgSpellNoChanges : "Controllo ortografico completato: nessuna parola cambiata", +DlgSpellOneChange : "Controllo ortografico completato: 1 parola cambiata", +DlgSpellManyChanges : "Controllo ortografico completato: %1 parole cambiate", + +IeSpellDownload : "Contollo ortografico non installato. Lo vuoi scaricare ora?", + +// Button Dialog +DlgButtonText : "Testo (Value)", +DlgButtonType : "Tipo", +DlgButtonTypeBtn : "Bottone", +DlgButtonTypeSbm : "Invio", +DlgButtonTypeRst : "Annulla", + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "Nome", +DlgCheckboxValue : "Valore", +DlgCheckboxSelected : "Selezionato", + +// Form Dialog +DlgFormName : "Nome", +DlgFormAction : "Azione", +DlgFormMethod : "Metodo", + +// Select Field Dialog +DlgSelectName : "Nome", +DlgSelectValue : "Valore", +DlgSelectSize : "Dimensione", +DlgSelectLines : "righe", +DlgSelectChkMulti : "Permetti selezione multipla", +DlgSelectOpAvail : "Opzioni disponibili", +DlgSelectOpText : "Testo", +DlgSelectOpValue : "Valore", +DlgSelectBtnAdd : "Aggiungi", +DlgSelectBtnModify : "Modifica", +DlgSelectBtnUp : "Su", +DlgSelectBtnDown : "Gi", +DlgSelectBtnSetValue : "Imposta come predefinito", +DlgSelectBtnDelete : "Rimuovi", + +// Textarea Dialog +DlgTextareaName : "Nome", +DlgTextareaCols : "Colonne", +DlgTextareaRows : "Righe", + +// Text Field Dialog +DlgTextName : "Nome", +DlgTextValue : "Valore", +DlgTextCharWidth : "Larghezza", +DlgTextMaxChars : "Numero massimo di caratteri", +DlgTextType : "Tipo", +DlgTextTypeText : "Testo", +DlgTextTypePass : "Password", + +// Hidden Field Dialog +DlgHiddenName : "Nome", +DlgHiddenValue : "Valore", + +// Bulleted List Dialog +BulletedListProp : "Proprietà lista puntata", +NumberedListProp : "Proprietà lista numerata", +DlgLstStart : "Inizio", +DlgLstType : "Tipo", +DlgLstTypeCircle : "Tondo", +DlgLstTypeDisc : "Disco", +DlgLstTypeSquare : "Quadrato", +DlgLstTypeNumbers : "Numeri (1, 2, 3)", +DlgLstTypeLCase : "Caratteri minuscoli (a, b, c)", +DlgLstTypeUCase : "Caratteri maiuscoli (A, B, C)", +DlgLstTypeSRoman : "Numeri Romani minuscoli (i, ii, iii)", +DlgLstTypeLRoman : "Numeri Romani maiuscoli (I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "Genarale", +DlgDocBackTab : "Sfondo", +DlgDocColorsTab : "Colori e margini", +DlgDocMetaTab : "Meta Data", + +DlgDocPageTitle : "Titolo pagina", +DlgDocLangDir : "Direzione scrittura", +DlgDocLangDirLTR : "Da Sinistra a Destra (LTR)", +DlgDocLangDirRTL : "Da Destra a Sinistra (RTL)", +DlgDocLangCode : "Codice Lingua", +DlgDocCharSet : "Set di caretteri", +DlgDocCharSetCE : "Europa Centrale", +DlgDocCharSetCT : "Cinese Tradizionale (Big5)", +DlgDocCharSetCR : "Cirillico", +DlgDocCharSetGR : "Greco", +DlgDocCharSetJP : "Giapponese", +DlgDocCharSetKR : "Coreano", +DlgDocCharSetTR : "Turco", +DlgDocCharSetUN : "Unicode (UTF-8)", +DlgDocCharSetWE : "Europa Occidentale", +DlgDocCharSetOther : "Altro set di caretteri", + +DlgDocDocType : "Intestazione DocType", +DlgDocDocTypeOther : "Altra intestazione DocType", +DlgDocIncXHTML : "Includi dichiarazione XHTML", +DlgDocBgColor : "Colore di sfondo", +DlgDocBgImage : "Immagine di sfondo", +DlgDocBgNoScroll : "Sfondo fissato", +DlgDocCText : "Testo", +DlgDocCLink : "Collegamento", +DlgDocCVisited : "Collegamento visitato", +DlgDocCActive : "Collegamento attivo", +DlgDocMargins : "Margini", +DlgDocMaTop : "In Alto", +DlgDocMaLeft : "A Sinistra", +DlgDocMaRight : "A Destra", +DlgDocMaBottom : "In Basso", +DlgDocMeIndex : "Chiavi di indicizzazione documento (separate da virgola)", +DlgDocMeDescr : "Descrizione documento", +DlgDocMeAuthor : "Autore", +DlgDocMeCopy : "Copyright", +DlgDocPreview : "Anteprima", + +// Templates Dialog +Templates : "Modelli", +DlgTemplatesTitle : "Contenuto dei modelli", +DlgTemplatesSelMsg : "Seleziona il modello da aprire nell'editor
(il contenuto attuale verrà eliminato):", +DlgTemplatesLoading : "Caricamento modelli in corso. Attendere prego...", +DlgTemplatesNoTpl : "(Nessun modello definito)", +DlgTemplatesReplace : "Cancella il contenuto corrente", + +// About Dialog +DlgAboutAboutTab : "Informazioni", +DlgAboutBrowserInfoTab : "Informazioni Browser", +DlgAboutLicenseTab : "Licenza", +DlgAboutVersion : "versione", +DlgAboutInfo : "Per maggiori informazioni visitare", + +// Div Dialog +DlgDivGeneralTab : "General", //MISSING +DlgDivAdvancedTab : "Advanced", //MISSING +DlgDivStyle : "Style", //MISSING +DlgDivInlineStyle : "Inline Style", //MISSING + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/ja.js b/fckeditor/editor/lang/ja.js new file mode 100644 index 0000000..6cd25f7 --- /dev/null +++ b/fckeditor/editor/lang/ja.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * Japanese language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "ツールバーを隠す", +ToolbarExpand : "ツールバーを表示", + +// Toolbar Items and Context Menu +Save : "保存", +NewPage : "新しいページ", +Preview : "プレビュー", +Cut : "切り取り", +Copy : "コピー", +Paste : "貼り付け", +PasteText : "プレーンテキスト貼り付け", +PasteWord : "ワード文章から貼り付け", +Print : "印刷", +SelectAll : "すべて選択", +RemoveFormat : "フォーマット削除", +InsertLinkLbl : "リンク", +InsertLink : "リンク挿入/編集", +RemoveLink : "リンク削除", +VisitLink : "リンクを開く", +Anchor : "アンカー挿入/編集", +AnchorDelete : "アンカー削除", +InsertImageLbl : "イメージ", +InsertImage : "イメージ挿入/編集", +InsertFlashLbl : "Flash", +InsertFlash : "Flash挿入/編集", +InsertTableLbl : "テーブル", +InsertTable : "テーブル挿入/編集", +InsertLineLbl : "ライン", +InsertLine : "横罫線", +InsertSpecialCharLbl: "特殊文字", +InsertSpecialChar : "特殊文字挿入", +InsertSmileyLbl : "絵文字", +InsertSmiley : "絵文字挿入", +About : "FCKeditorヘルプ", +Bold : "太字", +Italic : "斜体", +Underline : "下線", +StrikeThrough : "打ち消し線", +Subscript : "添え字", +Superscript : "上付き文字", +LeftJustify : "左揃え", +CenterJustify : "中央揃え", +RightJustify : "右揃え", +BlockJustify : "両端揃え", +DecreaseIndent : "インデント解除", +IncreaseIndent : "インデント", +Blockquote : "ブロック引用", +CreateDiv : "Div 作成", +EditDiv : "Div 編集", +DeleteDiv : "Div 削除", +Undo : "元に戻す", +Redo : "やり直し", +NumberedListLbl : "段落番号", +NumberedList : "段落番号の追加/削除", +BulletedListLbl : "箇条書き", +BulletedList : "箇条書きの追加/削除", +ShowTableBorders : "テーブルボーダー表示", +ShowDetails : "詳細表示", +Style : "スタイル", +FontFormat : "フォーマット", +Font : "フォント", +FontSize : "サイズ", +TextColor : "テキスト色", +BGColor : "背景色", +Source : "ソース", +Find : "検索", +Replace : "置き換え", +SpellCheck : "スペルチェック", +UniversalKeyboard : "ユニバーサル・キーボード", +PageBreakLbl : "改ページ", +PageBreak : "改ページ挿入", + +Form : "フォーム", +Checkbox : "チェックボックス", +RadioButton : "ラジオボタン", +TextField : "1行テキスト", +Textarea : "テキストエリア", +HiddenField : "不可視フィールド", +Button : "ボタン", +SelectionField : "選択フィールド", +ImageButton : "画像ボタン", + +FitWindow : "エディタサイズを最大にします", +ShowBlocks : "ブロック表示", + +// Context Menu +EditLink : "リンク編集", +CellCM : "セル", +RowCM : "行", +ColumnCM : "カラム", +InsertRowAfter : "列の後に挿入", +InsertRowBefore : "列の前に挿入", +DeleteRows : "行削除", +InsertColumnAfter : "カラムの後に挿入", +InsertColumnBefore : "カラムの前に挿入", +DeleteColumns : "列削除", +InsertCellAfter : "セルの後に挿入", +InsertCellBefore : "セルの前に挿入", +DeleteCells : "セル削除", +MergeCells : "セル結合", +MergeRight : "右に結合", +MergeDown : "下に結合", +HorizontalSplitCell : "セルを水平方向分割", +VerticalSplitCell : "セルを垂直方向に分割", +TableDelete : "テーブル削除", +CellProperties : "セル プロパティ", +TableProperties : "テーブル プロパティ", +ImageProperties : "イメージ プロパティ", +FlashProperties : "Flash プロパティ", + +AnchorProp : "アンカー プロパティ", +ButtonProp : "ボタン プロパティ", +CheckboxProp : "チェックボックス プロパティ", +HiddenFieldProp : "不可視フィールド プロパティ", +RadioButtonProp : "ラジオボタン プロパティ", +ImageButtonProp : "画像ボタン プロパティ", +TextFieldProp : "1行テキスト プロパティ", +SelectionFieldProp : "選択フィールド プロパティ", +TextareaProp : "テキストエリア プロパティ", +FormProp : "フォーム プロパティ", + +FontFormats : "標準;書式付き;アドレス;見出し 1;見出し 2;見出し 3;見出し 4;見出し 5;見出し 6;標準 (DIV)", + +// Alerts and Messages +ProcessingXHTML : "XHTML処理中. しばらくお待ちください...", +Done : "完了", +PasteWordConfirm : "貼り付けを行うテキストは、ワード文章からコピーされようとしています。貼り付ける前にクリーニングを行いますか?", +NotCompatiblePaste : "このコマンドはインターネット・エクスプローラーバージョン5.5以上で利用可能です。クリーニングしないで貼り付けを行いますか?", +UnknownToolbarItem : "未知のツールバー項目 \"%1\"", +UnknownCommand : "未知のコマンド名 \"%1\"", +NotImplemented : "コマンドはインプリメントされませんでした。", +UnknownToolbarSet : "ツールバー設定 \"%1\" 存在しません。", +NoActiveX : "エラー、警告メッセージなどが発生した場合、ブラウザーのセキュリティ設定によりエディタのいくつかの機能が制限されている可能性があります。セキュリティ設定のオプションで\"ActiveXコントロールとプラグインの実行\"を有効にするにしてください。", +BrowseServerBlocked : "サーバーブラウザーを開くことができませんでした。ポップアップ・ブロック機能が無効になっているか確認してください。", +DialogBlocked : "ダイアログウィンドウを開くことができませんでした。ポップアップ・ブロック機能が無効になっているか確認してください。", +VisitLinkBlocked : "新しいウィンドウを開くことができませんでした。ポップアップ・ブロック機能が無効になっているか確認してください。", + +// Dialogs +DlgBtnOK : "OK", +DlgBtnCancel : "キャンセル", +DlgBtnClose : "閉じる", +DlgBtnBrowseServer : "サーバーブラウザー", +DlgAdvancedTag : "高度な設定", +DlgOpOther : "<その他>", +DlgInfoTab : "情報", +DlgAlertUrl : "URLを挿入してください", + +// General Dialogs Labels +DlgGenNotSet : "<なし>", +DlgGenId : "Id", +DlgGenLangDir : "文字表記の方向", +DlgGenLangDirLtr : "左から右 (LTR)", +DlgGenLangDirRtl : "右から左 (RTL)", +DlgGenLangCode : "言語コード", +DlgGenAccessKey : "アクセスキー", +DlgGenName : "Name属性", +DlgGenTabIndex : "タブインデックス", +DlgGenLongDescr : "longdesc属性(長文説明)", +DlgGenClass : "スタイルシートクラス", +DlgGenTitle : "Title属性", +DlgGenContType : "Content Type属性", +DlgGenLinkCharset : "リンクcharset属性", +DlgGenStyle : "スタイルシート", + +// Image Dialog +DlgImgTitle : "イメージ プロパティ", +DlgImgInfoTab : "イメージ 情報", +DlgImgBtnUpload : "サーバーに送信", +DlgImgURL : "URL", +DlgImgUpload : "アップロード", +DlgImgAlt : "代替テキスト", +DlgImgWidth : "幅", +DlgImgHeight : "高さ", +DlgImgLockRatio : "ロック比率", +DlgBtnResetSize : "サイズリセット", +DlgImgBorder : "ボーダー", +DlgImgHSpace : "横間隔", +DlgImgVSpace : "縦間隔", +DlgImgAlign : "行揃え", +DlgImgAlignLeft : "左", +DlgImgAlignAbsBottom: "下部(絶対的)", +DlgImgAlignAbsMiddle: "中央(絶対的)", +DlgImgAlignBaseline : "ベースライン", +DlgImgAlignBottom : "下", +DlgImgAlignMiddle : "中央", +DlgImgAlignRight : "右", +DlgImgAlignTextTop : "テキスト上部", +DlgImgAlignTop : "上", +DlgImgPreview : "プレビュー", +DlgImgAlertUrl : "イメージのURLを入力してください。", +DlgImgLinkTab : "リンク", + +// Flash Dialog +DlgFlashTitle : "Flash プロパティ", +DlgFlashChkPlay : "再生", +DlgFlashChkLoop : "ループ再生", +DlgFlashChkMenu : "Flashメニュー可能", +DlgFlashScale : "拡大縮小設定", +DlgFlashScaleAll : "すべて表示", +DlgFlashScaleNoBorder : "外が見えない様に拡大", +DlgFlashScaleFit : "上下左右にフィット", + +// Link Dialog +DlgLnkWindowTitle : "ハイパーリンク", +DlgLnkInfoTab : "ハイパーリンク 情報", +DlgLnkTargetTab : "ターゲット", + +DlgLnkType : "リンクタイプ", +DlgLnkTypeURL : "URL", +DlgLnkTypeAnchor : "このページのアンカー", +DlgLnkTypeEMail : "E-Mail", +DlgLnkProto : "プロトコル", +DlgLnkProtoOther : "<その他>", +DlgLnkURL : "URL", +DlgLnkAnchorSel : "アンカーを選択", +DlgLnkAnchorByName : "アンカー名", +DlgLnkAnchorById : "エレメントID", +DlgLnkNoAnchors : "(ドキュメントにおいて利用可能なアンカーはありません。)", +DlgLnkEMail : "E-Mail アドレス", +DlgLnkEMailSubject : "件名", +DlgLnkEMailBody : "本文", +DlgLnkUpload : "アップロード", +DlgLnkBtnUpload : "サーバーに送信", + +DlgLnkTarget : "ターゲット", +DlgLnkTargetFrame : "<フレーム>", +DlgLnkTargetPopup : "<ポップアップウィンドウ>", +DlgLnkTargetBlank : "新しいウィンドウ (_blank)", +DlgLnkTargetParent : "親ウィンドウ (_parent)", +DlgLnkTargetSelf : "同じウィンドウ (_self)", +DlgLnkTargetTop : "最上位ウィンドウ (_top)", +DlgLnkTargetFrameName : "目的のフレーム名", +DlgLnkPopWinName : "ポップアップウィンドウ名", +DlgLnkPopWinFeat : "ポップアップウィンドウ特徴", +DlgLnkPopResize : "リサイズ可能", +DlgLnkPopLocation : "ロケーションバー", +DlgLnkPopMenu : "メニューバー", +DlgLnkPopScroll : "スクロールバー", +DlgLnkPopStatus : "ステータスバー", +DlgLnkPopToolbar : "ツールバー", +DlgLnkPopFullScrn : "全画面モード(IE)", +DlgLnkPopDependent : "開いたウィンドウに連動して閉じる (Netscape)", +DlgLnkPopWidth : "幅", +DlgLnkPopHeight : "高さ", +DlgLnkPopLeft : "左端からの座標で指定", +DlgLnkPopTop : "上端からの座標で指定", + +DlnLnkMsgNoUrl : "リンクURLを入力してください。", +DlnLnkMsgNoEMail : "メールアドレスを入力してください。", +DlnLnkMsgNoAnchor : "アンカーを選択してください。", +DlnLnkMsgInvPopName : "ポップ・アップ名は英字で始まる文字で指定してくだい。ポップ・アップ名にスペースは含めません", + +// Color Dialog +DlgColorTitle : "色選択", +DlgColorBtnClear : "クリア", +DlgColorHighlight : "ハイライト", +DlgColorSelected : "選択色", + +// Smiley Dialog +DlgSmileyTitle : "顔文字挿入", + +// Special Character Dialog +DlgSpecialCharTitle : "特殊文字選択", + +// Table Dialog +DlgTableTitle : "テーブル プロパティ", +DlgTableRows : "行", +DlgTableColumns : "列", +DlgTableBorder : "ボーダーサイズ", +DlgTableAlign : "キャプションの整列", +DlgTableAlignNotSet : "<なし>", +DlgTableAlignLeft : "左", +DlgTableAlignCenter : "中央", +DlgTableAlignRight : "右", +DlgTableWidth : "テーブル幅", +DlgTableWidthPx : "ピクセル", +DlgTableWidthPc : "パーセント", +DlgTableHeight : "テーブル高さ", +DlgTableCellSpace : "セル内余白", +DlgTableCellPad : "セル内間隔", +DlgTableCaption : "キャプション", +DlgTableSummary : "テーブル目的/構造", +DlgTableHeaders : "Headers", //MISSING +DlgTableHeadersNone : "None", //MISSING +DlgTableHeadersColumn : "First column", //MISSING +DlgTableHeadersRow : "First Row", //MISSING +DlgTableHeadersBoth : "Both", //MISSING + +// Table Cell Dialog +DlgCellTitle : "セル プロパティ", +DlgCellWidth : "幅", +DlgCellWidthPx : "ピクセル", +DlgCellWidthPc : "パーセント", +DlgCellHeight : "高さ", +DlgCellWordWrap : "折り返し", +DlgCellWordWrapNotSet : "<なし>", +DlgCellWordWrapYes : "Yes", +DlgCellWordWrapNo : "No", +DlgCellHorAlign : "セル横の整列", +DlgCellHorAlignNotSet : "<なし>", +DlgCellHorAlignLeft : "左", +DlgCellHorAlignCenter : "中央", +DlgCellHorAlignRight: "右", +DlgCellVerAlign : "セル縦の整列", +DlgCellVerAlignNotSet : "<なし>", +DlgCellVerAlignTop : "上", +DlgCellVerAlignMiddle : "中央", +DlgCellVerAlignBottom : "下", +DlgCellVerAlignBaseline : "ベースライン", +DlgCellType : "Cell Type", //MISSING +DlgCellTypeData : "Data", //MISSING +DlgCellTypeHeader : "Header", //MISSING +DlgCellRowSpan : "縦幅(行数)", +DlgCellCollSpan : "横幅(列数)", +DlgCellBackColor : "背景色", +DlgCellBorderColor : "ボーダーカラー", +DlgCellBtnSelect : "選択...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "検索して置換", + +// Find Dialog +DlgFindTitle : "検索", +DlgFindFindBtn : "検索", +DlgFindNotFoundMsg : "指定された文字列は見つかりませんでした。", + +// Replace Dialog +DlgReplaceTitle : "置き換え", +DlgReplaceFindLbl : "検索する文字列:", +DlgReplaceReplaceLbl : "置換えする文字列:", +DlgReplaceCaseChk : "部分一致", +DlgReplaceReplaceBtn : "置換え", +DlgReplaceReplAllBtn : "すべて置換え", +DlgReplaceWordChk : "単語単位で一致", + +// Paste Operations / Dialog +PasteErrorCut : "ブラウザーのセキュリティ設定によりエディタの切り取り操作が自動で実行することができません。実行するには手動でキーボードの(Ctrl+X)を使用してください。", +PasteErrorCopy : "ブラウザーのセキュリティ設定によりエディタのコピー操作が自動で実行することができません。実行するには手動でキーボードの(Ctrl+C)を使用してください。", + +PasteAsText : "プレーンテキスト貼り付け", +PasteFromWord : "ワード文章から貼り付け", + +DlgPasteMsg2 : "キーボード(Ctrl+V)を使用して、次の入力エリア内で貼って、OKを押してください。", +DlgPasteSec : "ブラウザのセキュリティ設定により、エディタはクリップボード・データに直接アクセスすることができません。このウィンドウは貼り付け操作を行う度に表示されます。", +DlgPasteIgnoreFont : "FontタグのFace属性を無視します。", +DlgPasteRemoveStyles : "スタイル定義を削除します。", + +// Color Picker +ColorAutomatic : "自動", +ColorMoreColors : "その他の色...", + +// Document Properties +DocProps : "文書 プロパティ", + +// Anchor Dialog +DlgAnchorTitle : "アンカー プロパティ", +DlgAnchorName : "アンカー名", +DlgAnchorErrorName : "アンカー名を必ず入力してください。", + +// Speller Pages Dialog +DlgSpellNotInDic : "辞書にありません", +DlgSpellChangeTo : "変更", +DlgSpellBtnIgnore : "無視", +DlgSpellBtnIgnoreAll : "すべて無視", +DlgSpellBtnReplace : "置換", +DlgSpellBtnReplaceAll : "すべて置換", +DlgSpellBtnUndo : "やり直し", +DlgSpellNoSuggestions : "- 該当なし -", +DlgSpellProgress : "スペルチェック処理中...", +DlgSpellNoMispell : "スペルチェック完了: スペルの誤りはありませんでした", +DlgSpellNoChanges : "スペルチェック完了: 語句は変更されませんでした", +DlgSpellOneChange : "スペルチェック完了: 1語句変更されました", +DlgSpellManyChanges : "スペルチェック完了: %1 語句変更されました", + +IeSpellDownload : "スペルチェッカーがインストールされていません。今すぐダウンロードしますか?", + +// Button Dialog +DlgButtonText : "テキスト (値)", +DlgButtonType : "タイプ", +DlgButtonTypeBtn : "ボタン", +DlgButtonTypeSbm : "送信", +DlgButtonTypeRst : "リセット", + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "名前", +DlgCheckboxValue : "値", +DlgCheckboxSelected : "選択済み", + +// Form Dialog +DlgFormName : "フォーム名", +DlgFormAction : "アクション", +DlgFormMethod : "メソッド", + +// Select Field Dialog +DlgSelectName : "名前", +DlgSelectValue : "値", +DlgSelectSize : "サイズ", +DlgSelectLines : "行", +DlgSelectChkMulti : "複数項目選択を許可", +DlgSelectOpAvail : "利用可能なオプション", +DlgSelectOpText : "選択項目名", +DlgSelectOpValue : "選択項目値", +DlgSelectBtnAdd : "追加", +DlgSelectBtnModify : "編集", +DlgSelectBtnUp : "上へ", +DlgSelectBtnDown : "下へ", +DlgSelectBtnSetValue : "選択した値を設定", +DlgSelectBtnDelete : "削除", + +// Textarea Dialog +DlgTextareaName : "名前", +DlgTextareaCols : "列", +DlgTextareaRows : "行", + +// Text Field Dialog +DlgTextName : "名前", +DlgTextValue : "値", +DlgTextCharWidth : "サイズ", +DlgTextMaxChars : "最大長", +DlgTextType : "タイプ", +DlgTextTypeText : "テキスト", +DlgTextTypePass : "パスワード入力", + +// Hidden Field Dialog +DlgHiddenName : "名前", +DlgHiddenValue : "値", + +// Bulleted List Dialog +BulletedListProp : "箇条書き プロパティ", +NumberedListProp : "段落番号 プロパティ", +DlgLstStart : "開始文字", +DlgLstType : "タイプ", +DlgLstTypeCircle : "白丸", +DlgLstTypeDisc : "黒丸", +DlgLstTypeSquare : "四角", +DlgLstTypeNumbers : "アラビア数字 (1, 2, 3)", +DlgLstTypeLCase : "英字小文字 (a, b, c)", +DlgLstTypeUCase : "英字大文字 (A, B, C)", +DlgLstTypeSRoman : "ローマ数字小文字 (i, ii, iii)", +DlgLstTypeLRoman : "ローマ数字大文字 (I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "全般", +DlgDocBackTab : "背景", +DlgDocColorsTab : "色とマージン", +DlgDocMetaTab : "メタデータ", + +DlgDocPageTitle : "ページタイトル", +DlgDocLangDir : "言語文字表記の方向", +DlgDocLangDirLTR : "左から右に表記(LTR)", +DlgDocLangDirRTL : "右から左に表記(RTL)", +DlgDocLangCode : "言語コード", +DlgDocCharSet : "文字セット符号化", +DlgDocCharSetCE : "Central European", +DlgDocCharSetCT : "Chinese Traditional (Big5)", +DlgDocCharSetCR : "Cyrillic", +DlgDocCharSetGR : "Greek", +DlgDocCharSetJP : "Japanese", +DlgDocCharSetKR : "Korean", +DlgDocCharSetTR : "Turkish", +DlgDocCharSetUN : "Unicode (UTF-8)", +DlgDocCharSetWE : "Western European", +DlgDocCharSetOther : "他の文字セット符号化", + +DlgDocDocType : "文書タイプヘッダー", +DlgDocDocTypeOther : "その他文書タイプヘッダー", +DlgDocIncXHTML : "XHTML宣言をインクルード", +DlgDocBgColor : "背景色", +DlgDocBgImage : "背景画像 URL", +DlgDocBgNoScroll : "スクロールしない背景", +DlgDocCText : "テキスト", +DlgDocCLink : "リンク", +DlgDocCVisited : "アクセス済みリンク", +DlgDocCActive : "アクセス中リンク", +DlgDocMargins : "ページ・マージン", +DlgDocMaTop : "上部", +DlgDocMaLeft : "左", +DlgDocMaRight : "右", +DlgDocMaBottom : "下部", +DlgDocMeIndex : "文書のキーワード(カンマ区切り)", +DlgDocMeDescr : "文書の概要", +DlgDocMeAuthor : "文書の作者", +DlgDocMeCopy : "文書の著作権", +DlgDocPreview : "プレビュー", + +// Templates Dialog +Templates : "テンプレート(雛形)", +DlgTemplatesTitle : "テンプレート内容", +DlgTemplatesSelMsg : "エディターで使用するテンプレートを選択してください。
(現在のエディタの内容は失われます):", +DlgTemplatesLoading : "テンプレート一覧読み込み中. しばらくお待ちください...", +DlgTemplatesNoTpl : "(テンプレートが定義されていません)", +DlgTemplatesReplace : "現在のエディタの内容と置換えをします", + +// About Dialog +DlgAboutAboutTab : "バージョン情報", +DlgAboutBrowserInfoTab : "ブラウザ情報", +DlgAboutLicenseTab : "ライセンス", +DlgAboutVersion : "バージョン", +DlgAboutInfo : "より詳しい情報はこちらで", + +// Div Dialog +DlgDivGeneralTab : "全般", +DlgDivAdvancedTab : "高度な設定", +DlgDivStyle : "スタイル", +DlgDivInlineStyle : "インラインスタイル", + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/km.js b/fckeditor/editor/lang/km.js new file mode 100644 index 0000000..40c3eeb --- /dev/null +++ b/fckeditor/editor/lang/km.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * Khmer language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "បង្រួមរបាឧបរកណ៍", +ToolbarExpand : "ពង្រីករបាឧបរណ៍", + +// Toolbar Items and Context Menu +Save : "រក្សាទុក", +NewPage : "ទំព័រថ្មី", +Preview : "មើលសាកល្បង", +Cut : "កាត់យក", +Copy : "ចំលងយក", +Paste : "ចំលងដាក់", +PasteText : "ចំលងដាក់ជាអត្ថបទធម្មតា", +PasteWord : "ចំលងដាក់ពី Word", +Print : "បោះពុម្ភ", +SelectAll : "ជ្រើសរើសទាំងអស់", +RemoveFormat : "លប់ចោល ការរចនា", +InsertLinkLbl : "ឈ្នាប់", +InsertLink : "បន្ថែម/កែប្រែ ឈ្នាប់", +RemoveLink : "លប់ឈ្នាប់", +VisitLink : "Open Link", //MISSING +Anchor : "បន្ថែម/កែប្រែ យុថ្កា", +AnchorDelete : "Remove Anchor", //MISSING +InsertImageLbl : "រូបភាព", +InsertImage : "បន្ថែម/កែប្រែ រូបភាព", +InsertFlashLbl : "Flash", +InsertFlash : "បន្ថែម/កែប្រែ Flash", +InsertTableLbl : "តារាង", +InsertTable : "បន្ថែម/កែប្រែ តារាង", +InsertLineLbl : "បន្ទាត់", +InsertLine : "បន្ថែមបន្ទាត់ផ្តេក", +InsertSpecialCharLbl: "អក្សរពិសេស", +InsertSpecialChar : "បន្ថែមអក្សរពិសេស", +InsertSmileyLbl : "រូបភាព", +InsertSmiley : "បន្ថែម រូបភាព", +About : "អំពី FCKeditor", +Bold : "អក្សរដិតធំ", +Italic : "អក្សរផ្តេក", +Underline : "ដិតបន្ទាត់ពីក្រោមអក្សរ", +StrikeThrough : "ដិតបន្ទាត់ពាក់កណ្តាលអក្សរ", +Subscript : "អក្សរតូចក្រោម", +Superscript : "អក្សរតូចលើ", +LeftJustify : "តំរឹមឆ្វេង", +CenterJustify : "តំរឹមកណ្តាល", +RightJustify : "តំរឹមស្តាំ", +BlockJustify : "តំរឹមសងខាង", +DecreaseIndent : "បន្ថយការចូលបន្ទាត់", +IncreaseIndent : "បន្ថែមការចូលបន្ទាត់", +Blockquote : "Blockquote", //MISSING +CreateDiv : "Create Div Container", //MISSING +EditDiv : "Edit Div Container", //MISSING +DeleteDiv : "Remove Div Container", //MISSING +Undo : "សារឡើងវិញ", +Redo : "ធ្វើឡើងវិញ", +NumberedListLbl : "បញ្ជីជាអក្សរ", +NumberedList : "បន្ថែម/លប់ បញ្ជីជាអក្សរ", +BulletedListLbl : "បញ្ជីជារង្វង់មូល", +BulletedList : "បន្ថែម/លប់ បញ្ជីជារង្វង់មូល", +ShowTableBorders : "បង្ហាញស៊ុមតារាង", +ShowDetails : "បង្ហាញពិស្តារ", +Style : "ម៉ូត", +FontFormat : "រចនា", +Font : "ហ្វុង", +FontSize : "ទំហំ", +TextColor : "ពណ៌អក្សរ", +BGColor : "ពណ៌ផ្ទៃខាងក្រោយ", +Source : "កូត", +Find : "ស្វែងរក", +Replace : "ជំនួស", +SpellCheck : "ពិនិត្យអក្ខរាវិរុទ្ធ", +UniversalKeyboard : "ក្តារពុម្ភអក្សរសកល", +PageBreakLbl : "ការផ្តាច់ទំព័រ", +PageBreak : "បន្ថែម ការផ្តាច់ទំព័រ", + +Form : "បែបបទ", +Checkbox : "ប្រអប់ជ្រើសរើស", +RadioButton : "ប៉ូតុនរង្វង់មូល", +TextField : "ជួរសរសេរអត្ថបទ", +Textarea : "តំបន់សរសេរអត្ថបទ", +HiddenField : "ជួរលាក់", +Button : "ប៉ូតុន", +SelectionField : "ជួរជ្រើសរើស", +ImageButton : "ប៉ូតុនរូបភាព", + +FitWindow : "Maximize the editor size", //MISSING +ShowBlocks : "Show Blocks", //MISSING + +// Context Menu +EditLink : "កែប្រែឈ្នាប់", +CellCM : "Cell", //MISSING +RowCM : "Row", //MISSING +ColumnCM : "Column", //MISSING +InsertRowAfter : "Insert Row After", //MISSING +InsertRowBefore : "Insert Row Before", //MISSING +DeleteRows : "លប់ជួរផ្តេក", +InsertColumnAfter : "Insert Column After", //MISSING +InsertColumnBefore : "Insert Column Before", //MISSING +DeleteColumns : "លប់ជួរឈរ", +InsertCellAfter : "Insert Cell After", //MISSING +InsertCellBefore : "Insert Cell Before", //MISSING +DeleteCells : "លប់សែល", +MergeCells : "បញ្ជូលសែល", +MergeRight : "Merge Right", //MISSING +MergeDown : "Merge Down", //MISSING +HorizontalSplitCell : "Split Cell Horizontally", //MISSING +VerticalSplitCell : "Split Cell Vertically", //MISSING +TableDelete : "លប់តារាង", +CellProperties : "ការកំណត់សែល", +TableProperties : "ការកំណត់តារាង", +ImageProperties : "ការកំណត់រូបភាព", +FlashProperties : "ការកំណត់ Flash", + +AnchorProp : "ការកំណត់យុថ្កា", +ButtonProp : "ការកំណត់ ប៉ូតុន", +CheckboxProp : "ការកំណត់ប្រអប់ជ្រើសរើស", +HiddenFieldProp : "ការកំណត់ជួរលាក់", +RadioButtonProp : "ការកំណត់ប៉ូតុនរង្វង់", +ImageButtonProp : "ការកំណត់ប៉ូតុនរូបភាព", +TextFieldProp : "ការកំណត់ជួរអត្ថបទ", +SelectionFieldProp : "ការកំណត់ជួរជ្រើសរើស", +TextareaProp : "ការកំណត់កន្លែងសរសេរអត្ថបទ", +FormProp : "ការកំណត់បែបបទ", + +FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6;Normal (DIV)", + +// Alerts and Messages +ProcessingXHTML : "កំពុងដំណើរការ XHTML ។ សូមរងចាំ...", +Done : "ចប់រួចរាល់", +PasteWordConfirm : "អត្ថបទដែលលោកអ្នកបំរុងចំលងដាក់ ហាក់បីដូចជាត្រូវចំលងមកពីកម្មវិធី​Word​។ តើលោកអ្នកចង់សំអាតមុនចំលងអត្ថបទដាក់ទេ?", +NotCompatiblePaste : "ពាក្យបញ្ជានេះប្រើបានតែជាមួយ Internet Explorer កំរិត 5.5 រឺ លើសនេះ ។ តើលោកអ្នកចង់ចំលងដាក់ដោយមិនចាំបាច់សំអាតទេ?", +UnknownToolbarItem : "វត្ថុលើរបាឧបរកណ៍ មិនស្គាល់ \"%1\"", +UnknownCommand : "ឈ្មោះពាក្យបញ្ជា មិនស្គាល់ \"%1\"", +NotImplemented : "ពាក្យបញ្ជា មិនបានអនុវត្ត", +UnknownToolbarSet : "របាឧបរកណ៍ \"%1\" ពុំមាន ។", +NoActiveX : "ការកំណត់សុវត្ថភាពរបស់កម្មវិធីរុករករបស់លោកអ្នក នេះ​អាចធ្វើអោយលោកអ្នកមិនអាចប្រើមុខងារខ្លះរបស់កម្មវិធីតាក់តែងអត្ថបទនេះ ។ លោកអ្នកត្រូវកំណត់អោយ \"ActiveX និង​កម្មវិធីជំនួយក្នុង (plug-ins)\" អោយដំណើរការ ។ លោកអ្នកអាចជួបប្រទះនឹង បញ្ហា ព្រមជាមួយនឹងការបាត់បង់មុខងារណាមួយរបស់កម្មវិធីតាក់តែងអត្ថបទនេះ ។", +BrowseServerBlocked : "The resources browser could not be opened. Make sure that all popup blockers are disabled.", //MISSING +DialogBlocked : "វីនដូវមិនអាចបើកបានទេ ។ សូមពិនិត្យចំពោះកម្មវិធីបិទ វីនដូវលោត (popup) ថាតើវាដំណើរការរឺទេ ។", +VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING + +// Dialogs +DlgBtnOK : "យល់ព្រម", +DlgBtnCancel : "មិនយល់ព្រម", +DlgBtnClose : "បិទ", +DlgBtnBrowseServer : "មើល", +DlgAdvancedTag : "កំរិតខ្ពស់", +DlgOpOther : "<ផ្សេងទៅត>", +DlgInfoTab : "ពត៌មាន", +DlgAlertUrl : "សូមសរសេរ URL", + +// General Dialogs Labels +DlgGenNotSet : "<មិនមែន>", +DlgGenId : "Id", +DlgGenLangDir : "ទិសដៅភាសា", +DlgGenLangDirLtr : "ពីឆ្វេងទៅស្តាំ(LTR)", +DlgGenLangDirRtl : "ពីស្តាំទៅឆ្វេង(RTL)", +DlgGenLangCode : "លេខកូតភាសា", +DlgGenAccessKey : "ឃី សំរាប់ចូល", +DlgGenName : "ឈ្មោះ", +DlgGenTabIndex : "លេខ Tab", +DlgGenLongDescr : "អធិប្បាយ URL វែង", +DlgGenClass : "Stylesheet Classes", +DlgGenTitle : "ចំណងជើង ប្រឹក្សា", +DlgGenContType : "ប្រភេទអត្ថបទ ប្រឹក្សា", +DlgGenLinkCharset : "លេខកូតអក្សររបស់ឈ្នាប់", +DlgGenStyle : "ម៉ូត", + +// Image Dialog +DlgImgTitle : "ការកំណត់រូបភាព", +DlgImgInfoTab : "ពត៌មានអំពីរូបភាព", +DlgImgBtnUpload : "បញ្ជូនទៅកាន់ម៉ាស៊ីនផ្តល់សេវា", +DlgImgURL : "URL", +DlgImgUpload : "ទាញយក", +DlgImgAlt : "អត្ថបទជំនួស", +DlgImgWidth : "ទទឹង", +DlgImgHeight : "កំពស់", +DlgImgLockRatio : "អត្រាឡុក", +DlgBtnResetSize : "កំណត់ទំហំឡើងវិញ", +DlgImgBorder : "ស៊ុម", +DlgImgHSpace : "គំលាតទទឹង", +DlgImgVSpace : "គំលាតបណ្តោយ", +DlgImgAlign : "កំណត់ទីតាំង", +DlgImgAlignLeft : "ខាងឆ្វង", +DlgImgAlignAbsBottom: "Abs Bottom", //MISSING +DlgImgAlignAbsMiddle: "Abs Middle", //MISSING +DlgImgAlignBaseline : "បន្ទាត់ជាមូលដ្ឋាន", +DlgImgAlignBottom : "ខាងក្រោម", +DlgImgAlignMiddle : "កណ្តាល", +DlgImgAlignRight : "ខាងស្តាំ", +DlgImgAlignTextTop : "លើអត្ថបទ", +DlgImgAlignTop : "ខាងលើ", +DlgImgPreview : "មើលសាកល្បង", +DlgImgAlertUrl : "សូមសរសេរងាស័យដ្ឋានរបស់រូបភាព", +DlgImgLinkTab : "ឈ្នាប់", + +// Flash Dialog +DlgFlashTitle : "ការកំណត់ Flash", +DlgFlashChkPlay : "លេងដោយស្វ័យប្រវត្ត", +DlgFlashChkLoop : "ចំនួនដង", +DlgFlashChkMenu : "បង្ហាញ មឺនុយរបស់ Flash", +DlgFlashScale : "ទំហំ", +DlgFlashScaleAll : "បង្ហាញទាំងអស់", +DlgFlashScaleNoBorder : "មិនបង្ហាញស៊ុម", +DlgFlashScaleFit : "ត្រូវល្មម", + +// Link Dialog +DlgLnkWindowTitle : "ឈ្នាប់", +DlgLnkInfoTab : "ពត៌មានអំពីឈ្នាប់", +DlgLnkTargetTab : "គោលដៅ", + +DlgLnkType : "ប្រភេទឈ្នាប់", +DlgLnkTypeURL : "URL", +DlgLnkTypeAnchor : "យុថ្កានៅក្នុងទំព័រនេះ", +DlgLnkTypeEMail : "អ៊ីមែល", +DlgLnkProto : "ប្រូតូកូល", +DlgLnkProtoOther : "<ផ្សេងទៀត>", +DlgLnkURL : "URL", +DlgLnkAnchorSel : "ជ្រើសរើសយុថ្កា", +DlgLnkAnchorByName : "តាមឈ្មោះរបស់យុថ្កា", +DlgLnkAnchorById : "តាម Id", +DlgLnkNoAnchors : "(No anchors available in the document)", //MISSING +DlgLnkEMail : "អ៊ីមែល", +DlgLnkEMailSubject : "ចំណងជើងអត្ថបទ", +DlgLnkEMailBody : "អត្ថបទ", +DlgLnkUpload : "ទាញយក", +DlgLnkBtnUpload : "ទាញយក", + +DlgLnkTarget : "គោលដៅ", +DlgLnkTargetFrame : "<ហ្វ្រេម>", +DlgLnkTargetPopup : "<វីនដូវ លោត>", +DlgLnkTargetBlank : "វីនដូវថ្មី (_blank)", +DlgLnkTargetParent : "វីនដូវមេ (_parent)", +DlgLnkTargetSelf : "វីនដូវដដែល (_self)", +DlgLnkTargetTop : "វីនដូវនៅលើគេ(_top)", +DlgLnkTargetFrameName : "ឈ្មោះហ្រ្វេមដែលជាគោលដៅ", +DlgLnkPopWinName : "ឈ្មោះវីនដូវលោត", +DlgLnkPopWinFeat : "លក្ខណះរបស់វីនដូលលោត", +DlgLnkPopResize : "ទំហំអាចផ្លាស់ប្តូរ", +DlgLnkPopLocation : "របា ទីតាំង", +DlgLnkPopMenu : "របា មឺនុយ", +DlgLnkPopScroll : "របា ទាញ", +DlgLnkPopStatus : "របា ពត៌មាន", +DlgLnkPopToolbar : "របា ឩបករណ៍", +DlgLnkPopFullScrn : "អេក្រុងពេញ(IE)", +DlgLnkPopDependent : "អាស្រ័យលើ (Netscape)", +DlgLnkPopWidth : "ទទឹង", +DlgLnkPopHeight : "កំពស់", +DlgLnkPopLeft : "ទីតាំងខាងឆ្វេង", +DlgLnkPopTop : "ទីតាំងខាងលើ", + +DlnLnkMsgNoUrl : "សូមសរសេរ អាស័យដ្ឋាន URL", +DlnLnkMsgNoEMail : "សូមសរសេរ អាស័យដ្ឋាន អ៊ីមែល", +DlnLnkMsgNoAnchor : "សូមជ្រើសរើស យុថ្កា", +DlnLnkMsgInvPopName : "The popup name must begin with an alphabetic character and must not contain spaces", //MISSING + +// Color Dialog +DlgColorTitle : "ជ្រើសរើស ពណ៌", +DlgColorBtnClear : "លប់", +DlgColorHighlight : "ផាត់ពណ៌", +DlgColorSelected : "បានជ្រើសរើស", + +// Smiley Dialog +DlgSmileyTitle : "បញ្ជូលរូបភាព", + +// Special Character Dialog +DlgSpecialCharTitle : "តូអក្សរពិសេស", + +// Table Dialog +DlgTableTitle : "ការកំណត់ តារាង", +DlgTableRows : "ជួរផ្តេក", +DlgTableColumns : "ជួរឈរ", +DlgTableBorder : "ទំហំស៊ុម", +DlgTableAlign : "ការកំណត់ទីតាំង", +DlgTableAlignNotSet : "<មិនកំណត់>", +DlgTableAlignLeft : "ខាងឆ្វេង", +DlgTableAlignCenter : "កណ្តាល", +DlgTableAlignRight : "ខាងស្តាំ", +DlgTableWidth : "ទទឹង", +DlgTableWidthPx : "ភីកសែល", +DlgTableWidthPc : "ភាគរយ", +DlgTableHeight : "កំពស់", +DlgTableCellSpace : "គំលាតសែល", +DlgTableCellPad : "គែមសែល", +DlgTableCaption : "ចំណងជើង", +DlgTableSummary : "សេចក្តីសង្ខេប", +DlgTableHeaders : "Headers", //MISSING +DlgTableHeadersNone : "None", //MISSING +DlgTableHeadersColumn : "First column", //MISSING +DlgTableHeadersRow : "First Row", //MISSING +DlgTableHeadersBoth : "Both", //MISSING + +// Table Cell Dialog +DlgCellTitle : "ការកំណត់ សែល", +DlgCellWidth : "ទទឹង", +DlgCellWidthPx : "ភីកសែល", +DlgCellWidthPc : "ភាគរយ", +DlgCellHeight : "កំពស់", +DlgCellWordWrap : "បង្ហាញអត្ថបទទាំងអស់", +DlgCellWordWrapNotSet : "<មិនកំណត់>", +DlgCellWordWrapYes : "បាទ(ចា)", +DlgCellWordWrapNo : "ទេ", +DlgCellHorAlign : "តំរឹមផ្តេក", +DlgCellHorAlignNotSet : "<មិនកំណត់>", +DlgCellHorAlignLeft : "ខាងឆ្វេង", +DlgCellHorAlignCenter : "កណ្តាល", +DlgCellHorAlignRight: "Right", //MISSING +DlgCellVerAlign : "តំរឹមឈរ", +DlgCellVerAlignNotSet : "<មិនកណត់>", +DlgCellVerAlignTop : "ខាងលើ", +DlgCellVerAlignMiddle : "កណ្តាល", +DlgCellVerAlignBottom : "ខាងក្រោម", +DlgCellVerAlignBaseline : "បន្ទាត់ជាមូលដ្ឋាន", +DlgCellType : "Cell Type", //MISSING +DlgCellTypeData : "Data", //MISSING +DlgCellTypeHeader : "Header", //MISSING +DlgCellRowSpan : "បញ្ជូលជួរផ្តេក", +DlgCellCollSpan : "បញ្ជូលជួរឈរ", +DlgCellBackColor : "ពណ៌ផ្នែកខាងក្រោម", +DlgCellBorderColor : "ពណ៌ស៊ុម", +DlgCellBtnSelect : "ជ្រើសរើស...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "Find and Replace", //MISSING + +// Find Dialog +DlgFindTitle : "ស្វែងរក", +DlgFindFindBtn : "ស្វែងរក", +DlgFindNotFoundMsg : "ពាក្យនេះ រកមិនឃើញទេ ។", + +// Replace Dialog +DlgReplaceTitle : "ជំនួស", +DlgReplaceFindLbl : "ស្វែងរកអ្វី:", +DlgReplaceReplaceLbl : "ជំនួសជាមួយ:", +DlgReplaceCaseChk : "ករណ៉ត្រូវរក", +DlgReplaceReplaceBtn : "ជំនួស", +DlgReplaceReplAllBtn : "ជំនួសទាំងអស់", +DlgReplaceWordChk : "ត្រូវពាក្យទាំងអស់", + +// Paste Operations / Dialog +PasteErrorCut : "ការកំណត់សុវត្ថភាពរបស់កម្មវិធីរុករករបស់លោកអ្នក នេះ​មិនអាចធ្វើកម្មវិធីតាក់តែងអត្ថបទ កាត់អត្ថបទយកដោយស្វ័យប្រវត្តបានឡើយ ។ សូមប្រើប្រាស់បន្សំ ឃីដូចនេះ (Ctrl+X) ។", +PasteErrorCopy : "ការកំណត់សុវត្ថភាពរបស់កម្មវិធីរុករករបស់លោកអ្នក នេះ​មិនអាចធ្វើកម្មវិធីតាក់តែងអត្ថបទ ចំលងអត្ថបទយកដោយស្វ័យប្រវត្តបានឡើយ ។ សូមប្រើប្រាស់បន្សំ ឃីដូចនេះ (Ctrl+C)។", + +PasteAsText : "ចំលងដាក់អត្ថបទធម្មតា", +PasteFromWord : "ចំលងពាក្យពីកម្មវិធី Word", + +DlgPasteMsg2 : "សូមចំលងអត្ថបទទៅដាក់ក្នុងប្រអប់ដូចខាងក្រោមដោយប្រើប្រាស់ ឃី ​(Ctrl+V) ហើយចុច OK ។", +DlgPasteSec : "Because of your browser security settings, the editor is not able to access your clipboard data directly. You are required to paste it again in this window.", //MISSING +DlgPasteIgnoreFont : "មិនគិតអំពីប្រភេទពុម្ភអក្សរ", +DlgPasteRemoveStyles : "លប់ម៉ូត", + +// Color Picker +ColorAutomatic : "ស្វ័យប្រវត្ត", +ColorMoreColors : "ពណ៌ផ្សេងទៀត..", + +// Document Properties +DocProps : "ការកំណត់ ឯកសារ", + +// Anchor Dialog +DlgAnchorTitle : "ការកំណត់ចំណងជើងយុទ្ធថ្កា", +DlgAnchorName : "ឈ្មោះយុទ្ធថ្កា", +DlgAnchorErrorName : "សូមសរសេរ ឈ្មោះយុទ្ធថ្កា", + +// Speller Pages Dialog +DlgSpellNotInDic : "គ្មានក្នុងវចនានុក្រម", +DlgSpellChangeTo : "ផ្លាស់ប្តូរទៅ", +DlgSpellBtnIgnore : "មិនផ្លាស់ប្តូរ", +DlgSpellBtnIgnoreAll : "មិនផ្លាស់ប្តូរ ទាំងអស់", +DlgSpellBtnReplace : "ជំនួស", +DlgSpellBtnReplaceAll : "ជំនួសទាំងអស់", +DlgSpellBtnUndo : "សារឡើងវិញ", +DlgSpellNoSuggestions : "- គ្មានសំណើរ -", +DlgSpellProgress : "កំពុងពិនិត្យអក្ខរាវិរុទ្ធ...", +DlgSpellNoMispell : "ការពិនិត្យអក្ខរាវិរុទ្ធបានចប់: គ្មានកំហុស", +DlgSpellNoChanges : "ការពិនិត្យអក្ខរាវិរុទ្ធបានចប់: ពុំមានផ្លាស់ប្តូរ", +DlgSpellOneChange : "ការពិនិត្យអក្ខរាវិរុទ្ធបានចប់: ពាក្យមួយត្រូចបានផ្លាស់ប្តូរ", +DlgSpellManyChanges : "ការពិនិត្យអក្ខរាវិរុទ្ធបានចប់: %1 ពាក្យបានផ្លាស់ប្តូរ", + +IeSpellDownload : "ពុំមានកម្មវិធីពិនិត្យអក្ខរាវិរុទ្ធ ។ តើចង់ទាញយកពីណា?", + +// Button Dialog +DlgButtonText : "អត្ថបទ(តំលៃ)", +DlgButtonType : "ប្រភេទ", +DlgButtonTypeBtn : "Button", //MISSING +DlgButtonTypeSbm : "Submit", //MISSING +DlgButtonTypeRst : "Reset", //MISSING + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "ឈ្មោះ", +DlgCheckboxValue : "តំលៃ", +DlgCheckboxSelected : "បានជ្រើសរើស", + +// Form Dialog +DlgFormName : "ឈ្មោះ", +DlgFormAction : "សកម្មភាព", +DlgFormMethod : "វិធី", + +// Select Field Dialog +DlgSelectName : "ឈ្មោះ", +DlgSelectValue : "តំលៃ", +DlgSelectSize : "ទំហំ", +DlgSelectLines : "បន្ទាត់", +DlgSelectChkMulti : "អនុញ្ញាតអោយជ្រើសរើសច្រើន", +DlgSelectOpAvail : "ការកំណត់ជ្រើសរើស ដែលអាចកំណត់បាន", +DlgSelectOpText : "ពាក្យ", +DlgSelectOpValue : "តំលៃ", +DlgSelectBtnAdd : "បន្ថែម", +DlgSelectBtnModify : "ផ្លាស់ប្តូរ", +DlgSelectBtnUp : "លើ", +DlgSelectBtnDown : "ក្រោម", +DlgSelectBtnSetValue : "Set as selected value", //MISSING +DlgSelectBtnDelete : "លប់", + +// Textarea Dialog +DlgTextareaName : "ឈ្មោះ", +DlgTextareaCols : "ជូរឈរ", +DlgTextareaRows : "ជូរផ្តេក", + +// Text Field Dialog +DlgTextName : "ឈ្មោះ", +DlgTextValue : "តំលៃ", +DlgTextCharWidth : "ទទឹង អក្សរ", +DlgTextMaxChars : "អក្សរអតិបរិមា", +DlgTextType : "ប្រភេទ", +DlgTextTypeText : "ពាក្យ", +DlgTextTypePass : "ពាក្យសំងាត់", + +// Hidden Field Dialog +DlgHiddenName : "ឈ្មោះ", +DlgHiddenValue : "តំលៃ", + +// Bulleted List Dialog +BulletedListProp : "កំណត់បញ្ជីរង្វង់", +NumberedListProp : "កំណត់បញ្េជីលេខ", +DlgLstStart : "Start", //MISSING +DlgLstType : "ប្រភេទ", +DlgLstTypeCircle : "រង្វង់", +DlgLstTypeDisc : "Disc", +DlgLstTypeSquare : "ការេ", +DlgLstTypeNumbers : "លេខ(1, 2, 3)", +DlgLstTypeLCase : "អក្សរតូច(a, b, c)", +DlgLstTypeUCase : "អក្សរធំ(A, B, C)", +DlgLstTypeSRoman : "អក្សរឡាតាំងតូច(i, ii, iii)", +DlgLstTypeLRoman : "អក្សរឡាតាំងធំ(I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "ទូទៅ", +DlgDocBackTab : "ផ្នែកខាងក្រោយ", +DlgDocColorsTab : "ទំព័រ​និង ស៊ុម", +DlgDocMetaTab : "ទិន្នន័យមេ", + +DlgDocPageTitle : "ចំណងជើងទំព័រ", +DlgDocLangDir : "ទិសដៅសរសេរភាសា", +DlgDocLangDirLTR : "ពីឆ្វេងទៅស្ដាំ(LTR)", +DlgDocLangDirRTL : "ពីស្ដាំទៅឆ្វេង(RTL)", +DlgDocLangCode : "លេខកូតភាសា", +DlgDocCharSet : "កំណត់លេខកូតភាសា", +DlgDocCharSetCE : "Central European", //MISSING +DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING +DlgDocCharSetCR : "Cyrillic", //MISSING +DlgDocCharSetGR : "Greek", //MISSING +DlgDocCharSetJP : "Japanese", //MISSING +DlgDocCharSetKR : "Korean", //MISSING +DlgDocCharSetTR : "Turkish", //MISSING +DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING +DlgDocCharSetWE : "Western European", //MISSING +DlgDocCharSetOther : "កំណត់លេខកូតភាសាផ្សេងទៀត", + +DlgDocDocType : "ប្រភេទក្បាលទំព័រ", +DlgDocDocTypeOther : "ប្រភេទក្បាលទំព័រផ្សេងទៀត", +DlgDocIncXHTML : "បញ្ជូល XHTML", +DlgDocBgColor : "ពណ៌ខាងក្រោម", +DlgDocBgImage : "URL របស់រូបភាពខាងក្រោម", +DlgDocBgNoScroll : "ទំព័រក្រោមមិនប្តូរ", +DlgDocCText : "អត្តបទ", +DlgDocCLink : "ឈ្នាប់", +DlgDocCVisited : "ឈ្នាប់មើលហើយ", +DlgDocCActive : "ឈ្នាប់កំពុងមើល", +DlgDocMargins : "ស៊ុមទំព័រ", +DlgDocMaTop : "លើ", +DlgDocMaLeft : "ឆ្វេង", +DlgDocMaRight : "ស្ដាំ", +DlgDocMaBottom : "ក្រោម", +DlgDocMeIndex : "ពាក្យនៅក្នុងឯកសារ (ផ្តាច់ពីគ្នាដោយក្បៀស)", +DlgDocMeDescr : "សេចក្តីអត្ថាធិប្បាយអំពីឯកសារ", +DlgDocMeAuthor : "អ្នកនិពន្ធ", +DlgDocMeCopy : "រក្សាសិទ្ធិ៏", +DlgDocPreview : "មើលសាកល្បង", + +// Templates Dialog +Templates : "ឯកសារគំរូ", +DlgTemplatesTitle : "ឯកសារគំរូ របស់អត្ថន័យ", +DlgTemplatesSelMsg : "សូមជ្រើសរើសឯកសារគំរូ ដើម្បីបើកនៅក្នុងកម្មវិធីតាក់តែងអត្ថបទ
(អត្ថបទនឹងបាត់បង់):", +DlgTemplatesLoading : "កំពុងអានបញ្ជីឯកសារគំរូ ។ សូមរងចាំ...", +DlgTemplatesNoTpl : "(ពុំមានឯកសារគំរូត្រូវបានកំណត់)", +DlgTemplatesReplace : "Replace actual contents", //MISSING + +// About Dialog +DlgAboutAboutTab : "អំពី", +DlgAboutBrowserInfoTab : "ព៌តមានកម្មវិធីរុករក", +DlgAboutLicenseTab : "License", //MISSING +DlgAboutVersion : "ជំនាន់", +DlgAboutInfo : "សំរាប់ព៌តមានផ្សេងទៀត សូមទាក់ទង", + +// Div Dialog +DlgDivGeneralTab : "General", //MISSING +DlgDivAdvancedTab : "Advanced", //MISSING +DlgDivStyle : "Style", //MISSING +DlgDivInlineStyle : "Inline Style", //MISSING + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/ko.js b/fckeditor/editor/lang/ko.js new file mode 100644 index 0000000..19c33e6 --- /dev/null +++ b/fckeditor/editor/lang/ko.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * Korean language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "툴바 감추기", +ToolbarExpand : "툴바 보이기", + +// Toolbar Items and Context Menu +Save : "저장하기", +NewPage : "새 문서", +Preview : "미리보기", +Cut : "잘라내기", +Copy : "복사하기", +Paste : "붙여넣기", +PasteText : "텍스트로 붙여넣기", +PasteWord : "MS Word 형식에서 붙여넣기", +Print : "인쇄하기", +SelectAll : "전체선택", +RemoveFormat : "포맷 지우기", +InsertLinkLbl : "링크", +InsertLink : "링크 삽입/변경", +RemoveLink : "링크 삭제", +VisitLink : "Open Link", //MISSING +Anchor : "책갈피 삽입/변경", +AnchorDelete : "Remove Anchor", //MISSING +InsertImageLbl : "이미지", +InsertImage : "이미지 삽입/변경", +InsertFlashLbl : "플래쉬", +InsertFlash : "플래쉬 삽입/변경", +InsertTableLbl : "표", +InsertTable : "표 삽입/변경", +InsertLineLbl : "수평선", +InsertLine : "수평선 삽입", +InsertSpecialCharLbl: "특수문자 삽입", +InsertSpecialChar : "특수문자 삽입", +InsertSmileyLbl : "아이콘", +InsertSmiley : "아이콘 삽입", +About : "FCKeditor에 대하여", +Bold : "진하게", +Italic : "이텔릭", +Underline : "밑줄", +StrikeThrough : "취소선", +Subscript : "아래 첨자", +Superscript : "위 첨자", +LeftJustify : "왼쪽 정렬", +CenterJustify : "가운데 정렬", +RightJustify : "오른쪽 정렬", +BlockJustify : "양쪽 맞춤", +DecreaseIndent : "내어쓰기", +IncreaseIndent : "들여쓰기", +Blockquote : "Blockquote", //MISSING +CreateDiv : "Create Div Container", //MISSING +EditDiv : "Edit Div Container", //MISSING +DeleteDiv : "Remove Div Container", //MISSING +Undo : "취소", +Redo : "재실행", +NumberedListLbl : "순서있는 목록", +NumberedList : "순서있는 목록", +BulletedListLbl : "순서없는 목록", +BulletedList : "순서없는 목록", +ShowTableBorders : "표 테두리 보기", +ShowDetails : "문서기호 보기", +Style : "스타일", +FontFormat : "포맷", +Font : "폰트", +FontSize : "글자 크기", +TextColor : "글자 색상", +BGColor : "배경 색상", +Source : "소스", +Find : "찾기", +Replace : "바꾸기", +SpellCheck : "철자검사", +UniversalKeyboard : "다국어 입력기", +PageBreakLbl : "Page Break", //MISSING +PageBreak : "Insert Page Break", //MISSING + +Form : "폼", +Checkbox : "체크박스", +RadioButton : "라디오버튼", +TextField : "입력필드", +Textarea : "입력영역", +HiddenField : "숨김필드", +Button : "버튼", +SelectionField : "펼침목록", +ImageButton : "이미지버튼", + +FitWindow : "에디터 최대화", +ShowBlocks : "Show Blocks", //MISSING + +// Context Menu +EditLink : "링크 수정", +CellCM : "셀/칸(Cell)", +RowCM : "행(Row)", +ColumnCM : "열(Column)", +InsertRowAfter : "뒤에 행 삽입", +InsertRowBefore : "앞에 행 삽입", +DeleteRows : "가로줄 삭제", +InsertColumnAfter : "뒤에 열 삽입", +InsertColumnBefore : "앞에 열 삽입", +DeleteColumns : "세로줄 삭제", +InsertCellAfter : "뒤에 셀/칸 삽입", +InsertCellBefore : "앞에 셀/칸 삽입", +DeleteCells : "셀 삭제", +MergeCells : "셀 합치기", +MergeRight : "오른쪽 뭉치기", +MergeDown : "왼쪽 뭉치기", +HorizontalSplitCell : "수평 나누기", +VerticalSplitCell : "수직 나누기", +TableDelete : "표 삭제", +CellProperties : "셀 속성", +TableProperties : "표 속성", +ImageProperties : "이미지 속성", +FlashProperties : "플래쉬 속성", + +AnchorProp : "책갈피 속성", +ButtonProp : "버튼 속성", +CheckboxProp : "체크박스 속성", +HiddenFieldProp : "숨김필드 속성", +RadioButtonProp : "라디오버튼 속성", +ImageButtonProp : "이미지버튼 속성", +TextFieldProp : "입력필드 속성", +SelectionFieldProp : "펼침목록 속성", +TextareaProp : "입력영역 속성", +FormProp : "폼 속성", + +FontFormats : "Normal;Formatted;Address;Heading 1;Heading 2;Heading 3;Heading 4;Heading 5;Heading 6", + +// Alerts and Messages +ProcessingXHTML : "XHTML 처리중. 잠시만 기다려주십시요.", +Done : "완료", +PasteWordConfirm : "붙여넣기 할 텍스트는 MS Word에서 복사한 것입니다. 붙여넣기 전에 MS Word 포멧을 삭제하시겠습니까?", +NotCompatiblePaste : "이 명령은 인터넷익스플로러 5.5 버전 이상에서만 작동합니다. 포멧을 삭제하지 않고 붙여넣기 하시겠습니까?", +UnknownToolbarItem : "알수없는 툴바입니다. : \"%1\"", +UnknownCommand : "알수없는 기능입니다. : \"%1\"", +NotImplemented : "기능이 실행되지 않았습니다.", +UnknownToolbarSet : "툴바 설정이 없습니다. : \"%1\"", +NoActiveX : "브러우저의 보안 설정으로 인해 몇몇 기능의 작동에 장애가 있을 수 있습니다. \"액티브-액스 기능과 플러그 인\" 옵션을 허용하여 주시지 않으면 오류가 발생할 수 있습니다.", +BrowseServerBlocked : "브러우저 요소가 열리지 않습니다. 팝업차단 설정이 꺼져있는지 확인하여 주십시오.", +DialogBlocked : "윈도우 대화창을 열 수 없습니다. 팝업차단 설정이 꺼져있는지 확인하여 주십시오.", +VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING + +// Dialogs +DlgBtnOK : "예", +DlgBtnCancel : "아니오", +DlgBtnClose : "닫기", +DlgBtnBrowseServer : "서버 보기", +DlgAdvancedTag : "자세히", +DlgOpOther : "<기타>", +DlgInfoTab : "정보", +DlgAlertUrl : "URL을 입력하십시요", + +// General Dialogs Labels +DlgGenNotSet : "<설정되지 않음>", +DlgGenId : "ID", +DlgGenLangDir : "쓰기 방향", +DlgGenLangDirLtr : "왼쪽에서 오른쪽 (LTR)", +DlgGenLangDirRtl : "오른쪽에서 왼쪽 (RTL)", +DlgGenLangCode : "언어 코드", +DlgGenAccessKey : "엑세스 키", +DlgGenName : "Name", +DlgGenTabIndex : "탭 순서", +DlgGenLongDescr : "URL 설명", +DlgGenClass : "Stylesheet Classes", +DlgGenTitle : "Advisory Title", +DlgGenContType : "Advisory Content Type", +DlgGenLinkCharset : "Linked Resource Charset", +DlgGenStyle : "Style", + +// Image Dialog +DlgImgTitle : "이미지 설정", +DlgImgInfoTab : "이미지 정보", +DlgImgBtnUpload : "서버로 전송", +DlgImgURL : "URL", +DlgImgUpload : "업로드", +DlgImgAlt : "이미지 설명", +DlgImgWidth : "너비", +DlgImgHeight : "높이", +DlgImgLockRatio : "비율 유지", +DlgBtnResetSize : "원래 크기로", +DlgImgBorder : "테두리", +DlgImgHSpace : "수평여백", +DlgImgVSpace : "수직여백", +DlgImgAlign : "정렬", +DlgImgAlignLeft : "왼쪽", +DlgImgAlignAbsBottom: "줄아래(Abs Bottom)", +DlgImgAlignAbsMiddle: "줄중간(Abs Middle)", +DlgImgAlignBaseline : "기준선", +DlgImgAlignBottom : "아래", +DlgImgAlignMiddle : "중간", +DlgImgAlignRight : "오른쪽", +DlgImgAlignTextTop : "글자상단", +DlgImgAlignTop : "위", +DlgImgPreview : "미리보기", +DlgImgAlertUrl : "이미지 URL을 입력하십시요", +DlgImgLinkTab : "링크", + +// Flash Dialog +DlgFlashTitle : "플래쉬 등록정보", +DlgFlashChkPlay : "자동재생", +DlgFlashChkLoop : "반복", +DlgFlashChkMenu : "플래쉬메뉴 가능", +DlgFlashScale : "영역", +DlgFlashScaleAll : "모두보기", +DlgFlashScaleNoBorder : "경계선없음", +DlgFlashScaleFit : "영역자동조절", + +// Link Dialog +DlgLnkWindowTitle : "링크", +DlgLnkInfoTab : "링크 정보", +DlgLnkTargetTab : "타겟", + +DlgLnkType : "링크 종류", +DlgLnkTypeURL : "URL", +DlgLnkTypeAnchor : "책갈피", +DlgLnkTypeEMail : "이메일", +DlgLnkProto : "프로토콜", +DlgLnkProtoOther : "<기타>", +DlgLnkURL : "URL", +DlgLnkAnchorSel : "책갈피 선택", +DlgLnkAnchorByName : "책갈피 이름", +DlgLnkAnchorById : "책갈피 ID", +DlgLnkNoAnchors : "(문서에 책갈피가 없습니다.)", +DlgLnkEMail : "이메일 주소", +DlgLnkEMailSubject : "제목", +DlgLnkEMailBody : "내용", +DlgLnkUpload : "업로드", +DlgLnkBtnUpload : "서버로 전송", + +DlgLnkTarget : "타겟", +DlgLnkTargetFrame : "<프레임>", +DlgLnkTargetPopup : "<팝업창>", +DlgLnkTargetBlank : "새 창 (_blank)", +DlgLnkTargetParent : "부모 창 (_parent)", +DlgLnkTargetSelf : "현재 창 (_self)", +DlgLnkTargetTop : "최 상위 창 (_top)", +DlgLnkTargetFrameName : "타겟 프레임 이름", +DlgLnkPopWinName : "팝업창 이름", +DlgLnkPopWinFeat : "팝업창 설정", +DlgLnkPopResize : "크기조정", +DlgLnkPopLocation : "주소표시줄", +DlgLnkPopMenu : "메뉴바", +DlgLnkPopScroll : "스크롤바", +DlgLnkPopStatus : "상태바", +DlgLnkPopToolbar : "툴바", +DlgLnkPopFullScrn : "전체화면 (IE)", +DlgLnkPopDependent : "Dependent (Netscape)", +DlgLnkPopWidth : "너비", +DlgLnkPopHeight : "높이", +DlgLnkPopLeft : "왼쪽 위치", +DlgLnkPopTop : "윗쪽 위치", + +DlnLnkMsgNoUrl : "링크 URL을 입력하십시요.", +DlnLnkMsgNoEMail : "이메일주소를 입력하십시요.", +DlnLnkMsgNoAnchor : "책갈피명을 입력하십시요.", +DlnLnkMsgInvPopName : "팝업창의 타이틀은 공백을 허용하지 않습니다.", + +// Color Dialog +DlgColorTitle : "색상 선택", +DlgColorBtnClear : "지우기", +DlgColorHighlight : "현재", +DlgColorSelected : "선택됨", + +// Smiley Dialog +DlgSmileyTitle : "아이콘 삽입", + +// Special Character Dialog +DlgSpecialCharTitle : "특수문자 선택", + +// Table Dialog +DlgTableTitle : "표 설정", +DlgTableRows : "가로줄", +DlgTableColumns : "세로줄", +DlgTableBorder : "테두리 크기", +DlgTableAlign : "정렬", +DlgTableAlignNotSet : "<설정되지 않음>", +DlgTableAlignLeft : "왼쪽", +DlgTableAlignCenter : "가운데", +DlgTableAlignRight : "오른쪽", +DlgTableWidth : "너비", +DlgTableWidthPx : "픽셀", +DlgTableWidthPc : "퍼센트", +DlgTableHeight : "높이", +DlgTableCellSpace : "셀 간격", +DlgTableCellPad : "셀 여백", +DlgTableCaption : "캡션", +DlgTableSummary : "요약", +DlgTableHeaders : "Headers", //MISSING +DlgTableHeadersNone : "None", //MISSING +DlgTableHeadersColumn : "First column", //MISSING +DlgTableHeadersRow : "First Row", //MISSING +DlgTableHeadersBoth : "Both", //MISSING + +// Table Cell Dialog +DlgCellTitle : "셀 설정", +DlgCellWidth : "너비", +DlgCellWidthPx : "픽셀", +DlgCellWidthPc : "퍼센트", +DlgCellHeight : "높이", +DlgCellWordWrap : "워드랩", +DlgCellWordWrapNotSet : "<설정되지 않음>", +DlgCellWordWrapYes : "예", +DlgCellWordWrapNo : "아니오", +DlgCellHorAlign : "수평 정렬", +DlgCellHorAlignNotSet : "<설정되지 않음>", +DlgCellHorAlignLeft : "왼쪽", +DlgCellHorAlignCenter : "가운데", +DlgCellHorAlignRight: "오른쪽", +DlgCellVerAlign : "수직 정렬", +DlgCellVerAlignNotSet : "<설정되지 않음>", +DlgCellVerAlignTop : "위", +DlgCellVerAlignMiddle : "중간", +DlgCellVerAlignBottom : "아래", +DlgCellVerAlignBaseline : "기준선", +DlgCellType : "Cell Type", //MISSING +DlgCellTypeData : "Data", //MISSING +DlgCellTypeHeader : "Header", //MISSING +DlgCellRowSpan : "세로 합치기", +DlgCellCollSpan : "가로 합치기", +DlgCellBackColor : "배경 색상", +DlgCellBorderColor : "테두리 색상", +DlgCellBtnSelect : "선택", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "찾기 & 바꾸기", + +// Find Dialog +DlgFindTitle : "찾기", +DlgFindFindBtn : "찾기", +DlgFindNotFoundMsg : "문자열을 찾을 수 없습니다.", + +// Replace Dialog +DlgReplaceTitle : "바꾸기", +DlgReplaceFindLbl : "찾을 문자열:", +DlgReplaceReplaceLbl : "바꿀 문자열:", +DlgReplaceCaseChk : "대소문자 구분", +DlgReplaceReplaceBtn : "바꾸기", +DlgReplaceReplAllBtn : "모두 바꾸기", +DlgReplaceWordChk : "온전한 단어", + +// Paste Operations / Dialog +PasteErrorCut : "브라우저의 보안설정때문에 잘라내기 기능을 실행할 수 없습니다. 키보드 명령을 사용하십시요. (Ctrl+X).", +PasteErrorCopy : "브라우저의 보안설정때문에 복사하기 기능을 실행할 수 없습니다. 키보드 명령을 사용하십시요. (Ctrl+C).", + +PasteAsText : "텍스트로 붙여넣기", +PasteFromWord : "MS Word 형식에서 붙여넣기", + +DlgPasteMsg2 : "키보드의 (Ctrl+V) 를 이용해서 상자안에 붙여넣고 OK 를 누르세요.", +DlgPasteSec : "브러우저 보안 설정으로 인해, 클립보드의 자료를 직접 접근할 수 없습니다. 이 창에 다시 붙여넣기 하십시오.", +DlgPasteIgnoreFont : "폰트 설정 무시", +DlgPasteRemoveStyles : "스타일 정의 제거", + +// Color Picker +ColorAutomatic : "기본색상", +ColorMoreColors : "색상선택...", + +// Document Properties +DocProps : "문서 속성", + +// Anchor Dialog +DlgAnchorTitle : "책갈피 속성", +DlgAnchorName : "책갈피 이름", +DlgAnchorErrorName : "책갈피 이름을 입력하십시요.", + +// Speller Pages Dialog +DlgSpellNotInDic : "사전에 없는 단어", +DlgSpellChangeTo : "변경할 단어", +DlgSpellBtnIgnore : "건너뜀", +DlgSpellBtnIgnoreAll : "모두 건너뜀", +DlgSpellBtnReplace : "변경", +DlgSpellBtnReplaceAll : "모두 변경", +DlgSpellBtnUndo : "취소", +DlgSpellNoSuggestions : "- 추천단어 없음 -", +DlgSpellProgress : "철자검사를 진행중입니다...", +DlgSpellNoMispell : "철자검사 완료: 잘못된 철자가 없습니다.", +DlgSpellNoChanges : "철자검사 완료: 변경된 단어가 없습니다.", +DlgSpellOneChange : "철자검사 완료: 단어가 변경되었습니다.", +DlgSpellManyChanges : "철자검사 완료: %1 단어가 변경되었습니다.", + +IeSpellDownload : "철자 검사기가 철치되지 않았습니다. 지금 다운로드하시겠습니까?", + +// Button Dialog +DlgButtonText : "버튼글자(값)", +DlgButtonType : "버튼종류", +DlgButtonTypeBtn : "Button", //MISSING +DlgButtonTypeSbm : "Submit", //MISSING +DlgButtonTypeRst : "Reset", //MISSING + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "이름", +DlgCheckboxValue : "값", +DlgCheckboxSelected : "선택됨", + +// Form Dialog +DlgFormName : "폼이름", +DlgFormAction : "실행경로(Action)", +DlgFormMethod : "방법(Method)", + +// Select Field Dialog +DlgSelectName : "이름", +DlgSelectValue : "값", +DlgSelectSize : "세로크기", +DlgSelectLines : "줄", +DlgSelectChkMulti : "여러항목 선택 허용", +DlgSelectOpAvail : "선택옵션", +DlgSelectOpText : "이름", +DlgSelectOpValue : "값", +DlgSelectBtnAdd : "추가", +DlgSelectBtnModify : "변경", +DlgSelectBtnUp : "위로", +DlgSelectBtnDown : "아래로", +DlgSelectBtnSetValue : "선택된것으로 설정", +DlgSelectBtnDelete : "삭제", + +// Textarea Dialog +DlgTextareaName : "이름", +DlgTextareaCols : "칸수", +DlgTextareaRows : "줄수", + +// Text Field Dialog +DlgTextName : "이름", +DlgTextValue : "값", +DlgTextCharWidth : "글자 너비", +DlgTextMaxChars : "최대 글자수", +DlgTextType : "종류", +DlgTextTypeText : "문자열", +DlgTextTypePass : "비밀번호", + +// Hidden Field Dialog +DlgHiddenName : "이름", +DlgHiddenValue : "값", + +// Bulleted List Dialog +BulletedListProp : "순서없는 목록 속성", +NumberedListProp : "순서있는 목록 속성", +DlgLstStart : "Start", //MISSING +DlgLstType : "종류", +DlgLstTypeCircle : "원(Circle)", +DlgLstTypeDisc : "Disc", //MISSING +DlgLstTypeSquare : "네모점(Square)", +DlgLstTypeNumbers : "번호 (1, 2, 3)", +DlgLstTypeLCase : "소문자 (a, b, c)", +DlgLstTypeUCase : "대문자 (A, B, C)", +DlgLstTypeSRoman : "로마자 수문자 (i, ii, iii)", +DlgLstTypeLRoman : "로마자 대문자 (I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "일반", +DlgDocBackTab : "배경", +DlgDocColorsTab : "색상 및 여백", +DlgDocMetaTab : "메타데이터", + +DlgDocPageTitle : "페이지명", +DlgDocLangDir : "문자 쓰기방향", +DlgDocLangDirLTR : "왼쪽에서 오른쪽 (LTR)", +DlgDocLangDirRTL : "오른쪽에서 왼쪽 (RTL)", +DlgDocLangCode : "언어코드", +DlgDocCharSet : "캐릭터셋 인코딩", +DlgDocCharSetCE : "Central European", //MISSING +DlgDocCharSetCT : "Chinese Traditional (Big5)", //MISSING +DlgDocCharSetCR : "Cyrillic", //MISSING +DlgDocCharSetGR : "Greek", //MISSING +DlgDocCharSetJP : "Japanese", //MISSING +DlgDocCharSetKR : "Korean", //MISSING +DlgDocCharSetTR : "Turkish", //MISSING +DlgDocCharSetUN : "Unicode (UTF-8)", //MISSING +DlgDocCharSetWE : "Western European", //MISSING +DlgDocCharSetOther : "다른 캐릭터셋 인코딩", + +DlgDocDocType : "문서 헤드", +DlgDocDocTypeOther : "다른 문서헤드", +DlgDocIncXHTML : "XHTML 문서정의 포함", +DlgDocBgColor : "배경색상", +DlgDocBgImage : "배경이미지 URL", +DlgDocBgNoScroll : "스크롤되지않는 배경", +DlgDocCText : "텍스트", +DlgDocCLink : "링크", +DlgDocCVisited : "방문한 링크(Visited)", +DlgDocCActive : "활성화된 링크(Active)", +DlgDocMargins : "페이지 여백", +DlgDocMaTop : "위", +DlgDocMaLeft : "왼쪽", +DlgDocMaRight : "오른쪽", +DlgDocMaBottom : "아래", +DlgDocMeIndex : "문서 키워드 (콤마로 구분)", +DlgDocMeDescr : "문서 설명", +DlgDocMeAuthor : "작성자", +DlgDocMeCopy : "저작권", +DlgDocPreview : "미리보기", + +// Templates Dialog +Templates : "템플릿", +DlgTemplatesTitle : "내용 템플릿", +DlgTemplatesSelMsg : "에디터에서 사용할 템플릿을 선택하십시요.
(지금까지 작성된 내용은 사라집니다.):", +DlgTemplatesLoading : "템플릿 목록을 불러오는중입니다. 잠시만 기다려주십시요.", +DlgTemplatesNoTpl : "(템플릿이 없습니다.)", +DlgTemplatesReplace : "현재 내용 바꾸기", + +// About Dialog +DlgAboutAboutTab : "About", +DlgAboutBrowserInfoTab : "브라우저 정보", +DlgAboutLicenseTab : "License", //MISSING +DlgAboutVersion : "버전", +DlgAboutInfo : "더 많은 정보를 보시려면 다음 사이트로 가십시오.", + +// Div Dialog +DlgDivGeneralTab : "General", //MISSING +DlgDivAdvancedTab : "Advanced", //MISSING +DlgDivStyle : "Style", //MISSING +DlgDivInlineStyle : "Inline Style", //MISSING + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/lt.js b/fckeditor/editor/lang/lt.js new file mode 100644 index 0000000..50504d5 --- /dev/null +++ b/fckeditor/editor/lang/lt.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * Lithuanian language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "Sutraukti mygtukų juostą", +ToolbarExpand : "Išplėsti mygtukų juostą", + +// Toolbar Items and Context Menu +Save : "Išsaugoti", +NewPage : "Naujas puslapis", +Preview : "Peržiūra", +Cut : "Iškirpti", +Copy : "Kopijuoti", +Paste : "Įdėti", +PasteText : "Įdėti kaip gryną tekstą", +PasteWord : "Įdėti iš Word", +Print : "Spausdinti", +SelectAll : "Pažymėti viską", +RemoveFormat : "Panaikinti formatą", +InsertLinkLbl : "Nuoroda", +InsertLink : "Įterpti/taisyti nuorodą", +RemoveLink : "Panaikinti nuorodą", +VisitLink : "Atidaryti nuorodą", +Anchor : "Įterpti/modifikuoti žymę", +AnchorDelete : "Naikinti žymę", +InsertImageLbl : "Vaizdas", +InsertImage : "Įterpti/taisyti vaizdą", +InsertFlashLbl : "Flash", +InsertFlash : "Įterpti/taisyti Flash", +InsertTableLbl : "Lentelė", +InsertTable : "Įterpti/taisyti lentelę", +InsertLineLbl : "Linija", +InsertLine : "Įterpti horizontalią liniją", +InsertSpecialCharLbl: "Spec. simbolis", +InsertSpecialChar : "Įterpti specialų simbolį", +InsertSmileyLbl : "Veideliai", +InsertSmiley : "Įterpti veidelį", +About : "Apie FCKeditor", +Bold : "Pusjuodis", +Italic : "Kursyvas", +Underline : "Pabrauktas", +StrikeThrough : "Perbrauktas", +Subscript : "Apatinis indeksas", +Superscript : "Viršutinis indeksas", +LeftJustify : "Lygiuoti kairę", +CenterJustify : "Centruoti", +RightJustify : "Lygiuoti dešinę", +BlockJustify : "Lygiuoti abi puses", +DecreaseIndent : "Sumažinti įtrauką", +IncreaseIndent : "Padidinti įtrauką", +Blockquote : "Citata", +CreateDiv : "Sukurti Div elementą", +EditDiv : "Reaguoti Div elementą", +DeleteDiv : "Šalinti Div elementą", +Undo : "Atšaukti", +Redo : "Atstatyti", +NumberedListLbl : "Numeruotas sąrašas", +NumberedList : "Įterpti/Panaikinti numeruotą sąrašą", +BulletedListLbl : "Suženklintas sąrašas", +BulletedList : "Įterpti/Panaikinti suženklintą sąrašą", +ShowTableBorders : "Rodyti lentelės rėmus", +ShowDetails : "Rodyti detales", +Style : "Stilius", +FontFormat : "Šrifto formatas", +Font : "Šriftas", +FontSize : "Šrifto dydis", +TextColor : "Teksto spalva", +BGColor : "Fono spalva", +Source : "Šaltinis", +Find : "Rasti", +Replace : "Pakeisti", +SpellCheck : "Rašybos tikrinimas", +UniversalKeyboard : "Universali klaviatūra", +PageBreakLbl : "Puslapių skirtukas", +PageBreak : "Įterpti puslapių skirtuką", + +Form : "Forma", +Checkbox : "Žymimasis langelis", +RadioButton : "Žymimoji akutė", +TextField : "Teksto laukas", +Textarea : "Teksto sritis", +HiddenField : "Nerodomas laukas", +Button : "Mygtukas", +SelectionField : "Atrankos laukas", +ImageButton : "Vaizdinis mygtukas", + +FitWindow : "Padidinti redaktorių", +ShowBlocks : "Rodyti blokus", + +// Context Menu +EditLink : "Taisyti nuorodą", +CellCM : "Langelis", +RowCM : "Eilutė", +ColumnCM : "Stulpelis", +InsertRowAfter : "Įterpti eilutę po", +InsertRowBefore : "Įterpti eilutę prieš", +DeleteRows : "Šalinti eilutes", +InsertColumnAfter : "Įterpti stulpelį po", +InsertColumnBefore : "Įterpti stulpelį prieš", +DeleteColumns : "Šalinti stulpelius", +InsertCellAfter : "Įterpti langelį po", +InsertCellBefore : "Įterpti langelį prieš", +DeleteCells : "Šalinti langelius", +MergeCells : "Sujungti langelius", +MergeRight : "Sujungti su dešine", +MergeDown : "Sujungti su apačia", +HorizontalSplitCell : "Skaidyti langelį horizontaliai", +VerticalSplitCell : "Skaidyti langelį vertikaliai", +TableDelete : "Šalinti lentelę", +CellProperties : "Langelio savybės", +TableProperties : "Lentelės savybės", +ImageProperties : "Vaizdo savybės", +FlashProperties : "Flash savybės", + +AnchorProp : "Žymės savybės", +ButtonProp : "Mygtuko savybės", +CheckboxProp : "Žymimojo langelio savybės", +HiddenFieldProp : "Nerodomo lauko savybės", +RadioButtonProp : "Žymimosios akutės savybės", +ImageButtonProp : "Vaizdinio mygtuko savybės", +TextFieldProp : "Teksto lauko savybės", +SelectionFieldProp : "Atrankos lauko savybės", +TextareaProp : "Teksto srities savybės", +FormProp : "Formos savybės", + +FontFormats : "Normalus;Formuotas;Kreipinio;Antraštinis 1;Antraštinis 2;Antraštinis 3;Antraštinis 4;Antraštinis 5;Antraštinis 6", + +// Alerts and Messages +ProcessingXHTML : "Apdorojamas XHTML. Prašome palaukti...", +Done : "Baigta", +PasteWordConfirm : "Įdedamas tekstas yra panašus į kopiją iš Word. Ar Jūs norite prieš įdėjimą išvalyti jį?", +NotCompatiblePaste : "Ši komanda yra prieinama tik per Internet Explorer 5.5 ar aukštesnę versiją. Ar Jūs norite įterpti be valymo?", +UnknownToolbarItem : "Nežinomas mygtukų juosta elementas \"%1\"", +UnknownCommand : "Nežinomas komandos vardas \"%1\"", +NotImplemented : "Komanda nėra įgyvendinta", +UnknownToolbarSet : "Mygtukų juostos rinkinys \"%1\" neegzistuoja", +NoActiveX : "Jūsų naršyklės saugumo nuostatos gali riboti kai kurias redaktoriaus savybes. Jūs turite aktyvuoti opciją \"Run ActiveX controls and plug-ins\". Kitu atveju Jums bus pranešama apie klaidas ir trūkstamas savybes.", +BrowseServerBlocked : "Neįmanoma atidaryti naujo naršyklės lango. Įsitikinkite, kad iškylančių langų blokavimo programos neveiksnios.", +DialogBlocked : "Neįmanoma atidaryti dialogo lango. Įsitikinkite, kad iškylančių langų blokavimo programos neveiksnios.", +VisitLinkBlocked : "Neįmanoma atidaryti naujo lango. Įsitikinkite, kad iškylančių langų blokavimo programos neveiksnios.", + +// Dialogs +DlgBtnOK : "OK", +DlgBtnCancel : "Nutraukti", +DlgBtnClose : "Uždaryti", +DlgBtnBrowseServer : "Naršyti po serverį", +DlgAdvancedTag : "Papildomas", +DlgOpOther : "", +DlgInfoTab : "Informacija", +DlgAlertUrl : "Prašome įrašyti URL", + +// General Dialogs Labels +DlgGenNotSet : "", +DlgGenId : "Id", +DlgGenLangDir : "Teksto kryptis", +DlgGenLangDirLtr : "Iš kairės į dešinę (LTR)", +DlgGenLangDirRtl : "Iš dešinės į kairę (RTL)", +DlgGenLangCode : "Kalbos kodas", +DlgGenAccessKey : "Prieigos raktas", +DlgGenName : "Vardas", +DlgGenTabIndex : "Tabuliavimo indeksas", +DlgGenLongDescr : "Ilgas aprašymas URL", +DlgGenClass : "Stilių lentelės klasės", +DlgGenTitle : "Konsultacinė antraštė", +DlgGenContType : "Konsultacinio turinio tipas", +DlgGenLinkCharset : "Susietų išteklių simbolių lentelė", +DlgGenStyle : "Stilius", + +// Image Dialog +DlgImgTitle : "Vaizdo savybės", +DlgImgInfoTab : "Vaizdo informacija", +DlgImgBtnUpload : "Siųsti į serverį", +DlgImgURL : "URL", +DlgImgUpload : "Nusiųsti", +DlgImgAlt : "Alternatyvus Tekstas", +DlgImgWidth : "Plotis", +DlgImgHeight : "Aukštis", +DlgImgLockRatio : "Išlaikyti proporciją", +DlgBtnResetSize : "Atstatyti dydį", +DlgImgBorder : "Rėmelis", +DlgImgHSpace : "Hor.Erdvė", +DlgImgVSpace : "Vert.Erdvė", +DlgImgAlign : "Lygiuoti", +DlgImgAlignLeft : "Kairę", +DlgImgAlignAbsBottom: "Absoliučią apačią", +DlgImgAlignAbsMiddle: "Absoliutų vidurį", +DlgImgAlignBaseline : "Apatinę liniją", +DlgImgAlignBottom : "Apačią", +DlgImgAlignMiddle : "Vidurį", +DlgImgAlignRight : "Dešinę", +DlgImgAlignTextTop : "Teksto viršūnę", +DlgImgAlignTop : "Viršūnę", +DlgImgPreview : "Peržiūra", +DlgImgAlertUrl : "Prašome įvesti vaizdo URL", +DlgImgLinkTab : "Nuoroda", + +// Flash Dialog +DlgFlashTitle : "Flash savybės", +DlgFlashChkPlay : "Automatinis paleidimas", +DlgFlashChkLoop : "Ciklas", +DlgFlashChkMenu : "Leisti Flash meniu", +DlgFlashScale : "Mastelis", +DlgFlashScaleAll : "Rodyti visą", +DlgFlashScaleNoBorder : "Be rėmelio", +DlgFlashScaleFit : "Tikslus atitikimas", + +// Link Dialog +DlgLnkWindowTitle : "Nuoroda", +DlgLnkInfoTab : "Nuorodos informacija", +DlgLnkTargetTab : "Paskirtis", + +DlgLnkType : "Nuorodos tipas", +DlgLnkTypeURL : "URL", +DlgLnkTypeAnchor : "Žymė šiame puslapyje", +DlgLnkTypeEMail : "El.paštas", +DlgLnkProto : "Protokolas", +DlgLnkProtoOther : "", +DlgLnkURL : "URL", +DlgLnkAnchorSel : "Pasirinkite žymę", +DlgLnkAnchorByName : "Pagal žymės vardą", +DlgLnkAnchorById : "Pagal žymės Id", +DlgLnkNoAnchors : "(Šiame dokumente žymių nėra)", +DlgLnkEMail : "El.pašto adresas", +DlgLnkEMailSubject : "Žinutės tema", +DlgLnkEMailBody : "Žinutės turinys", +DlgLnkUpload : "Siųsti", +DlgLnkBtnUpload : "Siųsti į serverį", + +DlgLnkTarget : "Paskirties vieta", +DlgLnkTargetFrame : "", +DlgLnkTargetPopup : "", +DlgLnkTargetBlank : "Naujas langas (_blank)", +DlgLnkTargetParent : "Pirminis langas (_parent)", +DlgLnkTargetSelf : "Tas pats langas (_self)", +DlgLnkTargetTop : "Svarbiausias langas (_top)", +DlgLnkTargetFrameName : "Paskirties kadro vardas", +DlgLnkPopWinName : "Paskirties lango vardas", +DlgLnkPopWinFeat : "Išskleidžiamo lango savybės", +DlgLnkPopResize : "Keičiamas dydis", +DlgLnkPopLocation : "Adreso juosta", +DlgLnkPopMenu : "Meniu juosta", +DlgLnkPopScroll : "Slinkties juostos", +DlgLnkPopStatus : "Būsenos juosta", +DlgLnkPopToolbar : "Mygtukų juosta", +DlgLnkPopFullScrn : "Visas ekranas (IE)", +DlgLnkPopDependent : "Priklausomas (Netscape)", +DlgLnkPopWidth : "Plotis", +DlgLnkPopHeight : "Aukštis", +DlgLnkPopLeft : "Kairė pozicija", +DlgLnkPopTop : "Viršutinė pozicija", + +DlnLnkMsgNoUrl : "Prašome įvesti nuorodos URL", +DlnLnkMsgNoEMail : "Prašome įvesti el.pašto adresą", +DlnLnkMsgNoAnchor : "Prašome pasirinkti žymę", +DlnLnkMsgInvPopName : "Iššokančio lango pavadinimas privalo prasidėti lotyniška raide ir negali turėti tarpų", + +// Color Dialog +DlgColorTitle : "Pasirinkite spalvą", +DlgColorBtnClear : "Trinti", +DlgColorHighlight : "Paryškinta", +DlgColorSelected : "Pažymėta", + +// Smiley Dialog +DlgSmileyTitle : "Įterpti veidelį", + +// Special Character Dialog +DlgSpecialCharTitle : "Pasirinkite specialų simbolį", + +// Table Dialog +DlgTableTitle : "Lentelės savybės", +DlgTableRows : "Eilutės", +DlgTableColumns : "Stulpeliai", +DlgTableBorder : "Rėmelio dydis", +DlgTableAlign : "Lygiuoti", +DlgTableAlignNotSet : "", +DlgTableAlignLeft : "Kairę", +DlgTableAlignCenter : "Centrą", +DlgTableAlignRight : "Dešinę", +DlgTableWidth : "Plotis", +DlgTableWidthPx : "taškais", +DlgTableWidthPc : "procentais", +DlgTableHeight : "Aukštis", +DlgTableCellSpace : "Tarpas tarp langelių", +DlgTableCellPad : "Trapas nuo langelio rėmo iki teksto", +DlgTableCaption : "Antraštė", +DlgTableSummary : "Santrauka", +DlgTableHeaders : "Antraštės", +DlgTableHeadersNone : "Nėra", +DlgTableHeadersColumn : "Pirmas stulpelis", +DlgTableHeadersRow : "Pirma eilutė", +DlgTableHeadersBoth : "Abu", + +// Table Cell Dialog +DlgCellTitle : "Langelio savybės", +DlgCellWidth : "Plotis", +DlgCellWidthPx : "taškais", +DlgCellWidthPc : "procentais", +DlgCellHeight : "Aukštis", +DlgCellWordWrap : "Teksto laužymas", +DlgCellWordWrapNotSet : "", +DlgCellWordWrapYes : "Taip", +DlgCellWordWrapNo : "Ne", +DlgCellHorAlign : "Horizontaliai lygiuoti", +DlgCellHorAlignNotSet : "", +DlgCellHorAlignLeft : "Kairę", +DlgCellHorAlignCenter : "Centrą", +DlgCellHorAlignRight: "Dešinę", +DlgCellVerAlign : "Vertikaliai lygiuoti", +DlgCellVerAlignNotSet : "", +DlgCellVerAlignTop : "Viršų", +DlgCellVerAlignMiddle : "Vidurį", +DlgCellVerAlignBottom : "Apačią", +DlgCellVerAlignBaseline : "Apatinę liniją", +DlgCellType : "Langelio tipas", +DlgCellTypeData : "Duomenys", +DlgCellTypeHeader : "Antraštė", +DlgCellRowSpan : "Eilučių apjungimas", +DlgCellCollSpan : "Stulpelių apjungimas", +DlgCellBackColor : "Fono spalva", +DlgCellBorderColor : "Rėmelio spalva", +DlgCellBtnSelect : "Pažymėti...", + +// Find and Replace Dialog +DlgFindAndReplaceTitle : "Surasti ir pakeisti", + +// Find Dialog +DlgFindTitle : "Paieška", +DlgFindFindBtn : "Surasti", +DlgFindNotFoundMsg : "Nurodytas tekstas nerastas.", + +// Replace Dialog +DlgReplaceTitle : "Pakeisti", +DlgReplaceFindLbl : "Surasti tekstą:", +DlgReplaceReplaceLbl : "Pakeisti tekstu:", +DlgReplaceCaseChk : "Skirti didžiąsias ir mažąsias raides", +DlgReplaceReplaceBtn : "Pakeisti", +DlgReplaceReplAllBtn : "Pakeisti viską", +DlgReplaceWordChk : "Atitikti pilną žodį", + +// Paste Operations / Dialog +PasteErrorCut : "Jūsų naršyklės saugumo nustatymai neleidžia redaktoriui automatiškai įvykdyti iškirpimo operacijų. Tam prašome naudoti klaviatūrą (Ctrl+X).", +PasteErrorCopy : "Jūsų naršyklės saugumo nustatymai neleidžia redaktoriui automatiškai įvykdyti kopijavimo operacijų. Tam prašome naudoti klaviatūrą (Ctrl+C).", + +PasteAsText : "Įdėti kaip gryną tekstą", +PasteFromWord : "Įdėti iš Word", + +DlgPasteMsg2 : "Žemiau esančiame įvedimo lauke įdėkite tekstą, naudodami klaviatūrą (Ctrl+V) ir paspauskite mygtuką OK.", +DlgPasteSec : "Dėl jūsų naršyklės saugumo nustatymų, redaktorius negali tiesiogiai pasiekti laikinosios atminties. Jums reikia nukopijuoti dar kartą į šį langą.", +DlgPasteIgnoreFont : "Ignoruoti šriftų nustatymus", +DlgPasteRemoveStyles : "Pašalinti stilių nustatymus", + +// Color Picker +ColorAutomatic : "Automatinis", +ColorMoreColors : "Daugiau spalvų...", + +// Document Properties +DocProps : "Dokumento savybės", + +// Anchor Dialog +DlgAnchorTitle : "Žymės savybės", +DlgAnchorName : "Žymės vardas", +DlgAnchorErrorName : "Prašome įvesti žymės vardą", + +// Speller Pages Dialog +DlgSpellNotInDic : "Žodyne nerastas", +DlgSpellChangeTo : "Pakeisti į", +DlgSpellBtnIgnore : "Ignoruoti", +DlgSpellBtnIgnoreAll : "Ignoruoti visus", +DlgSpellBtnReplace : "Pakeisti", +DlgSpellBtnReplaceAll : "Pakeisti visus", +DlgSpellBtnUndo : "Atšaukti", +DlgSpellNoSuggestions : "- Nėra pasiūlymų -", +DlgSpellProgress : "Vyksta rašybos tikrinimas...", +DlgSpellNoMispell : "Rašybos tikrinimas baigtas: Nerasta rašybos klaidų", +DlgSpellNoChanges : "Rašybos tikrinimas baigtas: Nėra pakeistų žodžių", +DlgSpellOneChange : "Rašybos tikrinimas baigtas: Vienas žodis pakeistas", +DlgSpellManyChanges : "Rašybos tikrinimas baigtas: Pakeista %1 žodžių", + +IeSpellDownload : "Rašybos tikrinimas neinstaliuotas. Ar Jūs norite jį dabar atsisiųsti?", + +// Button Dialog +DlgButtonText : "Tekstas (Reikšmė)", +DlgButtonType : "Tipas", +DlgButtonTypeBtn : "Mygtukas", +DlgButtonTypeSbm : "Siųsti", +DlgButtonTypeRst : "Išvalyti", + +// Checkbox and Radio Button Dialogs +DlgCheckboxName : "Vardas", +DlgCheckboxValue : "Reikšmė", +DlgCheckboxSelected : "Pažymėtas", + +// Form Dialog +DlgFormName : "Vardas", +DlgFormAction : "Veiksmas", +DlgFormMethod : "Metodas", + +// Select Field Dialog +DlgSelectName : "Vardas", +DlgSelectValue : "Reikšmė", +DlgSelectSize : "Dydis", +DlgSelectLines : "eilučių", +DlgSelectChkMulti : "Leisti daugeriopą atranką", +DlgSelectOpAvail : "Galimos parinktys", +DlgSelectOpText : "Tekstas", +DlgSelectOpValue : "Reikšmė", +DlgSelectBtnAdd : "Įtraukti", +DlgSelectBtnModify : "Modifikuoti", +DlgSelectBtnUp : "Aukštyn", +DlgSelectBtnDown : "Žemyn", +DlgSelectBtnSetValue : "Laikyti pažymėta reikšme", +DlgSelectBtnDelete : "Trinti", + +// Textarea Dialog +DlgTextareaName : "Vardas", +DlgTextareaCols : "Ilgis", +DlgTextareaRows : "Plotis", + +// Text Field Dialog +DlgTextName : "Vardas", +DlgTextValue : "Reikšmė", +DlgTextCharWidth : "Ilgis simboliais", +DlgTextMaxChars : "Maksimalus simbolių skaičius", +DlgTextType : "Tipas", +DlgTextTypeText : "Tekstas", +DlgTextTypePass : "Slaptažodis", + +// Hidden Field Dialog +DlgHiddenName : "Vardas", +DlgHiddenValue : "Reikšmė", + +// Bulleted List Dialog +BulletedListProp : "Suženklinto sąrašo savybės", +NumberedListProp : "Numeruoto sąrašo savybės", +DlgLstStart : "Pradėti nuo", +DlgLstType : "Tipas", +DlgLstTypeCircle : "Apskritimas", +DlgLstTypeDisc : "Diskas", +DlgLstTypeSquare : "Kvadratas", +DlgLstTypeNumbers : "Skaičiai (1, 2, 3)", +DlgLstTypeLCase : "Mažosios raidės (a, b, c)", +DlgLstTypeUCase : "Didžiosios raidės (A, B, C)", +DlgLstTypeSRoman : "Romėnų mažieji skaičiai (i, ii, iii)", +DlgLstTypeLRoman : "Romėnų didieji skaičiai (I, II, III)", + +// Document Properties Dialog +DlgDocGeneralTab : "Bendros savybės", +DlgDocBackTab : "Fonas", +DlgDocColorsTab : "Spalvos ir kraštinės", +DlgDocMetaTab : "Meta duomenys", + +DlgDocPageTitle : "Puslapio antraštė", +DlgDocLangDir : "Kalbos kryptis", +DlgDocLangDirLTR : "Iš kairės į dešinę (LTR)", +DlgDocLangDirRTL : "Iš dešinės į kairę (RTL)", +DlgDocLangCode : "Kalbos kodas", +DlgDocCharSet : "Simbolių kodavimo lentelė", +DlgDocCharSetCE : "Centrinės Europos", +DlgDocCharSetCT : "Tradicinės kinų (Big5)", +DlgDocCharSetCR : "Kirilica", +DlgDocCharSetGR : "Graikų", +DlgDocCharSetJP : "Japonų", +DlgDocCharSetKR : "Korėjiečių", +DlgDocCharSetTR : "Turkų", +DlgDocCharSetUN : "Unikodas (UTF-8)", +DlgDocCharSetWE : "Vakarų Europos", +DlgDocCharSetOther : "Kita simbolių kodavimo lentelė", + +DlgDocDocType : "Dokumento tipo antraštė", +DlgDocDocTypeOther : "Kita dokumento tipo antraštė", +DlgDocIncXHTML : "Įtraukti XHTML deklaracijas", +DlgDocBgColor : "Fono spalva", +DlgDocBgImage : "Fono paveikslėlio nuoroda (URL)", +DlgDocBgNoScroll : "Neslenkantis fonas", +DlgDocCText : "Tekstas", +DlgDocCLink : "Nuoroda", +DlgDocCVisited : "Aplankyta nuoroda", +DlgDocCActive : "Aktyvi nuoroda", +DlgDocMargins : "Puslapio kraštinės", +DlgDocMaTop : "Viršuje", +DlgDocMaLeft : "Kairėje", +DlgDocMaRight : "Dešinėje", +DlgDocMaBottom : "Apačioje", +DlgDocMeIndex : "Dokumento indeksavimo raktiniai žodžiai (atskirti kableliais)", +DlgDocMeDescr : "Dokumento apibūdinimas", +DlgDocMeAuthor : "Autorius", +DlgDocMeCopy : "Autorinės teisės", +DlgDocPreview : "Peržiūra", + +// Templates Dialog +Templates : "Šablonai", +DlgTemplatesTitle : "Turinio šablonai", +DlgTemplatesSelMsg : "Pasirinkite norimą šabloną
(Dėmesio! esamas turinys bus prarastas):", +DlgTemplatesLoading : "Įkeliamas šablonų sąrašas. Prašome palaukti...", +DlgTemplatesNoTpl : "(Šablonų sąrašas tuščias)", +DlgTemplatesReplace : "Pakeisti dabartinį turinį pasirinktu šablonu", + +// About Dialog +DlgAboutAboutTab : "Apie", +DlgAboutBrowserInfoTab : "Naršyklės informacija", +DlgAboutLicenseTab : "Licenzija", +DlgAboutVersion : "versija", +DlgAboutInfo : "Papildomą informaciją galima gauti", + +// Div Dialog +DlgDivGeneralTab : "Bendros savybės", +DlgDivAdvancedTab : "Papildomos savybės", +DlgDivStyle : "Stilius", +DlgDivInlineStyle : "Stilius kode", + +ScaytTitle : "SCAYT", //MISSING +ScaytTitleOptions : "Options", //MISSING +ScaytTitleLangs : "Languages", //MISSING +ScaytTitleAbout : "About" //MISSING +}; diff --git a/fckeditor/editor/lang/lv.js b/fckeditor/editor/lang/lv.js new file mode 100644 index 0000000..8474f9a --- /dev/null +++ b/fckeditor/editor/lang/lv.js @@ -0,0 +1,539 @@ +/* + * FCKeditor - The text editor for Internet - http://www.fckeditor.net + * Copyright (C) 2003-2010 Frederico Caldeira Knabben + * + * == BEGIN LICENSE == + * + * Licensed under the terms of any of the following licenses at your + * choice: + * + * - GNU General Public License Version 2 or later (the "GPL") + * http://www.gnu.org/licenses/gpl.html + * + * - GNU Lesser General Public License Version 2.1 or later (the "LGPL") + * http://www.gnu.org/licenses/lgpl.html + * + * - Mozilla Public License Version 1.1 or later (the "MPL") + * http://www.mozilla.org/MPL/MPL-1.1.html + * + * == END LICENSE == + * + * Latvian language file. + */ + +var FCKLang = +{ +// Language direction : "ltr" (left to right) or "rtl" (right to left). +Dir : "ltr", + +ToolbarCollapse : "Samazināt rīku joslu", +ToolbarExpand : "Paplašināt rīku joslu", + +// Toolbar Items and Context Menu +Save : "Saglabāt", +NewPage : "Jauna lapa", +Preview : "Pārskatīt", +Cut : "Izgriezt", +Copy : "Kopēt", +Paste : "Ievietot", +PasteText : "Ievietot kā vienkāršu tekstu", +PasteWord : "Ievietot no Worda", +Print : "Drukāt", +SelectAll : "Iezīmēt visu", +RemoveFormat : "Noņemt stilus", +InsertLinkLbl : "Hipersaite", +InsertLink : "Ievietot/Labot hipersaiti", +RemoveLink : "Noņemt hipersaiti", +VisitLink : "Open Link", //MISSING +Anchor : "Ievietot/Labot iezīmi", +AnchorDelete : "Remove Anchor", //MISSING +InsertImageLbl : "Attēls", +InsertImage : "Ievietot/Labot Attēlu", +InsertFlashLbl : "Flash", +InsertFlash : "Ievietot/Labot Flash", +InsertTableLbl : "Tabula", +InsertTable : "Ievietot/Labot Tabulu", +InsertLineLbl : "Atdalītājsvītra", +InsertLine : "Ievietot horizontālu Atdalītājsvītru", +InsertSpecialCharLbl: "Īpašs simbols", +InsertSpecialChar : "Ievietot speciālo simbolu", +InsertSmileyLbl : "Smaidiņi", +InsertSmiley : "Ievietot smaidiņu", +About : "Īsumā par FCKeditor", +Bold : "Treknu šriftu", +Italic : "Slīprakstā", +Underline : "Apakšsvītra", +StrikeThrough : "Pārsvītrots", +Subscript : "Zemrakstā", +Superscript : "Augšrakstā", +LeftJustify : "Izlīdzināt pa kreisi", +CenterJustify : "Izlīdzināt pret centru", +RightJustify : "Izlīdzināt pa labi", +BlockJustify : "Izlīdzināt malas", +DecreaseIndent : "Samazināt atkāpi", +IncreaseIndent : "Palielināt atkāpi", +Blockquote : "Blockquote", //MISSING +CreateDiv : "Create Div Container", //MISSING +EditDiv : "Edit Div Container", //MISSING +DeleteDiv : "Remove Div Container", //MISSING +Undo : "Atcelt", +Redo : "Atkārtot", +NumberedListLbl : "Numurēts saraksts", +NumberedList : "Ievietot/Noņemt numerēto sarakstu", +BulletedListLbl : "Izcelts saraksts", +BulletedList : "Ievietot/Noņemt izceltu sarakstu", +ShowTableBorders : "Parādīt tabulas robežas", +ShowDetails : "Parādīt sīkāku informāciju", +Style : "Stils", +FontFormat : "Formāts", +Font : "Šrifts", +FontSize : "Izmērs", +TextColor : "Teksta krāsa", +BGColor : "Fona krāsa", +Source : "HTML kods", +Find : "Meklēt", +Replace : "Nomainīt", +SpellCheck : "Pareizrakstības pārbaude", +UniversalKeyboard : "Universāla klaviatūra", +PageBreakLbl : "Lapas pārtraukums", +PageBreak : "Ievietot lapas pārtraukumu", + +Form : "Forma", +Checkbox : "Atzīmēšanas kastīte", +RadioButton : "Izvēles poga", +TextField : "Teksta rinda", +Textarea : "Teksta laukums", +HiddenField : "Paslēpta teksta rinda", +Button : "Poga", +SelectionField : "Iezīmēšanas lauks", +ImageButton : "Attēlpoga", + +FitWindow : "Maksimizēt redaktora izmēru", +ShowBlocks : "Show Blocks", //MISSING + +// Context Menu +EditLink : "Labot hipersaiti", +CellCM : "Šūna", +RowCM : "Rinda", +ColumnCM : "Kolonna", +InsertRowAfter : "Insert Row After", //MISSING +InsertRowBefore : "Insert Row Before", //MISSING +DeleteRows : "Dzēst rindas", +InsertColumnAfter : "Insert Column After", //MISSING +InsertColumnBefore : "Insert Column Before", //MISSING +DeleteColumns : "Dzēst kolonnas", +InsertCellAfter : "Insert Cell After", //MISSING +InsertCellBefore : "Insert Cell Before", //MISSING +DeleteCells : "Dzēst rūtiņas", +MergeCells : "Apvienot rūtiņas", +MergeRight : "Merge Right", //MISSING +MergeDown : "Merge Down", //MISSING +HorizontalSplitCell : "Split Cell Horizontally", //MISSING +VerticalSplitCell : "Split Cell Vertically", //MISSING +TableDelete : "Dzēst tabulu", +CellProperties : "Rūtiņas īpašības", +TableProperties : "Tabulas īpašības", +ImageProperties : "Attēla īpašības", +FlashProperties : "Flash īpašības", + +AnchorProp : "Iezīmes īpašības", +ButtonProp : "Pogas īpašības", +CheckboxProp : "Atzīmēšanas kastītes īpašības", +HiddenFieldProp : "Paslēptās teksta rindas īpašības", +RadioButtonProp : "Izvēles poga īpašības", +ImageButtonProp : "Attēlpogas īpašības", +TextFieldProp : "Teksta rindas īpašības", +SelectionFieldProp : "Iezīmēšanas lauka īpašības", +TextareaProp : "Teksta laukuma īpašības", +FormProp : "Formas īpašības", + +FontFormats : "Normāls teksts;Formatēts teksts;Adrese;Virsraksts 1;Virsraksts 2;Virsraksts 3;Virsraksts 4;Virsraksts 5;Virsraksts 6;Rindkopa (DIV)", + +// Alerts and Messages +ProcessingXHTML : "Tiek apstrādāts XHTML. Lūdzu uzgaidiet...", +Done : "Darīts", +PasteWordConfirm : "Teksta fragments, kas tiek ievietots, izskatās, ka būtu sagatavots Word'ā. Vai vēlaties to apstrādāt pirms ievietošanas?", +NotCompatiblePaste : "Šī darbība ir pieejama Internet Explorer'ī, kas jaunāks par 5.5 versiju. Vai vēlaties ievietot bez apstrādes?", +UnknownToolbarItem : "Nezināms rīku joslas objekts \"%1\"", +UnknownCommand : "Nezināmas darbības nosaukums \"%1\"", +NotImplemented : "Darbība netika paveikta", +UnknownToolbarSet : "Rīku joslas komplekts \"%1\" neeksistē", +NoActiveX : "Interneta pārlūkprogrammas drošības uzstādījumi varētu ietekmēt dažas no redaktora īpašībām. Jābūt aktivizētai sadaļai \"Run ActiveX controls and plug-ins\". Savādāk ir iespējamas kļūdas darbībā un kļūdu paziņojumu parādīšanās.", +BrowseServerBlocked : "Resursu pārlūks nevar tikt atvērts. Pārliecinieties, ka uznirstošo logu bloķētāji ir atslēgti.", +DialogBlocked : "Nav iespējams atvērt dialoglogu. Pārliecinieties, ka uznirstošo logu bloķētāji ir atslēgti.", +VisitLinkBlocked : "It was not possible to open a new window. Make sure all popup blockers are disabled.", //MISSING + +// Dialogs +DlgBtnOK : "Darīts!", +DlgBtnCancel : "Atcelt", +DlgBtnClose : "Aizvērt", +DlgBtnBrowseServer : "Skatīt servera saturu", +DlgAdvancedTag : "Izvērstais", +DlgOpOther : "", +DlgInfoTab : "Informācija", +DlgAlertUrl : "Lūdzu, ievietojiet hipersaiti", + +// General Dialogs Labels +DlgGenNotSet : "
+ + +
+ +
+ + + + \ No newline at end of file diff --git a/include/function/default_func.asp b/include/function/default_func.asp new file mode 100644 index 0000000..177a515 --- /dev/null +++ b/include/function/default_func.asp @@ -0,0 +1,3118 @@ +<% +'------------- List --------------------------------------------------- +'1. ڿóԼ1 - InputValue(strvalue) +'2. ڿóԼ2 - InputValue2(strvalue) -->textareaÿ.. +'3. зϱ - fun_cateLName(CateL_idx) +'4. Һзϱ - fun_cateSName(CateL_idx, CateS_idx) +'5. Ϸ ̱ϱ - mnai (ssn) +'6. α˻Ÿ - TopSearch_Keyword(val) +'7. DBConnection - dbconnect() ->subԼ +'8. üũ - security_ad_cms() +'9. ijʱȭ - no_cache() +'10. ˻ - FolderCreate(strDir) +'11. DB - DBnothing() -->.. +'12. 콺û - trmouseover(clr) +'13. ڵ¿ - RSnothing(rsobj) +'14. ŸƲ + +'15. Խ ˾Ƴ bbs_name_str(a_num) +'16. ˾¸ popup_view() +'---------------------------------------------------------------------- + + + +'Set func = server.CreateObject("func.sites") + + + +'************** Information **************************************** +' Program Title : ڿó1 +' Company : () (053)955-9055 +' Creator : 2004. 03. 05 +'********************************************************************* +'function InputValue(strvalue) + +' strvalue = trim(strvalue) +' strvalue = Replace(strvalue,"'","''") + 'strvalue = Replace(strvalue,chr(34), """) + 'strvalue = Replace(strvalue,",", "") + 'strvalue = Replace(strvalue,"%", "") + 'strvalue = Replace(strvalue,"<", "<") + 'strvalue = Replace(strvalue,">", ">") + 'strvalue = Replace(strvalue, "", "") + 'strvalue = Replace(strvalue, "", "") + 'strvalue = Replace(strvalue,chr(13),"
") + 'strvalue = Replace(strvalue,"\","") + ' strvalue = Replace(strvalue," ","  ") + ' strvalue = Replace(strvalue,"\t","   ") + +' InputValue = strvalue +'end function + + + +'function InputValue(strvalue) + +' strvalue = func.InputValue(strvalue) +' InputValue = strvalue +'end function + + + +'************** Information **************************************** +' Program Title : ڿó2 +' Company : () (053)955-9055 +' Creator : 2004. 03. 05 +'********************************************************************* +'function InputValue2(strvalue) + + 'strvalue = trim(strvalue) + 'strvalue = Replace(strvalue,"'","''") + 'strvalue = Replace(strvalue,",", "") + 'strvalue = Replace(strvalue,"%", "") + 'strvalue = Replace(strvalue,"<", "<") + 'strvalue = Replace(strvalue,">", ">") + 'strvalue = Replace(strvalue, "", "") + 'strvalue = Replace(strvalue, "", "") + 'strvalue = Replace(strvalue,chr(13),"
") + 'strvalue = Replace(strvalue,"\","") + ' strvalue = Replace(strvalue," ","  ") + ' strvalue = Replace(strvalue,"\t","   ") + +' InputValue2 = strvalue +'end function + +'************** Information **************************************** +' Program Title : ڿó1 +' Company : () (053)955-9055 +' Creator : 2004. 03. 05 +'********************************************************************* +function InputValue(strvalue) + + strvalue = trim(strvalue) + strvalue = Replace(strvalue,"'","''") + strvalue = Replace(strvalue,chr(34), """) + strvalue = Replace(strvalue, "", "") + strvalue = Replace(strvalue, "", "") + + InputValue = strvalue +end function + + + +'************** Information **************************************** +' Program Title : ڿó2 +' Company : () (053)955-9055 +' Creator : 2004. 03. 05 +'********************************************************************* +function InputValue2(strvalue) + + strvalue = trim(strvalue) + strvalue = Replace(strvalue,"'","''") + strvalue = Replace(strvalue, "", "") + strvalue = Replace(strvalue, "", "") + + InputValue2 = strvalue +end function + +'************** Information **************************************** +' Program Title : ڿó3 +' Company : () (053)955-9055 +' Creator : 2006. 3. 14 +'********************************************************************* +Function InputValue3( CheckValue ) +CheckValue = replace(CheckValue, "&" , "&") +CheckValue = replace(CheckValue, "<", "<") +CheckValue = replace(CheckValue, ">", ">") +CheckValue = replace(CheckValue, "'", "`") +CheckValue = replace(CheckValue, " ", "  ") +CheckValue = replace(CheckValue, vbcrlf,"
") +InputValue3 = CheckValue +End Function + +'************** Information **************************************** +' Program Title : ڿó4 +' Company : () (053)955-9055 +' Creator : 2006. 3. 14 +'********************************************************************* +function InputValue4(strvalue) + + strvalue = trim(strvalue) + strvalue = Replace(strvalue,"'","''") + InputValue4 = strvalue +end Function + +'ؽƮ ҷ +Function outputValue( CheckValue ) +CheckValue = replace(CheckValue, "&", "&") +CheckValue = replace(CheckValue, "<", "<") +CheckValue = replace(CheckValue, ">", ">") +CheckValue = replace(CheckValue, "  ", " ") +CheckValue = replace(CheckValue, "
", vbcrlf) +outputValue = CheckValue +End Function + +'************** Information **************************************** +' Program Title : ؽƮ +' Company : () (053)955-9055 +' Creator : 2004. 03. 05 +'********************************************************************* +function getTextmode(strvalue) + + if strvalue <> "" or not isnull(strvalue) then + + strvalue=Replace(strvalue, "<" , "<") + strvalue=Replace(strvalue, ">" , ">") + strvalue=Replace(strvalue,chr(13),"
") + strvalue=Replace(strvalue," ","  ") + strvalue=Replace(strvalue,"\t","   ") + getTextmode = strvalue + end if + + +end Function + +function InputValue6(strvalue) + + strvalue = trim(strvalue) + strvalue = Replace(strvalue," ","") + + strvalue = left(strvalue,16) + strvalue = left(strvalue,10)&"-"&right(strvalue,6) + strvalue = Replace(strvalue,":","-") + + + + InputValue6 = strvalue +end function + +'************** Information **************************************** +' Program Title : з +' Company : () (053)955-9055 +' Creator : 2004. 03. 05 +'********************************************************************* +function fun_cateLName(CateL_idx) + SQL = "SELECT CateL_name FROM C_CateL WHERE CateL_idx="&CateL_idx + Set Rsx = Dbcon.Execute(SQL) + + CateL_name = Rsx(0) + + Set Rsx = Nothing + + + fun_cateLName = CateL_name +end function + + + +'************** Information **************************************** +' Program Title : Һз +' Company : () (053)955-9055 +' Creator : 2004. 03. 05 +'********************************************************************* +function fun_cateSName(CateL_idx, CateS_idx) + SQL = "SELECT CateS_name FROM C_CateS WHERE CateL_idx="&CateL_idx&"and CateS_idx = "&CateS_idx + Set Rsx = Dbcon.Execute(SQL) + + CateS_name = Rsx(0) + + Set Rsx = Nothing + + + fun_cateSName = CateS_name +end function + + + +'************** Information **************************************** +' Program Title : ̱ϴԼ +' Company : () (053)955-9055 +' Creator : 2004. 03. 10 +'********************************************************************* +function mnai (ssn) + dim y_mon, ssn_r + + y_mon=cint((year(date())-cint("19" & left(ssn,2)))/4) + + if mid(ssn,7,1)="1" or mid(ssn,7,1)="2" then + ssn_r = "19" & left(ssn,2) & "-" & mid(ssn,3,2) & "-" & mid(ssn,5,2) + else + ssn_r = "20" & left(ssn,2) & "-" & mid(ssn,3,2) & "-" & mid(ssn,5,2) + end if + + mnai = fix((datediff("d",cdate(ssn_r),date())-y_mon)/365) + +End Function + + + + + + +'************** Information **************************************** +' Program Title : α˻ +' Company : () (053)955-9055 +' Creator : 2004. 03. 05 +'********************************************************************* +function TopSearch_Keyword(val) + + sql = "select top "&val&" search_keyword, count(search_keyword) as tot from C_search group by search_keyword order by tot desc" + set rs_keyword = dbcon.execute(sql) + + do while not rs_keyword.eof + + response.write "  "&rs_keyword("search_keyword") + + + rs_keyword.MoveNext + Loop + + Set rs_keyword = Nothing + +end function + +'************** Information **************************************** +' Program Title : üũ +' Company : () (053)955-9055 +' Creator : 2004. 05. 13 +'********************************************************************* +function security_ad_cms() + + If Request.Cookies("security_ad_cms") <> "ok" then + response.write "" & VbCrLf + response.end + end if + +end function + +'************** Information **************************************** +' Program Title : ȸα üũ +' Company : () (053)955-9055 +' Creator : 2004. 05. 13 +'********************************************************************* +function member_login_chk(url) + + If Request.Cookies("M_id") = "" then + response.write "" & VbCrLf + set dbcon = nothing + response.end + end if + +end function + +'************** Information **************************************** +' Program Title : üũ +' Company : () (053)955-9055 +' Creator : 2004. 05. 13 +'********************************************************************* +function no_cache() + + Response.Expires = -1 + Response.Expiresabsolute = Now() - 1 + Response.AddHeader "Pragma", "no_cache" + Response.AddHeader "cache-control", "no-cache" + Response.CacheControl = "no-cache" + +end function + + + +'************** Information **************************************** +' Program Title : ˻ +' Company : () (053)955-9055 +' Creator : 2004. 05. 13 +'********************************************************************* +function FolderCreate(strDir) + + Set FSO = Server.CreateObject("Scripting.FileSystemObject") + + If FSO.FolderExists(strDir) = False Then ' Ѵ.. + FSO.CreateFolder(strDir) + End if + + set FSO = nothing + +end function + + + +'************** Information **************************************** +' Program Title : DB +' Company : () (053)955-9055 +' Creator : 2004. 05. 13 +'********************************************************************* +function DBnothing() + + dbcon.close + set dbcon = nothing + +end function + +'************** Information **************************************** +' Program Title : DB +' Company : () (053)955-9055 +' Creator : 2004. 05. 13 +'********************************************************************* +function page(url) + + v_temp = Int((v_page - 1) / v_block) * v_block + 1 + + If v_temp = 1 Then + 'Response.Write "[ " & v_block & "]" + Else + Response.Write"
[]" + End If + + v_loop = 1 + + Do Until v_loop > v_block Or v_temp > v_totalpage + If v_temp = CInt(v_page) Then + Response.Write "" & v_temp &" " + Else + Response.Write"" & v_temp & " " + End If + v_temp = v_temp + 1 + v_loop = v_loop + 1 + Loop + + If v_temp > v_totalpage Then + 'Response.Write "[ " &v_block&"]" + Else + Response.Write"[]" + End If + +end function + + + + +'************** Information **************************************** +' Program Title : 2 +' Company : () (053)955-9055 +' Creator : 2004. 05. 13 +'********************************************************************* +function page2(url) + + v_temp = Int((v_page - 1) / v_block) * v_block + 1 + + If v_temp = 1 Then + 'Response.Write "[ " & v_block & "]" + Else + Response.Write"" + End If + + v_loop = 1 + + Do Until v_loop > v_block Or v_temp > v_totalpage + If v_temp = CInt(v_page) Then + Response.Write "" & v_temp &" " + Else + Response.Write"[" & v_temp & "] " + End If + v_temp = v_temp + 1 + v_loop = v_loop + 1 + Loop + + If v_temp > v_totalpage Then + 'Response.Write "[ " &v_block&"]" + Else + Response.Write"" + End If + +end function +'************** Information **************************************** +' Program Title : 3 +' Company : () (053)955-9055 +' Creator : 2006. 03. 14 +'********************************************************************* + +Function page3(url, getCode) + + v_temp = Int((v_page - 1) / v_block) * v_block + 1 + + If v_temp = 1 Then + 'Response.Write "[ " & v_block & "]" + Else + Response.Write"[]" + End If + + v_loop = 1 + + Do Until v_loop > v_block Or v_temp > v_totalpage + If v_temp = CInt(v_page) Then + Response.Write "" & v_temp &" " + Else + Response.Write"" & v_temp & " " + End If + v_temp = v_temp + 1 + v_loop = v_loop + 1 + Loop + + If v_temp > v_totalpage Then + 'Response.Write "[ " &v_block&"]" + Else + Response.Write"[]" + End If + +end Function + + +'************** Information **************************************** +' Program Title : 콺û +' Company : () (053)955-9055 +' Creator : 2004. 05. 13 +'********************************************************************* +function trmouseover(clr) + + response.write "onMouseOver=this.style.backgroundColor='"&clr&"' onMouseOut=this.style.backgroundColor=''" + +end function + + +'************** Information **************************************** +' Program Title : ڵ¿ +' Company : () (053)955-9055 +' Creator : 2004. 05. +'********************************************************************* +function RSnothing(rsobj) + + rsobj.close + set rsobj = nothing + +end function + + +'************** Information **************************************** +' Program Title : ŸƲ +' Company : () (053)955-9055 +' Creator : 2004. 05. +'********************************************************************* +function title_str(str,w) + +%> + + + + +
+ + + + + +
<%=str%>
+
+ + + + + + + + + +
+<% +end function + +'************** Information **************************************** +' Program Title : ŸƲ +' Company : () (053)955-9055 +' Creator : 2004. 05. +'********************************************************************* +function title_str2(str,w,help) + +%> + + + + + + + + + + + + + + + +
<%=str%><%=help%>
+ +<% +end function + + + +'************** Information **************************************** +' Program Title : ŸƲ +' Company : () (053)955-9055 +' Creator : 2004. 05. +'********************************************************************* +function title_str3(str,path) + +%> + + +
+ + + + + +
<%=str%><%=path%>
+ + + + + + + + + +
+ +<% +end function + + + +'************** Information **************************************** +' Program Title : Խ ˾Ƴbbs_name_str(a_num) +' Company : () (053)955-9055 +' Creator : 2004. 03. 05 +'********************************************************************* +function bbs_name_str(a_num) + + if a_num <> "" then + + sql = "select a_bbsname from bbs_ad_cms where a_num="&a_num + set rs = dbcon.execute(sql) + + a_bbsname = rs(0) + + set rs = nothing + + end if + + bbs_name_str = a_bbsname + +end function + + +'************** Information **************************************** +' Program Title : ˾ popup_view() +' Company : () (053)955-9055 +' Creator : 2004. 09. 03 +'********************************************************************* +function popup_view() + + getdate_str = replace(left(now(),10),"-","") + + sql = " select * from popup " + sql = sql&" where status = 'Y' and " + 'sql = sql&" left(edate,10) >= left(getdate(),10) and left(sdate,10) <= left(getdate(),10)" + sql = sql&" convert(int,convert(varchar(20),edate,112)) >= CONVERT(int,'"&getdate_str&"') and " + sql = sql&" convert(int,convert(varchar(20),sdate,112)) <= CONVERT(int,'"&getdate_str&"')" + + set rs = Dbcon.Execute(sql) + + do while not rs.eof + + idx = trim(rs("idx")) + w_width = trim(rs("w_width")) + w_height = trim(rs("w_height")) + w_top = trim(rs("w_top")) + w_left = trim(rs("w_left")) + ck_chk = trim(rs("ck_chk")) + ck_val = trim(rs("ck_val")) + scrollbars = trim(rs("scrollbars")) + toolbar = trim(rs("toolbar")) + menubar = trim(rs("menubar")) + locations = trim(rs("locations")) + + if ck_val = "" then ck_val = "1" + + %> + + + <% + rs.movenext + loop + + +end function + + + +'************** Information **************************************** +' Program Title : goodsi_view() +' Company : () (053)955-9055 +' Creator : 2006-01-27 +'********************************************************************* +function goodsi_view() + + getdate_str = replace(left(now(),10),"-","") + + sql = " select * from goodsi " + sql = sql&" where status = 'Y' and " + 'sql = sql&" left(edate,10) >= left(getdate(),10) and left(sdate,10) <= left(getdate(),10)" + sql = sql&" convert(int,convert(varchar(20),edate,112)) >= CONVERT(int,'"&getdate_str&"') and " + sql = sql&" convert(int,convert(varchar(20),sdate,112)) <= CONVERT(int,'"&getdate_str&"')" + + set rs = Dbcon.Execute(sql) + + %> + + + <% + do while not rs.eof + + idx = trim(rs("idx")) + w_width = trim(rs("w_width")) + w_height = trim(rs("w_height")) + w_top = trim(rs("w_top")) + w_left = trim(rs("w_left")) + ck_chk = trim(rs("ck_chk")) + ck_val = trim(rs("ck_val")) + scrollbars = trim(rs("scrollbars")) + toolbar = trim(rs("toolbar")) + menubar = trim(rs("menubar")) + locations = trim(rs("locations")) + + subject = trim(rs("subject")) + content = trim(rs("content")) + + %> + + <%=content%>

+ + <% + + + rs.movenext + loop +%> +
+
+<% + + +end function + + + + + + +'--------------------------------------------------------------' + ' ±׻ remove_tags( str ) + '--------------------------------------------------------------' + function remove_tags( str ) + dim temp, dest, length, i, ch, tag + + tag = false + dest = "" + temp = str + length = len(temp) + + for i=1 to length + ch = mid( temp, i, 1 ) + + if ( ch="<" ) then tag = true + if ( ch=">" ) then + tag = false + ch="" + end if + if not tag and ch<>chr(13) and ch<>chr(10) and ch<>chr(9) then dest = dest+ch + next + + dest = replace( dest, " ", "" ) + remove_tags = dest + end function + + + '̹ +Function GetImageSize(Virtual_Image_Path) + Image_Path = Server.MapPath("/")&Virtual_Image_Path + + Set objPic = LoadPicture(Image_Path) + imgWidth = CLng(CDbl(objPic.Width) * 24 / 635) + imgHeight = CLng(CDbl(objPic.Height) * 24 / 635) + Set objPic = Nothing + GetImageSize =imgWidth&","&imgHeight +End Function + + +Function GetImageSize_w(Virtual_Image_Path) + Image_Path = Server.MapPath("/")&Virtual_Image_Path + + Set objPic = LoadPicture(Image_Path) + imgWidth = CLng(CDbl(objPic.Width) * 24 / 635) + imgHeight = CLng(CDbl(objPic.Height) * 24 / 635) + Set objPic = Nothing + GetImageSize_w =imgWidth +End Function + +Function GetImageSize_h(Virtual_Image_Path) + Image_Path = Server.MapPath("/")&Virtual_Image_Path + + Set objPic = LoadPicture(Image_Path) + imgWidth = CLng(CDbl(objPic.Width) * 24 / 635) + imgHeight = CLng(CDbl(objPic.Height) * 24 / 635) + Set objPic = Nothing + GetImageSize_h =imgHeight +End Function + +'--------------------------------------------------------------' + ' (max)ŭ ڿ (ѱ 2Ʈ ν) + '--------------------------------------------------------------' + ' + ' str : ߶ ڿ + ' max : ߶ + ' br : max
±׸ ٿش. + ' + ' ڿ ٿ 80ھ + ' : StringToHTML( str, 80, true ) + ' + ' 80 ϰ "..." ٿַ + ' : StringToHTML( str, 80, false ) + ' + '--------------------------------------------------------------' + function StringToHTML( str, max, br ) + Dim i, length, buf, tmp, count, count2, ch, first + + first = false + + if ( isnull(str) ) then + StringToHTML = "" + Exit Function + end if + + if max>0 then + buf = Trim( str ) + 'buf = Replace( buf, CHR(9), " " ) + 'buf = Replace( buf, CHR(13), "" ) + + length = len( buf ) + count = 1 + count2 = 0 + tmp = "" + + for i=1 to length + if count>max then + if br=false then + tmp = tmp & "..." + exit for + end if + if i" + count = 1 + first = true + end if + + ch = mid( buf, i, 1 ) + + if ch=CHR(10) then + if br=false then + exit for + end if + tmp = tmp & "
" + count = 1 + first = true + elseif count>1 AND ch=CHR(32) then + if not first then + tmp = tmp & " " + end if + elseif count = 1 and ch = CHR(32) then + tmp = tmp + else + tmp = tmp & ch + first = false + end if + + if asc(ch)<0 then 'ѱ̸ + count = count+2 + else '̸ + count = count+1 + end if + next + else + tmp = str + tmp = Trim( tmp ) + tmp = Replace( tmp, "&", "&" ) + tmp = Replace( tmp, "<", "<" ) + tmp = Replace( tmp, ">", ">" ) + 'tmp = Replace( tmp, CHR(10), "
" ) + 'tmp = Replace( tmp, CHR(32), " " ) + end if + + StringToHTML = tmp + end function +'---------------------sms ְ--------------- +function StringToHTML2( str, max, br ) + Dim i, length, buf, tmp, count, count2, ch, first + + first = false + + if ( isnull(str) ) then + StringToHTML = "" + Exit Function + end if + + if max>0 then + buf = Trim( str ) + 'buf = Replace( buf, CHR(9), " " ) + 'buf = Replace( buf, CHR(13), "" ) + + length = len( buf ) + count = 1 + count2 = 0 + tmp = "" + + for i=1 to length + if count>max then + if br=false then + tmp = tmp & "..." + exit for + end if + if i" + count = 1 + first = true + end if + + ch = mid( buf, i, 1 ) + + 'if ch=CHR(10) then + 'if br=false then + ' exit for + 'end if + 'tmp = tmp & "
" + 'count = 1 + 'first = true + 'Else + if count>1 AND ch=CHR(32) then + if not first then + tmp = tmp & " " + end if + elseif count = 1 and ch = CHR(32) then + tmp = tmp + else + tmp = tmp & ch + first = false + end if + + if asc(ch)<0 then 'ѱ̸ + count = count+2 + else '̸ + count = count+1 + end if + next + else + tmp = str + tmp = Trim( tmp ) + tmp = Replace( tmp, "&", "&" ) + tmp = Replace( tmp, "<", "<" ) + tmp = Replace( tmp, ">", ">" ) + 'tmp = Replace( tmp, CHR(10), "
" ) + 'tmp = Replace( tmp, CHR(32), " " ) + end if + + StringToHTML2 = tmp + end function + +sub loding(st,strlink) +%> + +
+ + + + + + + + + + +
+ + +
 
+ +
+<% +end sub + + +'************** Information **************************************** +' Program Title : Ȯ +' Company : () (053)955-9055 +' Creator : 2005-10-19 +'********************************************************************* +function isdir(strDirectory) + Set FSO = Server.CreateObject("Scripting.FileSystemObject") + + If FSO.FolderExists(strDirectory) = False Then ' Ѵ.. + FSO.CreateFolder(strDirectory) + End if + + Set FSO = Nothing + +end function + + +'************** Information **************************************** +' Program Title : εϱ(dext) +' Company : () (053)955-9055 +' Creator : 2004. 05 +'********************************************************************* +function wfile(filedname, maxMbyte, strDirectory) + + Set FSO = Server.CreateObject("Scripting.FileSystemObject") + + if Len(UploadForm(filedname)) > 0 then + + + + 'strDirectory = server.MapPath("./")&"\data\"&a_tablename&"\" + + If FSO.FolderExists(strDirectory) = False Then ' Ѵ.. + FSO.CreateFolder(strDirectory) + End if + + + '-- + fileName = UploadForm(filedname).FileName '̸.. + filePath = UploadForm(filedname).FilePath '.. + fileSize = UploadForm(filedname).FileLen 'ϻ.. + + + + saveFileName = strDirectory & fileName ' ο ... + + '--Ȯ ̸ и + strfile = split(fileName,".") + strName = strfile(0) 'ϸ + strExt = strfile(1) 'Ȯ + + + '-- ũⰡ ˻ + '1MByte = 1048576Byte + + if Round(fileSize) > Round(1048576 * maxMbyte) then + + response.write "" & VbCrLf + Set UploadForm = nothing + Set FSO = nothing + response.end + + end if + + + ' Ұ --> _1,_2 ̷ ϸ ..Ѥv + bExist = True + count= 0 + Do While bExist + If (FSO.FileExists(saveFileName)) Then + count = count + 1 + FileName = strName & "_" & count & "." & strExt + saveFileName = strDirectory & FileName + Else + + Exit Do ' .. + + End If + Loop + + + ' + UploadForm(filedname).SaveAs saveFileName + + + end if + + + + + 'Set UploadForm = nothing + Set FSO = nothing + + + wfile = FileName + +end Function + +'************** Information **************************************** +' Program Title : εϱ(dext) +' Company : () (053)955-9055 +' Creator : 2007-04-17 +'********************************************************************* +function wfile_mail(filedname, maxMbyte, strDirectory) + + Set FSO = Server.CreateObject("Scripting.FileSystemObject") + + if Len(UploadForm(filedname)) > 0 then + + + + 'strDirectory = server.MapPath("./")&"\data\"&a_tablename&"\" + + If FSO.FolderExists(strDirectory) = False Then ' Ѵ.. + FSO.CreateFolder(strDirectory) + End if + + + '-- + fileName = UploadForm(filedname).FileName '̸.. + filePath = UploadForm(filedname).FilePath '.. + fileSize = UploadForm(filedname).FileLen 'ϻ.. + + + + saveFileName = strDirectory & fileName ' ο ... + + '--Ȯ ̸ и + strfile = split(fileName,".") + strName = strfile(0) 'ϸ + strExt = strfile(1) 'Ȯ + + + a_nofile = "asp,php,jsp,exe,aspx,dll,com,js" + a_nofile = split(a_nofile,",") '.. + a_nofile_len = UBound(a_nofile) '迭 + + for z=0 to a_nofile_len + + if Lcase(strExt) = a_nofile(z) then + response.write "" & VbCrLf + set dbcon = nothing + Set UploadForm = nothing + Set FSO = nothing + response.end + end if + + Next + + + '-- ũⰡ ˻ + '1MByte = 1048576Byte + + if Round(fileSize) > Round(1048576 * maxMbyte) then + + response.write "" & VbCrLf + Set UploadForm = nothing + Set FSO = nothing + response.end + + end if + + + ' Ұ --> _1,_2 ̷ ϸ ..Ѥv + bExist = True + count= 0 + Do While bExist + If (FSO.FileExists(saveFileName)) Then + count = count + 1 + FileName = strName & "_" & count & "." & strExt + saveFileName = strDirectory & FileName + Else + + Exit Do ' .. + + End If + Loop + + + ' + UploadForm(filedname).SaveAs saveFileName + + + end if + + + + + 'Set UploadForm = nothing + Set FSO = nothing + + + wfile_mail = FileName + +end function + +'************** Information **************************************** +' Program Title : +' Company : +' Creator : +'********************************************************************* +function cfile(filedname,strDirectory1,strDirectory) + + Set FSO = Server.CreateObject("Scripting.FileSystemObject") + + If FSO.FolderExists(strDirectory) = False Then ' Ѵ.. + FSO.CreateFolder(strDirectory) + End if + + '--Ȯ ̸ и + strfile = split(filedname,".") + strName = strfile(0) 'ϸ + strExt = strfile(1) 'Ȯ + + + ' Ұ --> _1,_2 ̷ ϸ ..Ѥv + bExist = True + count= 0 + + org_file = strDirectory1&filedname + fwsaveFileName = strDirectory&filedname + FileName = filedname + + + Do While bExist + If (FSO.FileExists(fwsaveFileName)) Then + count = count + 1 + FileName = strName & "_" & count & "." & strExt + fwsaveFileName = strDirectory & FileName + Else + + Exit Do ' .. + + End If + Loop + + + ' + FSO.CopyFile org_file,fwsaveFileName + + + Set FSO = nothing + + cfile = FileName + +end function + + +'************** Information **************************************** +' Program Title : file +' Company : () (053)955-9055 +' Creator : 2004. 05. +'********************************************************************* +function dfile(strpath) + + Set FSO = Server.CreateObject("Scripting.FileSystemObject") + + + If FSO.fileExists(strpath) = true Then ' . + FSO.DeleteFile(strpath) + End if + + Set FSO = nothing + +end function + +'************** Information **************************************** +' Program Title : ޺ 뷮 +' Company : () (053)955-9055 +' Creator : 2004. 05 +'********************************************************************* +function get_hdsize(loging_level) + + if loging_level = "-1" then + + get_hdsize = Application("ad_cms_hdsize") + + else + + SQL = "Select g_hdsize from member_group where g_num=" & loging_level + Set rs = DbCon.Execute(SQL) + + if not rs.eof then + get_hdsize = Rs(0) + else + get_hdsize = 0 + end if + + Set rs = nothing + + end if + +end function + +'************** Information **************************************** +' Program Title : 뷮 +' Company : () (053)955-9055 +' Creator : 2004. 05 +'********************************************************************* +function get_public() + + sql = "Select wc_public from webhd_config" + Set rs = DbCon.Execute(SQL) + + if not rs.eof then + get_public = Rs(0) + else + get_public = 0 + end if + + Set rs = nothing + +end function + +'************** Information **************************************** +' Program Title : εѿ뷮 +' Company : () (053)955-9055 +' Creator : 2004. 05 +'********************************************************************* +function get_upload() + + sql = "Select wc_upload from webhd_config" + Set rs = DbCon.Execute(SQL) + + if not rs.eof then + get_upload = Rs(0) + else + get_upload = 0 + end if + + Set rs = nothing + +end function + +'************** Information **************************************** +' Program Title : 'ӽðϱ +' Company : () (053)955-9055 +' Creator : 2004. 05 +'********************************************************************* +function get_lastdate(m_id) + + +sql = "select m_lastdate from member where m_id = '"&m_id&"'" +set rs_view = DbCon.Execute(sql) + +get_lastdate = rs_view("m_lastdate") + +Set rs_view = nothing + +end function + + + +'************** Information **************************************** +' Program Title : ' +' Company : () (053)955-9055 +' Creator : 2004. 05 +'********************************************************************* +function get_FileName1(filename) + +If Trim(filename) = "" Then + FileName1 = "default.gif" +Else + FileName = Split(filename,".",-1,1) + FileEnd = Lcase(Trim(FileName(1))) + Select Case FileEnd + Case "" + FileName1 = "default.gif" + Case "asf" + FileName1 = "asf.gif" + Case "asx" + FileName1 = "asf.gif" + Case "doc" + FileName1 = "doc.gif" + Case "mpg" + FileName1 = "mpg.gif" + Case "mpeg" + FileName1 = "mpg.gif" + Case "bat" + FileName1 = "bat.gif" + Case "bmp" + FileName1 = "bmp.gif" + Case "com" + FileName1 = "com.gif" + Case "sys" + FileName1 = "device.gif" + Case "dll" + FileName1 = "device.gif" + Case "exe" + FileName1 = "exe.gif" + Case "gif" + FileName1 = "gif.gif" + Case "htm" + FileName1 = "html.gif" + Case "html" + FileName1 = "html.gif" + Case "hwp" + FileName1 = "hwp.gif" + Case "xls" + FileName1 = "excel.gif" + Case "jpg" + FileName1 = "jpg.gif" + Case "mp3" + FileName1 = "mp3.gif" + Case "pcx" + FileName1 = "pcx.gif" + Case "png" + FileName1 = "png.gif" + Case "ppt" + FileName1 = "ppt.gif" + Case "ra" + FileName1 = "ra.gif" + Case "txt" + FileName1 = "text.gif" + Case "url" + FileName1 = "url.gif" + Case "wav" + FileName1 = "wav.gif" + Case "zip" + FileName1 = "zip.gif" + Case else + FileName1 = "unknown.gif" + End Select +End If + +get_FileName1 = FileName1 + +end function + + + +'************** Information **************************************** +' Program Title : 'ȸ̸ã +' Company : () (053)955-9055 +' Creator : 2005-07-24 +'********************************************************************* +function get_name(m_id) + + +if m_id <> "" then + + m_id = replace(m_id,",","") + + sql = "select m_name from member where m_id = '"&m_id&"'" + set rs_view = DbCon.Execute(sql) + + if rs_view.eof then + + get_name = m_id + + else + + get_name = rs_view(0) + + end if + + Set rs_view = nothing + +end if + +end function + + +'************** Information **************************************** +' Program Title : 'ȸ̸' +' Company : () (053)955-9055 +' Creator : 2005-07-24 +'********************************************************************* +function get_company_name() + + sql = "select subject from default_config where idx=1" + set rs_view = DbCon.Execute(sql) + + if rs_view.eof then + + get_company_name = "" + + else + + get_company_name = rs_view(0) + + end if + + set rs_view = nothing + +end function + + + +'************** Information **************************************** +' Program Title : +' Company : () (053)955-9055 +' Creator : 2005-07-27 +'********************************************************************* +function get_rdate(do_key,do_formid) + + sql = "select dov_rdate from document_view where do_key="&do_key&" and do_id='"&do_formid&"'" + set rs_view = DbCon.Execute(sql) + + if isnull(trim(rs_view(0))) or trim(rs_view(0)) = "" then + + get_rdate = "" + + else + + get_rdate = left(rs_view(0),10)&" "&mid(rs_view(0),12,10) + + end if + + + set rs_view = nothing + +end function + + + '************** Information **************************************** +' Program Title : ip üũ +' Company : () (053)955-9055 +' Creator : 2005-10-12 +'********************************************************************* +function security_ip() + + + user_ip = trim(request.ServerVariables("REMOTE_ADDR")) + + sql = "select count(se_idx) from security where se_ip='"&user_ip&"' and se_chk='Y'" + set rs = dbcon.execute(sql) + rs_str = rs(0) + set rs = nothing + + + if rs_str = 0 then + response.write "" & VbCrLf + response.end + end if + +end function + + +'************** Information **************************************** +' Program Title : 'input +' Company : () (053)955-9055 +' Creator : 2005-10-28 +'********************************************************************* +sub input_type(iptype,ip_name,ip_value,size,maxlength,ip_aciton) + + + if maxlength <> "0" then + maxlength_str = "maxlength='"&maxlength&"'" + end if + + if iptype = "text" then + %> + <%=ip_aciton%>> + + <%elseif iptype = "password" then%> + <%=ip_aciton%>> + + <%elseif iptype = "ipdate" then%> + + <%=ip_aciton%>> + [¥] + + <%elseif iptype = "textarea" then%> + + + + <%elseif iptype = "file" then%> + <%=ip_aciton%>> + + <%end if + +end sub + + + +'************** Information **************************************** +' Program Title : 'ڵ +' Company : () (053)955-9055 +' Creator : 2005-10-28 +'********************************************************************* +sub code_view(code_idx,opt_name,code_name) + + +SQL = "SELECT * FROM C_CODE_S WHERE CateL_idx="&code_idx&" ORDER BY CateS_code" +Set rs = DbCon.Execute(SQL) + +if not rs.eof then + +%> + +<%else%> + +<%end if + + rs.close + set rs = nothing + + +end sub + + + + + + +'************** Information **************************************** +' Program Title : 'new .(get_newimg) +' Company : () (053)955-9055 +' Creator : 2005-07-27 +'********************************************************************* +function get_newimg(getdate) + if not(isnull(getdate)) and getdate <> "" then + + aa_regdate = trim(getdate) + aa_regdate = trim(left(aa_regdate,10)) + 'response.write aa_regdate + aa_regdate = cdate(aa_regdate) + new_day = cint("-" & 1) + date1 = dateadd("d",new_day,date()) '-- new_day ¥ + + If aa_regdate >= date1 Then + + response.write "" + + end if + end if +end function + + + + + + +'************** Information **************************************** +' Program Title : 'μ +' Company : () (053)955-9055 +' Creator : 2005-11-03 +'********************************************************************* +sub page_print() +%> + + +<% +end sub + + + +'************** Information **************************************** +' Program Title : Խ ̺˾Ƴ bbs_tablename_str(a_num) +' Company : () (053)955-9055 +' Creator : 2004. 03. 05 +'********************************************************************* +function bbs_tablename_str(a_num) + + if a_num <> "" then + + sql = "select a_tablename from bbs_ad_cms where a_num="&a_num + set rs = dbcon.execute(sql) + + bbs_tablename_str = trim(rs(0)) + + 'set rs = nothing + + end if + + +end function + + +'************** Information **************************************** +' Program Title : Խ ˾Ƴ bbs_bbsname_str(a_num) +' Company : () (053)955-9055 +' Creator : 2006-02-03 +'********************************************************************* +function bbs_bbsname_str(a_num) + + if a_num <> "" then + + sql = "select a_bbsname from bbs_ad_cms where a_num="&a_num + set rs = dbcon.execute(sql) + + bbs_bbsname_str = trim(rs(0)) + + set rs = nothing + + end if + + +end function + + +'************** Information **************************************** +' Program Title : 'ȸμ +' Company : () (053)955-9055 +' Creator : 2005-07-24 +'********************************************************************* +function get_buseo(bdm_idx) + +If IsNull(bdm_idx) Or Trim(bdm_idx) = "" Then bdm_idx = 0 + +if CLng(bdm_idx) > 0 then + + + SQL = "Select bdm_menuname from bd_menu_page where bdm_idx = "&bdm_idx + 'response.write sql + set rs_buseo = DbCon.Execute(sql) + + + if rs_buseo.eof then + + get_buseo = "μ" + + else + + get_buseo = rs_buseo(0) + + end if + + Set rs_buseo = nothing +else + + get_buseo = "μ" + +end if + + +end Function + + +'************** Information **************************************** +' Program Title : 'ȸ ֻμ +' Company : () (053)955-9055 +' Creator : 2005-07-24 +'********************************************************************* +function get_bdm_idx2(bdm_idx) + + +if bdm_idx <> 0 then + + + SQL = "Select bdm_ref from bd_menu_page where bdm_idx = "&bdm_idx + 'response.write sql + set rs_buseo = DbCon.Execute(sql) + + + if rs_buseo.eof then + + get_bdm_idx2 = 0 + + else + + get_bdm_idx2 = rs_buseo(0) + + end if + + Set rs_buseo = nothing +else + + get_bdm_idx2 = 0 + +end if + + +end Function + + + + + + +'************************************************************************************************************** +' Լ +'************************************************************************************************************** + +' ش ڸ Ѵ.(28 31 ߿ ϳε ýۿ ϴ ¥Լ Ͽ Ѵ) +function LastDay(stryear, strmonth) + + intLastDay = 28 + + For d = 29 To 31 step 1 'up to the 31st Ϸ羿 Ű ¥ ΰ ˻Ѵ. + calMonth = Month(DateSerial(stryear, strmonth, d)) + + If cint(calMonth) = cint(strmonth) Then ' ΰ ¥ ϰ + intLastDay = d + else + exit for ' ƴϸ for . + End If + Next + + LastDay = intLastDay + +end function +'****************************************************************************************************************** + + + + +'************************************************************************************************************** +' +'************************************************************************************************************** + +' ׸ +function account_type(gubun, no) + ' + if gubun = "0" then + select case no + case 0 : temp = "޿" + case 1 : temp = "뵷" + case 2 : temp = "ƸƮ" + case 3 : temp = "" + case 4 : temp = "" + case 5 : temp = "" + case 6 : temp = "" + case 7 : temp = "Ա" + case 8 : temp = "Ÿ" + end select + ' + elseif gubun = "1" then + select case no + case 0 : temp = "ĺ" + case 1 : temp = "ְź" + case 2 : temp = "Ǻ" + case 3 : temp = "" + case 4 : temp = "Ժ" + case 5 : temp = "" + case 6 : temp = "ȭȰ" + case 7 : temp = "" + case 8 : temp = "" + case 9 : temp = "" + case 10 : temp = "ź" + case 11 : temp = "ݰ" + case 12 : temp = "Ư" + case 13 : temp = "" + case 14 : temp = "" + case 15 : temp = "Ÿ" + end select + end if + + account_type = temp + +end function + + +' ׸ +function car_type(no) + + select case no + case 1 : temp = "" + case 2 : temp = "" + case 3 : temp = "" + case 4 : temp = "" + case 5 : temp = "" + case 6 : temp = "ڵҺα" + case 7 : temp = "ڵ" + case 8 : temp = "ڵ" + case 9 : temp = "ڵ˻" + case 10 : temp = "ڵĢ" + case 11 : temp = "ڵ" + case 12 : temp = "ڵҸǰ" + case 13 : temp = "ڵǰ" + + end select + + car_type = temp + +end function + +' ׸ +iaccount = 8 ' +eaccount = 15 ' + +'****************************************************************************************************************** + + + + + + + +%> + + + +<% +'************** Information **************************************** +' Program Title : Խ Ų +' Creator : Heo jaehoon +'********************************************************************* +board_skin1_url = site_root_dir_url&"/Program/bbs/skin/1/Imgs" 'Ų1 ̹丮 url +board_skin2_url = site_root_dir_url&"/Program/bbs/skin/2/Imgs" 'Ų2 ̹丮 url +%> + + + + + +<% +'--------------------------------------------------------------------------------------------------------------- +' DDDDD EEEEEE SSSSSS IIIIII GGGGG NN NN +' DD D EE SS II GG N N NN +' DD D EEEEEE SSSSS II GG GGG NN N NN +' DD D EE SS II GG GG NN N N +' DDDDD EEEEEE SSSSSS IIIIII GGGGG NN NN +'--------------------------------------------------------------------------------------------------------------- + +'************** Information **************************************** +' Program Title : 丮/ +' Creator : Heo jaehoon +'********************************************************************* +site_name="۽ý Ver 2.1.1" 'Ʈ + +site_root_dir_path = "E:\Web Service2\SMSVER2" 'α׷ ۵丮 +include_dir_path = site_root_dir_path&"\include" 'Include丮 + +site_root_dir_url = Application("domain1") 'α׷ ۵丮 url +include_dir_url = site_root_dir_url&"/include" 'Include丮 url +common_image_url = site_root_dir_url&"/Imgs" ' ̹丮 url +skin_normal_img = site_root_dir_url&"/program/ebook/user_view/skin/normal" 'ebook ̹丮 url + + + +program_image_url = site_root_dir_url&"/image" 'α׷ ̹ 丮 url +program_dir_url = site_root_dir_url&"/program" 'α׷ 丮 url +program_dir_path = site_root_dir_path&"\program" 'α׷ 丮 path +save_data_path = site_root_dir_path&"\data" 'α׷ 丮 path +save_data_url = site_root_dir_url&"/data" 'α׷ 丮 URL + + + +'޴ ּ.. +'ۼ : +'ۼ : 2005-12-17 +home_webhdd_url = site_root_dir_url&"/webhard/intro.asp" +home_infopia_url = site_root_dir_url&"/infopia/default.asp" +home_eandong_url = site_root_dir_url&"/eandong/default.asp" +home_study_url = site_root_dir_url&"/study/default.asp" +home_private_url = site_root_dir_url&"/infopia/default.asp" 'ӽּ.(̺񼭴 α ǰԲ->Ʈ ...)/program/private +home_sms_url = site_root_dir_url&"/infopia/default.asp" 'ӽּ.(̺񼭴 α ǰԲ->Ʈ ...)/program/sms +club_sms_url = site_root_dir_url&"/club/default.asp" +myhome_sms_url = site_root_dir_url&"/myhome/default.asp" + +sms_image_url = site_root_dir_url&"/program/sms/Imgs" 'ڼ ̹丮 url +sms_url = site_root_dir_url&"/program/sms" 'ڼ 丮 url + + +'************** Information **************************************** +' Program Title : '̵ּ +' Company : () (053)955-9055 +' Creator : 2006-03-14 +'********************************************************************* +Function Back_back(message) + Response.Write"" + Response.End +End Function + +Function Back_back_cnt(message, cnt) + Response.Write"" + Response.End +End Function + +Function Back_back2(message, url) + Response.Write"" + Response.End +End Function + + +Function Back_back3(message, url) + Response.Write"" + Response.End +End Function +'========================================================= + +Function Sung_gong(message) +Response.Write "" +Response.End +End Function + +Function Sung_gong2(message, url) +Response.Write "" +Response.End +End Function + +Function Sung_gong3(message) +Response.Write "" +Response.End +End Function +'************** Information **************************************** +' Program Title : 'üũ +' Company : () (053)955-9055 +' Creator : 2006-03-14 +'********************************************************************* +'Ʈư +Function ChkValSelect(ByVal value1, ByVal value2) + If CStr(value1) = CStr(value2) Then + response.write "selected" + End if +End Function +'üũڽ +Function ChkValChkBox(ByVal value1, ByVal value2) + If CStr(value1) = CStr(value2) Then + response.write "checked" + End if +End Function + + +'************** Information **************************************** +' Program Title : SMS +' Company : () (053)955-9055 +' Creator : 2006-03-17 +'********************************************************************* +Function SmsSend_host(tran_phone, tran_callback, Msg, RDate, s_num) + 'tran_phone = b_phone1&"-"&b_phone2&"-"&b_phone3 '޴» + 'tran_phone = a_smssend_addr '޴» + 'tran_callback = "053-955-9055" ' + 'a_num = ȣ + tran_phone = Replace(tran_phone, "-" , "") + tran_phone = Replace(tran_phone, " " , "") + + message_temp = StringToHTML2(Msg, 80, true) + messageArr = Split(message_temp, "
") + + if clng(smsSelect()) > 0 then + + If UBound(messageArr) > 0 Then + For ii = 0 To UBound(messageArr) + response.write ii&"=ii
" + if clng(smsSelect()) <= 0 Then + Exit for + else + SQL = "Insert into em_tran(tran_id, tran_phone, tran_callback, tran_status, tran_date, tran_msg, tran_etc1, tran_etc2, tran_etc3, tran_etc4) values (" + SQL = SQL & "'"&Request.Cookies("M_id")&"','"&tran_phone&"', '"&tran_callback&"', '1', '"&Rdate&"', '"&ii+1&")"&messageArr(ii)&"','', '"&s_num&"','"&request.cookies("bdm_idx")&"', '"&get_bdm_idx2(request.cookies("bdm_idx"))&"')" + 'response.write sql & "
" + 'response.write "
sql="&sql + 'response.end + dbcon.execute sql + sql = "update member set M_g_sms = M_g_sms - 1 where M_id = '" & Request.Cookies("M_id") & "'" + dbcon.execute sql + End if + next + else + SQL = "Insert into em_tran(tran_id, tran_phone, tran_callback, tran_status, tran_date, tran_msg, tran_etc1, tran_etc2, tran_etc3, tran_etc4) values (" + SQL = SQL & "'"&Request.Cookies("M_id")&"','"&tran_phone&"', '"&tran_callback&"', '1', '"&Rdate&"', '"&Msg&"','', '"&s_num&"', '"&request.cookies("bdm_idx")&"','"&get_bdm_idx2(request.cookies("bdm_idx"))&"')" + 'response.write sql & "
" + 'response.write "
sql="&sql + 'response.end + dbcon.execute sql + sql = "update member set M_g_sms = M_g_sms - 1 where M_id = '" & Request.Cookies("M_id") & "'" + dbcon.execute sql + End if + + + '*********************************************************************************************************************************************** + v_year = year(now()) + v_month = month(now()) + v_day = day(now()) + v_week = weekday(now()) + '-- ó ƴ üũ + sqlc = "select nowcount from bd_counter where info_url = '"&request.cookies("m_id")&"' and nowyear = "& v_year &" and nowmonth = "& v_month &" and nowday = "& v_day &" and nowweek = "& v_week + set rsc = Dbcon.Execute(sqlc) + + if rsc.eof then '-- ó̸ insert + sql = "insert into bd_counter (info_url, nowcount, nowyear, nowmonth, nowday, nowweek) values('"&request.cookies("m_id")&"', 1, "& v_year &", "& v_month &", "& v_day &", "& v_week &")" + + else '-- ó ƴϸ count 1 --> update + v_count = rsc(0)+1 + sql = "update bd_counter set nowcount = "& v_count &" where info_url = '"&request.cookies("m_id")&"' and nowyear = "& v_year &" and nowmonth = "& v_month &" and nowday = "& v_day &" and nowweek = "& v_week + end if + set rsc=Nothing + Dbcon.Execute sql + + End if + '*********************************************************************************************************************************************** +End Function + + +'************** Information **************************************** +' Program Title : SMS +' Company : () (053)955-9055 +' Creator : 2006-03-17 +'********************************************************************* +Function SmsSend(tran_phone, tran_callback, Msg, RDate, s_num) + 'tran_phone = b_phone1&"-"&b_phone2&"-"&b_phone3 '޴» + 'tran_phone = a_smssend_addr '޴» + 'tran_callback = "053-955-9055" ' + 'a_num = ȣ + tran_phone = Replace(tran_phone, "-" , "") + tran_phone = Replace(tran_phone, " " , "") + + message_temp = StringToHTML2(Msg, 80, true) + messageArr = Split(message_temp, "
") + + if clng(smsSelect()) <= 0 then Back_back2 " Ǽ մϴ.", request.servervariables("http_referer") + + If UBound(messageArr) > 0 Then + For ii = 0 To UBound(messageArr) + response.write ii&"=ii
" + if clng(smsSelect()) <= 0 then Back_back2 " Ǽ մϴ.", request.servervariables("http_referer") + SQL = "Insert into em_tran(tran_id, tran_phone, tran_callback, tran_status, tran_date, tran_msg, tran_etc1, tran_etc2, tran_etc3, tran_etc4) values (" + SQL = SQL & "'"&Request.Cookies("M_id")&"','"&tran_phone&"', '"&tran_callback&"', '1', '"&Rdate&"', '"&ii+1&")"&messageArr(ii)&"','', '"&s_num&"','"&request.cookies("bdm_idx")&"', '"&get_bdm_idx2(request.cookies("bdm_idx"))&"')" + 'response.write sql & "
" + 'response.write "
sql="&sql + 'response.end + dbcon.execute sql + sql = "update member set M_g_sms = M_g_sms - 1 where M_id = '" & Request.Cookies("M_id") & "'" + dbcon.execute sql + next + else + SQL = "Insert into em_tran(tran_id, tran_phone, tran_callback, tran_status, tran_date, tran_msg, tran_etc1, tran_etc2, tran_etc3, tran_etc4) values (" + SQL = SQL & "'"&Request.Cookies("M_id")&"','"&tran_phone&"', '"&tran_callback&"', '1', '"&Rdate&"', '"&Msg&"','', '"&s_num&"', '"&request.cookies("bdm_idx")&"','"&get_bdm_idx2(request.cookies("bdm_idx"))&"')" + 'response.write sql & "
" + 'response.write "
sql="&sql + 'response.end + dbcon.execute sql + sql = "update member set M_g_sms = M_g_sms - 1 where M_id = '" & Request.Cookies("M_id") & "'" + dbcon.execute sql + End if + + + '*********************************************************************************************************************************************** + v_year = year(now()) + v_month = month(now()) + v_day = day(now()) + v_week = weekday(now()) + '-- ó ƴ üũ + sqlc = "select nowcount from bd_counter where info_url = '"&request.cookies("m_id")&"' and nowyear = "& v_year &" and nowmonth = "& v_month &" and nowday = "& v_day &" and nowweek = "& v_week + set rsc = Dbcon.Execute(sqlc) + + if rsc.eof then '-- ó̸ insert + sql = "insert into bd_counter (info_url, nowcount, nowyear, nowmonth, nowday, nowweek) values('"&request.cookies("m_id")&"', 1, "& v_year &", "& v_month &", "& v_day &", "& v_week &")" + + else '-- ó ƴϸ count 1 --> update + v_count = rsc(0)+1 + sql = "update bd_counter set nowcount = "& v_count &" where info_url = '"&request.cookies("m_id")&"' and nowyear = "& v_year &" and nowmonth = "& v_month &" and nowday = "& v_day &" and nowweek = "& v_week + end if + set rsc=Nothing + Dbcon.Execute sql + + '*********************************************************************************************************************************************** +End Function + + +'************** Information **************************************** +' Program Title : SMS +' Company : () (053)955-9055 +' Creator : 2006-03-17 +'********************************************************************* +Function SmsSend_s(tran_phone, tran_callback, Msg, RDate, s_num) + 'tran_phone = b_phone1&"-"&b_phone2&"-"&b_phone3 '޴» + 'tran_phone = a_smssend_addr '޴» + 'tran_callback = "053-955-9055" ' + 'a_num = ȣ + tran_phone = Replace(tran_phone, "-" , "") + tran_phone = Replace(tran_phone, " " , "") + + message_temp = StringToHTML2(Msg, 80, true) + messageArr = Split(message_temp, "
") + + + If UBound(messageArr) > 0 Then + For ii = 0 To UBound(messageArr) + 'response.write ii&"=ii
" + + SQL = "Insert into em_tran(tran_id, tran_phone, tran_callback, tran_status, tran_date, tran_msg, tran_etc1, tran_etc2, tran_etc3, tran_etc4) values (" + SQL = SQL & "'"&Request.Cookies("M_id")&"','"&tran_phone&"', '"&tran_callback&"', '1', '"&Rdate&"', '"&ii+1&")"&messageArr(ii)&"','', '"&s_num&"','"&request.cookies("bdm_idx")&"', '"&get_bdm_idx2(request.cookies("bdm_idx"))&"')" + 'response.write sql & "
" + 'response.write "
sql="&sql + 'response.end + dbcon.execute sql + + next + else + SQL = "Insert into em_tran(tran_id, tran_phone, tran_callback, tran_status, tran_date, tran_msg, tran_etc1, tran_etc2, tran_etc3, tran_etc4) values (" + SQL = SQL & "'"&Request.Cookies("M_id")&"','"&tran_phone&"', '"&tran_callback&"', '1', '"&Rdate&"', '"&Msg&"','', '"&s_num&"', '"&request.cookies("bdm_idx")&"','"&get_bdm_idx2(request.cookies("bdm_idx"))&"')" + 'response.write sql & "
" + 'response.write "
sql="&sql + 'response.end + dbcon.execute sql + End if + + + '*********************************************************************************************************************************************** + v_year = year(now()) + v_month = month(now()) + v_day = day(now()) + v_week = weekday(now()) + '-- ó ƴ üũ + sqlc = "select nowcount from bd_counter where info_url = '"&request.cookies("m_id")&"' and nowyear = "& v_year &" and nowmonth = "& v_month &" and nowday = "& v_day &" and nowweek = "& v_week + set rsc = Dbcon.Execute(sqlc) + + if rsc.eof then '-- ó̸ insert + sql = "insert into bd_counter (info_url, nowcount, nowyear, nowmonth, nowday, nowweek) values('"&request.cookies("m_id")&"', 1, "& v_year &", "& v_month &", "& v_day &", "& v_week &")" + + else '-- ó ƴϸ count 1 --> update + v_count = rsc(0)+1 + sql = "update bd_counter set nowcount = "& v_count &" where info_url = '"&request.cookies("m_id")&"' and nowyear = "& v_year &" and nowmonth = "& v_month &" and nowday = "& v_day &" and nowweek = "& v_week + end if + set rsc=Nothing + Dbcon.Execute sql + + '*********************************************************************************************************************************************** +End Function + + + +'************** Information **************************************** +' Program Title : SMS +' Company : () (053)955-9055 +' Creator : 2006-03-17 +'********************************************************************* +Function SmsSend_2(tran_phone, tran_callback, Msg, RDate, a_num, qry, rowcnt) + 'tran_phone = b_phone1&"-"&b_phone2&"-"&b_phone3 '޴» + 'tran_phone = a_smssend_addr '޴» + 'tran_callback = "053-955-9055" ' + 'a_num = ȣ + tran_phone = Replace(tran_phone, "-" , "") + tran_phone = Replace(tran_phone, " " , "") + + message_temp = StringToHTML2(Msg, 80, true) + messageArr = Split(message_temp, "
") + + if clng(smsSelect()) <= 0 then Back_back2 " Ǽ մϴ.", request.servervariables("http_referer") + + If UBound(messageArr) > 0 Then + For ii = 0 To UBound(messageArr) + 'response.write ii&"=ii
" + qry_value = Replace(qry, Msg, ii+1&")"&messageArr(ii) ) + if clng(smsSelect()) <= 0 then Back_back2 " Ǽ մϴ.", request.servervariables("http_referer") + + sql = "Insert into em_tran(tran_id, tran_phone, tran_callback, tran_status, tran_date, tran_msg, tran_etc1, tran_etc2, tran_etc3, tran_etc4) " & qry_value + + 'select '"&Request.Cookies("M_id")&"', m_mobile, '"&callback&"', '1', getdate(), '"&message&"', '', '', '"&request.cookies("bdm_idx")&"','"&get_bdm_idx(request.cookies("bdm_idx"))&"' from member" + + + 'SQL = "Insert into em_tran(tran_id, tran_phone, tran_callback, tran_status, tran_date, tran_msg, tran_etc1, tran_etc2, tran_etc3, tran_etc4) " &qry + 'response.write sql & "
" + 'response.write "
sql="&sql + 'response.end + dbcon.execute sql + sql = "update member set M_g_sms = M_g_sms - "&rowcnt&" where M_id = '" & Request.Cookies("M_id") & "'" + dbcon.execute sql + next + else + SQL = "Insert into em_tran(tran_id, tran_phone, tran_callback, tran_status, tran_date, tran_msg, tran_etc1, tran_etc2, tran_etc3, tran_etc4) " &qry + + + '"select '"&Request.Cookies("M_id")&"', m_mobile, '"&callback&"', '1', getdate(), '"&message&"', '', '', '"&request.cookies("bdm_idx")&"','"&get_bdm_idx(request.cookies("bdm_idx"))&"' from member" + 'response.write sql & "
" + 'response.write "
sql="&sql + 'response.end + dbcon.execute sql + sql = "update member set M_g_sms = M_g_sms - "&rowcnt&" where M_id = '" & Request.Cookies("M_id") & "'" + 'response.write sql + dbcon.execute sql + End if + + + '*********************************************************************************************************************************************** + v_year = year(now()) + v_month = month(now()) + v_day = day(now()) + v_week = weekday(now()) + '-- ó ƴ üũ + sqlc = "select nowcount from bd_counter where info_url = '"&request.cookies("m_id")&"' and nowyear = "& v_year &" and nowmonth = "& v_month &" and nowday = "& v_day &" and nowweek = "& v_week + set rsc = Dbcon.Execute(sqlc) + + if rsc.eof then '-- ó̸ insert + sql = "insert into bd_counter (info_url, nowcount, nowyear, nowmonth, nowday, nowweek) values('"&request.cookies("m_id")&"', '"&rowcnt&"', "& v_year &", "& v_month &", "& v_day &", "& v_week &")" + + else '-- ó ƴϸ count 1 --> update + v_count = rsc(0)+rowcnt + sql = "update bd_counter set nowcount = "& v_count &" where info_url = '"&request.cookies("m_id")&"' and nowyear = "& v_year &" and nowmonth = "& v_month &" and nowday = "& v_day &" and nowweek = "& v_week + end if + set rsc=Nothing + Dbcon.Execute sql + + '*********************************************************************************************************************************************** +End Function + + +'************** Information **************************************** +' Program Title : SMS +' Company : () (053)955-9055 +' Creator : 2006-03-17 +'********************************************************************* +Function SmsSend_s_2(tran_phone, tran_callback, Msg, RDate, a_num, qry, rowcnt) + 'tran_phone = b_phone1&"-"&b_phone2&"-"&b_phone3 '޴» + 'tran_phone = a_smssend_addr '޴» + 'tran_callback = "053-955-9055" ' + 'a_num = ȣ + tran_phone = Replace(tran_phone, "-" , "") + tran_phone = Replace(tran_phone, " " , "") + + message_temp = StringToHTML2(Msg, 80, true) + messageArr = Split(message_temp, "
") + + + If UBound(messageArr) > 0 Then + For ii = 0 To UBound(messageArr) + 'response.write ii&"=ii
" + qry_value = Replace(qry, Msg, ii+1&")"&messageArr(ii) ) + + sql = "Insert into em_tran(tran_id, tran_phone, tran_callback, tran_status, tran_date, tran_msg, tran_etc1, tran_etc2, tran_etc3, tran_etc4) " & qry_value + + 'response.write sql & "
" + 'response.write "
sql="&sql + 'response.end + dbcon.execute sql + next + else + SQL = "Insert into em_tran(tran_id, tran_phone, tran_callback, tran_status, tran_date, tran_msg, tran_etc1, tran_etc2, tran_etc3, tran_etc4) " &qry + + + '"select '"&Request.Cookies("M_id")&"', m_mobile, '"&callback&"', '1', getdate(), '"&message&"', '', '', '"&request.cookies("bdm_idx")&"','"&get_bdm_idx(request.cookies("bdm_idx"))&"' from member" + 'response.write sql & "
" + 'response.write "
sql="&sql + 'response.end + dbcon.execute sql + + End if + + + '*********************************************************************************************************************************************** + v_year = year(now()) + v_month = month(now()) + v_day = day(now()) + v_week = weekday(now()) + '-- ó ƴ üũ + sqlc = "select nowcount from bd_counter where info_url = '"&request.cookies("m_id")&"' and nowyear = "& v_year &" and nowmonth = "& v_month &" and nowday = "& v_day &" and nowweek = "& v_week + set rsc = Dbcon.Execute(sqlc) + + if rsc.eof then '-- ó̸ insert + sql = "insert into bd_counter (info_url, nowcount, nowyear, nowmonth, nowday, nowweek) values('"&request.cookies("m_id")&"', '"&rowcnt&"', "& v_year &", "& v_month &", "& v_day &", "& v_week &")" + + else '-- ó ƴϸ count 1 --> update + v_count = rsc(0)+rowcnt + sql = "update bd_counter set nowcount = "& v_count &" where info_url = '"&request.cookies("m_id")&"' and nowyear = "& v_year &" and nowmonth = "& v_month &" and nowday = "& v_day &" and nowweek = "& v_week + end if + set rsc=Nothing + Dbcon.Execute sql + + '*********************************************************************************************************************************************** +End Function + + + + +Function SMSdateChk(dateval, hourval, minval) + + If CDate(dateval) > Date() Then '¥ ó¥ ũ + SMSdateChk = True + ElseIf CDate(dateval) = Date() Then '¥ ٸ + If CInt(hourval) > CInt(hour(now)) Then '¥ ð ũٸ + SMSdateChk = True + ElseIf Not(CInt(hourval) < CInt(hour(now))) And CInt(minval) > Minute(now) Then'ð ʰ ũٸ + SMSdateChk = True + Else + SMSdateChk = false + End If + Else + SMSdateChk = False + End if +End function + + + +'=======================ȸ Ǽ ========================================================= +Function smsSelect() + Dim strConnect, Db, sql, rs_sms + strConnect="Provider=SQLOLEDB.1;Data Source=(local);Initial catalog="&Application("DB")&";user ID="&Application("DB_id")&";Password="&Application("DB_pwd") + Set Db=Server.CreateObject("ADODB.Connection") + Db.Open strConnect + sql = "select M_g_sms from member where M_id = '" & Request.Cookies("M_id") & "'" + Set rs_sms = Db.Execute(sql) + If rs_sms.bof Or rs_sms.eof Then + smsSelect = 0 + Else + smsSelect = rs_sms(0) + End If + Set rs_sms = Nothing + + Db.close + Set Db = nothing +End Function + + +Function smsSelect2(m_id) + Dim strConnect, Db, sql, rs_sms + strConnect="Provider=SQLOLEDB.1;Data Source=(local);Initial catalog="&Application("DB")&";user ID="&Application("DB_id")&";Password="&Application("DB_pwd") + Set Db=Server.CreateObject("ADODB.Connection") + Db.Open strConnect + sql = "select M_g_sms from member where M_id = '" & m_id & "'" + Set rs_sms = Db.Execute(sql) + If rs_sms.bof Or rs_sms.eof Then + smsSelect2 = 0 + Else + smsSelect2 = rs_sms(0) + End If + Set rs_sms = Nothing + + Db.close + Set Db = nothing +End Function + +'=======================ȸ ========================================================= +Function smsMail() + Dim strConnect, Db, sql, rs_mail + strConnect="Provider=SQLOLEDB.1;Data Source=(local);Initial catalog="&Application("DB")&";user ID="&Application("DB_id")&";Password="&Application("DB_pwd") + Set Db=Server.CreateObject("ADODB.Connection") + Db.Open strConnect + sql = "select M_g_mail from member where M_id = '" & Request.Cookies("M_id") & "'" + Set rs_mail = Db.Execute(sql) + If rs_mail.bof Or rs_mail.eof Then + smsMail = 0 + Else + smsMail = rs_mail(0) + End If + Set rs_mail = Nothing + + Db.close + Set Db = nothing +End Function + + +'=================== Ҽ DZ ȣ ˾Ƴ========================== +Function mysilguk() + sql = "select b.bdm_ref from member as a inner join bd_menu_page b on a.bdm_idx = b.bdm_idx where a.M_id = '" & Request.Cookies("m_id") & "'" + Set rs = Dbcon.Execute(sql) + If rs.bof Or rs.eof Then + mysilguk = null + Else + mysilguk = cint(rs(0)) + End If + Set rs = nothing +End function +'======================================================================= + +'************** Information **************************************** +' Program Title : '䰶϶..ù°̹ ' +' Company : () (053)955-9055 +' Creator : 2007-03-29 +'********************************************************************* +function bbs_getphoto(a_tablename,is_b_num) + + sql = "select top 1 f_filename from bbs_file where f_b_tablename = '" & a_tablename & "' and f_b_num="&is_b_num&" order by f_sort" + set rs_getpt = dbcon.execute(sql) + + If not rs_getpt.eof then + bbs_getphoto = rs_getpt(0) + Else + bbs_getphoto = "noimage" + End if + + + set rs_getpt = nothing + +end Function + + +'************** Information **************************************** +' Program Title : 'bbs_href_type (䰶 ) +' Company : () (053)955-9055 +' Creator : 2007-03-29 +'********************************************************************* +sub bbs_href_type() + + bbs_href_type_link1 = "" + 'bbs_href_type_link2 = "" + bbs_href_type_link2 = "" + + + if a_type = "1" or Bl_ad_cms = "Y" then ' + + response.write bbs_href_type_link1 + + elseif a_type = "2" then' + + response.write bbs_href_type_link2 + + elseif a_type = "3" then'/ + + if b_open = "1" or b_open = "" Then + + response.write bbs_href_type_link1 + + elseif b_open = "2" then + + response.write bbs_href_type_link2 + + end if + + end if + +end Sub + + +'************** Information **************************************** +' Program Title : get_time +' Company : () (053)955-9055 +' Creator : 2007-03-30 +'********************************************************************* +function get_time(time_value) + + If time_value <> "" Then + + Select Case time_value + + Case "1" + time_value2 = "1" + Case "2" + time_value2 = "2" + Case "3" + time_value2 = "3" + Case "4" + time_value2 = "4" + Case "5" + time_value2 = "5" + Case "6" + time_value2 = "6" + Case "7" + time_value2 = "7" + Case "8" + time_value2 = "8" + Case "9" + time_value2 = "9" + Case "10" + time_value2 = "10" + Case "11" + time_value2 = "11" + Case "12" + time_value2 = "12" + Case "1" + time_value2 = "13" + Case "2" + time_value2 = "14" + Case "3" + time_value2 = "15" + Case "4" + time_value2 = "16" + Case "5" + time_value2 = "17" + Case "6" + time_value2 = "18" + Case "7" + time_value2 = "19" + Case "8" + time_value2 = "20" + Case "9" + time_value2 = "21" + Case "10" + time_value2 = "22" + Case "11" + time_value2 = "23" + Case "12" + time_value2 = "24" + End select + End If + + + get_time = time_value2 + +end Function + +'************** Information **************************************** +' Program Title : 'ڵ̸' +' Company : () (053)955-9055 +' Creator : 2005-07-24 +'********************************************************************* +function Update_bbs_susin_view(a_tablename,b_num,s_do_id) + + sql="UPDATE bbs_susin SET" + sql = sql& " s_view = 'Y'" + + sql = sql& " WHERE s_tablename = '" & a_tablename & "' and s_b_num="&b_num&" and s_do_id ='"&s_do_id&"'" + + Dbcon.Execute(SQL) + +end Function + + + + + +'************** Information **************************************** +' Program Title : +' Company : () (053)955-9055 +' Creator : 2007-04-04 +'********************************************************************* +function SELECT_ARY_RS(SQL) + + + If SQL <> "" Then + + Dbcon.Execute(SQL) + + 'SQL = "select a_num, from bbs_ad_cms order by "& sorder + SET DBMS_RS = Dbcon.Execute(SQL) + + + If DBMS_RS.bof Or DBMS_RS.eof Then + SELECT_ARY_RS = null + Else + SELECT_ARY_RS = DBMS_RS.getrows + + End If + + Set DBMS_RS = Nothing + + End if + + +end Function + + +'************** Information **************************************** +' Program Title : μidx +' Company : () (053)955-9055 +' Creator : 2007-03-09 +'********************************************************************* +function get_bdm_idx(m_id) + + sql = "Select bdm_idx from member where m_id='"&m_id&"'" + Set rs = DbCon.Execute(SQL) + + if not rs.eof then + get_bdm_idx = Rs(0) + else + get_bdm_idx = "" + end if + + Set rs = nothing + +end function + + + + +'=======================ȭȣ ========================== +Function phoneValue(value) + 'response.write value + phone_arr_temp = value + '---------------ʿ ڿ ------------------ + phone_arr_temp = Replace(phone_arr_temp,")","") + phone_arr_temp = Replace(phone_arr_temp,"(","") + phone_arr_temp = Replace(phone_arr_temp,"-","") + phone_arr_temp = Replace(phone_arr_temp," ","") + phone_arr_temp = Replace(phone_arr_temp,",","") + phone_arr_temp = Replace(phone_arr_temp,"","") + phone_arr_temp = Replace(phone_arr_temp,"*","") + '---------------ʿ ڿ ------------------ + + 'phone_arr_temp = Split(mem_list(4, i), "-") + + If Left(phone_arr_temp, 2) = "00" Then 'ȣ 0 2  + phone_arr_temp = Mid(phone_arr_temp, 2) + End if + 'response.write "["& mem_list(4, i) &"], " + + '---------------ȭȣ ȭ------------------ + Select Case Len(phone_arr_temp) + Case 7 + phone_arr = Array("053",Left(phone_arr_temp,3),right(phone_arr_temp,4)) + Case 8 + phone_arr = Array("053",Left(phone_arr_temp,4),right(phone_arr_temp,4)) + Case 10 + phone_arr = Array(Left(phone_arr_temp,3),mid(phone_arr_temp,4,3),right(phone_arr_temp,4)) + Case 11 + phone_arr = Array(Left(phone_arr_temp,3),mid(phone_arr_temp,4,4),right(phone_arr_temp,4)) + Case 12 + phone_arr = Array(Left(phone_arr_temp,4),mid(phone_arr_temp,5,4),right(phone_arr_temp,4)) + Case Else + phone_arr = Array("","","") + End select + '---------------ȭȣ ȭ------------------ + '--------------- ڳ--------------- + If IsNumeric(phone_arr(0)) And IsNumeric(phone_arr(1)) And IsNumeric(phone_arr(2)) Then + M_phone = phone_arr(0) & phone_arr(1) & phone_arr(2) + Else + M_phone = "--" + End If + '--------------- ڳ--------------- + phoneValue = M_phone +End Function + +'=======================ȭȣ ========================== + +'************** Information **************************************** +' Program Title : 'ڵ̸' +' Company : () (053)955-9055 +' Creator : 2005-07-24 +'********************************************************************* +function get_document_cnt(m_id) + + + SQL = "Select count(do_idx) from document where do_id='"&m_id&"' and do_count=0 and do_keep <>'3'" + Set rs_view = DbCon.Execute(SQL) + + + get_document_cnt = rs_view(0) + + + set rs_view = nothing + +end Function + + +'======================================================================================== +'=================================≠ ߼2(ܺsmtp)======================== +'======================================================================================== +Function sendMail(from_add, to_add, cc, bcc, subject, body) + + Const cdoSendUsingMethod = "http://schemas.microsoft.com/cdo/configuration/sendusing" + Const cdoSendUsingPort = 2 + Const cdoSMTPServer = "http://schemas.microsoft.com/cdo/configuration/smtpserver" + Const cdoSMTPServerPort = "http://schemas.microsoft.com/cdo/configuration/smtpserverport" + Const cdoSMTPConnectionTimeout = "http://schemas.microsoft.com/cdo/configuration/smtpconnectiontimeout" + Const cdoSMTPAccountName = "http://schemas.microsoft.com/cdo/configuration/smtpaccountname" + Const cdoSMTPAuthenticate = "http://schemas.microsoft.com/cdo/configuration/smtpauthenticate" + Const cdoBasic = 1 + Const cdoSendUserName = "http://schemas.microsoft.com/cdo/configuration/sendusername" + Const cdoSendPassword = "http://schemas.microsoft.com/cdo/configuration/sendpassword" + + Dim objConfig ' As CDO.Configuration + Dim objMessage ' As CDO.Message + Dim Fields ' As ADODB.Fields + + ' Get a handle on the config object and it's fields + Set objConfig = Server.CreateObject("CDO.Configuration") + Set Fields = objConfig.Fields + + ' Set config fields we care about + With Fields + .Item(cdoSendUsingMethod) = cdoSendUsingPort + .Item(cdoSMTPServer) = "mail.hanafos.com" + .Item(cdoSMTPServerPort) = 25 + .Item(cdoSMTPAuthenticate) = cdoBasic + .Item(cdoSendUserName) = "sp1000je@hanafos.com" + .Item(cdoSendPassword) = "1472lo" + + .Update + End With + + Set objMessage = Server.CreateObject("CDO.Message") + + Set objMessage.Configuration = objConfig + + With objMessage + .To = to_add + .From = from_add + .cc = cc + .bcc = bcc + .Subject = subject + .HTMLBody = body + .Send + End With + + 'Response.Write "Success!!" + + Set Fields = Nothing + Set objMessage = Nothing + Set objConfig = Nothing + +End Function + + + +'======================================================================================== +'=================================≠ ߼2(ܺsmtp)======================== +'======================================================================================== +Function sendMail_tabs(from_add, to_add, cc, bcc, subject, body) + + + '///////////////////////////////////////////////////// +'// +Const TEXT_MSG = 0 +Const HTML_MSG = 1 + +Const ENCODING_BASE64 = 0 +Const ENCODING_QP = 1 +Const ENCODING_8BIT = 2 + +Const PRIORITY_HIGH = 0 +Const PRIORITY_NORMAL = 1 +Const PRIORITY_LOW = 2 + +Dim Mail, i, j + +'// ü +Set Mail = Server.CreateObject("Tabs.Mailer.1") + +For i = 1 To 5 + '// Mail + Mail.ServerIp = "219.253.180.226" + Mail.ServerPort = 6700 + '// Ϸ ۽ÿ ʿ , Էؾ մϴ. + '// ȣ Ϸ Ȯ ֽϴ. + Mail.AuthId = "ad_cms" + Mail.AuthPwd = "1" + + Mail.BodyType = HTML_MSG + Mail.Encoding = ENCODING_BASE64 + Mail.Charset = "Euc-kr" + Mail.FromField "from@domain.org", "»̸" ' ޱ + Mail.Subject = "ȸ " + Mail.AddAttachFile "C:\WINNT\Cursors\size1_i.cur" '// ÷ + Mail.AlterMessage = "HTML , ޽ Դϴ." + Mail.Message = "ȸ в, " + + '// + 'Mail.ScheduleTime = "2003/01/01/01/01" '// //// + + For j = 1 To 1 + '// ޽ ޴ + Mail.AddToAddr "to" &j &"@domain.com", "޴»̸" &j + Next + + '// ߼ + If Mail.Send() Then '// Send1() ޼嵵 + Response.Write "߼ " + Else + Response.Write "߼ , ڵ: " &Mail.LastError &", : " &Mail.GetLastErrorDesc + End If + + '// + 'If Mail.SendEx("c:\temp\mail") Then + ' Response.Write " " + 'Else + ' Response.Write " , ڵ: " &Mail.LastError &", : " &Mail.GetLastErrorDesc + 'End If + + '// ʱȭ + Mail.Reset +Next + +'// ü +Set Mail = Nothing + + + + +End function + + + + +'************** Information **************************************** +' Program Title : 'θƮ +' Company : () (053)955-9055 +' Creator : 2006-03-14 +'********************************************************************* + +Function list(table, a_num) + 'table = "bbs_6" + Select Case table + Case "bbs_3" + chk_on = "1" + url = "/sub04/04_01.asp?chk_on=1" + Case "bbs_4" + chk_on = "2" + url = "/sub04/04_02.asp?chk_on=2" + Case "bbs_13" + chk_on = "8" + End Select + + Dim b_num, b_subject, b_regdate, b_content, i + + sql = "select top 2 b_num, b_subject, b_regdate from " & table & " where b_look = 'Y' and b_noticeChk <> 'Y' order by b_regdate desc" + Set rs = Dbcon.Execute( sql ) + + If rs.bof Or rs.eof Then + list_data = null + Else + list_data = rs.getrows + End If + Set rs = nothing + + If IsNull(list_data) Then +%> + + + + +
ϴ.
+<% + else +%> + +<% + For i = 0 To UBound(list_data, 2) + b_num = "" + b_regdate = "" + b_subject = "" + + If UBound(list_data, 2) >= i Then + b_num = list_data(0,i) + b_regdate = Replace(Left(list_data(2, i), 10), "-", ".") + b_subject = StringToHTML( list_data(1, i), 30, false ) + End If +%> + + + +<% + next +%> +
<%=b_subject%>
+<% + End if +End Function + + +'************** Information **************************************** +' Program Title : select +' Company : () (053)955-9055 +' Creator : 2007-03-08 +'********************************************************************* +'ʵ尡 +'ѷڵ常 ҷö +'ex) SelectQuery("filed1, filed2", "table", "where idx = 1") + + + +Function SelectQuery(R_Fields, table, where) + + Dim loop_i, R_Fields_arr, rs + R_Fields = Replace(R_Fields, " ", "") + R_Fields_arr = Split(R_Fields, ",") + + where = " " & where + execute("sql = ""select """) + + For loop_i = 0 To UBound(R_Fields_arr) + + execute("sql = sql & """&R_Fields_arr(loop_i)&"""") + + If loop_i < UBound(R_Fields_arr) Then sql = sql & "," + next + execute("sql = sql & "" from " &table& " " & where&"""") + 'response.write sql + + execute("set rs = Dbcon.Execute( sql )") + For loop_i = 0 To UBound(R_Fields_arr) + execute(R_Fields_arr(loop_i)&" = trim(rs("""&R_Fields_arr(loop_i)&"""))") + ' execute("response.write rs("""&filed_arr(i)&""") & ""
""") + Next + +End Function + +Function InsertQuery(R_Fields, table) + Dim i, R_Fields_arr + R_Fields = Replace(R_Fields, " ", "") + R_Fields_arr = Split(R_Fields, ",") + + execute("sql = ""insert into "&table&"("&R_Fields&") values(""") + + For i = 0 To UBound(R_Fields_arr) + + execute("sql = sql & ""'""&"&R_Fields_arr(i)&"&""'""") + + If i < UBound(R_Fields_arr) Then sql = sql & "," + next + execute("sql = sql & "")""") + 'response.write sql + + Dbcon.Execute sql + +End Function + +'************** Information **************************************** +' Program Title : update +' Company : () (053)955-9055 +' Creator : 2007-03-08 +'********************************************************************* +'ʵ尡 +'ex) UpdateQuery("filed1, filed2", "table", "where idx = 1") + +Function UpdateQuery(R_Fields, table, where) + + Dim i, R_Fields_arr + R_Fields = Replace(R_Fields, " ", "") + R_Fields_arr = Split(R_Fields, ",") + + execute("sql = ""update "&table&" set """) + + For i = 0 To UBound(R_Fields_arr) + + execute("sql = sql & """&R_Fields_arr(i)&" = '""&"&R_Fields_arr(i)&"&""'""") + + If i < UBound(R_Fields_arr) Then sql = sql & "," + next + execute("sql = sql & where") + 'response.write sql + + Dbcon.Execute sql + +End Function + +%> + + +<% +'--------------------------------------------------------------------------------------------------------------- +' DDDDD EEEEEE SSSSSS IIIIII GGGGG NN NN +' DD D EE SS II GG N N NN +' DD D EEEEEE SSSSS II GG GGG NN N NN +' DD D EE SS II GG GG NN N N +' DDDDD EEEEEE SSSSSS IIIIII GGGGG NN NN +'--------------------------------------------------------------------------------------------------------------- + + +'************** Information **************************************** +' Program Title : 丮/ +' Creator : Heo jaehoon +'********************************************************************* +site_name="SMS, Mail ȣ!! ȿ ޽¡ý" 'Ʈ + + + +webhard_image_url = site_root_dir_url&"/Program/webhdd/imgs" 'α׷ 丮 URL + + + +'޴ ּ.. +'ۼ : +'ۼ : 2005-12-17 +home_webhdd_url = site_root_dir_url&"/program/member/login.asp" + +home_search_url = site_root_dir_url&"/search/default.asp" + +main_url = site_root_dir_url&"/default.asp" + +%> \ No newline at end of file diff --git a/include/function/default_func.asp_old b/include/function/default_func.asp_old new file mode 100644 index 0000000..7fdf3b9 --- /dev/null +++ b/include/function/default_func.asp_old @@ -0,0 +1,2023 @@ +<% +'------------- List --------------------------------------------------- +'1. ڿóԼ1 - InputValue(strvalue) +'2. ڿóԼ2 - InputValue2(strvalue) -->textareaÿ.. +'3. зϱ - fun_cateLName(CateL_idx) +'4. Һзϱ - fun_cateSName(CateL_idx, CateS_idx) +'5. Ϸ ̱ϱ - mnai (ssn) +'6. α˻Ÿ - TopSearch_Keyword(val) +'7. DBConnection - dbconnect() ->subԼ +'8. üũ - security_admin() +'9. ijʱȭ - no_cache() +'10. ˻ - FolderCreate(strDir) +'11. DB - DBnothing() -->.. +'12. 콺û - trmouseover(clr) +'13. ڵ¿ - RSnothing(rsobj) +'14. ŸƲ + +'15. Խ ˾Ƴ bbs_name_str(a_num) +'16. ˾¸ popup_view() +'---------------------------------------------------------------------- + + + +'Set func = server.CreateObject("func.sites") + + + +'************** Information **************************************** +' Program Title : ڿó1 +' Company : () (053)955-9055 +' Creator : 2004. 03. 05 +'********************************************************************* +'function InputValue(strvalue) + +' strvalue = trim(strvalue) +' strvalue = Replace(strvalue,"'","''") + 'strvalue = Replace(strvalue,chr(34), """) + 'strvalue = Replace(strvalue,",", "") + 'strvalue = Replace(strvalue,"%", "") + 'strvalue = Replace(strvalue,"<", "<") + 'strvalue = Replace(strvalue,">", ">") + 'strvalue = Replace(strvalue, "", "") + 'strvalue = Replace(strvalue, "", "") + 'strvalue = Replace(strvalue,chr(13),"
") + 'strvalue = Replace(strvalue,"\","") + ' strvalue = Replace(strvalue," ","  ") + ' strvalue = Replace(strvalue,"\t","   ") + +' InputValue = strvalue +'end function + + + +'function InputValue(strvalue) + +' strvalue = func.InputValue(strvalue) +' InputValue = strvalue +'end function + + + +'************** Information **************************************** +' Program Title : ڿó2 +' Company : () (053)955-9055 +' Creator : 2004. 03. 05 +'********************************************************************* +'function InputValue2(strvalue) + + 'strvalue = trim(strvalue) + 'strvalue = Replace(strvalue,"'","''") + 'strvalue = Replace(strvalue,",", "") + 'strvalue = Replace(strvalue,"%", "") + 'strvalue = Replace(strvalue,"<", "<") + 'strvalue = Replace(strvalue,">", ">") + 'strvalue = Replace(strvalue, "", "") + 'strvalue = Replace(strvalue, "", "") + 'strvalue = Replace(strvalue,chr(13),"
") + 'strvalue = Replace(strvalue,"\","") + ' strvalue = Replace(strvalue," ","  ") + ' strvalue = Replace(strvalue,"\t","   ") + +' InputValue2 = strvalue +'end function + +'************** Information **************************************** +' Program Title : ڿó1 +' Company : () (053)955-9055 +' Creator : 2004. 03. 05 +'********************************************************************* +function InputValue(strvalue) + + strvalue = trim(strvalue) + strvalue = Replace(strvalue,"'","''") + strvalue = Replace(strvalue,chr(34), """) + strvalue = Replace(strvalue, "", "") + strvalue = Replace(strvalue, "", "") + + InputValue = strvalue +end function + + + +'************** Information **************************************** +' Program Title : ڿó2 +' Company : () (053)955-9055 +' Creator : 2004. 03. 05 +'********************************************************************* +function InputValue2(strvalue) + + strvalue = trim(strvalue) + strvalue = Replace(strvalue,"'","''") + strvalue = Replace(strvalue, "", "") + strvalue = Replace(strvalue, "", "") + + InputValue2 = strvalue +end function + +'************** Information **************************************** +' Program Title : ڿó3 +' Company : () (053)955-9055 +' Creator : 2006. 3. 14 +'********************************************************************* +Function InputValue3( CheckValue ) +CheckValue = replace(CheckValue, "&" , "&") +CheckValue = replace(CheckValue, "<", "<") +CheckValue = replace(CheckValue, ">", ">") +CheckValue = replace(CheckValue, "'", "`") +CheckValue = replace(CheckValue, " ", "  ") +CheckValue = replace(CheckValue, vbcrlf,"
") +InputValue3 = CheckValue +End Function +'ؽƮ ҷ +Function outputValue( CheckValue ) +CheckValue = replace(CheckValue, "&", "&") +CheckValue = replace(CheckValue, "<", "<") +CheckValue = replace(CheckValue, ">", ">") +CheckValue = replace(CheckValue, "  ", " ") +CheckValue = replace(CheckValue, "
", vbcrlf) +outputValue = CheckValue +End Function + +'************** Information **************************************** +' Program Title : з +' Company : () (053)955-9055 +' Creator : 2004. 03. 05 +'********************************************************************* +function fun_cateLName(CateL_idx) + SQL = "SELECT CateL_name FROM C_CateL WHERE CateL_idx="&CateL_idx + Set Rsx = Dbcon.Execute(SQL) + + CateL_name = Rsx(0) + + Set Rsx = Nothing + + + fun_cateLName = CateL_name +end function + + + +'************** Information **************************************** +' Program Title : Һз +' Company : () (053)955-9055 +' Creator : 2004. 03. 05 +'********************************************************************* +function fun_cateSName(CateL_idx, CateS_idx) + SQL = "SELECT CateS_name FROM C_CateS WHERE CateL_idx="&CateL_idx&"and CateS_idx = "&CateS_idx + Set Rsx = Dbcon.Execute(SQL) + + CateS_name = Rsx(0) + + Set Rsx = Nothing + + + fun_cateSName = CateS_name +end function + + + +'************** Information **************************************** +' Program Title : ̱ϴԼ +' Company : () (053)955-9055 +' Creator : 2004. 03. 10 +'********************************************************************* +function mnai (ssn) + dim y_mon, ssn_r + + y_mon=cint((year(date())-cint("19" & left(ssn,2)))/4) + + if mid(ssn,7,1)="1" or mid(ssn,7,1)="2" then + ssn_r = "19" & left(ssn,2) & "-" & mid(ssn,3,2) & "-" & mid(ssn,5,2) + else + ssn_r = "20" & left(ssn,2) & "-" & mid(ssn,3,2) & "-" & mid(ssn,5,2) + end if + + mnai = fix((datediff("d",cdate(ssn_r),date())-y_mon)/365) + +End Function + + + + + + +'************** Information **************************************** +' Program Title : α˻ +' Company : () (053)955-9055 +' Creator : 2004. 03. 05 +'********************************************************************* +function TopSearch_Keyword(val) + + sql = "select top "&val&" search_keyword, count(search_keyword) as tot from C_search group by search_keyword order by tot desc" + set rs_keyword = dbcon.execute(sql) + + do while not rs_keyword.eof + + response.write "  "&rs_keyword("search_keyword") + + + rs_keyword.MoveNext + Loop + + Set rs_keyword = Nothing + +end function + +'************** Information **************************************** +' Program Title : üũ +' Company : () (053)955-9055 +' Creator : 2004. 05. 13 +'********************************************************************* +function security_admin() + + If Request.Cookies("security_admin") <> "ok" then + response.write "" & VbCrLf + response.end + end if + +end function + +'************** Information **************************************** +' Program Title : ȸα üũ +' Company : () (053)955-9055 +' Creator : 2004. 05. 13 +'********************************************************************* +function member_login_chk(url) + + If Request.Cookies("M_id") = "" then + response.write "" & VbCrLf + set dbcon = nothing + response.end + end if + +end function + +'************** Information **************************************** +' Program Title : üũ +' Company : () (053)955-9055 +' Creator : 2004. 05. 13 +'********************************************************************* +function no_cache() + + Response.Expires = -1 + Response.Expiresabsolute = Now() - 1 + Response.AddHeader "Pragma", "no_cache" + Response.AddHeader "cache-control", "no-cache" + Response.CacheControl = "no-cache" + +end function + + + +'************** Information **************************************** +' Program Title : ˻ +' Company : () (053)955-9055 +' Creator : 2004. 05. 13 +'********************************************************************* +function FolderCreate(strDir) + + Set FSO = Server.CreateObject("Scripting.FileSystemObject") + + If FSO.FolderExists(strDir) = False Then ' Ѵ.. + FSO.CreateFolder(strDir) + End if + + set FSO = nothing + +end function + + + +'************** Information **************************************** +' Program Title : DB +' Company : () (053)955-9055 +' Creator : 2004. 05. 13 +'********************************************************************* +function DBnothing() + + dbcon.close + set dbcon = nothing + +end function + +'************** Information **************************************** +' Program Title : DB +' Company : () (053)955-9055 +' Creator : 2004. 05. 13 +'********************************************************************* +function page(url) + + v_temp = Int((v_page - 1) / v_block) * v_block + 1 + + If v_temp = 1 Then + 'Response.Write "[ " & v_block & "]" + Else + Response.Write"
[]" + End If + + v_loop = 1 + + Do Until v_loop > v_block Or v_temp > v_totalpage + If v_temp = CInt(v_page) Then + Response.Write "" & v_temp &" " + Else + Response.Write"" & v_temp & " " + End If + v_temp = v_temp + 1 + v_loop = v_loop + 1 + Loop + + If v_temp > v_totalpage Then + 'Response.Write "[ " &v_block&"]" + Else + Response.Write"[]" + End If + +end function + + + + +'************** Information **************************************** +' Program Title : 2 +' Company : () (053)955-9055 +' Creator : 2004. 05. 13 +'********************************************************************* +function page2(url) + + v_temp = Int((v_page - 1) / v_block) * v_block + 1 + + If v_temp = 1 Then + 'Response.Write "[ " & v_block & "]" + Else + Response.Write"" + End If + + v_loop = 1 + + Do Until v_loop > v_block Or v_temp > v_totalpage + If v_temp = CInt(v_page) Then + Response.Write "" & v_temp &" " + Else + Response.Write"[" & v_temp & "] " + End If + v_temp = v_temp + 1 + v_loop = v_loop + 1 + Loop + + If v_temp > v_totalpage Then + 'Response.Write "[ " &v_block&"]" + Else + Response.Write"" + End If + +end function +'************** Information **************************************** +' Program Title : 3 +' Company : () (053)955-9055 +' Creator : 2006. 03. 14 +'********************************************************************* + +Function page3(url, getCode) + + v_temp = Int((v_page - 1) / v_block) * v_block + 1 + + If v_temp = 1 Then + 'Response.Write "[ " & v_block & "]" + Else + Response.Write"[]" + End If + + v_loop = 1 + + Do Until v_loop > v_block Or v_temp > v_totalpage + If v_temp = CInt(v_page) Then + Response.Write "" & v_temp &" " + Else + Response.Write"" & v_temp & " " + End If + v_temp = v_temp + 1 + v_loop = v_loop + 1 + Loop + + If v_temp > v_totalpage Then + 'Response.Write "[ " &v_block&"]" + Else + Response.Write"[]" + End If + +end Function + + +'************** Information **************************************** +' Program Title : 콺û +' Company : () (053)955-9055 +' Creator : 2004. 05. 13 +'********************************************************************* +function trmouseover(clr) + + response.write "onMouseOver=this.style.backgroundColor='"&clr&"' onMouseOut=this.style.backgroundColor=''" + +end function + + +'************** Information **************************************** +' Program Title : ڵ¿ +' Company : () (053)955-9055 +' Creator : 2004. 05. +'********************************************************************* +function RSnothing(rsobj) + + rsobj.close + set rsobj = nothing + +end function + + +'************** Information **************************************** +' Program Title : ŸƲ +' Company : () (053)955-9055 +' Creator : 2004. 05. +'********************************************************************* +function title_str(str,w) + +%> + + + + +
+ + + + + +
<%=str%>
+
+ + + + + + + + + +
+<% +end function + +'************** Information **************************************** +' Program Title : ŸƲ +' Company : () (053)955-9055 +' Creator : 2004. 05. +'********************************************************************* +function title_str2(str,w,help) + +%> + + + + + + + + + + + + + + + +
<%=str%><%=help%>
+ +<% +end function + + + +'************** Information **************************************** +' Program Title : ŸƲ +' Company : () (053)955-9055 +' Creator : 2004. 05. +'********************************************************************* +function title_str3(str,path) + +%> + + +
+ + + + + +
<%=str%><%=path%>
+ + + + + + + + + +
+ +<% +end function + + + +'************** Information **************************************** +' Program Title : Խ ˾Ƴbbs_name_str(a_num) +' Company : () (053)955-9055 +' Creator : 2004. 03. 05 +'********************************************************************* +function bbs_name_str(a_num) + + if a_num <> "" then + + sql = "select a_bbsname from bbs_admin where a_num="&a_num + set rs = dbcon.execute(sql) + + a_bbsname = rs(0) + + set rs = nothing + + end if + + bbs_name_str = a_bbsname + +end function + + +'************** Information **************************************** +' Program Title : ˾ popup_view() +' Company : () (053)955-9055 +' Creator : 2004. 09. 03 +'********************************************************************* +function popup_view() + + getdate_str = replace(left(now(),10),"-","") + + sql = " select * from popup " + sql = sql&" where status = 'Y' and " + 'sql = sql&" left(edate,10) >= left(getdate(),10) and left(sdate,10) <= left(getdate(),10)" + sql = sql&" convert(int,convert(varchar(20),edate,112)) >= CONVERT(int,'"&getdate_str&"') and " + sql = sql&" convert(int,convert(varchar(20),sdate,112)) <= CONVERT(int,'"&getdate_str&"')" + + set rs = Dbcon.Execute(sql) + + do while not rs.eof + + idx = trim(rs("idx")) + w_width = trim(rs("w_width")) + w_height = trim(rs("w_height")) + w_top = trim(rs("w_top")) + w_left = trim(rs("w_left")) + ck_chk = trim(rs("ck_chk")) + ck_val = trim(rs("ck_val")) + scrollbars = trim(rs("scrollbars")) + toolbar = trim(rs("toolbar")) + menubar = trim(rs("menubar")) + locations = trim(rs("locations")) + + if ck_val = "" then ck_val = "1" + + %> + + + <% + rs.movenext + loop + + +end function + + + +'************** Information **************************************** +' Program Title : goodsi_view() +' Company : () (053)955-9055 +' Creator : 2006-01-27 +'********************************************************************* +function goodsi_view() + + getdate_str = replace(left(now(),10),"-","") + + sql = " select * from goodsi " + sql = sql&" where status = 'Y' and " + 'sql = sql&" left(edate,10) >= left(getdate(),10) and left(sdate,10) <= left(getdate(),10)" + sql = sql&" convert(int,convert(varchar(20),edate,112)) >= CONVERT(int,'"&getdate_str&"') and " + sql = sql&" convert(int,convert(varchar(20),sdate,112)) <= CONVERT(int,'"&getdate_str&"')" + + set rs = Dbcon.Execute(sql) + + %> + + + <% + do while not rs.eof + + idx = trim(rs("idx")) + w_width = trim(rs("w_width")) + w_height = trim(rs("w_height")) + w_top = trim(rs("w_top")) + w_left = trim(rs("w_left")) + ck_chk = trim(rs("ck_chk")) + ck_val = trim(rs("ck_val")) + scrollbars = trim(rs("scrollbars")) + toolbar = trim(rs("toolbar")) + menubar = trim(rs("menubar")) + locations = trim(rs("locations")) + + subject = trim(rs("subject")) + content = trim(rs("content")) + + %> + + <%=content%>

+ + <% + + + rs.movenext + loop +%> +
+
+<% + + +end function + + + + + + +'--------------------------------------------------------------' + ' ±׻ remove_tags( str ) + '--------------------------------------------------------------' + function remove_tags( str ) + dim temp, dest, length, i, ch, tag + + tag = false + dest = "" + temp = str + length = len(temp) + + for i=1 to length + ch = mid( temp, i, 1 ) + + if ( ch="<" ) then tag = true + if ( ch=">" ) then + tag = false + ch="" + end if + if not tag and ch<>chr(13) and ch<>chr(10) and ch<>chr(9) then dest = dest+ch + next + + dest = replace( dest, " ", "" ) + remove_tags = dest + end function + + + '̹ +Function GetImageSize(Virtual_Image_Path) + Image_Path = Server.MapPath("/")&Virtual_Image_Path + + Set objPic = LoadPicture(Image_Path) + imgWidth = CLng(CDbl(objPic.Width) * 24 / 635) + imgHeight = CLng(CDbl(objPic.Height) * 24 / 635) + Set objPic = Nothing + GetImageSize =imgWidth&","&imgHeight +End Function + + +'--------------------------------------------------------------' + ' (max)ŭ ڿ (ѱ 2Ʈ ν) + '--------------------------------------------------------------' + ' + ' str : ߶ ڿ + ' max : ߶ + ' br : max
±׸ ٿش. + ' + ' ڿ ٿ 80ھ + ' : StringToHTML( str, 80, true ) + ' + ' 80 ϰ "..." ٿַ + ' : StringToHTML( str, 80, false ) + ' + '--------------------------------------------------------------' + function StringToHTML( str, max, br ) + Dim i, length, buf, tmp, count, count2, ch, first + + first = false + + if ( isnull(str) ) then + StringToHTML = "" + Exit Function + end if + + if max>0 then + buf = Trim( str ) + 'buf = Replace( buf, CHR(9), " " ) + 'buf = Replace( buf, CHR(13), "" ) + + length = len( buf ) + count = 1 + count2 = 0 + tmp = "" + + for i=1 to length + if count>max then + if br=false then + tmp = tmp & "..." + exit for + end if + if i" + count = 1 + first = true + end if + + ch = mid( buf, i, 1 ) + + if ch=CHR(10) then + if br=false then + exit for + end if + tmp = tmp & "
" + count = 1 + first = true + elseif count>1 AND ch=CHR(32) then + if not first then + tmp = tmp & " " + end if + elseif count = 1 and ch = CHR(32) then + tmp = tmp + else + tmp = tmp & ch + first = false + end if + + if asc(ch)<0 then 'ѱ̸ + count = count+2 + else '̸ + count = count+1 + end if + next + else + tmp = str + tmp = Trim( tmp ) + tmp = Replace( tmp, "&", "&" ) + tmp = Replace( tmp, "<", "<" ) + tmp = Replace( tmp, ">", ">" ) + 'tmp = Replace( tmp, CHR(10), "
" ) + 'tmp = Replace( tmp, CHR(32), " " ) + end if + + StringToHTML = tmp + end function +'---------------------sms ְ--------------- +function StringToHTML2( str, max, br ) + Dim i, length, buf, tmp, count, count2, ch, first + + first = false + + if ( isnull(str) ) then + StringToHTML = "" + Exit Function + end if + + if max>0 then + buf = Trim( str ) + 'buf = Replace( buf, CHR(9), " " ) + 'buf = Replace( buf, CHR(13), "" ) + + length = len( buf ) + count = 1 + count2 = 0 + tmp = "" + + for i=1 to length + if count>max then + if br=false then + tmp = tmp & "..." + exit for + end if + if i" + count = 1 + first = true + end if + + ch = mid( buf, i, 1 ) + + 'if ch=CHR(10) then + 'if br=false then + ' exit for + 'end if + 'tmp = tmp & "
" + 'count = 1 + 'first = true + 'Else + if count>1 AND ch=CHR(32) then + if not first then + tmp = tmp & " " + end if + elseif count = 1 and ch = CHR(32) then + tmp = tmp + else + tmp = tmp & ch + first = false + end if + + if asc(ch)<0 then 'ѱ̸ + count = count+2 + else '̸ + count = count+1 + end if + next + else + tmp = str + tmp = Trim( tmp ) + tmp = Replace( tmp, "&", "&" ) + tmp = Replace( tmp, "<", "<" ) + tmp = Replace( tmp, ">", ">" ) + 'tmp = Replace( tmp, CHR(10), "
" ) + 'tmp = Replace( tmp, CHR(32), " " ) + end if + + StringToHTML2 = tmp + end function + +sub loding(st,strlink) +%> + +
+ + + + + + + + + + +
+ + +
 
+ +
+<% +end sub + + +'************** Information **************************************** +' Program Title : Ȯ +' Company : () (053)955-9055 +' Creator : 2005-10-19 +'********************************************************************* +function isdir(strDirectory) + Set FSO = Server.CreateObject("Scripting.FileSystemObject") + + If FSO.FolderExists(strDirectory) = False Then ' Ѵ.. + FSO.CreateFolder(strDirectory) + End if + + Set FSO = Nothing + +end function + + +'************** Information **************************************** +' Program Title : εϱ(dext) +' Company : () (053)955-9055 +' Creator : 2004. 05 +'********************************************************************* +function wfile(filedname, maxMbyte, strDirectory) + + Set FSO = Server.CreateObject("Scripting.FileSystemObject") + + if Len(UploadForm(filedname)) > 0 then + + + + 'strDirectory = server.MapPath("./")&"\data\"&a_tablename&"\" + + If FSO.FolderExists(strDirectory) = False Then ' Ѵ.. + FSO.CreateFolder(strDirectory) + End if + + + '-- + fileName = UploadForm(filedname).FileName '̸.. + filePath = UploadForm(filedname).FilePath '.. + fileSize = UploadForm(filedname).FileLen 'ϻ.. + + + + saveFileName = strDirectory & fileName ' ο ... + + '--Ȯ ̸ и + strfile = split(fileName,".") + strName = strfile(0) 'ϸ + strExt = strfile(1) 'Ȯ + + + '-- ũⰡ ˻ + '1MByte = 1048576Byte + + if Round(fileSize) > Round(1048576 * maxMbyte) then + + response.write "" & VbCrLf + Set UploadForm = nothing + Set FSO = nothing + response.end + + end if + + + ' Ұ --> _1,_2 ̷ ϸ ..Ѥv + bExist = True + count= 0 + Do While bExist + If (FSO.FileExists(saveFileName)) Then + count = count + 1 + FileName = strName & "_" & count & "." & strExt + saveFileName = strDirectory & FileName + Else + + Exit Do ' .. + + End If + Loop + + + ' + UploadForm(filedname).SaveAs saveFileName + + + end if + + + + + 'Set UploadForm = nothing + Set FSO = nothing + + + wfile = FileName + +end function + +'************** Information **************************************** +' Program Title : +' Company : +' Creator : +'********************************************************************* +function cfile(filedname,strDirectory1,strDirectory) + + Set FSO = Server.CreateObject("Scripting.FileSystemObject") + + If FSO.FolderExists(strDirectory) = False Then ' Ѵ.. + FSO.CreateFolder(strDirectory) + End if + + '--Ȯ ̸ и + strfile = split(filedname,".") + strName = strfile(0) 'ϸ + strExt = strfile(1) 'Ȯ + + + ' Ұ --> _1,_2 ̷ ϸ ..Ѥv + bExist = True + count= 0 + + org_file = strDirectory1&filedname + fwsaveFileName = strDirectory&filedname + FileName = filedname + + + Do While bExist + If (FSO.FileExists(fwsaveFileName)) Then + count = count + 1 + FileName = strName & "_" & count & "." & strExt + fwsaveFileName = strDirectory & FileName + Else + + Exit Do ' .. + + End If + Loop + + + ' + FSO.CopyFile org_file,fwsaveFileName + + + Set FSO = nothing + + cfile = FileName + +end function + + +'************** Information **************************************** +' Program Title : file +' Company : () (053)955-9055 +' Creator : 2004. 05. +'********************************************************************* +function dfile(strpath) + + Set FSO = Server.CreateObject("Scripting.FileSystemObject") + + + If FSO.fileExists(strpath) = true Then ' . + FSO.DeleteFile(strpath) + End if + + Set FSO = nothing + +end function + +'************** Information **************************************** +' Program Title : ޺ 뷮 +' Company : () (053)955-9055 +' Creator : 2004. 05 +'********************************************************************* +function get_hdsize(loging_level) + + if loging_level = "-1" then + + get_hdsize = Application("admin_hdsize") + + else + + SQL = "Select g_hdsize from member_group where g_num=" & loging_level + Set rs = DbCon.Execute(SQL) + + if not rs.eof then + get_hdsize = Rs(0) + else + get_hdsize = 0 + end if + + Set rs = nothing + + end if + +end function + +'************** Information **************************************** +' Program Title : 뷮 +' Company : () (053)955-9055 +' Creator : 2004. 05 +'********************************************************************* +function get_public() + + sql = "Select wc_public from webhd_config" + Set rs = DbCon.Execute(SQL) + + if not rs.eof then + get_public = Rs(0) + else + get_public = 0 + end if + + Set rs = nothing + +end function + +'************** Information **************************************** +' Program Title : εѿ뷮 +' Company : () (053)955-9055 +' Creator : 2004. 05 +'********************************************************************* +function get_upload() + + sql = "Select wc_upload from webhd_config" + Set rs = DbCon.Execute(SQL) + + if not rs.eof then + get_upload = Rs(0) + else + get_upload = 0 + end if + + Set rs = nothing + +end function + +'************** Information **************************************** +' Program Title : 'ӽðϱ +' Company : () (053)955-9055 +' Creator : 2004. 05 +'********************************************************************* +function get_lastdate(m_id) + + +sql = "select m_lastdate from member where m_id = '"&m_id&"'" +set rs_view = DbCon.Execute(sql) + +get_lastdate = rs_view("m_lastdate") + +Set rs_view = nothing + +end function + + + +'************** Information **************************************** +' Program Title : ' +' Company : () (053)955-9055 +' Creator : 2004. 05 +'********************************************************************* +function get_FileName1(filename) + +If Trim(filename) = "" Then + FileName1 = "default.gif" +Else + FileName = Split(filename,".",-1,1) + FileEnd = Lcase(Trim(FileName(1))) + Select Case FileEnd + Case "" + FileName1 = "default.gif" + Case "asf" + FileName1 = "asf.gif" + Case "asx" + FileName1 = "asf.gif" + Case "doc" + FileName1 = "doc.gif" + Case "mpg" + FileName1 = "mpg.gif" + Case "mpeg" + FileName1 = "mpg.gif" + Case "bat" + FileName1 = "bat.gif" + Case "bmp" + FileName1 = "bmp.gif" + Case "com" + FileName1 = "com.gif" + Case "sys" + FileName1 = "device.gif" + Case "dll" + FileName1 = "device.gif" + Case "exe" + FileName1 = "exe.gif" + Case "gif" + FileName1 = "gif.gif" + Case "htm" + FileName1 = "html.gif" + Case "html" + FileName1 = "html.gif" + Case "hwp" + FileName1 = "hwp.gif" + Case "xls" + FileName1 = "excel.gif" + Case "jpg" + FileName1 = "jpg.gif" + Case "mp3" + FileName1 = "mp3.gif" + Case "pcx" + FileName1 = "pcx.gif" + Case "png" + FileName1 = "png.gif" + Case "ppt" + FileName1 = "ppt.gif" + Case "ra" + FileName1 = "ra.gif" + Case "txt" + FileName1 = "text.gif" + Case "url" + FileName1 = "url.gif" + Case "wav" + FileName1 = "wav.gif" + Case "zip" + FileName1 = "zip.gif" + Case else + FileName1 = "unknown.gif" + End Select +End If + +get_FileName1 = FileName1 + +end function + + + +'************** Information **************************************** +' Program Title : 'ȸ̸ã +' Company : () (053)955-9055 +' Creator : 2005-07-24 +'********************************************************************* +function get_name(m_id) + + +if m_id <> "" then + + m_id = replace(m_id,",","") + + sql = "select m_name from member where m_id = '"&m_id&"'" + set rs_view = DbCon.Execute(sql) + + if rs_view.eof then + + get_name = m_id + + else + + get_name = rs_view(0) + + end if + + Set rs_view = nothing + +end if + +end function + + +'************** Information **************************************** +' Program Title : 'ȸ̸' +' Company : () (053)955-9055 +' Creator : 2005-07-24 +'********************************************************************* +function get_company_name() + + sql = "select subject from default_config where idx=1" + set rs_view = DbCon.Execute(sql) + + if rs_view.eof then + + get_company_name = "" + + else + + get_company_name = rs_view(0) + + end if + + set rs_view = nothing + +end function + + + +'************** Information **************************************** +' Program Title : +' Company : () (053)955-9055 +' Creator : 2005-07-27 +'********************************************************************* +function get_rdate(do_key,do_formid) + + sql = "select dov_rdate from document_view where do_key="&do_key&" and do_id='"&do_formid&"'" + set rs_view = DbCon.Execute(sql) + + if isnull(trim(rs_view(0))) or trim(rs_view(0)) = "" then + + get_rdate = "" + + else + + get_rdate = left(rs_view(0),10)&"
"&mid(rs_view(0),12,8) + + end if + + + set rs_view = nothing + +end function + + + '************** Information **************************************** +' Program Title : ip üũ +' Company : () (053)955-9055 +' Creator : 2005-10-12 +'********************************************************************* +function security_ip() + + + user_ip = trim(request.ServerVariables("REMOTE_ADDR")) + + sql = "select count(se_idx) from security where se_ip='"&user_ip&"' and se_chk='Y'" + set rs = dbcon.execute(sql) + rs_str = rs(0) + set rs = nothing + + + if rs_str = 0 then + response.write "" & VbCrLf + response.end + end if + +end function + + +'************** Information **************************************** +' Program Title : 'input +' Company : () (053)955-9055 +' Creator : 2005-10-28 +'********************************************************************* +sub input_type(iptype,ip_name,ip_value,size,maxlength,ip_aciton) + + + if maxlength <> "0" then + maxlength_str = "maxlength='"&maxlength&"'" + end if + + if iptype = "text" then + %> + <%=ip_aciton%>> + + <%elseif iptype = "password" then%> + <%=ip_aciton%>> + + <%elseif iptype = "ipdate" then%> + + <%=ip_aciton%>> + [¥] + + <%elseif iptype = "textarea" then%> + + + + <%elseif iptype = "file" then%> + <%=ip_aciton%>> + + <%end if + +end sub + + + +'************** Information **************************************** +' Program Title : 'ڵ +' Company : () (053)955-9055 +' Creator : 2005-10-28 +'********************************************************************* +sub code_view(code_idx,opt_name,code_name) + + +SQL = "SELECT * FROM C_CODE_S WHERE CateL_idx="&code_idx&" ORDER BY CateS_code" +Set rs = DbCon.Execute(SQL) + +if not rs.eof then + +%> + +<%else%> + +<%end if + + rs.close + set rs = nothing + + +end sub + + + + + + +'************** Information **************************************** +' Program Title : 'new .(get_newimg) +' Company : () (053)955-9055 +' Creator : 2005-07-27 +'********************************************************************* +function get_newimg(getdate) + if not(isnull(getdate)) and getdate <> "" then + + aa_regdate = trim(getdate) + aa_regdate = trim(left(aa_regdate,10)) + 'response.write aa_regdate + aa_regdate = cdate(aa_regdate) + new_day = cint("-" & 1) + date1 = dateadd("d",new_day,date()) '-- new_day ¥ + + If aa_regdate >= date1 Then + + response.write "" + + end if + end if +end function + + + + + + +'************** Information **************************************** +' Program Title : 'μ +' Company : () (053)955-9055 +' Creator : 2005-11-03 +'********************************************************************* +sub page_print() +%> + + +<% +end sub + + + +'************** Information **************************************** +' Program Title : Խ ̺˾Ƴ bbs_tablename_str(a_num) +' Company : () (053)955-9055 +' Creator : 2004. 03. 05 +'********************************************************************* +function bbs_tablename_str(a_num) + + if a_num <> "" then + + sql = "select a_tablename from bbs_admin where a_num="&a_num + set rs = dbcon.execute(sql) + + bbs_tablename_str = trim(rs(0)) + + 'set rs = nothing + + end if + + +end function + + +'************** Information **************************************** +' Program Title : Խ ˾Ƴ bbs_bbsname_str(a_num) +' Company : () (053)955-9055 +' Creator : 2006-02-03 +'********************************************************************* +function bbs_bbsname_str(a_num) + + if a_num <> "" then + + sql = "select a_bbsname from bbs_admin where a_num="&a_num + set rs = dbcon.execute(sql) + + bbs_bbsname_str = trim(rs(0)) + + set rs = nothing + + end if + + +end function + + +'************** Information **************************************** +' Program Title : 'ȸμ +' Company : () (053)955-9055 +' Creator : 2005-07-24 +'********************************************************************* +function get_buseo(bdm_idx) + + +if bdm_idx <> 0 then + + + SQL = "Select bdm_menuname from bd_menu_page where bdm_idx = "&bdm_idx + response.write sql + set rs_buseo = DbCon.Execute(sql) + + + if rs_buseo.eof then + + get_buseo = "μ" + + else + + get_buseo = rs_buseo(0) + + end if + + Set rs_buseo = nothing +else + + get_buseo = "μ" + +end if + + +end Function + + +'************** Information **************************************** +' Program Title : 'ȸ ֻμ +' Company : () (053)955-9055 +' Creator : 2005-07-24 +'********************************************************************* +function get_bdm_idx(bdm_idx) + + +if bdm_idx <> 0 then + + + SQL = "Select bdm_ref from bd_menu_page where bdm_idx = "&bdm_idx + 'response.write sql + set rs_buseo = DbCon.Execute(sql) + + + if rs_buseo.eof then + + get_bdm_idx = 0 + + else + + get_bdm_idx = rs_buseo(0) + + end if + + Set rs_buseo = nothing +else + + get_bdm_idx = 0 + +end if + + +end function + + + + + +'************************************************************************************************************** +' Լ +'************************************************************************************************************** + +' ش ڸ Ѵ.(28 31 ߿ ϳε ýۿ ϴ ¥Լ Ͽ Ѵ) +function LastDay(stryear, strmonth) + + intLastDay = 28 + + For d = 29 To 31 step 1 'up to the 31st Ϸ羿 Ű ¥ ΰ ˻Ѵ. + calMonth = Month(DateSerial(stryear, strmonth, d)) + + If cint(calMonth) = cint(strmonth) Then ' ΰ ¥ ϰ + intLastDay = d + else + exit for ' ƴϸ for . + End If + Next + + LastDay = intLastDay + +end function +'****************************************************************************************************************** + + + + +'************************************************************************************************************** +' +'************************************************************************************************************** + +' ׸ +function account_type(gubun, no) + ' + if gubun = "0" then + select case no + case 0 : temp = "޿" + case 1 : temp = "뵷" + case 2 : temp = "ƸƮ" + case 3 : temp = "" + case 4 : temp = "" + case 5 : temp = "" + case 6 : temp = "" + case 7 : temp = "Ա" + case 8 : temp = "Ÿ" + end select + ' + elseif gubun = "1" then + select case no + case 0 : temp = "ĺ" + case 1 : temp = "ְź" + case 2 : temp = "Ǻ" + case 3 : temp = "" + case 4 : temp = "Ժ" + case 5 : temp = "" + case 6 : temp = "ȭȰ" + case 7 : temp = "" + case 8 : temp = "" + case 9 : temp = "" + case 10 : temp = "ź" + case 11 : temp = "ݰ" + case 12 : temp = "Ư" + case 13 : temp = "" + case 14 : temp = "" + case 15 : temp = "Ÿ" + end select + end if + + account_type = temp + +end function + + +' ׸ +function car_type(no) + + select case no + case 1 : temp = "" + case 2 : temp = "" + case 3 : temp = "" + case 4 : temp = "" + case 5 : temp = "" + case 6 : temp = "ڵҺα" + case 7 : temp = "ڵ" + case 8 : temp = "ڵ" + case 9 : temp = "ڵ˻" + case 10 : temp = "ڵĢ" + case 11 : temp = "ڵ" + case 12 : temp = "ڵҸǰ" + case 13 : temp = "ڵǰ" + + end select + + car_type = temp + +end function + +' ׸ +iaccount = 8 ' +eaccount = 15 ' + +'****************************************************************************************************************** + + + + + + + +%> + + + +<% +'************** Information **************************************** +' Program Title : Խ Ų +' Creator : Heo jaehoon +'********************************************************************* +board_skin1_url = site_root_dir_url&"/Program/bbs/skin/1/Imgs" 'Ų1 ̹丮 url +board_skin2_url = site_root_dir_url&"/Program/bbs/skin/2/Imgs" 'Ų2 ̹丮 url +%> + + + + + +<% +'--------------------------------------------------------------------------------------------------------------- +' DDDDD EEEEEE SSSSSS IIIIII GGGGG NN NN +' DD D EE SS II GG N N NN +' DD D EEEEEE SSSSS II GG GGG NN N NN +' DD D EE SS II GG GG NN N N +' DDDDD EEEEEE SSSSSS IIIIII GGGGG NN NN +'--------------------------------------------------------------------------------------------------------------- + +'************** Information **************************************** +' Program Title : 丮/ +' Creator : Heo jaehoon +'********************************************************************* +site_name=" û ۽ý" 'Ʈ + +site_root_dir_path = "E:\Web Service2\뱸ûSMS_SEC" 'α׷ ۵丮 +include_dir_path = site_root_dir_path&"\include" 'Include丮 + +site_root_dir_url = Application("domain1") 'α׷ ۵丮 url +include_dir_url = site_root_dir_url&"/include" 'Include丮 url +common_image_url = site_root_dir_url&"/Imgs" ' ̹丮 url +skin_normal_img = site_root_dir_url&"/program/ebook/user_view/skin/normal" 'ebook ̹丮 url + + + +program_image_url = site_root_dir_url&"/image" 'α׷ ̹ 丮 url +program_dir_url = site_root_dir_url&"/program" 'α׷ 丮 url +program_dir_path = site_root_dir_path&"\program" 'α׷ 丮 path +save_data_path = site_root_dir_path&"\data" 'α׷ 丮 path +save_data_url = site_root_dir_url&"/data" 'α׷ 丮 URL + + + +'޴ ּ.. +'ۼ : +'ۼ : 2005-12-17 +home_webhdd_url = site_root_dir_url&"/webhard/intro.asp" +home_infopia_url = site_root_dir_url&"/infopia/default.asp" +home_eandong_url = site_root_dir_url&"/eandong/default.asp" +home_study_url = site_root_dir_url&"/study/default.asp" +home_private_url = site_root_dir_url&"/infopia/default.asp" 'ӽּ.(̺񼭴 α ǰԲ->Ʈ ...)/program/private +home_sms_url = site_root_dir_url&"/infopia/default.asp" 'ӽּ.(̺񼭴 α ǰԲ->Ʈ ...)/program/sms +club_sms_url = site_root_dir_url&"/club/default.asp" +myhome_sms_url = site_root_dir_url&"/myhome/default.asp" + +sms_image_url = site_root_dir_url&"/program/sms/Imgs" 'ڼ ̹丮 url +sms_url = site_root_dir_url&"/program/sms" 'ڼ 丮 url + + +'************** Information **************************************** +' Program Title : '̵ּ +' Company : () (053)955-9055 +' Creator : 2006-03-14 +'********************************************************************* +Function Back_back(message) + Response.Write"" + Response.End +End Function +Function Back_back2(message, url) + Response.Write"" + Response.End +End Function +Function Back_back3(message, url) + Response.Write"" + Response.End +End Function +'========================================================= +Function Sung_gong(message) +Response.Write "" +Response.End +End Function + +Function Sung_gong2(message, url) +Response.Write "" +Response.End +End Function + +Function Sung_gong3(message) +Response.Write "" +Response.End +End Function +'************** Information **************************************** +' Program Title : 'üũ +' Company : () (053)955-9055 +' Creator : 2006-03-14 +'********************************************************************* +'Ʈư +Function ChkValSelect(ByVal value1, ByVal value2) + If CStr(value1) = CStr(value2) Then + response.write "selected" + End if +End Function +'üũڽ +Function ChkValChkBox(ByVal value1, ByVal value2) + If CStr(value1) = CStr(value2) Then + response.write "checked" + End if +End Function + + +'************** Information **************************************** +' Program Title : SMS +' Company : () (053)955-9055 +' Creator : 2006-03-17 +'********************************************************************* +Function SmsSend(tran_phone, tran_callback, Msg, RDate, a_num) + 'tran_phone = b_phone1&"-"&b_phone2&"-"&b_phone3 '޴» + 'tran_phone = a_smssend_addr '޴» + 'tran_callback = "053-955-9055" ' + 'a_num = ȣ + tran_phone = Replace(tran_phone, "-" , "") + tran_phone = Replace(tran_phone, " " , "") + + message_temp = StringToHTML2(Msg, 80, true) + messageArr = Split(message_temp, "
") + + if clng(smsSelect()) <= 0 then Back_back2 " Ǽ մϴ.", request.servervariables("http_referer") + + If UBound(messageArr) > 0 Then + For ii = 0 To UBound(messageArr) + response.write ii&"=ii
" + if clng(smsSelect()) <= 0 then Back_back2 " Ǽ մϴ.", request.servervariables("http_referer") + SQL = "Insert into em_tran(tran_id, tran_phone, tran_callback, tran_status, tran_date, tran_msg, tran_etc1, tran_etc2, tran_etc3, tran_etc4) values (" + SQL = SQL & "'"&Request.Cookies("M_id")&"','"&tran_phone&"', '"&tran_callback&"', '1', '"&Rdate&"', '"&ii+1&")"&messageArr(ii)&"','"&a_num&"', '"&Rdate&"','"&request.cookies("bdm_idx")&"', '"&get_bdm_idx(request.cookies("bdm_idx"))&"')" + 'response.write sql & "
" + 'response.write "
sql="&sql + 'response.end + dbcon.execute sql + sql = "update member set M_g_sms = M_g_sms - 1 where M_id = '" & Request.Cookies("M_id") & "'" + dbcon.execute sql + next + else + SQL = "Insert into em_tran(tran_id, tran_phone, tran_callback, tran_status, tran_date, tran_msg, tran_etc1, tran_etc2, tran_etc3, tran_etc4) values (" + SQL = SQL & "'"&Request.Cookies("M_id")&"','"&tran_phone&"', '"&tran_callback&"', '1', '"&Rdate&"', '"&Msg&"','"&a_num&"', '"&Rdate&"', '"&request.cookies("bdm_idx")&"','"&get_bdm_idx(request.cookies("bdm_idx"))&"')" + 'response.write sql & "
" + 'response.write "
sql="&sql + 'response.end + dbcon.execute sql + sql = "update member set M_g_sms = M_g_sms - 1 where M_id = '" & Request.Cookies("M_id") & "'" + dbcon.execute sql + End if + + + '*********************************************************************************************************************************************** + v_year = year(now()) + v_month = month(now()) + v_day = day(now()) + v_week = weekday(now()) + '-- ó ƴ üũ + sqlc = "select nowcount from bd_counter where info_url = '"&request.cookies("m_id")&"' and nowyear = "& v_year &" and nowmonth = "& v_month &" and nowday = "& v_day &" and nowweek = "& v_week + set rsc = Dbcon.Execute(sqlc) + + if rsc.eof then '-- ó̸ insert + sql = "insert into bd_counter (info_url, nowcount, nowyear, nowmonth, nowday, nowweek) values('"&request.cookies("m_id")&"', 1, "& v_year &", "& v_month &", "& v_day &", "& v_week &")" + + else '-- ó ƴϸ count 1 --> update + v_count = rsc(0)+1 + sql = "update bd_counter set nowcount = "& v_count &" where info_url = '"&request.cookies("m_id")&"' and nowyear = "& v_year &" and nowmonth = "& v_month &" and nowday = "& v_day &" and nowweek = "& v_week + end if + set rsc=Nothing + Dbcon.Execute sql + + '*********************************************************************************************************************************************** +End Function + +Function SMSdateChk(dateval, hourval, minval) + + If CDate(dateval) > Date() Then '¥ ó¥ ũ + SMSdateChk = True + ElseIf CDate(dateval) = Date() Then '¥ ٸ + If CInt(hourval) > CInt(hour(now)) Then '¥ ð ũٸ + SMSdateChk = True + ElseIf Not(CInt(hourval) < CInt(hour(now))) And CInt(minval) > Minute(now) Then'ð ʰ ũٸ + SMSdateChk = True + Else + SMSdateChk = false + End If + Else + SMSdateChk = False + End if +End function + + + +'=======================ȸ Ǽ ========================================================= +Function smsSelect() + strConnect="Provider=SQLOLEDB.1;Data Source=(local);Initial catalog="&Application("DB")&";user ID="&Application("DB_id")&";Password="&Application("DB_pwd") + 'StrCon = "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;User ID=nambu;Initial Catalog=nambu;Data Source=NAMBU-WEB" + 'strConnect="Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog="&Application("DB")&";User ID="&Application("DB_id")&";Data Source=(local)" ' + Set Db=Server.CreateObject("ADODB.Connection") + Db.Open strConnect + sql = "select M_g_sms from member where M_id = '" & Request.Cookies("M_id") & "'" + Set rs_sms = Db.Execute(sql) + If IsNull(rs_sms(0)) Or rs_sms(0) = "" Then + smsSelect = 0 + Else + smsSelect = rs_sms(0) + End If + Set rs_sms = Nothing + + Db.close + Set Db = nothing +End function +'=================== Ҽ DZ ȣ ˾Ƴ========================== +Function mysilguk() + sql = "select b.bdm_ref from member as a inner join bd_menu_page b on a.bdm_idx = b.bdm_idx where a.M_id = '" & Request.Cookies("m_id") & "'" + Set rs = Dbcon.Execute(sql) + If rs.bof Or rs.eof Then + mysilguk = null + Else + mysilguk = cint(rs(0)) + End If + Set rs = nothing +End function +'======================================================================= +%> \ No newline at end of file diff --git a/include/lib/TABSFileup.cab b/include/lib/TABSFileup.cab new file mode 100644 index 0000000..9344df4 Binary files /dev/null and b/include/lib/TABSFileup.cab differ diff --git a/include/lib/TABSFileupU.cab b/include/lib/TABSFileupU.cab new file mode 100644 index 0000000..7db44e9 Binary files /dev/null and b/include/lib/TABSFileupU.cab differ diff --git a/include/lib/dbcon.asp b/include/lib/dbcon.asp new file mode 100644 index 0000000..9c0560f --- /dev/null +++ b/include/lib/dbcon.asp @@ -0,0 +1,10 @@ +<%@ codepage = 949%> +<% session.codepage = 949 %> +<%Response.CharSet = "EUC-KR"%> +<% +strConnect="Provider=SQLOLEDB.1;Data Source=" & Application("url") & ";Initial catalog="&Application("DB")&";user ID="&Application("DB_id")&";Password="&Application("DB_pwd") +'StrCon = "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;User ID=nambu;Initial Catalog=nambu;Data Source=NAMBU-WEB" +'strConnect="Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog="&Application("DB")&";User ID="&Application("DB_id")&";Data Source=(local)" ' +Set DbCon=Server.CreateObject("ADODB.Connection") +DbCon.Open strConnect +%> \ No newline at end of file diff --git a/include/lib/dbcon2.asp b/include/lib/dbcon2.asp new file mode 100644 index 0000000..423bd29 --- /dev/null +++ b/include/lib/dbcon2.asp @@ -0,0 +1,8 @@ +<% +strConnect="Provider=SQLOLEDB.1;Data Source=(local);Initial catalog="&Application("DB")&";user ID="&Application("DB_id")&";Password="&Application("DB_pwd") +'StrCon = "Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;User ID=nambu;Initial Catalog=nambu;Data Source=NAMBU-WEB" +'strConnect="Provider=SQLOLEDB.1;Integrated Security=SSPI;Persist Security Info=False;Initial Catalog="&Application("DB")&";User ID="&Application("DB_id")&";Data Source=(local)" ' + +Set DbCon2=Server.CreateObject("ADODB.Connection") +DbCon2.Open strConnect +%> \ No newline at end of file diff --git a/include/lib/loding.fla b/include/lib/loding.fla new file mode 100644 index 0000000..d4ae24d Binary files /dev/null and b/include/lib/loding.fla differ diff --git a/include/lib/loding.swf b/include/lib/loding.swf new file mode 100644 index 0000000..560a26a Binary files /dev/null and b/include/lib/loding.swf differ diff --git a/index.asp b/index.asp new file mode 100644 index 0000000..cff5183 --- /dev/null +++ b/index.asp @@ -0,0 +1,88 @@ + + +<% +If session("ss_m_id") <> "" Then + Response.redirect "/content/01message/01_01.asp" + Response.end +End if +%> + + + +문자전송시스템 + + + + + + + + + + +<%If Left(LCase(Request.ServerVariables("PATH_INFO")),10)="/index.asp" Then%> + +<%else%> + + + +<%End If %> + + +<% +prepage = InputValue( request("prepage") ) +If prepage <> "" then + If LCase( Left( prepage, 4 ) ) = "http" Then prepage = "/" +End if +%> + + + + + + +
+
    +
  • +
  • +
  • +
  • +
  • +
+
+ + + + + \ No newline at end of file diff --git a/index_org.asp b/index_org.asp new file mode 100644 index 0000000..bbc9ab2 --- /dev/null +++ b/index_org.asp @@ -0,0 +1,109 @@ + + +<% +If session("ss_m_id") <> "" Then + Response.redirect "/content/01message/" + Response.end +End if +%> + + + + +문자전송시스템 + + + + + + +
+

+
+ +
+
+ " /> +
+ + + + + + + +
+ + + + + + + + + +
아이디
비밀빈호
+
+ +
+ +
+ +
+

copyright (C) 나눔아이앤씨. All rights reserved.

+
+ + + + + + + \ No newline at end of file diff --git a/manager/common/css/_main_layout.css b/manager/common/css/_main_layout.css new file mode 100644 index 0000000..ee478fe --- /dev/null +++ b/manager/common/css/_main_layout.css @@ -0,0 +1,93 @@ +/* 뿵 */ +#main_body_blue {overflow:hidden; clear:left; width:1000px; margin: 0; padding: 0; background:url(/manager/img/blue/main_content_bg.gif) repeat-y left;} +#main_body_orange {overflow:hidden; clear:left; width:1000px; margin: 0; padding: 0; background:url(/manager/img/orange/main_content_bg.gif) repeat-y left;} +#main_body_sky {overflow:hidden; clear:left; width:1000px; margin: 0; padding: 0; background:url(/manager/img/sky/main_content_bg.gif) repeat-y left;} +#main_body_green {overflow:hidden; clear:left; width:1000px; margin: 0; padding: 0; background:url(/manager/img/green/main_content_bg.gif) repeat-y left;} +#main_body_gray {overflow:hidden; clear:left; width:1000px; margin: 0; padding: 0; background:url(/manager/img/gray/main_content_bg.gif) repeat-y left;} + +/* ʿ */ +#content_left {float:left; width:189px; } + +#cl_info {width:178px; height:48px; margin-left:5px; padding-left:7px; background:url(/manager/img/lm_tit00.gif); background-repeat:no-repeat;} +#cl_info div.content {letter-spacing:-1px; vertical-align:middle; font-size:0.9em; line-height:160%} +#cl_info div span.ip_con {color:#7462C8; font-family:verdana; letter-spacing:0px; font-size:0.8em;} +#cl_info div span.info {padding-left:13px;} + +#mng_info {width:166px; margin-top:15px; padding-bottom:5px; margin-left:11px; background:url(/manager/img/mleft_bg.gif) repeat-y left;} +#mng_info h2 {height:26px;margin-bottom:5px;} +#mng_info div.content li {padding:2px 0px 2px 14px; font-size:0.9em; background-color:transparent; background-image: url(/manager/img/mleft_ic.gif); background-repeat: no-repeat; background-position:8px 6px;} +#mng_info div.content li img {vertical-align:middle;} + +#hrd_info {width:166px; margin-left:11px; margin-bottom:0; background:url(/manager/img/mleft_bg.gif) repeat-y left;} +#hrd_info h2 {height:26px;margin-bottom:5px;} +#hrd_info div.content li {padding:2px 0px 2px 14px; font-size:0.9em; background-color:transparent; background-image: url(/manager/img/mleft_ic.gif); background-repeat: no-repeat; background-position:8px 6px;} +#hrd_info div.content li.none {padding:0px 0px 0px 18px; font-family:verdana; font-size:0.8em; color:#616161; letter-spacing:-1px; background:none;} +#hrd_info div.content li.pt5 {margin-top:8px} +#hrd_info div.content li.bottom {height:13px; padding:0px 0px 0px 18px; background:url(/manager/img/mleft_bottom.gif); background-repeat: no-repeat;} +#hrd_info div.line {float:left; width:100px; height:10px; vertical-align:middle; border:1px solid #C1C1C1; background-color:#F4F4F4;} + +/*  */ +#content_center {float:left; width:601px;} + +#new_notice {clear:both; width:570px; margin-left:19px; margin-bottom:10px;} +#new_notice div.top {float:left; width:570px; height:24px; background-color:transparent; background-image: url(/manager/img/tbt_bg.gif);} +#new_notice div.top li {float:left; height:24px; padding-left:27px; font-size:1em; color:#222222; font-weight:bold;} +#new_notice div.top li.lt {float:left; height:24px; padding-top:7px; background-color:transparent; background-image:url(/manager/img/tbt_left.gif); background-repeat: no-repeat;} +#new_notice div.top li.more {float:right;} +#new_notice div.content {display:block; float:left; width:570px; padding-top:10px; margin-bottom:10px; padding-bottom:10px; background:url(/manager/img/tb_bg.gif) repeat-y left; border-bottom:1px solid #DCDCDC;} +#new_notice div.content ul li {width:560px; float:left; padding:3px 0px 3px 14px; color:#898989; font-family:gulim; background-image: url(/manager/img/tbt_ic.gif); background-repeat:no-repeat; background-position:9px 7px;} +#new_notice div.content ul li span.gray2 {float:left; display:inline;} +#new_notice div.content ul li a {float:left;overflow:hidden;} +#new_notice div.content ul li span.date {float:right; padding:0px 20px 0px 0px; text-align:right; overflow:hidden; color:#8A8A8A; background:none;} + +#hb_info {clear:both; width:570px; margin-left:19px;} +#hb_info div.top {float:left; width:570px; height:24px; background-color:transparent; background-image: url(/manager/img/tbt_bg.gif);} +#hb_info div.top li {float:left; height:24px; padding-left:27px; font-size:1em; color:#222222; font-weight:bold;} +#hb_info div.top li.lt {float:left; height:24px; padding-top:7px; background-color:transparent; background-image:url(/manager/img/tbt_left2.gif); background-repeat: no-repeat;} +#hb_info div.top li.more {float:right;} +#hb_info div.content {display:block; float:left;padding-bottom:10px;} +#hb_info div.content table {float:left; width:570px;} + +#month_stats {clear:both; width:570px; margin-left:19px; margin-bottom:20px;} +#month_stats div.top {float:left; width:570px; height:24px; background-color:transparent; background-image: url(/manager/img/tbt_bg.gif);} +#month_stats div.top li {float:left; height:24px; padding-left:27px; font-size:1em; color:#222222; font-weight:bold;} +#month_stats div.top li.lt {float:left; height:24px; padding-top:7px; background-color:transparent; background-image:url(/manager/img/tbt_left.gif); background-repeat: no-repeat;} +#month_stats div.top li.more {float:right;} +#month_stats div.content {display:block; text-align:center; width:570px; background:url(/manager/img/tb_bg.gif) repeat-y left; border-bottom:1px solid #DCDCDC;} +#month_stats div.content object {margin-top:12px;margin-bottom:5px;} + +/* */ +#content_right{float:left; width:200px;} + +#cr_date {width:190px; height:47px; background:url(/manager/img/date_bg.gif); background-repeat:no-repeat;} +#cr_date div.content {height:30px; padding-top:12px; padding-left:32px; font-weight:bold; color:#394D7A; font-size:0.9em; background-image:url(/manager/img/date_ic.gif); background-repeat: no-repeat; background-position:12px 10px;} + +#cr_memo {width:190px;} +#cr_memo h2 {height:38px;} +#cr_memo div.content {padding-bottom:18px; background:url(/manager/img/memo_bg.gif) repeat-y left; text-align:center; border-bottom:3px solid #E4E4E4;} +#cr_memo div.content textarea.info {width:158px; height:200px; margin:0; overflow:auto; border-top:1px solid #9D9B9D;border-left:1px solid #9D9B9D;border-right:1px solid #E1DFDB;border-bottom:1px solid #E1DFDB;line-height:20px;padding-left:5px;padding-right:4px;background:url(/manager/img/memo_bg2.gif);} +#cr_memo div.content textarea{margin:0;} +#cr_memo div.content li.st {padding-top:5px; color:#A3A3A3; font-size:0.9em;} +#cr_memo div.content li.bt {padding:5px 8px 0px 60px;} +#cr_memo div.content div {padding-bottom:40px;} + +#cr_banner {width:190px; margin-top:10px;} +#cr_banner div.content {padding-bottom:6px; text-align:center;} + + + +/*ʸ޴(־¸޴) ŸƲ*/ +#sidemenu {padding: 5px 0px 0 11px;} + +/*ʸ޴ 2Depth*/ +#sidemenu ul li a {display: block; width:158px; padding:6px 0px 10px 10px; margin-top:15px; color:#FFFFFF; font-weight:bold; letter-spacing: -0.1em;} +#sidemenu ul li.blue {background:url(/manager/img/blue/lm_1step_bg.gif); background-repeat:no-repeat;} +#sidemenu ul li.orange {background:url(/manager/img/orange/lm_1step_bg.gif); background-repeat:no-repeat;} +#sidemenu ul li.sky {background:url(/manager/img/sky/lm_1step_bg.gif); background-repeat:no-repeat;} +#sidemenu ul li.green {background:url(/manager/img/green/lm_1step_bg.gif); background-repeat:no-repeat;} +#sidemenu ul li.gray {background:url(/manager/img/gray/lm_1step_bg.gif); background-repeat:no-repeat;} +#sidemenu ul li a:hover, #sidemenu ul li a:active, #sidemenu ul li a:focus {text-decoration: none;} + +/*ʸ޴ 3Depth*/ +#sidemenu ul ul li a {display: block; width: 140px; height:10px; margin:0; margin-left:10px; padding:5px; font-weight:normal; color: #000000; letter-spacing:-0.1em; font-size: .92em; background:url(/manager/img/lm_2step_ic.gif); background-repeat: no-repeat;} +#sidemenu ul ul li a.on, #sidemenu ul ul li a:hover {font-weight:bold;} \ No newline at end of file diff --git a/manager/common/css/all.css b/manager/common/css/all.css new file mode 100644 index 0000000..f1ec787 --- /dev/null +++ b/manager/common/css/all.css @@ -0,0 +1,6 @@ +@charset "euc-kr"; + +@import url(base.css); +@import url(head_layout.css); +@import url(foot_layout.css); +@import url(template.css); \ No newline at end of file diff --git a/manager/common/css/base.css b/manager/common/css/base.css new file mode 100644 index 0000000..495d5b7 --- /dev/null +++ b/manager/common/css/base.css @@ -0,0 +1,30 @@ +@charset "euc-kr"; + +html, body, div, span, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, address, big, cite, code, +del, dfn, em, font, img, ins, q, s, samp, +small, strike, strong, sub, sup, tt, var, +b, u, i, +dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, +table, caption, tbody, tfoot, thead, tr, th, td +{margin:0; padding:0; border:0;} /* vertical-align: baseline; outline: 0; ie Ŀ */ + +ol, ul, li {list-style:none;} +blockquote, q {quotes:none;} +ins {text-decoration:none;} +del {text-decoration:line-through;} +table {border-spacing:0;} /* border-collapse: collapse; ff border="0" ߻ */ +address,caption,cite,code,dfn,em,strong,th,var {font-style:normal;} /* font-weight:normal */ +input.input_box{border:1px solid #cdcdcd; height:15px; padding:3px 3px 0px 3px; font-size:1em; background-color:#ffffff;} +input.input_box2{border:1px solid #cdcdcd; height:15px; padding:3px 3px 0px 3px; font-size:1em; background-color:#F7F7F7;} +input.input_box_file{border:1px solid #cdcdcd; padding:3px 3px 0px 3px; font-size: 1em; background-color:#ffffff;} +select{font-size: 1em;} +.radio {margin-bottom:-2px;} +textarea {border:1px solid #cdcdcd; font-size: 1em; padding:3px;} +hr {display: none;} +legend {visibility:hidden; display:none; height:0; width:0; font-size:0;} +.hidden {overflow:hidden; position:absolute; visibility:hidden; font-size:0; height:0; width:0;} + + diff --git a/manager/common/css/foot_layout.css b/manager/common/css/foot_layout.css new file mode 100644 index 0000000..a4164d2 --- /dev/null +++ b/manager/common/css/foot_layout.css @@ -0,0 +1,18 @@ +@charset "euc-kr"; + +#footerW_blue {width:100%; height:52px; background:url(/manager/img/blue/bottom_bg2.gif); background-repeat: repeat-x; background-color:#27303B;} +#footerW_orange {width:100%; height:52px; background:url(/manager/img/orange/bottom_bg2.gif); background-repeat: repeat-x; background-color:#3B3227;} +#footerW_sky {width:100%; height:52px; background:url(/manager/img/sky/bottom_bg2.gif); background-repeat: repeat-x; background-color:#25293D;} +#footerW_green {width:100%; height:52px; background:url(/manager/img/green/bottom_bg2.gif); background-repeat: repeat-x ;background-color:#273B35;} +#footerW_gray {width:100%; height:52px; background:url(/manager/img/gray/bottom_bg2.gif); background-repeat: repeat-x; background-color:#313131;} + +#footer_blue {float:left; width:965px; color:#E1E1E1; font-size:0.75em; font-family:tahoma; font-weight:bold; text-align:left; background:url(/manager/img/blue/bottom_bg3.gif); background-repeat: no-repeat; vertical-align:middle; white-space:nowrap;} +#footer_orange {float:left; width:965px; color:#E1E1E1; font-size:0.75em; font-family:tahoma; font-weight:bold; text-align:left; background:url(/manager/img/orange/bottom_bg3.gif); background-repeat: no-repeat; vertical-align:middle; white-space:nowrap;} +#footer_sky {float:left; width:965px; color:#E1E1E1; font-size:0.75em; font-family:tahoma; font-weight:bold; text-align:left; background:url(/manager/img/sky/bottom_bg3.gif); background-repeat: no-repeat; vertical-align:middle; white-space:nowrap;} +#footer_green {float:left; width:965px; color:#E1E1E1; font-size:0.75em; font-family:tahoma; font-weight:bold; text-align:left; background:url(/manager/img/green/bottom_bg3.gif); background-repeat: no-repeat; vertical-align:middle; white-space:nowrap;} +#footer_gray {float:left; width:965px; color:#E1E1E1; font-size:0.75em; font-family:tahoma; font-weight:bold; text-align:left; background:url(/manager/img/gray/bottom_bg3.gif); background-repeat: no-repeat; vertical-align:middle; white-space:nowrap;} + +#footer_blue ul li.left, #footer_orange ul li.left, #footer_sky ul li.left, #footer_green ul li.left, #footer_gray ul li.left {float:left; padding-top:25px; padding-left:15px;} +#footer_blue ul li.right, #footer_orange ul li.right, #footer_sky ul li.right, #footer_green ul li.right, #footer_gray ul li.right {float:right; padding-top:22px;} +#footer_blue ul li.right ul li, #footer_orange ul li.right ul li, #footer_sky ul li.right ul li, #footer_green ul li.right ul li, #footer_gray ul li.right ul li {float:left;padding-top:0;} + diff --git a/manager/common/css/head_layout.css b/manager/common/css/head_layout.css new file mode 100644 index 0000000..ebb6301 --- /dev/null +++ b/manager/common/css/head_layout.css @@ -0,0 +1,87 @@ +@charset "euc-kr"; +/* head_Layout (Ŭ ) */ + +/* ŵ׺̼ */ +#skipnavigation {overflow:hidden; text-indent: -2000px; height: 0; margin: 0; padding: 0; font-size: 0; line-height: 0;} + +/* üܰڽ */ +#wrapper {position:relative; width:1000px; text-align:left;} + +/* ܿ */ +#head{position:relative; width: 1000px; height: 106px;} + +#top_color{position:absolute; top:0px; width:60px; height:4px; background:url(/manager/img/top_color.gif); background-repeat:no-repeat;} + +#website_move{position:absolute; z-index:1; top:0px; left:860px; width:120px; height:45px;} + +#logo{position:absolute; top:4px; width:189px; height:74px;} + +#top_menu {position:absolute; top:0px; right:330px; padding-top:12px;} +#top_menu li{letter-spacing:-1px;font-size:0.9em} +#top_menu li {float:left; padding:0 6px 0 6px; background:url(/manager/img/topmenu_line.gif) no-repeat 0 40%;} +#top_menu li a:link, #top_menu li a:visited {color:#888888; text-decoration:none;} +#top_menu li a:hover, #top_menu li a:active {color:#FF9000; text-decoration:none;} +#top_menu li.first-child {background:none;} + +/* ž޴+־¸޴ */ +#often_wrap {clear:both; height:35px; margin:0; padding:0; position:relative;} +#often_menu {float:right; position:absolute; top:0px; right:170px; margin-top:8px;} +#often_menu ul li {float:left;} +#often_menu ul li.first {margin-top:4px; padding:0px 20px 0 6px; letter-spacing:-1px; font-size:0.9em; background:url(/manager/img/topmenu_line.gif) no-repeat 0 40%;} +#often_menu ul li.first-child {margin-top:4px; padding:0px 6px 0 6px; letter-spacing:-1px; font-size:0.9em; background:none;} +#often_menu li a:link, #often_menu li a:visited {color:#888888; text-decoration:none;} +#often_menu li a:hover, #often_menu li a:active {color:#FF9000; text-decoration:none;} +#often_menu ul li select {float:left; margin-right:3px; font-size:0.9em;} +#often_menu select option.bg_gray {color:#FFFFFF; background-color:#BEBEBE;} +#often_menu_right {float:right; position:absolute; top:0px; right:140px; margin-top:8px;} +#often_menu a {} + +#menu_blue {position: absolute; top:31px; left:198px; width:782px; padding-left:33px; background:url(/manager/img/blue/menu_bg.gif); background-repeat:no-repeat;} +#menu_orange {position: absolute; top:31px; left:198px; width:782px; padding-left:33px; background:url(/manager/img/orange/menu_bg.gif); background-repeat:no-repeat;} +#menu_sky {position: absolute; top:31px; left:198px; width:782px; padding-left:33px; background:url(/manager/img/sky/menu_bg.gif); background-repeat:no-repeat;} +#menu_green {position: absolute; top:31px; left:198px; width:782px; padding-left:33px; background:url(/manager/img/green/menu_bg.gif); background-repeat:no-repeat;} +#menu_gray {position: absolute; top:31px; left:198px; width:782px; padding-left:33px; background:url(/manager/img/gray/menu_bg.gif); background-repeat:no-repeat;} + +#menu_blue ul li, #menu_orange ul li, #menu_sky ul li, #menu_green ul li, #menu_gray ul li {float:left;} +#menu_blue li.menu1, #menu_orange li.menu1, #menu_sky li.menu1, #menu_green li.menu1, #menu_gray li.menu1 {width:109px;} +#menu_blue li.menu2, #menu_orange li.menu2, #menu_sky li.menu2, #menu_green li.menu2, #menu_gray li.menu2 {width:95px;} +#menu_blue li.menu3, #menu_orange li.menu3, #menu_sky li.menu3, #menu_green li.menu3, #menu_gray li.menu3 {width:114px;} +#menu_blue li.menu4, #menu_orange li.menu4, #menu_sky li.menu4, #menu_green li.menu4, #menu_gray li.menu4 {width:84px;} +#menu_blue li.menu5, #menu_orange li.menu5, #menu_sky li.menu5, #menu_green li.menu5, #menu_gray li.menu5 {width:84px;} + +#menu_right {position:absolute; width:126px; top:15px; right:0px;} +#menu_right li {padding-right:3px;} + +#top_bg_blue {position:absolute; top:72px; width:200px; height:34px; background:url(/manager/img/blue/top_bg.gif); background-repeat:no-repeat;} +#top_bg_orange {position:absolute; top:72px; width:200px; height:34px; background:url(/manager/img/orange/top_bg.gif); background-repeat:no-repeat;} +#top_bg_sky {position:absolute; top:72px; width:200px; height:34px; background:url(/manager/img/sky/top_bg.gif); background-repeat:no-repeat;} +#top_bg_green {position:absolute; top:72px; width:200px; height:34px; background:url(/manager/img/green/top_bg.gif); background-repeat:no-repeat;} +#top_bg_gray {position:absolute; top:72px; width:200px; height:34px; background:url(/manager/img/gray/top_bg.gif); background-repeat:no-repeat;} + + +/* α */ +#wrapper_login {position:relative; width:100%; text-align:center;} +#topline {width:100%; height:4px; background-color:#337ACC; text-align:left;} +#toplogo {height:212px; background:url(/manager/img/login_top_bg.gif); text-align:center;} +#toplogo div.head_logo {width:800px; height:212px; text-align:left; margin: 0 auto;} +#toplogo div.head_logo img {height:72px; bottom:0;padding-top:140px;} +#toplogo div.human {position:absolute; top:64px; left:50%; margin-left:220px; width:235px; height:208px; background:url(/manager/img/login_human.png); background-repeat:no-repeat;} + +#login {width:100%; height:237px; background:url(/manager/img/login_main_bg.gif); background-color:#5695EB; background-repeat:no-repeat; text-align:center;} +#login div.login_cont {width:517px; height:237px; text-align:left; margin: 0 auto; background:url(/manager/img/login_bg.png); background-repeat:no-repeat;} + +#login div.login_cont h2 {height:50px; padding-left:48px; width:150px; padding:52px 0 5px 40px;} +#login div.login_cont h2 img {} + +#www_member_login {float:left; margin:0; padding-left:112px; text-align:left; width:290px;} +#www_member_login p.id, #www_member_login p.password {float:left; width:230px; padding-bottom:1px; } +#www_member_login p.button {float:left; margin-top:-26px; padding:0; } +#www_member_login p.id span.le1 input {margin-top:1px; margin-left:4px;} +#www_member_login p.password span.le1 input {margin-top:1px; margin-left:4px;} + +input.idinput{height:15px; vertical-align:top; width:130px; padding-top:4px; background-image:url(/manager/img/login_id_bg.gif); background-repeat:no-repeat; background-position:0 0; border:0; background-color:transparent; font-weight:bold; color:#ffffff;} +input.pwinput{height:15px; vertical-align:top; width:130px; padding-top:2px; background-image:url(/manager/img/login_pw_bg.gif); background-repeat:no-repeat; background-position:0 0; border:0; background-color:transparent; font-weight:bold; color:#ffffff;} +input.idinput.none {background:none;} +input.pwinput.none {background:none;} + +#copyright {position:absolute; top:470px; left:50%; height:50px; margin-left:210px; font-family:tahoma; font-size:0.8em; color:#74788C; font-weight:bold; text-align:left; white-space:nowrap;} \ No newline at end of file diff --git a/manager/common/css/main_layout.css b/manager/common/css/main_layout.css new file mode 100644 index 0000000..5923c5c --- /dev/null +++ b/manager/common/css/main_layout.css @@ -0,0 +1,103 @@ +/* 뿵 */ +#main_body_blue {overflow:hidden; clear:left; width:1000px; margin: 0; padding: 0; background:url(/manager/img/blue/main_content_bg.gif) repeat-y left;} +#main_body_orange {overflow:hidden; clear:left; width:1000px; margin: 0; padding: 0; background:url(/manager/img/orange/main_content_bg.gif) repeat-y left;} +#main_body_sky {overflow:hidden; clear:left; width:1000px; margin: 0; padding: 0; background:url(/manager/img/sky/main_content_bg.gif) repeat-y left;} +#main_body_green {overflow:hidden; clear:left; width:1000px; margin: 0; padding: 0; background:url(/manager/img/green/main_content_bg.gif) repeat-y left;} +#main_body_gray {overflow:hidden; clear:left; width:1000px; margin: 0; padding: 0; background:url(/manager/img/gray/main_content_bg.gif) repeat-y left;} + +/* ʿ */ +#content_left {float:left; width:189px; } + +#cl_info {width:175px; height:48px; margin-left:5px; padding-left:7px; background:url(/manager/img/lm_tit00.gif); background-repeat:no-repeat;} +#cl_info div.content {letter-spacing:-1px; vertical-align:middle; font-size:0.9em; line-height:160%} +#cl_info div span.ip_con {color:#7462C8; font-family:verdana; letter-spacing:0px; font-size:0.8em;} +#cl_info div span.info {padding-left:13px;} + +#mng_info {width:166px; margin-top:15px; padding-bottom:5px; margin-left:11px; background:url(/manager/img/mleft_bg.gif) repeat-y left;} +#mng_info h2 {height:26px;margin-bottom:5px;} +#mng_info div.content li {padding:2px 0px 2px 14px; font-size:0.9em; background-color:transparent; background-image: url(/manager/img/mleft_ic.gif); background-repeat: no-repeat; background-position:8px 6px;} +#mng_info div.content li img {vertical-align:middle;} + +#hrd_info {width:166px; margin-left:11px; margin-bottom:0; background:url(/manager/img/mleft_bg.gif) repeat-y left;} +#hrd_info h2 {height:26px;margin-bottom:5px;} +#hrd_info div.content li {padding:2px 0px 2px 14px; font-size:0.9em; background-color:transparent; background-image: url(/manager/img/mleft_ic.gif); background-repeat: no-repeat; background-position:8px 6px;} +#hrd_info div.content li.none {padding:0px 0px 0px 18px; font-family:verdana; font-size:0.8em; color:#616161; letter-spacing:-1px; background:none;} +#hrd_info div.content li.pt5 {margin-top:8px} +#hrd_info div.content li.bottom {height:13px; padding:0px 0px 0px 18px; background:url(/manager/img/mleft_bottom.gif); background-repeat: no-repeat;} +#hrd_info div.line {float:left; width:100px; height:10px; vertical-align:middle; border:1px solid #C1C1C1; background-color:#F4F4F4; padding-top:1px;} +#hrd_info div.line img{float:left;height:8px;} + +/*  */ +#content_center {float:left; width:602px;} + +#new_notice {clear:both; width:570px; margin-left:19px; margin-bottom:10px;} +#new_notice div.top {float:left; width:570px; height:24px; background-color:transparent; background-image: url(/manager/img/tbt_bg.gif);} +#new_notice div.top li {float:left; height:24px; padding-left:27px; font-size:1em; color:#222222; font-weight:bold;} +#new_notice div.top li.lt {float:left; height:17px; padding-top:7px; background-color:transparent; background-image:url(/manager/img/tbt_left.gif); background-repeat: no-repeat;} +#new_notice div.top li.more {float:right;} +#new_notice div.top li.more img {float:right;height:24px;} +#new_notice div.content {display:block; float:left; width:570px; padding-top:10px; margin-bottom:10px; padding-bottom:10px; background:url(/manager/img/tb_bg.gif) repeat-y left; border-bottom:1px solid #DCDCDC;} +#new_notice div.content ul li {width:550px; float:left; padding:3px 0px 3px 14px; color:#898989; font-family:gulim; background-image: url(/manager/img/tbt_ic.gif); background-repeat:no-repeat; background-position:9px 7px;} +#new_notice div.content ul li div.subj {width:490px; float:left; overflow:hidden; height:14px;} +#new_notice div.content ul li span.gray2 {float:left; display:inline; letter-spacing:-0.05em;} +#new_notice div.content ul li span.date {float:right; padding:0px 12px 0px 0px; text-align:right; overflow:hidden; color:#8A8A8A; background:none;} + +#hb_info {clear:both; width:570px; margin-left:19px;} +#hb_info div.top {float:left; width:570px; height:23px; background-color:transparent; background-image: url(/manager/img/tbt_bg.gif);} +#hb_info div.top li {float:left; height:23px; padding-left:27px; font-size:1em; color:#222222; font-weight:bold;} +#hb_info div.top li.lt {float:left; height:16px; padding-top:7px; background-color:transparent; background-image:url(/manager/img/tbt_left2.gif); background-repeat: no-repeat;} +#hb_info div.top li.more {float:right;} +#hb_info div.top li.more img {float:right;height:23px;} +#hb_info div.content {display:block; float:left; padding-bottom:10px;} +#hb_info div.content table {float:left; width:570px;} +#hb_info div.content li {float:left;} +#hb_info div.content li.th {float:left; width:131px; height:20px; padding:2px 0 0 11px; border:1px solid #DCDCDC; border-right:0px; border-left:0px; color:#464646; font-weight:normal; font-size:0.9em; letter-spacing:-1px; text-align:left; background:#F6F6F6;} +#hb_info div.content li.td {float:left; width:132px; height:20px; padding:2px 11px 0 0; border:1px solid #DCDCDC; border-right:0px; border-left:0px; color:#464646; font-weight:normal; font-size:0.9em; line-height:16px; text-align:right;} + + + + +#month_stats {clear:both; width:570px; margin-left:19px; margin-bottom:20px;} +#month_stats div.top {float:left; width:570px; height:24px; background-color:transparent; background-image: url(/manager/img/tbt_bg.gif);} +#month_stats div.top li {float:left; height:24px; padding-left:27px; font-size:1em; color:#222222; font-weight:bold;} +#month_stats div.top li.lt {float:left; height:17px; padding-top:7px; background-color:transparent; background-image:url(/manager/img/tbt_left3.gif); background-repeat: no-repeat;} +#month_stats div.top li.more {float:right;} +#month_stats div.top li.more img {float:right;height:24px;} +#month_stats div.content {display:block; text-align:center; width:570px; background:url(/manager/img/tb_bg.gif) repeat-y left; border-bottom:1px solid #DCDCDC;} +#month_stats div.content object {margin-top:12px;margin-bottom:5px;} + +/* */ +#content_right{float:left; width:200px;} + +#cr_date {width:190px; height:47px; background:url(/manager/img/date_bg.gif);} +#cr_date div.content {height:30px; padding-top:12px; padding-left:32px; font-weight:bold; color:#394D7A; font-size:0.9em; background-image:url(/manager/img/date_ic.gif); background-repeat: no-repeat; background-position:12px 10px;} + +#cr_memo {width:190px;} +#cr_memo h2 {height:38px;} +#cr_memo div.content {padding-bottom:18px; background:url(/manager/img/memo_bg.gif) repeat-y left; text-align:center; border-bottom:3px solid #E4E4E4;} +#cr_memo div.content textarea.info {overflow:auto; width:158px; height:200px; margin:0; font-size:12px; border-top:1px solid #9D9B9D;border-left:1px solid #9D9B9D;border-right:1px solid #E1DFDB;border-bottom:1px solid #E1DFDB;line-height:20px;padding-left:5px;padding-right:4px;background:url(/manager/img/memo_bg2.gif);} +#cr_memo div.content textarea{margin:0;} +#cr_memo div.content li.st {padding-top:5px; color:#A3A3A3; font-size:0.9em;} +#cr_memo div.content li.bt {padding:5px 8px 0px 60px;} +#cr_memo div.content div {padding-bottom:40px;} + +#cr_banner {width:190px; margin-top:10px;} +#cr_banner div.content {padding-bottom:6px; text-align:center;} + + + +/*ʸ޴(־¸޴) ŸƲ*/ +#sidemenu {padding: 5px 0px 0 11px;} + +/*ʸ޴ 2Depth*/ +#sidemenu ul li a {display: block; width:158px; padding:6px 0px 10px 10px; margin-top:15px; color:#FFFFFF; font-weight:bold; letter-spacing: -0.1em;} +#sidemenu ul li.blue {background:url(/manager/img/blue/lm_1step_bg.gif); background-repeat:no-repeat;} +#sidemenu ul li.orange {background:url(/manager/img/orange/lm_1step_bg.gif); background-repeat:no-repeat;} +#sidemenu ul li.sky {background:url(/manager/img/sky/lm_1step_bg.gif); background-repeat:no-repeat;} +#sidemenu ul li.green {background:url(/manager/img/green/lm_1step_bg.gif); background-repeat:no-repeat;} +#sidemenu ul li.gray {background:url(/manager/img/gray/lm_1step_bg.gif); background-repeat:no-repeat;} +#sidemenu ul li a:hover, #sidemenu ul li a:active, #sidemenu ul li a:focus {text-decoration: none;} + +/*ʸ޴ 3Depth*/ +#sidemenu ul ul li a {display: block; width: 140px; height:10px; margin:0; margin-left:10px; padding:5px; font-weight:normal; color: #000000; letter-spacing:-0.1em; font-size: .92em; background:url(/manager/img/lm_2step_ic.gif); background-repeat: no-repeat;} +#sidemenu ul ul li a.on, #sidemenu ul ul li a:hover {font-weight:bold;} \ No newline at end of file diff --git a/manager/common/css/sub_layout.css b/manager/common/css/sub_layout.css new file mode 100644 index 0000000..392eed0 --- /dev/null +++ b/manager/common/css/sub_layout.css @@ -0,0 +1,101 @@ +/***************************** ʸ޴ ******************************/ +#sub_blue {overflow: hidden; width:1000px; margin:0; padding:0; background:url(/manager/img/blue/sub_bg.gif) repeat-y left;} +#sub_orange {overflow: hidden; width:1000px; margin:0; padding:0; background:url(/manager/img/orange/sub_bg.gif) repeat-y left;} +#sub_sky {overflow: hidden; width:1000px; margin:0; padding:0; background:url(/manager/img/sky/sub_bg.gif) repeat-y left;} +#sub_green {overflow: hidden; width:1000px; margin:0; padding:0; background:url(/manager/img/green/sub_bg.gif) repeat-y left;} +#sub_gray {overflow: hidden; width:1000px; margin:0; padding:0; background:url(/manager/img/gray/sub_bg.gif) repeat-y left;} + +#sidebar {display:inline; float:left; width: 189px; margin-left: 0px; padding-bottom:30px; min-height:100px;} +* html #sidebar {height:100px;} /*ie6 Ͽ */ + +/*ʸ޴ ŸƲ*/ +#sidebar h2#sidetitle {position:absolute; top:106px; left:5px; width:178px; height:48px; } +#sidemenu {padding: 45px 0px 0 11px;} + +/*ʸ޴ 2Depth*/ +#sidemenu ul li a {display: block; width:158px; padding:6px 0px 10px 10px; margin-top:15px; color:#FFFFFF; font-weight:bold; letter-spacing: -0.1em;} +#sidemenu ul li.blue {background:url(/manager/img/blue/lm_1step_bg.gif); background-repeat:no-repeat;} +#sidemenu ul li.orange {background:url(/manager/img/orange/lm_1step_bg.gif); background-repeat:no-repeat;} +#sidemenu ul li.sky {background:url(/manager/img/sky/lm_1step_bg.gif); background-repeat:no-repeat;} +#sidemenu ul li.green {background:url(/manager/img/green/lm_1step_bg.gif); background-repeat:no-repeat;} +#sidemenu ul li.gray {background:url(/manager/img/gray/lm_1step_bg.gif); background-repeat:no-repeat;} +#sidemenu ul li a:hover, #sidemenu ul li a:active, #sidemenu ul li a:focus {text-decoration: none;} + +/*ʸ޴ 3Depth*/ +#sidemenu ul ul li a {display: block; width: 140px; height:10px; margin:0; margin-left:10px; padding:5px; font-weight:normal; color: #000000; letter-spacing:-0.1em; font-size: .92em; background:url(/manager/img/lm_2step_ic.gif); background-repeat: no-repeat;} +#sidemenu ul ul li a.on, #sidemenu ul ul li a:hover {font-weight:bold;} + +/***************************** 뿵 ******************************/ +#contents {display: inline; float: left; width: 750px; margin-left: 21px; padding: 0; background:transparent; margin-bottom:40px;} /* FFϴ */ + +/*ŸƲ*/ +#contents_head {position:relative; clear:both; width:750px; height:36px; margin:0; padding:0; background:url(/manager/img/tit_bg.gif) repeat-x top;} +#contents_title {float:left; margin: 0; background: url(../img/common/title_bg02.gif) repeat-x left top;} +#contents_title h1{float:left; font-family:gulim; font-size:1.2em; color:#464646; font-weight:bold; letter-spacing:-0.1em;} +#contents_title h1 span{float:left;padding-left:6px;padding-top:3px;} +#contents_title img.blue{float:left;background-color:#0070D2;} +#contents_title img.orange{float:left;background-color:#D25000;} +#contents_title img.sky{float:left;background-color:#00A0D2;} +#contents_title img.green{float:left;background-color:#1ABD15;} +#contents_title img.gray{float:left;background-color:#696969;} + +#contents_title img.often {padding-left:7px; padding-top:3px; height:14px; margin:0;} + + +#location {position: absolute; top:14px; right:9px; padding-right:1px; font-size: .92em; color: #828282; letter-spacing:-0.1em;} +#location a {color: #828282;} +#location a.now {font-weight:bold;} + +/**/ +#contents_area {clear:both; width:730px; margin:0 auto; margin-bottom:40px; min-height:200px;} /* IEϴ */ +* html #body_content {height:250px;} + +#contents_area h2 {padding:0 0 12px 20px; margin-top:28px; font-family:Gulim; font-size:1em; font-weight:bold; letter-spacing:-0.1em;} +#contents_area h2.space {padding:0;} +#contents_area h2.blue{color:#0053A7;background: url('/manager/img/blue/con_2step_ic.gif') no-repeat scroll 0 0px;} +#contents_area h2.orange{color:#A75300;background: url('/manager/img/orange/con_2step_ic.gif') no-repeat scroll 0 0px;} +#contents_area h2.sky{color:#00759E;background: url('/manager/img/sky/con_2step_ic.gif') no-repeat scroll 0 0px;} +#contents_area h2.green{color:#298F08;background: url('/manager/img/green/con_2step_ic.gif') no-repeat scroll 0 0px;} +#contents_area h2.gray{color:#535353;background: url('/manager/img/gray/con_2step_ic.gif') no-repeat scroll 0 0px;} +#contents_area h2 span {padding-left:6px; font-family:dotum; color:#838383; font-size: 0.9em; font-weight:normal;} +#contents_area h2 span.loc {padding-left:6px; font-family:dotum; color:#838383; font-size: 1em; font-weight:normal;} +#contents_area p {clear:both; margin:0; line-height:1.65em;} +#contents_area .eng {padding-left:0; color:#6A6A6A; font-size: 0.9em; font-weight:normal; letter-spacing:-0.1em;} +#contents_area img.img_center {vertical-align: middle;} + +.contoll_box {float:right; padding-top:20px; text-align:center;} +.contoll_box2 {float:left;} +.contoll_box2 ul li {float:left;} +.contoll_box2 ul li div {float:left;} + +.contoll {clear:both; height:54px; margin:0; padding:0; position:relative;} +.contoll_left {float:left;} +.contoll_right {float:right;} +.contoll_right ul li {float:left; margin-top:25px; font-family:Gulim; font-size:1em; letter-spacing:-0.1em;} + +/* Paginate */ +.paginate{clear:both; position:relative; padding-top:10px; text-align:center;} +.paginate *{margin:0; padding:0;} +.paginate a, +.paginate strong{_position:relative; margin-left:-7px; font-weight:bold; display:inline-block; padding:3px 8px 1px 7px; color:#313031; border-left:1px solid #ccc; border-right:1px solid #ccc; text-decoration:none; line-height:normal; font:bold 12px , Dotum, , Gulim, AppleGothic, Sans-serif; background:#fff;} +.paginate strong{color:#ff8600 !important;} +.paginate a:hover{background:#F7F7F7;} +.paginate a.pre{padding:3px 8px 1px 16px; background:url(/manager/img/bu_pg1_l1.gif) no-repeat 8px 6px !important; border:none; font-weight:normal; } +.paginate a.next{padding:3px 16px 1px 8px; background:url(/manager/img/bu_pg1_r1.gif) no-repeat 37px 6px !important; border:none; font-weight:normal; } + + +.write_info {clear:both; height:35px; margin:0; padding:0; position:relative; margin-bottom:15px; background:url('/manager/img/write_form_bg.gif'); background-repeat: no-repeat;} +.write_form {position:absolute; top:0; left:0;} +.write_form ul li {float:left;} +.write_form form, .write_form div {float:left;} +.write_form input.input {float:left; margin-top:1px;} +.write_form select {float:left; margin-left:5px; margin-right:3px; margin-top:1px; margin-bottom:1px;} +.write_form select.stats {float:left; margin-left:0px; margin-right:2px; margin-top:1px; margin-bottom:1px;} +.write_form li.text {float:left; margin-top:4px; padding-left:20px; padding-right:6px; letter-spacing:-1px; font-weight:bold; background:url(/manager/img/write_ic.gif); background-repeat: no-repeat;} +.write_form li.search {float:left; margin-top:3px; padding-top:1px; vertical-align:middle; padding-left:27px; padding-right:6px; letter-spacing:-1px; font-weight:bold; background:url(/manager/img/search_ic.gif); background-repeat: no-repeat;} + +.list_count {margin-bottom:5px;margin-right:5px; font-size:.92em; text-align:right;} +.chart1 {margin-bottom:25px;text-align:center;} + +div.post_search_wrap {margin-top:6px;} +div.post_search {overflow:auto; height:80px; border:1px solid #cdcdcd; margin-top:3px; margin-right:10px; padding:6px;} \ No newline at end of file diff --git a/manager/common/css/template.css b/manager/common/css/template.css new file mode 100644 index 0000000..ec120a9 --- /dev/null +++ b/manager/common/css/template.css @@ -0,0 +1,277 @@ +@charset "euc-kr"; + +body {font-size: 75%; font-family: Dotum, sans-serif; color: #575757;} +body.blue {background:url(/manager/img/blue/main_bg.gif); background-position:top; background-repeat: repeat-x;} +body.orange {background:url(/manager/img/orange/main_bg.gif); background-position:top; background-repeat: repeat-x;} +body.sky {background:url(/manager/img/sky/main_bg.gif); background-position:top; background-repeat: repeat-x;} +body.green {background:url(/manager/img/green/main_bg.gif); background-position:top; background-repeat: repeat-x;} +body.gray {background:url(/manager/img/gray/main_bg.gif); background-position:top; background-repeat: repeat-x;} + +table, pre,div {color: #575757; font-size: 1em;} +a, a:link {color: #575757; text-decoration: none; cursor: pointer; } +a:visited {color: #575757;} +a:hover, a:active, a:focus {color: #575757; text-decoration: underline;} + +/* Letter-spacing */ +.ls0 {letter-spacing:0;} +.ls_s {letter-spacing:-0.05em;} + +/* cursor:pointer */ +.hand_shape{cursor:pointer;} + +/* dispaly */ +.disblock {display:block;} +.disnone {display:none;} +.disinline {display:inline;} + +/* align */ +.tal {text-align: left;} +.tac {text-align: center;} +.tar {text-align: right;} + +/* vertical align */ +.vat {vertical-align:top;} +.vam {vertical-align:middle;} +.vab {vertical-align:bottom;} + +/* font family */ +.ff1 {font-family:,dotum;} +.ff2 {font-family:,gulim;} +.ff3 {font-family:verdana;} +.ff4 {font-family:tahoma;} +.ff5 {font-family:arial;} + +/* font size */ +.fs10 {font-size:10px;} +.fs11 {font-size:11px;} +.fs12 {font-size:12px;} +.fs14 {font-size:14px;} +.fn { font-weight:normal;} + +/* font color */ +.orange {color:#f96f00;} +.black {color:#000000;} +.sky_blue {color:#0085c9;} +.blue {color:#0773c7;} +.gray {color:#C2C2C2;} +.gray2 {color:#9B9B9B;} +.bold {font-weight:bold;} + +/* Tag(Paragraph) */ +p { margin: 0; padding:0; border:0;} +p.em { color: #06c; margin: 0; padding: 0; } + +/* Button */ +.ct_bt01{height:20px; line-height:18px; padding-left:0px; padding-right:0px; padding-bottom:2px; font-size:0.92em; letter-spacing:-1px; color:#281E00; border:1px solid; border-color:#cdcdcd #909090 #909090 #cdcdcd; background-color:#f2f2f2; cursor:pointer;} +.ct_bt02{height:20px; line-height:18px; padding-left:0px; padding-right:0px; padding-bottom:2px; font-size:0.92em; letter-spacing:-1px; color:#FFFFFF; border:1px solid; border-color:#858585 #606060 #606060 #858585; background-color:#A2A2A2; cursor:pointer;} + +.bt01 {display:inline;} +.bt01 a{display:inline; overflow:hidden; float:left; height:22px; padding-left:13px; margin-right:3px; font:12px dotum; letter-spacing:-1px; color:#6B6B6B; text-decoration:none; background:url('/manager/img/bt01_bg.gif') left 0; cursor:pointer;} +.bt01 a:hover{background:url('/manager/img/bt01_bg.gif') left -22px; text-decoration:none;} +.bt01 a span{display:inline; overflow:hidden; float:left; height:22px; padding-right:10px; line-height:200%; background:url('/manager/img/bt01_bg.gif') right 0;} +.bt01 a:hover span{color:#6B6B6B; background:url('/manager/img/bt01_bg.gif') right -22px;} + + +#bt02 {display:inline;} +#bt02 a{display:inline; overflow:hidden; float:left; height:17px; padding-left:3px; margin-right:3px; font:11px dotum; letter-spacing:-1px;color:#DD563E; text-decoration:none; background:url('/manager/img/bt02_bg.gif') left 0; cursor:pointer;} +#bt02 a:hover{background:url('/manager/img/bt02_bg.gif') left -17px;} +#bt02 a span{display:inline; overflow:hidden; float:left; height:17px; padding-right:3px; line-height:170%; background:url('/manager/img/bt02_bg.gif') right 0;} +#bt02 a:hover span{color:#4685D4; background:url('/manager/img/bt02_bg.gif') right -17px;} + +#bt03 {display:inline;} +#bt03 a{display:inline; overflow:hidden; float:left; height:19px; padding-left:3px; margin-right:3px; font:11px dotum; letter-spacing:-1px; color:#8D8D8D; text-decoration:none; background:url('/manager/img/bt03_bg.gif') left 0; cursor:pointer;} +#bt03 a:hover{background:url('/manager/img/bt03_bg.gif') left -19px;} +#bt03 a span{display:inline; overflow:hidden; float:left; height:19px; padding-right:3px; line-height:180%; background:url('/manager/img/bt03_bg.gif') right 0;} +#bt03 a:hover span{color:#DD563E; background:url('/manager/img/bt03_bg.gif') right -19px;} + +#bt04 span{display:inline; overflow:hidden; float:left; height:19px; padding-left:3px; border:none; font:11px dotum; letter-spacing:-1px; color:#8D8D8D; text-decoration:none; background:url('/manager/img/bt03_bg.gif') left 0; cursor:pointer;} +#bt04 span:hover{border:none; background:url('/manager/img/bt03_bg.gif') left -19px;} +#bt04 .button input {display:inline; overflow:hidden; height:19px; padding-left:0px; padding-right:3px; padding-bottom:2px; border:none; margin:0; font:11px dotum; letter-spacing:-1px; color:#8D8D8D; text-decoration:none; line-height:180%; background:url('/manager/img/bt03_bg.gif') right 0; text-align:center; cursor:pointer;} +#bt04 .button:hover input {border:none; color:#DD563E; background:url('/manager/img/bt03_bg.gif') right -19px;} + +#blue_bt span{display:inline; overflow:hidden; float:left; height:22px; margin-left:4px; padding-left:2px; border:none; font:12px dotum; letter-spacing:-1px; font-weight:bold; color:#FFFFFF; text-decoration:none; background:url('/manager/img/blue/bt_bg.gif') left 0; cursor:pointer;} +#blue_bt span:hover {border:none;background:url('/manager/img/blue/bt_bg.gif') left -22px;} +#blue_bt .button input {display:inline; overflow:hidden; height:22px; padding-left:8px; padding-right:10px; padding-bottom:2px; border:none; font:12px dotum; letter-spacing:-1px; font-weight:bold; color:#FFFFFF; text-decoration:none; line-height:200%; background:url('/manager/img/blue/bt_bg.gif') right 0; cursor:pointer;} +#blue_bt .button:hover input {border:none; background:url('/manager/img/blue/bt_bg.gif') right -22px;} + +#orange_bt span{display:inline; overflow:hidden; float:left; height:22px; margin-left:4px; padding-left:2px; border:none; font:12px dotum; letter-spacing:-1px; font-weight:bold; color:#FFFFFF; text-decoration:none; background:url('/manager/img/orange/bt_bg.gif') left 0; cursor:pointer;} +#orange_bt span:hover {border:none;background:url('/manager/img/orange/bt_bg.gif') left -22px;} +#orange_bt .button input {display:inline; overflow:hidden; height:22px; padding-left:8px; padding-right:10px; padding-bottom:2px; border:none; font:12px dotum; letter-spacing:-1px; font-weight:bold; color:#FFFFFF; text-decoration:none; line-height:200%; background:url('/manager/img/orange/bt_bg.gif') right 0; cursor:pointer;} +#orange_bt .button:hover input {border:none; background:url('/manager/img/orange/bt_bg.gif') right -22px;} + +#sky_bt span{display:inline; overflow:hidden; float:left; height:22px; margin-left:4px; padding-left:2px; border:none; font:12px dotum; letter-spacing:-1px; font-weight:bold; color:#FFFFFF; text-decoration:none; background:url('/manager/img/sky/bt_bg.gif') left 0; cursor:pointer;} +#sky_bt span:hover {border:none;background:url('/manager/img/sky/bt_bg.gif') left -22px;} +#sky_bt .button input {display:inline; overflow:hidden; height:22px; padding-left:8px; padding-right:10px; padding-bottom:2px; border:none; font:12px dotum; letter-spacing:-1px; font-weight:bold; color:#FFFFFF; text-decoration:none; line-height:200%; background:url('/manager/img/sky/bt_bg.gif') right 0; cursor:pointer;} +#sky_bt .button:hover input {border:none; background:url('/manager/img/sky/bt_bg.gif') right -22px;} + +#green_bt span{display:inline; overflow:hidden; float:left; height:22px; margin-left:4px; padding-left:2px; border:none; font:12px dotum; letter-spacing:-1px; font-weight:bold; color:#FFFFFF; text-decoration:none; background:url('/manager/img/green/bt_bg.gif') left 0; cursor:pointer;} +#green_bt span:hover {border:none;background:url('/manager/img/green/bt_bg.gif') left -22px;} +#green_bt .button input {display:inline; overflow:hidden; height:22px; padding-left:8px; padding-right:10px; padding-bottom:2px; border:none; font:12px dotum; letter-spacing:-1px; font-weight:bold; color:#FFFFFF; text-decoration:none; line-height:200%; background:url('/manager/img/green/bt_bg.gif') right 0; cursor:pointer;} +#green_bt .button:hover input {border:none; background:url('/manager/img/green/bt_bg.gif') right -22px;} + +#gray_bt span{display:inline; overflow:hidden; float:left; height:22px; margin-left:4px; padding-left:2px; border:none; font:12px dotum; letter-spacing:-1px; font-weight:bold; color:#FFFFFF; text-decoration:none; background:url('/manager/img/gray/bt_bg.gif') left 0; cursor:pointer;} +#gray_bt span:hover {border:none;background:url('/manager/img/gray/bt_bg.gif') left -22px;} +#gray_bt .button input {display:inline; overflow:hidden; height:22px; padding-left:8px; padding-right:10px; padding-bottom:2px; border:none; font:12px dotum; letter-spacing:-1px; font-weight:bold; color:#FFFFFF; text-decoration:none; line-height:200%; background:url('/manager/img/gray/bt_bg.gif') right 0; cursor:pointer;} +#gray_bt .button:hover input {border:none; background:url('/manager/img/gray/bt_bg.gif') right -22px;} + +#w01_bt span{display:inline; overflow:hidden; float:left; height:22px; margin-left:4px; padding-left:2px; border:none; font:12px dotum; letter-spacing:-1px; color:#747474; text-decoration:none; background:url('/manager/img/bt_w01_bg.gif') left 0; cursor:pointer;} +#w01_bt span:hover {border:none;background:url('/manager/img/bt_w01_bg.gif') left -22px;} +#w01_bt .button input {display:inline; overflow:hidden; height:22px; padding-left:2px; padding-right:4px; padding-bottom:2px; border:none; font:12px dotum; letter-spacing:-1px; color:#747474; text-decoration:none; line-height:200%; background:url('/manager/img/bt_w01_bg.gif') right 0; cursor:pointer;} +#w01_bt .button:hover input {border:none; background:url('/manager/img/bt_w01_bg.gif') right -22px;} +#w01_bt .button input.stats {letter-spacing:0px;} + + +/* Table */ +.bbs_main table {width:100%; float:left; white-space:nowrap; font:12px Dotum; border-collapse:collapse;} +.bbs_main caption {display:none;} +.bbs_main th {padding:6px 0 4px 11px; border-top:1px solid #DCDCDC; border-left:1px solid #DCDCDC; border-right:1px solid #DCDCDC; color:#464646; font-weight:normal; font-size:0.9em; letter-spacing:-1px; text-align:left; background:#F6F6F6;} +.bbs_main th.bottom {padding:6px 0 4px 11px; border-top:1px solid #DCDCDC; border-left:1px solid #DCDCDC; border-right:1px solid #DCDCDC; border-bottom:1px solid #DCDCDC; color:#464646; font-weight:normal; font-size:0.9em; letter-spacing:-1px; text-align:left; background:#F6F6F6;} +.bbs_main td {padding:5px 11px 2px 0; border-top:1px solid #DCDCDC; color:#464646; font-weight:normal; font-size:0.9em; line-height:16px; text-align:right;} +.bbs_main td.bottom {padding:5px 11px 2px 0; border-top:1px solid #DCDCDC; border-bottom:1px solid #DCDCDC; color:#464646; font-weight:normal; font-size:0.9em; line-height:16px; text-align:right;} +.bbs_main td.right {padding:5px 11px 2px 0; border-top:1px solid #DCDCDC; border-right:1px solid #DCDCDC; color:#464646; font-weight:normal; font-size:0.9em; line-height:16px; text-align:right;} + +.bbs_blue {width:730px; border-top:2px solid #4381BF; border-bottom:1px solid #C5D9E2; font:12px Dotum; border-collapse:collapse; text-align:center;} +.bbs_blue caption {display:none;} +.bbs_blue th {height:32px; border:1px solid #C5D9E2; background:#F4F8FC; color:#3D76AA; font-weight:bold; letter-spacing:-1px;} +.bbs_blue thead tr th {height:32px; border:1px solid #C5D9E2; background:#F4F8FC; color:#3D76AA; font-weight:bold; letter-spacing:-1px;} +.bbs_blue td {padding:5px 0px 5px 0px; border:1px solid #C5D9E2; line-height:16px; vertical-align:top; text-align:left;} +.bbs_blue tfoot td {padding:5px 0px 5px 0px; border:1px solid #C5D9E2; background:#F4F8FC; color:#3D76AA; font-weight:bold; letter-spacing:-1px; text-align:left;} +.bbs_blue td span.text1 {padding-left:6px; font-family:dotum; color:#4381BF; font-size: 0.9em; font-weight:normal; letter-spacing:-0.1em;} +.bbs_blue td.center {padding:5px 0px 5px 0px; vertical-align:middle; text-align:center;} +.bbs_blue td.center div.left {text-align:left;padding-left:12px;padding-top:4px;} +.bbs_blue td.left {padding:5px 0px 5px 10px; vertical-align:middle; text-align:left;} +.bbs_blue td.textarea {padding:4px 0px 4px 0px; margin:0; border:0px;} +.bbs_blue td.newsletter {padding-top:15px; padding-bottom:15px; padding-left:15px;} + +.bbs_orange {width:730px; border-top:2px solid #D3802E; border-bottom:1px solid #E7CCC0; font:12px Dotum; border-collapse:collapse; text-align:center;} +.bbs_orange caption {display:none;} +.bbs_orange th {height:32px; border:1px solid #E7CCC0; background:#FDF7F2; color:#BC702B; font-weight:bold; letter-spacing:-1px;} +.bbs_orange thead tr th {height:32px; border:1px solid #E7CCC0; background:#FDF7F2; color:#BC702B; font-weight:bold; letter-spacing:-1px;} +.bbs_orange td {padding:5px 0px 5px 0px; border:1px solid #E7CCC0; line-height:16px; vertical-align:top; text-align:left;} +.bbs_orange tfoot td {padding:5px 0px 5px 0px; border:1px solid #E7CCC0; background:#FDF7F2; color:#BC702B; font-weight:bold; letter-spacing:-1px; text-align:left;} +.bbs_orange td span.text1 {padding-left:6px; font-family:dotum; color:#D3802E; font-size: 0.9em; font-weight:normal; letter-spacing:-0.1em;} +.bbs_orange td.center {padding:5px 0px 5px 0px; vertical-align:middle; text-align:center;} +.bbs_orange td.left {padding:5px 0px 5px 10px; vertical-align:middle; text-align:left;} +.bbs_orange td.textarea {padding:4px 0px 4px 0px; margin:0; border:0px;} +.bbs_orange td.newsletter {padding-top:15px; padding-bottom:15px; text-align:center;} + +.bbs_sky {width:730px; border-top:2px solid #439EBF; border-bottom:1px solid #C5E0E2; font:12px Dotum; border-collapse:collapse; text-align:center;} +.bbs_sky caption {display:none;} +.bbs_sky th {height:32px; border:1px solid #C5E0E2; background:#F4FAFC; color:#3D8FAA; font-weight:bold; letter-spacing:-1px;} +.bbs_sky thead tr th {height:32px; border:1px solid #C5E0E2; background:#F4FAFC; color:#3D8FAA; font-weight:bold; letter-spacing:-1px;} +.bbs_sky td {padding:5px 0px 5px 0px; border:1px solid #C5D9E2; line-height:16px; vertical-align:top; text-align:left;} +.bbs_sky tfoot td {padding:5px 0px 5px 0px; border:1px solid #C5E0E2; background:#F4FAFC; color:#3D8FAA; font-weight:bold; letter-spacing:-1px; text-align:left;} +.bbs_sky td span.text1 {padding-left:6px; font-family:dotum; color:#439EBF; font-size: 0.9em; font-weight:normal; letter-spacing:-0.1em;} +.bbs_sky td.center {padding:5px 0px 5px 0px; vertical-align:middle; text-align:center;} +.bbs_sky td.left {padding:5px 0px 5px 10px; vertical-align:middle; text-align:left;} +.bbs_sky td.textarea {padding:4px 0px 4px 0px; margin:0; border:0px;} +.bbs_sky td.newsletter {padding-top:15px; padding-bottom:15px; text-align:center;} + +.bbs_green {width:730px; border-top:2px solid #4FB24F; border-bottom:1px solid #CCDFC8; font:12px Dotum; border-collapse:collapse; text-align:center;} +.bbs_green caption {display:none;} +.bbs_green th {height:32px; border:1px solid #CCDFC8; background:#F5FBF5; color:#4A9F48; font-weight:bold; letter-spacing:-1px;} +.bbs_green thead tr th {height:32px; border:1px solid #CCDFC8; background:#F5FBF5; color:#4A9F48; font-weight:bold; letter-spacing:-1px;} +.bbs_green td {padding:5px 0px 5px 0px; border:1px solid #CCDFC8; line-height:16px; vertical-align:top; text-align:left;} +.bbs_green tfoot td {padding:5px 0px 5px 0px; border:1px solid #CCDFC8; background:#F5FBF5; color:#4A9F48; font-weight:bold; letter-spacing:-1px; text-align:left;} +.bbs_green td span.text1 {padding-left:6px; font-family:dotum; color:#4FB24F; font-size: 0.9em; font-weight:normal; letter-spacing:-0.1em;} +.bbs_green td.center {padding:5px 0px 5px 0px; vertical-align:middle; text-align:center;} +.bbs_green td.left {padding:5px 0px 5px 10px; vertical-align:middle; text-align:left;} +.bbs_green td.textarea {padding:4px 0px 4px 0px; margin:0; border:0px;} +.bbs_green td.newsletter {padding-top:15px; padding-bottom:15px; text-align:center;} + +.bbs_gray {width:730px; border-top:2px solid #818181; border-bottom:1px solid #D3D3D3; font:12px Dotum; border-collapse:collapse; text-align:center;} +.bbs_gray caption {display:none;} +.bbs_gray th {height:32px; border:1px solid #D3D3D3; background:#FAFAFA; color:#747474; font-weight:bold; letter-spacing:-1px;} +.bbs_gray thead tr th {height:32px; border:1px solid #D3D3D3; background:#FAFAFA; color:#747474; font-weight:bold; letter-spacing:-1px;} +.bbs_gray td {padding:5px 0px 5px 0px; border:1px solid #D3D3D3; line-height:16px; vertical-align:top; text-align:left;} +.bbs_gray tfoot td {padding:5px 0px 5px 0px; border:1px solid #D3D3D3; background:#FAFAFA; color:#747474; font-weight:bold; letter-spacing:-1px; text-align:left;} +.bbs_gray td span.text1 {padding-left:6px; font-family:dotum; color:#818181; font-size: 0.9em; font-weight:normal; letter-spacing:-0.1em;} +.bbs_gray td.center {padding:5px 0px 5px 0px; vertical-align:middle; text-align:center;} +.bbs_gray td.left {padding:5px 0px 5px 10px; vertical-align:middle; text-align:left;} +.bbs_gray td.textarea {padding:4px 0px 4px 0px; margin:0; border:0px;} +.bbs_gray td.newsletter {padding-top:15px; padding-bottom:15px; text-align:center;} + +.bbs_2step {white-space:nowrap; border-bottom:1px solid #D3D3D3; font:12px Dotum; border-collapse:collapse; text-align:center;} +.bbs_2step caption {display:none;} +.bbs_2step th {height:30px; border:1px solid #D3D3D3; background:#FAFAFA; color:#747474; font-weight:bold; letter-spacing:-1px;} +.bbs_2step thead tr th {height:30px; border:1px solid #D3D3D3; background:#FAFAFA; color:#747474; font-weight:bold; letter-spacing:-1px;} +.bbs_2step td {padding:4px 0px 4px 0px; border:1px solid #D3D3D3; line-height:16px; vertical-align:top; text-align:left;} +.bbs_2step tfoot td {padding:4px 0px 4px 0px; border:1px solid #D3D3D3; background:#FAFAFA; color:#747474; font-weight:bold; letter-spacing:-1px; text-align:left;} +.bbs_2step td span {padding-left:6px; font-family:dotum; color:#818181; font-size: 0.9em; font-weight:normal; letter-spacing:-0.1em;} + +.bbs_2step td.item span {font-family:tahoma;font-size:0.8em;font-weight:bold;color:#000000;vertical-align:middle;padding:0 3px 0 0;} +.bbs_2step td.item{line-height:23px;} + + +.bbs_3step {width:100%; margin:0; padding:0; border:0; font:12px Dotum; text-align:center;} +.bbs_3step legend, caption {display:none;} +.bbs_3step td {margin:0; padding:0; border:0; vertical-align:top; text-align:left; font-size:1em; letter-spacing:-0.1em;} + +.bbs_newsletter table {width:100%; margin:0; padding:0; border:0; font:12px Dotum; text-align:center;} +.bbs_newsletter caption {display:none;} +.bbs_newsletter td {margin:0; padding:0; border:0; font-weight:normal; clear:both;} + + +#skin2-2 {text-align:center; border-collapse:collapse;} +#skin2-2 table {width:600px;text-align:center;margin:0 auto;} +#skin2-2 td {width:300px;text-align:center;font-weight:bold; } + + + + + +/* Padding */ +.pt0 {padding-top:0px;} +.pt1 {padding-top:1px;} +.pt2 {padding-top:2px;} +.pt3 {padding-top:3px;} +.pt4 {padding-top:4px;} +.pt5 {padding-top:5px;} +.pt6 {padding-top:6px;} +.pt7 {padding-top:7px;} +.pt8 {padding-top:8px;} +.pt9 {padding-top:9px;} +.pt10 {padding-top:10px;} +.pr0 {padding-right:0px;} +.pr1 {padding-right:1px;} +.pr2 {padding-right:2px;} +.pr3 {padding-right:3px;} +.pr4 {padding-right:4px;} +.pr5 {padding-right:5px;} +.pr6 {padding-right:6px;} +.pr7 {padding-right:7px;} +.pr8 {padding-right:8px;} +.pr9 {padding-right:9px;} +.pr10 {padding-right:10px;} +.pl0 {padding-left:0px;} +.pl1 {padding-left:1px;} +.pl2 {padding-left:2px;} +.pl3 {padding-left:3px;} +.pl4 {padding-left:4px;} +.pl5 {padding-left:5px;} +.pl6 {padding-left:6px;} +.pl7 {padding-left:7px;} +.pl8 {padding-left:8px;} +.pl9 {padding-left:9px;} +.pl10 {padding-left:10px;} +.pb0 {padding-bottom:0px;} +.pb1 {padding-bottom:1px;} +.pb2 {padding-bottom:2px;} +.pb3 {padding-bottom:3px;} +.pb4 {padding-bottom:4px;} +.pb5 {padding-bottom:5px;} +.pb6 {padding-bottom:6px;} +.pb7 {padding-bottom:7px;} +.pb8 {padding-bottom:8px;} +.pb9 {padding-bottom:9px;} +.pb10 {padding-bottom:15px;} + +/* Etc */ +.loading {display:none; position:absolute; left:400px; top:240px; border:2px solid #C6C6C6; background-color:#ffffff; padding:25px; text-align:center; vertical-align:middle; z-index:1000; font-weight:bold; color:#313131; line-height:140%;} +.loading span{color:#7D7D7D; letter-spacing:-1px; font-size:11px;} + +div.popup {clear:both; position:relative; float:left; margin:0; padding:0;} +div.popup_right {float:right; padding-top:5px;} +div.popup_right ul li {float:left; font-size:0.9em; letter-spacing:-0.1em; padding-bottom:13px; } +div.popup_right ul li.button {float:left; font-size:1em; letter-spacing:-0.1em;} + diff --git a/manager/common/file/basic_top.asp b/manager/common/file/basic_top.asp new file mode 100644 index 0000000..07bb00f --- /dev/null +++ b/manager/common/file/basic_top.asp @@ -0,0 +1,18 @@ + + +
+ + + + diff --git a/manager/common/file/board_top.asp b/manager/common/file/board_top.asp new file mode 100644 index 0000000..7507f41 --- /dev/null +++ b/manager/common/file/board_top.asp @@ -0,0 +1,18 @@ + + +
+ + + + diff --git a/manager/common/file/bottom_ui.asp b/manager/common/file/bottom_ui.asp new file mode 100644 index 0000000..bad02fb --- /dev/null +++ b/manager/common/file/bottom_ui.asp @@ -0,0 +1,16 @@ + + +
+ + + + +
+ 데이터를 전송하고 있습니다.
+ 잠시만 기다려주세요
+
+ 처리중입니다. +
+ + + diff --git a/manager/common/file/member_top.asp b/manager/common/file/member_top.asp new file mode 100644 index 0000000..806d415 --- /dev/null +++ b/manager/common/file/member_top.asp @@ -0,0 +1,18 @@ + + +
+ + + + diff --git a/manager/common/file/other_top.asp b/manager/common/file/other_top.asp new file mode 100644 index 0000000..b742613 --- /dev/null +++ b/manager/common/file/other_top.asp @@ -0,0 +1,18 @@ + + +
+ + + + diff --git a/manager/common/file/stats_top.asp b/manager/common/file/stats_top.asp new file mode 100644 index 0000000..a14f167 --- /dev/null +++ b/manager/common/file/stats_top.asp @@ -0,0 +1,18 @@ + + +
+ + + + diff --git a/manager/common/file/sub_bottom.asp b/manager/common/file/sub_bottom.asp new file mode 100644 index 0000000..bd2935f --- /dev/null +++ b/manager/common/file/sub_bottom.asp @@ -0,0 +1,42 @@ +
+ + + +
+ + + +
+ + +
+ +
+ + + +
+ 데이터를 전송하고 있습니다.
+ 잠시만 기다려주세요
+
+ 처리중입니다. +
+ + + + +<% +dbcon.close +Set dbcon = nothing +%> \ No newline at end of file diff --git a/manager/common/file/top.asp b/manager/common/file/top.asp new file mode 100644 index 0000000..01988eb --- /dev/null +++ b/manager/common/file/top.asp @@ -0,0 +1,184 @@ + + +<% +Dim location_page +location_page = "/manager/index.asp" + +%> + + + + + + <%=site_name%> +<% if location_page = Request.ServerVariables("path_info") Then %> + +<% else %> + +<% End If %> + + + + + + + + + + + + +<% +security_ad_cms() '관리자 페이지 체크 +%> + + + + + + +
+ + +
+

스킵 네비게이션

+ +
+ + +
+ + + + + +
diff --git a/manager/common/file/top_ui.asp b/manager/common/file/top_ui.asp new file mode 100644 index 0000000..901b800 --- /dev/null +++ b/manager/common/file/top_ui.asp @@ -0,0 +1,32 @@ + + +<% +Dim location_page +location_page = "/manager/index.asp" + +%> + + + + + + <%=site_name%> + + + + + + + + +<% +security_ad_cms() '관리자 페이지 체크 +%> + + + + + + + +
diff --git a/manager/content/01info/addr_search.asp b/manager/content/01info/addr_search.asp new file mode 100644 index 0000000..6555ff7 --- /dev/null +++ b/manager/content/01info/addr_search.asp @@ -0,0 +1,84 @@ + + +<% +Dim ZC_SG +Dim sql, rs1 +Dim seq, zipcode, sido, gugun, dong, ri, st_bunji, ed_bunji +Dim addr_t1 + +ZC_SG = inputValue( Request.Form("ZC_SG") ) +%> + + + + <% + + if InputValue(ZC_SG) <> "" then + + sql = "select * from zipcode where dong LIKE '%" & ZC_SG & "%'" + Set rs1 = dbcon.execute( sql ) + + If rs1.bof Or rs1.bof Then +%> + 등록된 데이터가 없습니다. +<% + + Else + Do Until rs1.eof + seq = rs1("SEQ") + zipcode = trim(rs1("ZIPCODE")) + sido = trim(rs1("SIDO")) + gugun = trim(rs1("GUGUN")) + dong = trim(rs1("DONG")) + ri = trim(rs1("RI")) + st_bunji = trim(rs1("ST_BUNJI")) + ed_bunji = trim(rs1("ED_BUNJI")) + + addr_t1 = sido & " " & gugun & " " & dong & " " & ri + + if st_bunji <> "" and ed_bunji <> "" then +' addr_t2 = st_bunji & " ~ " & ed_bunji & "동" + addr_t2 = st_bunji & " ~ " & ed_bunji + else + addr_t2 = "" + End if + + addr_t = addr_t1 & addr_t2 +%> + [<%=left(zipcode,3)%>-<%=right(zipcode,3)%>] + <%=addr_t%>

+<% + + rs1.movenext + loop + + End If + + Set rs1 = nothing + + End if +%> + + + +<% +dbcon.close +Set dbcon = nothing +%> \ No newline at end of file diff --git a/manager/content/01info/addr_search_multi.asp b/manager/content/01info/addr_search_multi.asp new file mode 100644 index 0000000..a081da1 --- /dev/null +++ b/manager/content/01info/addr_search_multi.asp @@ -0,0 +1,81 @@ + + +<% +Dim ZC_SG, r_cnt +Dim sql, rs1 +Dim seq, zipcode, sido, gugun, dong, ri, st_bunji, ed_bunji +Dim addr_t1 + +ZC_SG = inputValue( Request.Form("ZC_SG") ) +r_cnt = inputValue( Request.Form("r_cnt") ) +%> + + + + + + +<% + + + if ZC_SG <> "" then + + sql = "select * from zipcode where dong LIKE '%" & ZC_SG & "%'" + Set rs1 = dbcon.execute( sql ) + + If rs1.bof Or rs1.eof Then +%> + 등록된 데이터가 없습니다. +<% + Else + Do Until rs1.eof + seq = rs1("SEQ") + zipcode = trim(rs1("ZIPCODE")) + sido = trim(rs1("SIDO")) + gugun = trim(rs1("GUGUN")) + dong = trim(rs1("DONG")) + ri = trim(rs1("RI")) + st_bunji = trim(rs1("ST_BUNJI")) + ed_bunji = trim(rs1("ED_BUNJI")) + + addr_t1 = sido & " " & gugun & " " & dong & " " & ri + + if st_bunji <> "" <> ed_bunji <> "" then + addr_t2 = st_bunji & " ~ " & ed_bunji & "동" + else + addr_t2 = "" + End If + addr_t = addr_t1 & addr_t2 +%> + [<%=left(zipcode,3)%>-<%=right(zipcode,3)%>] + <%=addr_t%>

+<% + rs1.movenext + loop + + End if + End if +%> + + +<% +dbcon.close +Set dbcon = nothing +%> \ No newline at end of file diff --git a/manager/content/01info/config.asp b/manager/content/01info/config.asp new file mode 100644 index 0000000..8bed086 --- /dev/null +++ b/manager/content/01info/config.asp @@ -0,0 +1,18 @@ +<% +Dim is_ad_cms, is_read, is_write, is_delete, is_reply +'security_ad_cms(); //관리자페이지 접속권한 체크 + +'//권한정보 ************************************************************************************* +is_ad_cms = "Y" +is_read = "Y" +is_write = "Y" +is_delete = "Y" +is_reply = "Y" +'//************************************************************************************************** + +'browser_title = "사이트환경설정"; //페이지타이틀 명 + +'//현재 메뉴 idx +mm_ct_idx = "3" + +%> \ No newline at end of file diff --git a/manager/content/01info/site_info_client.asp b/manager/content/01info/site_info_client.asp new file mode 100644 index 0000000..3962db0 --- /dev/null +++ b/manager/content/01info/site_info_client.asp @@ -0,0 +1,76 @@ + +<% + +'최근정보인지 확인 + +R_Fields = "sc_wdate, sc_hdate1, sc_hdate2" +R_tablename_str = "site_config" +R_WHERE_str = " order by sc_idx desc" + +value_chk = SelectQuery (R_Fields, R_tablename_str, R_WHERE_str) + +domain = Request.ServerVariables("HTTP_HOST") +'//$domain = "rehab21.or.kr"; + +If value_chk = False Then + sc_wdate = "" +End if + + +If sc_wdate <> "" then + + sc_wdate = Left(sc_wdate, 10) + If sc_wdate <> date() then '//최근정보가 아니라면 일단 나눔통서버에서 정보를 가져와 업데이트처리 +%> +hostChkCreateScript("http://pms.nninc.co.kr/program/project_bbs6/site_info_server.asp?pjb3_domain=<%=domain%>&proc=<%=server.URLEncode("/manager/content/01info/update_ok.asp")%>"); +<% + else '//최근 정보라면 + sc_hdate2_chk = sc_hdate2 + If sc_hdate2_chk < Date() then '//호스팅 일자가 +%> +location.href="http://close.15449642.com/"; +<% + End if + End if +End if + + +%> + +function hostChkCreateScript(src){ + var script = document.createElement('script'); + script.type = 'text/javascript'; + script.src = src; + + var head = document.getElementsByTagName('head')[0]; + head.appendChild(script); +} + + +<% + +Function SelectQuery(R_Fields, table, where) + + Dim i, R_Fields_arr, rs + R_Fields = Replace(R_Fields, " ", "") + R_Fields_arr = Split(R_Fields, ",") + + execute("sql = ""select "&R_Fields&" from "" & table & "" "" & where") + 'response.write sql + + Set rs = Dbcon.Execute( sql ) + + If rs.bof Or rs.eof Then + SelectQuery = false + Else + SelectQuery = true + For i = 0 To UBound(R_Fields_arr) '전역변수에 담기 + execute( R_Fields_arr(i) & "= rs("""&R_Fields_arr(i)&""")") + 'execute("response.write """&R_Fields_arr(i)&"=""&"&R_Fields_arr(i)&"&""
""") + Next + End if + + Set rs = nothing +End Function + +%> diff --git a/manager/content/01info/update_ok.asp b/manager/content/01info/update_ok.asp new file mode 100644 index 0000000..15d0058 --- /dev/null +++ b/manager/content/01info/update_ok.asp @@ -0,0 +1,72 @@ + +<% +R_Fields = "sc_hdate1, sc_hdate2, sc_hdd" + +Call RequestAll (R_Fields, "") + +rtn_url = request.QueryString("rtn_url") + +R_Fields_u = "sc_hdate1, sc_hdate2, sc_hdd, sc_wdate" +sc_wdate = Date() & " " & Hour(now) & ":" & Minute(now) + +Call UpdateQuery (R_Fields_u, "site_config", "") + + +If rtn_url <> "" Then + response.redirect rtn_url + response.end +End if + + +function RequestAll(R_Fields, RequestObj) + Dim i, R_Fields_arr + R_Fields = Replace(R_Fields, " ", "") + R_Fields_arr = Split(R_Fields, ",") + + If RequestObj = "" Then RequestObj = "Request" + + For i = 0 To UBound(R_Fields_arr) + + execute(R_Fields_arr(i)&" = inputValue("&RequestObj&"("""&R_Fields_arr(i)&"""))") + '^------inputValue()함수 + 'execute("response.write """&R_Fields_arr(i)&"=""&"&R_Fields_arr(i)&"&""
""") + + Next + +End Function + + +function InputValue(strvalue) + Dim strvalue_temp, injection + strvalue = trim(strvalue) + strvalue = Replace(strvalue,"'","''") + strvalue = Replace(strvalue,chr(34), """) + strvalue = Replace(strvalue, "", "") + strvalue = Replace(strvalue, "", "") + strvalue = Replace(strvalue, "script", "") + InputValue = strvalue +end Function + + +Function UpdateQuery(R_Fields, table, where) + + Dim i, R_Fields_arr + R_Fields = Replace(R_Fields, " ", "") + R_Fields_arr = Split(R_Fields, ",") + + execute("sql = ""update "&table&" set """) + + For i = 0 To UBound(R_Fields_arr) + + execute("sql = sql & """&R_Fields_arr(i)&" = '""&"&R_Fields_arr(i)&"&""'""") + + If i < UBound(R_Fields_arr) Then sql = sql & "," + next + execute("sql = sql & "" "" & where") + 'response.write sql + 'response.end + + Dbcon.Execute sql + +End Function +%> \ No newline at end of file diff --git a/manager/content/01info/write.asp b/manager/content/01info/write.asp new file mode 100644 index 0000000..b3ec591 --- /dev/null +++ b/manager/content/01info/write.asp @@ -0,0 +1,319 @@ + +<%'//*************************************************************************************%> + +<%'//*************************************************************************************%> + +<% +Dim R_Fields, R_tablename_str, R_WHERE_str +Dim sc_idx, sc_sitename, sc_sitename_en, sc_ademail, sc_url, sc_company, sc_logo, sc_uptae, sc_jongmok, sc_zipcode, sc_addr1, sc_addr2, sc_no, sc_no2, sc_ceo, sc_phone1, sc_phone2, sc_phone3, sc_fax1, sc_fax2, sc_fax3, sc_title, sc_skeyword, sc_hdate1, sc_hdate2, sc_hdd, sc_copyright, sc_logouttime, sc_wdate, sc_date_chk, sc_hdd_chk + +'//쓰기권한체크************************************************************************************* +if is_write <> "Y" Then + back_back "쓰기권한이 없습니다." +End if +'//************************************************************************************************** + + +R_Fields = "sc_idx, sc_sitename, sc_sitename_en, sc_ademail, sc_url, sc_company, sc_logo, sc_uptae, sc_jongmok, sc_zipcode, sc_addr1, sc_addr2, sc_no, sc_no2, sc_ceo, sc_phone1, sc_phone2, sc_phone3, sc_fax1, sc_fax2, sc_fax3, sc_title, sc_skeyword, sc_hdate1, sc_hdate2, sc_hdd, sc_copyright, sc_logouttime, sc_wdate, sc_date_chk, sc_hdd_chk" + +R_tablename_str = "site_config" +R_WHERE_str = " WHERE sc_idx=1" + +Call SelectQuery (R_Fields, R_tablename_str, R_WHERE_str) + + + +If sc_hdate1 = "" then + + sc_hdate1_y = Year(now) + sc_hdate1_m = Right( "0" & Month(now), 2 ) + sc_hdate1_d = Right( "0" & day(now), 2 ) + +else + + sc_hdate1_arr = Split(sc_hdate1, "-") + + sc_hdate1_y = sc_hdate1_arr(0) + sc_hdate1_m = sc_hdate1_arr(1) + sc_hdate1_d = sc_hdate1_arr(2) + +End if + + +If sc_hdate2 = "" then + sc_hdate2_temp = DateSerial( Year(now), Month(now)+2, Day(now) ) + sc_hdate2_y = Year(sc_hdate2_temp) + sc_hdate2_m = Right( "0" & Month(sc_hdate2_temp), 2 ) + sc_hdate2_d = Right( "0" & day(sc_hdate2_temp), 2 ) + +else + + sc_hdate2_arr = Split(sc_hdate2 , "-" ) + + sc_hdate2_y = sc_hdate2_arr(0) + sc_hdate2_m = sc_hdate2_arr(1) + sc_hdate2_d = sc_hdate2_arr(2) + +End if + +%> + + +
+ +
+
+

기본정보 설정

+
+ +
+ + +
+ + +
+
+ +

기본정보기본정보를 입력해주세요.

+
+ 기본정보 서식 작성/수정 + + + + + + + + + + + + + + + + + + + + +
기본정보 서식
http://
+
+ +

회사정보사이트 화면하단의 카피라이트 부분에 표시됩니다.

+
+ 회사정보 서식 작성/수정 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
회사정보 서식
+ + +
+ + + + + - + + +
+ +
+
+ +
+ + + + + +
+
: + + + 예) 강남구, 잠실동 +
+
+ ↓ 기본 주소 - 동이름 검색 결과 목록입니다. 목록중 해당하는 주소를 선택하세요. + + +
+ +
+
+ + + + +
- - - -
+
+ +

상단타이틀/검색엔진 키워드브라우저 상단틀에 나오는 타이틀과 검색사이트에서 검색될 키워드를 입력하세요.

+
+ 상단타이틀/검색엔진 키워드 정보 서식 작성/수정 + + + + + + + + + + + + + + +
상단타이틀/검색엔진 키워드 정보 서식
+
+ +

기타정보사용기간, 자동로그아웃, 용량을 입력하세요.

+
+ 기타정보 서식 작성/수정 + + + + + + + + + + + + + + + +
기타정보 서식
+ + + + + ~ + + + + + +    tabindex="<%=getTabIndex()%>" /> 무제한 + +
G Byte * 공란으로 두면 기본 1GByte +    tabindex="<%=getTabIndex()%>" /> 무제한 +
+
+ +
+
+
+ +
+ +
+ + +
+ + +
+
+ +
+
+ + + + diff --git a/manager/content/01info/write_ok.asp b/manager/content/01info/write_ok.asp new file mode 100644 index 0000000..08a9b45 --- /dev/null +++ b/manager/content/01info/write_ok.asp @@ -0,0 +1,79 @@ + + +<% +Dim R_Fields, sql, R_Fields_i, R_Fields_u, ok_url +Dim sc_idx, sc_sitename, sc_sitename_en, sc_ademail, sc_url, sc_company, sc_logo, sc_uptae, sc_jongmok, m_zip1, m_zip2, m_addr1, m_addr2, sc_no, sc_no2, sc_ceo, sc_phone1, sc_phone2, sc_phone3, sc_fax1, sc_fax2, sc_fax3, sc_title, sc_skeyword, sc_hdate1_y, sc_hdate1_m, sc_hdate1_d, sc_hdate2_y, sc_hdate2_m, sc_hdate2_d, sc_hdd, sc_logouttime, sc_wdate, sc_date_chk, sc_hdd_chk + + +R_Fields = "sc_idx, sc_sitename, sc_sitename_en, sc_ademail, sc_url, sc_company, sc_logo, sc_uptae, sc_jongmok, m_zip1, m_zip2, m_addr1, m_addr2, sc_no, sc_no2, sc_ceo, sc_phone1, sc_phone2, sc_phone3, sc_fax1, sc_fax2, sc_fax3, sc_title, sc_skeyword, sc_hdate1_y, sc_hdate1_m, sc_hdate1_d, sc_hdate2_y, sc_hdate2_m, sc_hdate2_d, sc_hdd, sc_logouttime, sc_wdate, sc_date_chk, sc_hdd_chk" + +Call RequestAll (R_Fields, "request.Form") + +sc_zipcode = m_zip1 & m_zip2 +sc_addr1 = m_addr1 +sc_addr2 = m_addr2 + +sc_copyright = InputValue2( sc_copyright ) + +If sc_hdd = "" Then sc_hdd = "1" + + +sc_hdate1 = sc_hdate1_y & "-" & sc_hdate1_m & "-" & sc_hdate1_d +sc_hdate2 = sc_hdate2_y & "-" & sc_hdate2_m & "-" & sc_hdate2_d + + + +If sc_idx = "" Then '//저장 + + sql = "truncate table site_config" + dbcon.execute sql + + R_Fields_i = "sc_sitename, sc_sitename_en, sc_ademail, sc_url, sc_company, sc_logo, sc_uptae, sc_jongmok, sc_zipcode, sc_addr1, sc_addr2, sc_no, sc_no2, sc_ceo, sc_phone1, sc_phone2, sc_phone3, sc_fax1, sc_fax2, sc_fax3, sc_title, sc_skeyword, sc_copyright, sc_logouttime, sc_wdate " + + If sc_date_chk <> "Y" Then '//기간 무제한일때 + + R_Fields_i = R_Fields_i & ", sc_hdate1, sc_hdate2" + + End if + + If sc_hdd_chk <> "Y" then '//용량 무제한일때 + + R_Fields_i = R_Fields_i & ", sc_hdd" + End if + + sc_wdate = getDateFm(Now(), 3) + + Call InsertQuery( R_Fields_i, "site_config") + + ok_url = "write.asp" & page_info + + +Else '//수정 + + + + R_Fields_u = "sc_sitename, sc_sitename_en, sc_ademail, sc_url, sc_company, sc_logo, sc_uptae, sc_jongmok, sc_zipcode, sc_addr1, sc_addr2, sc_no, sc_no2, sc_ceo, sc_phone1, sc_phone2, sc_phone3, sc_fax1, sc_fax2, sc_fax3, sc_title, sc_skeyword, sc_copyright, sc_logouttime, sc_wdate, sc_date_chk, sc_hdd_chk" + + If sc_date_chk <> "Y" then '//기간 무제한일때 + + R_Fields_u = R_Fields_u & ", sc_hdate1, sc_hdate2" + End if + + If sc_hdd_chk <> "Y" then '//용량 무제한일때 + + R_Fields_u = R_Fields_u & ", sc_hdd" + End if + + sc_wdate = getDateFm(Now(), 3) + + Call UpdateQuery (R_Fields_u, "site_config", "where sc_idx=" & sc_idx) + + ok_url = "write.asp?" & page_info + +End if + +dbcon.close +Set dbcon = nothing + +Call loding("0", ok_url) +%> \ No newline at end of file diff --git a/manager/content/01info/zipcode_search.asp b/manager/content/01info/zipcode_search.asp new file mode 100644 index 0000000..817f70f --- /dev/null +++ b/manager/content/01info/zipcode_search.asp @@ -0,0 +1,192 @@ + + +<% +Dim v_addrstr, sql1, rs1 +Dim seq, zipcode, sido, gugun , dong , ri, st_bunji, ed_bunji, addr_t1 + +v_addrstr = InputValue(request("p_addrstr")) +%> + + + +우편번호 검색 + + + + +
+ + + + + + + + + + + + + + + + + + + + + + + +
+ <%If popup_logo_image_url <> ""%> + + <%End if%> +
+ + + + + + +
+ + + + + + + + + + + + + + + + +
+ 찾고자 하는 지역의 '동이름'을 입력해주세요.
+
+ 예) 서울시 강남구 삼성1동이라면 '삼성1'만 입력하시면됩니다. +
 이름 입력 동(읍/면)
+
+
+ + + + +
+ <% + + if v_addrstr <> "" then + + sql1 = "select * from zipcode where dong LIKE '%" & v_addrstr & "%'" + Set rs1 = dbcon.execute( sql1 ) + + If rs1.bof Or rs1.eof Then +%> +
등록된 데이터가 없습니다.
+<% + Else + Do Until rs1.eof + seq = rs1("SEQ") + zipcode = trim(rs1("ZIPCODE")) + sido = trim(rs1("SIDO")) + gugun = trim(rs1("GUGUN")) + dong = trim(rs1("DONG")) + ri = trim(rs1("RI")) + st_bunji = trim(rs1("ST_BUNJI")) + ed_bunji = trim(rs1("ED_BUNJI")) + + addr_t1 = sido & " " & gugun & " " & dong & " " & ri + + if st_bunji <> "" and ed_bunji <> "" then + addr_t2 = st_bunji & " ~ " & ed_bunji & "동" + else + addr_t2 = "" + End if + + addr_t = addr_t1 & addr_t2 +%> + [<%=substr($zipcode,0,3)?>-] +

+<% + + rs1.movenext + loop + End if + if ($mysql->RowCount() <= 0) { ?> +
등록된 데이터가 없습니다.
+ FetchInto(&$rs1)) { + + + $seq = $rs1[SEQ ]; + $zipcode = trim($rs1[ZIPCODE]); + $sido = trim($rs1[SIDO]); + $gugun = trim($rs1[GUGUN]); + $dong = trim($rs1[DONG]); + $ri = trim($rs1[RI]); + $st_bunji = trim($rs1[ST_BUNJI]); + $ed_bunji = trim($rs1[ED_BUNJI]); + + + $addr_t1 = $sido . " " . $gugun . " " . $dong . " " . $ri; + + if ($st_bunji != "" && $ed_bunji != "") { + $addr_t2 = $st_bunji ." ~ ". $ed_bunji . "동"; + } else { + $addr_t2 = ""; + } + + $addr_t = $addr_t1 . $addr_t2; + + ?> + [-] +

+ +
+ +
+ + + +Disconnect(); +?> \ No newline at end of file diff --git a/manager/content/01menu/config.asp b/manager/content/01menu/config.asp new file mode 100644 index 0000000..2d29629 --- /dev/null +++ b/manager/content/01menu/config.asp @@ -0,0 +1,19 @@ +<% +'//security_ad_cms(); //관리자페이지 접속권한 체크 + +'//권한정보 ************************************************************************************* +is_ad_cms = "Y" +is_read = "Y" +is_write = "Y" +is_delete = "Y" +is_reply = "Y" +'//************************************************************************************************** + +'//$browser_title = "사이트환경설정"; //페이지타이틀 명 + +max_depth_option = 3 + +'//현재 메뉴 idx +mm_ct_idx = "6" + +%> \ No newline at end of file diff --git a/manager/content/01menu/delete_ok.asp b/manager/content/01menu/delete_ok.asp new file mode 100644 index 0000000..5128e2d --- /dev/null +++ b/manager/content/01menu/delete_ok.asp @@ -0,0 +1,58 @@ + + +<% +Dim ct_idx, status, ct_ref, ct_codeno +Dim sql, ok_url + +'//파라미터정보 ************************************************************************************* +ct_idx = InputValue( request("ct_idx") ) +status = InputValue( request("status") ) +ct_ref = InputValue( request("ct_ref") ) +chk = InputValue( request("chk") ) +chk = Replace(chk, " ", "") +chk = split(chk, ",") +'//************************************************************************************************** + +If status = "totdel" Then '다중삭제 + + For z = 0 To UBound(chk) + + sql = "Select ct_codeno from manager_menu where ct_idx=" & chk(z) + Set rs_3 = dbcon.execute( sql ) + + sql = " delete from manager_menu where ct_codeno like '%" & rs_3("ct_codeno") & "%'" + dbcon.execute sql + + '//자주 쓰는 메뉴부분 + + sql = " delete from manager_favorites where mm_ct_idx=" & chk(z) + dbcon.execute sql + + next + + Set rs_3 = Nothing + +Else '//일반삭제 + + '//삭제하기 + sql = "Select ct_codeno from manager_menu where ct_idx=" & ct_idx + Set rs_3 = dbcon.execute( sql ) + + ct_codeno = rs_3("ct_codeno") + + sql = " delete from manager_menu where ct_codeno like '%" & rs_3("ct_codeno") & "%'" + dbcon.execute sql + + '//자주 쓰는 메뉴부분 + sql = " delete from manager_favorites where mm_ct_idx=" & ct_idx + dbcon.execute sql + +End if + + +If ct_ref = "0" then ct_ref = "" + +ok_url = "write.asp?ct_idx=" & ct_ref + +Call loding ("0", ok_url) +%> \ No newline at end of file diff --git a/manager/content/01menu/level_ok.asp b/manager/content/01menu/level_ok.asp new file mode 100644 index 0000000..cd5251a --- /dev/null +++ b/manager/content/01menu/level_ok.asp @@ -0,0 +1,57 @@ + + +<% +Dim status, tot_level_chk, ct_chk, ct_idx, ct_ref, chk, sql, ok_url + +'//파라미터정보 *********************************************** +status = InputValue( request.Form("status") ) +tot_level_chk = InputValue( request.Form("tot_level_chk") ) + +ct_chk = InputValue( request.Form("ct_chk") ) +ct_idx = InputValue( request.Form("ct_idx") ) + +ct_ref = InputValue( request.Form("ct_ref") ) + +chk = InputValue( request.Form("chk") ) +chk = Replace(chk, " ", "") +chk = split(chk, ",") +'//************************************************************ + + +If status = "totlevel" Then '//다중삭제 + + For z=0 To UBound(chk) + + sql = " Update manager_menu set ct_chk = '" & tot_level_chk & "' Where ct_idx = " & chk(z) + dbcon.execute sql + + + '//자주쓰는 메뉴 부분 ( + sql = "update manager_favorites set ct_chk='" & tot_level_chk & "' WHERE mm_ct_idx = " & chk(z) + dbcon.execute sql + + next + + +Else + + sql = " Update manager_menu set ct_chk = '" & ct_chk & "' Where ct_idx = " & ct_idx + dbcon.execute sql + + '//자주쓰는 메뉴 부분 ( + sql = "update manager_favorites set ct_chk='" & ct_chk & "' WHERE mm_ct_idx = " & ct_idx + dbcon.execute sql + +End if + + +If ct_ref = "0" then ct_ref = "" + +ok_url = "write.asp?ct_idx=" & ct_ref + +Call loding ("0", ok_url) + + +dbcon.close +Set dbcon = nothing +%> \ No newline at end of file diff --git a/manager/content/01menu/move.asp b/manager/content/01menu/move.asp new file mode 100644 index 0000000..6557b70 --- /dev/null +++ b/manager/content/01menu/move.asp @@ -0,0 +1,46 @@ + + +<% +Dim ct_idx, ct_code, move, ct_ref +Dim sql, sql1, sql2 + + +ct_idx = InputValue( request.queryString("ct_idx") ) '//--일련번호 +ct_code = InputValue( request.queryString("ct_code") ) '//--정렬번호 +move = InputValue( request.queryString("move") ) '//--이동 +ct_ref = InputValue( request.queryString("ct_ref") ) + + +if move = "up" then + sql = "select top 1 ct_idx, ct_code from manager_menu where ct_code < " & ct_code & " AND ct_ref='" & ct_ref & "' order by ct_code desc" + +Elseif move = "down" then + sql = "select top 1 ct_idx, ct_code from manager_menu where ct_code > " & ct_code & " AND ct_ref='" & ct_ref & "' order by ct_code" + +End if + +Set rs = dbcon.execute( sql ) + +If Not( rs.bof Or rs.eof ) Then + + v_rsct_idx = rs("ct_idx") '//-- 대체할 디비번호 + v_rsct_code = rs("ct_code") '//-- 대체할 값 + + + sql1 = "update manager_menu set ct_code = " & ct_code & " where ct_idx = " & v_rsct_idx + sql2 = "update manager_menu set ct_code = " & v_rsct_code & " where ct_idx = " & ct_idx + + dbcon.execute sql1 + dbcon.execute sql2 + + +End if + +If ct_ref = "0" Then ct_ref = "" + +ok_url = "write.asp?ct_idx=" & ct_ref +Call loding ("0", ok_url) + +dbcon.close +Set dbcon = nothing +%> \ No newline at end of file diff --git a/manager/content/01menu/write.asp b/manager/content/01menu/write.asp new file mode 100644 index 0000000..35979fa --- /dev/null +++ b/manager/content/01menu/write.asp @@ -0,0 +1,363 @@ + +<%'//*************************************************************************************%> + +<%'//*************************************************************************************%> + +<% +Dim sql, table, idx_field, oreder_filed, Query_Fields, search_str, search_str2, Query_OrderBy +Dim ct_idx, ct_code, ct_name, ct_ref, ct_depth, ct_chk, ct_wdate, ct_codeno, ct_url + +'//쓰기권한체크************************************************************************************* +if is_write <> "Y" Then + back_back "쓰기권한이 없습니다." +End if +'//************************************************************************************************** + +'//파라미터정보 ************************************************************************************* + +ct_idx = Inputvalue(request("ct_idx")) + +'//용도 : 등록/수정시 현재 상위pk(idx)값, 현재단계 + +If ct_idx = "" then '//없으면 1단계 + + ct_ref = "0" + ct_depth = "1" + ct_codeno_ref = "C0;" + +Else + + sql = "select ct_depth,ct_codeno from manager_menu where ct_idx=" & ct_idx '//상위idx값을 구한당 + Set rs_2 = dbcon.execute( sql ) + + ref_depth = rs_2("ct_depth") + ref_codeno = rs_2("ct_codeno") + + ct_ref = ct_idx + ct_depth = ref_depth + 1 '//상위단계 + 1 + ct_codeno_ref = ref_codeno + + Set rs_2 = nothing +End if + +'//echo "
현재단계 : " . $ct_depth . "단계"; + + +'//쓰기권한체크************************************************************************************* +if CInt( ct_depth ) > CInt( max_depth_option ) then + back_back "최대 " & max_depth_option & " 단계 까지 가능합니다.." +End if + +'//************************************************************************************************** + +'//테이블 기본 환경설정 ******************************************************************************** +table = "manager_menu" '//테이블명 +idx_field = "ct_idx" '//기본키 +oreder_filed = "ct_code ASC" '//정렬기준 필드 +Query_Fields = "ct_idx, ct_code, ct_name, ct_ref, ct_depth, ct_chk, ct_wdate, ct_codeno, ct_url" '//불러올 필드 +'//**************************************************************************************************** + +'//---------------조합 쿼리문------------------------------------ +If v_keyword <> "" then + search_str = " AND " & v_search & " like '%" & v_keyword & "%'" +End if + +If ct_idx <> "" then + search_str2 = " AND ct_ref = '" & ct_idx & "'" +else + search_str2 = " AND ct_ref = '0'" +End if + +Query_OrderBy = " ORDER BY " & oreder_filed +'//--------------------------------------------------------------- + +'//-----------------------------리스트 출력 쿼리문 생성----------------------------- +sql = "select " & Query_Fields & " from " & table & " WHERE ct_idx <> '0'" +sql = sql & search_str & search_str2 & Query_OrderBy + +'response.write sql +Set col = dbcon.execute( sql ) +If col.bof Or col.eof Then + list_data = null +Else + list_data = col.getrows +End if +Set col = nothing +'//--------------------------------------------------------------------------------- + +%> + + +
+ +
+
+

메뉴관리

+
+ +
+ + +
+ +

현재메뉴경로: 메뉴관리홈 + + <% + If ref_codeno <> "" then + + ref_codeno_arr = split(ref_codeno,";") '//제한파일.. + + for z = 1 to ubound(ref_codeno_arr) + + ct_idx_str = replace(ref_codeno_arr(z), "C", "") + ct_idx_str = replace(ct_idx_str, ";", "") + + + If ct_idx_str <> "" then + + sql = "Select ct_name from manager_menu where ct_idx=" & ct_idx_str + Set rs_3 = dbcon.execute( sql ) + + If Not( rs_3.bof Or rs_3.eof ) then + ct_name_str = rs_3("ct_name") + End if + Set rs_3 = nothing + + If ubound(ref_codeno_arr)-1 = z then + %> + > <%=ct_name_str%> + <% + else + + ref_ct_idx_str = ct_idx_str + %> + > <%=ct_name_str%> + <% + End if + End if + next + End if + %> + +

+ + +
+
+ + + +
+ +
+ +
+ + +
    +
  • :
  • + <%=ct_dept%> + <%If ct_depth = 1 then%> + +
  • + + <%elseif CInt(ct_depth) <= max_depth_option then%> + +
  • + + <%End if%> +
  • + <%If CInt(ct_depth) = 1 Then %> + +
  • + + <%elseIf ct_depth <= max_depth_option then%> +
  • +
  • + <%End if%> +
+ + +
+ +
+ +
+ + +
+
+ + + + + + + + +
+ +
+ 메뉴관리 작성/수정 + + + + + + + <%If ct_depth < max_depth_option then%> + + <%End if%> + <%If ct_depth = "3" Then %> + + <%End if%> + + + + + + + + + + + <%If CInt(ct_depth) < CInt(max_depth_option) then%> + + <%end if%> + + <%If ct_depth = "3" Then%> + + <%End if%> + + + + + + + + + + + +<% + '//bbs_list_data + If IsNull( list_data ) Then +%> + + + + + + + + + +<% + Else + For zz = 1 To UBound(list_data, 2)+1 + Call arr2Value( Query_Fields, "list_data", zz-1 ) + + If ct_chk = "Y" then + ct_chk_str = "사용" + else + ct_chk_str = "중지" + End if +%> + + + + <%If CInt( ct_depth ) < CInt( max_depth_option ) then%> + + + <%End if%> + <%If ct_depth = 3 then%> + + + <%End if%> + + + + + + <% + Next + End if + %> + +
메뉴관리 서식
선택순서메뉴하위메뉴경로사용여부수정삭제
+ 순서 위로 이동순서 아래로 이동 + + + + + + + <%=ct_chk_str%> + + + +
+
+ +
+ +
+ + +
+ +
+ + +
+ + +
+
+ + + + + +
+
+ + \ No newline at end of file diff --git a/manager/content/01menu/write_ok.asp b/manager/content/01menu/write_ok.asp new file mode 100644 index 0000000..febfdf1 --- /dev/null +++ b/manager/content/01menu/write_ok.asp @@ -0,0 +1,87 @@ + + +<% +Dim R_Fields, rs +Dim ct_idx, ct_code, ct_name, ct_ref, ct_depth, ct_chk, ct_wdate, ct_codeno, ct_url, ct_codeno_ref + +R_Fields = "ct_idx, ct_code, ct_name, ct_ref, ct_depth, ct_chk, ct_wdate, ct_codeno, ct_url, ct_codeno_ref" + +Call RequestAll (R_Fields, "request.form") + +If ct_idx = "" then '//저장 + + + '//순서 + '//***************************************** + sql = "select max(ct_code) as ct_code from manager_menu WHERE ct_ref = " & ct_ref + 'response.write sql + 'response.end + Set rs = dbcon.execute( sql ) + + ct_code = rs("ct_code") + + if IsNull( ct_code ) or ct_code = "" then + ct_code = 1 + else + ct_code = ct_code + 1 + End if + '//***************************************** + + + + + R_Fields_i = "ct_code, ct_name, ct_ref, ct_depth, ct_chk, ct_wdate, ct_url" + + ct_wdate = getDateFm(Now(), 3) + + Call InsertQuery (R_Fields_i, "manager_menu") + + '//메뉴값 적용----------------------------------------------------------------------------- + sql = "select max(ct_idx) as ct_idx from manager_menu" + Set rs1 = dbcon.execute( sql ) + + max_ct_idx = rs1("ct_idx") + + + ct_codeno = ct_codeno_ref & "C" & max_ct_idx & ";" + + sql = "update manager_menu set ct_codeno='" & ct_codeno & "' WHERE ct_idx = " & max_ct_idx + dbcon.execute sql + //----------------------------------------------------------------------------------------- + + If ct_ref = "0" then ct_ref = "" + ok_url = "write.asp?ct_idx=" & ct_ref + + +Else '//수정 + + + R_Fields = "ct_name, ct_wdate, ct_url" + + ct_wdate = getDateFm(Now(), 3) + + Call UpdateQuery (R_Fields, "manager_menu", "where ct_idx=" & ct_idx) + + + '//자주쓰는 메뉴 부분 ( + sql = "update manager_favorites set ct_name='" & ct_name & "' WHERE mm_ct_idx = " & ct_idx + dbcon.execute sql + + + + '//자주쓰는 메뉴도 변경 되어야 된다. + + If ct_ref = "0" then ct_ref = "" + + ok_url = "write.asp?ct_idx=" & ct_ref + + +End if + +dbcon.close +Set dbcon = nothing + +Call loding("0",ok_url) + + +%> \ No newline at end of file diff --git a/manager/content/02board/config.asp b/manager/content/02board/config.asp new file mode 100644 index 0000000..39f03d5 --- /dev/null +++ b/manager/content/02board/config.asp @@ -0,0 +1,23 @@ +<% +Dim v_page,v_block, v_search,v_keyword,mode, page_info +Dim is_ad_cms, is_read, is_write, is_delete, is_reply + +'//페이지정보 ************************************************* +v_page = InputValue(request("p_page")) +v_block = InputValue(request("p_block")) +v_search = InputValue(request("p_search")) +v_keyword = InputValue(request("p_keyword")) +mode = InputValue(request("mode")) '//-- a:관리자페이지 , u:일반유저페이지 +page_info = "p_page=" & v_page & "&p_block=" & v_block & "&p_search=" & v_search & "&p_keyword=" & v_keyword +'//************************************************************ + + +'//권한정보 ************************************************************************************* +is_ad_cms = "Y" +is_read = "Y" +is_write = "Y" +is_delete = "Y" +is_reply = "Y" +'//********************************************************************************************** + +%> \ No newline at end of file diff --git a/manager/content/02board/delete_ok.asp b/manager/content/02board/delete_ok.asp new file mode 100644 index 0000000..2f181f9 --- /dev/null +++ b/manager/content/02board/delete_ok.asp @@ -0,0 +1,98 @@ + + +<% +Dim a_num, status, ct_ref + +'//파라미터정보 ************************************************************************************* +a_num = InputValue( request("a_num") ) +status = InputValue( request("status") ) +ct_ref = InputValue( request("ct_ref") ) + +chk = InputValue( request("chk") ) +chk = replace(chk, " ", "") +chk = Split(chk, ",") +'//************************************************************************************************** + + + +If status = "totdel" then '//다중삭제 + + For z = 0 To ubound( chk ) + + sql = "select a_tablename from board_config where a_num= " & chk(z) + Set rs_2 = dbcon.execute( sql ) + + a_tablename = rs_2("a_tablename") + + '//게시판 테이블을 삭제 한다. + sql = "drop table " & a_tablename + dbcon.execute sql + + '//관리자 테이블에서 해당게시판 정보를 삭제한다. + sql1 = "delete from board_config where a_num= " & chk(z) + dbcon.execute sql1 + + '//게시판 권한삭제 + sql2 = "delete from board_access where a_num = " & chk(z) + dbcon.execute sql2 + + + '//게시판 분류삭제 + sql4 = "delete from board_code where a_num = " & chk(z) + dbcon.execute sql4 + + '//꼬릿글삭제 + sql5 = "delete from board_command where a_num = " & chk(z) + dbcon.execute sql5 + + '//폴더삭제 + Call dfolder( server.mappath("/") & "\data\board\" & a_tablename ) + + next + Set rs_2 = nothing + + +Else '//일반삭제 + + '//삭제하기 + sql = "select a_tablename from board_config where a_num=" & a_num + Set rs_2 = dbcon.execute( sql ) + + a_tablename = rs_2("a_tablename") + + + '//게시판 테이블을 삭제 한다. + sql = "drop table " & a_tablename + dbcon.execute sql + + '//관리자 테이블에서 해당게시판 정보를 삭제한다. + sql1 = "delete from board_config where a_num=" & a_num + dbcon.execute sql1 + + '//게시판 권한삭제 + sql2 = "delete from board_access where a_num = " & a_num + dbcon.execute sql2 + + '//게시판 분류삭제 + sql4 = "delete from board_code where a_num = " & a_num + dbcon.execute sql4 + + '//꼬릿글삭제 + sql5 = "delete from board_command where a_num = " & a_num + dbcon.execute sql5 + + '//폴더삭제 + Call dfolder( server.mappath("/") & "\data\board\" & a_tablename ) + + Set rs_2 = nothing +End if + + +'//뷰생성 +ViewCreate() + + +ok_url = "list.asp" +Call loding ("0", ok_url) + +%> \ No newline at end of file diff --git a/manager/content/02board/list.asp b/manager/content/02board/list.asp new file mode 100644 index 0000000..37a8729 --- /dev/null +++ b/manager/content/02board/list.asp @@ -0,0 +1,265 @@ + +<%'//*************************************************************************************%> + +<%'//*************************************************************************************%> + +<% +Dim table, idx_field, orderby_str, Query_Fields +'//*****************테이블 기본 환경설정******************* +table = "board_config" '//테이블명 +idx_field = "a_num" '//기본키 + +'orderby_str = " ORDER BY a_date desc" '//정렬기준 필드 +orderby_str = " ORDER BY a_bbsname ASC" '//정렬기준 필드 + +Query_Fields = "a_num, a_bbsname, a_level, a_type, a_tablename, a_imgline, a_imgwidth, a_imgheight, a_member, a_ad_cms_id, a_ad_cms, a_cate, a_email, a_phone, a_home, a_jumin, a_jumin_opt, a_ftemp1, a_ftemp1_str, a_ftemp2, a_ftemp2_str, a_ftemp3, a_ftemp3_str, a_ftemp4, a_ftemp4_str, a_new, a_upload, a_upload_len, a_nofilesize, a_nofile, a_reply, a_replyOpt, a_command, a_date_list, a_sdate, a_edate, a_noword, a_width, a_displaysu, a_viewType, a_lt_a, a_lt_b, a_lt_c, a_lt_e, a_lt_f, a_header, a_hd_file, a_detail, a_dt_file, a_writecontent, a_topinclude, a_btminclude, a_skin, a_date" '//불러올 필드 + +'//******************************************************* + +'//검색어가 잇따면 +If v_keyword <> "" then + search_str = " AND " & v_search & " like '%" & v_keyword & "%'" +End if + +'/*추가 검색옵션 +'If g_idx <> "" then +' search_str2 = " AND ph_code = '" & g_idx & "'" +'End if +'*/ + +sql_t = "SELECT " & Query_Fields & " FROM " & table & " WHERE a_num <> 0" +sql_t = sql_t & search_str & search_str2 +sql_t = sql_t & orderby_str + +'response.write sql_t +'response.end +Set col = dbcon.execute( sql_t ) + +If col.bof Or col.eof Then + list_data = Null + totalcount = 0 +Else + list_data = col.getrows + totalcount = UBound(list_data, 2)+1 +End if + +Set col = Nothing + +'///////////////////////////////////////////////////////////////// +%> + +
+

+
+ +
+ +
+
+

게시판 리스트

+
+ +
+ + +
+ + + +

등록된 게시판 리스트

+ + +
+ +
+
+ +
    + +
  • +
  • +
  • +
  • +
+ +
+
+ +
+ + +
+
+ +
+ 전체 <%=totalcount%> +
+ +
+ +
+ + +
+ +
+ 코드관리 작성/수정 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <% + + If IsNull( list_data ) Then +%> + + + + + + + + + + +<% + Else + + For i = 0 To UBound(list_data, 2) + Call arr2Value(Query_Fields, "list_data", i) + + + + ' 관리하는 사이트 인지 확인 ------------- + flag_view = false + If SESSION("ss_g_num") = 1 Then + flag_view = true + Else + + is_ad_cms = "" + sql = "select * from board_access where g_num=" & SESSION("ss_g_num") & " and a_num=" & a_num + Set rs_lev = dbcon.execute( sql ) + If Not rs_lev.eof Then + is_ad_cms = rs_lev("Bl_ad_cms") + End If + rs_lev.close : Set rs_lev = Nothing + + If is_ad_cms="Y" Then + flag_view = true + Else + + a_ad_cms_id = "|"&Replace(a_ad_cms_id,",","|,|")&"|" + + If InStr(a_ad_cms_id,"|"&SESSION("ss_m_id")&"|")>0 Then + flag_view = True + End if + End if + End If + ' 관리하는 사이트 인지 확인 ------------- + + + + + If flag_view then + + + if a_upload = "Y" then + a_upload_str = "파일업로드 기능 사용" + else + a_upload_str = "" + End if + + sql = "select count(b_num) as b_num from " & a_tablename + Set rsc1 = dbcon.execute( sql ) + tot_count = rsc1("b_num") + Set rsc1 = nothing + + sql = "select count(b_num) as b_num from " & a_tablename & " where left(b_regdate,10) = '" & Date() & "'" + Set rsc2 = dbcon.execute( sql ) + today_cnt = rsc2("b_num") + + sql = "alter table " & a_tablename + sql = sql & " alter column b_file5 varchar(300) null" + dbcon.execute sql + + %> + + + + + + + + + + + <% + + End If + + + + + Next + + End if + %> + + + +
코드관리 서식
선택게시판명테이블명파일전체/오늘수정삭제분류
<%=a_bbsname%><%=a_tablename%>
<%=a_level%>
<%=a_num%>
<%=a_upload_str%><%=tot_count%>/<%=today_cnt%> + <% If a_cate = "Y" then%> + + <% End if%> +
+
+ + + + +
+ +
+ + +
+ + + diff --git a/manager/content/02board/member_search.asp b/manager/content/02board/member_search.asp new file mode 100644 index 0000000..1edfc1c --- /dev/null +++ b/manager/content/02board/member_search.asp @@ -0,0 +1,63 @@ + + +<% +Dim sch_member, sch_field + +sch_member = InputValue(request("sch_member")) +sch_field = InputValue(request("sch_field")) + +%> + + + + <% + if sch_member <> "" then + If sch_field = "all" then + sql = "SELECT m_id, m_name, lvlname FROM member_view WHERE ( m_name LIKE '%" & sch_member & "%' or m_id LIKE '%" & sch_member & "%' or lvlname LIKE '%" & sch_member & "%' )" + Else + sql = "SELECT m_id, m_name, lvlname FROM member_view WHERE " & sch_field & " LIKE '%" & sch_member & "%'" + End if + Set rs1= dbcon.execute( sql ) + + If rs1.bof Or rs1.eof Then + %> + 등록된 데이터가 없습니다. + <% + Else + + Do Until rs1.eof + m_id = rs1("m_id") + m_name = trim(rs1("m_name")) + lvlname = trim(rs1("lvlname")) + %> + <%=m_name%> (<%=m_id%>)(<%=lvlname%>)

+ <% + + rs1.movenext + loop + End If + End if + %> + + + +<% +dbcon.close +Set dbcon = nothing +%> \ No newline at end of file diff --git a/manager/content/02board/write.asp b/manager/content/02board/write.asp new file mode 100644 index 0000000..83e4670 --- /dev/null +++ b/manager/content/02board/write.asp @@ -0,0 +1,675 @@ + +<%'//*************************************************************************************%> + +<%'//*************************************************************************************%> + +<% +Dim a_num, a_bbsname, a_level, a_type, a_tablename, a_imgline, a_imgwidth, a_imgheight, a_member, a_ad_cms_id, a_ad_cms, a_cate, a_email, a_phone, a_home, a_jumin, a_jumin_opt, a_ftemp1, a_ftemp1_str, a_ftemp2, a_ftemp2_str, a_ftemp3, a_ftemp3_str, a_ftemp4, a_ftemp4_str, a_new, a_upload, a_upload_len, a_nofilesize, a_nofile, a_reply, a_replyOpt, a_command, a_date_list, a_sdate, a_edate, a_noword, a_width, a_displaysu, a_viewType, a_lt_a, a_lt_b, a_lt_c, a_lt_e, a_lt_f, a_header, a_hd_file, a_detail, a_dt_file, a_writecontent, a_topinclude, a_btminclude, a_skin, a_date, a_edit,a_password, a_password_str, a_close, a_sendmail, a_sendmail_addr, a_sendsms, a_sendsms_addr + +Dim cp_a_num + +'//쓰기권한체크************************************************************************************* +if is_write <> "Y" then + back_back "쓰기권한이 없습니다." +End if +'//************************************************************************************************** + + +'//파라미터정보 ************************************************************************************* +a_num = InputValue(request.queryString("a_num")) +cp_a_num = InputValue(request.queryString("cp_a_num")) +'//************************************************************************************************** + + +If a_num = "" then '//등록 + + a_num = "" + + a_bbsname = "" + a_level = "B" + a_type = "N" + a_tablename = "" + a_imgline = "4" + a_imgwidth = "130" + a_imgheight = "" + a_member = "N" + a_ad_cms_id = "" + a_ad_cms = "Y" + a_cate = "N" + a_email = "N" + a_phone = "N" + a_home = "N" + a_jumin = "N" + a_jumin_opt = "1" + a_ftemp1 = "N" + a_ftemp1_str = "" + a_ftemp2 = "N" + a_ftemp2_str = "" + a_ftemp3 = "N" + a_ftemp3_str = "" + a_ftemp4 = "N" + a_ftemp4_str = "" + a_new = "1" + a_upload = "Y" + a_upload_len = "2" + a_nofilesize = "5" + a_nofile = "hwp,doc,ppt,xls,txt,gif,jpg,docx,pptx,xlsx,zip,alz,rar,pdf" + a_reply = "N" + a_replyOpt = "2" + a_command = "N" + a_date_list = "N" + a_sdate = "" + a_edate = "" + a_noword = "" + a_width = "100%" + a_displaysu = "10" + a_viewType = "1" + a_lt_a = "Y" + a_lt_b = "Y" + a_lt_c = "Y" + a_lt_e = "Y" + a_lt_f = "N" + a_header = "" + a_hd_file = "" + a_detail = "" + a_dt_file = "" + a_writecontent = "" + a_topinclude = "" + a_btminclude = "" + a_skin = "1" + a_date = "" + a_edit = "Y" + + is_title_str = "신규 게시판 생성" + + a_password = "N" + a_password_str = "" + a_close = "N" + + a_sendmail = "N" + a_sendsms = "N" + + + +Else '//수정 + + R_Fields = "a_num, a_bbsname, a_level, a_type, a_tablename, a_imgline, a_imgwidth, a_imgheight, a_member, a_ad_cms_id, a_ad_cms, a_cate, a_email, a_phone, a_home, a_jumin, a_jumin_opt, a_ftemp1, a_ftemp1_str, a_ftemp2, a_ftemp2_str, a_ftemp3, a_ftemp3_str, a_ftemp4, a_ftemp4_str, a_new, a_upload, a_upload_len, a_nofilesize, a_nofile, a_reply, a_replyOpt, a_command, a_date_list, a_sdate, a_edate, a_noword, a_width, a_displaysu, a_viewType, a_lt_a, a_lt_b, a_lt_c, a_lt_e, a_lt_f, a_header, a_hd_file, a_detail, a_dt_file, a_writecontent, a_topinclude, a_btminclude, a_skin, a_date, a_edit,a_password, a_password_str, a_close, a_sendmail, a_sendmail_addr, a_sendsms, a_sendsms_addr" + + R_tablename_str = "board_config" + + R_WHERE_str = " WHERE a_num=" & a_num + + Call SelectQuery (R_Fields, R_tablename_str, R_WHERE_str) + + is_title_str = "게시판 수정" + + +End if + + + +If cp_a_num <> "" then '//복사 + + R_Fields = "a_bbsname, a_level, a_type, a_tablename, a_imgline, a_imgwidth, a_imgheight, a_member, a_ad_cms_id, a_ad_cms, a_cate, a_email, a_phone, a_home, a_jumin, a_jumin_opt, a_ftemp1, a_ftemp1_str, a_ftemp2, a_ftemp2_str, a_ftemp3, a_ftemp3_str, a_ftemp4, a_ftemp4_str, a_new, a_upload, a_upload_len, a_nofilesize, a_nofile, a_reply, a_replyOpt, a_command, a_date_list, a_sdate, a_edate, a_noword, a_width, a_displaysu, a_viewType, a_lt_a, a_lt_b, a_lt_c, a_lt_e, a_lt_f, a_header, a_detail, a_writecontent, a_topinclude, a_btminclude, a_skin,a_password, a_password_str, a_close, a_sendmail, a_sendmail_addr, a_sendsms, a_sendsms_addr" + + R_tablename_str = "board_config" + + R_WHERE_str = " WHERE a_num=" & cp_a_num + + Call SelectQuery (R_Fields, R_tablename_str, R_WHERE_str) + + a_bbsname = "[복사본]" & a_bbsname + + is_title_str = "신규 게시판 생성" + +End if + + + +If a_sdate = "" then + + a_sdate_y = Year(now) + a_sdate_m = Right( "0" & Month(now), 2) + a_sdate_d = Right( "0" & Day(now), 2) + +else + + a_sdate_arr = Split( a_sdate, "-" ) + + a_sdate_y = a_sdate_arr(0) + a_sdate_m = a_sdate_arr(1) + a_sdate_d = a_sdate_arr(2) + +End if + + +If a_edate = "" then + a_edate_arr = Split( DateSerial(Year(now), Month(now)+2, Day(now)), "-" ) + + a_edate_y = a_edate_arr(0) + a_edate_m = a_edate_arr(1) + a_edate_d = a_edate_arr(2) + +else + + a_edate_arr = Split( a_edate, "-" ) + + a_edate_y = a_edate_arr(0) + a_edate_m = a_edate_arr(1) + a_edate_d = a_edate_arr(2) + +End if + +%> + + +
+ +
+
+

<%=is_title_str%>

+
+ +
+ + +
+ +
+
+ + + + + +
+ +

게시판기본정보기본정보를 입력해주세요.

+
+ 신규 게시판 생성 서식 작성 + + + + + + + + + + + + + + + + + + + + + + + + + + +
신규 게시판 생성 서식
+ + * 갤러리 사용시 하단에서 [파일업로드] 기능을 꼭 체크하세요 +
회원제 + + +
* 사용 예) test1, test2, test3 + + + + +
+
+ + : + + + + + + 예) 홍길동, 길동 +
+
+ ↓ 회원목록 - 회원명 검색 결과 목록입니다. + + +
+ +
+
+ + + + + +
비밀번호 인증 + + +    비밀번호 : + +
+
+ + + + + + + +

필드관리필드정보를 입력해주세요.

+
+ 필드정보 서식 작성 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
필드정보 서식
관리자버튼 + + + 분류 + + +
이메일 + + + 전화번호 + + +
주소 + + + 주민번호 + + +   + +
사용자 필드추가 1 + + +    필드명 : + +
사용자 필드추가 2 + + +    필드명 : + +
사용자 필드추가 3 + + +    필드명 : + +
사용자 필드추가 4 + + +    필드명 : + +
+
+ + + + + +

기능관리기능정보를 입력해주세요.

+
+ 기능정보 서식 작성 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
기능정보 서식
파일업로드 + + + +
+ + + + + + + + + + + + + + + + + + + +
파일업로드 기능정보 서식
+ 개 +
MByte이하

* 사용 예) asp, exe, dll,
+
+ <%If a_upload = "N" then%> + + <%End if%> +
답변 + + +   + + + +
한줄답글(댓글) + + +
공개/비공개 + + + +
에디터 + + +
사용기간 + + +   + + + + ~ + + + +
* 사용 예) 욕설, 비방, 광고,
글등록시 메일발송 + + +    + : +
글등록시 SMS발송 + + +    + : * '-' 는 제외 +
+
+ + + + + + + + +

디자인관리게시판 디자인정보를 입력해주세요.

+
+ 디자인정보 서식 작성 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
기능정보 서식
* 퍼센트(%)단위 설정은 꼭 %를 넣어주세요. 숫자만 입력하시면 픽셀(pixel)단위로 설정됩니다.
+ tabindex="<%=getTabIndex()%>" />작성자 + tabindex="<%=getTabIndex()%>" />작성일 + tabindex="<%=getTabIndex()%>" />조회 + tabindex="<%=getTabIndex()%>" />파일 + tabindex="<%=getTabIndex()%>" />답변 +

* 시작경로는 루트(/)로 설정된 경로부터 시작됩니다.

* HTML태그사용은 가능하나, < script > 는 사용불가합니다.

* 시작경로는 루트(/)로 설정된 경로부터 시작됩니다.

* HTML태그사용은 가능하나, < script > 는 사용불가합니다.
+
+ + + + +
+
+
+ +
+ +
+ + +
+ + +
+
+ + +
+
+ + \ No newline at end of file diff --git a/manager/content/02board/write_ok.asp b/manager/content/02board/write_ok.asp new file mode 100644 index 0000000..4de95b0 --- /dev/null +++ b/manager/content/02board/write_ok.asp @@ -0,0 +1,217 @@ + + + +<% +Dim R_Fields +Dim a_num, a_bbsname, a_level, a_type, a_tablename, a_imgline, a_imgwidth, a_imgheight, a_member, a_ad_cms_id, a_ad_cms, a_cate, a_email, a_phone, a_home, a_jumin, a_jumin_opt, a_ftemp1, a_ftemp1_str, a_ftemp2, a_ftemp2_str +Dim a_ftemp3, a_ftemp3_str, a_ftemp4, a_ftemp4_str, a_new, a_upload, a_upload_len, a_nofilesize, a_nofile, a_reply, a_replyOpt, a_command, a_date_list, a_sdate_y,a_sdate_m,a_sdate_d, a_edate_y, a_edate_m, a_edate_d, a_noword +Dim a_width, a_displaysu, a_viewType, a_lt_a, a_lt_b, a_lt_c, a_lt_e, a_lt_f, a_hd_file, a_dt_file, a_writecontent, a_topinclude, a_btminclude, a_skin, a_date, a_edit,a_password, a_password_str +Dim a_sendmail, a_sendmail_addr, a_sendsms, a_sendsms_addr +Dim R_Fields_i, R_Fields_u + +Set UploadForm = Server.CreateObject("DEXT.FileUpload") +UploadForm.DefaultPath = server.MapPath("/")&"\data\" + +R_Fields = "a_num, a_bbsname, a_level, a_type, a_tablename, a_imgline, a_imgwidth, a_imgheight, a_member, a_ad_cms_id, a_ad_cms, a_cate, a_email, a_phone, a_home, a_jumin, a_jumin_opt, a_ftemp1, a_ftemp1_str, a_ftemp2, a_ftemp2_str, a_ftemp3, a_ftemp3_str, a_ftemp4, a_ftemp4_str, a_new, a_upload, a_upload_len, a_nofilesize, a_nofile, a_reply, a_replyOpt, a_command, a_date_list, a_sdate_y,a_sdate_m,a_sdate_d, a_edate_y, a_edate_m, a_edate_d, a_noword, a_width, a_displaysu, a_viewType, a_lt_a, a_lt_b, a_lt_c, a_lt_e, a_lt_f, a_hd_file, a_dt_file, a_topinclude, a_btminclude, a_skin, a_date, a_edit,a_password, a_password_str, a_sendmail, a_sendmail_addr, a_sendsms, a_sendsms_addr" + + +'//파일부분.. +R_Fields = R_Fields & ", is_a_hd_file, is_a_dt_file, a_hd_file_del, a_dt_file_del" + +Call RequestAll(R_Fields, "UploadForm") + + +a_sdate = a_sdate_y & "-" & a_sdate_m & "-" & a_sdate_d +a_edate = a_edate_y & "-" & a_edate_m & "-" & a_edate_d + + +a_header = InputValue4( UploadForm("a_header") ) +a_detail = InputValue4( UploadForm("a_detail") ) +'a_writecontent = InputValue2( a_writecontent ) +a_writecontent = UploadForm("a_writecontent") + +'If a_close<>"Y" Then a_close = "N" + +If a_num = "" then '//저장 + + + '//테이블 명을 구한다. + sql = "select a_tablename from board_config order by a_date desc" + Set rs = dbcon.execute( sql ) + + If rs.bof Or rs.eof then + a_tablename_str = "board_1" + else + + a_tablename = rs("a_tablename") + + a_tablename = Split( a_tablename, "_" ) + a_tablename(1) = a_tablename(1) + 1 + a_tablename_str = a_tablename(0) & "_" & a_tablename(1) + + End if + Set rs = nothing + + + sql = "SELECT count(a_num) as a_num FROM board_config where a_tablename = '" & a_tablename_str& "'" + Set rs = dbcon.execute( sql ) + rs_count = rs("a_num") + + + if rs_count > 0 Then + back_back "같은이름의 게시판이 이미 존재합니다." + End if + + + '//------------------- 저장공간인 [DATA]폴더가 없다면 생성 한다. ------------------- + FolderCreate( server.mappath("/") & "\data\board\" ) + '//------------------------------------------------------------------------------------ + + '//------------------- 저장공간인 [DATA/게시판명]폴더가 없다면 생성 한다. ------------------- + FolderCreate( server.mappath("/") & "\data\board\" & a_tablename_str & "\") + '//------------------------------------------------------------------------------------ + + + '//파일저장 + '//***************************************** + strDir = server.mappath("/") & "\data\board\" & a_tablename_str & "\" + ext_str = "jpg,gif" + + a_hd_file = wfile2("a_hd_file", 10, strDir, ext_str) '필드명, 최대용량, 업로드경로, 허용파일(zip,gif,jpg...) + a_dt_file = wfile2("a_dt_file", 10, strDir, ext_str) + '//***************************************** + + + R_Fields_i = "a_num, a_bbsname, a_level, a_type, a_tablename, a_imgline, a_imgwidth, a_imgheight, a_member, a_ad_cms_id, a_ad_cms, a_cate, a_email, a_phone, a_home, a_jumin, a_jumin_opt, a_ftemp1, a_ftemp1_str, a_ftemp2, a_ftemp2_str, a_ftemp3, a_ftemp3_str, a_ftemp4, a_ftemp4_str, a_new, a_upload, a_upload_len, a_nofilesize, a_nofile, a_reply, a_replyOpt, a_command, a_date_list, a_sdate, a_edate, a_noword, a_width, a_displaysu, a_viewType, a_lt_a, a_lt_b, a_lt_c, a_lt_e, a_lt_f, a_header, a_hd_file, a_detail, a_dt_file, a_writecontent, a_topinclude, a_btminclude, a_skin, a_date, a_edit, a_password, a_password_str, a_sendmail, a_sendmail_addr, a_sendsms, a_sendsms_addr" + + + a_num = get_idx_add() + a_date = getDateFm(Now(), 3) + a_tablename = a_tablename_str + + + Call InsertQuery (R_Fields_i, "board_config") + + + sql = "CREATE TABLE [dbo].[" & a_tablename_str & "] (" + sql = sql & "[b_num] [int] IDENTITY (1, 1) NOT NULL ," + sql = sql & "[b_type] [char] (1) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_id] [varchar] (30) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_name] [varchar] (30) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_pwd] [varchar] (30) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_subject] [varchar] (200) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_email] [varchar] (200) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_jumin] [varchar] (13) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_phone1] [varchar] (4) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_phone2] [varchar] (4) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_phone3] [varchar] (4) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_cate] [int] NULL ," + sql = sql & "[b_catename] [varchar] (100) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_noticechk] [char] (1) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_content] [text] COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_ip] [varchar] (15) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_count] [int] NULL ," + sql = sql & "[b_look] [char] (1) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_open] [char] (1) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_ref] [int] NULL ," + sql = sql & "[b_step] [int] NULL ," + sql = sql & "[b_level] [int] NULL ," + sql = sql & "[b_regdate] [varchar] (30) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_chuchun] [int] NULL ," + sql = sql & "[b_sbjclr] [varchar] (10) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_sdate] [varchar] (10) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_edate] [varchar] (10) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_temp1] [varchar] (50) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_temp2] [varchar] (50) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_temp3] [varchar] (50) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_temp4] [varchar] (50) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_temp5] [varchar] (50) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_temp6] [varchar] (50) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_temp7] [varchar] (50) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_temp8] [text] COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_file1] [varchar] (300) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_file2] [varchar] (300) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_file3] [varchar] (300) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_file4] [varchar] (300) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_file5] [varchar] (300) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_keyword] [varchar] (100) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_c_count] [int] NULL ," + sql = sql & "[b_zip1] [varchar] (3) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_zip2] [varchar] (3) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_addr1] [varchar] (100) COLLATE Korean_Wansung_CI_AS NULL ," + sql = sql & "[b_addr2] [varchar] (100) COLLATE Korean_Wansung_CI_AS NULL " + sql = sql & ")" + + dbcon.execute sql + + '//뷰생성 + ViewCreate() + + ok_url = "list.asp" + + +Else '//수정 + + strDir = server.mappath("/") & "\data\board\" & a_tablename & "\" + ext_str = "jpg,gif" + a_hd_file = wfile2("a_hd_file", 10, strDir, ext_str) + a_dt_file = wfile2("a_dt_file", 10, strDir, ext_str) + + If a_hd_file <> "" then '//첨부파일이 있으면 + + Call dfile(strDir, is_a_hd_file) + + Else '//첨부파일 없으면 + + a_hd_file = is_a_hd_file + + If a_hd_file_del = "Y" Then '//첨부파일만 삭제 + Call dfile(strDir, is_a_hd_file) + a_hd_file = "" + End if + + End if + + + If a_dt_file <> "" then '//첨부파일이 있으면 + + Call dfile( strDir, is_a_hd_file) + + Else '//첨부파일 없으면 + + a_dt_file = is_a_dt_file + + If a_dt_file_del = "Y" then '//첨부파일만 삭제 + Call dfile( strDir, is_a_dt_file ) + a_dt_file = "" + End if + + End if + + 'response.write a_edate + 'response.end + + + + R_Fields_u = "a_bbsname, a_level, a_type, a_imgline, a_imgwidth, a_imgheight, a_member, a_ad_cms_id, a_ad_cms, a_cate, a_email, a_phone, a_home, a_jumin, a_jumin_opt, a_ftemp1, a_ftemp1_str, a_ftemp2, a_ftemp2_str, a_ftemp3, a_ftemp3_str, a_ftemp4, a_ftemp4_str, a_new, a_upload, a_upload_len, a_nofilesize, a_nofile, a_reply, a_replyOpt, a_command, a_date_list, a_sdate, a_edate, a_noword, a_width, a_displaysu, a_viewType, a_lt_a, a_lt_b, a_lt_c, a_lt_e, a_lt_f, a_header, a_hd_file, a_detail, a_dt_file, a_writecontent, a_topinclude, a_btminclude, a_skin, a_edit, a_password, a_password_str, a_sendmail, a_sendmail_addr, a_sendsms, a_sendsms_addr" + + + Call UpdateQuery ( R_Fields_u, "board_config", "where a_num =" & a_num ) + + ok_url = "list.asp?" & page_info + + ViewCreate() + + +' If a_close = "Y" Then +' sql = "update " & a_tablename & " set b_open = 'N' " +' Else +' sql = "update " & a_tablename & " set b_open = 'Y' " +' End if + +End if + + +Call loding ("0", ok_url) + +%> \ No newline at end of file diff --git a/manager/content/02board/write_ui.asp b/manager/content/02board/write_ui.asp new file mode 100644 index 0000000..3de0a4c --- /dev/null +++ b/manager/content/02board/write_ui.asp @@ -0,0 +1,675 @@ + +<%'//*************************************************************************************%> + +<%'//*************************************************************************************%> + +<% +Dim a_num, a_bbsname, a_level, a_type, a_tablename, a_imgline, a_imgwidth, a_imgheight, a_member, a_ad_cms_id, a_ad_cms, a_cate, a_email, a_phone, a_home, a_jumin, a_jumin_opt, a_ftemp1, a_ftemp1_str, a_ftemp2, a_ftemp2_str, a_ftemp3, a_ftemp3_str, a_ftemp4, a_ftemp4_str, a_new, a_upload, a_upload_len, a_nofilesize, a_nofile, a_reply, a_replyOpt, a_command, a_date_list, a_sdate, a_edate, a_noword, a_width, a_displaysu, a_viewType, a_lt_a, a_lt_b, a_lt_c, a_lt_e, a_lt_f, a_header, a_hd_file, a_detail, a_dt_file, a_writecontent, a_topinclude, a_btminclude, a_skin, a_date, a_edit,a_password, a_password_str, a_close, a_sendmail, a_sendmail_addr, a_sendsms, a_sendsms_addr + +Dim cp_a_num + +'//쓰기권한체크************************************************************************************* +if is_write <> "Y" then + back_back "쓰기권한이 없습니다." +End if +'//************************************************************************************************** + + +'//파라미터정보 ************************************************************************************* +a_num = InputValue(request.queryString("a_num")) +cp_a_num = InputValue(request.queryString("cp_a_num")) +'//************************************************************************************************** + + +If a_num = "" then '//등록 + + a_num = "" + + a_bbsname = "" + a_level = "B" + a_type = "N" + a_tablename = "" + a_imgline = "4" + a_imgwidth = "130" + a_imgheight = "" + a_member = "N" + a_ad_cms_id = "" + a_ad_cms = "Y" + a_cate = "N" + a_email = "N" + a_phone = "N" + a_home = "N" + a_jumin = "N" + a_jumin_opt = "1" + a_ftemp1 = "N" + a_ftemp1_str = "" + a_ftemp2 = "N" + a_ftemp2_str = "" + a_ftemp3 = "N" + a_ftemp3_str = "" + a_ftemp4 = "N" + a_ftemp4_str = "" + a_new = "1" + a_upload = "Y" + a_upload_len = "2" + a_nofilesize = "5" + a_nofile = "hwp,doc,ppt,xls,txt,gif,jpg,docx,pptx,xlsx,zip,alz,rar,pdf" + a_reply = "N" + a_replyOpt = "2" + a_command = "N" + a_date_list = "N" + a_sdate = "" + a_edate = "" + a_noword = "" + a_width = "100%" + a_displaysu = "10" + a_viewType = "1" + a_lt_a = "Y" + a_lt_b = "Y" + a_lt_c = "Y" + a_lt_e = "Y" + a_lt_f = "N" + a_header = "" + a_hd_file = "" + a_detail = "" + a_dt_file = "" + a_writecontent = "" + a_topinclude = "" + a_btminclude = "" + a_skin = "1" + a_date = "" + a_edit = "Y" + + is_title_str = "신규 게시판 생성" + + a_password = "N" + a_password_str = "" + a_close = "N" + + a_sendmail = "N" + a_sendsms = "N" + + + +Else '//수정 + + R_Fields = "a_num, a_bbsname, a_level, a_type, a_tablename, a_imgline, a_imgwidth, a_imgheight, a_member, a_ad_cms_id, a_ad_cms, a_cate, a_email, a_phone, a_home, a_jumin, a_jumin_opt, a_ftemp1, a_ftemp1_str, a_ftemp2, a_ftemp2_str, a_ftemp3, a_ftemp3_str, a_ftemp4, a_ftemp4_str, a_new, a_upload, a_upload_len, a_nofilesize, a_nofile, a_reply, a_replyOpt, a_command, a_date_list, a_sdate, a_edate, a_noword, a_width, a_displaysu, a_viewType, a_lt_a, a_lt_b, a_lt_c, a_lt_e, a_lt_f, a_header, a_hd_file, a_detail, a_dt_file, a_writecontent, a_topinclude, a_btminclude, a_skin, a_date, a_edit,a_password, a_password_str, a_close, a_sendmail, a_sendmail_addr, a_sendsms, a_sendsms_addr" + + R_tablename_str = "board_config" + + R_WHERE_str = " WHERE a_num=" & a_num + + Call SelectQuery (R_Fields, R_tablename_str, R_WHERE_str) + + is_title_str = "게시판 수정" + + +End if + + + +If cp_a_num <> "" then '//복사 + + R_Fields = "a_bbsname, a_level, a_type, a_tablename, a_imgline, a_imgwidth, a_imgheight, a_member, a_ad_cms_id, a_ad_cms, a_cate, a_email, a_phone, a_home, a_jumin, a_jumin_opt, a_ftemp1, a_ftemp1_str, a_ftemp2, a_ftemp2_str, a_ftemp3, a_ftemp3_str, a_ftemp4, a_ftemp4_str, a_new, a_upload, a_upload_len, a_nofilesize, a_nofile, a_reply, a_replyOpt, a_command, a_date_list, a_sdate, a_edate, a_noword, a_width, a_displaysu, a_viewType, a_lt_a, a_lt_b, a_lt_c, a_lt_e, a_lt_f, a_header, a_detail, a_writecontent, a_topinclude, a_btminclude, a_skin,a_password, a_password_str, a_close, a_sendmail, a_sendmail_addr, a_sendsms, a_sendsms_addr" + + R_tablename_str = "board_config" + + R_WHERE_str = " WHERE a_num=" & cp_a_num + + Call SelectQuery (R_Fields, R_tablename_str, R_WHERE_str) + + a_bbsname = "[복사본]" & a_bbsname + + is_title_str = "신규 게시판 생성" + +End if + + + +If a_sdate = "" then + + a_sdate_y = Year(now) + a_sdate_m = Right( "0" & Month(now), 2) + a_sdate_d = Right( "0" & Day(now), 2) + +else + + a_sdate_arr = Split( a_sdate, "-" ) + + a_sdate_y = a_sdate_arr(0) + a_sdate_m = a_sdate_arr(1) + a_sdate_d = a_sdate_arr(2) + +End if + + +If a_edate = "" then + a_edate_arr = Split( DateSerial(Year(now), Month(now)+2, Day(now)), "-" ) + + a_edate_y = a_edate_arr(0) + a_edate_m = a_edate_arr(1) + a_edate_d = a_edate_arr(2) + +else + + a_edate_arr = Split( a_edate, "-" ) + + a_edate_y = a_edate_arr(0) + a_edate_m = a_edate_arr(1) + a_edate_d = a_edate_arr(2) + +End if + +%> + + +
+
+
+

<%=is_title_str%>

+
+ +
+ + +
+ +
+
+ + + + + +
+ +

게시판기본정보기본정보를 입력해주세요.

+
+ 신규 게시판 생성 서식 작성 + + + + + + + + + + + + + + + + + + + + + + + + + + +
신규 게시판 생성 서식
+ + * 갤러리 사용시 하단에서 [파일업로드] 기능을 꼭 체크하세요 +
회원제 + + +
* 사용 예) test1, test2, test3 + + + + +
+
+ + : + + + + + + 예) 홍길동, 길동 +
+
+ ↓ 회원목록 - 회원명 검색 결과 목록입니다. + + +
+ +
+
+ + + + + +
비밀번호 인증 + + +    비밀번호 : + +
+
+ + + + + + + +

필드관리필드정보를 입력해주세요.

+
+ 필드정보 서식 작성 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
필드정보 서식
관리자버튼 + + + 분류 + + +
이메일 + + + 전화번호 + + +
주소 + + + 주민번호 + + +   + +
사용자 필드추가 1 + + +    필드명 : + +
사용자 필드추가 2 + + +    필드명 : + +
사용자 필드추가 3 + + +    필드명 : + +
사용자 필드추가 4 + + +    필드명 : + +
+
+ + + + + +

기능관리기능정보를 입력해주세요.

+
+ 기능정보 서식 작성 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
기능정보 서식
파일업로드 + + + +
+ + + + + + + + + + + + + + + + + + + +
파일업로드 기능정보 서식
+ 개 +
MByte이하

* 사용 예) asp, exe, dll,
+
+ <%If a_upload = "N" then%> + + <%End if%> +
답변 + + +   + + + +
한줄답글(댓글) + + +
공개/비공개 + + + +
에디터 + + +
사용기간 + + +   + + + + ~ + + + +
* 사용 예) 욕설, 비방, 광고,
글등록시 메일발송 + + +    + : +
글등록시 SMS발송 + + +    + : * '-' 는 제외 +
+
+ + + + + + + + +

디자인관리게시판 디자인정보를 입력해주세요.

+
+ 디자인정보 서식 작성 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
기능정보 서식
* 퍼센트(%)단위 설정은 꼭 %를 넣어주세요. 숫자만 입력하시면 픽셀(pixel)단위로 설정됩니다.
+ />작성자 + />작성일 + />조회 + />파일 + />답변 +

* 시작경로는 루트(/)로 설정된 경로부터 시작됩니다.

* HTML태그사용은 가능하나, < script > 는 사용불가합니다.

* 시작경로는 루트(/)로 설정된 경로부터 시작됩니다.

* HTML태그사용은 가능하나, < script > 는 사용불가합니다.
+
+ + + + +
+
+
+ +
+ +
+ + +
+ + +
+
+ + +
+
+ + \ No newline at end of file diff --git a/manager/content/02board_code/config.asp b/manager/content/02board_code/config.asp new file mode 100644 index 0000000..3eadbd7 --- /dev/null +++ b/manager/content/02board_code/config.asp @@ -0,0 +1,20 @@ +<% +Dim is_ad_cms, is_read, is_write, is_delete, is_reply, max_depth_option, mm_ct_idx +'//security_ad_cms(); //관리자페이지 접속권한 체크 + +'//권한정보 ************************************************************************************* +is_ad_cms = "Y" +is_read = "Y" +is_write = "Y" +is_delete = "Y" +is_reply = "Y" +'/************************************************************************************************** + +'//$browser_title = "사이트환경설정"; //페이지타이틀 명 + +max_depth_option = "3" + +'//현재 메뉴 idx +mm_ct_idx = "5" + +%> \ No newline at end of file diff --git a/manager/content/02board_code/delete_ok.asp b/manager/content/02board_code/delete_ok.asp new file mode 100644 index 0000000..fda4000 --- /dev/null +++ b/manager/content/02board_code/delete_ok.asp @@ -0,0 +1,85 @@ + + +<% +Dim a_num, ct_idx, status, ct_ref +Dim sql, rs_3, strDir + + +'//------------------- 저장공간인 [DATA]폴더가 없다면 생성 한다. ------------------- +FolderCreate( server.MapPath("/")&"\data\board_code\" ) +'//------------------------------------------------------------------------------------ + +'Set UploadForm = Server.CreateObject("DEXT.FileUpload") +'UploadForm.DefaultPath = server.MapPath("/")&"\data\board_code\" + + +'//파라미터정보 ************************************************************************************* +a_num = InputValue(request("a_num")) +ct_idx = InputValue(request("ct_idx")) +status = InputValue(request("status")) +ct_ref = InputValue(request("ct_ref")) + +chk = InputValue(request("chk")) +chk = Replace( chk, " ", "" ) +chk = Split(chk, ",") +'//************************************************************************************************** + +If status = "totdel" Then '//다중삭제 + + + For z=0 To ubound(chk) + + sql = "Select ct_codeno,ct_file from board_code where ct_idx=" &chk(z) + Set rs_3 = dbcon.execute( sql ) + + ct_codeno = rs_3("ct_codeno") + ct_file = rs_3("ct_file") + + + '//이미지 삭제 + strDir = server.mappath("/data/board_code/") & "\" + + If ct_file <> "" then + Call dfile (strDir, ct_file) '//삭제 + End if + + sql = " delete from board_code where ct_codeno like '%" & ct_codeno & "%'" + dbcon.execute sql + next + + + +Else '//일반삭제 + + '//삭제하기 + + sql = "Select ct_codeno, ct_file from board_code where ct_idx=" & ct_idx + Set rs_3 = dbcon.execute( sql ) + + ct_codeno = rs_3("ct_codeno") + ct_file = rs_3("ct_file") + + + '//이미지 삭제 + strDir = server.mappath("/data/board_code/") & "\" + + If ct_file <> "" then + Call dfile( strDir, ct_file) '//삭제 + End if + + sql = " delete from board_code where ct_codeno like '%" & ct_codeno & "%'" + '//echo $sql; + dbcon.execute sql + +End if + + +If ct_ref = "0" then ct_ref = "" +ok_url = "write.asp?a_num=" & a_num & "&ct_idx=" & ct_ref + +dbcon.close +Set dbcon = nothing + +Call loding ("0", ok_url) + +%> \ No newline at end of file diff --git a/manager/content/02board_code/level_ok.asp b/manager/content/02board_code/level_ok.asp new file mode 100644 index 0000000..2a3ec59 --- /dev/null +++ b/manager/content/02board_code/level_ok.asp @@ -0,0 +1,60 @@ + + +<% +Dim status, a_num, tot_level_chk, ct_chk, ct_idx, ct_ref + + +'//------------------- 저장공간인 [DATA]폴더가 없다면 생성 한다. ------------------- +FolderCreate( server.MapPath("/")&"\data\board_code\" ) +'//------------------------------------------------------------------------------------ + +Set UploadForm = Server.CreateObject("DEXT.FileUpload") +UploadForm.DefaultPath = server.MapPath("/")&"\data\board_code\" + + +'//파라미터정보 *********************************************** +status = InputValue(UploadForm("status")) +a_num = InputValue(UploadForm("a_num")) + +tot_level_chk = InputValue(UploadForm("tot_level_chk")) + +ct_chk = InputValue(UploadForm("ct_chk")) +ct_idx = InputValue(UploadForm("ct_idx")) + +ct_ref = InputValue(UploadForm("ct_ref")) + + +chk = InputValue(UploadForm("chk")) +chk = Replace( chk, " ", "" ) +chk = Split(chk, ",") + +'//************************************************************ + + +If status = "totlevel" then ') { // + + For z=0 To ubound(chk) + + sql = " Update board_code set ct_chk = '" & tot_level_chk & "' Where ct_idx = " & chk(z) + dbcon.execute sql + + next + +Else + + + sql = " Update board_code set ct_chk = '" & ct_chk & "' Where ct_idx = " & ct_idx + dbcon.execute sql + +end if + +dbcon.close +Set dbcon = nothing + + +If ct_ref = "0" then ct_ref = "" +ok_url = "write.asp?a_num=" & a_num & "&ct_idx=" & ct_ref + +Call loding ("0",ok_url) + +%> \ No newline at end of file diff --git a/manager/content/02board_code/move.asp b/manager/content/02board_code/move.asp new file mode 100644 index 0000000..0674c81 --- /dev/null +++ b/manager/content/02board_code/move.asp @@ -0,0 +1,40 @@ + + +<% +Dim sql, a_num, ct_idx, ct_code, move, ct_ref, ok_url + +a_num = InputValue( request.queryString("a_num")) +ct_idx = InputValue( request.queryString("ct_idx")) '//--일련번호 +ct_code = InputValue( request.queryString("ct_code")) '//--정렬번호 +move = InputValue( request.queryString("move")) '//--이동 +ct_ref = InputValue( request.queryString("ct_ref")) + + + +if move = "up" then + sql = "select top 1 ct_idx, ct_code from board_code where a_num=" & a_num & " AND ct_code < " & ct_code & " AND ct_ref='" & ct_ref & "' order by ct_code desc" +elseif move = "down" then + sql = "select top 1 ct_idx, ct_code from board_code where a_num=" & a_num & " AND ct_code > " & ct_code & " AND ct_ref='" & ct_ref & "' order by ct_code" +End if + +Set rs = dbcon.execute( sql ) + +If Not( rs.bof Or rs.eof ) then + + v_rsct_idx = rs("ct_idx") '//-- 대체할 디비번호 + v_rsct_code = rs("ct_code") '//-- 대체할 값 + sql1 = "update board_code set ct_code = " & ct_code & " where ct_idx = " & v_rsct_idx + sql2 = "update board_code set ct_code = " & v_rsct_code & " where ct_idx = " &ct_idx + + dbcon.execute sql1 + dbcon.execute sql2 + +End if + + +If ct_ref = "0" Then ct_ref = "" + +ok_url = "write.asp?a_num=" & a_num & "&ct_idx=" & ct_ref +Call loding ("0", ok_url) + +%> \ No newline at end of file diff --git a/manager/content/02board_code/write.asp b/manager/content/02board_code/write.asp new file mode 100644 index 0000000..c2a3e2b --- /dev/null +++ b/manager/content/02board_code/write.asp @@ -0,0 +1,350 @@ + +<%'//*************************************************************************************%> + +<%'//*************************************************************************************%> + +<% +Dim a_num +Dim table, idx_field, oreder_filed, Query_Fields, list_data +Dim ct_idx, ct_code, ct_name, ct_ref, ct_depth, ct_chk, ct_wdate, ct_codeno, ct_file + +a_num = InputValue(request( "a_num" )) + + +'//쓰기권한체크************************************************************************************* +if is_write <> "Y" Then + back_back "쓰기권한이 없습니다." +End if +'//************************************************************************************************** + + +'//파라미터정보 ************************************************************************************* +ct_idx = Inputvalue(request("ct_idx")) + +'//용도 : 등록/수정시 현재 상위pk(idx)값, 현재단계 +If ct_idx = "" then '//없으면 1단계 + + ct_ref = "0" + ct_depth = "1" + + ct_codeno_ref = "C0;" + +Else + + sql = "select ct_depth,ct_codeno from board_code where ct_idx=" & ct_idx '//상위idx값을 구한당 + Set rs_2 = dbcon.execute( sql ) + + ref_depth = rs_2("ct_depth") + ref_codeno = rs_2("ct_codeno") + + ct_ref = ct_idx + ct_depth = ref_depth + 1 '//상위단계 + 1 + ct_codeno_ref = ref_codeno + +End if + + +'//echo "
현재단계 : " . $ct_depth . "단계"; + + +'//쓰기권한체크************************************************************************************* +if CInt( ct_depth ) > cint(max_depth_option) then + back_back "최대 "& max_depth_option & " 단계 까지 가능합니다.." +End if + +'//************************************************************************************************** + +'//테이블 기본 환경설정 ******************************************************************************** +table = "board_code" '//테이블명 +idx_field = "ct_idx" '//기본키 +oreder_filed = "ct_code ASC" '//정렬기준 필드 +Query_Fields = "ct_idx, ct_code, ct_name, ct_ref, ct_depth, ct_chk, ct_wdate, ct_codeno, ct_file" '//불러올 필드 +'//**************************************************************************************************** + +'//---------------조합 쿼리문------------------------------------ +If v_keyword <> "" then + search_str = " AND " & v_search & " like '%" & v_keyword & "%'" +End if + +If ct_idx <> "" then + search_str2 = " AND ct_ref = '" & ct_idx & "'" +else + search_str2 = " AND ct_ref = '0'" +End if + +Query_OrderBy = " ORDER BY " & oreder_filed +'//--------------------------------------------------------------- + +'//-----------------------------리스트 출력 쿼리문 생성----------------------------- +sql = "select " & Query_Fields & " from " & table & " WHERE a_num = " & a_num +sql = sql & search_str & search_str2 & Query_OrderBy +'response.write sql +'response.end +Set col = dbcon.execute( sql ) + +If col.bof Or col.eof Then + list_data = null +Else + list_data = col.getrows +End If +Set col = nothing +'//--------------------------------------------------------------------------------- + +%> + + +
+ +
+
+

게시판 분류관리

+ +
+ +
+ + +
+ +

현재분류경로: 게시판리스트 > <%=get_bbsname(a_num)%> + <% + If ref_codeno <> "" then + + ref_codeno_arr = Split(ref_codeno, ";") + + for z=1 To ubound(ref_codeno_arr) + + ct_idx_str = replace(ref_codeno_arr(z),"C","") + ct_idx_str = replace(ct_idx_str,";","") + + + If ct_idx_str <> "" then + + sql = "Select ct_name from board_code where ct_idx=" & ct_idx_str + Set rs_3 = dbcon.execute( sql ) + If Not( rs_3.bof Or rs_3.eof ) then + ct_name_str = rs_3("ct_name") + End if + + + If UBound(ref_codeno_arr)-1 = z then + %> + > <%=ct_name_str%> + <% + else + + ref_ct_idx_str = ct_idx_str + %> + > <%=ct_name_str%> + <% + End if + End if + next + End if + + %> + +

+ + +
+
+ + + + + +
+ +
+ +
+ + +
    +
  • :
  • + +
  • + +
  • :
  • + +
  • + +
  • + +
  • + +
+ + +
+ +
+ +
+ + + + + + + +
+
+ + + + + + + + + + +
+ +
+ 분류관리 작성/수정 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <% + + If IsNull(list_data) Then +%> + + + + + + + + + + +<% + else + + For i = 0 To UBound(list_data, 2) + + '//필드갯수만큼 ($Query_Fields).가지고온다.. + Call arr2Value(Query_Fields, "list_data", i) + + if ct_chk = "Y" then + ct_chk_str = "사용" + else + ct_chk_str = "중지" + End if + + %> + + + + + + + + + + + + + + + + + + + <% + Next + End if + %> + + + +
분류관리 서식
선택순서분류이미지사용여부수정삭제
+ 순서 위로 이동순서 아래로 이동 + + + + + + + + <% If ct_file <> "" Then %> +
<%=ct_name%> 삭제
+ <% End if%> + + + +
<%=ct_chk_str%> + +
+
+ +
+ +
+ + +
+ +
+ + +
+ + +
+
+ + + + + + +
+
+ + diff --git a/manager/content/02board_code/write_ok.asp b/manager/content/02board_code/write_ok.asp new file mode 100644 index 0000000..eb977ed --- /dev/null +++ b/manager/content/02board_code/write_ok.asp @@ -0,0 +1,133 @@ + + +<% +Dim R_Fields, UploadForm +dim ct_idx, ct_code, ct_name, ct_ref, ct_depth, ct_chk, ct_wdate, ct_codeno, ct_codeno_ref, a_num +Dim strDir, ext_str, ct_file +Dim sql, R_Fields_i + + +'//------------------- 저장공간인 [DATA]폴더가 없다면 생성 한다. ------------------- +FolderCreate( server.MapPath("/")&"\data\board_code\" ) +'//------------------------------------------------------------------------------------ + +Set UploadForm = Server.CreateObject("DEXT.FileUpload") +UploadForm.DefaultPath = server.MapPath("/")&"\data\board_code\" + + +R_Fields = "ct_idx, ct_code, ct_name, ct_ref, ct_depth, ct_chk, ct_wdate, ct_codeno, ct_codeno_ref, a_num" + +Call RequestAll(R_Fields, "UploadForm") + + + + +If ct_idx = "" then '//저장 + + '//이미지파일저장 + '//***************************************** + strDir = UploadForm.DefaultPath + ext_str = "jpg,gif" + ct_file = wfile2("ct_file", 10, strDir, ext_str) + '//***************************************** + + + '//순서 + '//***************************************** + sql = "select max(ct_code) as ct_code from board_code WHERE ct_ref = " & ct_ref + 'response.write sql + 'response.end + Set rs = dbcon.execute( sql ) + + ct_code = rs("ct_code") + + if IsNull(ct_code) then + ct_code = 1 + else + ct_code = ct_code + 1 + End if + '//***************************************** + + + R_Fields_i = "ct_code, ct_name, ct_ref, ct_depth, ct_chk, ct_wdate,a_num, ct_file" + + ct_wdate = getDateFm(Now(), 3) + + Call InsertQuery (R_Fields_i, "board_code") + + '//메뉴값 적용----------------------------------------------------------------------------- + sql = "select max(ct_idx) as ct_idx from board_code" + Set rs1 = dbcon.execute( sql ) + + max_ct_idx = rs1("ct_idx") + + Set rs1 = nothing + + ct_codeno = ct_codeno_ref & "C" & max_ct_idx & ";" + + sql = "update board_code set ct_codeno='" & ct_codeno & "' WHERE ct_idx = " & max_ct_idx + dbcon.execute sql + '//----------------------------------------------------------------------------------------- + + If ct_ref = "0" then ct_ref = "" + ok_url = "write_ui.asp?a_num=" & a_num & "&ct_idx=" & ct_ref + + +Else '{ //수정 + ct_name = inputValue( UploadForm( "ct_name_" & ct_idx ) ) + 'ct_file = inputValue( UploadForm( "ct_file_" & ct_idx ) ) + 'ct_file_name = inputValue( UploadForm( "ct_file_" & ct_idx ) ) + ct_file_org = inputValue( UploadForm( "ct_file_org_" & ct_idx ) ) + ct_file_del = inputValue( UploadForm( "ct_file_del_" & ct_idx ) ) + + + strDir = UploadForm.DefaultPath + + + '//체크하면 첨부파일 삭제 + If ct_file_del <> "" then '//첨부파일만 삭제 + Call dfile( strDir, ct_file_org ) + + ct_file = "" + ct_file_org = "" + + End if + + + '//이미지파일저장 + '//***************************************** + ext_str = "jpg,gif" + ct_file = wfile2("ct_file_" & ct_idx, 10, strDir, ext_str) + '//***************************************** + + If ct_file <> "" then '//첨부파일이 있으면 + + If ct_file_org <> "" then + Call dfile( strDir, ct_file_org ) + End if + + else + + ct_file = ct_file_org + + End if + + + + + R_Fields = "ct_name, ct_wdate, ct_file" + + ct_wdate = getDateFm(Now(), 3) + + Call UpdateQuery (R_Fields, "board_code", "where ct_idx=" & ct_idx) + + + If ct_ref = "0" then ct_ref = "" + ok_url = "write_ui.asp?a_num=" & a_num & "&ct_idx=" & ct_ref + +End if + + +Call loding("0",ok_url) + +%> \ No newline at end of file diff --git a/manager/content/02board_code/write_ui.asp b/manager/content/02board_code/write_ui.asp new file mode 100644 index 0000000..3ca2bcd --- /dev/null +++ b/manager/content/02board_code/write_ui.asp @@ -0,0 +1,354 @@ + +<%'//*************************************************************************************%> + +<%'//*************************************************************************************%> + +<% +Dim a_num +Dim table, idx_field, oreder_filed, Query_Fields, list_data +Dim ct_idx, ct_code, ct_name, ct_ref, ct_depth, ct_chk, ct_wdate, ct_codeno, ct_file + +a_num = InputValue(request( "a_num" )) + + +'//쓰기권한체크************************************************************************************* +if is_write <> "Y" Then + back_back "쓰기권한이 없습니다." +End if +'//************************************************************************************************** + + +'//파라미터정보 ************************************************************************************* +ct_idx = Inputvalue(request("ct_idx")) + +'//용도 : 등록/수정시 현재 상위pk(idx)값, 현재단계 +If ct_idx = "" then '//없으면 1단계 + + ct_ref = "0" + ct_depth = "1" + + ct_codeno_ref = "C0;" + +Else + + sql = "select ct_depth,ct_codeno from board_code where ct_idx=" & ct_idx '//상위idx값을 구한당 + Set rs_2 = dbcon.execute( sql ) + + ref_depth = rs_2("ct_depth") + ref_codeno = rs_2("ct_codeno") + + ct_ref = ct_idx + ct_depth = ref_depth + 1 '//상위단계 + 1 + ct_codeno_ref = ref_codeno + +End if + + +'//echo "
현재단계 : " . $ct_depth . "단계"; + + +'//쓰기권한체크************************************************************************************* +if CInt( ct_depth ) > cint(max_depth_option) then + back_back "최대 "& max_depth_option & " 단계 까지 가능합니다.." +End if + +'//************************************************************************************************** + +'//테이블 기본 환경설정 ******************************************************************************** +table = "board_code" '//테이블명 +idx_field = "ct_idx" '//기본키 +oreder_filed = "ct_code ASC" '//정렬기준 필드 +Query_Fields = "ct_idx, ct_code, ct_name, ct_ref, ct_depth, ct_chk, ct_wdate, ct_codeno, ct_file" '//불러올 필드 +'//**************************************************************************************************** + +'//---------------조합 쿼리문------------------------------------ +If v_keyword <> "" then + search_str = " AND " & v_search & " like '%" & v_keyword & "%'" +End if + +If ct_idx <> "" then + search_str2 = " AND ct_ref = '" & ct_idx & "'" +else + search_str2 = " AND ct_ref = '0'" +End if + +Query_OrderBy = " ORDER BY " & oreder_filed +'//--------------------------------------------------------------- + +'//-----------------------------리스트 출력 쿼리문 생성----------------------------- +sql = "select " & Query_Fields & " from " & table & " WHERE a_num = " & a_num +sql = sql & search_str & search_str2 & Query_OrderBy +'response.write sql +'response.end +Set col = dbcon.execute( sql ) + +If col.bof Or col.eof Then + list_data = null +Else + list_data = col.getrows +End If +Set col = nothing +'//--------------------------------------------------------------------------------- + +%> + + +
+ +
+
+

게시판 분류관리

+ +
+ +
+ + +
+ +

현재분류경로: 게시판리스트 > <%=get_bbsname(a_num)%> + <% + If ref_codeno <> "" then + + ref_codeno_arr = Split(ref_codeno, ";") + + for z=1 To ubound(ref_codeno_arr) + + ct_idx_str = replace(ref_codeno_arr(z),"C","") + ct_idx_str = replace(ct_idx_str,";","") + + + If ct_idx_str <> "" then + + sql = "Select ct_name from board_code where ct_idx=" & ct_idx_str + Set rs_3 = dbcon.execute( sql ) + If Not( rs_3.bof Or rs_3.eof ) then + ct_name_str = rs_3("ct_name") + End if + + + If UBound(ref_codeno_arr)-1 = z then + %> + > <%=ct_name_str%> + <% + else + + ref_ct_idx_str = ct_idx_str + %> + > <%=ct_name_str%> + <% + End if + End if + next + End if + + %> + +

+ + +
+
+ + + + + +
+ +
+ +
+ + +
    +
  • :
  • + +
  • + +
  • :
  • + +
  • + +
  • + +
  • + +
+ + +
+ +
+ +
+ + + + + + + +
+
+ + + + + + + + + + +
+ +
+ 분류관리 작성/수정 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <% + + If IsNull(list_data) Then +%> + + + + + + + + + + +<% + else + + For i = 0 To UBound(list_data, 2) + + '//필드갯수만큼 ($Query_Fields).가지고온다.. + Call arr2Value(Query_Fields, "list_data", i) + + if ct_chk = "Y" then + ct_chk_str = "사용" + else + ct_chk_str = "중지" + End if + + %> + + + + + + + + + + + + + + + + + + + <% + Next + End if + %> + + + +
분류관리 서식
선택순서분류이미지사용여부수정삭제
+ 순서 위로 이동순서 아래로 이동 + + + + + + + + <% If ct_file <> "" Then %> +
<%=ct_name%> 삭제
+ <% End if%> + + + +
<%=ct_chk_str%> + +
+
+ +
+ +
+ + +
+ + +
+
+
+
+ + +
+ + +
+
+ + + + + + +
+
+ + diff --git a/manager/content/03member/change_log.asp b/manager/content/03member/change_log.asp new file mode 100644 index 0000000..5c1624c --- /dev/null +++ b/manager/content/03member/change_log.asp @@ -0,0 +1,247 @@ + + + +<% +prepage = Request.ServerVariables("path_info") & "?" & Request.ServerVariables("query_string") +' 테이블 기본 환경설정 ******************************************************************************** + +table = "change_log" ' 테이블명 +idx_field = "idx" ' 기본키 +oreder_filed = "reg_date DESC, idx desc" ' 정렬기준 필드 +Query_Fields = "idx, m_id, reg_date, changeVal, field_type, write_id, write_ip, afterVal" ' 불러올 필드 + +v_pagesize = 20 ' 목록개수 +v_block = 10 ' 페이지개수 +' **************************************************************************************************** + + + +' ---------------조합 쿼리문------------------------------------ +v_search = inputvalue(request("p_search")) +v_keyword = inputvalue(request("p_keyword")) +Query_Where = "" '기본 검색 + +If v_keyword <> "" then + Query_Where = Query_Where & " and "&v_search&" like '%"&v_keyword&"%'" +End If +'' 조건 있을때 여기에 계속 추가 + +If Query_Where<>"" Then + Query_Where2 = " WHERE " & Mid(Query_Where,5) +End If + +Query_OrderBy = " ORDER BY "&oreder_filed + +' --------------------------------------------------------------- + + + +' ---------------------전체 레코드 수 뽑기---------------------------------------- +sql = "select count("& idx_field &") as "& idx_field &" from "& table & Query_Where2 +Set Rs = Dbcon.Execute (sql) +recordcount = rs(0) '이 전체레코드갯수를 이용해서 페이지갯수를 뽑아 낼것이다. +rs.close : Set rs = nothing +' --------------------------------------------------------------------------------- + + +v_totalpage = int((recordcount-1)/v_pagesize)+1 '전체덩어리갯수 +v_page = request("p_page") +If v_page="" Then + v_page = 0 +Else + v_page = Int(v_page) +End if + +If v_page = "" then + v_page = 1 +ElseIf v_page < 1 then + v_page = 1 +ElseIf v_page > v_totalpage then + v_page = v_totalpage +End If + + +' -----------------------------리스트 출력 쿼리문 생성----------------------------- +strSQL = " SELECT TOP "& v_pagesize &" "& Query_Fields &" FROM "& table &" WHERE "& idx_field &" NOT IN " +strSQL = strSQL & " ( SELECT TOP "& v_pagesize*(v_page-1) &" "& idx_field &" FROM "& table & Query_Where2 & Query_OrderBy &" ) " +strSQL = strSQL & Query_Where &" "& Query_OrderBy +Set rs = Dbcon.execute(strSQL) +If Not rs.eof Then + vData = rs.getrows() + vCnt = UBound(vData,2) +Else + vCnt = -1 +End If +rs.close : Set rs = Nothing +' --------------------------------------------------------------------------------- + + + +%> + +
+ +
+
+

충전내역

+
+ +
+ + +
+ + + +

충전된 내역

+ + +
+ +
+
+ +
    + +
  • +
  • +
  • +
  • +
  • +
+ +
+
+ +
+ +
+ 전체 <%=recordcount%>개 (페이지 <%=v_page%>/<%=v_totalpage%>) +
+ + +
+
+ + + + + + +
+ + +
+ 회원관리 수정/삭제/보기 + + + + + + + + + + + + + + + + + + + + + + + + +<% +If vCnt > -1 then ' ------ 내용이 있으면 리스트 출력 + + If v_page = 1 then + num = recordcount + else + num = recordcount - ((v_page - 1) * v_pagesize) + End If + + + For i=0 To vCnt + + Call arr2Value(Query_Fields, "vData", i) + If isnull(afterVal) Then + afterVal = "기록없음" + Else + afterVal = FormatNumber(afterVal,0) & "건" + End if + + +%> + + + + + + + + + + +<% + num = num - 1 + next + + +else ' 게시할 목록이 없다면 +%> + + + + + + + + + + +<% +End if +%> + +
회원관리 서식
번호대상자충전건수충전후 보유건수충전일시작업자
<%=num%><%=get_name(m_id) & " (" & m_id & ")"%><%=FormatNumber(changeVal,0)%>건<%=afterVal%><%=reg_date%> + <%=get_name(write_id) & " (" & write_id & ")"%> + <% + If write_ip <> "" Then + Response.write "
IP:" & write_ip + End if + %> +
+
+ + + + + +
+ <%page("change_log.asp")%> +
+ + + +
+ +
+ + +
+ + + + diff --git a/manager/content/03member/config.asp b/manager/content/03member/config.asp new file mode 100644 index 0000000..53d981a --- /dev/null +++ b/manager/content/03member/config.asp @@ -0,0 +1,18 @@ +<% +'페이지정보 ************************************************* +v_page = InputValue(request("p_page")) +v_block = InputValue(request("p_block")) +v_search = InputValue(request("p_search")) +v_keyword = InputValue(request("p_keyword")) +mode = InputValue(request("mode")) '-- a:관리자페이지 , u:일반유저페이지 +page_info = "p_page="&v_page&"&p_block="&v_block&"&p_search="&v_search&"&p_keyword="&v_keyword +' ************************************************************ + +' 권한정보 ************************************************************************************* +is_ad_cms = "Y" +is_read = "Y" +is_write = "Y" +is_delete = "Y" +is_reply = "Y" +' ************************************************************************************************** +%> \ No newline at end of file diff --git a/manager/content/03member/delete_ok.asp b/manager/content/03member/delete_ok.asp new file mode 100644 index 0000000..bcda088 --- /dev/null +++ b/manager/content/03member/delete_ok.asp @@ -0,0 +1,38 @@ + + + + + +<% + + +' 파라미터정보 ************************************************************************************* +m_num = InputValue(request("m_num")) +status = InputValue(request("status")) +' ************************************************************************************************** + + +If status = "totdel" then ' 다중삭제 + + chk = InputValue(Replace(request("chk")," ","")) + arr_chk = Split(chk,",") + + For i=0 To UBound(arr_chk) + sql = " delete from member where m_num = "&arr_chk(i) + Dbcon.execute sql + Next + +else ' 일반삭제 + + sql = " delete from member where m_num = "&m_num + Dbcon.execute sql + +End If + +'ViewCreateMember(); + +ok_url = "list.asp?"&page_info +Call loding ("0", ok_url) + + +%> \ No newline at end of file diff --git a/manager/content/03member/excel.asp b/manager/content/03member/excel.asp new file mode 100644 index 0000000..3f1ea83 --- /dev/null +++ b/manager/content/03member/excel.asp @@ -0,0 +1,66 @@ + + + +<% + +Response.ContentType = "application/vnd.ms-excel" +Response.AddHeader "Content-Disposition", "attachment; filename=member.xls" + + +a_num = request("a_num") +p_cate = request("p_cate") + +If p_cate<>"" Then + sql_where = " and b_cate="&p_cate +End If + +R_Fields_no = "m_id, m_pwd, m_name, g_menuname" + +sql = " select a.m_id, a.m_pwd, a.m_name, b.g_menuname as g_menuname, a.m_level " &_ + " from member a join member_group b on a.m_level=b.g_num "&_ + " ORDER BY a.m_level, a.m_id" +Set Rs = Dbcon.Execute (sql) +If Not rs.eof Then + vData = rs.getrows() + vCnt = UBound(vData,2) +Else + vCnt = -1 +End If +rs.close : Set rs = nothing +Dbcon.close : Set Dbcon = Nothing +%> + + + + + + + + + +<% + +If vCnt>-1 Then + + num = vCnt+1 + + For i=0 To vCnt + + Call arr2Value(R_Fields_no, "vData", i) +%> + + + + + + + +<% + + num = num -1 + next + +End if +%> + +
아이디비밀번호이름그룹
<%=m_id%><%=m_pwd%><%=m_name%><%=g_menuname%>
\ No newline at end of file diff --git a/manager/content/03member/level_ok.asp b/manager/content/03member/level_ok.asp new file mode 100644 index 0000000..9370ded --- /dev/null +++ b/manager/content/03member/level_ok.asp @@ -0,0 +1,42 @@ + + + + + +<% + + +' 파라미터정보 *********************************************** +status = InputValue(request("status")) + +m_level = InputValue(request("m_level")) +tot_m_level = InputValue(request("tot_m_level")) +m_num = InputValue(request("m_num")) +' ************************************************************ + + + +If status = "totlevel" Then ' 다중선택 + + chk = InputValue(Replace(request("chk")," ","")) + arr_chk = Split(chk,",") + + For i=0 To UBound(arr_chk) + sql = " Update member set m_level = '"&tot_m_level&"' Where m_num = "&arr_chk(i) + Dbcon.execute sql + Next + +else + + sql = " Update member set m_level = '"&m_level&"' Where m_num = "&m_num + Dbcon.execute sql + +End if + +Dbcon.close : Set Dbcon = Nothing + +ok_url = "list.asp?"&page_info +Call loding ("0", ok_url) + + +%> \ No newline at end of file diff --git a/manager/content/03member/list.asp b/manager/content/03member/list.asp new file mode 100644 index 0000000..d960c88 --- /dev/null +++ b/manager/content/03member/list.asp @@ -0,0 +1,320 @@ + + + +<% +prepage = Request.ServerVariables("path_info") & "?" & Request.ServerVariables("query_string") +' 테이블 기본 환경설정 ******************************************************************************** + +table = "member_view" ' 테이블명 +idx_field = "m_num" ' 기본키 +oreder_filed = "m_num DESC" ' 정렬기준 필드 +Query_Fields = "lvlname, m_num, m_id, m_name, m_lastdate, m_level, m_date, m_g_sms, m_mobile1, m_mobile2, m_mobile3" ' 불러올 필드 + +v_pagesize = 20 ' 목록개수 +v_block = 10 ' 페이지개수 +' **************************************************************************************************** + + + +' ---------------조합 쿼리문------------------------------------ +v_search = inputvalue(request("p_search")) +v_keyword = inputvalue(request("p_keyword")) +Query_Where = "" '기본 검색 + +If v_keyword <> "" then + Query_Where = Query_Where & " and "&v_search&" like '%"&v_keyword&"%'" +End If +'' 조건 있을때 여기에 계속 추가 + +If Query_Where<>"" Then + Query_Where2 = " WHERE " & Mid(Query_Where,5) +End If + +Query_OrderBy = " ORDER BY "&oreder_filed + +' --------------------------------------------------------------- + + + +' ---------------------전체 레코드 수 뽑기---------------------------------------- +sql = "select count("& idx_field &") as "& idx_field &" from "& table & Query_Where2 +Set Rs = Dbcon.Execute (sql) +recordcount = rs(0) '이 전체레코드갯수를 이용해서 페이지갯수를 뽑아 낼것이다. +rs.close : Set rs = nothing +' --------------------------------------------------------------------------------- + + +v_totalpage = int((recordcount-1)/v_pagesize)+1 '전체덩어리갯수 +v_page = request("p_page") +If v_page="" Then + v_page = 0 +Else + v_page = Int(v_page) +End if + +If v_page = "" then + v_page = 1 +ElseIf v_page < 1 then + v_page = 1 +ElseIf v_page > v_totalpage then + v_page = v_totalpage +End If + + +' -----------------------------리스트 출력 쿼리문 생성----------------------------- +strSQL = " SELECT TOP "& v_pagesize &" "& Query_Fields &" FROM "& table &" WHERE "& idx_field &" NOT IN " +strSQL = strSQL & " ( SELECT TOP "& v_pagesize*(v_page-1) &" "& idx_field &" FROM "& table & Query_Where2 & Query_OrderBy &" ) " +strSQL = strSQL & Query_Where &" "& Query_OrderBy +Set rs = Dbcon.execute(strSQL) +If Not rs.eof Then + vData = rs.getrows() + vCnt = UBound(vData,2) +Else + vCnt = -1 +End If +rs.close : Set rs = Nothing +' --------------------------------------------------------------------------------- + + + +%> + + + + +
+

+
+ +
+ +
+
+

회원 리스트

+
+ +
+ + +
+ + + +

가입된 회원 리스트

+ + +
+ +
+
+ +
    + +
  • +
  • +
  • +
  • +
  • +
+ +
+
+ +
+ +
+
+ +
+ 전체 <%=recordcount%>개 (페이지 <%=v_page%>/<%=v_totalpage%>) +
+ + +
+
+ + + + + + +
+ + +
+ 회원관리 수정/삭제/보기 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<% +If vCnt > -1 then ' ------ 내용이 있으면 리스트 출력 + + If v_page = 1 then + num = recordcount + else + num = recordcount - ((v_page - 1) * v_pagesize) + End If + + + For i=0 To vCnt + + Call arr2Value(Query_Fields, "vData", i) + + m_mobile = m_mobile1&m_mobile2&m_mobile3 + + +%> + + + + + + + + + + + + + + + + + +<% + num = num - 1 + next + + +else ' 게시할 목록이 없다면 +%> + + + + + + + + + + + + + +<% +End if +%> + +
회원관리 서식
선택번호아이디이름최근접속일가입일그룹남은건|충전충전
내역
수정삭제통계
<%=num%><%=m_id%><%=m_name%><%If m_mobile<>"" then%>

<%=m_mobile%>

<%End if%>
<%=left(m_lastdate,10)%><%=left(m_date,10)%><%=lvlname%> + <%=m_g_sms%> +

+ + [충전] +

+ +
+
+ +
+
    +
  • +
  • +
  • |  선택한 회원을 + 으로 +
  • +
  • +
+
+ + + +
+ <%page("list.asp")%> +
+ + + +
+ +
+ + +
+ + + + diff --git a/manager/content/03member/list_bak160419.asp b/manager/content/03member/list_bak160419.asp new file mode 100644 index 0000000..4558906 --- /dev/null +++ b/manager/content/03member/list_bak160419.asp @@ -0,0 +1,312 @@ + + + +<% +prepage = Request.ServerVariables("path_info") & "?" & Request.ServerVariables("query_string") +' 테이블 기본 환경설정 ******************************************************************************** + +table = "member_view" ' 테이블명 +idx_field = "m_num" ' 기본키 +oreder_filed = "m_num DESC" ' 정렬기준 필드 +Query_Fields = "lvlname, m_num, m_id, m_name, m_lastdate, m_level, m_date, m_g_sms, m_mobile1, m_mobile2, m_mobile3" ' 불러올 필드 + +v_pagesize = 20 ' 목록개수 +v_block = 10 ' 페이지개수 +' **************************************************************************************************** + + + +' ---------------조합 쿼리문------------------------------------ +v_search = inputvalue(request("p_search")) +v_keyword = inputvalue(request("p_keyword")) +Query_Where = "" '기본 검색 + +If v_keyword <> "" then + Query_Where = Query_Where & " and "&v_search&" like '%"&v_keyword&"%'" +End If +'' 조건 있을때 여기에 계속 추가 + +If Query_Where<>"" Then + Query_Where2 = " WHERE " & Mid(Query_Where,5) +End If + +Query_OrderBy = " ORDER BY "&oreder_filed + +' --------------------------------------------------------------- + + + +' ---------------------전체 레코드 수 뽑기---------------------------------------- +sql = "select count("& idx_field &") as "& idx_field &" from "& table & Query_Where2 +Set Rs = Dbcon.Execute (sql) +recordcount = rs(0) '이 전체레코드갯수를 이용해서 페이지갯수를 뽑아 낼것이다. +rs.close : Set rs = nothing +' --------------------------------------------------------------------------------- + + +v_totalpage = int((recordcount-1)/v_pagesize)+1 '전체덩어리갯수 +v_page = request("p_page") +If v_page="" Then + v_page = 0 +Else + v_page = Int(v_page) +End if + +If v_page = "" then + v_page = 1 +ElseIf v_page < 1 then + v_page = 1 +ElseIf v_page > v_totalpage then + v_page = v_totalpage +End If + + +' -----------------------------리스트 출력 쿼리문 생성----------------------------- +strSQL = " SELECT TOP "& v_pagesize &" "& Query_Fields &" FROM "& table &" WHERE "& idx_field &" NOT IN " +strSQL = strSQL & " ( SELECT TOP "& v_pagesize*(v_page-1) &" "& idx_field &" FROM "& table & Query_Where2 & Query_OrderBy &" ) " +strSQL = strSQL & Query_Where &" "& Query_OrderBy +Set rs = Dbcon.execute(strSQL) +If Not rs.eof Then + vData = rs.getrows() + vCnt = UBound(vData,2) +Else + vCnt = -1 +End If +rs.close : Set rs = Nothing +' --------------------------------------------------------------------------------- + + + +%> + + + + +
+

+
+ +
+ +
+
+

회원 리스트

+
+ +
+ + +
+ + + +

가입된 회원 리스트

+ + +
+ +
+
+ +
    + +
  • +
  • +
  • +
  • +
  • +
+ +
+
+ +
+ +
+
+ +
+ 전체 <%=recordcount%>개 (페이지 <%=v_page%>/<%=v_totalpage%>) +
+ + +
+
+ + + + + + +
+ + +
+ 회원관리 수정/삭제/보기 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<% +If vCnt > -1 then ' ------ 내용이 있으면 리스트 출력 + + If v_page = 1 then + num = recordcount + else + num = recordcount - ((v_page - 1) * v_pagesize) + End If + + + For i=0 To vCnt + + Call arr2Value(Query_Fields, "vData", i) + + +%> + + + + + + + + + + + + + + + + +<% + num = num - 1 + next + + +else ' 게시할 목록이 없다면 +%> + + + + + + + + + + + + + +<% +End if +%> + +
회원관리 서식
선택번호아이디이름최근접속일가입일그룹sms남은건|충전충전
내역
수정삭제
<%=num%><%=m_id%><%=m_name%>
(<%=m_mobile1&m_mobile2&m_mobile3%>)
<%=left(m_lastdate,10)%><%=left(m_date,10)%><%=lvlname%> + <%=m_g_sms%> |  + [충전] + +
+
+ +
+
    +
  • +
  • +
  • |  선택한 회원을 + 으로 +
  • +
  • +
+
+ + + +
+ <%page("list.asp")%> +
+ + + +
+ +
+ + +
+ + + + diff --git a/manager/content/03member/search_member.asp b/manager/content/03member/search_member.asp new file mode 100644 index 0000000..8aefd78 --- /dev/null +++ b/manager/content/03member/search_member.asp @@ -0,0 +1,140 @@ + + +<% + +skin = "blue" + +search_type = InputValue( request("search_type")) +search_keyword = InputValue( request("search_keyword")) +p_page_url = request("p_page_url") + + +If search_keyword <> "" then + + sql = " SELECT m_id, m_name, b.ct_name FROM member a LEFT OUTER JOIN member_div b ON a.m_div1=b.ct_idx WHERE m_level = 52 and " + If search_type = "" then + sql = sql & " m_name like '%"&search_keyword&"%' or m_id like '%"&search_keyword&"%' or a.m_div1 in ( SELECT ct_idx FROM member_div WHERE ct_name like '%"&search_keyword&"%') " + ElseIf search_type = "sh_m_temp1" then + sql = sql & " a.m_div1 in ( SELECT ct_idx FROM member_div WHERE ct_name like '%"&search_keyword&"%') " + else + sql = sql & " "&replace(search_type, "sh_", "")&" like '%"&search_keyword&"%'" + End If + + + Set Rs = Dbcon.Execute (sql) + If Not rs.eof Then + vData = rs.getrows() + vCnt = UBound(vData,2) + Else + vCnt = -1 + End If + rs.close : Set rs = nothing + +End if + + +%> + + + + + + + + + + +
+
+ +
+
+
+
    +
  • + + + +
  • +
+
+
+ + + + + + + + + + + + + + + + + + + +<% + If search_keyword = "" then +%> + + + +<% + Else + + For i=0 To vCnt + m_id = vData(0,i) + m_name = vData(1,i) + ct_name = vData(2,i) +%> + + + + + + + +<% + next + End if +%> +
회원관리 서식
번호아이디이름부서선택
+ 회원을 검색하세요. +
<%=i+1%><%=m_id%><%=m_name%><%=ct_name%>선택
+
+
+ +
+ + diff --git a/manager/content/03member/search_member_del.asp b/manager/content/03member/search_member_del.asp new file mode 100644 index 0000000..6a06f14 --- /dev/null +++ b/manager/content/03member/search_member_del.asp @@ -0,0 +1,18 @@ + + + +<% + +p_page_m_id = InputValue(request("p_page_m_id")) +p_page_url = Lcase( InputValue(request("p_page_url")) ) +prepage = request("prepage") + + +sql = "delete from page_master where p_page_url = '"&p_page_url&"'" +Dbcon.execute sql +Dbcon.close : Set Dbcon = nothing + +response.redirect prepage +resposne.End + +%> \ No newline at end of file diff --git a/manager/content/03member/search_member_ok.asp b/manager/content/03member/search_member_ok.asp new file mode 100644 index 0000000..e551ce0 --- /dev/null +++ b/manager/content/03member/search_member_ok.asp @@ -0,0 +1,36 @@ + + +<% + +p_page_m_id = InputValue(request("p_page_m_id")) +p_page_url = lcase( InputValue(request("p_page_url")) ) + + +sql = "select p_num from page_master where p_page_url = '"&p_page_url&"'" +Set Rs = Dbcon.Execute (sql) + +If rs.eof Then + Call InsertQuery("p_page_m_id, p_page_url", "page_master") +else + Call UpdateQuery("p_page_m_id", "page_master", "where p_page_url = '"&p_page_url&"'") +End If +rs.close : Set rs = Nothing +Dbcon.close : Set Dbcon = nothing +%> + + + + + + + + + diff --git a/manager/content/03member/smschange.asp b/manager/content/03member/smschange.asp new file mode 100644 index 0000000..2e1bc59 --- /dev/null +++ b/manager/content/03member/smschange.asp @@ -0,0 +1,75 @@ + + +<% +security_ad_cms() + +Dim value, m_id, prepage + +value = inputValue( request.queryString("value") ) +m_id = inputValue( request.queryString("m_id") ) +prepage = inputValue( request.queryString("prepage") ) + +If value = "" Then value = "0" + +If session("ss_m_id") <> "" Then + + + sql = "update member set m_g_sms = m_g_sms + '" & value & "' where m_id = '" & m_id & "'" + 'Response.write sql + 'Response.end + dbcon.execute sql + + sql = "select m_g_sms from member where m_id = '" & m_id & "'" + Set rs = dbcon.execute( sql ) + If rs.bof Or rs.eof Then + nowcount = 0 + Else + nowcount = rs(0) + End If + Set rs = nothing + + Call managerJob(session("ss_m_id"), session("ss_m_name"), "sms충전 " & value & "건 (ID:" & m_id & ")") + + '충전내역 등록 + reg_date = setDate("Y-m-d H:i:s") + changeVal = value + field_type = "1" + write_id = session("ss_m_id") + write_ip = remoteIp() + afterVal = nowcount + r_fields_i = "m_id, reg_date, changeVal, field_type, write_id, write_ip, afterVal" + Call InsertQuery( r_fields_i, "change_log" ) + +End if + +dbcon.close +Set dbcon = nothing + +Call goUrl( prepage ) + + + +Function remoteIp() + Dim ip + ip = Request.ServerVariables("HTTP_X_FORWARDED_FOR") + if isnull( ip ) or ip = "" or ip = "unknown" then + ip = Request.ServerVariables("Proxy-Client-IP") + End if + if isnull( ip ) or ip = "" or ip = "unknown" then + ip = Request.ServerVariables("WL-Proxy-Client-IP") + End if + if isnull( ip ) or ip = "" or ip = "unknown" then + ip = Request.ServerVariables("HTTP_CLIENT_IP") + End if + if isnull( ip ) or ip = "" or ip = "unknown" then + ip = Request.ServerVariables("HTTP_X_FORWARDED_FOR") + End If + if isnull( ip ) or ip = "" or ip = "unknown" then + ip = Request.ServerVariables("HTTP_SOURCEIP") + End if + if isnull( ip ) or ip = "" or ip = "unknown" then + ip = request.ServerVariables("REMOTE_ADDR") + End if + remoteIp = ip +End function +%> \ No newline at end of file diff --git a/manager/content/03member/write.asp b/manager/content/03member/write.asp new file mode 100644 index 0000000..aeb3e61 --- /dev/null +++ b/manager/content/03member/write.asp @@ -0,0 +1,474 @@ + + + + +<% + +if is_write <> "Y" Then + Call Back_back("쓰기권한이 없습니다.") +End If + + +' 파라미터정보 ************************************************************************************* +m_num = InputValue(request("m_num")) +'************************************************************************************************** + + + +If m_num = "" then + '등록 + + b_l_sdate = getDateFm(now,4) + b_l_edate = getDateFm(now,4) + + ' 자동가입방지 + randomize + autoimg_str = Int((5 * Rnd) + 1) + '$autoimg_str = Int((5 * Rnd) + 1); + '01.png = DF4PH3 + '02.png = HS42YP + '03.png = S8VP3X + '04.png = N4CW2U + '05.png = 9SK6GR + + + '$autoimg_str = "1"; + m_pwd_type = "password" + reset_url = "write.asp" + is_title_str = "신규 회원 생성" + + +else + '수정 + + + '레코드필드 + R_Fields = "m_num, m_id, m_pwd, m_name, m_nickname, m_jumin, m_zipcode, m_addr1, m_addr2, m_phone1, m_phone2, m_phone3, m_email, m_mobile1, m_mobile2, m_mobile3, m_fax1, m_fax2, m_fax3, m_homepage, m_date, m_modymate, m_lastdate, m_chuchun, m_ip, m_level, m_autoimg_str, m_temp1, m_temp2, m_temp3, m_sex, m_birth, m_sms, m_mailing, m_marry, m_marrydate, m_job, m_text, m_secede_date, m_secede_reason" + + R_Fields = R_Fields & ", bdm_idx" + + R_tablename_str = "member" + + R_WHERE_str = " WHERE m_num=" & m_num + + Call SelectQuery(R_Fields, R_tablename_str, R_WHERE_str) + + + disabled_opt = "disabled ='disabled'" + m_pwd_type = "text" + reset_url = "list.asp?" & page_info + is_title_str = "회원 정보 수정" + + + If IsNull(m_birth) Then m_birth = "" + If IsNull(m_marrydate) Then m_marrydate = "" + arr_birth = Split(m_birth,"-") + arr_marrydate = Split(m_marrydate,"-") + ReDim preserve arr_birth(2), arr_marrydate(2) + + m_birth_Y = arr_birth(0) + m_birth_M = arr_birth(1) + m_birth_D = arr_birth(2) + + m_marrydate_Y = arr_marrydate(0) + m_marrydate_M = arr_marrydate(1) + m_marrydate_D = arr_marrydate(2) + + m_jumin1 = left(m_jumin,6) + m_jumin2 = right(m_jumin,7) + +End if + + +'레코드필드 +R_Fields = "mc_idx, mc_addr, mc_nickname, mc_phone, mc_mobile, mc_email, mc_homepage, mc_joinlevel, mc_wdate, mc_jumin, mc_mailing, mc_sms, mc_sex, mc_birth, mc_fax, mc_marry, mc_marrydate, mc_job, mc_text, mc_nickname_req, mc_jumin_req, mc_sex_req, mc_birth_req, mc_phone_req, mc_fax_req, mc_mobile_req, mc_email_req, mc_addr_req, mc_homepage_req, mc_marry_req, mc_marrydate_req, mc_job_req, mc_text_req" +R_tablename_str = "member_config" +R_WHERE_str = " WHERE mc_idx=1" +Call SelectQuery(R_Fields, R_tablename_str, R_WHERE_str) + + +%> + + + + +
+ +
+
+

<%=is_title_str%>

+
+ +
+ + +
+ + +
+ +
+ + + +
+ + +

회원 기본정보 * 표시가 된 곳은 필수 항목입니다.

+
+ 회원 기본정보 서식 작성 + + + + + + + + + + + + + + + + + + + + + <%if m_num = "" then%> + + + + + <%end if%> + + + <%if mc_nickname= "Y" then %> + + + + + <%end if%> + + <%if mc_jumin = "Y" then %> + + + + + <%end if%> + + + + + + + <%if mc_sex= "Y" then %> + + + + + <%end if%> + + <%if mc_birth= "Y" then %> + + + + + <%end if%> + + <%if mc_email= "Y" then %> + + + + + <%end if%> + + <%if mc_mailing= "Y" then %> + + + + + <%end if%> + + <%If mc_phone = "Y" then %> + + + + + <%end if%> + + <%If mc_mobile = "Y" then %> + + + + + <%end if%> + + <%if mc_sms= "Y" then %> + + + + + <%end if%> + + <%If mc_fax = "Y" then %> + + + + + <%end if%> + + + <%If mc_addr = "Y" then %> + + + + + <%end if%> + + <%if mc_marry= "Y" then %> + + + + + <%end if%> + + + <%if mc_marrydate= "Y" then %> + + + + + <%end if%> + + + <%if mc_homepage= "Y" then %> + + + + + <%end if%> + + <%if mc_job= "Y" then %> + + + + + <%end if%> + + <%if mc_text= "Y" then %> + + + + + <%end if%> + + + <%If m_num = "" then%> + + + + + <%end if%> +
기능정보 서식
/> * 한글만 사용하실 수 있습니다.
/> * 10자 이내의 영문/숫자만 사용하실 수 있습니다.
* 비밀번호를 한번 더 입력하세요.
* 10자이내의 한글만 사용하실 수 있습니다.
- * 숫자만 사용하실 수 있습니다.
+ +
<%if mc_sex_req= "Y" then %>*<%end if%> 성별 + + checked="checked" <%end if%> /> + + checked="checked" <%end if%> /> +
+ 년 + 월 + 일 +
+ + * @포함한 이메일주소를 정확히 입력하세요. +
* 메일링 서비스 + + checked="checked" <%end if%> /> + + checked="checked" <%end if%> /> +
- -
- -
* SMS 서비스 + + checked="checked" <%end if%>/> + + checked="checked" <%end if%> /> +
- -
+ +
+ + + + + - + + +
+ +
+
+ +
+ + + + + +
+
+ : + + + 예)내당동, 수성구 +
+
+ ↓ 기본 주소 - 동이름 검색 결과 목록입니다. 목록중 한개를 선택하세요. + + +
+ +
+
+ + + + + + +
* 결혼여부 + + checked="checked" <%end if%> /> + + checked="checked" <%end if%> /> +
+ 년 + 월 + 일 +
자동가입방지   * 왼쪽에 보이는 숫자 및 문자를 모두 입력하세요.
+
+ + + + +
+
+
+ +
+ +
+ + +
+ + + +
+
+ +
+
+ + + + diff --git a/manager/content/03member/write_bak0926.asp b/manager/content/03member/write_bak0926.asp new file mode 100644 index 0000000..20f1102 --- /dev/null +++ b/manager/content/03member/write_bak0926.asp @@ -0,0 +1,371 @@ + + + +<% + +if is_write <> "Y" Then + Call Back_back("쓰기권한이 없습니다.") +End If + + +' 파라미터정보 ************************************************************************************* +m_num = InputValue(request("m_num")) +' ************************************************************************************************** + + +If m_num = "" then ' 등록 + + b_l_sdate = getDateFm(now,4) + b_l_edate = getDateFm(now,4) + + ' 자동가입방지 + randomize + autoimg_str = Int((5 * Rnd) + 1) + ' 01.png = DF4PH3 + ' 02.png = HS42YP + ' 03.png = S8VP3X + ' 04.png = N4CW2U + ' 05.png = 9SK6GR + + + ' $autoimg_str = "1"; + m_pwd_type = "password" + reset_url = "write.asp" + is_title_str = "신규 회원 생성" + + m_div = "0||0" + + +else ' 수정 + + + ' 레코드필드 + R_Fields = "m_num, m_id, m_pwd, m_name, m_nickname, m_jumin, m_zipcode, m_addr1, m_addr2, m_phone1, m_phone2, m_phone3, m_email, m_mobile1, m_mobile2, m_mobile3, m_fax1, m_fax2, m_fax3, m_homepage, m_date, m_modymate, m_lastdate, m_chuchun, m_ip, m_level,m_autoimg_str, m_temp1, m_temp2, m_temp3" ', m_div1, m_div2, m_rank, m_work, m_etc, m_subname" + + R_tablename_str = "member" + + R_WHERE_str = " WHERE m_num=" & m_num + + Call SelectQuery(R_Fields, R_tablename_str, R_WHERE_str) + + disabled_opt = "disabled ='disabled'" + m_pwd_type = "text" + reset_url = "list.asp?"&page_info + is_title_str = "회원 정보 수정" + + m_div = m_div1&"||"&m_div2 + + +End if + + +' 회원환경설정 +R_Fields = "mc_idx, mc_agree, mc_addr, mc_nickname, mc_phone, mc_mobile, mc_email, mc_homepage, mc_joinlevel, mc_wdate, mc_agree_str, mc_jumin" + +R_tablename_str = "member_config" + +R_WHERE_str = " WHERE mc_idx=1" + +Call SelectQuery(R_Fields, R_tablename_str, R_WHERE_str) + + +%> + + + + +
+ +
+
+

<%=is_title_str%>

+
+ +
+ + +
+ + +
+ +
+ + + + +
+ + +

회원 기본정보 * 표시가 된 곳은 필수 항목입니다.

+
+ 회원 기본정보 서식 작성 + + + + + + + + + + + <%If mc_jumin = "Y" then%> + + + + + <%End if%> + + + + + + + + + <%If m_num = "" then%> + + + + + <%End if%> + + + + + + + <%If mc_homepage = "Y" Then %> + + + + + <%End if%> + + <%If mc_addr = "Y" Then %> + + + + + <% End if%> + + <%If mc_nickname = "Y" then%> + + + + + <%End if%> + + <%If mc_phone = "Y" Then %> + + + + + <%End if%> + + <%If mc_mobile = "Y" Then %> + + + + + <%End if%> + + <%If mc_email = "Y" then%> + + + + + <%End if%> + + + + <%If m_num = "" Then %> + + + + + <%End if%> +
기능정보 서식
/> * 한글만 사용하실 수 있습니다.
- * 숫자만 사용하실 수 있습니다.
/> * 10자 이내의 영문/숫자만 사용하실 수 있습니다.
* 비밀번호를 한번 더 입력하세요.
+ +
+ +
+ +
+ + + + + - + + +
+ +
+
+ +
+ + + + + +
+
: + + + 예)내당동, 수성구 +
+
+ ↓ 기본 주소 - 동이름 검색 결과 목록입니다. 목록중 한개를 선택하세요. + + +
+ +
+
+ + + + + + +
* 10자이내의 한글만 사용하실 수 있습니다.
- -
- -
* @포함한 이메일주소를 정확히 입력하세요.
자동가입방지   * 왼쪽에 보이는 숫자 및 문자를 모두 입력하세요.
+
+ + + + +
+
+
+ +
+ +
+ + +
+ + + +
+
+ +
+
+ + + + diff --git a/manager/content/03member/write_ok.asp b/manager/content/03member/write_ok.asp new file mode 100644 index 0000000..7bc6bed --- /dev/null +++ b/manager/content/03member/write_ok.asp @@ -0,0 +1,144 @@ + + + + + +<% + +R_Fields = "m_num, m_id, m_pwd, m_name, m_nickname, m_jumin1, m_jumin2, m_zip1, m_zip2, m_addr1, m_addr2, m_phone1, m_phone2, m_phone3, m_email, m_mobile1, m_mobile2, m_mobile3, m_fax1, m_fax2, m_fax3, m_homepage, m_autoimg_str, m_temp1, m_temp2, m_temp3, m_secede_date, m_point, m_sex, m_birth_Y, m_birth_M, m_birth_D, m_sms, m_mailing, m_marry, m_marrydate_Y, m_marrydate_M, m_marrydate_D, m_job, m_text, autoimg_str, m_recom_id, m_level, bdm_idx" + +Call RequestAll (R_Fields, "") + +m_text = InputValue2(request("m_text")) + + +'회원환경설정 +R_Fields = "mc_idx, mc_addr, mc_nickname, mc_phone, mc_mobile, mc_email, mc_homepage, mc_joinlevel, mc_wdate, mc_jumin, mc_mailing, mc_sms, mc_sex, mc_birth, mc_fax, mc_marry, mc_marrydate, mc_job, mc_text, mc_recom, mc_recom_point, mc_new_point" +R_tablename_str = "member_config" +R_WHERE_str = " WHERE mc_idx=1" +Call SelectQuery(R_Fields, R_tablename_str, R_WHERE_str) + + + +if mc_jumin = "Y" then m_jumin = m_jumin1 & m_jumin2 +if mc_addr = "Y" then m_zipcode = m_zip1 & m_zip2 +if mc_birth = "Y" then m_birth = m_birth_Y & "-" & Right("00"&m_birth_M,2) & "-" & Right("00"&m_birth_D,2) +if mc_marrydate = "Y" then m_marrydate = m_marrydate_Y & "-" & Right("00"&m_marrydate_M,2) & "-" & Right("00"&m_marrydate_D,2) + +m_temp3 = "0" '탈퇴여부 + + + + +if m_num = "" then '저장 + + + ' 자동가입방지 체크 + ' ***************************************** + Select Case autoimg_str + case 1 : autoimg_chk = "DF4PH3" + case 2 : autoimg_chk = "HS42YP" + case 3 : autoimg_chk = "S8VP3X" + case 4 : autoimg_chk = "N4CW2U" + case 5 : autoimg_chk = "9SK6GR" + End select + + + If (ucase(autoimg_chk) <> ucase(m_autoimg_str)) Then + Call Back_back("자동가입방지입력값이 동일하지 않습니다.") + End if + ' ***************************************** + + + If mc_jumin = "Y" then + + ' 동일주민번호 체크 + ' ***************************************** + sql = "select count(m_num) as jumin_chk from member WHERE m_jumin='"& m_jumin &"'" + Set Rs = Dbcon.Execute (sql) + If rs("jumin_chk") Then + Call Back_back("동일한 주민번호가 존재합니다.") + End If + rs.close : Set rs = nothing + ' ***************************************** + End if + + + + ' 동일아이디 체크 + ' ***************************************** + sql = "select count(m_num) as id_chk from member where m_id='"&m_id&"'" + Set Rs = Dbcon.Execute (sql) + If rs("id_chk") Then + Call Back_back("동일한 아이디가 존재합니다.") + End If + rs.close : Set rs = nothing + ' ***************************************** + + + R_Fields_i = "m_id, m_pwd, m_name, m_date, m_modymate, m_lastdate, m_chuchun, m_ip, m_level, m_autoimg_str, m_temp1, m_temp2, m_temp3, bdm_idx" + + if mc_nickname="Y" then R_Fields_i = R_Fields_i& ", m_nickname" + if mc_jumin="Y" then R_Fields_i = R_Fields_i& ", m_jumin" + if mc_addr="Y" then R_Fields_i = R_Fields_i& ", m_zipcode, m_addr1, m_addr2" + if mc_phone="Y" then R_Fields_i = R_Fields_i& ", m_phone1, m_phone2, m_phone3" + if mc_email="Y" then R_Fields_i = R_Fields_i& ", m_email" + if mc_mobile="Y" then R_Fields_i = R_Fields_i& ", m_mobile1, m_mobile2, m_mobile3" + if mc_fax="Y" then R_Fields_i = R_Fields_i& ", m_fax1, m_fax2, m_fax3" + if mc_sex="Y" then R_Fields_i = R_Fields_i& ", m_sex" + if mc_birth="Y" then R_Fields_i = R_Fields_i& ", m_birth" + if mc_sms="Y" then R_Fields_i = R_Fields_i& ", m_sms" + if mc_mailing="Y" then R_Fields_i = R_Fields_i& ", m_mailing" + if mc_marry="Y" then R_Fields_i = R_Fields_i& ", m_marry" + if mc_marrydate="Y" then R_Fields_i = R_Fields_i& ", m_marrydate" + if mc_job="Y" then R_Fields_i = R_Fields_i& ", m_job" + if mc_text="Y" then R_Fields_i = R_Fields_i& ", m_text" + if mc_homepage="Y" then R_Fields_i = R_Fields_i& ", m_homepage" + + + m_date = getDateFm(now,3) + m_modymate = getDateFm(now,3) + m_ip = Request.ServerVariables("Remote_host") + + + Call InsertQuery (R_Fields_i, "member") + + ' ─────── 회원가입 메일 발송 ─────── +' call mail_new_member(m_id) + ' ────────────────────────────────── + + 'If ok_url = "" Then ok_url = "write.asp" + If ok_url = "" Then ok_url = "list.asp" + + +Else '수정 + + R_Fields_u = "m_pwd, m_modymate, m_temp1, m_temp2, m_temp3, m_level, bdm_idx" + + if mc_nickname="Y" then R_Fields_u = R_Fields_u & ", m_nickname" + if mc_addr="Y" then R_Fields_u = R_Fields_u & ", m_zipcode, m_addr1, m_addr2" + if mc_phone="Y" then R_Fields_u = R_Fields_u & ", m_phone1, m_phone2, m_phone3" + if mc_email="Y" then R_Fields_u = R_Fields_u & ", m_email" + if mc_mobile="Y" then R_Fields_u = R_Fields_u & ", m_mobile1, m_mobile2, m_mobile3" + if mc_fax="Y" then R_Fields_u = R_Fields_u & ", m_fax1, m_fax2, m_fax3" + if mc_sex="Y" then R_Fields_u = R_Fields_u & ", m_sex" + if mc_birth="Y" then R_Fields_u = R_Fields_u & ", m_birth" + if mc_sms="Y" then R_Fields_u = R_Fields_u & ", m_sms" + if mc_mailing="Y" then R_Fields_u = R_Fields_u & ", m_mailing" + if mc_marry="Y" then R_Fields_u = R_Fields_u & ", m_marry" + if mc_marrydate="Y" then R_Fields_u = R_Fields_u & ", m_marrydate" + if mc_job="Y" then R_Fields_u = R_Fields_u & ", m_job" + if mc_text="Y" then R_Fields_u = R_Fields_u & ", m_text" + if mc_homepage="Y" then R_Fields_u = R_Fields_u & ", m_homepage" + if mc_jumin="Y" and m_jumin<>"" Then R_Fields_u = R_Fields_u& ", m_jumin" + + m_modymate = getDateFm(now,3) + + Call UpdateQuery (R_Fields_u, "member", "where m_num=" & m_num) + + If ok_url = "" Then ok_url = "list.asp?m_num=" & m_num&"&"&page_info + +End if +Call loding ("0",ok_url) + +%> diff --git a/manager/content/03member/write_ok_bak0926.asp b/manager/content/03member/write_ok_bak0926.asp new file mode 100644 index 0000000..550e60f --- /dev/null +++ b/manager/content/03member/write_ok_bak0926.asp @@ -0,0 +1,112 @@ + + + + + +<% + +R_Fields = "m_num, m_id, m_pwd, m_name, m_nickname, m_jumin1, m_jumin2, m_zip1, m_zip2, m_addr1, m_addr2, m_phone1, m_phone2, m_phone3, m_email, m_mobile1, m_mobile2, m_mobile3, m_fax1, m_fax2, m_fax3, m_homepage, m_modymate, m_lastdate, m_chuchun, m_ip, m_level, m_autoimg_str, m_temp1, m_temp2, m_temp3, autoimg_str, m_div, m_rank, m_work, m_etc, m_subname" + +Call RequestAll (R_Fields, "") + + +m_jumin = m_jumin1 & m_jumin2 +m_zipcode = m_zip1 & m_zip2 + +arr_m_div = Split(m_div,"||") +m_div1 = arr_m_div(0) +m_div2 = arr_m_div(1) + + + +' 회원환경설정 +R_Fields = "mc_idx, mc_agree, mc_addr, mc_nickname, mc_phone, mc_mobile, mc_email, mc_homepage, mc_joinlevel, mc_wdate, mc_agree_str, mc_jumin" + +R_tablename_str = "member_config" + +R_WHERE_str = " WHERE mc_idx=1" + +Call SelectQuery(R_Fields, R_tablename_str, R_WHERE_str) + + + + +if m_num = "" then ' 저장 + + + ' 자동가입방지 체크 + ' ***************************************** + Select Case autoimg_str + case 1 : autoimg_chk = "DF4PH3" + case 2 : autoimg_chk = "HS42YP" + case 3 : autoimg_chk = "S8VP3X" + case 4 : autoimg_chk = "N4CW2U" + case 5 : autoimg_chk = "9SK6GR" + End select + + + If (ucase(autoimg_chk) <> ucase(m_autoimg_str)) Then + Call Back_back("자동가입방지입력값이 동일하지 않습니다.") + End if + ' ***************************************** + + + + If mc_jumin = "Y" then + + ' 동일주민번호 체크 + ' ***************************************** + sql = "select count(m_num) as jumin_chk from member WHERE m_jumin='"& m_jumin &"'" + Set Rs = Dbcon.Execute (sql) + If rs("jumin_chk") Then + Call Back_back("동일한 주민번호가 존재합니다.") + End If + rs.close : Set rs = nothing + ' ***************************************** + End if + + + + ' 동일아이디 체크 + ' ***************************************** + sql = "select count(m_num) as id_chk from member where m_id='"&m_id&"'" + Set Rs = Dbcon.Execute (sql) + If rs("id_chk") Then + Call Back_back("동일한 아이디가 존재합니다.") + End If + rs.close : Set rs = nothing + ' ***************************************** + + + R_Fields_i = "m_id, m_pwd, m_name, m_nickname, m_jumin, m_zipcode, m_addr1, m_addr2, m_phone1, m_phone2, m_phone3, m_email, m_mobile1, m_mobile2, m_mobile3, m_fax1, m_fax2, m_fax3, m_homepage, m_date, m_modymate, m_lastdate, m_chuchun, m_ip, m_level,m_autoimg_str, m_temp1, m_temp2, m_temp3,m_div1, m_div2, m_rank, m_work, m_etc, m_subname" + + m_date = getDateFm(now,3) + m_modymate = getDateFm(now,3) + m_ip = Request.ServerVariables("Remote_host") + + + Call InsertQuery (R_Fields_i, "member") + + ok_url = "write.asp" + + +else ' 수정 + + + R_Fields_u = "m_name, m_pwd, m_nickname, m_zipcode, m_addr1, m_addr2, m_phone1, m_phone2, m_phone3, m_email, m_mobile1, m_mobile2, m_mobile3, m_fax1, m_fax2, m_fax3, m_homepage, m_modymate, m_temp1, m_temp2, m_temp3, m_level, m_div1, m_div2, m_rank, m_work, m_etc, m_subname" + + m_modymate = getDateFm(now,3) + + Call UpdateQuery (R_Fields_u, "member", "where m_num="&m_num) + + ok_url = "list.asp?m_num="&m_num&"&"&page_info + +End if + +'ViewCreateMember() + +Dbcon.close : Set Dbcon = nothing + +Call loding ("0",ok_url) + +%> \ No newline at end of file diff --git a/manager/content/03member/write_ui.asp b/manager/content/03member/write_ui.asp new file mode 100644 index 0000000..2447de9 --- /dev/null +++ b/manager/content/03member/write_ui.asp @@ -0,0 +1,561 @@ + + + + +<% + +if is_write <> "Y" Then + Call Back_back("쓰기권한이 없습니다.") +End If + + +' 파라미터정보 ************************************************************************************* +m_num = InputValue(request("m_num")) +'************************************************************************************************** + + + +If m_num = "" then + '등록 + + b_l_sdate = getDateFm(now,4) + b_l_edate = getDateFm(now,4) + + ' 자동가입방지 + randomize + autoimg_str = Int((5 * Rnd) + 1) + '$autoimg_str = Int((5 * Rnd) + 1); + '01.png = DF4PH3 + '02.png = HS42YP + '03.png = S8VP3X + '04.png = N4CW2U + '05.png = 9SK6GR + + + '$autoimg_str = "1"; + m_pwd_type = "password" + reset_url = "write.asp" + is_title_str = "신규 회원 생성" + + +else + '수정 + + + '레코드필드 + R_Fields = "m_num, m_id, m_pwd, m_name, m_nickname, m_jumin, m_zipcode, m_addr1, m_addr2, m_phone1, m_phone2, m_phone3, m_email, m_mobile1, m_mobile2, m_mobile3, m_fax1, m_fax2, m_fax3, m_homepage, m_date, m_modymate, m_lastdate, m_chuchun, m_ip, m_level, m_autoimg_str, m_temp1, m_temp2, m_temp3, m_sex, m_birth, m_sms, m_mailing, m_marry, m_marrydate, m_job, m_text, m_secede_date, m_secede_reason" + + R_Fields = R_Fields & ", bdm_idx" + + R_tablename_str = "member" + + R_WHERE_str = " WHERE m_num=" & m_num + + Call SelectQuery(R_Fields, R_tablename_str, R_WHERE_str) + + + disabled_opt = "disabled ='disabled'" + m_pwd_type = "text" + reset_url = "list.asp?" & page_info + is_title_str = "회원 정보 수정" + + + If IsNull(m_birth) Then m_birth = "" + If IsNull(m_marrydate) Then m_marrydate = "" + arr_birth = Split(m_birth,"-") + arr_marrydate = Split(m_marrydate,"-") + ReDim preserve arr_birth(2), arr_marrydate(2) + + m_birth_Y = arr_birth(0) + m_birth_M = arr_birth(1) + m_birth_D = arr_birth(2) + + m_marrydate_Y = arr_marrydate(0) + m_marrydate_M = arr_marrydate(1) + m_marrydate_D = arr_marrydate(2) + + m_jumin1 = left(m_jumin,6) + m_jumin2 = right(m_jumin,7) + +End if + + +'레코드필드 +R_Fields = "mc_idx, mc_addr, mc_nickname, mc_phone, mc_mobile, mc_email, mc_homepage, mc_joinlevel, mc_wdate, mc_jumin, mc_mailing, mc_sms, mc_sex, mc_birth, mc_fax, mc_marry, mc_marrydate, mc_job, mc_text, mc_nickname_req, mc_jumin_req, mc_sex_req, mc_birth_req, mc_phone_req, mc_fax_req, mc_mobile_req, mc_email_req, mc_addr_req, mc_homepage_req, mc_marry_req, mc_marrydate_req, mc_job_req, mc_text_req" +R_tablename_str = "member_config" +R_WHERE_str = " WHERE mc_idx=1" +Call SelectQuery(R_Fields, R_tablename_str, R_WHERE_str) + + + + +'최상위부서 조회 +sql = "select bdm_idx, bdm_menuname from bd_menu_page where bdm_chk = 'Y' and bdm_ref=0 order by bdm_code" +Set rs = dbcon.execute( sql ) +If rs.bof Or rs.eof Then + buseo_data1 = null +Else + buseo_data1 = rs.getrows +End If +Set rs = Nothing +%> + + + + +
+ +
+
+

<%=is_title_str%>

+
+ +
+ + +
+ + +
+ +
+ + + +
+ + +

회원 기본정보 * 표시가 된 곳은 필수 항목입니다.

+
+ 회원 기본정보 서식 작성 + + + + + + + + + + + + + + + + + + + + + <%if m_num = "" then%> + + + + + <%end if%> + + + <%if mc_nickname= "Y" then %> + + + + + <%end if%> + + <%if mc_jumin = "Y" then %> + + + + + <%end if%> + + + + + + + + + + + + <%if mc_sex= "Y" then %> + + + + + <%end if%> + + <%if mc_birth= "Y" then %> + + + + + <%end if%> + + <%if mc_email= "Y" then %> + + + + + <%end if%> + + <%if mc_mailing= "Y" then %> + + + + + <%end if%> + + <%If mc_phone = "Y" then %> + + + + + <%end if%> + + <%If mc_mobile = "Y" then %> + + + + + <%end if%> + + <%if mc_sms= "Y" then %> + + + + + <%end if%> + + <%If mc_fax = "Y" then %> + + + + + <%end if%> + + + <%If mc_addr = "Y" then %> + + + + + <%end if%> + + <%if mc_marry= "Y" then %> + + + + + <%end if%> + + + <%if mc_marrydate= "Y" then %> + + + + + <%end if%> + + + <%if mc_homepage= "Y" then %> + + + + + <%end if%> + + <%if mc_job= "Y" then %> + + + + + <%end if%> + + <%if mc_text= "Y" then %> + + + + + <%end if%> + + + <%If m_num = "" then%> + + + + + <%end if%> +
기능정보 서식
/> * 한글만 사용하실 수 있습니다.
/> * 10자 이내의 영문/숫자만 사용하실 수 있습니다.
* 비밀번호를 한번 더 입력하세요.
* 10자이내의 한글만 사용하실 수 있습니다.
- * 숫자만 사용하실 수 있습니다.
+ +
+ +<% +If Not( isnull(buseo_data1) ) Then + For i = 0 To ubound(buseo_data1, 2) + p_bdm_idx = buseo_data1(0, i) + p_bdm_menuname = buseo_data1(1, i) +%> + +<% + next +End if +%> + + + +
<%if mc_sex_req= "Y" then %>*<%end if%> 성별 + + checked="checked" <%end if%> /> + + checked="checked" <%end if%> /> +
+ 년 + 월 + 일 +
+ + * @포함한 이메일주소를 정확히 입력하세요. +
* 메일링 서비스 + + checked="checked" <%end if%> /> + + checked="checked" <%end if%> /> +
- -
- -
* SMS 서비스 + + checked="checked" <%end if%>/> + + checked="checked" <%end if%> /> +
- -
+ +
+ + + + + - + + +
+ +
+
+ +
+ + + + + +
+
+ : + + + 예)내당동, 수성구 +
+
+ ↓ 기본 주소 - 동이름 검색 결과 목록입니다. 목록중 한개를 선택하세요. + + +
+ +
+
+ + + + + + +
* 결혼여부 + + checked="checked" <%end if%> /> + + checked="checked" <%end if%> /> +
+ 년 + 월 + 일 +
자동가입방지   * 왼쪽에 보이는 숫자 및 문자를 모두 입력하세요.
+
+ + + + +
+
+
+ +
+ +
+ + +
+ + + +
+
+ +
+
+ + + + diff --git a/manager/content/03member_buseo/buseo_delete_ok.asp b/manager/content/03member_buseo/buseo_delete_ok.asp new file mode 100644 index 0000000..cea7be2 --- /dev/null +++ b/manager/content/03member_buseo/buseo_delete_ok.asp @@ -0,0 +1,29 @@ + + +<% +Dim bdm_idx, sql, prepage + +security_ad_cms() '관리자 페이지 체크 + +bdm_idx = inputValue( request.queryString("bdm_idx") ) +prepage = request.queryString("prepage") + +'하위메뉴 삭제 +sql = "delete from bd_menu_page where bdm_ref = '" & bdm_idx & "'" +dbcon.execute sql + +sql = "delete from bd_menu_page where bdm_idx = '" & bdm_idx & "'" +dbcon.execute sql + + +dbcon.close +Set dbcon = Nothing + + +%> + \ No newline at end of file diff --git a/manager/content/03member_buseo/buseo_list.asp b/manager/content/03member_buseo/buseo_list.asp new file mode 100644 index 0000000..234c41f --- /dev/null +++ b/manager/content/03member_buseo/buseo_list.asp @@ -0,0 +1,232 @@ + + +<% +Dim bdm_idx, title_bdm_menuname +bdm_ref = inputValue( request.queryString("bdm_idx") ) +title_bdm_menuname = inputValue( request.queryString("title_bdm_menuname") ) +prepage = Request.ServerVariables("path_info") & "?" & Request.ServerVariables("query_string") + +If bdm_ref = "" Then + + bdm_ref = 0 + bdm_depth = 1 + title_bdm_menuname = "대구유아교육진흥원" + +End if + + +r_fields_s = "bdm_idx, info_url, bdm_depth, bdm_code, bdm_ref, bdm_menuname, bdm_chk" +'sql = "select " & r_fields_s & " from bd_menu_page where bdm_chk = 'Y' and bdm_ref = '" & bdm_ref & "' order by bdm_code asc" +sql = "select " & r_fields_s & " from bd_menu_page where bdm_ref = '" & bdm_ref & "' order by bdm_code asc" + +Set rs = dbcon.execute( sql ) +If rs.bof Or rs.eof Then + list_data = null +Else + list_data = rs.getrows +End if +Set rs = nothing + + + + + + + +%> + + +메뉴관리 + + + + + + + + + + + + + + + +
+ [<%=title_bdm_menuname%>] 하위부서생성 +
+ + + + + +
+ + + + + + + + + + + + + + + + +
+ 부 서 명 + + 생 성 +
+ + + +
+
+ + + + + +
+ [<%=title_bdm_menuname%>] 하위부서목록 +
+ + + + +
+ + + + + + + + +<% +If isnull(list_data) Then +Else + For i = 0 To Ubound(list_data, 2) + Call arr2Value(r_fields_s, "list_data", i) +%> + + + + + + + + + + + +<% + next +End if +%> +
+ 순서 + + 부 서 명 + + 사용여부 + + 수정/삭제 +
+ + + + + + + [수정][삭제] +
+ + + + diff --git a/manager/content/03member_buseo/buseo_write_ok.asp b/manager/content/03member_buseo/buseo_write_ok.asp new file mode 100644 index 0000000..c2051ab --- /dev/null +++ b/manager/content/03member_buseo/buseo_write_ok.asp @@ -0,0 +1,60 @@ + + +<% +Dim bdm_idx, info_url, bdm_depth, bdm_code, bdm_ref, bdm_menuname, bdm_t_clr, bdm_ro_clr, bdm_chk, bdm_wdate +Dim prepage + +prepage = request.form("prepage") +bdm_idx = inputValue( request.form("bdm_idx") ) +bdm_ref = inputValue( request.form("bdm_ref") ) +bdm_menuname = inputValue( request.form("bdm_menuname") ) +bdm_chk = inputValue( request.form("bdm_chk") ) + +If bdm_idx = "" Then '저장 + + 'depth + sql = "select top 1 bdm_depth from bd_menu_page where bdm_idx = '" & bdm_ref & "'" + Set rs = dbcon.execute( sql ) + If rs.bof Or rs.eof Then + bdm_depth = 1 + Else + bdm_depth = rs(0) + 1 + End if + Set rs = nothing + + 'code + sql = "select top 1 bdm_code from bd_menu_page order by bdm_code desc" + Set rs = dbcon.execute( sql ) + If rs.bof Or rs.eof Then + bdm_code = 1 + Else + bdm_code = rs(0) + 1 + End If + Set rs = nothing + + + info_url = "" + bdm_t_clr = "#ffffff" + bdm_ro_clr = "#f4f4f4" + bdm_chk = "Y" + bdm_wdate = Date() & " " & Right("0" & hour(now), 2) & ":" & Right("0" & minute(now), 2) + + + r_fields_s = "info_url, bdm_depth, bdm_code, bdm_ref, bdm_menuname, bdm_t_clr, bdm_ro_clr, bdm_chk, bdm_wdate" + Call InsertQuery(r_fields_s, "bd_menu_page") + +Else + + r_fields_u = "bdm_menuname, bdm_chk" + Call UpdateQuery( r_fields_u, "bd_menu_page", "where bdm_idx = '" & bdm_idx & "'" ) + + +End if + +%> + diff --git a/manager/content/03member_buseo/config.asp b/manager/content/03member_buseo/config.asp new file mode 100644 index 0000000..53d981a --- /dev/null +++ b/manager/content/03member_buseo/config.asp @@ -0,0 +1,18 @@ +<% +'페이지정보 ************************************************* +v_page = InputValue(request("p_page")) +v_block = InputValue(request("p_block")) +v_search = InputValue(request("p_search")) +v_keyword = InputValue(request("p_keyword")) +mode = InputValue(request("mode")) '-- a:관리자페이지 , u:일반유저페이지 +page_info = "p_page="&v_page&"&p_block="&v_block&"&p_search="&v_search&"&p_keyword="&v_keyword +' ************************************************************ + +' 권한정보 ************************************************************************************* +is_ad_cms = "Y" +is_read = "Y" +is_write = "Y" +is_delete = "Y" +is_reply = "Y" +' ************************************************************************************************** +%> \ No newline at end of file diff --git a/manager/content/03member_buseo/list.asp b/manager/content/03member_buseo/list.asp new file mode 100644 index 0000000..4778fb1 --- /dev/null +++ b/manager/content/03member_buseo/list.asp @@ -0,0 +1,47 @@ + + + + + + + +
+ +
+
+

부서관리

+
+ +
+ + +
+

하위 부서 생성 또는 순서를 변경합니다.

+ + + + + + + +
+ + + +
+ + + + + + +
+ + +
+ + + + diff --git a/manager/content/03member_buseo/move.asp b/manager/content/03member_buseo/move.asp new file mode 100644 index 0000000..788caa4 --- /dev/null +++ b/manager/content/03member_buseo/move.asp @@ -0,0 +1,50 @@ + + +<% +Dim bdm_idx, bdm_code, move +Dim sql, sql1, sql2 + + +bdm_idx = InputValue( request.queryString("bdm_idx") ) '//--일련번호 +bdm_code = InputValue( request.queryString("bdm_code") ) '//--정렬번호 +move = InputValue( request.queryString("move") ) '//--이동 +prepage = request.queryString("prepage") + + +if move = "up" then + sql = "select top 1 bdm_idx, bdm_code from bd_menu_page where bdm_code < " & bdm_code & " order by bdm_code desc" + +Elseif move = "down" then + sql = "select top 1 bdm_idx, bdm_code from bd_menu_page where bdm_code > " & bdm_code & " order by bdm_code" + +End if + +Set rs = dbcon.execute( sql ) + +If Not( rs.bof Or rs.eof ) Then + + v_rsbdm_idx = rs("bdm_idx") '//-- 대체할 디비번호 + v_rsbdm_code = rs("bdm_code") '//-- 대체할 값 + + + sql1 = "update bd_menu_page set bdm_code = " & bdm_code & " where bdm_idx = " & v_rsbdm_idx + sql2 = "update bd_menu_page set bdm_code = " & v_rsbdm_code & " where bdm_idx = " & bdm_idx + + dbcon.execute sql1 + dbcon.execute sql2 + + +End if + +dbcon.close +Set dbcon = nothing + +If prepage = "" Then prepage = "buseo_list.asp" + +%> + \ No newline at end of file diff --git a/manager/content/03member_buseo/tree.asp b/manager/content/03member_buseo/tree.asp new file mode 100644 index 0000000..b260327 --- /dev/null +++ b/manager/content/03member_buseo/tree.asp @@ -0,0 +1,47 @@ + + + + + + + 메뉴트리 + + + + + + + + + + + + + + + + + + + + + + +
+ +
+ + <%Call getBuseoMenuTree( 0 )%> + +
+
+ + + + + diff --git a/manager/content/03member_conf/config.asp b/manager/content/03member_conf/config.asp new file mode 100644 index 0000000..021b816 --- /dev/null +++ b/manager/content/03member_conf/config.asp @@ -0,0 +1,10 @@ +<% +' 권한정보 ************************************************************************************* +is_ad_cms = "Y" +is_read = "Y" +is_write = "Y" +is_delete = "Y" +is_reply = "Y" +' ************************************************************************************************** + +%> \ No newline at end of file diff --git a/manager/content/03member_conf/write.asp b/manager/content/03member_conf/write.asp new file mode 100644 index 0000000..54df2b3 --- /dev/null +++ b/manager/content/03member_conf/write.asp @@ -0,0 +1,308 @@ + + + +<% + +' 레코드필드 +R_Fields = "mc_idx, mc_addr, mc_nickname, mc_phone, mc_mobile, mc_email, mc_homepage, mc_joinlevel, mc_wdate, mc_jumin, mc_mailing, mc_sms, mc_sex, mc_birth, mc_fax, mc_marry, mc_marrydate, mc_job, mc_text, mc_nickname_req, mc_jumin_req, mc_sex_req, mc_birth_req, mc_phone_req, mc_fax_req, mc_mobile_req, mc_email_req, mc_addr_req, mc_homepage_req, mc_marry_req, mc_marrydate_req, mc_job_req, mc_text_req, mc_recom, mc_recom_point, mc_new_point, mc_agree, mc_agree_str, mc_info, mc_info_str" + +sql = "SELECT top 1 "&R_Fields&" FROM member_config" +Set Rs = Dbcon.Execute (sql) +If Not rs.eof Then + + R_Fields = replace(R_Fields, " ", "") + R_Fields_arr = split(R_Fields,",") + + For i=0 To UBound(R_Fields_arr) + execute( R_Fields_arr(i) & "= rs("""&R_Fields_arr(i)&""")") + Next + +Else + + + R_Fields = replace(R_Fields, " ", "") + R_Fields_arr = split(R_Fields,",") + + For i=0 To UBound(R_Fields_arr) + execute(R_Fields_arr(i)&" = ""N""") + next + + mc_joinlevel = "0" + + +End If +rs.close : Set rs = nothing + +%> + + + +
+ +
+
+

회원가입 환경설정

+
+ +
+ + +
+ +
+
+ +
+ + +

약관 정보 약관정보를 입력해주세요.

+
+ 약관정보 서식 작성 + + + + + + + + + + + + + + +
약관정보 서식
이용약관 + + + +
+ +
+ + <%If mc_agree = "N" then%> + + <%End if%> +
개인정보취급방침 + + + +
+ +
+ + <%If mc_info = "N" then%> + + <%End if%> +
+
+ + + +

필드관리 필드정보를 선택해주세요.

+
+ 필드정보 서식 선택/수정 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
필드정보 서식
닉네임 + + +    + + 주민등록번호 + + +    + +
성별 + + +    + + 생년월일 + + +    + +
연락처 + + +    + + 팩스번호 + + +    + +
휴대폰 + + +    + + SMS수신동의 + + +
이메일 + + +    + + 메일수신동의 + + +
주소 + + +    + + 홈페이지 + + +    + +
결혼여부 + + +    + + 결혼기념일 + + +    + +
직업 + + +    + + 남기는말씀 + + +    + +
+ +
+
+ + + +
+
+
+ +
+ +
+ + +
+ + + + diff --git a/manager/content/03member_conf/write_bak0926.asp b/manager/content/03member_conf/write_bak0926.asp new file mode 100644 index 0000000..af1aa72 --- /dev/null +++ b/manager/content/03member_conf/write_bak0926.asp @@ -0,0 +1,188 @@ + + + +<% + +' 레코드필드 +R_Fields = "mc_idx, mc_agree, mc_addr, mc_nickname, mc_phone, mc_mobile, mc_email, mc_homepage, mc_joinlevel, mc_wdate, mc_agree_str, mc_jumin" + +sql = "SELECT top 1 "&R_Fields&" FROM member_config" +Set Rs = Dbcon.Execute (sql) +If Not rs.eof Then + + mc_idx = rs("mc_idx") + mc_agree = rs("mc_agree") + mc_addr = rs("mc_addr") + mc_nickname = rs("mc_nickname") + mc_phone = rs("mc_phone") + mc_mobile = rs("mc_mobile") + mc_email = rs("mc_email") + mc_homepage = rs("mc_homepage") + mc_joinlevel = rs("mc_joinlevel") + mc_wdate = rs("mc_wdate") + mc_agree_str = rs("mc_agree_str") + mc_jumin = rs("mc_jumin") + +Else + + mc_agree = "N" + mc_addr = "N" + mc_nickname = "N" + mc_phone = "N" + mc_mobile = "N" + mc_email = "N" + mc_homepage = "N" + mc_joinlevel = "0" + mc_wdate = "" + mc_agree_str = "" + mc_jumin = "N" + +End If +rs.close : Set rs = nothing + +%> + + + +
+ +
+
+

회원가입 환경설정

+
+ +
+ + +
+ +
+
+ +
+ +

약관 정보 약관정보를 입력해주세요.

+
+ 약관정보 서식 작성 + + + + + + + + + + +
약관정보 서식
약관 + + + +
+ +
+ + <%If mc_agree = "N" then%> + + <%End if%> +
+
+ + +

필드관리 필드정보를 선택해주세요.

+
+ 필드정보 서식 선택/수정 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
필드정보 서식
주소 + + + 닉네임 + + +
연락처 + + + 휴대폰 + + +
이메일 + + + 학력 + + +
+ +
+
+ + + +
+
+
+ +
+ +
+ + +
+ + + + diff --git a/manager/content/03member_conf/write_ok.asp b/manager/content/03member_conf/write_ok.asp new file mode 100644 index 0000000..df17c03 --- /dev/null +++ b/manager/content/03member_conf/write_ok.asp @@ -0,0 +1,46 @@ + + + + + +<% + +R_Fields = "mc_idx, mc_addr, mc_nickname, mc_phone, mc_mobile, mc_email, mc_homepage, mc_joinlevel, mc_wdate, mc_jumin, mc_mailing, mc_sms, mc_sex, mc_birth, mc_fax, mc_marry, mc_marrydate, mc_job, mc_text, mc_nickname_req, mc_jumin_req, mc_sex_req, mc_birth_req, mc_phone_req, mc_fax_req, mc_mobile_req, mc_email_req, mc_addr_req, mc_homepage_req, mc_marry_req, mc_marrydate_req, mc_job_req, mc_text_req, mc_recom, mc_recom_point, mc_new_point, mc_agree, mc_agree_str, mc_info, mc_info_str" +Call RequestAll (R_Fields, "") + +mc_agree_str = InputValue2(request("mc_agree_str")) +mc_info_str = InputValue2(request("mc_info_str")) + +If mc_idx = "" Then ' 저장 + + sql = "delete from member_config" + Dbcon.execute sql + + R_Fields_i = "mc_idx, mc_addr, mc_nickname, mc_phone, mc_mobile, mc_email, mc_homepage, mc_joinlevel, mc_wdate, mc_jumin, mc_mailing, mc_sms, mc_sex, mc_birth, mc_fax, mc_marry, mc_marrydate, mc_job, mc_text, mc_nickname_req, mc_jumin_req, mc_sex_req, mc_birth_req, mc_phone_req, mc_fax_req, mc_mobile_req, mc_email_req, mc_addr_req, mc_homepage_req, mc_marry_req, mc_marrydate_req, mc_job_req, mc_text_req, mc_recom, mc_recom_point, mc_new_point, mc_agree, mc_agree_str, mc_info, mc_info_str" + + mc_wdate = getDateFm(now,3) + + Call InsertQuery (R_Fields_i, "member_config") + + ok_url = "write.asp" + + +else ' 수정 + + + R_Fields_u = "mc_addr, mc_nickname, mc_phone, mc_mobile, mc_email, mc_homepage, mc_joinlevel, mc_wdate, mc_jumin, mc_mailing, mc_sms, mc_sex, mc_birth, mc_fax, mc_marry, mc_marrydate, mc_job, mc_text, mc_nickname_req, mc_jumin_req, mc_sex_req, mc_birth_req, mc_phone_req, mc_fax_req, mc_mobile_req, mc_email_req, mc_addr_req, mc_homepage_req, mc_marry_req, mc_marrydate_req, mc_job_req, mc_text_req, mc_recom, mc_recom_point, mc_new_point, mc_agree, mc_agree_str, mc_info, mc_info_str" + + mc_wdate = getDateFm(now,3) + + Call UpdateQuery (R_Fields_u, "member_config", "where mc_idx="&mc_idx) + + ok_url = "write.asp" + + +End if + +Dbcon.close : Set Dbcon = Nothing + +Call loding("0", ok_url) + +%> \ No newline at end of file diff --git a/manager/content/03member_conf/write_ok_bak0926.asp b/manager/content/03member_conf/write_ok_bak0926.asp new file mode 100644 index 0000000..343b76c --- /dev/null +++ b/manager/content/03member_conf/write_ok_bak0926.asp @@ -0,0 +1,45 @@ + + + + + +<% + +R_Fields = "mc_idx, mc_agree, mc_addr, mc_nickname, mc_phone, mc_mobile, mc_email, mc_homepage, mc_joinlevel, mc_wdate, mc_agree_str, mc_jumin" +Call RequestAll (R_Fields, "") + +mc_agree_str = InputValue2(request("mc_agree_str")) + +If mc_idx = "" Then ' 저장 + + sql = "delete from member_config" + Dbcon.execute sql + + R_Fields_i = "mc_agree, mc_addr, mc_nickname, mc_phone, mc_mobile, mc_email, mc_homepage, mc_joinlevel, mc_wdate, mc_agree_str, mc_jumin" + + mc_wdate = getDateFm(now,3) + + Call InsertQuery (R_Fields_i, "member_config") + + ok_url = "write.asp" + + +else ' 수정 + + + R_Fields_u = "mc_agree, mc_addr, mc_nickname, mc_phone, mc_mobile, mc_email, mc_homepage, mc_joinlevel, mc_wdate, mc_agree_str, mc_jumin" + + mc_wdate = getDateFm(now,3) + + Call UpdateQuery (R_Fields_u, "member_config", "where mc_idx="&mc_idx) + + ok_url = "write.asp" + + +End if + +Dbcon.close : Set Dbcon = Nothing + +Call loding("0", ok_url) + +%> \ No newline at end of file diff --git a/manager/content/03member_div/config.asp b/manager/content/03member_div/config.asp new file mode 100644 index 0000000..84db9a8 --- /dev/null +++ b/manager/content/03member_div/config.asp @@ -0,0 +1,16 @@ +<% +'//security_ad_cms(); //관리자페이지 접속권한 체크 + +'//권한정보 ************************************************************************************* +is_ad_cms = "Y" +is_read = "Y" +is_write = "Y" +is_delete = "Y" +is_reply = "Y" +'//************************************************************************************************** + +'//$browser_title = "사이트환경설정"; //페이지타이틀 명 + +max_depth_option = 2 + +%> \ No newline at end of file diff --git a/manager/content/03member_div/delete_ok.asp b/manager/content/03member_div/delete_ok.asp new file mode 100644 index 0000000..0c0c405 --- /dev/null +++ b/manager/content/03member_div/delete_ok.asp @@ -0,0 +1,49 @@ + + +<% +Dim ct_idx, status, ct_ref, ct_codeno +Dim sql, ok_url + +'//파라미터정보 ************************************************************************************* +ct_idx = InputValue( request("ct_idx") ) +status = InputValue( request("status") ) +ct_ref = InputValue( request("ct_ref") ) +chk = InputValue( request("chk") ) +chk = Replace(chk, " ", "") +chk = split(chk, ",") +'//************************************************************************************************** + +If status = "totdel" Then '다중삭제 + + For z = 0 To UBound(chk) + + sql = "Select ct_codeno from member_div where ct_idx=" & chk(z) + Set rs_3 = dbcon.execute( sql ) + + sql = " delete from member_div where ct_codeno like '%" & rs_3("ct_codeno") & "%'" + dbcon.execute sql + + next + + Set rs_3 = Nothing + +Else '//일반삭제 + + '//삭제하기 + sql = "Select ct_codeno from member_div where ct_idx=" & ct_idx + Set rs_3 = dbcon.execute( sql ) + + ct_codeno = rs_3("ct_codeno") + + sql = " delete from member_div where ct_codeno like '%" & rs_3("ct_codeno") & "%'" + dbcon.execute sql + +End if + + +If ct_ref = "0" then ct_ref = "" + +ok_url = "write.asp?ct_idx=" & ct_ref + +Call loding ("0", ok_url) +%> \ No newline at end of file diff --git a/manager/content/03member_div/level_ok.asp b/manager/content/03member_div/level_ok.asp new file mode 100644 index 0000000..7a65582 --- /dev/null +++ b/manager/content/03member_div/level_ok.asp @@ -0,0 +1,48 @@ + + +<% +Dim status, tot_level_chk, ct_chk, ct_idx, ct_ref, chk, sql, ok_url + +'//파라미터정보 *********************************************** +status = InputValue( request.Form("status") ) +tot_level_chk = InputValue( request.Form("tot_level_chk") ) + +ct_chk = InputValue( request.Form("ct_chk") ) +ct_idx = InputValue( request.Form("ct_idx") ) + +ct_ref = InputValue( request.Form("ct_ref") ) + +chk = InputValue( request.Form("chk") ) +chk = Replace(chk, " ", "") +chk = split(chk, ",") +'//************************************************************ + + +If status = "totlevel" Then '//다중삭제 + + For z=0 To UBound(chk) + + sql = " Update member_div set ct_chk = '" & tot_level_chk & "' Where ct_idx = " & chk(z) + dbcon.execute sql + + next + + +Else + + sql = " Update member_div set ct_chk = '" & ct_chk & "' Where ct_idx = " & ct_idx + dbcon.execute sql + +End if + + +If ct_ref = "0" then ct_ref = "" + +ok_url = "write.asp?ct_idx=" & ct_ref + +Call loding ("0", ok_url) + + +dbcon.close +Set dbcon = nothing +%> \ No newline at end of file diff --git a/manager/content/03member_div/move.asp b/manager/content/03member_div/move.asp new file mode 100644 index 0000000..01dc747 --- /dev/null +++ b/manager/content/03member_div/move.asp @@ -0,0 +1,46 @@ + + +<% +Dim ct_idx, ct_code, move, ct_ref +Dim sql, sql1, sql2 + + +ct_idx = InputValue( request.queryString("ct_idx") ) '//--일련번호 +ct_code = InputValue( request.queryString("ct_code") ) '//--정렬번호 +move = InputValue( request.queryString("move") ) '//--이동 +ct_ref = InputValue( request.queryString("ct_ref") ) + + +if move = "up" then + sql = "select top 1 ct_idx, ct_code from member_div where ct_code < " & ct_code & " AND ct_ref='" & ct_ref & "' order by ct_code desc" + +Elseif move = "down" then + sql = "select top 1 ct_idx, ct_code from member_div where ct_code > " & ct_code & " AND ct_ref='" & ct_ref & "' order by ct_code" + +End if + +Set rs = dbcon.execute( sql ) + +If Not( rs.bof Or rs.eof ) Then + + v_rsct_idx = rs("ct_idx") '//-- 대체할 디비번호 + v_rsct_code = rs("ct_code") '//-- 대체할 값 + + + sql1 = "update member_div set ct_code = " & ct_code & " where ct_idx = " & v_rsct_idx + sql2 = "update member_div set ct_code = " & v_rsct_code & " where ct_idx = " & ct_idx + + dbcon.execute sql1 + dbcon.execute sql2 + + +End if + +If ct_ref = "0" Then ct_ref = "" + +ok_url = "write.asp?ct_idx=" & ct_ref +Call loding ("0", ok_url) + +dbcon.close +Set dbcon = nothing +%> \ No newline at end of file diff --git a/manager/content/03member_div/write.asp b/manager/content/03member_div/write.asp new file mode 100644 index 0000000..504d04c --- /dev/null +++ b/manager/content/03member_div/write.asp @@ -0,0 +1,353 @@ + +<%'//*************************************************************************************%> + +<%'//*************************************************************************************%> + +<% +Dim sql, table, idx_field, oreder_filed, Query_Fields, search_str, search_str2, Query_OrderBy +Dim ct_idx, ct_code, ct_name, ct_ref, ct_depth, ct_chk, ct_wdate, ct_codeno, ct_url + +'//쓰기권한체크************************************************************************************* +if is_write <> "Y" Then + back_back "쓰기권한이 없습니다." +End if +'//************************************************************************************************** + +'//파라미터정보 ************************************************************************************* + +ct_idx = Inputvalue(request("ct_idx")) + +'//용도 : 등록/수정시 현재 상위pk(idx)값, 현재단계 + +If ct_idx = "" then '//없으면 1단계 + + ct_ref = "0" + ct_depth = "1" + ct_codeno_ref = "C0;" + +Else + + sql = "select ct_depth,ct_codeno from member_div where ct_idx=" & ct_idx '//상위idx값을 구한당 + Set rs_2 = dbcon.execute( sql ) + + ref_depth = rs_2("ct_depth") + ref_codeno = rs_2("ct_codeno") + + ct_ref = ct_idx + ct_depth = ref_depth + 1 '//상위단계 + 1 + ct_codeno_ref = ref_codeno + + Set rs_2 = nothing +End if + +'//echo "
현재단계 : " . $ct_depth . "단계"; + + +'//쓰기권한체크************************************************************************************* +if CInt( ct_depth ) > CInt( max_depth_option ) then + back_back "최대 " & max_depth_option & " 단계 까지 가능합니다.." +End if + +'//************************************************************************************************** + +'//테이블 기본 환경설정 ******************************************************************************** +table = "member_div" '//테이블명 +idx_field = "ct_idx" '//기본키 +oreder_filed = "ct_code ASC" '//정렬기준 필드 +Query_Fields = "ct_idx, ct_code, ct_name, ct_ref, ct_depth, ct_chk, ct_wdate, ct_codeno, ct_url" '//불러올 필드 +'//**************************************************************************************************** + +'//---------------조합 쿼리문------------------------------------ +If v_keyword <> "" then + search_str = " AND " & v_search & " like '%" & v_keyword & "%'" +End if + +If ct_idx <> "" then + search_str2 = " AND ct_ref = '" & ct_idx & "'" +else + search_str2 = " AND ct_ref = '0'" +End if + +Query_OrderBy = " ORDER BY " & oreder_filed +'//--------------------------------------------------------------- + +'//-----------------------------리스트 출력 쿼리문 생성----------------------------- +sql = "select " & Query_Fields & " from " & table & " WHERE ct_idx <> '0'" +sql = sql & search_str & search_str2 & Query_OrderBy + +'response.write sql +Set col = dbcon.execute( sql ) +If col.bof Or col.eof Then + list_data = null +Else + list_data = col.getrows +End if +Set col = nothing +'//--------------------------------------------------------------------------------- + +%> + + +
+ +
+
+

부서관리

+
+ +
+ + +
+ +

현재메뉴경로: 부서관리홈 + + <% + If ref_codeno <> "" then + + ref_codeno_arr = split(ref_codeno,";") '//제한파일.. + + for z = 1 to ubound(ref_codeno_arr) + + ct_idx_str = replace(ref_codeno_arr(z), "C", "") + ct_idx_str = replace(ct_idx_str, ";", "") + + + If ct_idx_str <> "" then + + sql = "Select ct_name from member_div where ct_idx=" & ct_idx_str + Set rs_3 = dbcon.execute( sql ) + + If Not( rs_3.bof Or rs_3.eof ) then + ct_name_str = rs_3("ct_name") + End if + Set rs_3 = nothing + + If ubound(ref_codeno_arr)-1 = z then + %> + > <%=ct_name_str%> + <% + else + + ref_ct_idx_str = ct_idx_str + %> + > <%=ct_name_str%> + <% + End if + End if + next + End if + %> + +

+ + +
+
+ + + +
+ +
+ +
+ + +
    +
  • :
  • + <%=ct_dept%> + <%If ct_depth = 1 then%> + +
  • + + <%elseif CInt(ct_depth) <= max_depth_option then%> + +
  • + + <%End if%> +
  • + <%If CInt(ct_depth) = 1 Then %> + +
  • + + <%elseIf ct_depth <= max_depth_option then%> +
  • +
  • + <%End if%> +
+ + +
+ +
+ +
+ + +
+
+ + + + + + + + +
+ +
+ 부서관리 작성/수정 + + + + + + + <%If ct_depth < max_depth_option then%> + + <%End if%> + + + + + + + + + + + <%If CInt(ct_depth) < CInt(max_depth_option) then%> + + <%end if%> + + + + + + + + + + + +<% + '//bbs_list_data + If IsNull( list_data ) Then +%> + + + + + <%If CInt(ct_depth) < CInt(max_depth_option) then%> + + <%End if%> + + + + +<% + Else + For zz = 1 To UBound(list_data, 2)+1 + Call arr2Value( Query_Fields, "list_data", zz-1 ) + + If ct_chk = "Y" then + ct_chk_str = "사용" + else + ct_chk_str = "중지" + End if +%> + + + + + + <%If CInt(ct_depth) < CInt(max_depth_option) then%> + + <%End if%> + + + + + + <% + Next + End if + %> + +
부서관리 서식
선택순서부서하위부서사용여부수정삭제
+ 순서 위로 이동순서 아래로 이동 + + + + + <%=ct_chk_str%> + + + +
+
+ +
+ +
+ + +
+ +
+ + +
+ + +
+
+ + + + + +
+
+ + \ No newline at end of file diff --git a/manager/content/03member_div/write_ok.asp b/manager/content/03member_div/write_ok.asp new file mode 100644 index 0000000..5e3ef8a --- /dev/null +++ b/manager/content/03member_div/write_ok.asp @@ -0,0 +1,78 @@ + + +<% +Dim R_Fields, rs +Dim ct_idx, ct_code, ct_name, ct_ref, ct_depth, ct_chk, ct_wdate, ct_codeno, ct_url, ct_codeno_ref + +R_Fields = "ct_idx, ct_code, ct_name, ct_ref, ct_depth, ct_chk, ct_wdate, ct_codeno, ct_url, ct_codeno_ref" + +Call RequestAll (R_Fields, "request.form") + +If ct_idx = "" then '//저장 + + + '//순서 + '//***************************************** + sql = "select max(ct_code) as ct_code from member_div WHERE ct_ref = " & ct_ref + 'response.write sql + 'response.end + Set rs = dbcon.execute( sql ) + + ct_code = rs("ct_code") + + if IsNull( ct_code ) or ct_code = "" then + ct_code = 1 + else + ct_code = ct_code + 1 + End if + '//***************************************** + + + + + R_Fields_i = "ct_code, ct_name, ct_ref, ct_depth, ct_chk, ct_wdate, ct_url" + + ct_wdate = getDateFm(Now(), 3) + + Call InsertQuery (R_Fields_i, "member_div") + + '//메뉴값 적용----------------------------------------------------------------------------- + sql = "select max(ct_idx) as ct_idx from member_div" + Set rs1 = dbcon.execute( sql ) + + max_ct_idx = rs1("ct_idx") + + + ct_codeno = ct_codeno_ref & "C" & max_ct_idx & ";" + + sql = "update member_div set ct_codeno='" & ct_codeno & "' WHERE ct_idx = " & max_ct_idx + dbcon.execute sql + //----------------------------------------------------------------------------------------- + + If ct_ref = "0" then ct_ref = "" + ok_url = "write.asp?ct_idx=" & ct_ref + + +Else '//수정 + + + R_Fields = "ct_name, ct_wdate, ct_url" + + ct_wdate = getDateFm(Now(), 3) + + Call UpdateQuery (R_Fields, "member_div", "where ct_idx=" & ct_idx) + + If ct_ref = "0" then ct_ref = "" + + ok_url = "write.asp?ct_idx=" & ct_ref + + +End if + +dbcon.close +Set dbcon = nothing + +Call loding("0",ok_url) + + +%> \ No newline at end of file diff --git a/manager/content/03member_group/awrite.asp b/manager/content/03member_group/awrite.asp new file mode 100644 index 0000000..2309639 --- /dev/null +++ b/manager/content/03member_group/awrite.asp @@ -0,0 +1,394 @@ + + +<% + + +' 파라미터정보 +p_g_num = InputValue(request("g_num")) +cp_g_num = InputValue(request("cp_g_num")) ' 복사권한 + + +If p_g_num = "0" then + g_num_str = "비회원" +else + g_num_str = get_level(p_g_num) +End if + + +If cp_g_num = "" then ' 복사권한이 없을땐.. 원래 권한이 복사권한으로.. + cp_g_num = p_g_num +End if + + + +' 홈매니저 접속여부 +R_Fields_gmr = "g_manager" +R_tablename_str = "member_group " +R_WHERE_str = " WHERE g_num="&cp_g_num + +Call SelectQuery (R_Fields_gmr, R_tablename_str, R_WHERE_str) + +%> + + + +
+ +
+
+

회원그룹/권한 설정

+
+ +
+ + +
+ + +
+
+

회원그룹 [<%=g_num_str%>] 게시판 권한

+
+
    +
  • :
  • +
  • + +
  • +
  • 권한으로
  • +
  • +
+
+
+
+ +
+
+ 회원그룹 권한 설정 + + + + + + + + + + + + + + + + + + + + + + + + + + + + <% + + ' 테이블 기본 환경설정 ******************************************************************************** + table = "board_config" ' 테이블명 + ' 레코드필드 + 'Query_Fields = "a_num, a_bbsname, a_level, a_type, a_tablename, a_imgline, a_imgwidth, a_imgheight, a_member, a_ad_cms_id, a_ad_cms, a_cate, a_email, a_phone, a_home, a_jumin, a_jumin_opt, a_ftemp1, a_ftemp1_str, a_ftemp2, a_ftemp2_str, a_ftemp3, a_ftemp3_str, a_ftemp4, a_ftemp4_str, a_new, a_upload, a_upload_len, a_nofilesize, a_nofile, a_reply, a_replyOpt, a_command, a_date_list, a_sdate, a_edate, a_noword, a_width, a_displaysu, a_viewType, a_lt_a, a_lt_b, a_lt_c, a_lt_e, a_lt_f, a_header, a_hd_file, a_detail, a_dt_file, a_writecontent, a_topinclude, a_btminclude, a_skin, a_date" + Query_Fields = "a_num, a_bbsname" + ' 정렬 + Query_OrderBy = " ORDER BY a_date DESC " + ' **************************************************************************************************** + + ' -----------------------------리스트 출력 쿼리문 생성----------------------------- + sql = "select "&Query_Fields&" from "&table & Query_OrderBy + Set Rs = Dbcon.Execute (sql) + If Not rs.eof Then + vData = rs.getrows() + vCnt = UBound(vData,2) + Else + vCnt = -1 + End If + rs.close : Set rs = nothing + + + If vCnt>-1 Then + + bbs_cnt = 1 + + For i=0 To vCnt + a_num = vData(0,i) + a_bbsname = vData(1,i) + + sql = "select * from board_access where g_num="&cp_g_num&" and a_num="&a_num + Set Rs = Dbcon.Execute (sql) + If Not rs.eof Then + Bl_ad_cms = rs("Bl_ad_cms") + Bl_list = rs("Bl_list") + Bl_read = rs("Bl_read") + Bl_write = rs("Bl_write") + Bl_delete = rs("Bl_delete") + Bl_reply = rs("Bl_reply") + Else + Bl_ad_cms = "" + Bl_list = "" + Bl_read = "" + Bl_write = "" + Bl_delete = "" + Bl_reply = "" + End If + rs.close : Set rs = nothing +%> + + + + + + + + + + + + + + +<% + bbs_cnt = bbs_cnt + 1 + next + + Else +%> + + + + + + + + + + + + + + +<% + End if + +%> + + + + +
권한설정 서식
번호게시판명 (등록일순)관리목록읽기쓰기삭제답변
<%=bbs_cnt%><%=a_bbsname%> tabindex="<%=getTabIndex()%>"/> tabindex="<%=getTabIndex()%>"/> tabindex="<%=getTabIndex()%>"/> tabindex="<%=getTabIndex()%>"/> tabindex="<%=getTabIndex()%>"/> tabindex="<%=getTabIndex()%>"/>
+
+ + + +

회원그룹 [<%=g_num_str%>] 홈매니저 접속권한 및 사용메뉴 권한

+
+ 사용메뉴 대메뉴 권한 설정 + + + + + + + + + + + + + + <% + + + + ' 관리메뉴 부분(대메뉴) + R_Fields_L = "ct_idx, ct_name" + sql = "Select "&R_Fields_L&" from manager_menu where ct_chk='Y' AND ct_depth = '1' order by ct_code ASC" + Set Rs = Dbcon.Execute (sql) + If Not rs.eof Then + vData = rs.getrows() + vCnt = UBound(vData,2) + Else + vCnt = -1 + End If + rs.close : Set rs = Nothing + + If vCnt>-1 Then + + menu_cnt = 1 + For i=0 To vCnt + ct_idx = vData(0,i) + ct_name = vData(1,i) + %> + + + + + + <% + Next + End if + %> + +
사용메뉴 대메뉴 서식
+ + * 사용으로 설정하시면 홈매니저(관리페이지)로 접속을 하실 수 있습니다. +
<%=ct_name%> +
+ + + + + + + <% + + ' 관리메뉴 부분(소메뉴) + R_Fields_S = "ct_idx, ct_name" + + sql = "SELECT "&R_Fields_S&" FROM manager_menu WHERE ct_ref="&ct_idx&" AND ct_chk='Y' AND ct_depth = '2' ORDER BY ct_code ASC" + Set Rs = Dbcon.Execute (sql) + If Not rs.eof Then + sData = rs.getrows() + sCnt = UBound(sData,2) + Else + sCnt = -1 + End If + rs.close : Set rs = Nothing + + If sCnt>-1 Then + For j=0 To sCnt + ct_idx2 = sData(0,j) + ct_name2 = sData(1,j) + %> + + + + + <% + + Next + End if + %> + + + +
<%=ct_name2%> +
+ + + + + + + + <% + + ' 관리메뉴 부분(소소메뉴) + R_Fields_SS = "ct_idx, ct_name, ct_codeno" + + sql = "SELECT "&R_Fields_SS&" FROM manager_menu WHERE ct_ref="&ct_idx2&" AND ct_chk='Y' AND ct_depth = '3' ORDER BY ct_code ASC" + Set Rs = Dbcon.Execute (sql) + If Not rs.eof Then + eData = rs.getrows() + eCnt = UBound(eData,2) + Else + eCnt = -1 + End If + rs.close : Set rs = Nothing + + If eCnt>-1 Then + zz = 1 + For k=0 To eCnt + + ct_idx3 = eData(0,k) + ct_name3 = eData(1,k) + ct_codeno3 = eData(2,k) + + sql = "select count(num) as chked from manager_menu_access where g_num='"&cp_g_num&"' and ct_idx="&ct_idx3 + Set Rs = Dbcon.Execute (sql) + chked = rs("chked") + rs.close : Set rs = nothing + + %> + + + + <% + menu_cnt = menu_cnt + 1 + zz = zz + 1 + + + If zz =4 then + response.write "" + zz=1 + End If + + Next + End If + + %> + +
+ + tabindex="<%=getTabIndex()%>" /><%=ct_name3%> +
+
+
+
+
+
+ + + + +
+
+
+ +
+ + + +
+ +
+ +
+ + +
+ + + + + \ No newline at end of file diff --git a/manager/content/03member_group/awrite_ok.asp b/manager/content/03member_group/awrite_ok.asp new file mode 100644 index 0000000..118a88a --- /dev/null +++ b/manager/content/03member_group/awrite_ok.asp @@ -0,0 +1,84 @@ + + + +<% + +g_num = InputValue(request("g_num")) +menu_cnt = InputValue(request("menu_cnt")) +bbs_cnt = InputValue(request("bbs_cnt")) +g_manager = InputValue(request("g_manager")) + + + +sql = " delete from board_access where g_num = "&g_num ' 기존꺼 삭제 +Dbcon.execute sql + + +For z=1 To bbs_cnt + + a_num_t = InputValue(request("a_num"&z)) + Bl_ad_cms_t = InputValue(request("Bl_ad_cms"&z)) + Bl_list_t = InputValue(request("Bl_list"&z)) + Bl_read_t = InputValue(request("Bl_read"&z)) + Bl_write_t = InputValue(request("Bl_write"&z)) + Bl_delete_t = InputValue(request("Bl_delete"&z)) + Bl_reply_t = InputValue(request("Bl_reply"&z)) + + + sql = " INSERT INTO board_access (g_num, a_num, Bl_ad_cms, Bl_list, Bl_read, Bl_write, Bl_delete, Bl_reply) values (" + sql = sql &" '"& g_num &"'" + sql = sql &", '"& a_num_t &"' " + sql = sql &", '"& Bl_ad_cms_t &"'" + sql = sql &", '"& Bl_list_t &"'" + sql = sql &", '"& Bl_read_t &"'" + sql = sql &", '"& Bl_write_t &"'" + sql = sql &", '"& Bl_delete_t &"'" + sql = sql &", '"& Bl_reply_t &"'" + sql = sql &")" + Dbcon.execute sql + +next + + +' 관리메뉴권한 + +sql = " delete from manager_menu_access where g_num = "&g_num +Dbcon.execute sql + + + +' 접속권한 + +R_Fields_u = "g_manager" +Call UpdateQuery (R_Fields_u, "member_group", "where g_num="&g_num) + + + +For a=1 To menu_cnt + + + ct_idx_t = InputValue(request("ct_idx"&a)) + ct_codeno_t = InputValue(request("ct_codeno"&a)) + + If ct_idx_t <> "" then + + sql1 = " INSERT INTO manager_menu_access(g_num, ct_idx,ct_codeno) values (" + sql1 = sql1 &" "&g_num&"" + sql1 = sql1 &", "&ct_idx_t&" " + sql1 = sql1 &", '"&ct_codeno_t&"'" + sql1 = sql1 &")" + Dbcon.execute sql1 + + End if + + +next + +Dbcon.close : Set Dbcon = nothing + +'ok_url = "awrite.asp?g_num="&g_num +ok_url = "write.asp" + +Call loding ("0",ok_url) + +%> \ No newline at end of file diff --git a/manager/content/03member_group/awrite_ui.asp b/manager/content/03member_group/awrite_ui.asp new file mode 100644 index 0000000..05e2425 --- /dev/null +++ b/manager/content/03member_group/awrite_ui.asp @@ -0,0 +1,394 @@ + + +<% + + +' 파라미터정보 +p_g_num = InputValue(request("g_num")) +cp_g_num = InputValue(request("cp_g_num")) ' 복사권한 + + +If p_g_num = "0" then + g_num_str = "비회원" +else + g_num_str = get_level(p_g_num) +End if + + +If cp_g_num = "" then ' 복사권한이 없을땐.. 원래 권한이 복사권한으로.. + cp_g_num = p_g_num +End if + + + +' 홈매니저 접속여부 +R_Fields_gmr = "g_manager" +R_tablename_str = "member_group " +R_WHERE_str = " WHERE g_num="&cp_g_num + +Call SelectQuery (R_Fields_gmr, R_tablename_str, R_WHERE_str) + +%> + + + +
+ +
+
+

회원그룹/권한 설정

+
+ +
+ + +
+ + +
+
+

회원그룹 [<%=g_num_str%>] 게시판 권한

+
+
    +
  • :
  • +
  • + +
  • +
  • 권한으로
  • +
  • +
+
+
+
+ +
+
+ 회원그룹 권한 설정 + + + + + + + + + + + + + + + + + + + + + + + + + + + + <% + + ' 테이블 기본 환경설정 ******************************************************************************** + table = "board_config" ' 테이블명 + ' 레코드필드 + 'Query_Fields = "a_num, a_bbsname, a_level, a_type, a_tablename, a_imgline, a_imgwidth, a_imgheight, a_member, a_ad_cms_id, a_ad_cms, a_cate, a_email, a_phone, a_home, a_jumin, a_jumin_opt, a_ftemp1, a_ftemp1_str, a_ftemp2, a_ftemp2_str, a_ftemp3, a_ftemp3_str, a_ftemp4, a_ftemp4_str, a_new, a_upload, a_upload_len, a_nofilesize, a_nofile, a_reply, a_replyOpt, a_command, a_date_list, a_sdate, a_edate, a_noword, a_width, a_displaysu, a_viewType, a_lt_a, a_lt_b, a_lt_c, a_lt_e, a_lt_f, a_header, a_hd_file, a_detail, a_dt_file, a_writecontent, a_topinclude, a_btminclude, a_skin, a_date" + Query_Fields = "a_num, a_bbsname" + ' 정렬 + Query_OrderBy = " ORDER BY a_date DESC " + ' **************************************************************************************************** + + ' -----------------------------리스트 출력 쿼리문 생성----------------------------- + sql = "select "&Query_Fields&" from "&table & Query_OrderBy + Set Rs = Dbcon.Execute (sql) + If Not rs.eof Then + vData = rs.getrows() + vCnt = UBound(vData,2) + Else + vCnt = -1 + End If + rs.close : Set rs = nothing + + + If vCnt>-1 Then + + bbs_cnt = 1 + + For i=0 To vCnt + a_num = vData(0,i) + a_bbsname = vData(1,i) + + sql = "select * from board_access where g_num="&cp_g_num&" and a_num="&a_num + Set Rs = Dbcon.Execute (sql) + If Not rs.eof Then + Bl_ad_cms = rs("Bl_ad_cms") + Bl_list = rs("Bl_list") + Bl_read = rs("Bl_read") + Bl_write = rs("Bl_write") + Bl_delete = rs("Bl_delete") + Bl_reply = rs("Bl_reply") + Else + Bl_ad_cms = "" + Bl_list = "" + Bl_read = "" + Bl_write = "" + Bl_delete = "" + Bl_reply = "" + End If + rs.close : Set rs = nothing +%> + + + + + + + + + + + + + + +<% + bbs_cnt = bbs_cnt + 1 + next + + Else +%> + + + + + + + + + + + + + + +<% + End if + +%> + + + + +
권한설정 서식
번호게시판명 (등록일순)관리목록읽기쓰기삭제답변
<%=bbs_cnt%><%=a_bbsname%> tabindex="<%=getTabIndex()%>"/> tabindex="<%=getTabIndex()%>"/> tabindex="<%=getTabIndex()%>"/> tabindex="<%=getTabIndex()%>"/> tabindex="<%=getTabIndex()%>"/> tabindex="<%=getTabIndex()%>"/>
+
+ + + +

회원그룹 [<%=g_num_str%>] 홈매니저 접속권한 및 사용메뉴 권한

+
+ 사용메뉴 대메뉴 권한 설정 + + + + + + + + + + + + + + <% + + + + ' 관리메뉴 부분(대메뉴) + R_Fields_L = "ct_idx, ct_name" + sql = "Select "&R_Fields_L&" from manager_menu where ct_chk='Y' AND ct_depth = '1' order by ct_code ASC" + Set Rs = Dbcon.Execute (sql) + If Not rs.eof Then + vData = rs.getrows() + vCnt = UBound(vData,2) + Else + vCnt = -1 + End If + rs.close : Set rs = Nothing + + If vCnt>-1 Then + + menu_cnt = 1 + For i=0 To vCnt + ct_idx = vData(0,i) + ct_name = vData(1,i) + %> + + + + + + <% + Next + End if + %> + +
사용메뉴 대메뉴 서식
+ + * 사용으로 설정하시면 홈매니저(관리페이지)로 접속을 하실 수 있습니다. +
<%=ct_name%> +
+ + + + + + + <% + + ' 관리메뉴 부분(소메뉴) + R_Fields_S = "ct_idx, ct_name" + + sql = "SELECT "&R_Fields_S&" FROM manager_menu WHERE ct_ref="&ct_idx&" AND ct_chk='Y' AND ct_depth = '2' ORDER BY ct_code ASC" + Set Rs = Dbcon.Execute (sql) + If Not rs.eof Then + sData = rs.getrows() + sCnt = UBound(sData,2) + Else + sCnt = -1 + End If + rs.close : Set rs = Nothing + + If sCnt>-1 Then + For j=0 To sCnt + ct_idx2 = sData(0,j) + ct_name2 = sData(1,j) + %> + + + + + <% + + Next + End if + %> + + + +
<%=ct_name2%> +
+ + + + + + + + <% + + ' 관리메뉴 부분(소소메뉴) + R_Fields_SS = "ct_idx, ct_name, ct_codeno" + + sql = "SELECT "&R_Fields_SS&" FROM manager_menu WHERE ct_ref="&ct_idx2&" AND ct_chk='Y' AND ct_depth = '3' ORDER BY ct_code ASC" + Set Rs = Dbcon.Execute (sql) + If Not rs.eof Then + eData = rs.getrows() + eCnt = UBound(eData,2) + Else + eCnt = -1 + End If + rs.close : Set rs = Nothing + + If eCnt>-1 Then + zz = 1 + For k=0 To eCnt + + ct_idx3 = eData(0,k) + ct_name3 = eData(1,k) + ct_codeno3 = eData(2,k) + + sql = "select count(num) as chked from manager_menu_access where g_num='"&cp_g_num&"' and ct_idx="&ct_idx3 + Set Rs = Dbcon.Execute (sql) + chked = rs("chked") + rs.close : Set rs = nothing + + %> + + + + <% + menu_cnt = menu_cnt + 1 + zz = zz + 1 + + + If zz =4 then + response.write "" + zz=1 + End If + + Next + End If + + %> + +
+ + tabindex="<%=getTabIndex()%>" /><%=ct_name3%> +
+
+
+
+
+
+ + + + +
+
+
+ +
+ + + +
+ +
+ +
+ + +
+ + + + + \ No newline at end of file diff --git a/manager/content/03member_group/config.asp b/manager/content/03member_group/config.asp new file mode 100644 index 0000000..18cd7a9 --- /dev/null +++ b/manager/content/03member_group/config.asp @@ -0,0 +1,11 @@ +<% +'권한정보 ************************************************************************************* +is_ad_cms = "Y" +is_read = "Y" +is_write = "Y" +is_delete = "Y" +is_reply = "Y" +'************************************************************************************************** + +max_depth_option = "3" +%> \ No newline at end of file diff --git a/manager/content/03member_group/delete_ok.asp b/manager/content/03member_group/delete_ok.asp new file mode 100644 index 0000000..f9e99d3 --- /dev/null +++ b/manager/content/03member_group/delete_ok.asp @@ -0,0 +1,70 @@ + + +<% + + +' 파라미터정보 ************************************************************************************* +g_num = InputValue(request("g_num")) +status = InputValue(request("status")) +' ************************************************************************************************** + + + +If status = "totdel" then ' 다중삭제 + + chk = InputValue(Replace(request("chk")," ","")) + arr_chk = Split(chk, ",") + + For i=0 To UBound(arr_chk) + + ' 게시판 권한 삭제 + sql = " delete from board_access where g_num = "&arr_chk(i) + Dbcon.execute sql + + ' 관리메뉴권한 삭제 + sql = " delete from manager_menu_access where g_num = "&arr_chk(i) + Dbcon.execute sql + + ' 삭제하기 + sql = " delete from member_group where g_num = "&arr_chk(i) + Dbcon.execute sql + + + ' 비회원으로 변경 + sql = "UPDATE member SET m_level = '2' WHERE m_level='"&arr_chk(i)&"'" + Dbcon.execute sql + + next + + + + +Else ' 일반삭제 + + ' 게시판 권한 삭제 + sql = " delete from board_access where g_num = "&g_num + Dbcon.execute sql + + ' 관리메뉴권한 삭제 + sql = " delete from manager_menu_access where g_num = "&g_num + Dbcon.execute sql + + ' 삭제하기 + sql = " delete from member_group where g_num = "&g_num + Dbcon.execute sql + + ' 비회원으로 변경 + sql = "UPDATE member SET m_level = '2' WHERE m_level='"&g_num&"'" + Dbcon.execute sql + +End if + + +Dbcon.close : Set Dbcon = Nothing + +ok_url = "write.asp" + +Call loding ("0",ok_url) + + +%> \ No newline at end of file diff --git a/manager/content/03member_group/level_ok.asp b/manager/content/03member_group/level_ok.asp new file mode 100644 index 0000000..0cfa860 --- /dev/null +++ b/manager/content/03member_group/level_ok.asp @@ -0,0 +1,39 @@ + + +<% + +' 파라미터정보 *********************************************** +status = InputValue(request("status")) +tot_level_chk = InputValue(request("tot_level_chk")) +g_chk = InputValue(request("g_chk")) +g_num = InputValue(request("g_num")) +' ************************************************************ + + +If status = "totlevel" then ' 다중선택 + + chk = Replace(inputvalue(request("chk"))," ","") + arr_chk = Split(chk,",") + + For i=0 To UBound(arr_chk) + + sql = " Update member_group set g_chk = '"&tot_level_chk&"' Where g_num = "& arr_chk(i) + Dbcon.execute sql + + next + +else + + sql = " Update member_group set g_chk = '"&g_chk&"' Where g_num = "& g_num + Dbcon.execute sql + +End if + + +Dbcon.close : Set Dbcon = Nothing + +ok_url = "write.asp" + +Call loding ("0", ok_url) + +%> \ No newline at end of file diff --git a/manager/content/03member_group/move.asp b/manager/content/03member_group/move.asp new file mode 100644 index 0000000..cce79bd --- /dev/null +++ b/manager/content/03member_group/move.asp @@ -0,0 +1,38 @@ + + +<% + +g_num = InputValue(request("g_num")) ' --일련번호 +g_code = InputValue(request("g_code")) ' --정렬번호 +move = InputValue(request("move")) ' --이동 + + + +if move = "up" then + sql = "select g_num, g_code from member_group where g_code < "&g_code&" order by g_code desc" +ElseIf move = "down" then + sql = "select g_num, g_code from member_group where g_code > "&g_code&" order by g_code" +End If +Set Rs = Dbcon.Execute (sql) + +If Not rs.eof Then + + v_rsg_num = trim(rs("g_num")) ' -- 대체할 디비번호 + v_rsg_code = trim(rs("g_code")) ' -- 대체할 값 + + + sql1 = "update member_group set g_code = "&g_code &" where g_num = "&v_rsg_num + Dbcon.execute sql1 + sql2 = "update member_group set g_code = "& v_rsg_code &" where g_num = "&g_num + Dbcon.execute sql2 + + +End If + +Dbcon.close : Set Dbcon = Nothing + + +ok_url = "write.asp" +Call loding ("0", ok_url) + +%> \ No newline at end of file diff --git a/manager/content/03member_group/write.asp b/manager/content/03member_group/write.asp new file mode 100644 index 0000000..b5b9e02 --- /dev/null +++ b/manager/content/03member_group/write.asp @@ -0,0 +1,238 @@ + + + + + +<% + +' 테이블 기본 환경설정 ******************************************************************************** + +table = "member_group" ' 테이블명 +idx_field = "g_num" ' 기본키 +Query_OrderBy = "g_code ASC" ' 정렬기준 필드 +Query_Fields = "g_num, g_code, g_menuname, g_chk, g_hdsize, g_wdate, g_webmail, g_money, g_myhome, g_cafe, g_blog, g_sms, g_manager" ' 불러올 필드 + +' **************************************************************************************************** + +' 검색어가 있다면 +if p_keyword <> "" And p_search <> "" then + search_str = " AND "&v_search&" like '%"&replace(v_keyword,"'","''")&"%'" +End if + +' -----------------------------리스트 출력 쿼리문 생성----------------------------- +sql = "select "&Query_Fields&" from "&table&" WHERE "&idx_field&" <> '0'" +sql = sql & search_str &" ORDER BY " &Query_OrderBy +Set Rs = Dbcon.Execute (sql) +If rs.eof Then + vCnt = -1 +Else + vData = rs.getrows() + vCnt = UBound(vData,2) +End If +rs.close : Set rs = nothing +' --------------------------------------------------------------------------------- + +%> + +
+

+
+ +
+ +
+
+

회원그룹/권한 설정

+
+ +
+ + +
+ + + +

회원그룹 및 해당그룹 권한 설정

+ + +
+ +
+ +
+ +
    +
  • :
  • +
  • +
  • +
  • +
  • +
+ +
+
+ +
+ +
+
+ + + + + + + +
+ + +
+ 회원그룹명 수정/삭제/권한 설정 + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<% +If vCnt>-1 Then + + zz = 1 + For i=0 To vCnt + + Call arr2Value(Query_Fields, "vData", i) + + If g_chk ="Y" then + g_chk_str = "사용" + else + g_chk_str = "중지" + End if + + If g_manager ="Y" then + g_manager_str = "사용" + else + g_manager_str = "중지" + End if + +%> + + + + + + + + + + + + + + +<% + zz = zz+1 + next +End if + +%> + + + + + + +
회원그룹 및 권한설정 서식
선택순서회원그룹접속 권한사용여부권한수정삭제
<%If Not(g_num = "1" or g_num = "2") then%><%End if%>순서 위로 이동순서 아래로 이동 + <%=g_manager_str%><%=g_chk_str%> + <%If g_num <> "1" then%> + + <%End if%> + + + + + <%If Not(g_num = "1" or g_num = "2") then%> + + <%End if%> +
+
+ +
+ +
+ + +
+ +
+ + +
+ + +
+
+ + + + +
+
+ + + \ No newline at end of file diff --git a/manager/content/03member_group/write_ok.asp b/manager/content/03member_group/write_ok.asp new file mode 100644 index 0000000..2a7dd62 --- /dev/null +++ b/manager/content/03member_group/write_ok.asp @@ -0,0 +1,52 @@ + + +<% + +R_Fields = "g_num, g_code, g_menuname, g_chk, g_hdsize, g_wdate, g_webmail, g_money, g_myhome, g_cafe, g_blog, g_sms" + + +Call RequestAll (R_Fields, "") + + +If g_num = "" then ' 저장 + + + + ' 순서 -------------------------------------- + sql = " SELECT isnull(max(g_code),0) FROM member_group" + Set Rs = Dbcon.Execute (sql) + g_code = rs(0) + rs.close : Set rs = Nothing + + g_code = g_code + 1 + ' -------------------------------------------------------- + + + R_Fields_i = "g_code, g_menuname, g_chk, g_wdate, g_manager" + + g_wdate = getDateFm(now,3) + g_manager = "N" + + Call InsertQuery (R_Fields_i, "member_group") + + ok_url = "write.asp" + + +else ' 수정 + + + R_Fields = "g_menuname, g_wdate" + + g_wdate = getDateFm(now,3) + + Call UpdateQuery (R_Fields, "member_group", "where g_num="&g_num) + + ok_url = "write.asp" + +End if + +Dbcon.close : Set Dbcon=nothing + +Call loding("0",ok_url) + +%> \ No newline at end of file diff --git a/manager/content/04banner/config.asp b/manager/content/04banner/config.asp new file mode 100644 index 0000000..4d0a741 --- /dev/null +++ b/manager/content/04banner/config.asp @@ -0,0 +1,18 @@ +<% +' 페이지정보 ************************************************* +v_page = InputValue(request("p_page")) +v_block = InputValue(request("p_block")) +v_search = InputValue(request("p_search")) +v_keyword = InputValue(request("p_keyword")) +mode = InputValue(request("mode")) ' -- a:관리자페이지 , u:일반유저페이지 +page_info = "p_page="&v_page&"&p_block="&v_block&"&p_search="&v_search&"&p_keyword="&v_keyword +' ************************************************************ + +' 권한정보 ************************************************************************************* +is_ad_cms = "Y" +is_read = "Y" +is_write = "Y" +is_delete = "Y" +is_reply = "Y" +' ************************************************************************************************** +%> \ No newline at end of file diff --git a/manager/content/04banner/delete_ok.asp b/manager/content/04banner/delete_ok.asp new file mode 100644 index 0000000..31d8e36 --- /dev/null +++ b/manager/content/04banner/delete_ok.asp @@ -0,0 +1,70 @@ + + + + + +<% + +' 파라미터정보 ************************************************************************************* +b_l_num = InputValue(request("b_l_num")) +status = InputValue(request("status")) +' ************************************************************************************************** + + +If status = "totdel" then ' 다중삭제 + + chk = InputValue(Replace(request("chk")," ","")) + arr_chk = Split(chk,",") + + For z=0 To UBound(arr_chk) + + ' 이미지 삭제 + SQL_I = "SELECT b_l_img FROM banner WHERE b_l_num = "&arr_chk(z) + Set Rs = Dbcon.Execute (SQL_I) + + b_l_img = rs("b_l_img") + rs.close : Set rs = nothing + + strDir = server.mappath("\")&"\data\banner\" + + If b_l_img <> "" then + + Call dfile(strDir, b_l_img) ' 삭제 + End if + + sql = " delete from banner where b_l_num = "&arr_chk(z) + Dbcon.execute sql + + next + + +else ' 일반삭제 + + + ' 이미지 삭제 + SQL_I = "SELECT b_l_img FROM banner WHERE b_l_num = "&b_l_num + Set Rs = Dbcon.Execute (SQL_I) + + b_l_img = rs("b_l_img") + rs.close : Set rs = nothing + + strDir = server.mappath("\")&"\data\banner\" + + If b_l_img <> "" then + + Call dfile(strDir,b_l_img) ' 삭제 + End if + + sql = " delete from banner where b_l_num = "&b_l_num + Dbcon.execute sql + +End If + + +Dbcon.close : Set Dbcon = Nothing + +ok_url = "list.asp" +Call loding ("0", ok_url) + + +%> \ No newline at end of file diff --git a/manager/content/04banner/down.asp b/manager/content/04banner/down.asp new file mode 100644 index 0000000..7116bf4 --- /dev/null +++ b/manager/content/04banner/down.asp @@ -0,0 +1,63 @@ +<%@ codepage = 65001%> +<% session.codepage = 65001 %> +<%Response.CharSet = "UTF-8"%> +<% +Response.Buffer = False +a_tablename = Request.QueryString("a_tablename") +filename = Request.QueryString("filename") + +a_tablename = Replace(a_tablename, "..", "" ) +a_tablename = Replace(a_tablename, "/", "" ) + +filename = Replace(filename, "..", "" ) +filename = Replace(filename, "/", "" ) + +If filename = "" Then +%> + +<% + response.end +End if + +strDirectory = server.mappath( "/data/banner/" )&"\" + +filepath = strDirectory & filename + +'filepath = Request.QueryString("file") +'filename = Mid(filepath, InStrRev("\")+1) + + + +set objFS = Server.CreateObject("Scripting.FileSystemObject") + +If objFS.FileExists(filepath) = False Then +%> + +<% + response.end +End if + + +set objF = objFS.GetFile(filepath) +Response.AddHeader "Content-Disposition","attachment;filename=" & filename +Response.AddHeader "Content-Length", objF.Size +set objF = nothing +set objFS = nothing + +Response.ContentType = "application/unknown" +Response.CacheControl = "public" + +Set objDownload = Server.CreateObject("DEXT.FileDownload") +objDownload.Download filepath +Set uploadform = Nothing +%> \ No newline at end of file diff --git a/manager/content/04banner/level_ok.asp b/manager/content/04banner/level_ok.asp new file mode 100644 index 0000000..97ecfe8 --- /dev/null +++ b/manager/content/04banner/level_ok.asp @@ -0,0 +1,44 @@ + + + + + +<% + + +' 파라미터정보 *********************************************** + +status = InputValue(request("status")) +tot_level_chk = InputValue(request("tot_level_chk")) + +b_l_chk = InputValue(request("b_l_chk")) +b_l_num = InputValue(request("b_l_num")) + +' ************************************************************ + + +If status = "totlevel" then ' 다중 + + chk = Replace(request("chk")," ","") + arr_chk = Split(chk,",") + + For z=0 To UBound(arr_chk) + + SQL = " Update banner set b_l_chk = '"&tot_level_chk&"' Where b_l_num = "&arr_chk(z) + Dbcon.execute SQL + + next + +Else + + SQL = " Update banner set b_l_chk = '"&b_l_chk&"' Where b_l_num = "&b_l_num + Dbcon.execute SQL + +End if + +Dbcon.close : Set Dbcon = nothing + +ok_url = "list.asp" +Call loding("0", ok_url) + +%> \ No newline at end of file diff --git a/manager/content/04banner/list.asp b/manager/content/04banner/list.asp new file mode 100644 index 0000000..bf09f09 --- /dev/null +++ b/manager/content/04banner/list.asp @@ -0,0 +1,218 @@ + + + + + +<% + + +' 테이블 기본 환경설정 ******************************************************************************** + +table = "banner" ' 테이블명 +idx_field = "b_l_num" ' 기본키 +Query_OrderBy = "b_l_code ASC" ' 정렬기준 필드 +Query_Fields = "b_l_num, info_url, b_l_code, b_l_img, b_l_url, b_l_chk, b_l_sdate, b_l_edate, b_l_subject, b_l_memo, b_l_wdate, b_l_mdate" ' 불러올 필드 + +' **************************************************************************************************** + +v_keyword = request("v_keyword") +v_search = request("v_search") + +' 검색어가 있다면 +if v_keyword <> "" and v_search <> "" then + search_str = " AND "&v_search&" like '%"& replace(v_keyword,"'","''")&"%'" +End if + +' -----------------------------리스트 출력 쿼리문 생성----------------------------- +sql = "select "&Query_Fields&" from "&table&" WHERE "&idx_field&" <> '0'" +sql = sql & search_str &" ORDER BY " & Query_OrderBy +Set Rs = Dbcon.Execute (sql) +If rs.eof Then + vCnt = -1 +Else + vData = rs.getrows() + vCnt = UBound(vData,2) +End If +rs.close : Set rs = nothing +' --------------------------------------------------------------------------------- + +%> + +
+

+
+ +
+ +
+
+

배너 리스트

+
+ +
+ + +
+ + + +

+ + +
+ +
+
+ +
    + +
  • +
  • +
  • +
  • +
+ +
+
+ +
+ +
+
+ +
+ 전체 <%=vCnt+1%>개 +
+ + +
+
+ + + + + + +
+ + +
+ +
+ + + + +
+ 회원관리 수정/삭제/보기 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <% + + If vCnt >- 1 Then + + zz = 1 + For i=0 To vCnt + + Call arr2Value(Query_Fields, "vData", i) + + If b_l_chk = "Y" then + b_l_chk_str = "사용" + ElseIf b_l_chk = "N" then + b_l_chk_str = "중지" + End if + %> + + + + + + + + + + + <% + zz = zz + 1 + next + + + else + %> + + + + + + + + + + + <% End If %> + + + +
회원관리 서식
선택순서배너사용기간사용여부수정삭제
순서 위로 이동순서 아래로 이동 + + <%=b_l_subject%> +
<%=b_l_subject%> +
+
<%=b_l_sdate%> ~ <%=b_l_edate%><%=b_l_chk_str%>
+
+ +
+ +
+ + +
+ +
+ + +
+ + + \ No newline at end of file diff --git a/manager/content/04banner/move.asp b/manager/content/04banner/move.asp new file mode 100644 index 0000000..20a94b4 --- /dev/null +++ b/manager/content/04banner/move.asp @@ -0,0 +1,44 @@ + + + + + +<% + + +b_l_num = InputValue(request("b_l_num")) ' --일련번호 +b_l_code = InputValue(request("b_l_code")) ' --정렬번호 +move = InputValue(request("move")) ' --이동 + + + +if move = "up" then + sql = "select b_l_num, b_l_code from banner where b_l_code < "&b_l_code&" order by b_l_code desc" +elseif move = "down" then + sql = "select b_l_num, b_l_code from banner where b_l_code > "&b_l_code&" order by b_l_code" +End If +Set Rs = Dbcon.Execute (sql) + +If Not rs.eof Then + + v_rsb_l_num = trim(rs("b_l_num")) ' -- 대체할 디비번호 + v_rsb_l_code = trim(rs("b_l_code")) ' -- 대체할 값 + + + sql1 = "update banner set b_l_code = "& b_l_code &" where b_l_num = "& v_rsb_l_num + sql2 = "update banner set b_l_code = "& v_rsb_l_code &" where b_l_num = "& b_l_num + + Dbcon.execute sql1 + Dbcon.execute sql2 + +End If + +rs.close : Set rs = nothing + +Dbcon.close : Set Dbcon = Nothing + + +ok_url = "list.asp" +Call loding ("0", ok_url) + +%> \ No newline at end of file diff --git a/manager/content/04banner/write.asp b/manager/content/04banner/write.asp new file mode 100644 index 0000000..80decb3 --- /dev/null +++ b/manager/content/04banner/write.asp @@ -0,0 +1,188 @@ + + + + + +<% + + +' 파라미터정보 ************************************************************************************* +b_l_num = InputValue(request("b_l_num")) +prepage = InputValue(request("prepage")) +' ************************************************************************************************** + + +If b_l_num = "" then ' 등록 + + reset_url = "write.asp" + is_title_str = "신규 배너 생성" + +else ' 수정 + + ' 레코드필드 + R_Fields = "b_l_num, info_url, b_l_code, b_l_img, b_l_url, b_l_chk, b_l_sdate, b_l_edate, b_l_subject, b_l_memo, b_l_wdate, b_l_mdate" + R_tablename_str = "banner " + R_WHERE_str = " WHERE b_l_num="&b_l_num + + Call SelectQuery (R_Fields, R_tablename_str, R_WHERE_str) + + reset_url = "list.asp" + is_title_str = "배너 정보 수정" + +End if + + + +If b_l_sdate = "" then + + b_l_sdate_y = Year(now) + b_l_sdate_m = month(now) + b_l_sdate_d = day(now) + +Else + + b_l_sdate_arr = split(b_l_sdate,"-") + + b_l_sdate_y = b_l_sdate_arr(0) + b_l_sdate_m = b_l_sdate_arr(1) + b_l_sdate_d = b_l_sdate_arr(2) + +End if + +If b_l_edate = "" Then + + nm = DateAdd("m",1, now) + + b_l_edate_y = Year(nm) + b_l_edate_m = month(nm) + b_l_edate_d = day(nm) + +else + + b_l_edate_arr = split(b_l_edate, "-") + + b_l_edate_y = b_l_edate_arr(0) + b_l_edate_m = b_l_edate_arr(1) + b_l_edate_d = b_l_edate_arr(2) + +End if + +%> + + +
+ +
+
+

<%=is_title_str %>

+
+ +
+ + +
+ +
+
+ + +
+ +

+ + +
+ 배너생성 서식 작성 + + + + + + + + + + + + + + + + + + + + + + + + + + +
배너생성 서식
+ + + + ~ + + + + +
+ + + <%If b_l_img <> "" then%> +
<%=b_l_subject%> + <%'b_l_img%> 삭제 + <%End if%> +
http:// * 사용 예) www.nninc.co.kr
+ +
+
+ + + + +
+
+
+ +
+ +
+ + +
+ + + + diff --git a/manager/content/04banner/write_ok.asp b/manager/content/04banner/write_ok.asp new file mode 100644 index 0000000..25e4256 --- /dev/null +++ b/manager/content/04banner/write_ok.asp @@ -0,0 +1,108 @@ + + + + + +<% + +Set UploadForm = Server.CreateObject("DEXT.FileUpload") +UploadForm.DefaultPath = server.MapPath("/")&"\data\" + + +R_Fields = "b_l_num, info_url, b_l_code, b_l_img, b_l_url, b_l_chk, b_l_sdate, b_l_edate, b_l_subject, b_l_memo, b_l_wdate, b_l_mdate, b_l_img_del, b_l_img2" +R_Fields = R_Fields & ", b_l_sdate_y, b_l_sdate_m, b_l_sdate_d, b_l_edate_y, b_l_edate_m, b_l_edate_d" +R_Fields = R_Fields & ", b_l_img " + +Call RequestAll (R_Fields, "UploadForm") +b_l_memo = InputValue2(b_l_memo) + +If Len(b_l_sdate_m)=1 Then b_l_sdate_m = "0"&b_l_sdate_m +If Len(b_l_sdate_d)=1 Then b_l_sdate_d = "0"&b_l_sdate_d +If Len(b_l_edate_m)=1 Then b_l_edate_m = "0"&b_l_edate_m +If Len(b_l_edate_d)=1 Then b_l_edate_d = "0"&b_l_edate_d + +b_l_sdate = b_l_sdate_y&"-"&b_l_sdate_m&"-"&b_l_sdate_d +b_l_edate = b_l_edate_y&"-"&b_l_edate_m&"-"&b_l_edate_d + + +' ------------------- 저장공간인 [DATA]폴더가 없다면 생성 한다. ------------------- +FolderCreate(server.MapPath("/")&"/data/banner/") +' ------------------------------------------------------------------------------------ + + + + +If b_l_num = "" then ' 저장 + + + ' 이미지파일저장 + ' ***************************************** + strDir = server.mappath("/")&"\data\banner\" + ext_str = "jpg,gif" + b_l_img = wfile2("b_l_img", 10, strDir, ext_str) + ' ***************************************** + + + ' 순서 + ' ***************************************** + sql = " SELECT isnull(max(b_l_code),0) FROM banner" + Set Rs = Dbcon.Execute (sql) + b_l_code = rs(0) + rs.close : Set rs = Nothing + + b_l_code = b_l_code + 1 + ' ***************************************** + + + R_Fields_i = "info_url, b_l_code, b_l_img, b_l_url, b_l_chk, b_l_sdate, b_l_edate, b_l_subject, b_l_memo, b_l_wdate, b_l_mdate" + + b_l_wdate = getDateFm(now,3) + b_l_mdate = getDateFm(now,3) + + + Call InsertQuery(R_Fields_i, "banner") + + ok_url = "list.asp" + + +else ' 수정 + + + strDir = server.mappath("/") & "\data\banner\" + ext_str = "jpg,gif" + b_l_img = wfile2("b_l_img", 10, strDir, ext_str) + + + If b_l_img <> "" then ' 첨부파일이 있으면 + + Call dfile(strDir, b_l_img2) + + else + + b_l_img = b_l_img2 + + If b_l_img_del <> "" then ' 첨부파일만 삭제 + Call dfile(strDir, b_l_img2) + b_l_img = "" + End if + + End if + + + + R_Fields = "info_url, b_l_img, b_l_url, b_l_chk, b_l_sdate, b_l_edate, b_l_subject, b_l_memo, b_l_mdate" + + b_l_mdate = getDateFm(now,4) + + Call UpdateQuery (R_Fields, "banner", "where b_l_num="&b_l_num) + + ok_url = "list.asp" + + +End If + +Dbcon.close : Set Dbcon = nothing + +Call loding("0", ok_url) + +%> \ No newline at end of file diff --git a/manager/content/04banner/write_ui.asp b/manager/content/04banner/write_ui.asp new file mode 100644 index 0000000..49bd96d --- /dev/null +++ b/manager/content/04banner/write_ui.asp @@ -0,0 +1,188 @@ + + + + + +<% + + +' 파라미터정보 ************************************************************************************* +b_l_num = InputValue(request("b_l_num")) +prepage = InputValue(request("prepage")) +' ************************************************************************************************** + + +If b_l_num = "" then ' 등록 + + reset_url = "write.asp" + is_title_str = "신규 배너 생성" + +else ' 수정 + + ' 레코드필드 + R_Fields = "b_l_num, info_url, b_l_code, b_l_img, b_l_url, b_l_chk, b_l_sdate, b_l_edate, b_l_subject, b_l_memo, b_l_wdate, b_l_mdate" + R_tablename_str = "banner " + R_WHERE_str = " WHERE b_l_num="&b_l_num + + Call SelectQuery (R_Fields, R_tablename_str, R_WHERE_str) + + reset_url = "list.asp" + is_title_str = "배너 정보 수정" + +End if + + + +If b_l_sdate = "" then + + b_l_sdate_y = Year(now) + b_l_sdate_m = month(now) + b_l_sdate_d = day(now) + +Else + + b_l_sdate_arr = split(b_l_sdate,"-") + + b_l_sdate_y = b_l_sdate_arr(0) + b_l_sdate_m = b_l_sdate_arr(1) + b_l_sdate_d = b_l_sdate_arr(2) + +End if + +If b_l_edate = "" Then + + nm = DateAdd("m",1, now) + + b_l_edate_y = Year(nm) + b_l_edate_m = month(nm) + b_l_edate_d = day(nm) + +else + + b_l_edate_arr = split(b_l_edate, "-") + + b_l_edate_y = b_l_edate_arr(0) + b_l_edate_m = b_l_edate_arr(1) + b_l_edate_d = b_l_edate_arr(2) + +End if + +%> + + +
+ +
+
+

<%=is_title_str %>

+
+ +
+ + +
+ +
+
+ + +
+ +

+ + +
+ 배너생성 서식 작성 + + + + + + + + + + + + + + + + + + + + + + + + + + +
배너생성 서식
+ + + + ~ + + + + +
+ + + <%If b_l_img <> "" then%> +
<%=b_l_subject%> + <%'b_l_img%> 삭제 + <%End if%> +
http:// * 사용 예) www.nninc.co.kr
+ +
+
+ + + + +
+
+
+ +
+ +
+ + +
+ + + + diff --git a/manager/content/04banner2/config.asp b/manager/content/04banner2/config.asp new file mode 100644 index 0000000..04b78fb --- /dev/null +++ b/manager/content/04banner2/config.asp @@ -0,0 +1,18 @@ +<% +' 페이지정보 ************************************************* +v_page = InputValue(request("p_page")) +v_block = InputValue(request("p_block")) +v_search = InputValue(request("p_search")) +v_keyword = InputValue(request("p_keyword")) +mode = InputValue(request("mode")) ' -- a:관리자페이지 , u:일반유저페이지 +page_info = "p_page="&v_page&"&p_block="&v_block&"&p_search="&v_search&"&p_keyword="&v_keyword +' ************************************************************ + +' 권한정보 ************************************************************************************* +is_ad_cms = "Y" +is_read = "Y" +is_write = "Y" +is_delete = "Y" +is_reply = "Y" +' ************************************************************************************************** +%> \ No newline at end of file diff --git a/manager/content/04banner2/delete_ok.asp b/manager/content/04banner2/delete_ok.asp new file mode 100644 index 0000000..2f41821 --- /dev/null +++ b/manager/content/04banner2/delete_ok.asp @@ -0,0 +1,67 @@ + + + + + +<% + +' 파라미터정보 ************************************************************************************* +b_l_num = InputValue(request("b_l_num")) +status = InputValue(request("status")) +' ************************************************************************************************** + + +If status = "totdel" then ' 다중삭제 + + chk = Replace(request("chk")," ","") + arr_chk = Split(chk,",") + + For z=0 To UBound(arr_chk) + + ' 이미지 삭제 + SQL_I = "SELECT b_l_img FROM banner2 WHERE b_l_num = "&arr_chk(z) + Set Rs = Dbcon.Execute (SQL_I) + b_l_img = rs(0) + rs.close : Set rs = nothing + + strDir = server.mappath("/")&"\data\banner2\" + + If b_l_img <> "" then + + Call dfile(strDir, b_l_img) ' 삭제 + End if + + sql = " delete from banner2 where b_l_num = "&arr_chk(z) + Dbcon.execute sql + + next + +else ' 일반삭제 + + + + ' 이미지 삭제 + SQL_I = "SELECT b_l_img FROM banner2 WHERE b_l_num = "&b_l_num + Set Rs = Dbcon.Execute (SQL_I) + b_l_img = rs(0) + rs.close : Set rs = nothing + + strDir = server.mappath("/")&"\data\banner2\" + + + If b_l_img <> "" then + + Call dfile(strDir, b_l_img) ' 삭제 + End if + + sql = " delete from banner2 where b_l_num = "&b_l_num + Dbcon.execute sql + +End If + +Dbcon.close : Set Dbcon = nothing + +ok_url = "list.asp" +Call loding ("0",ok_url) + +%> \ No newline at end of file diff --git a/manager/content/04banner2/level_ok.asp b/manager/content/04banner2/level_ok.asp new file mode 100644 index 0000000..2626cfa --- /dev/null +++ b/manager/content/04banner2/level_ok.asp @@ -0,0 +1,43 @@ + + + + + +<% + +' 파라미터정보 *********************************************** + +status = InputValue(request("status")) +tot_level_chk = InputValue(request("tot_level_chk")) + +b_l_chk = InputValue(request("b_l_chk")) +b_l_num = InputValue(request("b_l_num")) + +' ************************************************************ + + +If status = "totlevel" then ' 다중 + + chk = Replace(request("chk")," ","") + arr_chk = Split(chk,",") + + For z=0 To UBound(arr_chk) + + SQL = " Update banner2 set b_l_chk = '"&tot_level_chk&"' Where b_l_num = "&arr_chk(z) + Dbcon.execute sql + + next + +else + + SQL = " Update banner2 set b_l_chk = '"&b_l_chk&"' Where b_l_num = "&b_l_num + Dbcon.execute sql + +End if + +Dbcon.close : Set Dbcon = Nothing + +ok_url = "list.asp" +Call loding("0",ok_url) + +%> \ No newline at end of file diff --git a/manager/content/04banner2/list.asp b/manager/content/04banner2/list.asp new file mode 100644 index 0000000..4b2ad84 --- /dev/null +++ b/manager/content/04banner2/list.asp @@ -0,0 +1,219 @@ + + + +<% + +' 테이블 기본 환경설정 ******************************************************************************** + +table = "banner2" ' 테이블명 +idx_field = "b_l_num" ' 기본키 +Query_OrderBy = "b_l_code desc" ' 정렬기준 필드 +Query_Fields = "b_l_num, info_url, b_l_code, b_l_img, b_l_url, b_l_chk, b_l_sdate, b_l_edate, b_l_subject, b_l_memo, b_l_wdate, b_l_mdate, b_main_img" ' 불러올 필드 + +' **************************************************************************************************** + +' 검색어가 있다면 +if v_keyword <> "" And v_search <> "" then + search_str = " AND "&v_search&" like '%"& replace(v_keyword, "'","''")&"%'" +End If +'검색조건 추가시 여기 계속 추가 + +If search_str<>"" Then + search_str = "where" & Mid(search_str,5) +End if + +' -----------------------------리스트 출력 쿼리문 생성----------------------------- +sql = "select "&Query_Fields&" from " & table & search_str & " ORDER BY " &Query_OrderBy +Set Rs = Dbcon.Execute (sql) +If rs.eof Then + vCnt = -1 +Else + vData = rs.getrows() + vCnt = UBound(vData,2) +End If +rs.close : Set rs = nothing + +' --------------------------------------------------------------------------------- + +%> + +
+

+
+ +
+ +
+
+

팝업존 리스트

+
+ +
+ + +
+ + + +

+ + +
+ +
+
+ +
    + +
  • +
  • +
  • +
  • +
+ +
+
+ +
+ +
+
+ +
+ 전체 <%=vCnt+1%>개 +
+ +
+
+ + + + + + +
+ + +
+ +
+ + + + +
+ 회원관리 수정/삭제/보기 + + + + + + + + + + + + + + + + + + + + + + + + + + + +<% +zz = 1 + +If vCnt > -1 Then + + For i=0 To vCnt + + Call arr2Value(Query_Fields, "vData", i) + + If b_l_chk = "Y" then + b_l_chk_str = "사용" + ElseIf b_l_chk = "N" then + b_l_chk_str = "중지" + End If + +%> + + + + + + + + + + + +<% + zz = zz + 1 + next +Else +%> + + + + + + + + + + + +<% +End If + +%> + + +
회원관리 서식
선택순서팝업존 이미지사용기간사용여부수정삭제
순서 위로 이동순서 아래로 이동 + + <%=b_l_subject%> + + + <%=b_l_sdate%> ~ <%=b_l_edate%><%=b_l_chk_str%>
+
+ +
+ +
+ + +
+ +
+ + +
+ + + + \ No newline at end of file diff --git a/manager/content/04banner2/move.asp b/manager/content/04banner2/move.asp new file mode 100644 index 0000000..4f5e17c --- /dev/null +++ b/manager/content/04banner2/move.asp @@ -0,0 +1,40 @@ + + + + + +<% + +b_l_num = InputValue(request("b_l_num")) ' --일련번호 +b_l_code = InputValue(request("b_l_code")) ' --정렬번호 +move = InputValue(request("move")) ' --이동 + + + + +if move = "up" then + sql = "select b_l_num, b_l_code from banner2 where b_l_code < "& b_l_code &" order by b_l_code desc" +ElseIf move = "down" then + sql = "select b_l_num, b_l_code from banner2 where b_l_code > "& b_l_code &" order by b_l_code" +End If +Set Rs = Dbcon.Execute (sql) + +If Not rs.eof Then + + v_rsb_l_num = trim(rs("b_l_num")) ' -- 대체할 디비번호 + v_rsb_l_code = trim(rs("b_l_code")) ' -- 대체할 값 + + + sql1 = "update banner2 set b_l_code = "& b_l_code &" where b_l_num = "& v_rsb_l_num + sql2 = "update banner2 set b_l_code = "& v_rsb_l_code &" where b_l_num = "& b_l_num + + Dbcon.execute sql1 + Dbcon.execute sql2 + +End If + +Dbcon.close : Set Dbcon = Nothing + +ok_url = "list.asp" +Call loding ("0", ok_url) +%> \ No newline at end of file diff --git a/manager/content/04banner2/write.asp b/manager/content/04banner2/write.asp new file mode 100644 index 0000000..58a5e59 --- /dev/null +++ b/manager/content/04banner2/write.asp @@ -0,0 +1,209 @@ + + + +<% + +' 파라미터정보 ************************************************************************************* +b_l_num = InputValue(request("b_l_num")) +prepage = InputValue(request("prepage")) +' ************************************************************************************************** + + +If b_l_num = "" then ' 등록 + + reset_url = "write.asp" + is_title_str = " 팝업존 생성" + +else ' 수정 + + ' 레코드필드 + R_Fields = "b_l_num, info_url, b_l_code, b_l_img, b_l_url, b_l_chk, b_l_sdate, b_l_edate, b_l_subject, b_l_memo, b_l_wdate, b_l_mdate, b_main_img" + R_tablename_str = "banner2 " + R_WHERE_str = " WHERE b_l_num="&b_l_num + + Call SelectQuery (R_Fields, R_tablename_str, R_WHERE_str) + + reset_url = "list.asp" + is_title_str = "팝업존 정보 수정" + +End if + + +If b_l_sdate = "" then + + b_l_sdate_y = Year(now) + b_l_sdate_m = month(now) + b_l_sdate_d = day(now) + +Else + + b_l_sdate_arr = split(b_l_sdate,"-") + + b_l_sdate_y = b_l_sdate_arr(0) + b_l_sdate_m = b_l_sdate_arr(1) + b_l_sdate_d = b_l_sdate_arr(2) + +End if + +If b_l_edate = "" Then + + nm = DateAdd("m",1, now) + + b_l_edate_y = Year(nm) + b_l_edate_m = month(nm) + b_l_edate_d = day(nm) + +else + + b_l_edate_arr = split(b_l_edate, "-") + + b_l_edate_y = b_l_edate_arr(0) + b_l_edate_m = b_l_edate_arr(1) + b_l_edate_d = b_l_edate_arr(2) + +End if + +%> + + +
+ +
+
+

<%=is_title_str %>

+
+ +
+ + +
+ +
+
+ + + + + +
+ +

+ + +
+ 팝업존생성 서식 작성 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
팝업존생성 서식
+ + + + ~ + + + +
+ + + <%If b_main_img <> "" then%> +
<%=b_l_subject%> + <%' $b_l_img%> 삭제 + <%End if%> +
* 사용 예) http://www.nninc.co.kr
+ +
+ /> + 새창으로 열기 +
+
+ + + + +
+
+
+ +
+ +
+ + +
+ + + + \ No newline at end of file diff --git a/manager/content/04banner2/write_ok.asp b/manager/content/04banner2/write_ok.asp new file mode 100644 index 0000000..4fa5b1a --- /dev/null +++ b/manager/content/04banner2/write_ok.asp @@ -0,0 +1,130 @@ + + + + + +<% + +Set UploadForm = Server.CreateObject("DEXT.FileUpload") +UploadForm.DefaultPath = server.MapPath("/")&"\data\" + + +R_Fields = "b_l_num, info_url, b_l_code, b_l_url, b_l_chk, b_l_sdate, b_l_edate, b_l_subject, b_l_memo, b_l_wdate, b_l_mdate, b_l_img_del, b_l_img2, b_main_img_del, b_main_img2, b_l_win" +R_Fields = R_Fields & " , b_l_sdate_y, b_l_sdate_m, b_l_sdate_d, b_l_edate_y, b_l_edate_m , b_l_edate_d " +Call RequestAll (R_Fields, "UploadForm") + +b_l_memo = InputValue2(UploadForm("b_l_memo")) + +If Len(b_l_sdate_m)=1 Then b_l_sdate_m = "0"& b_l_sdate_m +If Len(b_l_sdate_d)=1 Then b_l_sdate_d = "0"& b_l_sdate_d +If Len(b_l_edate_m)=1 Then b_l_edate_m = "0"& b_l_edate_m +If Len(b_l_edate_d)=1 Then b_l_edate_d = "0"& b_l_edate_d + +b_l_sdate = b_l_sdate_y&"-"&b_l_sdate_m&"-"&b_l_sdate_d +b_l_edate = b_l_edate_y&"-"&b_l_edate_m&"-"&b_l_edate_d + +If b_l_win <> "1" then b_l_win="0" + + +' ------------------- 저장공간인 [DATA]폴더가 없다면 생성 한다. ------------------- +FolderCreate(Server.mappath("\")&"/data/banner2/") +' ------------------------------------------------------------------------------------ + + + + +If b_l_num = "" then ' 저장 + + + ' 이미지파일저장 + ' ***************************************** + strDir = server.mappath("/") & "\data\banner2\" + ext_str = "jpg,gif" + b_l_img = wfile2("b_l_img", 10, strDir, ext_str) + b_main_img = wfile2("b_main_img", 10, strDir, ext_str) + ' ***************************************** + + + ' 순서 + ' ***************************************** + sql = " SELECT isnull(max(b_l_code),0) FROM banner2" + Set Rs = Dbcon.Execute (sql) + b_l_code = rs(0) + rs.close : Set rs = Nothing + + b_l_code = b_l_code + 1 + ' ***************************************** + + R_Fields_i = "info_url, b_l_code, b_l_img, b_l_url, b_l_chk, b_l_sdate, b_l_edate, b_l_subject, b_l_memo, b_l_wdate, b_l_mdate, b_main_img, b_l_win" + + b_l_wdate = getDateFm(now,3) + b_l_mdate = getDateFm(now,3) + + Call InsertQuery(R_Fields_i, "banner2") + + ok_url = "list.asp" + + +else ' 수정 + + strDir = server.mappath("/") & "\data\banner2\" + ext_str = "jpg,gif" + b_l_img = wfile2("b_l_img", 10, strDir, ext_str) + + + If b_l_img <> "" then ' 첨부파일이 있으면 + + Call dfile(strDir, b_l_img2) + + Else + + b_l_img = b_l_img2 + + If b_l_img_del <> "" then ' 첨부파일만 삭제 + Call dfile(strDir, b_l_img2) + b_l_img = "" + End if + + End if + + + strDir = server.mappath("/") & "\data\banner2\" + ext_str = "jpg,gif" + b_main_img = wfile2("b_main_img", 10, strDir, ext_str) + + + If b_main_img <> "" then ' 첨부파일이 있으면 + + Call dfile(strDir, b_main_img2) + + else + + b_main_img = b_main_img2 + + + If b_main_img_del <> "" then ' 첨부파일만 삭제 + Call dfile(strDir, b_main_img2) + b_main_img = "" + End if + + End if + + + + R_Fields = "info_url, b_l_img, b_l_url, b_l_chk, b_l_sdate, b_l_edate, b_l_subject, b_l_memo, b_l_mdate, b_main_img, b_l_win" + + b_l_mdate = getDateFm(now,4) + + Call UpdateQuery (R_Fields, "banner2", "where b_l_num="&b_l_num) + + ok_url = "list.asp" + + +End if + + +Dbcon.close : Set Dbcon = Nothing + +Call loding("0",ok_url) + +%> \ No newline at end of file diff --git a/manager/content/04banner2/write_ui.asp b/manager/content/04banner2/write_ui.asp new file mode 100644 index 0000000..e1a1d97 --- /dev/null +++ b/manager/content/04banner2/write_ui.asp @@ -0,0 +1,209 @@ + + + +<% + +' 파라미터정보 ************************************************************************************* +b_l_num = InputValue(request("b_l_num")) +prepage = InputValue(request("prepage")) +' ************************************************************************************************** + + +If b_l_num = "" then ' 등록 + + reset_url = "write.asp" + is_title_str = " 팝업존 생성" + +else ' 수정 + + ' 레코드필드 + R_Fields = "b_l_num, info_url, b_l_code, b_l_img, b_l_url, b_l_chk, b_l_sdate, b_l_edate, b_l_subject, b_l_memo, b_l_wdate, b_l_mdate, b_main_img" + R_tablename_str = "banner2 " + R_WHERE_str = " WHERE b_l_num="&b_l_num + + Call SelectQuery (R_Fields, R_tablename_str, R_WHERE_str) + + reset_url = "list.asp" + is_title_str = "팝업존 정보 수정" + +End if + + +If b_l_sdate = "" then + + b_l_sdate_y = Year(now) + b_l_sdate_m = month(now) + b_l_sdate_d = day(now) + +Else + + b_l_sdate_arr = split(b_l_sdate,"-") + + b_l_sdate_y = b_l_sdate_arr(0) + b_l_sdate_m = b_l_sdate_arr(1) + b_l_sdate_d = b_l_sdate_arr(2) + +End if + +If b_l_edate = "" Then + + nm = DateAdd("m",1, now) + + b_l_edate_y = Year(nm) + b_l_edate_m = month(nm) + b_l_edate_d = day(nm) + +else + + b_l_edate_arr = split(b_l_edate, "-") + + b_l_edate_y = b_l_edate_arr(0) + b_l_edate_m = b_l_edate_arr(1) + b_l_edate_d = b_l_edate_arr(2) + +End if + +%> + + +
+ +
+
+

<%=is_title_str %>

+
+ +
+ + +
+ +
+
+ + + + + +
+ +

+ + +
+ 팝업존생성 서식 작성 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
팝업존생성 서식
+ + + + ~ + + + +
+ + + <%If b_main_img <> "" then%> +
<%=b_l_subject%> + <%' $b_l_img%> 삭제 + <%End if%> +
* 사용 예) http://www.nninc.co.kr
+ +
+ /> + 새창으로 열기 +
+
+ + + + +
+
+
+ +
+ +
+ + +
+ + + + \ No newline at end of file diff --git a/manager/content/04ebook/config.asp b/manager/content/04ebook/config.asp new file mode 100644 index 0000000..87f96fd --- /dev/null +++ b/manager/content/04ebook/config.asp @@ -0,0 +1,18 @@ +<% +' 페이지정보 ************************************************* +v_page = InputValue(request("p_page")) +v_block = InputValue(request("p_block")) +v_search = InputValue(request("p_search")) +v_keyword = InputValue(request("p_keyword")) +mode = InputValue(request("mode"))' -- a:관리자페이지 , u:일반유저페이지 +page_info = "p_page="&v_page&"&p_block="&v_block&"&p_search="&v_search&"&p_keyword="&v_keyword +' ************************************************************ + +' 권한정보 ************************************************************************************* +is_ad_cms = "Y" +is_read = "Y" +is_write = "Y" +is_delete = "Y" +is_reply = "Y" +' ************************************************************************************************** +%> \ No newline at end of file diff --git a/manager/content/04ebook/delete_ok.asp b/manager/content/04ebook/delete_ok.asp new file mode 100644 index 0000000..6b4006d --- /dev/null +++ b/manager/content/04ebook/delete_ok.asp @@ -0,0 +1,102 @@ + + + + + +<% + +' 파라미터정보 ************************************************************************************* +eb_idx = InputValue(request("eb_idx")) +status = InputValue(request("status")) +' ************************************************************************************************** + + +If status = "totdel" Then ' 다중삭제 + + chk = Replace( request("chk"), " ", "") + arr_chk = Split(chk,",") + + For z=0 To UBound(arr_chk) + + sql = "select eb_pk, eb_logoimg from ebook where eb_idx= "&arr_chk(z) + Set Rs = Dbcon.Execute (sql) + If Not rs.eof Then + eb_pk = rs("eb_pk") + eb_logoimg = rs("eb_logoimg") + End If + rs.close : Set rs = nothing + + ' ebook 삭제 + sql = " delete from ebook where eb_pk = "&eb_pk + Dbcon.execute sql + + + ' 페이지 삭제 + sql = " delete from ebook_page where eb_pk = "&eb_pk + Dbcon.execute sql + + + + + Call dfolder (server.mappath("/")&"\data\ebook\"&eb_pk&"\middle") + Call dfolder (server.mappath("/")&"\data\ebook\"&eb_pk&"\small") + Call dfolder (server.mappath("/")&"\data\ebook\"&eb_pk) + +'''''''''''''''''''''''''''' + + ' 폴더삭제 +' exec("rm -rf ".$_SERVER[DOCUMENT_ROOT]."/data/ebook/".$eb_pk); + + + strDir = server.mappath("/")&"\data\ebook\logo\" + + If eb_logoimg <> "" then + Call dfile(strDir, eb_logoimg) + End if + + + next + +Else ' 일반삭제 + + + sql = "select eb_pk, eb_logoimg from ebook where eb_idx= "&eb_idx + Set Rs = Dbcon.Execute (sql) + + eb_pk = rs("eb_pk") + eb_logoimg = rs("eb_logoimg") + + rs.close : Set rs = nothing + + + ' ebook 삭제 + sql = " delete from ebook where eb_pk = "&eb_pk + Dbcon.execute sql + + + ' 페이지 삭제 + sql = " delete from ebook_page where eb_pk = "&eb_pk + Dbcon.execute sql + + ' 폴더삭제 + Call dfolder (server.mappath("/")&"\data\ebook\"&eb_pk&"\middle") + Call dfolder (server.mappath("/")&"\data\ebook\"&eb_pk&"\small") + Call dfolder (server.mappath("/")&"\data\ebook\"&eb_pk) + + strDir = server.mappath("/")&"\data\ebook\logo\" + + If eb_logoimg <> "" then + Call dfile(strDir, eb_logoimg) + End If + + +End If + +Dbcon.close : Set Dbcon = Nothing + +ok_url = "list.asp?"&page_info + +Call loding ("0", ok_url) + + +%> \ No newline at end of file diff --git a/manager/content/04ebook/level_ok.asp b/manager/content/04ebook/level_ok.asp new file mode 100644 index 0000000..0c98ee8 --- /dev/null +++ b/manager/content/04ebook/level_ok.asp @@ -0,0 +1,44 @@ + + + + + +<% + + +' 파라미터정보 *********************************************** +status = InputValue(request("status")) +tot_level_chk = InputValue(request("tot_level_chk")) + +eb_chk = InputValue(request("eb_chk")) +eb_idx = InputValue(request("eb_idx")) + + +' ************************************************************ + + +If status = "totlevel" then ' 다중삭제 + + chk = Replace( request("chk"), " ", "") + arr_chk = Split(chk,",") + + For z=0 To UBound(arr_chk) + + sql = " Update ebook set eb_chk = '"&tot_level_chk&"' Where eb_idx = "&arr_chk(z) + Dbcon.execute sql + next + + +else + + sql = " Update ebook set eb_chk = '"&eb_chk&"' Where eb_idx = "&eb_idx + Dbcon.execute sql + +End If + +Dbcon.close : Set Dbcon = Nothing + +ok_url = "list.asp?"&page_info + +Call loding ("0", ok_url) +%> \ No newline at end of file diff --git a/manager/content/04ebook/list.asp b/manager/content/04ebook/list.asp new file mode 100644 index 0000000..fa70171 --- /dev/null +++ b/manager/content/04ebook/list.asp @@ -0,0 +1,255 @@ + + + +<% + + +' 테이블 기본 환경설정 ******************************************************************************** + +table = "ebook" ' 테이블명 +idx_field = "eb_idx" ' 기본키 +oreder_filed = "eb_code ASC" ' 정렬기준 필드 +Query_Fields = "eb_idx, eb_subject, eb_code, eb_skin, eb_logoimg, eb_wdate, eb_mdate, eb_chk, eb_pk" ' 불러올 필드 + +v_pagesize = 20 ' '목록개수 +v_block = 10 ' '페이지개수 +' **************************************************************************************************** + + +' ---------------조합 쿼리문------------------------------------ +v_search = inputvalue(request("v_search")) +v_keyword = inputvalue(request("v_keyword")) +Query_Where = "" '기본 검색 + +If v_keyword <> "" then + Query_Where = Query_Where & " and "&v_search&" like '%"&v_keyword&"%'" +End If +'' 조건 있을때 여기에 계속 추가 + +If Query_Where<>"" Then + Query_Where2 = " WHERE " & Mid(Query_Where,5) +End If + +Query_OrderBy = " ORDER BY "&oreder_filed + +' --------------------------------------------------------------- + + + +' ---------------------전체 레코드 수 뽑기---------------------------------------- +sql = "select count("& idx_field &") as "& idx_field &" from "& table & Query_Where2 +Set Rs = Dbcon.Execute (sql) +recordcount = rs(0) '이 전체레코드갯수를 이용해서 페이지갯수를 뽑아 낼것이다. +rs.close : Set rs = nothing +' --------------------------------------------------------------------------------- + + +v_totalpage = int((recordcount-1)/v_pagesize)+1 '전체덩어리갯수 +v_page = request("p_page") +If v_page<>"" Then v_page = Int(v_page) + +If v_page = "" then + v_page = 1 +ElseIf v_page < 1 then + v_page = 1 +ElseIf v_page > v_totalpage then + v_page = v_totalpage +End If + + +' -----------------------------리스트 출력 쿼리문 생성----------------------------- +strSQL = " SELECT TOP "& v_pagesize &" "& Query_Fields &" FROM "& table &" WHERE "& idx_field &" NOT IN " +strSQL = strSQL & " ( SELECT TOP "& v_pagesize*(v_page-1) &" "& idx_field &" FROM "& table & Query_Where2 & Query_OrderBy &" ) " +strSQL = strSQL & Query_Where &" "& Query_OrderBy +Set rs = Dbcon.execute(strSQL) +If Not rs.eof Then + vData = rs.getrows() + vCnt = UBound(vData,2) +Else + vCnt = -1 +End If +rs.close : Set rs = Nothing +' --------------------------------------------------------------------------------- + + +%> + +
+

+
+ +
+ +
+
+

이북 리스트

+
+ +
+ + +
+ + + +

+ + +
+ +
+
+ +
    + +
  • +
  • +
  • +
  • +
+ +
+
+ +
+ +
+
+ +
+ 전체 <%=recordcount%>개 (페이지 <%=v_page%>/<%=v_totalpage%>) +
+ +
+
+ + + + + +
+ + +
+ 이북관리 수정/삭제/보기 + + + + + + + + + + + + + + + + + + + + + + + + + + +<% +If vCnt >-1 Then + + If v_page = 1 then + num = recordcount + else + num = recordcount - ((v_page - 1) * v_pagesize) + End if + + For i=0 To vCnt + + Call arr2Value(Query_Fields, "vData", i) + + If eb_chk = "Y" then + eb_chk_str = "사용" + ElseIf eb_chk = "N" then + eb_chk_str = "중지" + End if +%> + + + + + + + + + + + + +<% + num = num + 1 + next + +Else +%> + + + + + + + + + + + + +<% +End If +%> + + + +
이북관리 서식
선택순서제목사용여부수정삭제페이지
+ 순서 위로 이동순서 아래로 이동 + <%=eb_subject%><%=eb_chk_str%>
+
+ +
+ +
+ + +
+ <%page("list.asp")%> +
+ + +
+ +
+ + +
+ + + + diff --git a/manager/content/04ebook/move.asp b/manager/content/04ebook/move.asp new file mode 100644 index 0000000..83f2efa --- /dev/null +++ b/manager/content/04ebook/move.asp @@ -0,0 +1,39 @@ + + + + + +<% + +eb_idx = InputValue(request("eb_idx")) ' --일련번호 +eb_code = InputValue(request("eb_code")) ' --정렬번호 +move = InputValue(request("move")) ' --이동 + + + + +if move = "up" then + sql = "select eb_idx, eb_code from ebook where eb_code < "&eb_code &" order by eb_code desc" +ElseIf move = "down" then + sql = "select eb_idx, eb_code from ebook where eb_code > "&eb_code &" order by eb_code" +End If +Set Rs = Dbcon.Execute (sql) + +If Not rs.eof Then + + v_rseb_idx = trim(rs("eb_idx")) ' -- 대체할 디비번호 + v_rseb_code = trim(rs("eb_code")) ' -- 대체할 값 + + + sql1 = "update ebook set eb_code = "&eb_code &" where eb_idx = "&v_rseb_idx + sql2 = "update ebook set eb_code = "&v_rseb_code &" where eb_idx = "&eb_idx + Dbcon.execute sql1 + Dbcon.execute sql2 + +End If +rs.close : Set rs = Nothing +Dbcon.close : Set Dbcon = nothing + +ok_url = "list.asp" +Call loding ("0",ok_url) +%> \ No newline at end of file diff --git a/manager/content/04ebook/write.asp b/manager/content/04ebook/write.asp new file mode 100644 index 0000000..3ffca7f --- /dev/null +++ b/manager/content/04ebook/write.asp @@ -0,0 +1,135 @@ + + + +<% + +' 파라미터정보 ************************************************************************************* +eb_idx = InputValue(request("eb_idx")) ' --Pk +' ************************************************************************************************** + + +If eb_idx <> "" then ' --수정상태일때.. + + ' 레코드필드 + R_Fields = "eb_idx, eb_subject, eb_skin, eb_logoimg, eb_wdate, eb_mdate, eb_chk, eb_viewtype" + R_tablename_str = "ebook " + R_WHERE_str = " WHERE eb_idx="&eb_idx + + Call SelectQuery (R_Fields, R_tablename_str, R_WHERE_str) + + reset_url = "list.asp?"&page_info + is_title_str = "이북 정보 수정" + + +Else ' 새글등록 + + eb_chk = "Y" + eb_skin = "1" + eb_viewtype = "1" + + reset_url = "write.asp" + is_title_str = "신규 이북 생성" + +End if + +%> + + + + + + +
+ +
+
+

<%=is_title_str%>

+
+ +
+ + +
+ +
+
+ + + + +
+ +

+ + +
+ 이북생성 서식 작성 + + + + + + + + + + + + + + + + + + + + <%If eb_idx = "" then ' 등록일때만..%> + + + + + <%End if%> + + + + +
이북생성 서식
스킨설정 +   +   +  

+   +   +   +
페이지 형태  + +
* 페이지보기화면에서 추가가능
+ * 권장 사이즈 : 150 픽셀 x 48 픽셀 이하 + + <%If eb_logoimg <> "" then%> +
<%=eb_logoimg%> +  삭제 + <%End if%> +
+
+ + +
+
+
+ + + +
+ +
+ + +
+ + + + + + \ No newline at end of file diff --git a/manager/content/04ebook/write_ok.asp b/manager/content/04ebook/write_ok.asp new file mode 100644 index 0000000..17b02b4 --- /dev/null +++ b/manager/content/04ebook/write_ok.asp @@ -0,0 +1,122 @@ + + + + + +<% + +rootPath = server.MapPath("/") + +Set UploadForm = Server.CreateObject("DEXT.FileUpload") +UploadForm.DefaultPath = rootPath & "\data\" + +R_Fields = "eb_idx, eb_subject, eb_skin, eb_pages, eb_logoimg_org, eb_logoimg_del, eb_chk, eb_viewtype" + +Call RequestAll (R_Fields, "UploadForm") + +' $nsc_copyright = InputValue2($nsc_copyright); + + +' ------------------- 저장공간인 [DATA]폴더가 없다면 생성 한다. ------------------- +FolderCreate( rootPath & "\data\ebook\") +FolderCreate( rootPath & "\data\ebook\logo\") +' ------------------------------------------------------------------------------------ + +If eb_idx = "" then ' 저장 + + eb_pk = get_idx_add() + FolderCreate( rootPath & "\data\ebook\" & eb_pk & "\") + + + ' 순서 + ' ***************************************** + sql = " SELECT isnull(max(eb_code),0) FROM ebook" + Set Rs = Dbcon.Execute (sql) + eb_code = rs(0) + rs.close : Set rs = Nothing + + eb_code = eb_code + 1 + ' ***************************************** + + + ' 이미지파일저장 -------------------------------------- + strDir = rootPath & "\data\ebook\logo\" + ext_str = "jpg,gif" + eb_logoimg = wfile2("eb_logoimg", 10, strDir, ext_str) + ' ------------------------------------------------------ + + + + ' 기본페이지 설정 -------------------------------------- + If eb_pages <> "" then + + R_Fields_i = "ebp_subject, ebp_code, ebp_pageimg, ebp_wdate, ebp_mdate, ebp_chk, eb_pk" + + For z=1 To eb_pages + + ebp_subject = "page"&z + ebp_code = z + ebp_pageimg = "" + ebp_chk = "Y" + + ebp_wdate = getDateFm(now,3) + ebp_mdate = getDateFm(now,3) + + Call InsertQuery(R_Fields_i, "ebook_page") + + + next + End if + ' ------------------------------------------------------ + + + + R_Fields_i = "eb_subject, eb_code, eb_skin, eb_logoimg, eb_wdate, eb_mdate, eb_chk, eb_pk, eb_viewtype" + eb_wdate = getDateFm(now,3) + eb_mdate = getDateFm(now,3) + Call InsertQuery(R_Fields_i, "ebook") + + ok_url = "list.asp?"&page_info + + + +else ' 수정 + + + + strDir = rootPath & "\data\ebook\logo\" + ext_str = "jpg,gif" + eb_logoimg = wfile2("eb_logoimg", 10, strDir, ext_str) + + + If eb_logoimg <> "" then ' 첨부파일이 있으면 + + Call dfile(strDir, eb_logoimg_org) + + Else + + eb_logoimg = eb_logoimg_org + + If eb_logoimg_del <> "" then ' 첨부파일만 삭제 + Call dfile(strDir, eb_logoimg_org) + eb_logoimg = "" + End if + + End if + + + R_Fields_u = "eb_subject, eb_skin, eb_logoimg, eb_wdate, eb_mdate, eb_chk, eb_viewtype" + eb_mdate = getDateFm(now,3) + Call UpdateQuery (R_Fields_u, "ebook", "where eb_idx="&eb_idx) + + + ok_url = "list.asp?"&page_info + +End if + + +Dbcon.close : Set Dbcon = Nothing + +Call loding("0",ok_url) + +%> \ No newline at end of file diff --git a/manager/content/04ebook/write_ui.asp b/manager/content/04ebook/write_ui.asp new file mode 100644 index 0000000..4dda217 --- /dev/null +++ b/manager/content/04ebook/write_ui.asp @@ -0,0 +1,135 @@ + + + +<% + +' 파라미터정보 ************************************************************************************* +eb_idx = InputValue(request("eb_idx")) ' --Pk +' ************************************************************************************************** + + +If eb_idx <> "" then ' --수정상태일때.. + + ' 레코드필드 + R_Fields = "eb_idx, eb_subject, eb_skin, eb_logoimg, eb_wdate, eb_mdate, eb_chk, eb_viewtype" + R_tablename_str = "ebook " + R_WHERE_str = " WHERE eb_idx="&eb_idx + + Call SelectQuery (R_Fields, R_tablename_str, R_WHERE_str) + + reset_url = "list.asp?"&page_info + is_title_str = "이북 정보 수정" + + +Else ' 새글등록 + + eb_chk = "Y" + eb_skin = "1" + eb_viewtype = "1" + + reset_url = "write.asp" + is_title_str = "신규 이북 생성" + +End if + +%> + + + + + + +
+ +
+
+

<%=is_title_str%>

+
+ +
+ + +
+ +
+
+ + + + +
+ +

+ + +
+ 이북생성 서식 작성 + + + + + + + + + + + + + + + + + + + + <%If eb_idx = "" then ' 등록일때만..%> + + + + + <%End if%> + + + + +
이북생성 서식
스킨설정 +   +   +  

+   +   +   +
페이지 형태  + +
* 페이지보기화면에서 추가가능
+ * 권장 사이즈 : 150 픽셀 x 48 픽셀 이하 + + <%If eb_logoimg <> "" then%> +
<%=eb_logoimg%> +  삭제 + <%End if%> +
+
+ + +
+
+
+ + + +
+ +
+ + +
+ + + + + + \ No newline at end of file diff --git a/manager/content/04ebook_page/config.asp b/manager/content/04ebook_page/config.asp new file mode 100644 index 0000000..1288891 --- /dev/null +++ b/manager/content/04ebook_page/config.asp @@ -0,0 +1,12 @@ +<% + +' security_ad_cms(); ' 관리자페이지 접속권한 체크 + +' 권한정보 ************************************************************************************* +is_ad_cms = "Y" +is_read = "Y" +is_write = "Y" +is_delete = "Y" +is_reply = "Y" +' ************************************************************************************************** +%> \ No newline at end of file diff --git a/manager/content/04ebook_page/delete2_ok.asp b/manager/content/04ebook_page/delete2_ok.asp new file mode 100644 index 0000000..1002047 --- /dev/null +++ b/manager/content/04ebook_page/delete2_ok.asp @@ -0,0 +1,46 @@ + + + + + +<% + +eb_pk = InputValue(request("eb_pk")) +ebp_idx = InputValue(request("ebp_idx")) + + +sql = "Select ebp_pageimg from ebook_page where ebp_idx="&ebp_idx +Set Rs = Dbcon.Execute (sql) +ebp_pageimg = rs("ebp_pageimg") +rs.close : Set rs = nothing + + + +If ebp_pageimg <> "" then + + rootPath = server.MapPath("/") + + ' 이미지 삭제 + strDir = rootPath & "\data\ebook\"&eb_pk&"\" + strDir2 = rootPath & "\data\ebook\"&eb_pk&"\middle\" + strDir3 = rootPath & "\data\ebook\"&eb_pk&"\small\" + + Call dfile( strDir, ebp_pageimg) + Call dfile( strDir2, ebp_pageimg) + Call dfile( strDir3, ebp_pageimg) + + + ebp_pageimg = "" + +End if + + +R_Fields = "ebp_mdate, ebp_pageimg" +ebp_mdate = getDateFm(now,3) +Call UpdateQuery (R_Fields, "ebook_page", "where ebp_idx="&ebp_idx) + +Dbcon.close : Set Dbcon = nothing + +ok_url = "write.asp?eb_pk="&eb_pk +Call loding("0",ok_url) +%> \ No newline at end of file diff --git a/manager/content/04ebook_page/delete_ok.asp b/manager/content/04ebook_page/delete_ok.asp new file mode 100644 index 0000000..d847eff --- /dev/null +++ b/manager/content/04ebook_page/delete_ok.asp @@ -0,0 +1,81 @@ + + + + +<% + +rootPath = server.MapPath("/") +Set UploadForm = Server.CreateObject("DEXT.FileUpload") +UploadForm.DefaultPath = rootPath&"\data\" + + +' 파라미터정보 ************************************************************************************* +eb_pk = InputValue(UploadForm("eb_pk")) +ebp_idx = InputValue(UploadForm("ebp_idx")) +status = InputValue(UploadForm("status")) +' ************************************************************************************************** + + + +If status = "totdel" then ' 다중삭제 + + chk = Replace(UploadForm("chk")," ", "") + arr_chk = Split(chk,",") + + For z=0 To UBound(arr_chk) + + sql = "Select ebp_pageimg from ebook_page where ebp_idx="&arr_chk(z) + Set Rs = Dbcon.Execute (sql) + ebp_pageimg = rs("ebp_pageimg") + rs.close : Set rs = nothing + + + ' 이미지 삭제 + strDir = rootPath & "\data\ebook\"&eb_pk&"\" + strDir2 = rootPath & "\data\ebook\"&eb_pk&"\middle\" + strDir3 = rootPath & "\data\ebook\"&eb_pk&"\small\" + + If ebp_pageimg <> "" then + Call dfile( strDir, ebp_pageimg) ' 삭제 + Call dfile( strDir2, ebp_pageimg_org) + Call dfile( strDir3, ebp_pageimg_org) + End if + + ' 페이지 삭제 + sql = " delete from ebook_page where ebp_idx="&arr_chk(z) + Dbcon.execute sql + next + + +Else ' 일반삭제 + + ' 삭제하기 + + sql = "Select ebp_pageimg from ebook_page where ebp_idx="&ebp_idx + Set Rs = Dbcon.Execute (sql) + ebp_pageimg = rs("ebp_pageimg") + + + ' 이미지 삭제 + strDir = rootPath & "\data\ebook\"&eb_pk&"\" + strDir2 = rootPath & "\data\ebook\"&eb_pk&"\middle\" + strDir3 = rootPath & "\data\ebook\"&eb_pk&"\small\" + + If ebp_pageimg <> "" then + Call dfile( strDir, ebp_pageimg) ' 삭제 + Call dfile( strDir2, ebp_pageimg_org) + Call dfile( strDir3, ebp_pageimg_org) + End if + + ' 페이지 삭제 + sql = " delete from ebook_page where ebp_idx="&ebp_idx + Dbcon.execute sql + +End if + +Dbcon.close : Set Dbcon = Nothing + +ok_url = "write_ui.asp?eb_pk="&eb_pk +Call loding ("0", ok_url) + +%> \ No newline at end of file diff --git a/manager/content/04ebook_page/move.asp b/manager/content/04ebook_page/move.asp new file mode 100644 index 0000000..27873cd --- /dev/null +++ b/manager/content/04ebook_page/move.asp @@ -0,0 +1,45 @@ + + + +<% + +eb_pk = InputValue(request("eb_pk")) +ebp_idx = InputValue(request("ebp_idx")) ' --일련번호 +ebp_code = InputValue(request("ebp_code")) ' --정렬번호 +move = InputValue(request("move")) ' --이동 + + + + + +if move = "up" then + sql = "select top 1 ebp_idx, ebp_code from ebook_page where eb_pk="&eb_pk&" AND ebp_code < "&ebp_code &" order by ebp_code desc" +ElseIf move = "down" then + sql = "select top 1 ebp_idx, ebp_code from ebook_page where eb_pk="&eb_pk&" AND ebp_code > "&ebp_code &" order by ebp_code" +End if + +Set Rs = Dbcon.Execute (sql) + +If Not rs.eof Then + + v_rsebp_idx = rs("ebp_idx") ' -- 대체할 디비번호 + v_rsebp_code = rs("ebp_code") ' -- 대체할 값 + + + sql1 = "update ebook_page set ebp_code = "&ebp_code &" where ebp_idx = "&v_rsebp_idx + sql2 = "update ebook_page set ebp_code = "&v_rsebp_code &" where ebp_idx = "&ebp_idx + Dbcon.execute sql1 + Dbcon.execute sql2 + +End If + + +rs.close : Set rs = nothing + +Dbcon.close : Set Dbcon = nothing + +ok_url = "write_ui.asp?eb_pk="&eb_pk + +Call loding ("0",ok_url) + +%> \ No newline at end of file diff --git a/manager/content/04ebook_page/write.asp b/manager/content/04ebook_page/write.asp new file mode 100644 index 0000000..780bd2b --- /dev/null +++ b/manager/content/04ebook_page/write.asp @@ -0,0 +1,251 @@ + + + +<% + + + +eb_pk = InputValue(request("eb_pk")) + + +if is_write <> "Y" Then + Call back_back("쓰기권한이 없습니다.") +End If + +%> + + +
+ +
+
+

이북 리스트

+
+ +
+ + +
+ +

현재페이지경로: 이북리스트 > <%=get_ebsubject(eb_pk)%>     size: 880px * 1245px

+ + +
+
+ +
+ +
+
+ + +
    +
  • :
  • + +
  • + +
  • :
  • + +
  • + +
  •     
  • + + + +
  • + +
+ + +
+ +
+ +
+ + +
+
+ + + + + + + +
+ +
+ 페이지관리 작성/수정 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <% + ' 테이블 기본 환경설정 ******************************************************************************** + table = "ebook_page" ' 테이블명 + idx_field = "ebp_idx" ' 기본키 + oreder_filed = "ebp_code ASC" ' 정렬기준 필드 + Query_Fields = "ebp_idx, ebp_subject, ebp_code, ebp_pageimg, ebp_wdate, ebp_mdate, ebp_chk, eb_pk" ' 불러올 필드 + ' **************************************************************************************************** + + ' ---------------조합 쿼리문------------------------------------ + If v_keyword <> "" then + search_str = " AND "&v_search&" like '%"&v_keyword&"%'" + End if + + Query_OrderBy = " ORDER BY "&oreder_filed + ' --------------------------------------------------------------- + + ' -----------------------------리스트 출력 쿼리문 생성----------------------------- + sql = "select "&Query_Fields&" from "&table&" WHERE eb_pk = "&eb_pk&"" + sql = sql & search_str & search_str2 & Query_OrderBy + Set Rs = Dbcon.Execute (sql) + If Not rs.eof Then + vData = rs.getrows() + vCnt = UBound(vData,2) + Else + vCnt = -1 + End If + rs.close : Set rs = nothing + ' --------------------------------------------------------------------------------- + + + + If vCnt>-1 then + zz = 1 + + For i=0 To vCnt + + ' 필드갯수만큼 ($Query_Fields).가지고온다.. + Call arr2Value(Query_Fields, "vData", i) + + + If ebp_chk ="Y" then + ebp_chk_str = "사용" + else + ebp_chk_str = "중지" + End If + + %> + + + + + + + + + + + + + + + + + + + <% + zz = zz + 1 + num = num - 1 + next + + + else ' 게시할 목록이 없다면 + + %> + + + + + + + + + + + + <% + End if + %> + + + +
페이지관리 서식
선택순서페이지이미지사용여부수정삭제
+ 순서 위로 이동순서 아래로 이동 + + + + + + + + + + + + + + + <%If ebp_pageimg <> "" then%> +
<%=ebp_subject%>
+ + +
+ <%End if%> +
+ +
+
+ + + + +
+ +
+ + +
+ + + + + \ No newline at end of file diff --git a/manager/content/04ebook_page/write_ok.asp b/manager/content/04ebook_page/write_ok.asp new file mode 100644 index 0000000..489074c --- /dev/null +++ b/manager/content/04ebook_page/write_ok.asp @@ -0,0 +1,127 @@ + + + + + +<% + +rootPath = server.MapPath("/") +Set UploadForm = Server.CreateObject("DEXT.FileUpload") +UploadForm.DefaultPath = rootPath&"\data\" + + + + +R_Fields = "ebp_idx, ebp_subject, ebp_code, ebp_wdate, ebp_mdate, ebp_chk, eb_pk" + +Call RequestAll (R_Fields, "UploadForm") + + +' ------------------- 저장공간인 [DATA]폴더가 없다면 생성 한다. ------------------- +FolderCreate( rootPath & "\data\ebook\"&eb_pk&"\") +FolderCreate( rootPath & "\data\ebook\"&eb_pk&"\middle\") +FolderCreate( rootPath & "\data\ebook\"&eb_pk&"\small\") +' ------------------------------------------------------------------------------------ + + +If ebp_idx = "" then ' 저장 + + + ' 이미지파일저장 + ' ***************************************** + strDir = rootPath & "\data\ebook\"&eb_pk&"\" + ext_str = "jpg,gif" + ebp_pageimg = wfile2("ebp_pageimg", 10, strDir, ext_str) + ' ***************************************** + + ' 썸네일1 + Call GD2_make_thumb(413, 584, ebp_pageimg, strDir, strDir&"middle\" ) + + ' 썸네일2 + Call GD2_make_thumb(50, 71, ebp_pageimg, strDir, strDir&"small\" ) + + + + ' 순서 + ' ***************************************** + sql = " SELECT isnull(max(ebp_code),0) FROM ebook_page WHERE eb_pk = "&eb_pk + Set Rs = Dbcon.Execute (sql) + ebp_code = rs(0) + rs.close : Set rs = Nothing + + ebp_code = ebp_code + 1 + ' ***************************************** + + + R_Fields_i = "ebp_subject, ebp_code, ebp_pageimg, ebp_wdate, ebp_mdate, ebp_chk, eb_pk" + + ebp_wdate = getDateFm(now,3) + ebp_mdate = getDateFm(now,3) + ebp_chk = "Y" + + Call InsertQuery (R_Fields_i, "ebook_page") + + ok_url = "write_ui.asp?eb_pk="&eb_pk + + +Else ' 수정 + + ebp_subject = UploadForm("ebp_subject_"&ebp_idx) ' 수정이름 + ebp_pageimg = UploadForm("ebp_pageimg_"&ebp_idx) ' 수정파일 + ebp_pageimg_name = UploadForm("ebp_pageimg_"&ebp_idx&"_name") ' 수정파일 + + ebp_pageimg_org = UploadForm("ebp_pageimg_org_"&ebp_idx) ' 수정파일 + ebp_pageimg_del = UploadForm("ebp_pageimg_del_"&ebp_idx) ' 수정파일 + + + strDir = rootPath & "\data\ebook\"&eb_pk&"\" + strDir2 = rootPath & "\data\ebook\"&eb_pk&"\middle\" + strDir3 = rootPath & "\data\ebook\"&eb_pk&"\small\" + + + + If ebp_pageimg<>"" Then + + ext_str = "jpg,gif" + ebp_pageimg = wfile2("ebp_pageimg_"&ebp_idx, 10, strDir, ext_str) + + ' 썸네일1 + Call GD2_make_thumb(413, 584, ebp_pageimg, strDir, strDir&"middle\" ) + + ' 썸네일2 + Call GD2_make_thumb(50, 71, ebp_pageimg, strDir, strDir&"small\" ) + + Call dfile(strDir, ebp_pageimg_org) + Call dfile(strDir2, ebp_pageimg_org) + Call dfile(strDir3, ebp_pageimg_org) + + + Else + + ebp_pageimg = ebp_pageimg_org + If ebp_pageimg_del <> "" then ' 첨부파일만 삭제 + Call dfile(strDir, ebp_pageimg_org) + Call dfile(strDir2, ebp_pageimg_org) + Call dfile(strDir3, ebp_pageimg_org) + ebp_pageimg = "" + End if + + End If + + + + R_Fields = "ebp_subject, ebp_mdate, ebp_pageimg" + + ebp_mdate = getDateFm(now,3) + + Call UpdateQuery (R_Fields, "ebook_page", "where ebp_idx="&ebp_idx) + + ok_url = "write_ui.asp?eb_pk="&eb_pk + +End If + +Dbcon.close : Set Dbcon = nothing + +Call loding("0", ok_url) + +%> \ No newline at end of file diff --git a/manager/content/04ebook_page/write_ui.asp b/manager/content/04ebook_page/write_ui.asp new file mode 100644 index 0000000..99988a1 --- /dev/null +++ b/manager/content/04ebook_page/write_ui.asp @@ -0,0 +1,256 @@ + + + +<% + + + +eb_pk = InputValue(request("eb_pk")) + + +if is_write <> "Y" Then + Call back_back("쓰기권한이 없습니다.") +End If + +%> + + +
+ +
+
+

이북 리스트

+
+ +
+ + +
+ +

현재페이지경로: 이북리스트 > <%=get_ebsubject(eb_pk)%>     size: 880px * 1245px

+ + +
+
+ +
+ +
+
+ + +
    +
  • :
  • + +
  • + +
  • :
  • + +
  • + +
  •     
  • + + + +
  • + +
+ + +
+ +
+ +
+ + +
+
+ + + + + + + +
+ +
+ 페이지관리 작성/수정 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <% + ' 테이블 기본 환경설정 ******************************************************************************** + table = "ebook_page" ' 테이블명 + idx_field = "ebp_idx" ' 기본키 + oreder_filed = "ebp_code ASC" ' 정렬기준 필드 + Query_Fields = "ebp_idx, ebp_subject, ebp_code, ebp_pageimg, ebp_wdate, ebp_mdate, ebp_chk, eb_pk" ' 불러올 필드 + ' **************************************************************************************************** + + ' ---------------조합 쿼리문------------------------------------ + If v_keyword <> "" then + search_str = " AND "&v_search&" like '%"&v_keyword&"%'" + End if + + Query_OrderBy = " ORDER BY "&oreder_filed + ' --------------------------------------------------------------- + + ' -----------------------------리스트 출력 쿼리문 생성----------------------------- + sql = "select "&Query_Fields&" from "&table&" WHERE eb_pk = "&eb_pk&"" + sql = sql & search_str & search_str2 & Query_OrderBy + Set Rs = Dbcon.Execute (sql) + If Not rs.eof Then + vData = rs.getrows() + vCnt = UBound(vData,2) + Else + vCnt = -1 + End If + rs.close : Set rs = nothing + ' --------------------------------------------------------------------------------- + + + + If vCnt>-1 then + zz = 1 + + For i=0 To vCnt + + ' 필드갯수만큼 ($Query_Fields).가지고온다.. + Call arr2Value(Query_Fields, "vData", i) + + + If ebp_chk ="Y" then + ebp_chk_str = "사용" + else + ebp_chk_str = "중지" + End If + + %> + + + + + + + + + + + + + + + + + + + <% + zz = zz + 1 + num = num - 1 + next + + + else ' 게시할 목록이 없다면 + + %> + + + + + + + + + + + + <% + End if + %> + + + +
페이지관리 서식
선택순서페이지이미지사용여부수정삭제
+ 순서 위로 이동순서 아래로 이동 + + + + + + + + + + + + + + + <%If ebp_pageimg <> "" then%> +
<%=ebp_subject%>
+ + +
+ <%End if%> +
+ +
+
+ + + + + + +
+
+
+
+ +
+ + +
+ + + + + \ No newline at end of file diff --git a/manager/content/04emoticon/config.asp b/manager/content/04emoticon/config.asp new file mode 100644 index 0000000..2d29629 --- /dev/null +++ b/manager/content/04emoticon/config.asp @@ -0,0 +1,19 @@ +<% +'//security_ad_cms(); //관리자페이지 접속권한 체크 + +'//권한정보 ************************************************************************************* +is_ad_cms = "Y" +is_read = "Y" +is_write = "Y" +is_delete = "Y" +is_reply = "Y" +'//************************************************************************************************** + +'//$browser_title = "사이트환경설정"; //페이지타이틀 명 + +max_depth_option = 3 + +'//현재 메뉴 idx +mm_ct_idx = "6" + +%> \ No newline at end of file diff --git a/manager/content/04emoticon/delete_ok.asp b/manager/content/04emoticon/delete_ok.asp new file mode 100644 index 0000000..0f1b5af --- /dev/null +++ b/manager/content/04emoticon/delete_ok.asp @@ -0,0 +1,47 @@ + + +<% +Dim s_num, status +Dim sql, ok_url + +'//파라미터정보 ************************************************************************************* +s_num = InputValue( request("s_num") ) +status = InputValue( request("status") ) +chk = InputValue( request("chk") ) +chk = Replace(chk, " ", "") +chk = split(chk, ",") +'//************************************************************************************************** + +If status = "totdel" Then '다중삭제 + + For z = 0 To UBound(chk) + + sql = " delete from emt_category where s_num = '" & chk(z) & "'" + dbcon.execute sql + + '이모티콘 삭제 + sql = "delete from emt where s_num = '" & chk(z) & "'" + dbcon.execute sql + next + + Set rs_3 = Nothing + + +Else '//일반삭제 + + sql = " delete from emt_category where s_num = '" & s_num & "'" + dbcon.execute sql + + '이모티콘 삭제 + sql = "delete from emt where s_num = '" & s_num & "'" + dbcon.execute sql + +End if + + +If ct_ref = "0" then ct_ref = "" + +ok_url = "write.asp" + +Call loding ("0", ok_url) +%> \ No newline at end of file diff --git a/manager/content/04emoticon/level_ok.asp b/manager/content/04emoticon/level_ok.asp new file mode 100644 index 0000000..cd5251a --- /dev/null +++ b/manager/content/04emoticon/level_ok.asp @@ -0,0 +1,57 @@ + + +<% +Dim status, tot_level_chk, ct_chk, ct_idx, ct_ref, chk, sql, ok_url + +'//파라미터정보 *********************************************** +status = InputValue( request.Form("status") ) +tot_level_chk = InputValue( request.Form("tot_level_chk") ) + +ct_chk = InputValue( request.Form("ct_chk") ) +ct_idx = InputValue( request.Form("ct_idx") ) + +ct_ref = InputValue( request.Form("ct_ref") ) + +chk = InputValue( request.Form("chk") ) +chk = Replace(chk, " ", "") +chk = split(chk, ",") +'//************************************************************ + + +If status = "totlevel" Then '//다중삭제 + + For z=0 To UBound(chk) + + sql = " Update manager_menu set ct_chk = '" & tot_level_chk & "' Where ct_idx = " & chk(z) + dbcon.execute sql + + + '//자주쓰는 메뉴 부분 ( + sql = "update manager_favorites set ct_chk='" & tot_level_chk & "' WHERE mm_ct_idx = " & chk(z) + dbcon.execute sql + + next + + +Else + + sql = " Update manager_menu set ct_chk = '" & ct_chk & "' Where ct_idx = " & ct_idx + dbcon.execute sql + + '//자주쓰는 메뉴 부분 ( + sql = "update manager_favorites set ct_chk='" & ct_chk & "' WHERE mm_ct_idx = " & ct_idx + dbcon.execute sql + +End if + + +If ct_ref = "0" then ct_ref = "" + +ok_url = "write.asp?ct_idx=" & ct_ref + +Call loding ("0", ok_url) + + +dbcon.close +Set dbcon = nothing +%> \ No newline at end of file diff --git a/manager/content/04emoticon/move.asp b/manager/content/04emoticon/move.asp new file mode 100644 index 0000000..9bca46f --- /dev/null +++ b/manager/content/04emoticon/move.asp @@ -0,0 +1,46 @@ + + +<% +Dim s_num, s_code, move +Dim sql, sql1, sql2 + + +s_num = InputValue( request.queryString("s_num") ) '//--일련번호 +s_code = InputValue( request.queryString("s_code") ) '//--정렬번호 +move = InputValue( request.queryString("move") ) '//--이동 + + + +if move = "up" then + sql = "select top 1 s_num, s_code from emt_category where s_code < " & s_code & " order by s_code desc" + +Elseif move = "down" then + sql = "select top 1 s_num, s_code from emt_category where s_code > " & s_code & " order by s_code" + +End if + +Set rs = dbcon.execute( sql ) + +If Not( rs.bof Or rs.eof ) Then + + v_rss_num = rs("s_num") '//-- 대체할 디비번호 + v_rss_code = rs("s_code") '//-- 대체할 값 + + + sql1 = "update emt_category set s_code = " & s_code & " where s_num = " & v_rss_num + sql2 = "update emt_category set s_code = " & v_rss_code & " where s_num = " & s_num + + dbcon.execute sql1 + dbcon.execute sql2 + + +End if + +If ct_ref = "0" Then ct_ref = "" + +ok_url = "write.asp" +Call loding ("0", ok_url) + +dbcon.close +Set dbcon = nothing +%> \ No newline at end of file diff --git a/manager/content/04emoticon/write.asp b/manager/content/04emoticon/write.asp new file mode 100644 index 0000000..1ec13f8 --- /dev/null +++ b/manager/content/04emoticon/write.asp @@ -0,0 +1,233 @@ + +<%'//*************************************************************************************%> + +<%'//*************************************************************************************%> + +<% +Dim sql, table, idx_field, oreder_filed, Query_Fields, search_str, search_str2, Query_OrderBy +Dim s_num, s_code, s_menuname, s_chk, s_wdate + +'//쓰기권한체크************************************************************************************* +if is_write <> "Y" Then + back_back "쓰기권한이 없습니다." +End if +'//************************************************************************************************** + + +'//테이블 기본 환경설정 ******************************************************************************** +table = "emt_category" '//테이블명 +idx_field = "s_num" '//기본키 +oreder_filed = "s_code ASC" '//정렬기준 필드 +Query_Fields = "s_num, s_code, s_menuname, s_chk, s_wdate" '//불러올 필드 +'//**************************************************************************************************** + +'//---------------조합 쿼리문------------------------------------ +If v_keyword <> "" then + search_str = " AND " & v_search & " like '%" & v_keyword & "%'" +End if + +Query_OrderBy = " ORDER BY " & oreder_filed +'//--------------------------------------------------------------- + +'//-----------------------------리스트 출력 쿼리문 생성----------------------------- +sql = "select " & Query_Fields & " from " & table & " WHERE s_num <> '0'" +sql = sql & search_str & search_str2 & Query_OrderBy + +'response.write sql +Set col = dbcon.execute( sql ) +If col.bof Or col.eof Then + list_data = null +Else + list_data = col.getrows +End if +Set col = nothing +'//--------------------------------------------------------------------------------- + +%> + + +
+ +
+
+

이모티콘분류관리

+
+ +
+ + +
+ +

이모티콘 분류

+ + +
+ +
+ +
+ + +
    +
  • :
  • + +
  • + +
  • + +
  • +
+ + +
+ +
+ +
+ + +
+
+ + + + +
+ +
+ 분류관리 작성/수정 + + + + + + + + + + + + + + + + + + + + + + + + + + + +<% + '//bbs_list_data + If IsNull( list_data ) Then +%> + + + + + + + + +<% + Else + For zz = 1 To UBound(list_data, 2)+1 + Call arr2Value( Query_Fields, "list_data", zz-1 ) + + If s_chk = "Y" then + s_chk_str = "사용" + else + s_chk_str = "중지" + End if +%> + + + + + + + + + + <% + Next + End if + %> + +
분류관리 서식
선택순서분류사용여부수정삭제
+ 순서 위로 이동순서 아래로 이동 + + + <%=s_chk_str%> + + + + + <%If s_num <> "9" then%> + + <%End if%> +
+
+ +
+ +
+ + +
+ +
+ + +
+ + +
+
+ + + +
+
+ + \ No newline at end of file diff --git a/manager/content/04emoticon/write_ok.asp b/manager/content/04emoticon/write_ok.asp new file mode 100644 index 0000000..57b19b5 --- /dev/null +++ b/manager/content/04emoticon/write_ok.asp @@ -0,0 +1,65 @@ + + +<% +Dim R_Fields, rs +Dim s_num, s_code, s_menuname, s_chk, s_wdate + +R_Fields = "s_num, s_code, s_menuname, s_chk, s_wdate" + +Call RequestAll (R_Fields, "request.form") + +If s_num = "" then '//저장 + + + '//순서 + '//***************************************** + sql = "select max(s_code) as s_code from emt_category" + 'response.write sql + 'response.end + Set rs = dbcon.execute( sql ) + + s_code = rs("s_code") + + if IsNull( s_code ) or s_code = "" then + s_code = 1 + else + s_code = s_code + 1 + End if + '//***************************************** + + + + + R_Fields_i = "s_code, s_menuname, s_chk, s_wdate" + + s_wdate = getDateFm(Now(), 3) + + Call InsertQuery (R_Fields_i, "emt_category") + + ok_url = "write.asp?s_num=" & ct_ref + + +Else '//수정 + + + R_Fields = "s_menuname, s_wdate" + + s_wdate = getDateFm(Now(), 3) + + Call UpdateQuery (R_Fields, "emt_category", "where s_num=" & s_num) + + + If ct_ref = "0" then ct_ref = "" + + ok_url = "write.asp?s_num=" & ct_ref + + +End if + +dbcon.close +Set dbcon = nothing + +Call loding("0",ok_url) + + +%> \ No newline at end of file diff --git a/manager/content/04newsletter/basic.css b/manager/content/04newsletter/basic.css new file mode 100644 index 0000000..b829a38 --- /dev/null +++ b/manager/content/04newsletter/basic.css @@ -0,0 +1,17 @@ +html, body, div, span, object, iframe, +h1, h2, h3, h4, h5, h6, p, blockquote, pre, +a, abbr, address, big, cite, code, +del, dfn, em, font, img, ins, q, s, samp, +small, strike, strong, sub, sup, tt, var, +b, u, i, +dl, dt, dd, ol, ul, li, +fieldset, form, label, legend, +table, caption, tbody, tfoot, thead, tr, th, td +{margin:0; padding:0; border:0;} +body,table,td,div {font-size: 12px; font-family: Dotum, sans-serif; color: #000000;} +div,td {vertical-align:top;} +td {line-height:16px;} + +a, a:link {color: #575757; text-decoration: none; cursor: pointer; } +a:visited {color: #575757;} +a:hover, a:active, a:focus {color: #575757; text-decoration: underline;} \ No newline at end of file diff --git a/manager/content/04newsletter/list.asp b/manager/content/04newsletter/list.asp new file mode 100644 index 0000000..43599a8 --- /dev/null +++ b/manager/content/04newsletter/list.asp @@ -0,0 +1,31 @@ + + + + + + + +
+ +
+
+

뉴스레터 관리

+
+ +
+ + +
+

+ + + +
+ + +
+ + + diff --git a/manager/content/04poll/conf.asp b/manager/content/04poll/conf.asp new file mode 100644 index 0000000..8f7499e --- /dev/null +++ b/manager/content/04poll/conf.asp @@ -0,0 +1,105 @@ + + + + + + +<% + + +R_Fields = "poc_idx, poc_topinclude, poc_tophtml, poc_btminclude, poc_btmhtml" + +R_tablename_str = "poll_conf" +R_WHERE_str = " WHERE poc_idx=1" + +Call SelectQuery (R_Fields, R_tablename_str, R_WHERE_str) + + + + +' ------------------- 저장공간인 [DATA]폴더가 없다면 생성 한다. ------------------- +Set FSO = Server.CreateObject("Scripting.FileSystemObject") +datapath = Server.MapPath("\")&"\data\poll\" +If FSO.FolderExists(datapath) = False Then + FSO.CreateFolder(datapath) +End if +Set FSO = nothing +' ------------------------------------------------------------------------------------ + + + +%> + + +
+ +
+
+

설문조사 환경설정

+
+ +
+ + +
+ +
+
+ + +
+ +

+ + +
+ 설문조사 환경설정 작성 + + + + + + + + + + + + + + + + + + + + + + + + + + +
설문조사 환경설정

* 시작경로는 루트(/)로 설정된 경로부터 시작됩니다.

* HTML태그사용은 가능하나, < script > 는 사용불가합니다.

* 시작경로는 루트(/)로 설정된 경로부터 시작됩니다.

* HTML태그사용은 가능하나, < script > 는 사용불가합니다.
+
+ + +
+
+
+ +
+ +
+ + +
+ + + + + + + diff --git a/manager/content/04poll/conf_ok.asp b/manager/content/04poll/conf_ok.asp new file mode 100644 index 0000000..6d6f054 --- /dev/null +++ b/manager/content/04poll/conf_ok.asp @@ -0,0 +1,47 @@ + + + + + +<% + + +R_Fields = "poc_idx, poc_topinclude, poc_btminclude" + +Call RequestAll (R_Fields, "") + +poc_tophtml = InputValue4( request("poc_tophtml") ) +poc_btmhtml = InputValue4( request("poc_btmhtml") ) + + +If poc_idx = "" Then ' 저장 + + + sql = "truncate table poll_conf" + Dbcon.execute sql + + R_Fields_i = "poc_topinclude, poc_tophtml, poc_btminclude, poc_btmhtml, poc_wdate" + poc_wdate = getDateFm(now,3) + + Call InsertQuery(R_Fields_i, "poll_conf") + + ok_url = "conf.asp" + + +Else ' 수정 + + + + R_Fields_u = "poc_topinclude, poc_tophtml, poc_btminclude, poc_btmhtml, poc_wdate" + nsc_wdate = getDateFm(now,3) + + Call UpdateQuery (R_Fields_u, "poll_conf", "where poc_idx="&poc_idx) + ok_url = "conf.asp" + +End if + +Dbcon.close + +Call loding("0", ok_url) + +%> \ No newline at end of file diff --git a/manager/content/04poll/config.asp b/manager/content/04poll/config.asp new file mode 100644 index 0000000..53d981a --- /dev/null +++ b/manager/content/04poll/config.asp @@ -0,0 +1,18 @@ +<% +'페이지정보 ************************************************* +v_page = InputValue(request("p_page")) +v_block = InputValue(request("p_block")) +v_search = InputValue(request("p_search")) +v_keyword = InputValue(request("p_keyword")) +mode = InputValue(request("mode")) '-- a:관리자페이지 , u:일반유저페이지 +page_info = "p_page="&v_page&"&p_block="&v_block&"&p_search="&v_search&"&p_keyword="&v_keyword +' ************************************************************ + +' 권한정보 ************************************************************************************* +is_ad_cms = "Y" +is_read = "Y" +is_write = "Y" +is_delete = "Y" +is_reply = "Y" +' ************************************************************************************************** +%> \ No newline at end of file diff --git a/manager/content/04poll/delete_ok.asp b/manager/content/04poll/delete_ok.asp new file mode 100644 index 0000000..f02a93c --- /dev/null +++ b/manager/content/04poll/delete_ok.asp @@ -0,0 +1,61 @@ + + + + + +<% + +' 파라미터정보 ************************************************************************************* +po_idx = InputValue(request("po_idx")) +status = InputValue(request("status")) +' ************************************************************************************************** + +If status = "totdel" then ' 다중삭제 + + chk = Replace(request("chk")," ", "") + arr_chk = Split(chk, ",") + + For z=0 To UBound(arr_chk) + + sql = "select po_pk from poll where po_idx= "&arr_chk(z) + Set Rs = Dbcon.Execute (sql) + po_pk = rs("po_pk") + rs.close : Set rs = nothing + + ' poll 삭제 + sql = " delete from poll where po_pk = "&po_pk + Dbcon.execute sql + + + ' 페이지 삭제 + sql = " delete from poll_question where po_pk = "&po_pk + Dbcon.execute sql + + next + +else ' 일반삭제 + + + sql = "select po_pk from poll where po_idx= "&po_idx + Set Rs = Dbcon.Execute (sql) + po_pk = rs("po_pk") + rs.close : Set rs = nothing + + ' poll 삭제 + sql = " delete from poll where po_pk = "&po_pk + Dbcon.execute sql + + + ' 페이지 삭제 + sql = " delete from poll_question where po_pk = "&po_pk + Dbcon.execute sql + +End If + +Dbcon.close + +ok_url = "list.asp?"&page_info +Call loding ("0",ok_url) + + +%> \ No newline at end of file diff --git a/manager/content/04poll/list.asp b/manager/content/04poll/list.asp new file mode 100644 index 0000000..f2f07cc --- /dev/null +++ b/manager/content/04poll/list.asp @@ -0,0 +1,256 @@ + + + + + + +<% + +Dim v_pagesize, v_block, length, v_totalpage, v_page +Dim is_tablename, R_Fields, pk_Field, opt_where_str, orderby_str +Dim p_keyword, p_search +Dim search_str, str_option +Dim SQL_T, strSQL, rs, i +Dim recordcount +Dim vData, vCnt +Dim po_idx, po_subject, po_group, po_addid, po_sdate, po_edate, po_chk, po_code, po_pk, po_wdate, po_mdate +Dim po_chk_str + +' 페이징정보 +v_pagesize = 20 ' 리스트 화면에 보여줄 갯수 +v_block = 10 ' 페이징 갯수 +length = 30 ' 내용 길이 + + +' 테이블 기본 환경설정 +is_tablename = "poll" ' 테이블명 +R_Fields = "po_idx, po_subject, po_group, po_addid, po_sdate, po_edate, po_chk, po_code, po_pk, po_wdate, po_mdate" ' 레코드필드 +pk_Field = "po_idx" +opt_where_str = "" ' 기본조건이 있을때 사용..없으면 '' 처리 +orderby_str = " ORDER BY po_wdate desc " ' 정렬 + + +p_keyword = inputvalue(request("p_keyword")) +p_search = inputvalue(request("p_search")) + +' 옵션 부분 +if trim(p_keyword) <> "" and p_search <> "" then ' 검색어가 있다면 + search_str = " AND "& v_search &" like '%"& replace(v_keyword,"'","''")&"%'" +End if + +sql_option = search_str + + + +' 전체 레코드 수 뽑기 +SQL_T = "select count("&pk_Field&") as "&pk_Field&" from "&is_tablename&" where "&pk_Field&" <> 0 " +SQL_T = SQL_T & sql_option ' 검색옵션 +Set rs = Dbcon.execute(SQL_T) +recordcount = rs(0) +rs.close : Set rs = nothing + +v_totalpage = int((recordcount-1)/v_pagesize)+1 ' '전체덩어리갯수 +v_page = request("p_page") +If v_page<>"" Then v_page = Int(v_page) + +If v_page = "" then + v_page = 1 +ElseIf v_page < 1 then + v_page = 1 +ElseIf v_page > v_totalpage then + v_page = v_totalpage +End if +' ******************************************************* + + +strSQL = " SELECT TOP "& v_pagesize &" "& R_Fields &" FROM "& is_tablename &" WHERE "& pk_Field &" NOT IN " +strSQL = strSQL & " ( SELECT TOP "& v_pagesize*(v_page-1) &" "& pk_Field &" FROM "& is_tablename &" WHERE "&pk_Field&" <> 0 " & sql_option & orderby_str &" ) " +strSQL = strSQL & sql_option &" "& orderby_str +Set rs = Dbcon.execute(strSQL) +If Not rs.eof Then + vData = rs.getrows() + vCnt = UBound(vData,2) +Else + vCnt = -1 +End If +rs.close : Set rs = Nothing + +%> + +
+

+
+ +
+ +
+
+

설문조사 리스트

+
+ +
+ + +
+ +

+ +
+ +
+
+ +
    + +
  • +
  • +
  • +
  • +
+ +
+
+ +
+ +
+
+ +
+ 전체 <%=recordcount%>개 (페이지 <%=v_page%>/<%=v_totalpage%>) +
+ +
+
+ + + + + +
+ + +
+ 설문조사관리 수정/삭제/보기 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +<% +If vCnt > -1 then ' ------ 내용이 있으면 리스트 출력 + + If v_page = 1 then + num = recordcount + else + num = recordcount - ((v_page - 1) * v_pagesize) + End If + + + For i=0 To vCnt + + Call arr2Value(R_Fields, "vData", i) + + If po_chk = "Y" then + po_chk_str = "사용" + ElseIf po_chk = "N" then + po_chk_str = "중지" + End if +%> + + + + + + + + + + + +<% + + num = num - 1 + + Next + +else ' 게시할 목록이 없다면 +%> + + + + + + + + + + + + +<%End if%> + +
설문조사관리 서식
선택제목설문기간사용여부수정삭제설문문항
<%=po_subject%><%=po_sdate%> ~ <%=po_edate%><%=po_chk_str%>
+
+ +
+ +
+ + +
+ <%page("list.asp")%> +
+ + +
+ +
+ + +
+ + + + + diff --git a/manager/content/04poll/write.asp b/manager/content/04poll/write.asp new file mode 100644 index 0000000..14be014 --- /dev/null +++ b/manager/content/04poll/write.asp @@ -0,0 +1,254 @@ + + + + + + +<% + +' 파라미터정보 ************************************************************************************* +po_idx = InputValue(request("po_idx")) ' --Pk +' ************************************************************************************************** + + +If po_idx <> "" then ' --수정상태일때.. + + ' 레코드필드 + R_Fields = "po_idx, po_subject, po_group, po_addid, po_sdate, po_edate, po_chk, po_code, po_pk, po_wdate, po_mdate" + R_tablename_str = "poll " + R_WHERE_str = " WHERE po_idx="&po_idx + + Call SelectQuery (R_Fields, R_tablename_str, R_WHERE_str) + + reset_url = "list.asp?"&page_info + is_title_str = "설문조사 정보 수정" + + +Else ' 새글등록 + + po_chk = "Y" + reset_url = "write.asp" + is_title_str = "신규 설문조사 생성" + +End if + + +po_sdate = request("po_sdate") +po_edate = request("po_edate") + +If po_sdate = "" then + + po_sdate_y = Year(now) + po_sdate_m = Month(now) + po_sdate_d = day(now) + + If Len(po_sdate_m)=1 Then po_sdate_m = "0"&po_sdate_m + If Len(po_sdate_d)=1 Then po_sdate_d = "0"&po_sdate_d + +else + + po_sdate_arr = split(po_sdate, "-") + + po_sdate_y = po_sdate_arr(0) + po_sdate_m = po_sdate_arr(1) + po_sdate_d = po_sdate_arr(2) + +End if + + +If po_edate = "" Then + + nm = DateAdd("m",1, now) + + po_edate_y = Year(nm) + po_edate_m = Month(nm) + po_edate_d = Day(nm) + + If Len(po_edate_m)=1 Then po_edate_m = "0"&po_edate_m + If Len(po_edate_d)=1 Then po_edate_d = "0"&po_edate_d + +else + + po_edate_arr = split(po_edate, "-") + + po_edate_y = po_edate_arr(0) + po_edate_m = po_edate_arr(1) + po_edate_d = po_edate_arr(2) + +End if + +%> + + + + + + +
+ +
+
+

<%=is_title_str%>

+
+ +
+ + +
+ +
+
+ +
+ +

+ + +
+ 설문조사생성 서식 작성 + + + + + + + + + + + + + + + + + + + + + + + + + +
설문조사생성 서식
설문 대상자 선택 +
+ + + + + + + + + +
회원그룹 +
+ + + + + + + + <% + + + R_Fields_SS = "g_num, g_code, g_menuname" + + sql = "SELECT "&R_Fields_SS&" FROM member_group WHERE g_chk='Y' ORDER BY g_code ASC" + Set rs = Dbcon.execute(sql) + + zz = 1 + + Do While Not rs.eof + g_num = rs("g_num") + g_code = rs("g_code") + g_menuname = rs("g_menuname") + %> + + + <% + + If zz =3 then + response.write "" + zz=1 + End if + + zz = zz+1 + rs.movenext + Loop + rs.close : Set rs = Nothing + %> + +
+ tabindex="<%=getTabIndex()%>" /><%=g_menuname%> +
+
+
+
+
+ + + + + ~ + + + + +
+ + + * 사용선택시 등록과 동시에 바로 적용되므로 주의 하세요. +
+
+ + +
+
+
+ +
+ +
+ + +
+ + + + + + + + diff --git a/manager/content/04poll/write_ok.asp b/manager/content/04poll/write_ok.asp new file mode 100644 index 0000000..80b8fbb --- /dev/null +++ b/manager/content/04poll/write_ok.asp @@ -0,0 +1,73 @@ + + + + + +<% + +R_Fields = "po_idx, po_subject, po_chk, po_sdate_y, po_sdate_m, po_sdate_d, po_edate_y, po_edate_m, po_edate_d, po_group" + +Call RequestAll (R_Fields, "") + +If Len(po_sdate_m)=1 Then po_sdate_m="0"&po_sdate_m +If Len(po_sdate_d)=1 Then po_sdate_d="0"&po_sdate_d +If Len(po_edate_m)=1 Then po_edate_m="0"&po_edate_m +If Len(po_edate_d)=1 Then po_edate_d="0"&po_edate_d + +po_sdate = po_sdate_y&"-"&po_sdate_m&"-"&po_sdate_d +po_edate = po_edate_y&"-"&po_edate_m&"-"&po_edate_d + + +po_group_str = "[]" +po_group = Replace(po_group, " ", "") ' ex) 1,3,4 +If po_group<>"" then + po_group = Replace(po_group, ",", "][") ' ex) 1][3][4 + po_group = "["&po_group&"]" ' ex) [1][3][4] +End If + +po_group = po_group_str & po_group + + + +If po_idx = "" then ' 저장 + + + + ' 순서 -------------------------------------- + sql = " SELECT isnull(max(po_code),0) FROM poll" + Set Rs = Dbcon.Execute (sql) + po_code = rs(0) + rs.close : Set rs = Nothing + + po_code = po_code + 1 + ' -------------------------------------------------------- + + + R_Fields_i = "po_subject, po_group, po_sdate, po_edate, po_chk, po_code, po_pk, po_wdate, po_mdate" + po_pk = get_idx_add() + po_wdate = getDateFm(now,3) + po_mdate = getDateFm(now,3) + + + Call InsertQuery(R_Fields_i, "poll") + + ok_url = "list.asp?"&page_info + + + +else ' 수정 + + + R_Fields_u = "po_subject, po_group, po_sdate, po_edate, po_chk, po_mdate" + po_mdate = getDateFm(now,3) + Call UpdateQuery (R_Fields_u, "poll", "where po_idx="&po_idx) + + ok_url = "list.asp?"&page_info + +End if + +Dbcon.close + +Call loding("0",ok_url) + +%> \ No newline at end of file diff --git a/manager/content/04poll/write_ui.asp b/manager/content/04poll/write_ui.asp new file mode 100644 index 0000000..cc2b275 --- /dev/null +++ b/manager/content/04poll/write_ui.asp @@ -0,0 +1,254 @@ + + + + + + +<% + +' 파라미터정보 ************************************************************************************* +po_idx = InputValue(request("po_idx")) ' --Pk +' ************************************************************************************************** + + +If po_idx <> "" then ' --수정상태일때.. + + ' 레코드필드 + R_Fields = "po_idx, po_subject, po_group, po_addid, po_sdate, po_edate, po_chk, po_code, po_pk, po_wdate, po_mdate" + R_tablename_str = "poll " + R_WHERE_str = " WHERE po_idx="&po_idx + + Call SelectQuery (R_Fields, R_tablename_str, R_WHERE_str) + + reset_url = "list.asp?"&page_info + is_title_str = "설문조사 정보 수정" + + +Else ' 새글등록 + + po_chk = "Y" + reset_url = "write.asp" + is_title_str = "신규 설문조사 생성" + +End if + + +po_sdate = request("po_sdate") +po_edate = request("po_edate") + +If po_sdate = "" then + + po_sdate_y = Year(now) + po_sdate_m = Month(now) + po_sdate_d = day(now) + + If Len(po_sdate_m)=1 Then po_sdate_m = "0"&po_sdate_m + If Len(po_sdate_d)=1 Then po_sdate_d = "0"&po_sdate_d + +else + + po_sdate_arr = split(po_sdate, "-") + + po_sdate_y = po_sdate_arr(0) + po_sdate_m = po_sdate_arr(1) + po_sdate_d = po_sdate_arr(2) + +End if + + +If po_edate = "" Then + + nm = DateAdd("m",1, now) + + po_edate_y = Year(nm) + po_edate_m = Month(nm) + po_edate_d = Day(nm) + + If Len(po_edate_m)=1 Then po_edate_m = "0"&po_edate_m + If Len(po_edate_d)=1 Then po_edate_d = "0"&po_edate_d + +else + + po_edate_arr = split(po_edate, "-") + + po_edate_y = po_edate_arr(0) + po_edate_m = po_edate_arr(1) + po_edate_d = po_edate_arr(2) + +End if + +%> + + + + + + +
+ +
+
+

<%=is_title_str%>

+
+ +
+ + +
+ +
+
+ +
+ +

+ + +
+ 설문조사생성 서식 작성 + + + + + + + + + + + + + + + + + + + + + + + + + +
설문조사생성 서식
설문 대상자 선택 +
+ + + + + + + + + +
회원그룹 +
+ + + + + + + + <% + + + R_Fields_SS = "g_num, g_code, g_menuname" + + sql = "SELECT "&R_Fields_SS&" FROM member_group WHERE g_chk='Y' ORDER BY g_code ASC" + Set rs = Dbcon.execute(sql) + + zz = 1 + + Do While Not rs.eof + g_num = rs("g_num") + g_code = rs("g_code") + g_menuname = rs("g_menuname") + %> + + + <% + + If zz =3 then + response.write "" + zz=1 + End if + + zz = zz+1 + rs.movenext + Loop + rs.close : Set rs = Nothing + %> + +
+ tabindex="<%=getTabIndex()%>" /><%=g_menuname%> +
+
+
+
+
+ + + + + ~ + + + + +
+ + + * 사용선택시 등록과 동시에 바로 적용되므로 주의 하세요. +
+
+ + +
+
+
+ +
+ +
+ + +
+ + + + + + + + diff --git a/manager/content/04poll_question/config.asp b/manager/content/04poll_question/config.asp new file mode 100644 index 0000000..53d981a --- /dev/null +++ b/manager/content/04poll_question/config.asp @@ -0,0 +1,18 @@ +<% +'페이지정보 ************************************************* +v_page = InputValue(request("p_page")) +v_block = InputValue(request("p_block")) +v_search = InputValue(request("p_search")) +v_keyword = InputValue(request("p_keyword")) +mode = InputValue(request("mode")) '-- a:관리자페이지 , u:일반유저페이지 +page_info = "p_page="&v_page&"&p_block="&v_block&"&p_search="&v_search&"&p_keyword="&v_keyword +' ************************************************************ + +' 권한정보 ************************************************************************************* +is_ad_cms = "Y" +is_read = "Y" +is_write = "Y" +is_delete = "Y" +is_reply = "Y" +' ************************************************************************************************** +%> \ No newline at end of file diff --git a/manager/content/04poll_question/delete_ok.asp b/manager/content/04poll_question/delete_ok.asp new file mode 100644 index 0000000..046faf6 --- /dev/null +++ b/manager/content/04poll_question/delete_ok.asp @@ -0,0 +1,58 @@ + + + + + +<% + +' 파라미터정보 ************************************************************************************* +poq_idx = InputValue(request("poq_idx")) +status = InputValue(request("status")) +' ************************************************************************************************** + + +If status = "totdel" then ' 다중삭제 + + chk = request("chk") + arr_chk = Split(chk,",") + + For z=0 To UBound(arr_chk) + + sql = "select po_pk from poll_question where poq_idx= "&arr_chk(z) + Set Rs = Dbcon.Execute (sql) + If Not rs.eof Then + po_pk = rs(0) + End If + rs.close : Set rs = nothing + + ' poll_question 삭제 + sql = " delete from poll_question where poq_idx = "&arr_chk(z) + Dbcon.execute sql + + next + + + +else' 일반삭제 + + + sql = "select po_pk from poll_question where poq_idx= "&poq_idx + Set Rs = Dbcon.Execute (sql) + If Not rs.eof Then + po_pk = rs(0) + End If + rs.close : Set rs = Nothing + + ' poll_question 삭제 + sql = " delete from poll_question where poq_idx = "&poq_idx + Dbcon.execute sql + +End If + +Dbcon.close + +ok_url = "write_ui.asp?po_pk="&po_pk +Call loding ("0", ok_url) + + +%> \ No newline at end of file diff --git a/manager/content/04poll_question/level_ok.asp b/manager/content/04poll_question/level_ok.asp new file mode 100644 index 0000000..f109b7a --- /dev/null +++ b/manager/content/04poll_question/level_ok.asp @@ -0,0 +1,43 @@ + + + + + +<% + +' 파라미터정보 *********************************************** +status = InputValue(request("status")) +tot_level_chk = InputValue(request("tot_level_chk")) +poq_pk = InputValue(request("poq_pk")) + +poq_chk = InputValue(request("poq_chk")) +poq_idx = InputValue(request("poq_idx")) +po_pk = InputValue(request("po_pk")) + +' ************************************************************ + + +If status = "totlevel" then ' 다중삭제 + + chk = Replace(request("chk")," ", "") + arr_chk = Split(chk, ",") + + For z=0 To UBound(arr_chk) + sql = " Update poll_question set poq_chk = '"&tot_level_chk&"' Where poq_idx = "&arr_chk(z) + Dbcon.execute sql + next + +else + + sql = " Update poll_question set poq_chk = '"&poq_chk&"' Where poq_idx = "&poq_idx + Dbcon.execute sql + +End if + + +Dbcon.close + +ok_url = "write_ui.asp?po_pk="&po_pk + +Call loding ("0",ok_url) +%> \ No newline at end of file diff --git a/manager/content/04poll_question/move.asp b/manager/content/04poll_question/move.asp new file mode 100644 index 0000000..24cbc18 --- /dev/null +++ b/manager/content/04poll_question/move.asp @@ -0,0 +1,39 @@ + + + + + +<% + +po_pk = InputValue(request("po_pk")) +poq_idx = InputValue(request("poq_idx")) ' --일련번호 +poq_code = InputValue(request("poq_code")) ' --정렬번호 +move = InputValue(request("move")) ' --이동 + + +if move = "up" then + sql = "select poq_idx, poq_code from poll_question where po_pk="&po_pk&" AND poq_code < "&poq_code &" order by poq_code desc" +ElseIf move = "down" then + sql = "select poq_idx, poq_code from poll_question where po_pk="&po_pk&" AND poq_code > "&poq_code &" order by poq_code" +End If + +Set Rs = Dbcon.Execute (sql) +If Not rs.eof Then + + v_rspoq_idx = trim(rs("poq_idx")) ' -- 대체할 디비번호 + v_rspoq_code = trim(rs("poq_code")) ' -- 대체할 값 + + sql1 = "update poll_question set poq_code = "&poq_code&" where poq_idx = "&v_rspoq_idx + Dbcon.execute sql1 + sql2 = "update poll_question set poq_code = "&v_rspoq_code&" where poq_idx = "&poq_idx + Dbcon.execute sql2 + +End If + +rs.close : Set rs = Nothing +Dbcon.close + +ok_url = "write_ui.asp?po_pk="&po_pk +Call loding ("0",ok_url) + +%> \ No newline at end of file diff --git a/manager/content/04poll_question/write.asp b/manager/content/04poll_question/write.asp new file mode 100644 index 0000000..2fdee12 --- /dev/null +++ b/manager/content/04poll_question/write.asp @@ -0,0 +1,384 @@ + + + + + +<% + +po_pk = InputValue(request("po_pk")) + + +' 테이블 기본 환경설정 ******************************************************************************** +table = "poll_question" ' 테이블명 +idx_field = "poq_idx" ' 기본키 +oreder_filed = "poq_code ASC" ' 정렬기준 필드 +Query_Fields = "poq_idx ,po_pk ,poq_code, poq_topmemo, poq_question, poq_type, poq_multi, poq_chk, poq_bogi1, poq_bogi2, poq_bogi3, poq_bogi4, poq_bogi5, poq_wdate, poq_mdate" ' 불러올 필드 +' **************************************************************************************************** + +' ---------------조합 쿼리문------------------------------------ +If v_keyword <> "" then + search_str = " AND "&v_search&" like '%"&v_keyword&"%'" +End if + +Query_OrderBy = " ORDER BY "&oreder_filed +' --------------------------------------------------------------- + +' -----------------------------리스트 출력 쿼리문 생성----------------------------- +sql = "select "&Query_Fields&" from "&table&" WHERE po_pk = "&po_pk +sql = sql & search_str & search_str2 & Query_OrderBy +Set Rs = Dbcon.Execute (sql) +If rs.eof Then + vCnt = -1 +Else + vData = rs.getrows() + vCnt = UBound(vData,2) +End If +rs.close : Set rs = Nothing + +' --------------------------------------------------------------------------------- + +%> + + +
+ +
+
+

설문조사 문항설정

+ +
+ +
+ + +
+ +
+
+ + +
+ + +

현재경로: 설문조사 리스트 > <%=get_pollsubject(po_pk)%>

+ + + +
+ 설문문항생성 서식 작성 + + + + + + + + + + + + + + + + + + + + + + + + + + +
설문조사문항생성 서식
+ + + + +
+ + + + + + + + + + + + + + + + +
설문항목 서식
+ 1
+ 2
+ 3
+ 4
+ 5
+
+ + + +
+ +
+ +
+
+
+ + +
+
+
+ +
+ + +
+ +
+ + + + + + + + + + + + + + + +
+
+ + + + + + + +
+ + +
+ 설문조사관리 수정/삭제/보기 + + + + + + + + + + + + + + + + + + + + + + + + +<% +If vCnt > -1 Then + + zz = 1 + For i=0 To vCnt + + Call arr2Value(Query_Fields, "vData", i) + + If poq_chk ="Y" then + poq_chk_str = "사용" + else + poq_chk_str = "중지" + End If + +%> + + + + + + + + + + + + + + +<% + + zz = zz+1 + Next + + +Else ' 게시할 목록이 없다면 +%> + + + + + + + + + + + +<% +End if +%> + + + + + + +
설문조사관리 서식
선택순서제목사용여부수정삭제
+ 순서 위로 이동순서 아래로 이동 + + + + + + + + + + + + + + + + + + + + +
+ +
+ + +
+ + + + + + + + + + + + + + +
+ 1
+ 2
+ 3
+ 4
+ 5
+
+ + + + + +
+ + + +
+ +
<%=poq_chk_str%>
+
+ +
+ +
+ + +
+ +
+ + +
+ + + + diff --git a/manager/content/04poll_question/write_ok.asp b/manager/content/04poll_question/write_ok.asp new file mode 100644 index 0000000..cf05c4f --- /dev/null +++ b/manager/content/04poll_question/write_ok.asp @@ -0,0 +1,66 @@ + + + + + +<% + +R_Fields = "poq_idx ,po_pk ,poq_topmemo, poq_question, poq_type, poq_multi, poq_chk, poq_bogi1, poq_bogi2, poq_bogi3, poq_bogi4, poq_bogi5, poq_wdate, poq_mdate" +Call RequestAll (R_Fields, "") + + +If poq_idx = "" Then ' 저장 + + + ' 순서 -------------------------------------- + sql = " SELECT isnull(max(poq_code),0) FROM poll_question WHERE po_pk = "&po_pk + Set Rs = Dbcon.Execute (sql) + poq_code = rs(0) + rs.close : Set rs = Nothing + + poq_code = poq_code + 1 + ' -------------------------------------------------------- + + + R_Fields_i = "po_pk ,poq_topmemo, poq_code, poq_question, poq_type, poq_multi, poq_chk, poq_bogi1, poq_bogi2, poq_bogi3, poq_bogi4, poq_bogi5, poq_wdate, poq_mdate" + poq_wdate = getDateFm(now,3) + poq_mdate = getDateFm(now,3) + + + Call InsertQuery(R_Fields_i, "poll_question") + ok_url = "write_ui.asp?po_pk="&po_pk + + + +else ' 수정 + + + poq_topmemo = inputvalue(request("poq_topmemo_"&poq_idx)) + poq_question = inputvalue(request("poq_question_"&poq_idx)) + poq_type = inputvalue(request("poq_type_"&poq_idx)) + poq_multi = inputvalue(request("poq_multi_"&poq_idx)) + 'poq_chk = inputvalue(request("poq_chk_"&poq_idx)) + poq_bogi1 = inputvalue(request("poq_bogi1_"&poq_idx)) + poq_bogi2 = inputvalue(request("poq_bogi2_"&poq_idx)) + poq_bogi3 = inputvalue(request("poq_bogi3_"&poq_idx)) + poq_bogi4 = inputvalue(request("poq_bogi4_"&poq_idx)) + poq_bogi5 = inputvalue(request("poq_bogi5_"&poq_idx)) + + + + R_Fields_u = "poq_topmemo, poq_question, poq_type, poq_multi, poq_bogi1, poq_bogi2, poq_bogi3, poq_bogi4, poq_bogi5, poq_mdate" + poq_mdate = getDateFm(now,3) + Call UpdateQuery (R_Fields_u, "poll_question", "where poq_idx="&poq_idx) + + + ok_url = "write_ui.asp?po_pk="&po_pk + + +End If + + +Dbcon.close + +Call loding("0",ok_url) + +%> \ No newline at end of file diff --git a/manager/content/04poll_question/write_ui.asp b/manager/content/04poll_question/write_ui.asp new file mode 100644 index 0000000..9ed49dd --- /dev/null +++ b/manager/content/04poll_question/write_ui.asp @@ -0,0 +1,386 @@ + + + + + +<% + +po_pk = InputValue(request("po_pk")) + + +' 테이블 기본 환경설정 ******************************************************************************** +table = "poll_question" ' 테이블명 +idx_field = "poq_idx" ' 기본키 +oreder_filed = "poq_code ASC" ' 정렬기준 필드 +Query_Fields = "poq_idx ,po_pk ,poq_code, poq_topmemo, poq_question, poq_type, poq_multi, poq_chk, poq_bogi1, poq_bogi2, poq_bogi3, poq_bogi4, poq_bogi5, poq_wdate, poq_mdate" ' 불러올 필드 +' **************************************************************************************************** + +' ---------------조합 쿼리문------------------------------------ +If v_keyword <> "" then + search_str = " AND "&v_search&" like '%"&v_keyword&"%'" +End if + +Query_OrderBy = " ORDER BY "&oreder_filed +' --------------------------------------------------------------- + +' -----------------------------리스트 출력 쿼리문 생성----------------------------- +sql = "select "&Query_Fields&" from "&table&" WHERE po_pk = "&po_pk +sql = sql & search_str & search_str2 & Query_OrderBy +Set Rs = Dbcon.Execute (sql) +If rs.eof Then + vCnt = -1 +Else + vData = rs.getrows() + vCnt = UBound(vData,2) +End If +rs.close : Set rs = Nothing + +' --------------------------------------------------------------------------------- + +%> + + +
+ +
+
+

설문조사 문항설정

+ +
+ +
+ + +
+ +
+
+ + +
+ + +

현재경로: 설문조사 리스트 > <%=get_pollsubject(po_pk)%>

+ + + +
+ 설문문항생성 서식 작성 + + + + + + + + + + + + + + + + + + + + + + + + + + +
설문조사문항생성 서식
+ + + + +
+ + + + + + + + + + + + + + + + +
설문항목 서식
+ 1
+ 2
+ 3
+ 4
+ 5
+
+ + + +
+ +
+ +
+
+
+ + +
+
+
+ +
+ + +
+ +
+ + + + + + + + + + + + + + + +
+
+ + + + + + + +
+ + +
+ 설문조사관리 수정/삭제/보기 + + + + + + + + + + + + + + + + + + + + + + + + +<% +If vCnt > -1 Then + + zz = 1 + For i=0 To vCnt + + Call arr2Value(Query_Fields, "vData", i) + + If poq_chk ="Y" then + poq_chk_str = "사용" + else + poq_chk_str = "중지" + End If + +%> + + + + + + + + + + + + + + +<% + + zz = zz+1 + Next + + +Else ' 게시할 목록이 없다면 +%> + + + + + + + + + + + +<% +End if +%> + + + + + + +
설문조사관리 서식
선택순서제목사용여부수정삭제
+ 순서 위로 이동순서 아래로 이동 + + + + + + + + + + + + + + + + + + + + +
+ +
+ + +
+ + + + + + + + + + + + + + +
+ 1
+ 2
+ 3
+ 4
+ 5
+
+ + + + + +
+ + + +
+ +
<%=poq_chk_str%>
+
+ +
+ +
+ +
+
+
+
+ +
+ + +
+ + + + diff --git a/manager/content/04popup/config.asp b/manager/content/04popup/config.asp new file mode 100644 index 0000000..04b78fb --- /dev/null +++ b/manager/content/04popup/config.asp @@ -0,0 +1,18 @@ +<% +' 페이지정보 ************************************************* +v_page = InputValue(request("p_page")) +v_block = InputValue(request("p_block")) +v_search = InputValue(request("p_search")) +v_keyword = InputValue(request("p_keyword")) +mode = InputValue(request("mode")) ' -- a:관리자페이지 , u:일반유저페이지 +page_info = "p_page="&v_page&"&p_block="&v_block&"&p_search="&v_search&"&p_keyword="&v_keyword +' ************************************************************ + +' 권한정보 ************************************************************************************* +is_ad_cms = "Y" +is_read = "Y" +is_write = "Y" +is_delete = "Y" +is_reply = "Y" +' ************************************************************************************************** +%> \ No newline at end of file diff --git a/manager/content/04popup/delete_ok.asp b/manager/content/04popup/delete_ok.asp new file mode 100644 index 0000000..50c49f9 --- /dev/null +++ b/manager/content/04popup/delete_ok.asp @@ -0,0 +1,38 @@ + + + + + +<% + +' 파라미터정보 ************************************************************************************* +idx = InputValue(request("idx")) +status = InputValue(request("status")) +' ************************************************************************************************** + + +If status = "totdel" then ' 다중삭제 + + chk = Replace(request("chk")," ", "") + arr_chk = Split(chk, ",") + + For z=0 To UBound(arr_chk) + + sql = " delete from popup where idx = "&arr_chk(z) + Dbcon.execute sql + next + +else ' 일반삭제 + + sql = " delete from popup where idx = "&idx + Dbcon.execute sql + +End if + +Dbcon.close : Set Dbcon = Nothing + +ok_url = "list.asp?"&page_info +Call loding ("0",ok_url) + + +%> \ No newline at end of file diff --git a/manager/content/04popup/level_ok.asp b/manager/content/04popup/level_ok.asp new file mode 100644 index 0000000..8a16ccb --- /dev/null +++ b/manager/content/04popup/level_ok.asp @@ -0,0 +1,43 @@ + + + + + +<% + + +' 파라미터정보 *********************************************** +status = InputValue(request("status")) +tot_level_chk = InputValue(request("tot_level_chk")) + +w_chk = InputValue(request("w_chk")) +idx = InputValue(request("idx")) +' ************************************************************ + + +If status = "totlevel" then ' 다중삭제 + + chk = Replace(request("chk")," ", "") + arr_chk = Split(chk, ",") + + For z=0 To UBound(arr_chk) + sql = " Update popup set w_chk = '"&tot_level_chk&"' Where idx = "&arr_chk(z) + Dbcon.execute sql + + next + + +else + + sql = " Update popup set w_chk = '"&w_chk&"' Where idx = "&idx + Dbcon.execute sql + +End if + + +Dbcon.close : Set Dbcon = Nothing + +ok_url = "list.asp?"&page_info + +Call loding ("0",ok_url) +%> \ No newline at end of file diff --git a/manager/content/04popup/list.asp b/manager/content/04popup/list.asp new file mode 100644 index 0000000..fe347f0 --- /dev/null +++ b/manager/content/04popup/list.asp @@ -0,0 +1,255 @@ + + + + + + +<% + + +' 테이블 기본 환경설정 ******************************************************************************** + +table = "popup" ' 테이블명 +idx_field = "idx" ' 기본키 +oreder_filed = "idx DESC" ' 정렬기준 필드 +Query_Fields = "idx, w_width, w_height, w_top, w_left, ck_chk, ck_val, scrollbars, toolbar, menubar, locations, subject, content, w_chk, wdate, mdate, sdate, edate, tot_chk" ' 불러올 필드 + +v_pagesize = 20 ' 목록개수 +v_block = 10 ' 페이지개수 +' **************************************************************************************************** + + + +' ---------------조합 쿼리문------------------------------------ +v_search = InputValue(request("v_search")) +v_keyword = InputValue(request("v_keyword")) +Query_Where = "" '기본 검색 + +If v_keyword <> "" then + Query_Where = Query_Where & " and "&v_search&" like '%"&v_keyword&"%'" +End If +'' 조건 있을때 여기에 계속 추가 + +If Query_Where<>"" Then + Query_Where2 = " WHERE " & Mid(Query_Where,5) +End If + +Query_OrderBy = " ORDER BY "&oreder_filed +' --------------------------------------------------------------- + + + +' ---------------------전체 레코드 수 뽑기---------------------------------------- +sql = "select count("&idx_field&") as "&idx_field&" from "& table & Query_Where +Set Rs = Dbcon.Execute (sql) +recordcount = rs(0) +rs.close : Set rs = Nothing +' --------------------------------------------------------------------------------- + + + +v_totalpage = int((recordcount-1)/v_pagesize)+1 ' '전체덩어리갯수 +v_page = p_page + +If v_page = "" then + v_page = 1 +ElseIf v_page < 1 then + v_page = 1 +ElseIf v_page > v_totalpage then + v_page = v_totalpage +End if + + +' -----------------------------리스트 출력 쿼리문 생성----------------------------- +sql = " SELECT TOP "& v_pagesize &" "& Query_Fields &" FROM "& table &" WHERE "& idx_field &" NOT IN " +sql = sql & " ( SELECT TOP "& v_pagesize*(v_page-1) &" "& idx_field &" FROM "& table & Query_Where2 & Query_OrderBy &" ) " +sql = sql & Query_Where &" "& Query_OrderBy +Set Rs = Dbcon.Execute (sql) +If rs.eof Then + vCnt = -1 +Else + vData = rs.getrows() + vCnt = UBound(vData,2) +End If +rs.close : Set rs = nothing +' --------------------------------------------------------------------------------- + +%> + +
+

+
+ +
+ +
+
+

팝업 리스트

+
+ +
+ + +
+ + + +

+ + +
+ +
+
+ +
    + +
  • +
  • +
  • +
  • +
+ +
+
+ +
+ +
+
+ +
+ 전체 <%=recordcount%>개 (페이지 <%=v_page%>/<%=v_totalpage%>) +
+ +
+
+ + + + + +
+ + +
+ 팝업관리 수정/삭제/보기 + + + + + + + + + + + + + + + + + + + + + + + + + +<% +If vCnt>-1 Then + + If v_page = 1 then + num = recordcount + else + num = recordcount - ((v_page - 1) * v_pagesize) + End if + + + For i=0 To vCnt + + Call arr2Value(Query_Fields, "vData", i) + + If w_chk = "T" then + w_chk_str = "사용(모든팝업)" + ElseIf w_chk = "Y" then + w_chk_str = "사용" + ElseIf w_chk = "N" then + w_chk_str = "중지" + End if +%> + + + + + + + + + + + + +<% + num = num - 1 + Next +Else +%> + + + + + + + + + + + +<% +End if +%> + + + +
팝업관리 서식
선택제목사용기간사용여부수정삭제보기
<%=subject%><%=sdate%> ~ <%=edate%><%=w_chk_str%>
+
+ +
+ +
+ + +
+ <%page("list.asp")%> +
+ + +
+ +
+ + +
+ + + diff --git a/manager/content/04popup/view.asp b/manager/content/04popup/view.asp new file mode 100644 index 0000000..a93f162 --- /dev/null +++ b/manager/content/04popup/view.asp @@ -0,0 +1,90 @@ + + + + + +<% + +' 파라미터정보 *********************************************** +idx = InputValue(request("idx")) +' ************************************************************ +If Not( IsNumeric(idx) ) Then + Call goMessage_board("잘못된 페이지 요청입니다.", "/", "", "", a_num) +End if + +' 레코드필드 +R_Fields = "ck_chk, ck_val, subject, content" + +R_tablename_str = "popup" + +R_WHERE_str = " where idx= '"&idx &"'" + +Call SelectQuery (R_Fields, R_tablename_str, R_WHERE_str) + +if ck_val = "" Then ck_val = 1 + +%> + + + + + + + <%=subject%> + + + + + + + + + + + +
+ + +
+ <%=content%> +
+ + + <%if ck_chk = "Y" then%> + + <% End If %> + + +
+ + + + + + + \ No newline at end of file diff --git a/manager/content/04popup/write.asp b/manager/content/04popup/write.asp new file mode 100644 index 0000000..8996490 --- /dev/null +++ b/manager/content/04popup/write.asp @@ -0,0 +1,236 @@ + + + + + + + +<% + +' 파라미터정보 ************************************************************************************* +idx = InputValue(request("idx")) ' --Pk +' ************************************************************************************************** + + + +If idx <> "" then ' --수정상태일때.. + + ' 레코드필드 + R_Fields = "w_width, w_height, w_top, w_left, ck_chk, ck_val, scrollbars, toolbar, menubar, locations, w_chk, subject, content, wdate, mdate, sdate, edate, tot_chk" + R_tablename_str = "popup " + R_WHERE_str = " WHERE idx="&idx + + Call SelectQuery (R_Fields, R_tablename_str, R_WHERE_str) + + reset_url = "list.asp?"&page_info + is_title_str = "팝업 정보 수정" + +Else ' 새글등록 + + w_width = "400" + w_height = "400" + w_top = "0" + w_left = "0" + ck_chk = "Y" + + reset_url = "write.asp" + is_title_str = "신규 팝업 생성" + +End If + + +If ck_chk = "" Then v_open = "none" + + +If sdate = "" then + + sdate_y = Year(now) + sdate_m = Month(now) + sdate_d = Day(now) + +else + + sdate_arr = split(sdate,"-") + + sdate_y = sdate_arr(0) + sdate_m = sdate_arr(1) + sdate_d = sdate_arr(2) + +End if + +If edate = "" then + + nm = DateAdd("m",1, now) + + edate_y = Year(nm) + edate_m = month(nm) + edate_d = day(nm) + +else + + edate_arr = split(edate, "-") + + edate_y = edate_arr(0) + edate_m = edate_arr(1) + edate_d = edate_arr(2) + +End if + +If Len(MM)=1 Then MM = "0"&MM +If Len(DD)=1 Then DD = "0"&DD + +%> + + + +
+ +
+
+

<%=is_title_str%>

+
+ +
+ + +
+ +
+
+ +
+ +

+ + +
+ 팝업생성 서식 작성 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
팝업생성 서식
+ + + + ~ + + + +
가로 pixel  세로 pixel * 픽셀(pixel) 단위만 사용하실 수 있습니다.
상단 pixel  좌측 pixel * 픽셀(pixel) 단위만 사용하실 수 있습니다.
환경설정 + tabindex="<%=getTabIndex()%>" />스크롤바사용  + tabindex="<%=getTabIndex()%>" />툴바사용  + tabindex="<%=getTabIndex()%>" />메뉴바사용  + tabindex="<%=getTabIndex()%>" />주소창사용  +
쿠키값설정 + [다음에 창열지 않기] 사용 + + + +
+ + + + + + + + + +
+
+ + <%If ck_chk = "N" then%> + + <%End if%> + +
+ <% + + session("fck_filepath") = "/data/popup/" '업로드 경로(동적경로를 위해 세션사용) + 'response.write session("fck_filepath") + Set oFCKeditor = New FCKeditor + oFCKeditor.BasePath = "/fckeditor/" + oFCKeditor.value = content + oFCKeditor.ToolbarSet = "Basic" + oFCKeditor.Create "content" + %> +
+
+ + + + +
+
+
+ +
+ +
+ + +
+ + + + \ No newline at end of file diff --git a/manager/content/04popup/write_ok.asp b/manager/content/04popup/write_ok.asp new file mode 100644 index 0000000..d48174c --- /dev/null +++ b/manager/content/04popup/write_ok.asp @@ -0,0 +1,57 @@ + + + + + +<% + +R_Fields = "idx, w_width, w_height, w_top, w_left, ck_chk, ck_val, scrollbars, toolbar, menubar, locations, subject, w_chk, wdate, mdate, sdate_y, sdate_m, sdate_d, edate_y, edate_m, edate_d, tot_chk" + +Call RequestAll (R_Fields, "") + +If Len(sdate_m)=1 Then sdate_m = "0" & sdate_m +If Len(sdate_d)=1 Then sdate_d = "0" & sdate_d +If Len(edate_m)=1 Then edate_m = "0" & edate_m +If Len(edate_d)=1 Then edate_d = "0" & edate_d + +sdate = sdate_y&"-"&sdate_m&"-"&sdate_d +edate = edate_y&"-"&edate_m&"-"&edate_d + +' 에디터부분은 따로 InputValue2로 필터 해준다.. +content = InputValue2(request("content")) + +wdate = getDateFm(now,3) +mdate = getDateFm(now,3) + + +if scrollbars = "" Then scrollbars = "no" +if toolbar = "" Then toolbar = "no" +if menubar = "" Then menubar = "no" +if locations = "" Then locations = "no" +if w_chk = "" Then w_chk = "N" + + + +if idx = "" then ' --등록 + + R_Fields_i = "w_width, w_height, w_top, w_left, ck_chk, ck_val, scrollbars, toolbar, menubar, locations, subject, content, w_chk, wdate, mdate, sdate, edate, tot_chk" + + Call InsertQuery(R_Fields_i, "popup") + + ok_url = "list.asp?"&page_info + +Else ' --수정 + + R_Fields_u = "w_width, w_height, w_top, w_left, ck_chk, ck_val, scrollbars, toolbar, menubar, locations, subject, content, mdate, sdate, edate, tot_chk" + + Call UpdateQuery (R_Fields_u, "popup", "where idx="&idx) + + ok_url = "list.asp?idx="&idx&"&"&page_info + +End if + +Dbcon.close : Set Dbcon = Nothing + +Call loding("0", ok_url) + +%> diff --git a/manager/content/04popup/write_ui.asp b/manager/content/04popup/write_ui.asp new file mode 100644 index 0000000..b140e87 --- /dev/null +++ b/manager/content/04popup/write_ui.asp @@ -0,0 +1,236 @@ + + + + + + + +<% + +' 파라미터정보 ************************************************************************************* +idx = InputValue(request("idx")) ' --Pk +' ************************************************************************************************** + + + +If idx <> "" then ' --수정상태일때.. + + ' 레코드필드 + R_Fields = "w_width, w_height, w_top, w_left, ck_chk, ck_val, scrollbars, toolbar, menubar, locations, w_chk, subject, content, wdate, mdate, sdate, edate, tot_chk" + R_tablename_str = "popup " + R_WHERE_str = " WHERE idx="&idx + + Call SelectQuery (R_Fields, R_tablename_str, R_WHERE_str) + + reset_url = "list.asp?"&page_info + is_title_str = "팝업 정보 수정" + +Else ' 새글등록 + + w_width = "400" + w_height = "400" + w_top = "0" + w_left = "0" + ck_chk = "Y" + + reset_url = "write.asp" + is_title_str = "신규 팝업 생성" + +End If + + +If ck_chk = "" Then v_open = "none" + + +If sdate = "" then + + sdate_y = Year(now) + sdate_m = Month(now) + sdate_d = Day(now) + +else + + sdate_arr = split(sdate,"-") + + sdate_y = sdate_arr(0) + sdate_m = sdate_arr(1) + sdate_d = sdate_arr(2) + +End if + +If edate = "" then + + nm = DateAdd("m",1, now) + + edate_y = Year(nm) + edate_m = month(nm) + edate_d = day(nm) + +else + + edate_arr = split(edate, "-") + + edate_y = edate_arr(0) + edate_m = edate_arr(1) + edate_d = edate_arr(2) + +End if + +If Len(MM)=1 Then MM = "0"&MM +If Len(DD)=1 Then DD = "0"&DD + +%> + + + +
+ +
+
+

<%=is_title_str%>

+
+ +
+ + +
+ +
+
+ +
+ +

+ + +
+ 팝업생성 서식 작성 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
팝업생성 서식
+ + + + ~ + + + +
가로 pixel  세로 pixel * 픽셀(pixel) 단위만 사용하실 수 있습니다.
상단 pixel  좌측 pixel * 픽셀(pixel) 단위만 사용하실 수 있습니다.
환경설정 + tabindex="<%=getTabIndex()%>" />스크롤바사용  + tabindex="<%=getTabIndex()%>" />툴바사용  + tabindex="<%=getTabIndex()%>" />메뉴바사용  + tabindex="<%=getTabIndex()%>" />주소창사용  +
쿠키값설정 + [다음에 창열지 않기] 사용 + + + +
+ + + + + + + + + +
+
+ + <%If ck_chk = "N" then%> + + <%End if%> + +
+ <% + + session("fck_filepath") = "/data/popup/" '업로드 경로(동적경로를 위해 세션사용) + 'response.write session("fck_filepath") + Set oFCKeditor = New FCKeditor + oFCKeditor.BasePath = "/fckeditor/" + oFCKeditor.value = content + oFCKeditor.ToolbarSet = "Basic" + oFCKeditor.Create "content" + %> +
+
+ + + + +
+
+
+ +
+ +
+ + +
+ + + + \ No newline at end of file diff --git a/manager/content/05stats/d.asp b/manager/content/05stats/d.asp new file mode 100644 index 0000000..fe9ebab --- /dev/null +++ b/manager/content/05stats/d.asp @@ -0,0 +1,283 @@ + + +<% +Dim qryValue ' 선언해줘야 함!! SetWhere 함수 내에서 사용되는 변수.. +Dim arrValue(31) +Dim arrData(33,2) + +YY = inputvalue(request("YY")) +MM = inputvalue(request("MM")) +DD = inputvalue(request("DD")) +TT = inputvalue(request("TT")) + + +If YY = "" and MM = "" and DD = "" and TT = "" then + + YY = Year(now) + MM = Month(now) + +End If + + +int_YY = "" : If IsNumeric(YY) Then int_yy = Int(YY) +int_MM = "" : If IsNumeric(MM) Then int_MM = Int(MM) + +If Len(MM)=1 Then MM = "0"&MM + + +' where 조건 +SetWhere() + + +' 카운터 수의 합을 구한다 +qry ="select count(vNum) as TCount from visit_counter " & qryValue +Set Rs = Dbcon.Execute (qry) +sumCount = Rs("TCount") +rs.close : Set rs = Nothing + +If YY<>"" And MM<>"" Then + temp_d = DateAdd("m",1, YY&"-"&MM&"-01") + dataLength = Right(DateAdd("d", -1, temp_d ),2) +Else + dataLength = 31 +End If + + +For i=1 To dataLength + arrValue(i) = 0 +next + + +' 카운터 수의 합을 구한다 +qry ="select vDD,count(vNum) as VCount from visit_counter "&qryValue&" group by vDD order by vDD" +Set Rs = Dbcon.Execute (qry) + +Do While Not rs.eof + arrValue(rs("vDD")) = rs("VCount") + rs.movenext +Loop +rs.close : Set rs = Nothing + + + + +maxCount = 0 +minCount = 100000 + + + +For j=1 To dataLength + + arrData(j,0) = arrValue(j) ' 카운터 + + If sumCount > 1 then + arrData(j,1) = (arrValue(j)/sumCount)* 100 + if arrData(j,1) > 0 then arrData(j,1) = formatnumber(arrData(j,1),2) + + arrData(j,2) = (arrValue(j)/sumCount) * 550 + else + arrData(j,1) = 0 + arrData(j,2) = 0 + End if + + If minCount > arrValue(j) then minCount = arrValue(j) + If maxCount < arrValue(j) then maxCount = arrValue(j) + + + if arrData(j,0) = 0 then + arrData(j,0) = "" + End if + + if arrData(j,2) = 0 then + arrData(j,2) = "" + End if + +Next + +%> + + +
+ +
+
+

일별 통계

+
+ +
+ + +
+ + +

+ + +
+ +
+
+ +
    + +
  • + +
  • +
  • + +
  • +
  • +
  • +
+ +
+
+ +
+ + +
+ + <% + strXML = strXML & "<graph caption='' xAxisName='' yAxisName='' showValues='0' decimalPrecision='0' formatNumberScale='0' showAlternateHGridColor='1' AlternateHGridColor='' divLineColor='F0F0F0' divLineAlpha='' alternateHGridAlpha='5' bgcolor='ffffff' canvasBgColor='ffffff' canvasBaseColor='EAEAEA' canvasBaseDepth='1' canvasBgDepth='0' baseFont='verdana' baseFontSize='9' baseFontColor='999999' hoverCapBgColor='ffffff' hoverCapBorderColor='A6A6A6' hoverCapSepChar=' ' chartLeftMargin='0' chartRightMargin='0' chartTopMargin='5' chartBottomMargin='0'>" + + strXML = strXML & "<set name='1日' value='"&arrData(1,0)&"' color='B1D361' />" + strXML = strXML & "<set name='' value='"&arrData(2,0)&"' color='FECC6D' />" + strXML = strXML & "<set name='' value='"&arrData(3,0)&"' color='E94646' />" + strXML = strXML & "<set name='' value='"&arrData(4,0)&"' color='7BDCC5'/>" + strXML = strXML & "<set name='5日' value='"&arrData(5,0)&"' color='74C2E4'/>" + strXML = strXML & "<set name='' value='"&arrData(6,0)&"' color='828FE3'/>" + strXML = strXML & "<set name='' value='"&arrData(7,0)&"' color='D07CDB'/>" + strXML = strXML & "<set name='' value='"&arrData(8,0)&"' color='D8D8D8'/>" + + strXML = strXML & "<set name='' value='"&arrData(9,0)&"' color='B1D361' />" + strXML = strXML & "<set name='10日' value='"&arrData(10,0)&"' color='FECC6D' />" + strXML = strXML & "<set name='' value='"&arrData(11,0)&"' color='E94646' />" + strXML = strXML & "<set name='' value='"&arrData(12,0)&"' color='7BDCC5'/>" + strXML = strXML & "<set name='' value='"&arrData(13,0)&"' color='74C2E4'/>" + strXML = strXML & "<set name='' value='"&arrData(14,0)&"' color='828FE3'/>" + strXML = strXML & "<set name='15日' value='"&arrData(15,0)&"' color='D07CDB'/>" + strXML = strXML & "<set name='' value='"&arrData(16,0)&"' color='D8D8D8'/>" + + strXML = strXML & "<set name='' value='"&arrData(17,0)&"' color='B1D361' />" + strXML = strXML & "<set name='' value='"&arrData(18,0)&"' color='FECC6D' />" + strXML = strXML & "<set name='' value='"&arrData(19,0)&"' color='E94646' />" + strXML = strXML & "<set name='20日' value='"&arrData(20,0)&"' color='7BDCC5'/>" + strXML = strXML & "<set name='' value='"&arrData(21,0)&"' color='74C2E4'/>" + strXML = strXML & "<set name='' value='"&arrData(22,0)&"' color='828FE3'/>" + strXML = strXML & "<set name='' value='"&arrData(23,0)&"' color='D07CDB'/>" + strXML = strXML & "<set name='' value='"&arrData(24,0)&"' color='D8D8D8'/>" + + strXML = strXML & "<set name='25日' value='"&arrData(25,0)&"' color='B1D361' />" + strXML = strXML & "<set name='' value='"&arrData(26,0)&"' color='FECC6D' />" + strXML = strXML & "<set name='' value='"&arrData(27,0)&"' color='E94646' />" + strXML = strXML & "<set name='' value='"&arrData(28,0)&"' color='7BDCC5'/>" + strXML = strXML & "<set name='' value='"&arrData(29,0)&"' color='74C2E4'/>" + strXML = strXML & "<set name='30日' value='"&arrData(30,0)&"' color='828FE3'/>" + strXML = strXML & "<set name='' value='"&arrData(31,0)&"' color='D07CDB'/>" + + strXML = strXML & "</graph>" + + response.write renderChartHTML("/manager/img/swf/main_colum3d.swf", "", strXML, "myNext", 730, 200,"","","") + + %> +
+ +
+ 전체 <%=sumCount%>명 방문 (최대 <%=maxCount%>명, 최소 <%=minCount%>명) +
+ +
+ 일별 방문자 통계 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <% + + td_end = 1 + + For z=1 To 33 + + %> + + + + + + + <% + + td_end = td_end + 1 + + If td_end = 4 Then ' 3칸째일때 + + td_end = 1 + + If z <> 33 Then response.write "" + + else + response.write "" + End if + + next + %> + + + + + +
일별 방문자 통계 서식
일자방문수비율(%)일자방문수비율(%)일자방문수비율(%)
<%If z<=Int(dataLength) Then response.write z&"일" End If %><% SetDetail(z)%><%=arrData(z,1)%>
+
+ + +
+ + +
+ + + + \ No newline at end of file diff --git a/manager/content/05stats/h.asp b/manager/content/05stats/h.asp new file mode 100644 index 0000000..15c2ba6 --- /dev/null +++ b/manager/content/05stats/h.asp @@ -0,0 +1,286 @@ + + +<% + +Dim qryValue ' 선언해줘야 함!! SetWhere 함수 내에서 사용되는 변수.. +Dim curCount(24) +Dim arrData(24, 2) + +YY = inputvalue(request("YY")) +MM = inputvalue(request("MM")) +DD = inputvalue(request("DD")) +TT = inputvalue(request("TT")) + +If YY="" and MM="" and DD="" and TT="" then + YY = Year(now) + MM = Month(now) + DD = Day(now) +End if + + +int_YY = "" : If IsNumeric(YY) Then int_yy = Int(YY) +int_MM = "" : If IsNumeric(MM) Then int_MM = Int(MM) +int_DD = "" : If IsNumeric(DD) Then int_DD = Int(DD) + +If Len(MM)=1 Then MM = "0"&MM +If Len(DD)=1 Then DD = "0"&DD + + +' where 조건 +Call SetWhere() +' $qryValue = ""; + + +' 카운터 수의 합을 구한다 +qry = "select count(vNum) from visit_counter " & qryValue +Set Rs = Dbcon.Execute (qry) +totalCount = rs(0) +rs.close : Set rs = Nothing + + +' 배열 초기화 +For i=1 To 24 + curCount(i) = 0 +Next + + +' 일별 카운터를 구한다 +qry = "select vHH, count(vNum) as vC from visit_counter "&qryValue&" group by vHH order by vHH" +Set Rs = Dbcon.Execute (qry) + +sumCount = 0 +Do While Not rs.eof + vHH = Int(rs("vHH")) + vC = Int(rs("vC")) + + curCount(vHH) = vC + sumCount = sumCount + vC + + rs.movenext +Loop +rs.close : Set rs = Nothing + +maxCount = 0 +minCount = 100000 + + +For i=1 To 24 + + If sumCount > 0 then + curSize = int((curCount(i)/sumCount) * 540) + curPer = formatnumber((curCount(i)/sumCount) * 100, 2) + else + curSize = 0 + curPer = 0 + End if + + if maxCount < curCount(i) then + maxCount = curCount(i) + End if + + if minCount > curCount(i) then + minCount = curCount(i) + End if + + arrData(i,0) = curCount(i) + + arrData(i,1) = curSize + arrData(i,2) = curPer + + if arrData(i,0)= 0 then + arrData(i,0) = "" + End if + + if arrData(i,2) = 0 then + arrData(i,2) = "" + End if + +Next + +%> + + + +
+ +
+
+

시간별 통계

+
+ +
+ + +
+ + + +

+ + +
+ +
+
+ +
    + +
  • + +
  • +
  • + +
  • +
  • + +
  • +
  • +
  • +
+ +
+
+ +
+ + +
+ + <% + strXML = "<graph caption='' xAxisName='' yAxisName='' showValues='0' decimalPrecision='0' formatNumberScale='0' showAlternateHGridColor='1' AlternateHGridColor='' divLineColor='F0F0F0' divLineAlpha='' alternateHGridAlpha='5' bgcolor='ffffff' canvasBgColor='ffffff' canvasBaseColor='EAEAEA' canvasBaseDepth='1' canvasBgDepth='0' baseFont='verdana' baseFontSize='9' baseFontColor='999999' hoverCapBgColor='ffffff' hoverCapBorderColor='A6A6A6' hoverCapSepChar=' ' chartLeftMargin='0' chartRightMargin='0' chartTopMargin='5' chartBottomMargin='0'>" + + strXML = strXML & "<set name='0시' value='"&arrData(24,0)&"' color='B1D361' />" + strXML = strXML & "<set name='' value='"&arrData(1,0)&"' color='FECC6D' />" + strXML = strXML & "<set name='' value='"&arrData(2,0)&"' color='E94646' />" + strXML = strXML & "<set name='' value='"&arrData(3,0)&"' color='7BDCC5'/>" + strXML = strXML & "<set name='' value='"&arrData(4,0)&"' color='74C2E4'/>" + strXML = strXML & "<set name='5시' value='"&arrData(5,0)&"' color='828FE3'/>" + strXML = strXML & "<set name='' value='"&arrData(6,0)&"' color='D07CDB'/>" + strXML = strXML & "<set name='' value='"&arrData(7,0)&"' color='D8D8D8'/>" + + strXML = strXML & "<set name='' value='"&arrData(8,0)&"' color='B1D361' />" + strXML = strXML & "<set name='' value='"&arrData(9,0)&"' color='FECC6D' />" + strXML = strXML & "<set name='10시' value='"&arrData(10,0)&"' color='E94646' />" + strXML = strXML & "<set name='' value='"&arrData(11,0)&"' color='7BDCC5'/>" + strXML = strXML & "<set name='' value='"&arrData(12,0)&"' color='74C2E4'/>" + strXML = strXML & "<set name='' value='"&arrData(13,0)&"' color='828FE3'/>" + strXML = strXML & "<set name='' value='"&arrData(14,0)&"' color='D07CDB'/>" + strXML = strXML & "<set name='15시' value='"&arrData(15,0)&"' color='D8D8D8'/>" + + strXML = strXML & "<set name='' value='"&arrData(16,0)&"' color='B1D361' />" + strXML = strXML & "<set name='' value='"&arrData(17,0)&"' color='FECC6D' />" + strXML = strXML & "<set name='' value='"&arrData(18,0)&"' color='E94646' />" + strXML = strXML & "<set name='' value='"&arrData(19,0)&"' color='7BDCC5'/>" + strXML = strXML & "<set name='20시' value='"&arrData(20,0)&"' color='74C2E4'/>" + strXML = strXML & "<set name='' value='"&arrData(21,0)&"' color='828FE3'/>" + strXML = strXML & "<set name='' value='"&arrData(22,0)&"' color='D07CDB'/>" + strXML = strXML & "<set name='23시' value='"&arrData(23,0)&"' color='D8D8D8'/>" + + strXML = strXML & "</graph>" + + response.write renderChartHTML("/manager/img/swf/main_colum3d.swf", "", strXML, "myNext", 730, 200, "", "", "") + %> +
+ +
+ 전체 <%=totalCount%>명 방문 (최대 <%=maxCount%>명, 최소 <%=minCount%>명) +
+ +
+ 시간별 방문자 통계 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <% + + td_end = 1 + + For z=1 To 24 + + %> + + + + + + + <% + + td_end = td_end + 1 + + If td_end = 4 then ' 3칸째일때 + + td_end = 1 + + If z <>24 Then response.write "" + + else + response.write "" + End if + + next + %> + + + +
시간별 방문자 통계 서식
시간방문수비율(%)시간방문수비율(%)시간방문수비율(%)
<%=z%>시<%SetDetail(z)%><%=arrData(z,2)%>
+
+ + + +
+ + +
+ + + + diff --git a/manager/content/05stats/log.asp b/manager/content/05stats/log.asp new file mode 100644 index 0000000..dbb0be0 --- /dev/null +++ b/manager/content/05stats/log.asp @@ -0,0 +1,177 @@ + +<% +Dim qryValue ' 선언해줘야 함!! SetWhere 함수 내에서 사용되는 변수.. + +YY = inputvalue(request("YY")) +MM = inputvalue(request("MM")) +DD = inputvalue(request("DD")) + +If YY="" Then YY = Year(now) +If MM="" Then MM = month(now) +If DD="" Then DD = day(now) +If Len(MM)=1 Then MM = "0"&MM +If Len(DD)=1 Then DD = "0"&DD + + +int_YY = "" : If IsNumeric(YY) Then int_yy = Int(YY) +int_MM = "" : If IsNumeric(MM) Then int_MM = Int(MM) +int_DD = "" : If IsNumeric(DD) Then int_DD = Int(DD) + +' where 조건 +SetWhere() + +' 카운터 수의 합을 구한다 +qry ="select count(vNum) as TCount from visit_counter " & qryValue +Set Rs = Dbcon.Execute (qry) +totalCount = rs(0) +rs.close : Set rs = Nothing + + +qry = "select vIP,vBrowser,vOS,vHH,vMT,vURL from visit_counter "&qryValue&" order by vNum desc" +Set Rs = Dbcon.Execute (qry) +If rs.eof Then + vCnt = -1 +Else + vData = rs.getrows() + vCnt = UBound(vData,2) +End If +rs.close : Set rs = Nothing + + +%> + + +
+ +
+
+

방문자 접속위치정보 +

+
+ +
+ + +
+ + + +

+ + +
+ +
+
+ +
    + +
  • + +
  • +
  • + +
  • +
  • + +
  • +
  • +
  • +
+ +
+
+ +
+ + +
+ 전체 <%=totalCount%>명 방문 +
+ +
+ 방문자 접속위치정보 통계 + + + + + + + + + + + + + + + + + + + + +<% +If vCnt>-1 Then + num = totalCount + For j=0 To vCnt + + Call arr2Value("vIP,vBrowser,vOS,vHH,vMT,vURL", "vData", j) + + If vURL = "" then + vURL_str = "주소직접입력 또는 즐겨찾기를 이용한 방문" + else + vURL = replace(vURL, "&", "&") + wo = "javascript:void(window.open('"&vURL&"'));" + vURL_str = ""&StringToHTML(vURL, 60, false )&"" + End If + +%> + + + + + + + + +<% + num = num -1 + next +End if +%> + + + +
방문자 접속위치정보 통계 서식
번호링크된페이지(REFER_URL)운영체제 / 브라우저방문시각 / 방문자 IP
<%=num%><%=vURL_str%><%=SetOS(vOS)%>
<%=SetBrowser(vBrowser)%>
<%=right("0"&vHH,2)%> : <%=right("0"&vMT,2)%>
<%=vIP%>
+
+ + + +
+ + +
+ + + + + + diff --git a/manager/content/05stats/m.asp b/manager/content/05stats/m.asp new file mode 100644 index 0000000..e19a9be --- /dev/null +++ b/manager/content/05stats/m.asp @@ -0,0 +1,258 @@ + +<% + +Dim qryValue ' 선언해줘야 함!! SetWhere 함수 내에서 사용되는 변수.. +Dim curCount(12) +Dim arrData(12,2) + +YY = inputvalue(request("YY")) +MM = inputvalue(request("MM")) +DD = inputvalue(request("DD")) +TT = inputvalue(request("TT")) + + +If YY = "" and MM = "" and DD = "" and TT = "" then + + YY = Year(now) + MM = Month(now) + +End If + +int_YY = "" : If IsNumeric(YY) Then int_yy = Int(YY) +int_MM = "" : If IsNumeric(MM) Then int_MM = Int(MM) + +If Len(MM)=1 Then MM = "0"&MM + + +' where 조건 +SetWhere() + +' 카운터 수의 합을 구한다 +qry = "select count(vNum) from visit_counter "&qryValue +Set Rs = Dbcon.Execute (qry) +totalCount = rs(0) +rs.close : Set rs = nothing + +For i=1 To 12 + curCount(i) = 0 +next + + +' 일별 카운터를 구한다 +qry = "select vMM,count(vNum) as vC from visit_counter "& qryValue &" group by vYY,vMM order by vYY,vMM" +Set Rs = Dbcon.Execute (qry) + +sumCount = 0 +Do While Not rs.eof + arr = Int(rs("vMM")) + VC = Int(rs("vC")) + curCount(arr) = VC + sumCount = sumCount + VC + + rs.movenext +Loop +rs.close : Set rs = nothing + + +' 날짜변 데이터를 배열에 담는다 +maxCount = 0 +minCount = 100000 + +For i=1 To UBound(curCount) + + + If sumCount > 0 then + curSize = int((curCount(i)/sumCount) * 540) + curPer = formatnumber((curCount(i)/sumCount) * 100,2) + else + curSize = 0 + curPer = 0 + End if + + if maxCount < curCount(i) then + maxCount = curCount(i) + End if + + if minCount > curCount(i) then + minCount = curCount(i) + End if + + arrData(i,0) = curCount(i) + arrData(i,1) = curSize + arrData(i,2) = curPer + + if arrData(i,0) = 0 then + arrData(i,0) = "" + End if + + if arrData(i,2) = 0 then + arrData(i,2) = "" + End if + +next + + + +%> + + +
+ +
+
+

월별 통계

+
+ +
+ + +
+ + + +

+ + +
+ +
+
+ +
    + +
  • + +
  • +
  • + +
  • +
  • +
  • +
+ +
+
+ +
+ + +
+ + <% + strXML = "<graph caption='' xAxisName='' yAxisName='' showValues='0' decimalPrecision='0' formatNumberScale='0' showAlternateHGridColor='1' AlternateHGridColor='' divLineColor='F0F0F0' divLineAlpha='' alternateHGridAlpha='5' bgcolor='ffffff' canvasBgColor='ffffff' canvasBaseColor='EAEAEA' canvasBaseDepth='1' canvasBgDepth='0' baseFont='verdana' baseFontSize='9' baseFontColor='999999' hoverCapBgColor='ffffff' hoverCapBorderColor='A6A6A6' hoverCapSepChar=' ' chartLeftMargin='0' chartRightMargin='0' chartTopMargin='5' chartBottomMargin='0'>" + + strXML = strXML & "<set name='1月' value='"&arrData(1,0)&"' color='B1D361' />" + strXML = strXML & "<set name='2月' value='"&arrData(2,0)&"' color='FECC6D' />" + strXML = strXML & "<set name='3月' value='"&arrData(3,0)&"' color='E94646' />" + strXML = strXML & "<set name='4月' value='"&arrData(4,0)&"' color='7BDCC5'/>" + strXML = strXML & "<set name='5月' value='"&arrData(5,0)&"' color='74C2E4'/>" + strXML = strXML & "<set name='6月' value='"&arrData(6,0)&"' color='828FE3'/>" + strXML = strXML & "<set name='7月' value='"&arrData(7,0)&"' color='D07CDB'/>" + strXML = strXML & "<set name='8月' value='"&arrData(8,0)&"' color='D8D8D8'/>" + + strXML = strXML & "<set name='9月' value='"&arrData(9,0)&"' color='B1D361' />" + strXML = strXML & "<set name='10月' value='"&arrData(10,0)&"' color='FECC6D' />" + strXML = strXML & "<set name='11月' value='"&arrData(11,0)&"' color='E94646' />" + strXML = strXML & "<set name='12月' value='"&arrData(12,0)&"' color='7BDCC5'/>" + + strXML = strXML & "</graph>" + + response.write renderChartHTML("/manager/img/swf/main_colum3d.swf", "", strXML, "myNext", 730, 200,"","","") + %> +
+ +
+ 전체 <%=totalCount %>명 방문 (최대 <%=maxCount %>명, 최소 <%=minCount %>명) +
+ +
+ 월별 방문자 통계 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <% + + td_end = 1 + + For z=1 To 12 + %> + + + + + + + <% + + td_end = td_end + 1 + + If td_end = 4 then ' 3칸째일때 + + td_end = 1 + + If z <> 12 Then response.write "" + + else + response.write "" + End if + + next + %> + + + +
월별 방문자 통계 서식
일자방문수비율(%)일자방문수비율(%)일자방문수비율(%)
<%If z <= 12 Then response.write z&"월" End if%><% SetDetail(z)%><%=arrData(z,2)%>
+
+ + + +
+ + +
+ + + \ No newline at end of file diff --git a/manager/content/05stats/member.asp b/manager/content/05stats/member.asp new file mode 100644 index 0000000..26e16c4 --- /dev/null +++ b/manager/content/05stats/member.asp @@ -0,0 +1,279 @@ + + +<% +v_mid = InputValue(request("p_mid")) +v_yy = InputValue(request("p_yy")) +v_mm = InputValue(request("p_mm")) +v_type = InputValue(request("p_type")) + +If v_yy="" then v_yy = year(now) +If v_mm="" then v_mm = month(now) +v_mm = Right("00"&v_mm,2) +If v_type="" then v_type = "day" + + + +Dim arrValue() +Dim arrValue_mms() +dataLength = 0 +totalCount = 0 +totalCount_mms = 0 + +If v_mid<>"" then + + If v_type="day" Then + + temp_d = DateAdd("m",1, v_yy&"-"&v_mm&"-01") + dataLength = Right(DateAdd("d", -1, temp_d ),2) + + ReDim arrValue(dataLength) + ReDim arrValue_mms(dataLength) + + + tablename = "em_log_"&v_yy&v_mm + + sql = " SELECT day(tran_date), count(*) FROM "&tablename&" WHERE tran_id='"&v_mid&"' GROUP BY day(tran_date) " + Set rs = dbcon.execute(sql) + Do While Not rs.eof + arrValue(rs(0)) = rs(1) + totalCount = totalCount + CInt(rs(1)) + rs.movenext + Loop + rs.close : Set rs = Nothing + + + '-----------mms 카운트--------------- + tablename = "sdk_mms_report_detail_" & Right(v_yy,2) & v_mm + '//table 존재유무 + sql = "select count(*) as cnt from information_schema.tables where table_name = '" & tablename & "'" + 'Response.write sql + Set rs = dbcon.execute( sql ) + rscount = rs("cnt") + rs.close : Set rs = Nothing + If rscount > 0 Then + + sql = " SELECT right(left(send_date,8), 2), count(*) FROM "&tablename&" WHERE user_id='"&v_mid&"' GROUP BY right(left(send_date,8), 2) " + Set rs = dbcon.execute(sql) + Do While Not rs.eof + arrValue_mms(rs(0)) = rs(1) + totalCount_mms = totalCount_mms + CInt(rs(1)) + rs.movenext + + Loop + rs.close : Set rs = Nothing + + + End if + '-----------mms 카운트끝--------------- + Else + + dataLength = 12 + ReDim arrValue(dataLength) + ReDim arrValue_mms(dataLength) + + + For i=1 To 12 + + tablename = "em_log_" & v_yy & Right("00"&i,2) + + '//table 존재유무 + sql = "select count(*) as cnt from information_schema.tables where table_name = '" & tablename & "'" + Set rs = dbcon.execute( sql ) + rscount = rs("cnt") + rs.close : Set rs = Nothing + + If rscount > 0 Then + + sql = " SELECT count(*) FROM "&tablename&" WHERE tran_id='"&v_mid&"'" + Set rs = dbcon.execute( sql ) + + arrValue(i) = rs(0) + totalCount = totalCount + CInt(rs(0)) + + End If + + '-----------mms 카운트--------------- + tablename = "sdk_mms_report_detail_" & Right(v_yy,2) & Right("00"&i,2) + '//table 존재유무 + sql = "select count(*) as cnt from information_schema.tables where table_name = '" & tablename & "'" + 'Response.write sql + Set rs = dbcon.execute( sql ) + rscount = rs("cnt") + rs.close : Set rs = Nothing + + If rscount > 0 Then + sql = " SELECT count(*) FROM "&tablename&" WHERE user_id='"&v_mid&"'" + Set rs = dbcon.execute( sql ) + + arrValue_mms(i) = rs(0) + If arrValue_mms(i) = 0 Then arrValue_mms(i) = "" + totalCount_mms = totalCount_mms + CInt(rs(0)) + End if + + + '-----------mms 카운트끝--------------- + + next + + End If + + + +End if + +%> + + + +
+ +
+
+

회원별 메세지 통계

+
+ +
+ + +
+ +

+ +
+ +
+
+ +
    + +
  • + +
  • +
  • + +
  • +
  • + +
  • +
  • + />   + /> +
  • +
  • +
+ +
+
+ +
+ + + +
+   +
+ +
+ 월별 방문자 통계 + + + + + + + + + + + + + + + + + + <% + If dataLength>0 Then + + For z=1 To ubound(arrValue) + + If v_type="day" Then + v_dd = z + Else + v_mm = z + End if + + %> + + + + + + + + <% + Next + + mms_usecount = totalCount_mms*3 + %> + + + + + + <% + Else + %> + + <% + End if + %> + + +
월별 방문자 통계 서식
<%If v_type="day" Then%>일자<%else%>월<%End if%>SMS발송MMS발송
<%=z%> <%If v_type="day" Then%>일<%else%>월<%End if%> + <%=FormatNumber(arrValue(z), 0)%> + [상세보기] + + <% + If arrValue_mms(z) <> "" Then + Response.write FormatNumber(arrValue_mms(z), 0) + %> + [상세보기] + <% + End if + %> +
합계<%=FormatNumber(totalCount,0)%><%=FormatNumber(totalCount_mms,0)%> (차감건수 : <%=FormatNumber(mms_usecount,0)%>)
검새 회원 ID를 입력하세요
+
+ + + +
+ + +
+ + + + + \ No newline at end of file diff --git a/manager/content/05stats/mms_d.asp b/manager/content/05stats/mms_d.asp new file mode 100644 index 0000000..b27e8be --- /dev/null +++ b/manager/content/05stats/mms_d.asp @@ -0,0 +1,270 @@ + + +<% +Dim qryValue ' 선언해줘야 함!! SetWhere 함수 내에서 사용되는 변수.. +Dim arrValue(31) +Dim arrData(33,2) + + +YY = inputvalue(request("YY")) +MM = inputvalue(request("MM")) +DD = inputvalue(request("DD")) +TT = inputvalue(request("TT")) + + +If YY = "" and MM = "" and DD = "" and TT = "" then + + YY = Year(now) + MM = Month(now) + +End If + + +int_YY = "" : If IsNumeric(YY) Then int_yy = Int(YY) +int_MM = "" : If IsNumeric(MM) Then int_MM = Int(MM) + +If Len(MM)=1 Then MM = "0"&MM + +'table명 +table = "sdk_mms_report_detail_" & Right(YY,2) & MM + +'table 존재유무 +sql = "select count(*) from information_schema.tables where table_name = '" & table & "'" +Set rs = dbcon.execute( sql ) +rscount = rs(0) +Set rs = nothing + + +'카운트 +If rscount > 0 Then + + sql = "select count(*) from " & table + Set rs = dbcon.execute( sql ) + sumCount = rs(0) + Set rs = nothing + +else + sumCount = 0 +End if + + +If YY<>"" And MM<>"" Then + temp_d = DateAdd("m",1, YY&"-"&MM&"-01") + dataLength = Right(DateAdd("d", -1, temp_d ),2) +Else + dataLength = 31 +End If + + +For i=1 To dataLength + arrValue(i) = 0 +next + + +'카운터수의 합 +If rscount > 0 Then + sql = "select count(*) as VCount, right(left(send_date,8),2) as vDD from " & table & " group by right(left(send_date,8),2)" + Set Rs = Dbcon.Execute (sql) + + Do While Not rs.eof + arrValue(CInt(rs("vDD"))) = rs("VCount") + rs.movenext + Loop + rs.close : Set rs = Nothing + +End if + + + + +maxCount = 0 +minCount = 100000 + + + +For j=1 To dataLength + + arrData(j,0) = arrValue(j) ' 카운터 + + If sumCount > 1 then + arrData(j,1) = (arrValue(j)/sumCount)* 100 + if arrData(j,1) > 0 then arrData(j,1) = formatnumber(arrData(j,1),2) + + arrData(j,2) = (arrValue(j)/sumCount) * 550 + else + arrData(j,1) = 0 + arrData(j,2) = 0 + End if + + If minCount > arrValue(j) then minCount = arrValue(j) + If maxCount < arrValue(j) then maxCount = arrValue(j) + + + if arrData(j,0) = 0 then + arrData(j,0) = "" + End if + + if arrData(j,2) = 0 then + arrData(j,2) = "" + End if + +Next + +%> + + +
+ +
+
+

MMS발송 일별 통계

+
+ +
+ + +
+ + +

+ + +
+ +
+
+ +
    + +
  • + +
  • +
  • + +
  • +
  • +
  • +
+ +
+
+ +
+ + +
+ + <% + strXML = strXML & "<graph caption='' xAxisName='' yAxisName='' showValues='0' decimalPrecision='0' formatNumberScale='0' showAlternateHGridColor='1' AlternateHGridColor='' divLineColor='F0F0F0' divLineAlpha='' alternateHGridAlpha='5' bgcolor='ffffff' canvasBgColor='ffffff' canvasBaseColor='EAEAEA' canvasBaseDepth='1' canvasBgDepth='0' baseFont='verdana' baseFontSize='9' baseFontColor='999999' hoverCapBgColor='ffffff' hoverCapBorderColor='A6A6A6' hoverCapSepChar=' ' chartLeftMargin='0' chartRightMargin='0' chartTopMargin='5' chartBottomMargin='0'>" + + strXML = strXML & "<set name='1日' value='"&arrData(1,0)&"' color='B1D361' />" + strXML = strXML & "<set name='' value='"&arrData(2,0)&"' color='FECC6D' />" + strXML = strXML & "<set name='' value='"&arrData(3,0)&"' color='E94646' />" + strXML = strXML & "<set name='' value='"&arrData(4,0)&"' color='7BDCC5'/>" + strXML = strXML & "<set name='5日' value='"&arrData(5,0)&"' color='74C2E4'/>" + strXML = strXML & "<set name='' value='"&arrData(6,0)&"' color='828FE3'/>" + strXML = strXML & "<set name='' value='"&arrData(7,0)&"' color='D07CDB'/>" + strXML = strXML & "<set name='' value='"&arrData(8,0)&"' color='D8D8D8'/>" + + strXML = strXML & "<set name='' value='"&arrData(9,0)&"' color='B1D361' />" + strXML = strXML & "<set name='10日' value='"&arrData(10,0)&"' color='FECC6D' />" + strXML = strXML & "<set name='' value='"&arrData(11,0)&"' color='E94646' />" + strXML = strXML & "<set name='' value='"&arrData(12,0)&"' color='7BDCC5'/>" + strXML = strXML & "<set name='' value='"&arrData(13,0)&"' color='74C2E4'/>" + strXML = strXML & "<set name='' value='"&arrData(14,0)&"' color='828FE3'/>" + strXML = strXML & "<set name='15日' value='"&arrData(15,0)&"' color='D07CDB'/>" + strXML = strXML & "<set name='' value='"&arrData(16,0)&"' color='D8D8D8'/>" + + strXML = strXML & "<set name='' value='"&arrData(17,0)&"' color='B1D361' />" + strXML = strXML & "<set name='' value='"&arrData(18,0)&"' color='FECC6D' />" + strXML = strXML & "<set name='' value='"&arrData(19,0)&"' color='E94646' />" + strXML = strXML & "<set name='20日' value='"&arrData(20,0)&"' color='7BDCC5'/>" + strXML = strXML & "<set name='' value='"&arrData(21,0)&"' color='74C2E4'/>" + strXML = strXML & "<set name='' value='"&arrData(22,0)&"' color='828FE3'/>" + strXML = strXML & "<set name='' value='"&arrData(23,0)&"' color='D07CDB'/>" + strXML = strXML & "<set name='' value='"&arrData(24,0)&"' color='D8D8D8'/>" + + strXML = strXML & "<set name='25日' value='"&arrData(25,0)&"' color='B1D361' />" + strXML = strXML & "<set name='' value='"&arrData(26,0)&"' color='FECC6D' />" + strXML = strXML & "<set name='' value='"&arrData(27,0)&"' color='E94646' />" + strXML = strXML & "<set name='' value='"&arrData(28,0)&"' color='7BDCC5'/>" + strXML = strXML & "<set name='' value='"&arrData(29,0)&"' color='74C2E4'/>" + strXML = strXML & "<set name='30日' value='"&arrData(30,0)&"' color='828FE3'/>" + strXML = strXML & "<set name='' value='"&arrData(31,0)&"' color='D07CDB'/>" + + strXML = strXML & "</graph>" + + response.write renderChartHTML("/manager/img/swf/main_colum3d.swf", "", strXML, "myNext", 730, 200,"","","") + + %> +
+ +
+ 전체 <%=sumCount%>건 발송 (최대 <%=maxCount%>건, 최소 <%=minCount%>건) +
+ +
+ 일별 발송 통계 + + + + + + + + + + + + + + + + + + + + <% + For z=1 To dataLength + + %> + + + + + + + + <% + + next + %> + + + + + +
일별 발송 통계 서식
일자발송건수비율(%)상세보기
<%If z<=Int(dataLength) Then response.write z&"일" End If %><% SetDetail(z)%><%=arrData(z,1)%>[상세보기]
+
+ + +
+ + +
+ + + + \ No newline at end of file diff --git a/manager/content/05stats/mms_m.asp b/manager/content/05stats/mms_m.asp new file mode 100644 index 0000000..a2d531b --- /dev/null +++ b/manager/content/05stats/mms_m.asp @@ -0,0 +1,225 @@ + +<% + +Dim qryValue ' 선언해줘야 함!! SetWhere 함수 내에서 사용되는 변수.. +Dim curCount(12) +Dim arrData(12,2) + +YY = inputvalue(request("YY")) +MM = inputvalue(request("MM")) + + +If YY = "" and MM = "" and DD = "" and TT = "" then + + YY = Year(now) + MM = Month(now) + +End If + +int_YY = "" : If IsNumeric(YY) Then int_yy = Int(YY) +int_MM = "" : If IsNumeric(MM) Then int_MM = Int(MM) + +If Len(MM)=1 Then MM = "0"&MM + + + + + + +totalCount = 0 +sumCount = 0 + +For i = 1 To 12 + + curCount(i) = 0 + MM = Right( "0" & i, 2) + + '//table명 + table = "sdk_mms_report_detail_" & Right(YY,2) & MM + + '//table 존재유무 + sql = "select count(*) as cnt from information_schema.tables where table_name = '" & table & "'" + Set rs = dbcon.execute( sql ) + rscount = rs("cnt") + Set rs = nothing + + If rscount > 0 then + + '//월별 카운터를 구한다 + qry = "select count(*) as vC from " & table + Set rs = dbcon.execute( qry ) + + arr = i + VC = rs("vC") + curCount(arr) = VC + sumCount = sumCount + VC + else + + arr = i + VC = 0 + curCount(arr) = VC + sumCount = sumCount + VC + End if +next + + + +' 날짜변 데이터를 배열에 담는다 +maxCount = 0 +minCount = 100000 + +For i=1 To UBound(curCount) + + + If sumCount > 0 then + curSize = int((curCount(i)/sumCount) * 540) + curPer = formatnumber((curCount(i)/sumCount) * 100,2) + else + curSize = 0 + curPer = 0 + End if + + if maxCount < curCount(i) then + maxCount = curCount(i) + End if + + if minCount > curCount(i) then + minCount = curCount(i) + End if + + arrData(i,0) = curCount(i) + arrData(i,1) = curSize + arrData(i,2) = curPer + + if arrData(i,0) = 0 then + arrData(i,0) = "" + End if + + if arrData(i,2) = 0 then + arrData(i,2) = "" + End if + +next + + + +%> + + +
+ +
+
+

MMS발송월별 통계

+
+ +
+ + +
+ +

+ +
+ +
+
+ +
    + +
  • + +
  • + +
  • +
  • +
+ +
+
+ +
+ + +
+ + <% + strXML = "<graph caption='' xAxisName='' yAxisName='' showValues='0' decimalPrecision='0' formatNumberScale='0' showAlternateHGridColor='1' AlternateHGridColor='' divLineColor='F0F0F0' divLineAlpha='' alternateHGridAlpha='5' bgcolor='ffffff' canvasBgColor='ffffff' canvasBaseColor='EAEAEA' canvasBaseDepth='1' canvasBgDepth='0' baseFont='verdana' baseFontSize='9' baseFontColor='999999' hoverCapBgColor='ffffff' hoverCapBorderColor='A6A6A6' hoverCapSepChar=' ' chartLeftMargin='0' chartRightMargin='0' chartTopMargin='5' chartBottomMargin='0'>" + + strXML = strXML & "<set name='1月' value='"&arrData(1,0)&"' color='B1D361' />" + strXML = strXML & "<set name='2月' value='"&arrData(2,0)&"' color='FECC6D' />" + strXML = strXML & "<set name='3月' value='"&arrData(3,0)&"' color='E94646' />" + strXML = strXML & "<set name='4月' value='"&arrData(4,0)&"' color='7BDCC5'/>" + strXML = strXML & "<set name='5月' value='"&arrData(5,0)&"' color='74C2E4'/>" + strXML = strXML & "<set name='6月' value='"&arrData(6,0)&"' color='828FE3'/>" + strXML = strXML & "<set name='7月' value='"&arrData(7,0)&"' color='D07CDB'/>" + strXML = strXML & "<set name='8月' value='"&arrData(8,0)&"' color='D8D8D8'/>" + + strXML = strXML & "<set name='9月' value='"&arrData(9,0)&"' color='B1D361' />" + strXML = strXML & "<set name='10月' value='"&arrData(10,0)&"' color='FECC6D' />" + strXML = strXML & "<set name='11月' value='"&arrData(11,0)&"' color='E94646' />" + strXML = strXML & "<set name='12月' value='"&arrData(12,0)&"' color='7BDCC5'/>" + + strXML = strXML & "</graph>" + + response.write renderChartHTML("/manager/img/swf/main_colum3d.swf", "", strXML, "myNext", 730, 200,"","","") + %> +
+ +
+ 전체 <%=totalCount %>명 방문 (최대 <%=maxCount %>명, 최소 <%=minCount %>명) +
+ +
+ 월별 방문자 통계 + + + + + + + + + + + + + + + + + + <% + For z=1 To 12 + %> + + + + + + + + <% + next + %> + + +
월별 방문자 통계 서식
일자발송건수비율(%)
<%If z <= 12 Then response.write z&"월" End if%><% SetDetail(z)%><%=arrData(z,2)%>
+
+ + + +
+ + +
+ + + \ No newline at end of file diff --git a/manager/content/05stats/mmsreport_detail.asp b/manager/content/05stats/mmsreport_detail.asp new file mode 100644 index 0000000..a3fd134 --- /dev/null +++ b/manager/content/05stats/mmsreport_detail.asp @@ -0,0 +1,226 @@ + + +<% +security_ad_cms() +dateY = Trim(Request("dateY")) +dateM = Right("0"&Trim(Request("dateM")), 2) +dateD = Right("0"&Trim(Request("dateD")), 2) +excel = Request.QueryString("excel") + +If dateY = "" Then + dateY = Year(now) +End If +If dateM = "" Then + dateM = month(now) +End if + + +If dateD = "" Or dateD = 0 Then + datetitle = dateY & "-" & dateM + thisDate = dateY & "-" & dateM & "-01" + thisDate2 = DateSerial(dateY, dateM + 1, 1 - 1) +Else + + thisDate = dateY & "-" & dateM & "-" & dateD + datetitle = thisDate + thisDate2 = thisDate +End if +If excel = "ok" then + Response.ContentType = "application/vnd.ms-excel" + Response.AddHeader "Content-Disposition","attachment;filename=mms_log_"&dateY & dateM & dateD&".xls" + border="1" +Else + border="0" +End if + + + '테이블 존재유무 확인 쿼리 + 'log_table = "em_log_" & dateY & dateM + log_table = "sdk_mms_report_detail_" & Right(dateY,2) & dateM + sql = "select * from information_schema.tables where table_name = '" & log_table & "'" + Set rs = Dbcon.Execute( sql ) + If rs.bof Or rs.eof Then + Set rs = Nothing + list_data = null + Else + + + Set rs = nothing + + 'sql = "select tran_phone, tran_callback, tran_date, tran_msg, tran_id, tran_etc3, tran_etc4, tran_rslt from "&log_table&" where tran_rsltdate between '"&thisDate&"' and '"&thisDate&"'+ ' 23:59:59'" + 'sql = "select count(tran_pr), tran_callback, '"&thisDate&"' as tran_date, tran_msg, tran_id, tran_etc3, tran_etc4, tran_rslt from "&log_table&" where tran_rsltdate between '"&thisDate&"' and '"&thisDate2&"'+ ' 23:59:59' "&addqry&" group by tran_callback, left(tran_date, 10), tran_msg, tran_id, tran_etc3, tran_etc4, tran_rslt" + + jointable = log_table & " as a left outer join sdk_mms_report_" & Right(dateY,2) & dateM & " as b on a.job_id = b.job_id" + s_fields = "count(*) as cnt, b.callback, '"&thisDate&"' as tran_date, convert(varchar(3000), b.mms_msg) as mms_msg, a.user_id, b.reserved3, b.reserved4, a.result" + Where = " where report_res_date like '" & Replace(thisDate,"-","") & "%' " + groupby = " group by b.callback, left(a.send_date, 8), a.user_id, b.reserved3, b.reserved4, a.result, convert(varchar(3000), b.mms_msg) " + sql = "select " & s_fields & " from " & jointable & Where & groupby + 'Response.write sql + Set rs = Dbcon.Execute( sql ) + + If rs.bof Or rs.eof Then + list_data = null + Else + list_data = rs.getrows + End if + + Set rs = Nothing + 'response.write weeksumYes & "/" & weeksumNo + End if +%> + + + + +<%=datetitle%> 발송로그 +<%If Request.QueryString("excel") <> "ok" then%> + + +<%End if%> + + + + + + +<%If Request.QueryString("excel") <> "ok" then%> + + + + + + + + + + + +
상태가 실패일경우는 수신번호가 잘못되었거나 각 이통사의 일시적인 네트웍장애로 발생합니다. +
+ +
+ + + + + + + + <% + If dateD >= 1 Then + + %> + + <% + End if + %> +   +
+ + + +
+<%End if%> + + + + + + + + + + +<% +If Not(IsNull(list_data)) then + For i = 0 To UBound(list_data, 2) + tran_phone = list_data(0, i) + tran_callback = list_data(1, i) + tran_date = list_data(2, i) + tran_msg = inputValue3( list_data(3, i) ) + tran_name = get_name(list_data(4, i)) + tran_etc3 = get_buseo(list_data(5, i)) + tran_etc4 = get_buseo(list_data(6, i)) + If list_data(7, i) = "2" then + tran_rslt = "성공" + Else + tran_rslt = "실패(" & tran_rslt & ")" + End If + + If excel <> "ok" then + tran_msg = StringToHTML( remove_tags(tran_msg), 50, false ) + End if +%> + + + + + + + + + +<% + Next +End if +%> +
+ 발송건수 + + 발신번호 + + 발송일자 + + 메세지 + + 발신자 + + 발신자 부서 + + 상태 +
+ <%=FormatNumber(tran_phone,0)%>건 + + <%=tran_callback%> + + <%=tran_date%> + + <%=inputValue( tran_msg )%> + + <%=tran_name%> + + <%=tran_etc4&">"&tran_etc3%> + + <%=tran_rslt%> +
+ + + + diff --git a/manager/content/05stats/mmsreport_detail2.asp b/manager/content/05stats/mmsreport_detail2.asp new file mode 100644 index 0000000..f1484b4 --- /dev/null +++ b/manager/content/05stats/mmsreport_detail2.asp @@ -0,0 +1,231 @@ + + +<% +security_ad_cms() +v_mid = InputValue(Request("p_mid")) + +dateY = Trim(Request("dateY")) +dateM = Right("0"&Trim(Request("dateM")), 2) +dateD = Right("0"&Trim(Request("dateD")), 2) +excel = Request.QueryString("excel") + +If dateY = "" Then + dateY = Year(now) +End If +If dateM = "" Then + dateM = month(now) +End if + + +If dateD = "" Or dateD = 0 Then + datetitle = dateY & "-" & dateM + thisDate = dateY & "-" & dateM + thisDate2 = DateSerial(dateY, dateM + 1, 1 - 1) +Else + + thisDate = dateY & "-" & dateM & "-" & dateD + datetitle = thisDate + thisDate2 = thisDate +End if +If excel = "ok" then + Response.ContentType = "application/vnd.ms-excel" + Response.AddHeader "Content-Disposition","attachment;filename=mms_log_"&dateY & dateM & dateD&".xls" + border="1" +Else + border="0" +End if + + + '테이블 존재유무 확인 쿼리 + 'log_table = "em_log_" & dateY & dateM + log_table = "sdk_mms_report_detail_" & Right(dateY,2) & dateM + sql = "select * from information_schema.tables where table_name = '" & log_table & "'" + Set rs = Dbcon.Execute( sql ) + If rs.bof Or rs.eof Then + Set rs = Nothing + list_data = null + Else + + + Set rs = nothing + + 'sql = "select tran_phone, tran_callback, tran_date, tran_msg, tran_id, tran_etc3, tran_etc4, tran_rslt from "&log_table&" where tran_rsltdate between '"&thisDate&"' and '"&thisDate&"'+ ' 23:59:59'" + 'sql = "select count(tran_pr), tran_callback, '"&thisDate&"' as tran_date, tran_msg, tran_id, tran_etc3, tran_etc4, tran_rslt from "&log_table&" where tran_rsltdate between '"&thisDate&"' and '"&thisDate2&"'+ ' 23:59:59' "&addqry&" group by tran_callback, left(tran_date, 10), tran_msg, tran_id, tran_etc3, tran_etc4, tran_rslt" + + jointable = log_table & " as a left outer join sdk_mms_report_" & Right(dateY,2) & dateM & " as b on a.job_id = b.job_id" + s_fields = "count(*) as cnt, b.callback, left(a.send_date, 8) as tran_date, convert(varchar(3000), b.mms_msg) as mms_msg, a.user_id, b.reserved3, b.reserved4, a.result" + Where = " where a.user_id = '" & v_mid & "' and report_res_date like '" & Replace(thisDate,"-","") & "%' " + groupby = " group by b.callback, left(a.send_date, 8), a.user_id, b.reserved3, b.reserved4, a.result, convert(varchar(3000), b.mms_msg) " + sql = "select " & s_fields & " from " & jointable & Where & groupby + 'Response.write sql + Set rs = Dbcon.Execute( sql ) + + If rs.bof Or rs.eof Then + list_data = null + Else + list_data = rs.getrows + End if + + Set rs = Nothing + 'response.write weeksumYes & "/" & weeksumNo + End if +%> + + + + +<%=datetitle%> 발송로그 +<%If Request.QueryString("excel") <> "ok" then%> + + +<%End if%> + + + + + + +<%If Request.QueryString("excel") <> "ok" then%> + + + + + + + + + + + + +
상태가 실패일경우는 수신번호가 잘못되었거나 각 이통사의 일시적인 네트웍장애로 발생합니다. +
+ +
+ + + + + + + + <% + If dateD >= 1 Then + + %> + + <% + End if + %> +   +
+ + + +
+<%End if%> + + + + + + + + + + +<% +If Not(IsNull(list_data)) then + For i = 0 To UBound(list_data, 2) + tran_phone = list_data(0, i) + tran_callback = list_data(1, i) + tran_date = list_data(2, i) + tran_msg = inputValue3( list_data(3, i) ) + tran_name = get_name(list_data(4, i)) + tran_etc3 = get_buseo(list_data(5, i)) + tran_etc4 = get_buseo(list_data(6, i)) + If list_data(7, i) = "2" then + tran_rslt = "성공" + Else + tran_rslt = "실패(" & list_data(7, i) & ")" + End If + + If excel <> "ok" then + tran_msg = remove_tags(tran_msg) + 'tran_msg = StringToHTML(tran_msg, 50, false ) + End if +%> + + + + + + + + + +<% + Next +End if +%> +
+ 발송건수 + + 발신번호 + + 발송일자 + + 메세지 + + 발신자 + + 발신자 부서 + + 상태 +
+ <%=FormatNumber(tran_phone,0)%>건 + + <%=tran_callback%> + + <%=Left(tran_date,4) & "-" & Mid(tran_date, 5, 2) & "-" & Right(tran_date, 2)%> + + <%=inputValue( tran_msg )%> + + <%=tran_name%> + + <%=tran_etc4&">"&tran_etc3%> + + <%=tran_rslt%> +
+ + + + diff --git a/manager/content/05stats/sms_d.asp b/manager/content/05stats/sms_d.asp new file mode 100644 index 0000000..5b5a89a --- /dev/null +++ b/manager/content/05stats/sms_d.asp @@ -0,0 +1,270 @@ + + +<% +Dim qryValue ' 선언해줘야 함!! SetWhere 함수 내에서 사용되는 변수.. +Dim arrValue(31) +Dim arrData(33,2) + + +YY = inputvalue(request("YY")) +MM = inputvalue(request("MM")) +DD = inputvalue(request("DD")) +TT = inputvalue(request("TT")) + + +If YY = "" and MM = "" and DD = "" and TT = "" then + + YY = Year(now) + MM = Month(now) + +End If + + +int_YY = "" : If IsNumeric(YY) Then int_yy = Int(YY) +int_MM = "" : If IsNumeric(MM) Then int_MM = Int(MM) + +If Len(MM)=1 Then MM = "0"&MM + +'table명 +table = "em_log_" & YY & MM + +'table 존재유무 +sql = "select count(*) from information_schema.tables where table_name = '" & table & "'" +Set rs = dbcon.execute( sql ) +rscount = rs(0) +Set rs = nothing + + +'카운트 +If rscount > 0 Then + + sql = "select count(*) from " & table + Set rs = dbcon.execute( sql ) + sumCount = rs(0) + Set rs = nothing + +else + sumCount = 0 +End if + + +If YY<>"" And MM<>"" Then + temp_d = DateAdd("m",1, YY&"-"&MM&"-01") + dataLength = Right(DateAdd("d", -1, temp_d ),2) +Else + dataLength = 31 +End If + + +For i=1 To dataLength + arrValue(i) = 0 +next + + +'카운터수의 합 +If rscount > 0 Then + sql = "select day(tran_date) as vDD, count(*) as VCount from " & table & " group by day(tran_date)" + Set Rs = Dbcon.Execute (sql) + + Do While Not rs.eof + arrValue(rs("vDD")) = rs("VCount") + rs.movenext + Loop + rs.close : Set rs = Nothing + +End if + + + + +maxCount = 0 +minCount = 100000 + + + +For j=1 To dataLength + + arrData(j,0) = arrValue(j) ' 카운터 + + If sumCount > 1 then + arrData(j,1) = (arrValue(j)/sumCount)* 100 + if arrData(j,1) > 0 then arrData(j,1) = formatnumber(arrData(j,1),2) + + arrData(j,2) = (arrValue(j)/sumCount) * 550 + else + arrData(j,1) = 0 + arrData(j,2) = 0 + End if + + If minCount > arrValue(j) then minCount = arrValue(j) + If maxCount < arrValue(j) then maxCount = arrValue(j) + + + if arrData(j,0) = 0 then + arrData(j,0) = "" + End if + + if arrData(j,2) = 0 then + arrData(j,2) = "" + End if + +Next + +%> + + +
+ +
+
+

SMS발송 일별 통계

+
+ +
+ + +
+ + +

+ + +
+ +
+
+ +
    + +
  • + +
  • +
  • + +
  • +
  • +
  • +
+ +
+
+ +
+ + +
+ + <% + strXML = strXML & "<graph caption='' xAxisName='' yAxisName='' showValues='0' decimalPrecision='0' formatNumberScale='0' showAlternateHGridColor='1' AlternateHGridColor='' divLineColor='F0F0F0' divLineAlpha='' alternateHGridAlpha='5' bgcolor='ffffff' canvasBgColor='ffffff' canvasBaseColor='EAEAEA' canvasBaseDepth='1' canvasBgDepth='0' baseFont='verdana' baseFontSize='9' baseFontColor='999999' hoverCapBgColor='ffffff' hoverCapBorderColor='A6A6A6' hoverCapSepChar=' ' chartLeftMargin='0' chartRightMargin='0' chartTopMargin='5' chartBottomMargin='0'>" + + strXML = strXML & "<set name='1日' value='"&arrData(1,0)&"' color='B1D361' />" + strXML = strXML & "<set name='' value='"&arrData(2,0)&"' color='FECC6D' />" + strXML = strXML & "<set name='' value='"&arrData(3,0)&"' color='E94646' />" + strXML = strXML & "<set name='' value='"&arrData(4,0)&"' color='7BDCC5'/>" + strXML = strXML & "<set name='5日' value='"&arrData(5,0)&"' color='74C2E4'/>" + strXML = strXML & "<set name='' value='"&arrData(6,0)&"' color='828FE3'/>" + strXML = strXML & "<set name='' value='"&arrData(7,0)&"' color='D07CDB'/>" + strXML = strXML & "<set name='' value='"&arrData(8,0)&"' color='D8D8D8'/>" + + strXML = strXML & "<set name='' value='"&arrData(9,0)&"' color='B1D361' />" + strXML = strXML & "<set name='10日' value='"&arrData(10,0)&"' color='FECC6D' />" + strXML = strXML & "<set name='' value='"&arrData(11,0)&"' color='E94646' />" + strXML = strXML & "<set name='' value='"&arrData(12,0)&"' color='7BDCC5'/>" + strXML = strXML & "<set name='' value='"&arrData(13,0)&"' color='74C2E4'/>" + strXML = strXML & "<set name='' value='"&arrData(14,0)&"' color='828FE3'/>" + strXML = strXML & "<set name='15日' value='"&arrData(15,0)&"' color='D07CDB'/>" + strXML = strXML & "<set name='' value='"&arrData(16,0)&"' color='D8D8D8'/>" + + strXML = strXML & "<set name='' value='"&arrData(17,0)&"' color='B1D361' />" + strXML = strXML & "<set name='' value='"&arrData(18,0)&"' color='FECC6D' />" + strXML = strXML & "<set name='' value='"&arrData(19,0)&"' color='E94646' />" + strXML = strXML & "<set name='20日' value='"&arrData(20,0)&"' color='7BDCC5'/>" + strXML = strXML & "<set name='' value='"&arrData(21,0)&"' color='74C2E4'/>" + strXML = strXML & "<set name='' value='"&arrData(22,0)&"' color='828FE3'/>" + strXML = strXML & "<set name='' value='"&arrData(23,0)&"' color='D07CDB'/>" + strXML = strXML & "<set name='' value='"&arrData(24,0)&"' color='D8D8D8'/>" + + strXML = strXML & "<set name='25日' value='"&arrData(25,0)&"' color='B1D361' />" + strXML = strXML & "<set name='' value='"&arrData(26,0)&"' color='FECC6D' />" + strXML = strXML & "<set name='' value='"&arrData(27,0)&"' color='E94646' />" + strXML = strXML & "<set name='' value='"&arrData(28,0)&"' color='7BDCC5'/>" + strXML = strXML & "<set name='' value='"&arrData(29,0)&"' color='74C2E4'/>" + strXML = strXML & "<set name='30日' value='"&arrData(30,0)&"' color='828FE3'/>" + strXML = strXML & "<set name='' value='"&arrData(31,0)&"' color='D07CDB'/>" + + strXML = strXML & "</graph>" + + response.write renderChartHTML("/manager/img/swf/main_colum3d.swf", "", strXML, "myNext", 730, 200,"","","") + + %> +
+ +
+ 전체 <%=sumCount%>건 발송 (최대 <%=maxCount%>건, 최소 <%=minCount%>건) +
+ +
+ 일별 발송 통계 + + + + + + + + + + + + + + + + + + + + <% + For z=1 To dataLength + + %> + + + + + + + + <% + + next + %> + + + + + +
일별 발송 통계 서식
일자발송건수비율(%)상세보기
<%If z<=Int(dataLength) Then response.write z&"일" End If %><% SetDetail(z)%><%=arrData(z,1)%>[상세보기]
+
+ + +
+ + +
+ + + + \ No newline at end of file diff --git a/manager/content/05stats/sms_m.asp b/manager/content/05stats/sms_m.asp new file mode 100644 index 0000000..29ebbe2 --- /dev/null +++ b/manager/content/05stats/sms_m.asp @@ -0,0 +1,225 @@ + +<% + +Dim qryValue ' 선언해줘야 함!! SetWhere 함수 내에서 사용되는 변수.. +Dim curCount(12) +Dim arrData(12,2) + +YY = inputvalue(request("YY")) +MM = inputvalue(request("MM")) + + +If YY = "" and MM = "" and DD = "" and TT = "" then + + YY = Year(now) + MM = Month(now) + +End If + +int_YY = "" : If IsNumeric(YY) Then int_yy = Int(YY) +int_MM = "" : If IsNumeric(MM) Then int_MM = Int(MM) + +If Len(MM)=1 Then MM = "0"&MM + + + + + + +totalCount = 0 +sumCount = 0 + +For i = 1 To 12 + + curCount(i) = 0 + MM = Right( "0" & i, 2) + + '//table명 + table = "em_log_" & YY & MM + + '//table 존재유무 + sql = "select count(*) as cnt from information_schema.tables where table_name = '" & table & "'" + Set rs = dbcon.execute( sql ) + rscount = rs("cnt") + Set rs = nothing + + If rscount > 0 then + + '//월별 카운터를 구한다 + qry = "select count(*) as vC from " & table + Set rs = dbcon.execute( qry ) + + arr = i + VC = rs("vC") + curCount(arr) = VC + sumCount = sumCount + VC + else + + arr = i + VC = 0 + curCount(arr) = VC + sumCount = sumCount + VC + End if +next + + + +' 날짜변 데이터를 배열에 담는다 +maxCount = 0 +minCount = 100000 + +For i=1 To UBound(curCount) + + + If sumCount > 0 then + curSize = int((curCount(i)/sumCount) * 540) + curPer = formatnumber((curCount(i)/sumCount) * 100,2) + else + curSize = 0 + curPer = 0 + End if + + if maxCount < curCount(i) then + maxCount = curCount(i) + End if + + if minCount > curCount(i) then + minCount = curCount(i) + End if + + arrData(i,0) = curCount(i) + arrData(i,1) = curSize + arrData(i,2) = curPer + + if arrData(i,0) = 0 then + arrData(i,0) = "" + End if + + if arrData(i,2) = 0 then + arrData(i,2) = "" + End if + +next + + + +%> + + +
+ +
+
+

SMS발송월별 통계

+
+ +
+ + +
+ +

+ +
+ +
+
+ +
    + +
  • + +
  • + +
  • +
  • +
+ +
+
+ +
+ + +
+ + <% + strXML = "<graph caption='' xAxisName='' yAxisName='' showValues='0' decimalPrecision='0' formatNumberScale='0' showAlternateHGridColor='1' AlternateHGridColor='' divLineColor='F0F0F0' divLineAlpha='' alternateHGridAlpha='5' bgcolor='ffffff' canvasBgColor='ffffff' canvasBaseColor='EAEAEA' canvasBaseDepth='1' canvasBgDepth='0' baseFont='verdana' baseFontSize='9' baseFontColor='999999' hoverCapBgColor='ffffff' hoverCapBorderColor='A6A6A6' hoverCapSepChar=' ' chartLeftMargin='0' chartRightMargin='0' chartTopMargin='5' chartBottomMargin='0'>" + + strXML = strXML & "<set name='1月' value='"&arrData(1,0)&"' color='B1D361' />" + strXML = strXML & "<set name='2月' value='"&arrData(2,0)&"' color='FECC6D' />" + strXML = strXML & "<set name='3月' value='"&arrData(3,0)&"' color='E94646' />" + strXML = strXML & "<set name='4月' value='"&arrData(4,0)&"' color='7BDCC5'/>" + strXML = strXML & "<set name='5月' value='"&arrData(5,0)&"' color='74C2E4'/>" + strXML = strXML & "<set name='6月' value='"&arrData(6,0)&"' color='828FE3'/>" + strXML = strXML & "<set name='7月' value='"&arrData(7,0)&"' color='D07CDB'/>" + strXML = strXML & "<set name='8月' value='"&arrData(8,0)&"' color='D8D8D8'/>" + + strXML = strXML & "<set name='9月' value='"&arrData(9,0)&"' color='B1D361' />" + strXML = strXML & "<set name='10月' value='"&arrData(10,0)&"' color='FECC6D' />" + strXML = strXML & "<set name='11月' value='"&arrData(11,0)&"' color='E94646' />" + strXML = strXML & "<set name='12月' value='"&arrData(12,0)&"' color='7BDCC5'/>" + + strXML = strXML & "</graph>" + + response.write renderChartHTML("/manager/img/swf/main_colum3d.swf", "", strXML, "myNext", 730, 200,"","","") + %> +
+ +
+ 전체 <%=totalCount %>명 방문 (최대 <%=maxCount %>명, 최소 <%=minCount %>명) +
+ +
+ 월별 방문자 통계 + + + + + + + + + + + + + + + + + + <% + For z=1 To 12 + %> + + + + + + + + <% + next + %> + + +
월별 방문자 통계 서식
일자발송건수비율(%)
<%If z <= 12 Then response.write z&"월" End if%><% SetDetail(z)%><%=arrData(z,2)%>
+
+ + + +
+ + +
+ + + \ No newline at end of file diff --git a/manager/content/05stats/smsreport_detail.asp b/manager/content/05stats/smsreport_detail.asp new file mode 100644 index 0000000..4a6ebd2 --- /dev/null +++ b/manager/content/05stats/smsreport_detail.asp @@ -0,0 +1,220 @@ + + +<% +security_ad_cms() +dateY = Trim(Request("dateY")) +dateM = Right("0"&Trim(Request("dateM")), 2) +dateD = Right("0"&Trim(Request("dateD")), 2) + + +If dateY = "" Then + dateY = Year(now) +End If +If dateM = "" Then + dateM = month(now) +End if + + +If dateD = "" Or dateD = 0 Then + datetitle = dateY & "-" & dateM + thisDate = dateY & "-" & dateM & "-01" + thisDate2 = DateSerial(dateY, dateM + 1, 1 - 1) +Else + + thisDate = dateY & "-" & dateM & "-" & dateD + datetitle = thisDate + thisDate2 = thisDate +End if +If Request.QueryString("excel") = "ok" then + Response.ContentType = "application/vnd.ms-excel" + Response.AddHeader "Content-Disposition","attachment;filename=log_"&dateY & dateM & dateD&".xls" + border="1" +Else + border="0" +End if + +tran_etc4 = Trim(Request.QueryString("tran_etc4")) +If tran_etc4 <> "" then + addqry = "and tran_etc4 = '"&tran_etc4&"'" +End if + + '테이블 존재유무 확인 쿼리 + log_table = "em_log_" & dateY & dateM + sql = "select * from information_schema.tables where table_name = '" & log_table & "'" + Set rs = Dbcon.Execute( sql ) + If rs.bof Or rs.eof Then + Set rs = Nothing + list_data = null + Else + + + Set rs = nothing + + 'sql = "select tran_phone, tran_callback, tran_date, tran_msg, tran_id, tran_etc3, tran_etc4, tran_rslt from "&log_table&" where tran_rsltdate between '"&thisDate&"' and '"&thisDate&"'+ ' 23:59:59'" + sql = "select count(tran_pr), tran_callback, '"&thisDate&"' as tran_date, tran_msg, tran_id, tran_etc3, tran_etc4, tran_rslt from "&log_table&" where tran_rsltdate between '"&thisDate&"' and '"&thisDate2&"'+ ' 23:59:59' "&addqry&" group by tran_callback, left(tran_date, 10), tran_msg, tran_id, tran_etc3, tran_etc4, tran_rslt" + + 'response.write sql + Set rs = Dbcon.Execute( sql ) + + If rs.bof Or rs.eof Then + list_data = null + Else + list_data = rs.getrows + End if + + Set rs = Nothing + 'response.write weeksumYes & "/" & weeksumNo + End if +%> + + + + +<%=datetitle%> 발송로그 +<%If Request.QueryString("excel") <> "ok" then%> + + +<%End if%> + + + + + + +<%If Request.QueryString("excel") <> "ok" then%> + + + + + + + + + + + +
상태가 실패일경우는 수신번호가 잘못되었거나 각 이통사의 일시적인 네트웍장애로 발생합니다. +
+ +
+ + + + + + + + <% + If dateD >= 1 Then + + %> + + <% + End if + %> +   +
+ + + +
+<%End if%> + + + + + + + + + + +<% +If Not(IsNull(list_data)) then + For i = 0 To UBound(list_data, 2) + tran_phone = list_data(0, i) + tran_callback = list_data(1, i) + tran_date = list_data(2, i) + tran_msg = inputValue3( list_data(3, i) ) + tran_name = get_name(list_data(4, i)) + tran_etc3 = get_buseo(list_data(5, i)) + tran_etc4 = get_buseo(list_data(6, i)) + If list_data(7, i) = "0" then + tran_rslt = "성공" + Else + tran_rslt = "실패" + End if +%> + + + + + + + + + +<% + Next +End if +%> +
+ 발송건수 + + 발신번호 + + 발송일자 + + 메세지 + + 발신자 + + 발신자 부서 + + 상태 +
+ <%=FormatNumber(tran_phone,0)%>건 + + <%=tran_callback%> + + <%=tran_date%> + + <%=inputValue( tran_msg )%> + + <%=tran_name%> + + <%=tran_etc4&">"&tran_etc3%> + + <%=tran_rslt%> +
+ + + + diff --git a/manager/content/05stats/smsreport_detail2.asp b/manager/content/05stats/smsreport_detail2.asp new file mode 100644 index 0000000..db3d736 --- /dev/null +++ b/manager/content/05stats/smsreport_detail2.asp @@ -0,0 +1,224 @@ + + +<% +security_ad_cms() +v_mid = InputValue(Request("p_mid")) +dateY = Trim(Request("dateY")) +dateM = Right("0"&Trim(Request("dateM")), 2) +dateD = Right("0"&Trim(Request("dateD")), 2) + + +If dateY = "" Then + dateY = Year(now) +End If +If dateM = "" Then + dateM = month(now) +End if + + +If dateD = "" Or dateD = 0 Then + thisDate = dateY & "-" & dateM & "-01" + thisDate2 = DateSerial(dateY, dateM + 1, 1 - 1) +Else + thisDate = dateY & "-" & dateM & "-" & dateD + thisDate2 = thisDate +End if + + +tran_etc4 = Trim(Request.QueryString("tran_etc4")) +If tran_etc4 <> "" then + addqry = "and tran_etc4 = '"&tran_etc4&"'" +End if + + '테이블 존재유무 확인 쿼리 + log_table = "em_log_" & dateY & dateM + sql = "select * from information_schema.tables where table_name = '" & log_table & "'" + Set rs = Dbcon.Execute( sql ) + If rs.bof Or rs.eof Then + Set rs = Nothing + list_data = null + Else + + + Set rs = nothing + + 'sql = "select tran_phone, tran_callback, tran_date, tran_msg, tran_id, tran_etc3, tran_etc4, tran_rslt from "&log_table&" where tran_rsltdate between '"&thisDate&"' and '"&thisDate&"'+ ' 23:59:59'" + + 'sql = "SELECT count(tran_pr), tran_callback, convert(varchar,tran_date,23) as tran_date , tran_msg, tran_id, tran_etc3, tran_etc4, tran_rslt FROM "&log_table&" WHERE tran_id='"&v_mid&"' and tran_rsltdate between '"&thisDate&"' and '"&thisDate2&"'+ ' 23:59:59' "&addqry&" group by tran_callback, convert(varchar,tran_date,23), tran_msg, tran_id, tran_etc3, tran_etc4, tran_rslt" + + sql = "SELECT '1', tran_callback, CONVERT(CHAR(19), tran_date, 20) as tran_date, tran_msg, tran_id, tran_etc3, tran_etc4, tran_rslt, tran_phone FROM "&log_table&" WHERE tran_id='"&v_mid&"' and tran_rsltdate between '"&thisDate&"' and '"&thisDate2&"'+ ' 23:59:59' "&addqry + 'response.write sql + Set rs = Dbcon.Execute( sql ) + + If rs.bof Or rs.eof Then + list_data = null + Else + list_data = rs.getrows + End if + + Set rs = Nothing + 'response.write weeksumYes & "/" & weeksumNo + End if +%> + + + + +[<%=v_mid%>] 발송로그 +<%If Request.QueryString("excel") <> "ok" then%> + + +<%End if%> + + + + + + +<%If Request.QueryString("excel") <> "ok" then%> + + + + + + + + + + + + +
상태가 실패일경우는 수신번호가 잘못되었거나 각 이통사의 일시적인 네트웍장애로 발생합니다. +
+ +
+ + + + + + + + + +   +
+ + + +
+<%End if%> + + + + + + + + + + + + +<% +If Not(IsNull(list_data)) then + For i = 0 To UBound(list_data, 2) + count = list_data(0, i) + tran_callback = list_data(1, i) + tran_date = list_data(2, i) + tran_msg = inputValue3( list_data(3, i) ) + tran_name = get_name(list_data(4, i)) + tran_etc3 = get_buseo(list_data(5, i)) + tran_etc4 = get_buseo(list_data(6, i)) + If list_data(7, i) = "0" then + tran_rslt = "성공" + Else + tran_rslt = "실패" + End If + + tran_phone = list_data(8, i) +%> + + + + + + + + + + + +<% + Next +End if +%> +
+ 번호 + + 발신번호 + + 수신번호 + + 발송일자 + + 메세지 + + 발신자 + + 상태 +
+ <%=(i+1)%> + + <%=tran_callback%> + + <%=tran_phone%> + + <%=Left(tran_date, 16)%> + + <%=inputValue( tran_msg )%> + + <%=tran_name%> + + <%=tran_rslt%> +
+ + + + diff --git a/manager/content/05stats/w.asp b/manager/content/05stats/w.asp new file mode 100644 index 0000000..569cf5d --- /dev/null +++ b/manager/content/05stats/w.asp @@ -0,0 +1,252 @@ + +<% +Dim qryValue ' 선언해줘야 함!! SetWhere 함수 내에서 사용되는 변수.. +Dim curCount(7) +Dim arrData(8,2) + + +YY = inputvalue(request("YY")) +MM = inputvalue(request("MM")) +DD = inputvalue(request("DD")) +TT = inputvalue(request("TT")) + + +If YY = "" and MM = "" and DD = "" and TT = "" then + + YY = Year(now) + MM = Month(now) + +End If + +int_YY = "" : If IsNumeric(YY) Then int_yy = Int(YY) +int_MM = "" : If IsNumeric(MM) Then int_MM = Int(MM) + +If Len(MM)=1 Then MM = "0"&MM + + +' where 조건 +SetWhere() + +' 카운터 수의 합을 구한다 +qry = "select count(vNum) from visit_counter "& qryValue +Set Rs = Dbcon.Execute (qry) +totalCount = rs(0) +rs.close : Set rs = nothing + +' 배열 초기화 +For i=0 To 6 + curCount(i) = 0 +next + +' 요일별 카운터를 구한다 +qry = "select vDW,count(vNum) as vC from visit_counter "&qryValue&" group by vDW order by vDW" +Set Rs = Dbcon.Execute (qry) + +sumCount = 0 +Do While Not rs.eof + vDW = Int(rs("vDW")) + vC = Int(rs("vC")) + + curCount(vDW) = vC + sumCount = sumCount + vC + + rs.movenext +loop + + +maxCount = 0 +minCount = 100000 + + +For i=0 To 6 + + if sumCount > 0 then + curSize = int((curCount(i)/sumCount) * 540) + curPer = formatnumber((curCount(i)/sumCount) * 100,2) + else + curSize = 0 + curPer = 0 + End if + + if maxCount < curCount(i) then + maxCount = curCount(i) + End if + + if minCount > curCount(i) then + minCount = curCount(i) + End if + + arrData(i,0) = curCount(i) + arrData(i,1) = curSize + arrData(i,2) = curPer + + + if arrData(i,0) = 0 then + arrData(i,0) = "" + End if + + if arrData(i,2) = 0 then + arrData(i,2) = "" + End if + +next + + + +%> + + +
+ +
+
+

요일별 통계

+
+ +
+ + +
+ + +

+ + +
+ +
+
+ +
    + +
  • + +
  • +
  • + +
  • +
  • +
  • +
+ +
+
+ +
+ + +
+ + <% + strXML = "<graph caption='' xAxisName='' yAxisName='' showValues='0' decimalPrecision='0' formatNumberScale='0' showAlternateHGridColor='1' AlternateHGridColor='' divLineColor='F0F0F0' divLineAlpha='' alternateHGridAlpha='5' bgcolor='ffffff' canvasBgColor='ffffff' canvasBaseColor='EAEAEA' canvasBaseDepth='1' canvasBgDepth='0' baseFont='verdana' baseFontSize='9' baseFontColor='999999' hoverCapBgColor='ffffff' hoverCapBorderColor='A6A6A6' hoverCapSepChar=' ' chartLeftMargin='0' chartRightMargin='0' chartTopMargin='5' chartBottomMargin='0'>" + + strXML = strXML & "<set name='SUN' value='"&arrData(0,0)&"' color='E94646' />" + strXML = strXML & "<set name='MON' value='"&arrData(1,0)&"' color='B1D361' />" + strXML = strXML & "<set name='TUE' value='"&arrData(2,0)&"' color='FECC6D' />" + strXML = strXML & "<set name='WED' value='"&arrData(3,0)&"' color='D07CDB'/>" + strXML = strXML & "<set name='THUR' value='"&arrData(4,0)&"' color='7BDCC5'/>" + strXML = strXML & "<set name='FRI' value='"&arrData(5,0)&"' color='74C2E4'/>" + strXML = strXML & "<set name='SAT' value='"&arrData(6,0)&"' color='828FE3'/>" + + strXML = strXML & "</graph>" + + response.write renderChartHTML("/manager/img/swf/main_colum3d.swf", "", strXML, "myNext", 730, 200,"" ,"","") + %> +
+ +
+ 전체 <%=totalCount %>명 방문 (최대 <%=maxCount %>명, 최소 <%=minCount %>명) +
+ +
+ 요일별 방문자 통계 + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + <% + + td_end = 1 + + for z=0 To 8 + + %> + + + + + + + <% + + td_end = td_end + 1 + + If td_end = 4 then ' 3칸째일때 + + td_end = 1 + + If z <> 8 Then response.write "" + + else + response.write "" + End if + + next + %> + + + +
요일별 방문자 통계 서식
요일방문수비율(%)요일방문수비율(%)요일방문수비율(%)
<% If z <= "7" Then SetWeek(z) End If %> <% SetDetail(z)%><%=arrData(z,2)%>
+
+ + +
+ + +
+ + + + \ No newline at end of file diff --git a/manager/error.asp b/manager/error.asp new file mode 100644 index 0000000..2385d9f --- /dev/null +++ b/manager/error.asp @@ -0,0 +1,40 @@ + + + + + + + <%=site_name%> + + + + + + + +
+
+

요청하신 페이지에 대한 사용 권한이 없습니다.

+
    +
  • + 요청하신 페이지에 대한 사용 권한이 제한되어 있거나 주소가 변경되어 +
    + 요청하신 기능을 수행할 수 없습니다. +
    + 입력하신 주소가 정확한지 한번 더 확인해 주세요. +
    +
    + 고맙습니다. +
  • +
+
+
+ + + + diff --git a/manager/img/01.png b/manager/img/01.png new file mode 100644 index 0000000..f7efc2c Binary files /dev/null and b/manager/img/01.png differ diff --git a/manager/img/02.png b/manager/img/02.png new file mode 100644 index 0000000..e89cfd2 Binary files /dev/null and b/manager/img/02.png differ diff --git a/manager/img/03.png b/manager/img/03.png new file mode 100644 index 0000000..f53940b Binary files /dev/null and b/manager/img/03.png differ diff --git a/manager/img/04.png b/manager/img/04.png new file mode 100644 index 0000000..2097041 Binary files /dev/null and b/manager/img/04.png differ diff --git a/manager/img/05.png b/manager/img/05.png new file mode 100644 index 0000000..6b9444c Binary files /dev/null and b/manager/img/05.png differ diff --git a/manager/img/badgecss_bt.gif b/manager/img/badgecss_bt.gif new file mode 100644 index 0000000..87eebb2 Binary files /dev/null and b/manager/img/badgecss_bt.gif differ diff --git a/manager/img/badgehtml_bt.gif b/manager/img/badgehtml_bt.gif new file mode 100644 index 0000000..3a3024c Binary files /dev/null and b/manager/img/badgehtml_bt.gif differ diff --git a/manager/img/badgewai_bt.gif b/manager/img/badgewai_bt.gif new file mode 100644 index 0000000..f50b7ce Binary files /dev/null and b/manager/img/badgewai_bt.gif differ diff --git a/manager/img/banner1.gif b/manager/img/banner1.gif new file mode 100644 index 0000000..5e75c5b Binary files /dev/null and b/manager/img/banner1.gif differ diff --git a/manager/img/banner2.gif b/manager/img/banner2.gif new file mode 100644 index 0000000..7ae702f Binary files /dev/null and b/manager/img/banner2.gif differ diff --git a/manager/img/blue/bottom_bg1.gif b/manager/img/blue/bottom_bg1.gif new file mode 100644 index 0000000..3a30f89 Binary files /dev/null and b/manager/img/blue/bottom_bg1.gif differ diff --git a/manager/img/blue/bottom_bg2.gif b/manager/img/blue/bottom_bg2.gif new file mode 100644 index 0000000..08f9e56 Binary files /dev/null and b/manager/img/blue/bottom_bg2.gif differ diff --git a/manager/img/blue/bottom_bg3.gif b/manager/img/blue/bottom_bg3.gif new file mode 100644 index 0000000..1a382e2 Binary files /dev/null and b/manager/img/blue/bottom_bg3.gif differ diff --git a/manager/img/blue/bt_bg.gif b/manager/img/blue/bt_bg.gif new file mode 100644 index 0000000..d34cd61 Binary files /dev/null and b/manager/img/blue/bt_bg.gif differ diff --git a/manager/img/blue/center_bg.gif b/manager/img/blue/center_bg.gif new file mode 100644 index 0000000..0dbccfb Binary files /dev/null and b/manager/img/blue/center_bg.gif differ diff --git a/manager/img/blue/center_top_bg.gif b/manager/img/blue/center_top_bg.gif new file mode 100644 index 0000000..35c3e7d Binary files /dev/null and b/manager/img/blue/center_top_bg.gif differ diff --git a/manager/img/blue/con_2step_ic.gif b/manager/img/blue/con_2step_ic.gif new file mode 100644 index 0000000..209b60f Binary files /dev/null and b/manager/img/blue/con_2step_ic.gif differ diff --git a/manager/img/blue/lm_1step_bg.gif b/manager/img/blue/lm_1step_bg.gif new file mode 100644 index 0000000..d504efd Binary files /dev/null and b/manager/img/blue/lm_1step_bg.gif differ diff --git a/manager/img/blue/lm_2step_ic.gif b/manager/img/blue/lm_2step_ic.gif new file mode 100644 index 0000000..f81f84c Binary files /dev/null and b/manager/img/blue/lm_2step_ic.gif differ diff --git a/manager/img/blue/lm_bg.gif b/manager/img/blue/lm_bg.gif new file mode 100644 index 0000000..2fb075a Binary files /dev/null and b/manager/img/blue/lm_bg.gif differ diff --git a/manager/img/blue/lm_tit_bg.gif b/manager/img/blue/lm_tit_bg.gif new file mode 100644 index 0000000..db400a0 Binary files /dev/null and b/manager/img/blue/lm_tit_bg.gif differ diff --git a/manager/img/blue/m01.gif b/manager/img/blue/m01.gif new file mode 100644 index 0000000..5d54b7f Binary files /dev/null and b/manager/img/blue/m01.gif differ diff --git a/manager/img/blue/m02.gif b/manager/img/blue/m02.gif new file mode 100644 index 0000000..8721c40 Binary files /dev/null and b/manager/img/blue/m02.gif differ diff --git a/manager/img/blue/m03.gif b/manager/img/blue/m03.gif new file mode 100644 index 0000000..095afc2 Binary files /dev/null and b/manager/img/blue/m03.gif differ diff --git a/manager/img/blue/m04.gif b/manager/img/blue/m04.gif new file mode 100644 index 0000000..4c14259 Binary files /dev/null and b/manager/img/blue/m04.gif differ diff --git a/manager/img/blue/m05.gif b/manager/img/blue/m05.gif new file mode 100644 index 0000000..25c24a9 Binary files /dev/null and b/manager/img/blue/m05.gif differ diff --git a/manager/img/blue/m_bg.gif b/manager/img/blue/m_bg.gif new file mode 100644 index 0000000..dae86f0 Binary files /dev/null and b/manager/img/blue/m_bg.gif differ diff --git a/manager/img/blue/m_left.gif b/manager/img/blue/m_left.gif new file mode 100644 index 0000000..eeb7275 Binary files /dev/null and b/manager/img/blue/m_left.gif differ diff --git a/manager/img/blue/m_line.gif b/manager/img/blue/m_line.gif new file mode 100644 index 0000000..1fa14ec Binary files /dev/null and b/manager/img/blue/m_line.gif differ diff --git a/manager/img/blue/m_right.gif b/manager/img/blue/m_right.gif new file mode 100644 index 0000000..b5a20d3 Binary files /dev/null and b/manager/img/blue/m_right.gif differ diff --git a/manager/img/blue/main_bg.gif b/manager/img/blue/main_bg.gif new file mode 100644 index 0000000..f40e92f Binary files /dev/null and b/manager/img/blue/main_bg.gif differ diff --git a/manager/img/blue/main_content_bg.gif b/manager/img/blue/main_content_bg.gif new file mode 100644 index 0000000..034cc60 Binary files /dev/null and b/manager/img/blue/main_content_bg.gif differ diff --git a/manager/img/blue/memo_top.gif b/manager/img/blue/memo_top.gif new file mode 100644 index 0000000..cd3f776 Binary files /dev/null and b/manager/img/blue/memo_top.gif differ diff --git a/manager/img/blue/menu_bg.gif b/manager/img/blue/menu_bg.gif new file mode 100644 index 0000000..1a27f25 Binary files /dev/null and b/manager/img/blue/menu_bg.gif differ diff --git a/manager/img/blue/sitelink.fla b/manager/img/blue/sitelink.fla new file mode 100644 index 0000000..1f9321c Binary files /dev/null and b/manager/img/blue/sitelink.fla differ diff --git a/manager/img/blue/sitelink.swf b/manager/img/blue/sitelink.swf new file mode 100644 index 0000000..15a0e60 Binary files /dev/null and b/manager/img/blue/sitelink.swf differ diff --git a/manager/img/blue/sub_bg.gif b/manager/img/blue/sub_bg.gif new file mode 100644 index 0000000..35aec79 Binary files /dev/null and b/manager/img/blue/sub_bg.gif differ diff --git a/manager/img/blue/tab.gif b/manager/img/blue/tab.gif new file mode 100644 index 0000000..35a2269 Binary files /dev/null and b/manager/img/blue/tab.gif differ diff --git a/manager/img/blue/tab_bg.gif b/manager/img/blue/tab_bg.gif new file mode 100644 index 0000000..d03d51d Binary files /dev/null and b/manager/img/blue/tab_bg.gif differ diff --git a/manager/img/blue/tab_left.gif b/manager/img/blue/tab_left.gif new file mode 100644 index 0000000..8bcdacd Binary files /dev/null and b/manager/img/blue/tab_left.gif differ diff --git a/manager/img/blue/tab_on.gif b/manager/img/blue/tab_on.gif new file mode 100644 index 0000000..f651869 Binary files /dev/null and b/manager/img/blue/tab_on.gif differ diff --git a/manager/img/blue/tab_right.gif b/manager/img/blue/tab_right.gif new file mode 100644 index 0000000..73f3150 Binary files /dev/null and b/manager/img/blue/tab_right.gif differ diff --git a/manager/img/blue/top_bg.gif b/manager/img/blue/top_bg.gif new file mode 100644 index 0000000..cd7767b Binary files /dev/null and b/manager/img/blue/top_bg.gif differ diff --git a/manager/img/bottom_logo.gif b/manager/img/bottom_logo.gif new file mode 100644 index 0000000..97eaa32 Binary files /dev/null and b/manager/img/bottom_logo.gif differ diff --git a/manager/img/bt01_bg.gif b/manager/img/bt01_bg.gif new file mode 100644 index 0000000..dfa5fc1 Binary files /dev/null and b/manager/img/bt01_bg.gif differ diff --git a/manager/img/bt02_bg.gif b/manager/img/bt02_bg.gif new file mode 100644 index 0000000..1c1e5ee Binary files /dev/null and b/manager/img/bt02_bg.gif differ diff --git a/manager/img/bt03_bg.gif b/manager/img/bt03_bg.gif new file mode 100644 index 0000000..15211ab Binary files /dev/null and b/manager/img/bt03_bg.gif differ diff --git a/manager/img/bt_w01_bg.gif b/manager/img/bt_w01_bg.gif new file mode 100644 index 0000000..fec7dfc Binary files /dev/null and b/manager/img/bt_w01_bg.gif differ diff --git a/manager/img/bu_pg1_l1.gif b/manager/img/bu_pg1_l1.gif new file mode 100644 index 0000000..05b7525 Binary files /dev/null and b/manager/img/bu_pg1_l1.gif differ diff --git a/manager/img/bu_pg1_r1.gif b/manager/img/bu_pg1_r1.gif new file mode 100644 index 0000000..a5a885d Binary files /dev/null and b/manager/img/bu_pg1_r1.gif differ diff --git a/manager/img/calendar_bt.gif b/manager/img/calendar_bt.gif new file mode 100644 index 0000000..680617d Binary files /dev/null and b/manager/img/calendar_bt.gif differ diff --git a/manager/img/date_bg.gif b/manager/img/date_bg.gif new file mode 100644 index 0000000..5a4f993 Binary files /dev/null and b/manager/img/date_bg.gif differ diff --git a/manager/img/date_ic.gif b/manager/img/date_ic.gif new file mode 100644 index 0000000..809b7c7 Binary files /dev/null and b/manager/img/date_ic.gif differ diff --git a/manager/img/daystart_bt.gif b/manager/img/daystart_bt.gif new file mode 100644 index 0000000..acf87d3 Binary files /dev/null and b/manager/img/daystart_bt.gif differ diff --git a/manager/img/ebook_skin1.gif b/manager/img/ebook_skin1.gif new file mode 100644 index 0000000..928e350 Binary files /dev/null and b/manager/img/ebook_skin1.gif differ diff --git a/manager/img/ebook_skin2.gif b/manager/img/ebook_skin2.gif new file mode 100644 index 0000000..876aed2 Binary files /dev/null and b/manager/img/ebook_skin2.gif differ diff --git a/manager/img/ebook_skin3.gif b/manager/img/ebook_skin3.gif new file mode 100644 index 0000000..4b0bbcb Binary files /dev/null and b/manager/img/ebook_skin3.gif differ diff --git a/manager/img/ebook_skin4.gif b/manager/img/ebook_skin4.gif new file mode 100644 index 0000000..a79988e Binary files /dev/null and b/manager/img/ebook_skin4.gif differ diff --git a/manager/img/ebook_skin5.gif b/manager/img/ebook_skin5.gif new file mode 100644 index 0000000..a87212f Binary files /dev/null and b/manager/img/ebook_skin5.gif differ diff --git a/manager/img/ebook_skin6.gif b/manager/img/ebook_skin6.gif new file mode 100644 index 0000000..71f32f5 Binary files /dev/null and b/manager/img/ebook_skin6.gif differ diff --git a/manager/img/file_ic.gif b/manager/img/file_ic.gif new file mode 100644 index 0000000..87a9e7e Binary files /dev/null and b/manager/img/file_ic.gif differ diff --git a/manager/img/gray/bottom_bg1.gif b/manager/img/gray/bottom_bg1.gif new file mode 100644 index 0000000..e49422a Binary files /dev/null and b/manager/img/gray/bottom_bg1.gif differ diff --git a/manager/img/gray/bottom_bg2.gif b/manager/img/gray/bottom_bg2.gif new file mode 100644 index 0000000..dc3947c Binary files /dev/null and b/manager/img/gray/bottom_bg2.gif differ diff --git a/manager/img/gray/bottom_bg3.gif b/manager/img/gray/bottom_bg3.gif new file mode 100644 index 0000000..b98e249 Binary files /dev/null and b/manager/img/gray/bottom_bg3.gif differ diff --git a/manager/img/gray/bt_bg.gif b/manager/img/gray/bt_bg.gif new file mode 100644 index 0000000..a1f395a Binary files /dev/null and b/manager/img/gray/bt_bg.gif differ diff --git a/manager/img/gray/center_bg.gif b/manager/img/gray/center_bg.gif new file mode 100644 index 0000000..0e8edf1 Binary files /dev/null and b/manager/img/gray/center_bg.gif differ diff --git a/manager/img/gray/center_top_bg.gif b/manager/img/gray/center_top_bg.gif new file mode 100644 index 0000000..0db3855 Binary files /dev/null and b/manager/img/gray/center_top_bg.gif differ diff --git a/manager/img/gray/con_2step_ic.gif b/manager/img/gray/con_2step_ic.gif new file mode 100644 index 0000000..2be2135 Binary files /dev/null and b/manager/img/gray/con_2step_ic.gif differ diff --git a/manager/img/gray/lm_1step_bg.gif b/manager/img/gray/lm_1step_bg.gif new file mode 100644 index 0000000..ea39cab Binary files /dev/null and b/manager/img/gray/lm_1step_bg.gif differ diff --git a/manager/img/gray/lm_2step_ic.gif b/manager/img/gray/lm_2step_ic.gif new file mode 100644 index 0000000..f81f84c Binary files /dev/null and b/manager/img/gray/lm_2step_ic.gif differ diff --git a/manager/img/gray/lm_bg.gif b/manager/img/gray/lm_bg.gif new file mode 100644 index 0000000..bd1d990 Binary files /dev/null and b/manager/img/gray/lm_bg.gif differ diff --git a/manager/img/gray/lm_tit_bg.gif b/manager/img/gray/lm_tit_bg.gif new file mode 100644 index 0000000..3552a83 Binary files /dev/null and b/manager/img/gray/lm_tit_bg.gif differ diff --git a/manager/img/gray/logo.gif b/manager/img/gray/logo.gif new file mode 100644 index 0000000..cefdb97 Binary files /dev/null and b/manager/img/gray/logo.gif differ diff --git a/manager/img/gray/m01.gif b/manager/img/gray/m01.gif new file mode 100644 index 0000000..5b8b321 Binary files /dev/null and b/manager/img/gray/m01.gif differ diff --git a/manager/img/gray/m02.gif b/manager/img/gray/m02.gif new file mode 100644 index 0000000..e1a6c3a Binary files /dev/null and b/manager/img/gray/m02.gif differ diff --git a/manager/img/gray/m03.gif b/manager/img/gray/m03.gif new file mode 100644 index 0000000..08ff5e9 Binary files /dev/null and b/manager/img/gray/m03.gif differ diff --git a/manager/img/gray/m04.gif b/manager/img/gray/m04.gif new file mode 100644 index 0000000..874721e Binary files /dev/null and b/manager/img/gray/m04.gif differ diff --git a/manager/img/gray/m05.gif b/manager/img/gray/m05.gif new file mode 100644 index 0000000..747328f Binary files /dev/null and b/manager/img/gray/m05.gif differ diff --git a/manager/img/gray/m_bg.gif b/manager/img/gray/m_bg.gif new file mode 100644 index 0000000..5cbbcc7 Binary files /dev/null and b/manager/img/gray/m_bg.gif differ diff --git a/manager/img/gray/m_left.gif b/manager/img/gray/m_left.gif new file mode 100644 index 0000000..d9380eb Binary files /dev/null and b/manager/img/gray/m_left.gif differ diff --git a/manager/img/gray/m_line.gif b/manager/img/gray/m_line.gif new file mode 100644 index 0000000..bde9cd8 Binary files /dev/null and b/manager/img/gray/m_line.gif differ diff --git a/manager/img/gray/m_right.gif b/manager/img/gray/m_right.gif new file mode 100644 index 0000000..31e0dc8 Binary files /dev/null and b/manager/img/gray/m_right.gif differ diff --git a/manager/img/gray/main_bg.gif b/manager/img/gray/main_bg.gif new file mode 100644 index 0000000..31897e4 Binary files /dev/null and b/manager/img/gray/main_bg.gif differ diff --git a/manager/img/gray/main_content_bg.gif b/manager/img/gray/main_content_bg.gif new file mode 100644 index 0000000..dcdde54 Binary files /dev/null and b/manager/img/gray/main_content_bg.gif differ diff --git a/manager/img/gray/memo_top.gif b/manager/img/gray/memo_top.gif new file mode 100644 index 0000000..f0a68b9 Binary files /dev/null and b/manager/img/gray/memo_top.gif differ diff --git a/manager/img/gray/menu_bg.gif b/manager/img/gray/menu_bg.gif new file mode 100644 index 0000000..0611a1a Binary files /dev/null and b/manager/img/gray/menu_bg.gif differ diff --git a/manager/img/gray/sitelink.fla b/manager/img/gray/sitelink.fla new file mode 100644 index 0000000..c97e707 Binary files /dev/null and b/manager/img/gray/sitelink.fla differ diff --git a/manager/img/gray/sitelink.swf b/manager/img/gray/sitelink.swf new file mode 100644 index 0000000..1f144ab Binary files /dev/null and b/manager/img/gray/sitelink.swf differ diff --git a/manager/img/gray/sub_bg.gif b/manager/img/gray/sub_bg.gif new file mode 100644 index 0000000..5d38897 Binary files /dev/null and b/manager/img/gray/sub_bg.gif differ diff --git a/manager/img/gray/tab.gif b/manager/img/gray/tab.gif new file mode 100644 index 0000000..35a2269 Binary files /dev/null and b/manager/img/gray/tab.gif differ diff --git a/manager/img/gray/tab_bg.gif b/manager/img/gray/tab_bg.gif new file mode 100644 index 0000000..45f348b Binary files /dev/null and b/manager/img/gray/tab_bg.gif differ diff --git a/manager/img/gray/tab_left.gif b/manager/img/gray/tab_left.gif new file mode 100644 index 0000000..69bafab Binary files /dev/null and b/manager/img/gray/tab_left.gif differ diff --git a/manager/img/gray/tab_on.gif b/manager/img/gray/tab_on.gif new file mode 100644 index 0000000..87a6088 Binary files /dev/null and b/manager/img/gray/tab_on.gif differ diff --git a/manager/img/gray/tab_right.gif b/manager/img/gray/tab_right.gif new file mode 100644 index 0000000..9eae745 Binary files /dev/null and b/manager/img/gray/tab_right.gif differ diff --git a/manager/img/gray/top_bg.gif b/manager/img/gray/top_bg.gif new file mode 100644 index 0000000..3ad124e Binary files /dev/null and b/manager/img/gray/top_bg.gif differ diff --git a/manager/img/green/bottom_bg1.gif b/manager/img/green/bottom_bg1.gif new file mode 100644 index 0000000..5729790 Binary files /dev/null and b/manager/img/green/bottom_bg1.gif differ diff --git a/manager/img/green/bottom_bg2.gif b/manager/img/green/bottom_bg2.gif new file mode 100644 index 0000000..1bfa097 Binary files /dev/null and b/manager/img/green/bottom_bg2.gif differ diff --git a/manager/img/green/bottom_bg3.gif b/manager/img/green/bottom_bg3.gif new file mode 100644 index 0000000..917bc54 Binary files /dev/null and b/manager/img/green/bottom_bg3.gif differ diff --git a/manager/img/green/bt_bg.gif b/manager/img/green/bt_bg.gif new file mode 100644 index 0000000..bb4cca1 Binary files /dev/null and b/manager/img/green/bt_bg.gif differ diff --git a/manager/img/green/center_bg.gif b/manager/img/green/center_bg.gif new file mode 100644 index 0000000..f2d486b Binary files /dev/null and b/manager/img/green/center_bg.gif differ diff --git a/manager/img/green/center_top_bg.gif b/manager/img/green/center_top_bg.gif new file mode 100644 index 0000000..2cf400c Binary files /dev/null and b/manager/img/green/center_top_bg.gif differ diff --git a/manager/img/green/con_2step_ic.gif b/manager/img/green/con_2step_ic.gif new file mode 100644 index 0000000..5c86fc2 Binary files /dev/null and b/manager/img/green/con_2step_ic.gif differ diff --git a/manager/img/green/lm_1step_bg.gif b/manager/img/green/lm_1step_bg.gif new file mode 100644 index 0000000..428242c Binary files /dev/null and b/manager/img/green/lm_1step_bg.gif differ diff --git a/manager/img/green/lm_2step_ic.gif b/manager/img/green/lm_2step_ic.gif new file mode 100644 index 0000000..f81f84c Binary files /dev/null and b/manager/img/green/lm_2step_ic.gif differ diff --git a/manager/img/green/lm_bg.gif b/manager/img/green/lm_bg.gif new file mode 100644 index 0000000..7ab9f95 Binary files /dev/null and b/manager/img/green/lm_bg.gif differ diff --git a/manager/img/green/lm_tit_bg.gif b/manager/img/green/lm_tit_bg.gif new file mode 100644 index 0000000..c150a7e Binary files /dev/null and b/manager/img/green/lm_tit_bg.gif differ diff --git a/manager/img/green/logo.gif b/manager/img/green/logo.gif new file mode 100644 index 0000000..30591d4 Binary files /dev/null and b/manager/img/green/logo.gif differ diff --git a/manager/img/green/m01.gif b/manager/img/green/m01.gif new file mode 100644 index 0000000..e23b6a3 Binary files /dev/null and b/manager/img/green/m01.gif differ diff --git a/manager/img/green/m02.gif b/manager/img/green/m02.gif new file mode 100644 index 0000000..ff5cbed Binary files /dev/null and b/manager/img/green/m02.gif differ diff --git a/manager/img/green/m03.gif b/manager/img/green/m03.gif new file mode 100644 index 0000000..901a3bd Binary files /dev/null and b/manager/img/green/m03.gif differ diff --git a/manager/img/green/m04.gif b/manager/img/green/m04.gif new file mode 100644 index 0000000..87818b3 Binary files /dev/null and b/manager/img/green/m04.gif differ diff --git a/manager/img/green/m05.gif b/manager/img/green/m05.gif new file mode 100644 index 0000000..2047ba4 Binary files /dev/null and b/manager/img/green/m05.gif differ diff --git a/manager/img/green/m_bg.gif b/manager/img/green/m_bg.gif new file mode 100644 index 0000000..4184ae0 Binary files /dev/null and b/manager/img/green/m_bg.gif differ diff --git a/manager/img/green/m_left.gif b/manager/img/green/m_left.gif new file mode 100644 index 0000000..aa28aa2 Binary files /dev/null and b/manager/img/green/m_left.gif differ diff --git a/manager/img/green/m_line.gif b/manager/img/green/m_line.gif new file mode 100644 index 0000000..27e3eeb Binary files /dev/null and b/manager/img/green/m_line.gif differ diff --git a/manager/img/green/m_right.gif b/manager/img/green/m_right.gif new file mode 100644 index 0000000..dece063 Binary files /dev/null and b/manager/img/green/m_right.gif differ diff --git a/manager/img/green/main_bg.gif b/manager/img/green/main_bg.gif new file mode 100644 index 0000000..f0a6cc1 Binary files /dev/null and b/manager/img/green/main_bg.gif differ diff --git a/manager/img/green/main_content_bg.gif b/manager/img/green/main_content_bg.gif new file mode 100644 index 0000000..97a0017 Binary files /dev/null and b/manager/img/green/main_content_bg.gif differ diff --git a/manager/img/green/memo_top.gif b/manager/img/green/memo_top.gif new file mode 100644 index 0000000..b87b1ef Binary files /dev/null and b/manager/img/green/memo_top.gif differ diff --git a/manager/img/green/menu_bg.gif b/manager/img/green/menu_bg.gif new file mode 100644 index 0000000..265c3af Binary files /dev/null and b/manager/img/green/menu_bg.gif differ diff --git a/manager/img/green/sitelink.fla b/manager/img/green/sitelink.fla new file mode 100644 index 0000000..1e60ce5 Binary files /dev/null and b/manager/img/green/sitelink.fla differ diff --git a/manager/img/green/sitelink.swf b/manager/img/green/sitelink.swf new file mode 100644 index 0000000..b61d5ce Binary files /dev/null and b/manager/img/green/sitelink.swf differ diff --git a/manager/img/green/sub_bg.gif b/manager/img/green/sub_bg.gif new file mode 100644 index 0000000..05c16fd Binary files /dev/null and b/manager/img/green/sub_bg.gif differ diff --git a/manager/img/green/tab.gif b/manager/img/green/tab.gif new file mode 100644 index 0000000..35a2269 Binary files /dev/null and b/manager/img/green/tab.gif differ diff --git a/manager/img/green/tab_bg.gif b/manager/img/green/tab_bg.gif new file mode 100644 index 0000000..7e93035 Binary files /dev/null and b/manager/img/green/tab_bg.gif differ diff --git a/manager/img/green/tab_left.gif b/manager/img/green/tab_left.gif new file mode 100644 index 0000000..d102222 Binary files /dev/null and b/manager/img/green/tab_left.gif differ diff --git a/manager/img/green/tab_on.gif b/manager/img/green/tab_on.gif new file mode 100644 index 0000000..ae34668 Binary files /dev/null and b/manager/img/green/tab_on.gif differ diff --git a/manager/img/green/tab_right.gif b/manager/img/green/tab_right.gif new file mode 100644 index 0000000..8e7916b Binary files /dev/null and b/manager/img/green/tab_right.gif differ diff --git a/manager/img/green/top_bg.gif b/manager/img/green/top_bg.gif new file mode 100644 index 0000000..4eb4b7d Binary files /dev/null and b/manager/img/green/top_bg.gif differ diff --git a/manager/img/hrd_line.gif b/manager/img/hrd_line.gif new file mode 100644 index 0000000..ee5336c Binary files /dev/null and b/manager/img/hrd_line.gif differ diff --git a/manager/img/hrd_tit.gif b/manager/img/hrd_tit.gif new file mode 100644 index 0000000..68f5a28 Binary files /dev/null and b/manager/img/hrd_tit.gif differ diff --git a/manager/img/human_ic.gif b/manager/img/human_ic.gif new file mode 100644 index 0000000..cef3c5b Binary files /dev/null and b/manager/img/human_ic.gif differ diff --git a/manager/img/ic_down.gif b/manager/img/ic_down.gif new file mode 100644 index 0000000..bef6b3e Binary files /dev/null and b/manager/img/ic_down.gif differ diff --git a/manager/img/ic_type1.gif b/manager/img/ic_type1.gif new file mode 100644 index 0000000..cd5a462 Binary files /dev/null and b/manager/img/ic_type1.gif differ diff --git a/manager/img/ic_type2.gif b/manager/img/ic_type2.gif new file mode 100644 index 0000000..f00a856 Binary files /dev/null and b/manager/img/ic_type2.gif differ diff --git a/manager/img/ic_type3.gif b/manager/img/ic_type3.gif new file mode 100644 index 0000000..27647a7 Binary files /dev/null and b/manager/img/ic_type3.gif differ diff --git a/manager/img/ic_type4.gif b/manager/img/ic_type4.gif new file mode 100644 index 0000000..29ceb98 Binary files /dev/null and b/manager/img/ic_type4.gif differ diff --git a/manager/img/ic_type5.gif b/manager/img/ic_type5.gif new file mode 100644 index 0000000..f65b57e Binary files /dev/null and b/manager/img/ic_type5.gif differ diff --git a/manager/img/ic_type6.gif b/manager/img/ic_type6.gif new file mode 100644 index 0000000..492d2e1 Binary files /dev/null and b/manager/img/ic_type6.gif differ diff --git a/manager/img/ic_type7.gif b/manager/img/ic_type7.gif new file mode 100644 index 0000000..a3f1f6a Binary files /dev/null and b/manager/img/ic_type7.gif differ diff --git a/manager/img/ic_up.gif b/manager/img/ic_up.gif new file mode 100644 index 0000000..d567f2d Binary files /dev/null and b/manager/img/ic_up.gif differ diff --git a/manager/img/ic_vcheck.gif b/manager/img/ic_vcheck.gif new file mode 100644 index 0000000..70d4c58 Binary files /dev/null and b/manager/img/ic_vcheck.gif differ diff --git a/manager/img/line01.gif b/manager/img/line01.gif new file mode 100644 index 0000000..c7724fb Binary files /dev/null and b/manager/img/line01.gif differ diff --git a/manager/img/lm_2step_ic.gif b/manager/img/lm_2step_ic.gif new file mode 100644 index 0000000..87bc07e Binary files /dev/null and b/manager/img/lm_2step_ic.gif differ diff --git a/manager/img/lm_tit00.gif b/manager/img/lm_tit00.gif new file mode 100644 index 0000000..d9eb02a Binary files /dev/null and b/manager/img/lm_tit00.gif differ diff --git a/manager/img/lm_tit01.gif b/manager/img/lm_tit01.gif new file mode 100644 index 0000000..cfcb5ba Binary files /dev/null and b/manager/img/lm_tit01.gif differ diff --git a/manager/img/lm_tit02.gif b/manager/img/lm_tit02.gif new file mode 100644 index 0000000..694514d Binary files /dev/null and b/manager/img/lm_tit02.gif differ diff --git a/manager/img/lm_tit03.gif b/manager/img/lm_tit03.gif new file mode 100644 index 0000000..3f92f3a Binary files /dev/null and b/manager/img/lm_tit03.gif differ diff --git a/manager/img/lm_tit04.gif b/manager/img/lm_tit04.gif new file mode 100644 index 0000000..4de2244 Binary files /dev/null and b/manager/img/lm_tit04.gif differ diff --git a/manager/img/lm_tit05.gif b/manager/img/lm_tit05.gif new file mode 100644 index 0000000..9d7d6d6 Binary files /dev/null and b/manager/img/lm_tit05.gif differ diff --git a/manager/img/loc_ic.gif b/manager/img/loc_ic.gif new file mode 100644 index 0000000..79941f1 Binary files /dev/null and b/manager/img/loc_ic.gif differ diff --git a/manager/img/login_bg.png b/manager/img/login_bg.png new file mode 100644 index 0000000..d2ba8ce Binary files /dev/null and b/manager/img/login_bg.png differ diff --git a/manager/img/login_bt.gif b/manager/img/login_bt.gif new file mode 100644 index 0000000..94201af Binary files /dev/null and b/manager/img/login_bt.gif differ diff --git a/manager/img/login_human.png b/manager/img/login_human.png new file mode 100644 index 0000000..a8edc4f Binary files /dev/null and b/manager/img/login_human.png differ diff --git a/manager/img/login_id.gif b/manager/img/login_id.gif new file mode 100644 index 0000000..1809a91 Binary files /dev/null and b/manager/img/login_id.gif differ diff --git a/manager/img/login_id_bg.gif b/manager/img/login_id_bg.gif new file mode 100644 index 0000000..468320e Binary files /dev/null and b/manager/img/login_id_bg.gif differ diff --git a/manager/img/login_input_bg.gif b/manager/img/login_input_bg.gif new file mode 100644 index 0000000..6df2323 Binary files /dev/null and b/manager/img/login_input_bg.gif differ diff --git a/manager/img/login_logo.gif b/manager/img/login_logo.gif new file mode 100644 index 0000000..4aa1308 Binary files /dev/null and b/manager/img/login_logo.gif differ diff --git a/manager/img/login_main_bg.gif b/manager/img/login_main_bg.gif new file mode 100644 index 0000000..4165c84 Binary files /dev/null and b/manager/img/login_main_bg.gif differ diff --git a/manager/img/login_pw.gif b/manager/img/login_pw.gif new file mode 100644 index 0000000..f62c6c8 Binary files /dev/null and b/manager/img/login_pw.gif differ diff --git a/manager/img/login_pw_bg.gif b/manager/img/login_pw_bg.gif new file mode 100644 index 0000000..6fbc30e Binary files /dev/null and b/manager/img/login_pw_bg.gif differ diff --git a/manager/img/login_tit.gif b/manager/img/login_tit.gif new file mode 100644 index 0000000..1c0f01a Binary files /dev/null and b/manager/img/login_tit.gif differ diff --git a/manager/img/login_top_bg.gif b/manager/img/login_top_bg.gif new file mode 100644 index 0000000..c580756 Binary files /dev/null and b/manager/img/login_top_bg.gif differ diff --git a/manager/img/logo.gif b/manager/img/logo.gif new file mode 100644 index 0000000..c078150 Binary files /dev/null and b/manager/img/logo.gif differ diff --git a/manager/img/memo_bg.gif b/manager/img/memo_bg.gif new file mode 100644 index 0000000..d0798f5 Binary files /dev/null and b/manager/img/memo_bg.gif differ diff --git a/manager/img/memo_bg2.gif b/manager/img/memo_bg2.gif new file mode 100644 index 0000000..5aac752 Binary files /dev/null and b/manager/img/memo_bg2.gif differ diff --git a/manager/img/menu1.png b/manager/img/menu1.png new file mode 100644 index 0000000..b3006c4 Binary files /dev/null and b/manager/img/menu1.png differ diff --git a/manager/img/menu2.png b/manager/img/menu2.png new file mode 100644 index 0000000..c567c8c Binary files /dev/null and b/manager/img/menu2.png differ diff --git a/manager/img/menu3.png b/manager/img/menu3.png new file mode 100644 index 0000000..e01143e Binary files /dev/null and b/manager/img/menu3.png differ diff --git a/manager/img/menu4.png b/manager/img/menu4.png new file mode 100644 index 0000000..71adfdf Binary files /dev/null and b/manager/img/menu4.png differ diff --git a/manager/img/menu5.png b/manager/img/menu5.png new file mode 100644 index 0000000..ba29273 Binary files /dev/null and b/manager/img/menu5.png differ diff --git a/manager/img/mleft_bg.gif b/manager/img/mleft_bg.gif new file mode 100644 index 0000000..caacc59 Binary files /dev/null and b/manager/img/mleft_bg.gif differ diff --git a/manager/img/mleft_bottom.gif b/manager/img/mleft_bottom.gif new file mode 100644 index 0000000..a4c7cf7 Binary files /dev/null and b/manager/img/mleft_bottom.gif differ diff --git a/manager/img/mleft_ic.gif b/manager/img/mleft_ic.gif new file mode 100644 index 0000000..3c17330 Binary files /dev/null and b/manager/img/mleft_ic.gif differ diff --git a/manager/img/mng_tit.gif b/manager/img/mng_tit.gif new file mode 100644 index 0000000..def487f Binary files /dev/null and b/manager/img/mng_tit.gif differ diff --git a/manager/img/move_bt.gif b/manager/img/move_bt.gif new file mode 100644 index 0000000..c66cda6 Binary files /dev/null and b/manager/img/move_bt.gif differ diff --git a/manager/img/new_ic.gif b/manager/img/new_ic.gif new file mode 100644 index 0000000..33db9ec Binary files /dev/null and b/manager/img/new_ic.gif differ diff --git a/manager/img/newsletter/board2_bottom.gif b/manager/img/newsletter/board2_bottom.gif new file mode 100644 index 0000000..f5248ac Binary files /dev/null and b/manager/img/newsletter/board2_bottom.gif differ diff --git a/manager/img/newsletter/board2_ic.gif b/manager/img/newsletter/board2_ic.gif new file mode 100644 index 0000000..aae4111 Binary files /dev/null and b/manager/img/newsletter/board2_ic.gif differ diff --git a/manager/img/newsletter/board2_line.gif b/manager/img/newsletter/board2_line.gif new file mode 100644 index 0000000..5bf845c Binary files /dev/null and b/manager/img/newsletter/board2_line.gif differ diff --git a/manager/img/newsletter/board2_more.gif b/manager/img/newsletter/board2_more.gif new file mode 100644 index 0000000..1825a60 Binary files /dev/null and b/manager/img/newsletter/board2_more.gif differ diff --git a/manager/img/newsletter/board2_top.gif b/manager/img/newsletter/board2_top.gif new file mode 100644 index 0000000..0be07ac Binary files /dev/null and b/manager/img/newsletter/board2_top.gif differ diff --git a/manager/img/newsletter/board3_ic.gif b/manager/img/newsletter/board3_ic.gif new file mode 100644 index 0000000..aae4111 Binary files /dev/null and b/manager/img/newsletter/board3_ic.gif differ diff --git a/manager/img/newsletter/board3_more.gif b/manager/img/newsletter/board3_more.gif new file mode 100644 index 0000000..5345ce5 Binary files /dev/null and b/manager/img/newsletter/board3_more.gif differ diff --git a/manager/img/newsletter/board3_top.gif b/manager/img/newsletter/board3_top.gif new file mode 100644 index 0000000..4921aa9 Binary files /dev/null and b/manager/img/newsletter/board3_top.gif differ diff --git a/manager/img/newsletter/board4_bottom.gif b/manager/img/newsletter/board4_bottom.gif new file mode 100644 index 0000000..635879b Binary files /dev/null and b/manager/img/newsletter/board4_bottom.gif differ diff --git a/manager/img/newsletter/board4_ic.gif b/manager/img/newsletter/board4_ic.gif new file mode 100644 index 0000000..aae4111 Binary files /dev/null and b/manager/img/newsletter/board4_ic.gif differ diff --git a/manager/img/newsletter/board4_line.gif b/manager/img/newsletter/board4_line.gif new file mode 100644 index 0000000..ba8dbd6 Binary files /dev/null and b/manager/img/newsletter/board4_line.gif differ diff --git a/manager/img/newsletter/board4_more.gif b/manager/img/newsletter/board4_more.gif new file mode 100644 index 0000000..e682ca5 Binary files /dev/null and b/manager/img/newsletter/board4_more.gif differ diff --git a/manager/img/newsletter/board4_top.gif b/manager/img/newsletter/board4_top.gif new file mode 100644 index 0000000..04dea8d Binary files /dev/null and b/manager/img/newsletter/board4_top.gif differ diff --git a/manager/img/newsletter/board_bottom.gif b/manager/img/newsletter/board_bottom.gif new file mode 100644 index 0000000..dddef57 Binary files /dev/null and b/manager/img/newsletter/board_bottom.gif differ diff --git a/manager/img/newsletter/board_ic.gif b/manager/img/newsletter/board_ic.gif new file mode 100644 index 0000000..aae4111 Binary files /dev/null and b/manager/img/newsletter/board_ic.gif differ diff --git a/manager/img/newsletter/board_line.gif b/manager/img/newsletter/board_line.gif new file mode 100644 index 0000000..223be20 Binary files /dev/null and b/manager/img/newsletter/board_line.gif differ diff --git a/manager/img/newsletter/board_more.gif b/manager/img/newsletter/board_more.gif new file mode 100644 index 0000000..4b27784 Binary files /dev/null and b/manager/img/newsletter/board_more.gif differ diff --git a/manager/img/newsletter/board_top.gif b/manager/img/newsletter/board_top.gif new file mode 100644 index 0000000..1106cf5 Binary files /dev/null and b/manager/img/newsletter/board_top.gif differ diff --git a/manager/img/newsletter/nl_logo.gif b/manager/img/newsletter/nl_logo.gif new file mode 100644 index 0000000..be17cf6 Binary files /dev/null and b/manager/img/newsletter/nl_logo.gif differ diff --git a/manager/img/newsletter/nl_skin1_1.gif b/manager/img/newsletter/nl_skin1_1.gif new file mode 100644 index 0000000..4436563 Binary files /dev/null and b/manager/img/newsletter/nl_skin1_1.gif differ diff --git a/manager/img/newsletter/nl_skin1_1.jpg b/manager/img/newsletter/nl_skin1_1.jpg new file mode 100644 index 0000000..728e12d Binary files /dev/null and b/manager/img/newsletter/nl_skin1_1.jpg differ diff --git a/manager/img/newsletter/nl_skin1_2.gif b/manager/img/newsletter/nl_skin1_2.gif new file mode 100644 index 0000000..2e85aaa Binary files /dev/null and b/manager/img/newsletter/nl_skin1_2.gif differ diff --git a/manager/img/newsletter/nl_skin1_3.gif b/manager/img/newsletter/nl_skin1_3.gif new file mode 100644 index 0000000..b95a9d8 Binary files /dev/null and b/manager/img/newsletter/nl_skin1_3.gif differ diff --git a/manager/img/newsletter/nl_skin1_4.gif b/manager/img/newsletter/nl_skin1_4.gif new file mode 100644 index 0000000..dedad70 Binary files /dev/null and b/manager/img/newsletter/nl_skin1_4.gif differ diff --git a/manager/img/newsletter/nl_skin1_5.gif b/manager/img/newsletter/nl_skin1_5.gif new file mode 100644 index 0000000..2e50cc1 Binary files /dev/null and b/manager/img/newsletter/nl_skin1_5.gif differ diff --git a/manager/img/newsletter/nl_skin2_1.gif b/manager/img/newsletter/nl_skin2_1.gif new file mode 100644 index 0000000..b36cdf6 Binary files /dev/null and b/manager/img/newsletter/nl_skin2_1.gif differ diff --git a/manager/img/newsletter/nl_skin2_2.gif b/manager/img/newsletter/nl_skin2_2.gif new file mode 100644 index 0000000..01f34ec Binary files /dev/null and b/manager/img/newsletter/nl_skin2_2.gif differ diff --git a/manager/img/newsletter/nl_skin2_3.gif b/manager/img/newsletter/nl_skin2_3.gif new file mode 100644 index 0000000..e05cfd1 Binary files /dev/null and b/manager/img/newsletter/nl_skin2_3.gif differ diff --git a/manager/img/newsletter/nl_skin2_4.gif b/manager/img/newsletter/nl_skin2_4.gif new file mode 100644 index 0000000..da7d77b Binary files /dev/null and b/manager/img/newsletter/nl_skin2_4.gif differ diff --git a/manager/img/newsletter/nl_skin3_1.gif b/manager/img/newsletter/nl_skin3_1.gif new file mode 100644 index 0000000..a7d45a2 Binary files /dev/null and b/manager/img/newsletter/nl_skin3_1.gif differ diff --git a/manager/img/newsletter/nl_skin3_2.gif b/manager/img/newsletter/nl_skin3_2.gif new file mode 100644 index 0000000..0258192 Binary files /dev/null and b/manager/img/newsletter/nl_skin3_2.gif differ diff --git a/manager/img/newsletter/nl_skin3_3.gif b/manager/img/newsletter/nl_skin3_3.gif new file mode 100644 index 0000000..76aba58 Binary files /dev/null and b/manager/img/newsletter/nl_skin3_3.gif differ diff --git a/manager/img/newsletter/nl_skin3_4.gif b/manager/img/newsletter/nl_skin3_4.gif new file mode 100644 index 0000000..8d178ba Binary files /dev/null and b/manager/img/newsletter/nl_skin3_4.gif differ diff --git a/manager/img/newsletter/nl_skin3_5.gif b/manager/img/newsletter/nl_skin3_5.gif new file mode 100644 index 0000000..9379265 Binary files /dev/null and b/manager/img/newsletter/nl_skin3_5.gif differ diff --git a/manager/img/newsletter/nl_skin4_1.gif b/manager/img/newsletter/nl_skin4_1.gif new file mode 100644 index 0000000..0606fb0 Binary files /dev/null and b/manager/img/newsletter/nl_skin4_1.gif differ diff --git a/manager/img/newsletter/nl_skin4_1.jpg b/manager/img/newsletter/nl_skin4_1.jpg new file mode 100644 index 0000000..bda9724 Binary files /dev/null and b/manager/img/newsletter/nl_skin4_1.jpg differ diff --git a/manager/img/newsletter/nl_skin4_2.gif b/manager/img/newsletter/nl_skin4_2.gif new file mode 100644 index 0000000..b438c7e Binary files /dev/null and b/manager/img/newsletter/nl_skin4_2.gif differ diff --git a/manager/img/newsletter/nl_skin4_3.gif b/manager/img/newsletter/nl_skin4_3.gif new file mode 100644 index 0000000..64cd4d4 Binary files /dev/null and b/manager/img/newsletter/nl_skin4_3.gif differ diff --git a/manager/img/newsletter/nl_skin4_4.gif b/manager/img/newsletter/nl_skin4_4.gif new file mode 100644 index 0000000..f7d0d3b Binary files /dev/null and b/manager/img/newsletter/nl_skin4_4.gif differ diff --git a/manager/img/newsletter/nl_skin4_5.gif b/manager/img/newsletter/nl_skin4_5.gif new file mode 100644 index 0000000..1e2b55c Binary files /dev/null and b/manager/img/newsletter/nl_skin4_5.gif differ diff --git a/manager/img/newsletter/nl_skin5_1.gif b/manager/img/newsletter/nl_skin5_1.gif new file mode 100644 index 0000000..3bd8134 Binary files /dev/null and b/manager/img/newsletter/nl_skin5_1.gif differ diff --git a/manager/img/newsletter/nl_skin5_2.gif b/manager/img/newsletter/nl_skin5_2.gif new file mode 100644 index 0000000..ea8f5b2 Binary files /dev/null and b/manager/img/newsletter/nl_skin5_2.gif differ diff --git a/manager/img/newsletter/nl_skin5_3.gif b/manager/img/newsletter/nl_skin5_3.gif new file mode 100644 index 0000000..7bf7386 Binary files /dev/null and b/manager/img/newsletter/nl_skin5_3.gif differ diff --git a/manager/img/newsletter/nl_skin5_4.gif b/manager/img/newsletter/nl_skin5_4.gif new file mode 100644 index 0000000..57e0682 Binary files /dev/null and b/manager/img/newsletter/nl_skin5_4.gif differ diff --git a/manager/img/newsletter/ok_bt.gif b/manager/img/newsletter/ok_bt.gif new file mode 100644 index 0000000..9131590 Binary files /dev/null and b/manager/img/newsletter/ok_bt.gif differ diff --git a/manager/img/newsletter/reject_bg.gif b/manager/img/newsletter/reject_bg.gif new file mode 100644 index 0000000..6d4fd2a Binary files /dev/null and b/manager/img/newsletter/reject_bg.gif differ diff --git a/manager/img/newsletter/x_img01.gif b/manager/img/newsletter/x_img01.gif new file mode 100644 index 0000000..81d0fac Binary files /dev/null and b/manager/img/newsletter/x_img01.gif differ diff --git a/manager/img/newsletter/x_img02.gif b/manager/img/newsletter/x_img02.gif new file mode 100644 index 0000000..f4f11f8 Binary files /dev/null and b/manager/img/newsletter/x_img02.gif differ diff --git a/manager/img/newsletter_skin1.gif b/manager/img/newsletter_skin1.gif new file mode 100644 index 0000000..9300dcc Binary files /dev/null and b/manager/img/newsletter_skin1.gif differ diff --git a/manager/img/newsletter_skin2.gif b/manager/img/newsletter_skin2.gif new file mode 100644 index 0000000..ab3ad82 Binary files /dev/null and b/manager/img/newsletter_skin2.gif differ diff --git a/manager/img/newsletter_skin3.gif b/manager/img/newsletter_skin3.gif new file mode 100644 index 0000000..691c402 Binary files /dev/null and b/manager/img/newsletter_skin3.gif differ diff --git a/manager/img/newsletter_skin4.gif b/manager/img/newsletter_skin4.gif new file mode 100644 index 0000000..3ba5ed8 Binary files /dev/null and b/manager/img/newsletter_skin4.gif differ diff --git a/manager/img/newsletter_skin5.gif b/manager/img/newsletter_skin5.gif new file mode 100644 index 0000000..e5f13d4 Binary files /dev/null and b/manager/img/newsletter_skin5.gif differ diff --git a/manager/img/next1.gif b/manager/img/next1.gif new file mode 100644 index 0000000..e84c9c5 Binary files /dev/null and b/manager/img/next1.gif differ diff --git a/manager/img/next2.gif b/manager/img/next2.gif new file mode 100644 index 0000000..122afeb Binary files /dev/null and b/manager/img/next2.gif differ diff --git a/manager/img/nl_logo.gif b/manager/img/nl_logo.gif new file mode 100644 index 0000000..be17cf6 Binary files /dev/null and b/manager/img/nl_logo.gif differ diff --git a/manager/img/nl_skin1_1.gif b/manager/img/nl_skin1_1.gif new file mode 100644 index 0000000..f0043ab Binary files /dev/null and b/manager/img/nl_skin1_1.gif differ diff --git a/manager/img/nl_skin1_1.jpg b/manager/img/nl_skin1_1.jpg new file mode 100644 index 0000000..b9baeff Binary files /dev/null and b/manager/img/nl_skin1_1.jpg differ diff --git a/manager/img/nl_skin1_2.gif b/manager/img/nl_skin1_2.gif new file mode 100644 index 0000000..2e40011 Binary files /dev/null and b/manager/img/nl_skin1_2.gif differ diff --git a/manager/img/nl_skin1_3.gif b/manager/img/nl_skin1_3.gif new file mode 100644 index 0000000..b95a9d8 Binary files /dev/null and b/manager/img/nl_skin1_3.gif differ diff --git a/manager/img/nl_skin1_4.gif b/manager/img/nl_skin1_4.gif new file mode 100644 index 0000000..72fff79 Binary files /dev/null and b/manager/img/nl_skin1_4.gif differ diff --git a/manager/img/nl_skin1_5.gif b/manager/img/nl_skin1_5.gif new file mode 100644 index 0000000..2e50cc1 Binary files /dev/null and b/manager/img/nl_skin1_5.gif differ diff --git a/manager/img/nl_skin2_1.gif b/manager/img/nl_skin2_1.gif new file mode 100644 index 0000000..e3e058d Binary files /dev/null and b/manager/img/nl_skin2_1.gif differ diff --git a/manager/img/nl_skin2_2.gif b/manager/img/nl_skin2_2.gif new file mode 100644 index 0000000..77214d4 Binary files /dev/null and b/manager/img/nl_skin2_2.gif differ diff --git a/manager/img/nl_skin2_3.gif b/manager/img/nl_skin2_3.gif new file mode 100644 index 0000000..e05cfd1 Binary files /dev/null and b/manager/img/nl_skin2_3.gif differ diff --git a/manager/img/nl_skin2_4.gif b/manager/img/nl_skin2_4.gif new file mode 100644 index 0000000..d481832 Binary files /dev/null and b/manager/img/nl_skin2_4.gif differ diff --git a/manager/img/nl_skin3_1.gif b/manager/img/nl_skin3_1.gif new file mode 100644 index 0000000..c15e4bf Binary files /dev/null and b/manager/img/nl_skin3_1.gif differ diff --git a/manager/img/nl_skin3_2.gif b/manager/img/nl_skin3_2.gif new file mode 100644 index 0000000..46c4a98 Binary files /dev/null and b/manager/img/nl_skin3_2.gif differ diff --git a/manager/img/nl_skin3_3.gif b/manager/img/nl_skin3_3.gif new file mode 100644 index 0000000..76aba58 Binary files /dev/null and b/manager/img/nl_skin3_3.gif differ diff --git a/manager/img/nl_skin3_4.gif b/manager/img/nl_skin3_4.gif new file mode 100644 index 0000000..1d18d68 Binary files /dev/null and b/manager/img/nl_skin3_4.gif differ diff --git a/manager/img/nl_skin3_5.gif b/manager/img/nl_skin3_5.gif new file mode 100644 index 0000000..9379265 Binary files /dev/null and b/manager/img/nl_skin3_5.gif differ diff --git a/manager/img/nl_skin4_1.gif b/manager/img/nl_skin4_1.gif new file mode 100644 index 0000000..08a23fb Binary files /dev/null and b/manager/img/nl_skin4_1.gif differ diff --git a/manager/img/nl_skin4_1.jpg b/manager/img/nl_skin4_1.jpg new file mode 100644 index 0000000..f1e7617 Binary files /dev/null and b/manager/img/nl_skin4_1.jpg differ diff --git a/manager/img/nl_skin4_2.gif b/manager/img/nl_skin4_2.gif new file mode 100644 index 0000000..5adc8c9 Binary files /dev/null and b/manager/img/nl_skin4_2.gif differ diff --git a/manager/img/nl_skin4_3.gif b/manager/img/nl_skin4_3.gif new file mode 100644 index 0000000..64cd4d4 Binary files /dev/null and b/manager/img/nl_skin4_3.gif differ diff --git a/manager/img/nl_skin4_4.gif b/manager/img/nl_skin4_4.gif new file mode 100644 index 0000000..2b8689f Binary files /dev/null and b/manager/img/nl_skin4_4.gif differ diff --git a/manager/img/nl_skin4_5.gif b/manager/img/nl_skin4_5.gif new file mode 100644 index 0000000..1e2b55c Binary files /dev/null and b/manager/img/nl_skin4_5.gif differ diff --git a/manager/img/nl_skin5_1.gif b/manager/img/nl_skin5_1.gif new file mode 100644 index 0000000..647c886 Binary files /dev/null and b/manager/img/nl_skin5_1.gif differ diff --git a/manager/img/nl_skin5_2.gif b/manager/img/nl_skin5_2.gif new file mode 100644 index 0000000..436341e Binary files /dev/null and b/manager/img/nl_skin5_2.gif differ diff --git a/manager/img/nl_skin5_3.gif b/manager/img/nl_skin5_3.gif new file mode 100644 index 0000000..7bf7386 Binary files /dev/null and b/manager/img/nl_skin5_3.gif differ diff --git a/manager/img/nl_skin5_4.gif b/manager/img/nl_skin5_4.gif new file mode 100644 index 0000000..51dcb87 Binary files /dev/null and b/manager/img/nl_skin5_4.gif differ diff --git a/manager/img/nosecurity_bg.gif b/manager/img/nosecurity_bg.gif new file mode 100644 index 0000000..4110d51 Binary files /dev/null and b/manager/img/nosecurity_bg.gif differ diff --git a/manager/img/nosecurity_text.gif b/manager/img/nosecurity_text.gif new file mode 100644 index 0000000..6e31a3d Binary files /dev/null and b/manager/img/nosecurity_text.gif differ diff --git a/manager/img/often_bt.gif b/manager/img/often_bt.gif new file mode 100644 index 0000000..39f432a Binary files /dev/null and b/manager/img/often_bt.gif differ diff --git a/manager/img/often_move_bt.gif b/manager/img/often_move_bt.gif new file mode 100644 index 0000000..26e0368 Binary files /dev/null and b/manager/img/often_move_bt.gif differ diff --git a/manager/img/orange/bottom_bg1.gif b/manager/img/orange/bottom_bg1.gif new file mode 100644 index 0000000..7bf21f5 Binary files /dev/null and b/manager/img/orange/bottom_bg1.gif differ diff --git a/manager/img/orange/bottom_bg2.gif b/manager/img/orange/bottom_bg2.gif new file mode 100644 index 0000000..5b4fb44 Binary files /dev/null and b/manager/img/orange/bottom_bg2.gif differ diff --git a/manager/img/orange/bottom_bg3.gif b/manager/img/orange/bottom_bg3.gif new file mode 100644 index 0000000..114e717 Binary files /dev/null and b/manager/img/orange/bottom_bg3.gif differ diff --git a/manager/img/orange/bt_bg.gif b/manager/img/orange/bt_bg.gif new file mode 100644 index 0000000..01b4d65 Binary files /dev/null and b/manager/img/orange/bt_bg.gif differ diff --git a/manager/img/orange/center_bg.gif b/manager/img/orange/center_bg.gif new file mode 100644 index 0000000..df29d8d Binary files /dev/null and b/manager/img/orange/center_bg.gif differ diff --git a/manager/img/orange/center_top_bg.gif b/manager/img/orange/center_top_bg.gif new file mode 100644 index 0000000..7161ecf Binary files /dev/null and b/manager/img/orange/center_top_bg.gif differ diff --git a/manager/img/orange/con_2step_ic.gif b/manager/img/orange/con_2step_ic.gif new file mode 100644 index 0000000..926d434 Binary files /dev/null and b/manager/img/orange/con_2step_ic.gif differ diff --git a/manager/img/orange/lm_1step_bg.gif b/manager/img/orange/lm_1step_bg.gif new file mode 100644 index 0000000..b1460d9 Binary files /dev/null and b/manager/img/orange/lm_1step_bg.gif differ diff --git a/manager/img/orange/lm_2step_ic.gif b/manager/img/orange/lm_2step_ic.gif new file mode 100644 index 0000000..f81f84c Binary files /dev/null and b/manager/img/orange/lm_2step_ic.gif differ diff --git a/manager/img/orange/lm_bg.gif b/manager/img/orange/lm_bg.gif new file mode 100644 index 0000000..b0756c7 Binary files /dev/null and b/manager/img/orange/lm_bg.gif differ diff --git a/manager/img/orange/lm_tit_bg.gif b/manager/img/orange/lm_tit_bg.gif new file mode 100644 index 0000000..2769fb3 Binary files /dev/null and b/manager/img/orange/lm_tit_bg.gif differ diff --git a/manager/img/orange/logo.gif b/manager/img/orange/logo.gif new file mode 100644 index 0000000..f7c5001 Binary files /dev/null and b/manager/img/orange/logo.gif differ diff --git a/manager/img/orange/m01.gif b/manager/img/orange/m01.gif new file mode 100644 index 0000000..c2da34d Binary files /dev/null and b/manager/img/orange/m01.gif differ diff --git a/manager/img/orange/m02.gif b/manager/img/orange/m02.gif new file mode 100644 index 0000000..033c6d5 Binary files /dev/null and b/manager/img/orange/m02.gif differ diff --git a/manager/img/orange/m03.gif b/manager/img/orange/m03.gif new file mode 100644 index 0000000..2551178 Binary files /dev/null and b/manager/img/orange/m03.gif differ diff --git a/manager/img/orange/m04.gif b/manager/img/orange/m04.gif new file mode 100644 index 0000000..f1aaa5b Binary files /dev/null and b/manager/img/orange/m04.gif differ diff --git a/manager/img/orange/m05.gif b/manager/img/orange/m05.gif new file mode 100644 index 0000000..8a0b2c3 Binary files /dev/null and b/manager/img/orange/m05.gif differ diff --git a/manager/img/orange/m_bg.gif b/manager/img/orange/m_bg.gif new file mode 100644 index 0000000..fcac367 Binary files /dev/null and b/manager/img/orange/m_bg.gif differ diff --git a/manager/img/orange/m_left.gif b/manager/img/orange/m_left.gif new file mode 100644 index 0000000..ee5098c Binary files /dev/null and b/manager/img/orange/m_left.gif differ diff --git a/manager/img/orange/m_line.gif b/manager/img/orange/m_line.gif new file mode 100644 index 0000000..91579ea Binary files /dev/null and b/manager/img/orange/m_line.gif differ diff --git a/manager/img/orange/m_right.gif b/manager/img/orange/m_right.gif new file mode 100644 index 0000000..2c287db Binary files /dev/null and b/manager/img/orange/m_right.gif differ diff --git a/manager/img/orange/main_bg.gif b/manager/img/orange/main_bg.gif new file mode 100644 index 0000000..6da4053 Binary files /dev/null and b/manager/img/orange/main_bg.gif differ diff --git a/manager/img/orange/main_content_bg.gif b/manager/img/orange/main_content_bg.gif new file mode 100644 index 0000000..1e033d1 Binary files /dev/null and b/manager/img/orange/main_content_bg.gif differ diff --git a/manager/img/orange/memo_top.gif b/manager/img/orange/memo_top.gif new file mode 100644 index 0000000..9a4ddc3 Binary files /dev/null and b/manager/img/orange/memo_top.gif differ diff --git a/manager/img/orange/menu_bg.gif b/manager/img/orange/menu_bg.gif new file mode 100644 index 0000000..ff432b0 Binary files /dev/null and b/manager/img/orange/menu_bg.gif differ diff --git a/manager/img/orange/sitelink.fla b/manager/img/orange/sitelink.fla new file mode 100644 index 0000000..5960705 Binary files /dev/null and b/manager/img/orange/sitelink.fla differ diff --git a/manager/img/orange/sitelink.swf b/manager/img/orange/sitelink.swf new file mode 100644 index 0000000..4d39fe9 Binary files /dev/null and b/manager/img/orange/sitelink.swf differ diff --git a/manager/img/orange/sub_bg.gif b/manager/img/orange/sub_bg.gif new file mode 100644 index 0000000..3af8381 Binary files /dev/null and b/manager/img/orange/sub_bg.gif differ diff --git a/manager/img/orange/tab.gif b/manager/img/orange/tab.gif new file mode 100644 index 0000000..35a2269 Binary files /dev/null and b/manager/img/orange/tab.gif differ diff --git a/manager/img/orange/tab_bg.gif b/manager/img/orange/tab_bg.gif new file mode 100644 index 0000000..9b9acc3 Binary files /dev/null and b/manager/img/orange/tab_bg.gif differ diff --git a/manager/img/orange/tab_left.gif b/manager/img/orange/tab_left.gif new file mode 100644 index 0000000..c39a036 Binary files /dev/null and b/manager/img/orange/tab_left.gif differ diff --git a/manager/img/orange/tab_on.gif b/manager/img/orange/tab_on.gif new file mode 100644 index 0000000..3c49b07 Binary files /dev/null and b/manager/img/orange/tab_on.gif differ diff --git a/manager/img/orange/tab_right.gif b/manager/img/orange/tab_right.gif new file mode 100644 index 0000000..27498ae Binary files /dev/null and b/manager/img/orange/tab_right.gif differ diff --git a/manager/img/orange/top_bg.gif b/manager/img/orange/top_bg.gif new file mode 100644 index 0000000..5d52446 Binary files /dev/null and b/manager/img/orange/top_bg.gif differ diff --git a/manager/img/pagemove_bg.gif b/manager/img/pagemove_bg.gif new file mode 100644 index 0000000..0f4e70f Binary files /dev/null and b/manager/img/pagemove_bg.gif differ diff --git a/manager/img/pagemove_left.gif b/manager/img/pagemove_left.gif new file mode 100644 index 0000000..0dbb3cc Binary files /dev/null and b/manager/img/pagemove_left.gif differ diff --git a/manager/img/pagemove_next.gif b/manager/img/pagemove_next.gif new file mode 100644 index 0000000..dcfca26 Binary files /dev/null and b/manager/img/pagemove_next.gif differ diff --git a/manager/img/pagemove_prev.gif b/manager/img/pagemove_prev.gif new file mode 100644 index 0000000..166e8f1 Binary files /dev/null and b/manager/img/pagemove_prev.gif differ diff --git a/manager/img/pagemove_right.gif b/manager/img/pagemove_right.gif new file mode 100644 index 0000000..f91d9de Binary files /dev/null and b/manager/img/pagemove_right.gif differ diff --git a/manager/img/poll_arrow_blue.gif b/manager/img/poll_arrow_blue.gif new file mode 100644 index 0000000..0a110c6 Binary files /dev/null and b/manager/img/poll_arrow_blue.gif differ diff --git a/manager/img/poll_arrow_gray.gif b/manager/img/poll_arrow_gray.gif new file mode 100644 index 0000000..d6c7834 Binary files /dev/null and b/manager/img/poll_arrow_gray.gif differ diff --git a/manager/img/poll_arrow_green.gif b/manager/img/poll_arrow_green.gif new file mode 100644 index 0000000..266b784 Binary files /dev/null and b/manager/img/poll_arrow_green.gif differ diff --git a/manager/img/poll_arrow_orange.gif b/manager/img/poll_arrow_orange.gif new file mode 100644 index 0000000..03686b0 Binary files /dev/null and b/manager/img/poll_arrow_orange.gif differ diff --git a/manager/img/poll_arrow_sky.gif b/manager/img/poll_arrow_sky.gif new file mode 100644 index 0000000..ed37180 Binary files /dev/null and b/manager/img/poll_arrow_sky.gif differ diff --git a/manager/img/prev1.gif b/manager/img/prev1.gif new file mode 100644 index 0000000..f0846cd Binary files /dev/null and b/manager/img/prev1.gif differ diff --git a/manager/img/prev2.gif b/manager/img/prev2.gif new file mode 100644 index 0000000..b67667d Binary files /dev/null and b/manager/img/prev2.gif differ diff --git a/manager/img/print_bt.gif b/manager/img/print_bt.gif new file mode 100644 index 0000000..5687d1d Binary files /dev/null and b/manager/img/print_bt.gif differ diff --git a/manager/img/progress_bar.gif b/manager/img/progress_bar.gif new file mode 100644 index 0000000..d0124b8 Binary files /dev/null and b/manager/img/progress_bar.gif differ diff --git a/manager/img/re_bt.gif b/manager/img/re_bt.gif new file mode 100644 index 0000000..a03d85a Binary files /dev/null and b/manager/img/re_bt.gif differ diff --git a/manager/img/right_bg.gif b/manager/img/right_bg.gif new file mode 100644 index 0000000..438599a Binary files /dev/null and b/manager/img/right_bg.gif differ diff --git a/manager/img/search_bt.gif b/manager/img/search_bt.gif new file mode 100644 index 0000000..8158b31 Binary files /dev/null and b/manager/img/search_bt.gif differ diff --git a/manager/img/search_ic.gif b/manager/img/search_ic.gif new file mode 100644 index 0000000..dab5d20 Binary files /dev/null and b/manager/img/search_ic.gif differ diff --git a/manager/img/skin01.gif b/manager/img/skin01.gif new file mode 100644 index 0000000..7c04544 Binary files /dev/null and b/manager/img/skin01.gif differ diff --git a/manager/img/skin02.gif b/manager/img/skin02.gif new file mode 100644 index 0000000..9489b3f Binary files /dev/null and b/manager/img/skin02.gif differ diff --git a/manager/img/skin03.gif b/manager/img/skin03.gif new file mode 100644 index 0000000..ad18b85 Binary files /dev/null and b/manager/img/skin03.gif differ diff --git a/manager/img/skin04.gif b/manager/img/skin04.gif new file mode 100644 index 0000000..2beb71f Binary files /dev/null and b/manager/img/skin04.gif differ diff --git a/manager/img/skin05.gif b/manager/img/skin05.gif new file mode 100644 index 0000000..c06aa75 Binary files /dev/null and b/manager/img/skin05.gif differ diff --git a/manager/img/sky/bottom_bg1.gif b/manager/img/sky/bottom_bg1.gif new file mode 100644 index 0000000..02aa993 Binary files /dev/null and b/manager/img/sky/bottom_bg1.gif differ diff --git a/manager/img/sky/bottom_bg2.gif b/manager/img/sky/bottom_bg2.gif new file mode 100644 index 0000000..6f24e68 Binary files /dev/null and b/manager/img/sky/bottom_bg2.gif differ diff --git a/manager/img/sky/bottom_bg3.gif b/manager/img/sky/bottom_bg3.gif new file mode 100644 index 0000000..58c5cfe Binary files /dev/null and b/manager/img/sky/bottom_bg3.gif differ diff --git a/manager/img/sky/bt_bg.gif b/manager/img/sky/bt_bg.gif new file mode 100644 index 0000000..8c50f51 Binary files /dev/null and b/manager/img/sky/bt_bg.gif differ diff --git a/manager/img/sky/center_bg.gif b/manager/img/sky/center_bg.gif new file mode 100644 index 0000000..d942832 Binary files /dev/null and b/manager/img/sky/center_bg.gif differ diff --git a/manager/img/sky/center_top_bg.gif b/manager/img/sky/center_top_bg.gif new file mode 100644 index 0000000..432900a Binary files /dev/null and b/manager/img/sky/center_top_bg.gif differ diff --git a/manager/img/sky/con_2step_ic.gif b/manager/img/sky/con_2step_ic.gif new file mode 100644 index 0000000..628470e Binary files /dev/null and b/manager/img/sky/con_2step_ic.gif differ diff --git a/manager/img/sky/lm_1step_bg.gif b/manager/img/sky/lm_1step_bg.gif new file mode 100644 index 0000000..995d09d Binary files /dev/null and b/manager/img/sky/lm_1step_bg.gif differ diff --git a/manager/img/sky/lm_2step_ic.gif b/manager/img/sky/lm_2step_ic.gif new file mode 100644 index 0000000..f81f84c Binary files /dev/null and b/manager/img/sky/lm_2step_ic.gif differ diff --git a/manager/img/sky/lm_bg.gif b/manager/img/sky/lm_bg.gif new file mode 100644 index 0000000..719b90b Binary files /dev/null and b/manager/img/sky/lm_bg.gif differ diff --git a/manager/img/sky/lm_tit_bg.gif b/manager/img/sky/lm_tit_bg.gif new file mode 100644 index 0000000..00e813e Binary files /dev/null and b/manager/img/sky/lm_tit_bg.gif differ diff --git a/manager/img/sky/logo.gif b/manager/img/sky/logo.gif new file mode 100644 index 0000000..8c99459 Binary files /dev/null and b/manager/img/sky/logo.gif differ diff --git a/manager/img/sky/m01.gif b/manager/img/sky/m01.gif new file mode 100644 index 0000000..c399457 Binary files /dev/null and b/manager/img/sky/m01.gif differ diff --git a/manager/img/sky/m02.gif b/manager/img/sky/m02.gif new file mode 100644 index 0000000..2a7f035 Binary files /dev/null and b/manager/img/sky/m02.gif differ diff --git a/manager/img/sky/m03.gif b/manager/img/sky/m03.gif new file mode 100644 index 0000000..9c5817d Binary files /dev/null and b/manager/img/sky/m03.gif differ diff --git a/manager/img/sky/m04.gif b/manager/img/sky/m04.gif new file mode 100644 index 0000000..716eab5 Binary files /dev/null and b/manager/img/sky/m04.gif differ diff --git a/manager/img/sky/m05.gif b/manager/img/sky/m05.gif new file mode 100644 index 0000000..3994c4c Binary files /dev/null and b/manager/img/sky/m05.gif differ diff --git a/manager/img/sky/m_bg.gif b/manager/img/sky/m_bg.gif new file mode 100644 index 0000000..67813d8 Binary files /dev/null and b/manager/img/sky/m_bg.gif differ diff --git a/manager/img/sky/m_left.gif b/manager/img/sky/m_left.gif new file mode 100644 index 0000000..e618462 Binary files /dev/null and b/manager/img/sky/m_left.gif differ diff --git a/manager/img/sky/m_line.gif b/manager/img/sky/m_line.gif new file mode 100644 index 0000000..30a5c10 Binary files /dev/null and b/manager/img/sky/m_line.gif differ diff --git a/manager/img/sky/m_right.gif b/manager/img/sky/m_right.gif new file mode 100644 index 0000000..4cd6544 Binary files /dev/null and b/manager/img/sky/m_right.gif differ diff --git a/manager/img/sky/main_bg.gif b/manager/img/sky/main_bg.gif new file mode 100644 index 0000000..dfa031a Binary files /dev/null and b/manager/img/sky/main_bg.gif differ diff --git a/manager/img/sky/main_content_bg.gif b/manager/img/sky/main_content_bg.gif new file mode 100644 index 0000000..a374023 Binary files /dev/null and b/manager/img/sky/main_content_bg.gif differ diff --git a/manager/img/sky/memo_top.gif b/manager/img/sky/memo_top.gif new file mode 100644 index 0000000..32df307 Binary files /dev/null and b/manager/img/sky/memo_top.gif differ diff --git a/manager/img/sky/menu_bg.gif b/manager/img/sky/menu_bg.gif new file mode 100644 index 0000000..3ea48a6 Binary files /dev/null and b/manager/img/sky/menu_bg.gif differ diff --git a/manager/img/sky/sitelink.fla b/manager/img/sky/sitelink.fla new file mode 100644 index 0000000..b277550 Binary files /dev/null and b/manager/img/sky/sitelink.fla differ diff --git a/manager/img/sky/sitelink.swf b/manager/img/sky/sitelink.swf new file mode 100644 index 0000000..16f3350 Binary files /dev/null and b/manager/img/sky/sitelink.swf differ diff --git a/manager/img/sky/sub_bg.gif b/manager/img/sky/sub_bg.gif new file mode 100644 index 0000000..7945174 Binary files /dev/null and b/manager/img/sky/sub_bg.gif differ diff --git a/manager/img/sky/tab.gif b/manager/img/sky/tab.gif new file mode 100644 index 0000000..35a2269 Binary files /dev/null and b/manager/img/sky/tab.gif differ diff --git a/manager/img/sky/tab_bg.gif b/manager/img/sky/tab_bg.gif new file mode 100644 index 0000000..83ed821 Binary files /dev/null and b/manager/img/sky/tab_bg.gif differ diff --git a/manager/img/sky/tab_left.gif b/manager/img/sky/tab_left.gif new file mode 100644 index 0000000..7824fc9 Binary files /dev/null and b/manager/img/sky/tab_left.gif differ diff --git a/manager/img/sky/tab_on.gif b/manager/img/sky/tab_on.gif new file mode 100644 index 0000000..4d5422f Binary files /dev/null and b/manager/img/sky/tab_on.gif differ diff --git a/manager/img/sky/tab_right.gif b/manager/img/sky/tab_right.gif new file mode 100644 index 0000000..30113d9 Binary files /dev/null and b/manager/img/sky/tab_right.gif differ diff --git a/manager/img/sky/top_bg.gif b/manager/img/sky/top_bg.gif new file mode 100644 index 0000000..57c9e8d Binary files /dev/null and b/manager/img/sky/top_bg.gif differ diff --git a/manager/img/swf/main_colum3d.fla b/manager/img/swf/main_colum3d.fla new file mode 100644 index 0000000..f7c161c Binary files /dev/null and b/manager/img/swf/main_colum3d.fla differ diff --git a/manager/img/swf/main_colum3d.swf b/manager/img/swf/main_colum3d.swf new file mode 100644 index 0000000..65f5da5 Binary files /dev/null and b/manager/img/swf/main_colum3d.swf differ diff --git a/manager/img/swf/main_colum3d.xml b/manager/img/swf/main_colum3d.xml new file mode 100644 index 0000000..97aec1c --- /dev/null +++ b/manager/img/swf/main_colum3d.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/manager/img/swf/time.xml b/manager/img/swf/time.xml new file mode 100644 index 0000000..3796aa5 --- /dev/null +++ b/manager/img/swf/time.xml @@ -0,0 +1,35 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/manager/img/tab.gif b/manager/img/tab.gif new file mode 100644 index 0000000..35a2269 Binary files /dev/null and b/manager/img/tab.gif differ diff --git a/manager/img/tab_bg.gif b/manager/img/tab_bg.gif new file mode 100644 index 0000000..18d0b29 Binary files /dev/null and b/manager/img/tab_bg.gif differ diff --git a/manager/img/tab_left.gif b/manager/img/tab_left.gif new file mode 100644 index 0000000..2ea36e3 Binary files /dev/null and b/manager/img/tab_left.gif differ diff --git a/manager/img/tab_right.gif b/manager/img/tab_right.gif new file mode 100644 index 0000000..432e944 Binary files /dev/null and b/manager/img/tab_right.gif differ diff --git a/manager/img/tb_bg.gif b/manager/img/tb_bg.gif new file mode 100644 index 0000000..5e9e83e Binary files /dev/null and b/manager/img/tb_bg.gif differ diff --git a/manager/img/tbt_bg.gif b/manager/img/tbt_bg.gif new file mode 100644 index 0000000..e4f2d2c Binary files /dev/null and b/manager/img/tbt_bg.gif differ diff --git a/manager/img/tbt_ic.gif b/manager/img/tbt_ic.gif new file mode 100644 index 0000000..1350dbc Binary files /dev/null and b/manager/img/tbt_ic.gif differ diff --git a/manager/img/tbt_left.gif b/manager/img/tbt_left.gif new file mode 100644 index 0000000..8b95434 Binary files /dev/null and b/manager/img/tbt_left.gif differ diff --git a/manager/img/tbt_left2.gif b/manager/img/tbt_left2.gif new file mode 100644 index 0000000..d254d59 Binary files /dev/null and b/manager/img/tbt_left2.gif differ diff --git a/manager/img/tbt_left3.gif b/manager/img/tbt_left3.gif new file mode 100644 index 0000000..9a7e6a8 Binary files /dev/null and b/manager/img/tbt_left3.gif differ diff --git a/manager/img/tbt_right.gif b/manager/img/tbt_right.gif new file mode 100644 index 0000000..a529a7a Binary files /dev/null and b/manager/img/tbt_right.gif differ diff --git a/manager/img/tbt_right2.gif b/manager/img/tbt_right2.gif new file mode 100644 index 0000000..c9d48bf Binary files /dev/null and b/manager/img/tbt_right2.gif differ diff --git a/manager/img/tbt_right3.gif b/manager/img/tbt_right3.gif new file mode 100644 index 0000000..6931a3c Binary files /dev/null and b/manager/img/tbt_right3.gif differ diff --git a/manager/img/tit_bg.gif b/manager/img/tit_bg.gif new file mode 100644 index 0000000..44ba5c3 Binary files /dev/null and b/manager/img/tit_bg.gif differ diff --git a/manager/img/tit_ic01.gif b/manager/img/tit_ic01.gif new file mode 100644 index 0000000..81da6b8 Binary files /dev/null and b/manager/img/tit_ic01.gif differ diff --git a/manager/img/tit_ic02.gif b/manager/img/tit_ic02.gif new file mode 100644 index 0000000..08cf09f Binary files /dev/null and b/manager/img/tit_ic02.gif differ diff --git a/manager/img/tit_ic03.gif b/manager/img/tit_ic03.gif new file mode 100644 index 0000000..6b2666d Binary files /dev/null and b/manager/img/tit_ic03.gif differ diff --git a/manager/img/tit_ic04.gif b/manager/img/tit_ic04.gif new file mode 100644 index 0000000..6cf8f4f Binary files /dev/null and b/manager/img/tit_ic04.gif differ diff --git a/manager/img/tit_ic05.gif b/manager/img/tit_ic05.gif new file mode 100644 index 0000000..45923ee Binary files /dev/null and b/manager/img/tit_ic05.gif differ diff --git a/manager/img/tit_ic06.gif b/manager/img/tit_ic06.gif new file mode 100644 index 0000000..309f9a4 Binary files /dev/null and b/manager/img/tit_ic06.gif differ diff --git a/manager/img/tit_ic07.gif b/manager/img/tit_ic07.gif new file mode 100644 index 0000000..f37a246 Binary files /dev/null and b/manager/img/tit_ic07.gif differ diff --git a/manager/img/tit_ic08.gif b/manager/img/tit_ic08.gif new file mode 100644 index 0000000..7675088 Binary files /dev/null and b/manager/img/tit_ic08.gif differ diff --git a/manager/img/tit_ic09.gif b/manager/img/tit_ic09.gif new file mode 100644 index 0000000..1f4f478 Binary files /dev/null and b/manager/img/tit_ic09.gif differ diff --git a/manager/img/top_color.gif b/manager/img/top_color.gif new file mode 100644 index 0000000..a29eb3e Binary files /dev/null and b/manager/img/top_color.gif differ diff --git a/manager/img/topmenu_line.gif b/manager/img/topmenu_line.gif new file mode 100644 index 0000000..31d0827 Binary files /dev/null and b/manager/img/topmenu_line.gif differ diff --git a/manager/img/type/asf.gif b/manager/img/type/asf.gif new file mode 100644 index 0000000..08480bc Binary files /dev/null and b/manager/img/type/asf.gif differ diff --git a/manager/img/type/bat.gif b/manager/img/type/bat.gif new file mode 100644 index 0000000..f598401 Binary files /dev/null and b/manager/img/type/bat.gif differ diff --git a/manager/img/type/bmp.gif b/manager/img/type/bmp.gif new file mode 100644 index 0000000..16b9f71 Binary files /dev/null and b/manager/img/type/bmp.gif differ diff --git a/manager/img/type/com.gif b/manager/img/type/com.gif new file mode 100644 index 0000000..92d6f7d Binary files /dev/null and b/manager/img/type/com.gif differ diff --git a/manager/img/type/default.gif b/manager/img/type/default.gif new file mode 100644 index 0000000..81fdc61 Binary files /dev/null and b/manager/img/type/default.gif differ diff --git a/manager/img/type/device.gif b/manager/img/type/device.gif new file mode 100644 index 0000000..b24c6b9 Binary files /dev/null and b/manager/img/type/device.gif differ diff --git a/manager/img/type/doc.gif b/manager/img/type/doc.gif new file mode 100644 index 0000000..c9e66a0 Binary files /dev/null and b/manager/img/type/doc.gif differ diff --git a/manager/img/type/eml.gif b/manager/img/type/eml.gif new file mode 100644 index 0000000..2f7aa91 Binary files /dev/null and b/manager/img/type/eml.gif differ diff --git a/manager/img/type/excel.gif b/manager/img/type/excel.gif new file mode 100644 index 0000000..54624c1 Binary files /dev/null and b/manager/img/type/excel.gif differ diff --git a/manager/img/type/exe.gif b/manager/img/type/exe.gif new file mode 100644 index 0000000..f7cdcc9 Binary files /dev/null and b/manager/img/type/exe.gif differ diff --git a/manager/img/type/gif.gif b/manager/img/type/gif.gif new file mode 100644 index 0000000..b4c5a1f Binary files /dev/null and b/manager/img/type/gif.gif differ diff --git a/manager/img/type/html.gif b/manager/img/type/html.gif new file mode 100644 index 0000000..9fc37cb Binary files /dev/null and b/manager/img/type/html.gif differ diff --git a/manager/img/type/hwp.gif b/manager/img/type/hwp.gif new file mode 100644 index 0000000..7b1a135 Binary files /dev/null and b/manager/img/type/hwp.gif differ diff --git a/manager/img/type/image.gif b/manager/img/type/image.gif new file mode 100644 index 0000000..7dcf0ec Binary files /dev/null and b/manager/img/type/image.gif differ diff --git a/manager/img/type/jpg.gif b/manager/img/type/jpg.gif new file mode 100644 index 0000000..a64e456 Binary files /dev/null and b/manager/img/type/jpg.gif differ diff --git a/manager/img/type/mfiles.gif b/manager/img/type/mfiles.gif new file mode 100644 index 0000000..bd363ae Binary files /dev/null and b/manager/img/type/mfiles.gif differ diff --git a/manager/img/type/movie.gif b/manager/img/type/movie.gif new file mode 100644 index 0000000..db52d7d Binary files /dev/null and b/manager/img/type/movie.gif differ diff --git a/manager/img/type/mp3.gif b/manager/img/type/mp3.gif new file mode 100644 index 0000000..d527805 Binary files /dev/null and b/manager/img/type/mp3.gif differ diff --git a/manager/img/type/mpg.gif b/manager/img/type/mpg.gif new file mode 100644 index 0000000..7fe52ef Binary files /dev/null and b/manager/img/type/mpg.gif differ diff --git a/manager/img/type/pcx.gif b/manager/img/type/pcx.gif new file mode 100644 index 0000000..c239d9a Binary files /dev/null and b/manager/img/type/pcx.gif differ diff --git a/manager/img/type/pdf.gif b/manager/img/type/pdf.gif new file mode 100644 index 0000000..53c0e37 Binary files /dev/null and b/manager/img/type/pdf.gif differ diff --git a/manager/img/type/png.gif b/manager/img/type/png.gif new file mode 100644 index 0000000..46cfa3e Binary files /dev/null and b/manager/img/type/png.gif differ diff --git a/manager/img/type/ppt.gif b/manager/img/type/ppt.gif new file mode 100644 index 0000000..228715e Binary files /dev/null and b/manager/img/type/ppt.gif differ diff --git a/manager/img/type/ra.gif b/manager/img/type/ra.gif new file mode 100644 index 0000000..2d4c661 Binary files /dev/null and b/manager/img/type/ra.gif differ diff --git a/manager/img/type/text.gif b/manager/img/type/text.gif new file mode 100644 index 0000000..fb33945 Binary files /dev/null and b/manager/img/type/text.gif differ diff --git a/manager/img/type/txt.gif b/manager/img/type/txt.gif new file mode 100644 index 0000000..fb33945 Binary files /dev/null and b/manager/img/type/txt.gif differ diff --git a/manager/img/type/unknown.gif b/manager/img/type/unknown.gif new file mode 100644 index 0000000..daeaaf5 Binary files /dev/null and b/manager/img/type/unknown.gif differ diff --git a/manager/img/type/url.gif b/manager/img/type/url.gif new file mode 100644 index 0000000..9900829 Binary files /dev/null and b/manager/img/type/url.gif differ diff --git a/manager/img/type/wav.gif b/manager/img/type/wav.gif new file mode 100644 index 0000000..72362d1 Binary files /dev/null and b/manager/img/type/wav.gif differ diff --git a/manager/img/type/xls.gif b/manager/img/type/xls.gif new file mode 100644 index 0000000..54624c1 Binary files /dev/null and b/manager/img/type/xls.gif differ diff --git a/manager/img/type/zip.gif b/manager/img/type/zip.gif new file mode 100644 index 0000000..46dd943 Binary files /dev/null and b/manager/img/type/zip.gif differ diff --git a/manager/img/write_form_bg.gif b/manager/img/write_form_bg.gif new file mode 100644 index 0000000..04b0d6b Binary files /dev/null and b/manager/img/write_form_bg.gif differ diff --git a/manager/img/write_ic.gif b/manager/img/write_ic.gif new file mode 100644 index 0000000..57ece9e Binary files /dev/null and b/manager/img/write_ic.gif differ diff --git a/manager/index.asp b/manager/index.asp new file mode 100644 index 0000000..1aa382e --- /dev/null +++ b/manager/index.asp @@ -0,0 +1,202 @@ + +<% + +' 사이트 기본정보 ----------------------------------------------------------------------- +R_Fields = "sc_idx, sc_url, sc_hdate1, sc_hdate2, sc_hdd, sc_copyright, sc_logouttime, sc_date_chk, sc_hdd_chk" +R_tablename_str = "site_config" +R_WHERE_str = " WHERE sc_idx=1" +Call SelectQuery (R_Fields, R_tablename_str, R_WHERE_str) +'//---------------------------------------------------------------------------------------- + + +'// 폴더용량 ----------------------------------------------------------------------- +'Set state = Server.CreateObject("Scripting.Dictionary") +' +''//홈디렉토리 용량을 구해온다.. +'dir = server.MapPath("/") & "\" +'state("is_filesize") = get_dirsize(dir) +' +''//하드 사용용량 +'state("is_sc_hdd") = sc_hdd*1024*1024*1024 +' +''//사용퍼센트 +'per = formatnumber(state("is_filesize") / state("is_sc_hdd") * 100) +' +' +''// DB 사용량 +'Set tmp = dbcon.execute("select table_name = convert(varchar(30), min(o.name)), table_size = ltrim(str(sum(reserved) * 8192 / 1024.,15,0) ) from sysindexes i inner join sysobjects o on (o.id = i.id) where i.indid in (0, 1, 55) and o.xtype = 'U' group by i.id order by table_name ") +' +'Do Until tmp.eof +' state("size_db") = state("size_db") + tmp("table_size") +' tmp.movenext +'loop +' +'Set tmp = nothing +' +''//DB 제한용량 (100MB) +'state("db_hdd") = 100*1024*1024 +' +'per2 = formatnumber( ( state("size_db") / 1024 ) / state("db_hdd") * 100) + +'//---------------------------------------------------------------------------------------- + + + +'// 방문자·게시판 정보 ----------------------------------------------------------------------- +'부하때문에 제거 20231115 최경수 +'//---------------------------------------------------------------------------------------- + + + +'//---------------------------------------------------------------------------------------- + + + +'// 사이트 기본정보 ----------------------------------------------------------------------- +R_Fields = "mm_idx, mm_content, mm_wdate, mm_id" +R_tablename_str = "manager_memo" +R_WHERE_str = " WHERE mm_id='" & session("ss_m_id") & "'" +Call SelectQuery (R_Fields, R_tablename_str, R_WHERE_str) +'//---------------------------------------------------------------------------------------- + + +%> + +
+ + + +
+
+ +
+ <%=session("ss_m_name")%>님 IP_<%=request.ServerVariables("REMOTE_ADDR")%> +
+ 홈페이지 관리자모드입니다. +
+
+ +
+

관리 정보

+
+
    +
  • 버전: 1.00.09.0722
  • +
  • 도메인:<%=sc_url%>
  • + + <%If sc_date_chk <> "Y" Then %> +
  • 기간: <%=replace(sc_hdate1, "-", ".")%>~<%=replace(sc_hdate2, "-", ".")%>
  • +
  • 잔여일: <%=get_ssday(date(), sc_hdate2)%>일기간연장
  • + <%End if%> +
+
+
+ +
+ + + +
+
+ +
+
    +
  • 최근게시물 (최근 10일)
  • +
  • +
+
+
+
    + <% + If SESSION("ss_g_num") = "1" then + sql = "select a_num, a_bbsname, b_num, b_subject, b_regdate, b_name from board_total where b_regdate >= '"&(Date()-10)&"' order by b_regdate desc" + Else '총관리자가 아닐경우 내가 관리권한있는 게시판만 가져오기 + sql = "select a_num, a_bbsname, b_num, b_subject, b_regdate, b_name from board_total where b_regdate >= '"&(Date()-10)&"' and ( a_num in (select a_num from board_config where a_ad_cms_id like '%"&SESSION("ss_m_id")&"%') or a_num in (select a_num from board_access where g_num = '" & SESSION("ss_g_num") & "' and bl_ad_cms = 'Y') ) order by b_regdate desc" + End if + Set row = dbcon.execute( sql ) + + If Not( row.bof Or row.eof ) Then + + Do Until row.eof + a_num = row("a_num") + a_bbsname = row("a_bbsname") + b_num = row("b_num") + + If a_num = "99755066" Or a_num = "79629137" then + b_subject = row("b_name") + Else + b_subject = row("b_subject") + End if + b_subject_str = remove_tags( b_subject ) + b_subject_str = StringToHTML( b_subject_str, 50, false ) + b_regdate = Left(row("b_regdate"), 10 ) + b_regdate2 = Right(b_regdate, 5) + %> +
  • <%=b_regdate2%>
  • + <% + row.movenext + Loop + + End if + Set row = nothing + %> + +
+
+
+ + + +
+ + + +
+
+ <% + today = Weekday(Date()) + Select Case today + Case 1 : day_value = "(일)" + Case 2 : day_value = "(월)" + Case 3 : day_value = "(화)" + Case 4 : day_value = "(수)" + Case 5 : day_value = "(목)" + Case 6 : day_value = "(금)" + Case 7 : day_value = "(토)" + End select + + %> + +
<%=Date() & " " & day_value%>
+
+
+
+ + + +
+
+

간편메모장

+
+
    +
  • +
  • 저장 <%=mm_wdate%>
  • +
  •  
  • +
+
+
+
+ +
+ +
+
    +
  • 나눔아이앤씨 새창으로 열림
  • +
  • 나눔통 새창으로 열림
  • +
+
+
+
+ + + + \ No newline at end of file diff --git a/manager/index_260128.asp b/manager/index_260128.asp new file mode 100644 index 0000000..be9ef16 --- /dev/null +++ b/manager/index_260128.asp @@ -0,0 +1,301 @@ + +<% + +' 사이트 기본정보 ----------------------------------------------------------------------- +R_Fields = "sc_idx, sc_url, sc_hdate1, sc_hdate2, sc_hdd, sc_copyright, sc_logouttime, sc_date_chk, sc_hdd_chk" +R_tablename_str = "site_config" +R_WHERE_str = " WHERE sc_idx=1" +Call SelectQuery (R_Fields, R_tablename_str, R_WHERE_str) +'//---------------------------------------------------------------------------------------- + + +'// 폴더용량 ----------------------------------------------------------------------- +'Set state = Server.CreateObject("Scripting.Dictionary") +' +''//홈디렉토리 용량을 구해온다.. +'dir = server.MapPath("/") & "\" +'state("is_filesize") = get_dirsize(dir) +' +''//하드 사용용량 +'state("is_sc_hdd") = sc_hdd*1024*1024*1024 +' +''//사용퍼센트 +'per = formatnumber(state("is_filesize") / state("is_sc_hdd") * 100) +' +' +''// DB 사용량 +'Set tmp = dbcon.execute("select table_name = convert(varchar(30), min(o.name)), table_size = ltrim(str(sum(reserved) * 8192 / 1024.,15,0) ) from sysindexes i inner join sysobjects o on (o.id = i.id) where i.indid in (0, 1, 55) and o.xtype = 'U' group by i.id order by table_name ") +' +'Do Until tmp.eof +' state("size_db") = state("size_db") + tmp("table_size") +' tmp.movenext +'loop +' +'Set tmp = nothing +' +''//DB 제한용량 (100MB) +'state("db_hdd") = 100*1024*1024 +' +'per2 = formatnumber( ( state("size_db") / 1024 ) / state("db_hdd") * 100) + +'//---------------------------------------------------------------------------------------- + + + +'// 방문자·게시판 정보 ----------------------------------------------------------------------- +'부하때문에 제거 20231115 최경수 +'//---------------------------------------------------------------------------------------- + + + + +'// 게시판 정보 ----------------------------------------------------------------------- +sql = "select count(*) as bCount from board_config " +Set rs2 = dbcon.execute( sql ) +bCount = rs2("bCount") +'//---------------------------------------------------------------------------------------- + +'// 전체게시글 갯수 ----------------------------------------------------------------------- +'ViewCreate() +sql ="select count(*) as bCount2 from board_total " +Set rs2 = dbcon.execute( sql ) +bCount2 = rs2("bCount2") +'//---------------------------------------------------------------------------------------- + + + +'// 오늘 게시글 갯수 ----------------------------------------------------------------------- +is_b_regdate = Date() +sql ="select count(*) as bCount3 from board_total where b_regdate like '" & is_b_regdate & "%' " +Set rs2 = dbcon.execute( sql ) +bCount3 = rs2("bCount3") +'//---------------------------------------------------------------------------------------- + + + + +'// 月 사이트 방문현황 ----------------------------------------------------------------------- +YY = inputValue( request("YY") ) +MM = inputValue( request("MM") ) +DD = inputValue( request("DD") ) + +If YY = "" and MM = "" and DD = "" and TT = "" then + + YY = Year(now) + MM = Right( "0" & Month(now), 2 ) + '//$DD = date("d"); + +End if + +'//where 조건 +SetWhere() + +'//카운터 수의 합을 구한다 +qry ="select count(*) as TCount from visit_counter " & qryValue +Set col = dbcon.execute( qry ) + +sumCount = col("TCount") + +if year_val <> "" and month_val <> "" Then + dataLength = Day( DateSerial(year_val, month_val+1, 1-1) ) +else + dataLength = 31 +End if + +Dim arrValue(31), arrData(31, 3) + +For i=1 to dataLength + arrValue(i) = 0 +next + +'//카운터 수의 합을 구한다 +qry = "select vDD,count(*) as VCount from visit_counter " & qryValue & " group by vDD order by vDD" +'//echo $qry; +Set col = dbcon.execute( qry ) +Do Until col.eof + arrValue( col("vDD") ) = col("VCount") + col.movenext +loop +Set col = nothing + +maxCount = 0 +minCount = 100000 + +For j = 1 To dataLength + arrData(j,0) = arrValue(j) '카운터 + + If sumCount > 1 then + arrData(j, 1) = (arrValue(j) / sumCount) * 100 + if arrData(j,1) > 0 then arrData(j,1) = formatnumber( arrData(j,1), 0) + arrData(j,2) = (arrValue(j) / sumCount) * 550 + else + arrData(j, 1) = 0 + arrData(j, 2) = 0 + End If + + If minCount > arrValue(j) then minCount = arrValue(j) + If maxCount < arrValue(j) Then maxCount = arrValue(j) + + if arrData(j,0) = 0 then + arrData(j,0) = "" + End if + + if arrData(j,2) = 0 then + arrData(j,2) = "" + End if + + +next + +'//---------------------------------------------------------------------------------------- + + + +'// 사이트 기본정보 ----------------------------------------------------------------------- +R_Fields = "mm_idx, mm_content, mm_wdate, mm_id" +R_tablename_str = "manager_memo" +R_WHERE_str = " WHERE mm_id='" & session("ss_m_id") & "'" +Call SelectQuery (R_Fields, R_tablename_str, R_WHERE_str) +'//---------------------------------------------------------------------------------------- + + +%> + +
+ + + +
+
+ +
+ <%=session("ss_m_name")%>님 IP_<%=request.ServerVariables("REMOTE_ADDR")%> +
+ 홈페이지 관리자모드입니다. +
+
+ +
+

관리 정보

+
+
    +
  • 버전: 1.00.09.0722
  • +
  • 도메인:<%=sc_url%>
  • + + <%If sc_date_chk <> "Y" Then %> +
  • 기간: <%=replace(sc_hdate1, "-", ".")%>~<%=replace(sc_hdate2, "-", ".")%>
  • +
  • 잔여일: <%=get_ssday(date(), sc_hdate2)%>일기간연장
  • + <%End if%> +
+
+
+ +
+ + + +
+
+ +
+
    +
  • 최근게시물 (최근 10일)
  • +
  • +
+
+
+
    + <% + If SESSION("ss_g_num") = "1" then + sql = "select a_num, a_bbsname, b_num, b_subject, b_regdate, b_name from board_total where b_regdate >= '"&(Date()-10)&"' order by b_regdate desc" + Else '총관리자가 아닐경우 내가 관리권한있는 게시판만 가져오기 + sql = "select a_num, a_bbsname, b_num, b_subject, b_regdate, b_name from board_total where b_regdate >= '"&(Date()-10)&"' and ( a_num in (select a_num from board_config where a_ad_cms_id like '%"&SESSION("ss_m_id")&"%') or a_num in (select a_num from board_access where g_num = '" & SESSION("ss_g_num") & "' and bl_ad_cms = 'Y') ) order by b_regdate desc" + End if + Set row = dbcon.execute( sql ) + + If Not( row.bof Or row.eof ) Then + + Do Until row.eof + a_num = row("a_num") + a_bbsname = row("a_bbsname") + b_num = row("b_num") + + If a_num = "99755066" Or a_num = "79629137" then + b_subject = row("b_name") + Else + b_subject = row("b_subject") + End if + b_subject_str = remove_tags( b_subject ) + b_subject_str = StringToHTML( b_subject_str, 50, false ) + b_regdate = Left(row("b_regdate"), 10 ) + b_regdate2 = Right(b_regdate, 5) + %> +
  • <%=b_regdate2%>
  • + <% + row.movenext + Loop + + End if + Set row = nothing + %> + +
+
+
+ + + +
+ + + +
+
+ <% + today = Weekday(Date()) + Select Case today + Case 1 : day_value = "(일)" + Case 2 : day_value = "(월)" + Case 3 : day_value = "(화)" + Case 4 : day_value = "(수)" + Case 5 : day_value = "(목)" + Case 6 : day_value = "(금)" + Case 7 : day_value = "(토)" + End select + + %> + +
<%=Date() & " " & day_value%>
+
+
+
+ + + +
+
+

간편메모장

+
+
    +
  • +
  • 저장 <%=mm_wdate%>
  • +
  •  
  • +
+
+
+
+ +
+ +
+
    +
  • 나눔아이앤씨 새창으로 열림
  • +
  • 나눔통 새창으로 열림
  • +
+
+
+
+ + + + \ No newline at end of file diff --git a/manager/index_org.asp b/manager/index_org.asp new file mode 100644 index 0000000..fc336ff --- /dev/null +++ b/manager/index_org.asp @@ -0,0 +1,405 @@ + +<% + +' 사이트 기본정보 ----------------------------------------------------------------------- +R_Fields = "sc_idx, sc_url, sc_hdate1, sc_hdate2, sc_hdd, sc_copyright, sc_logouttime, sc_date_chk, sc_hdd_chk" +R_tablename_str = "site_config" +R_WHERE_str = " WHERE sc_idx=1" +Call SelectQuery (R_Fields, R_tablename_str, R_WHERE_str) +'//---------------------------------------------------------------------------------------- + + +'// 폴더용량 ----------------------------------------------------------------------- +'Set state = Server.CreateObject("Scripting.Dictionary") +' +''//홈디렉토리 용량을 구해온다.. +'dir = server.MapPath("/") & "\" +'state("is_filesize") = get_dirsize(dir) +' +''//하드 사용용량 +'state("is_sc_hdd") = sc_hdd*1024*1024*1024 +' +''//사용퍼센트 +'per = formatnumber(state("is_filesize") / state("is_sc_hdd") * 100) +' +' +''// DB 사용량 +'Set tmp = dbcon.execute("select table_name = convert(varchar(30), min(o.name)), table_size = ltrim(str(sum(reserved) * 8192 / 1024.,15,0) ) from sysindexes i inner join sysobjects o on (o.id = i.id) where i.indid in (0, 1, 55) and o.xtype = 'U' group by i.id order by table_name ") +' +'Do Until tmp.eof +' state("size_db") = state("size_db") + tmp("table_size") +' tmp.movenext +'loop +' +'Set tmp = nothing +' +''//DB 제한용량 (100MB) +'state("db_hdd") = 100*1024*1024 +' +'per2 = formatnumber( ( state("size_db") / 1024 ) / state("db_hdd") * 100) + +'//---------------------------------------------------------------------------------------- + + + +'// 방문자·게시판 정보 ----------------------------------------------------------------------- + +sql = "select top 1 vYY,vMM,vDD,vHH,vMT from visit_counter order by vNum" +Set rs = dbcon.execute( sql ) +countStart = rs("vYY") & "-" & rs("vMM") & "-" & rs("vDD") & " " & rs("vHH") & ":" & rs("vMT") + + +sql = "select count(*) as vCount from visit_counter" +Set rs = dbcon.execute( sql ) +countTotal = rs("vCount") + + +'//countYesterday(어제 방문자수) +Yesterday = DateSerial(Year(now), Month(now), Day(now)-1) + +sql ="select count(*) as YCount from visit_counter where vYY=" & Year(Yesterday) & " and vMM = " & month(Yesterday) & " and vDD = " & day(Yesterday) +Set rs = dbcon.execute( sql ) +countYesterday = rs("YCount") + + + +'countToday(오늘 방문자수) +sql ="select count(*) as TCount from visit_counter where vYY = " & Year(now) & " and vMM = " & Month(now) & " and vDD = " & Day( now ) +Set rs = dbcon.execute( sql ) +countToday = rs("TCount") + + + +'countTop(최고 방문자수) +sql = "select top 1 vYY,vMM,vDD,count(*) as vC from visit_counter group by vYY,vMM,vDD order by vC desc" +Set rs = dbcon.execute( sql ) +countTop = rs("vC") + + + +'//countUnder(최소 방문자수) +sql ="select vYY,vMM,vDD,count(*) as vC from visit_counter group by vYY,vMM,vDD order by vC asc" +Set rs = dbcon.execute( sql ) +countUnder = rs("vC") + + +'//countAVG(평균 방문자수) +sql = "select vYY,vMM,vDD,count(*) as vC from visit_counter group by vYY,vMM,vDD" +Set col = dbcon.execute( sql ) + +countAVG = 0 +i = 1 +Do Until col.eof + countAVG = countAVG + col("vC") + i = i + 1 + col.movenext +loop + +countAVG = countAVG / i + +Set rs = Nothing +Set col = nothing +'//---------------------------------------------------------------------------------------- + + + + +'// 게시판 정보 ----------------------------------------------------------------------- +sql = "select count(*) as bCount from board_config " +Set rs2 = dbcon.execute( sql ) +bCount = rs2("bCount") +'//---------------------------------------------------------------------------------------- + +'// 전체게시글 갯수 ----------------------------------------------------------------------- +'ViewCreate() +sql ="select count(*) as bCount2 from board_total " +Set rs2 = dbcon.execute( sql ) +bCount2 = rs2("bCount2") +'//---------------------------------------------------------------------------------------- + + + +'// 오늘 게시글 갯수 ----------------------------------------------------------------------- +is_b_regdate = Date() +sql ="select count(*) as bCount3 from board_total where b_regdate like '" & is_b_regdate & "%' " +Set rs2 = dbcon.execute( sql ) +bCount3 = rs2("bCount3") +'//---------------------------------------------------------------------------------------- + + + + +'// 月 사이트 방문현황 ----------------------------------------------------------------------- +YY = inputValue( request("YY") ) +MM = inputValue( request("MM") ) +DD = inputValue( request("DD") ) + +If YY = "" and MM = "" and DD = "" and TT = "" then + + YY = Year(now) + MM = Right( "0" & Month(now), 2 ) + '//$DD = date("d"); + +End if + +'//where 조건 +SetWhere() + +'//카운터 수의 합을 구한다 +qry ="select count(*) as TCount from visit_counter " & qryValue +Set col = dbcon.execute( qry ) + +sumCount = col("TCount") + +if year_val <> "" and month_val <> "" Then + dataLength = Day( DateSerial(year_val, month_val+1, 1-1) ) +else + dataLength = 31 +End if + +Dim arrValue(31), arrData(31, 3) + +For i=1 to dataLength + arrValue(i) = 0 +next + +'//카운터 수의 합을 구한다 +qry = "select vDD,count(*) as VCount from visit_counter " & qryValue & " group by vDD order by vDD" +'//echo $qry; +Set col = dbcon.execute( qry ) +Do Until col.eof + arrValue( col("vDD") ) = col("VCount") + col.movenext +loop +Set col = nothing + +maxCount = 0 +minCount = 100000 + +For j = 1 To dataLength + arrData(j,0) = arrValue(j) '카운터 + + If sumCount > 1 then + arrData(j, 1) = (arrValue(j) / sumCount) * 100 + if arrData(j,1) > 0 then arrData(j,1) = formatnumber( arrData(j,1), 0) + arrData(j,2) = (arrValue(j) / sumCount) * 550 + else + arrData(j, 1) = 0 + arrData(j, 2) = 0 + End If + + If minCount > arrValue(j) then minCount = arrValue(j) + If maxCount < arrValue(j) Then maxCount = arrValue(j) + + if arrData(j,0) = 0 then + arrData(j,0) = "" + End if + + if arrData(j,2) = 0 then + arrData(j,2) = "" + End if + + +next + +'//---------------------------------------------------------------------------------------- + + + +'// 사이트 기본정보 ----------------------------------------------------------------------- +R_Fields = "mm_idx, mm_content, mm_wdate, mm_id" +R_tablename_str = "manager_memo" +R_WHERE_str = " WHERE mm_id='" & session("ss_m_id") & "'" +Call SelectQuery (R_Fields, R_tablename_str, R_WHERE_str) +'//---------------------------------------------------------------------------------------- + + +%> + +
+ + + +
+
+ +
+ <%=session("ss_m_name")%>님 IP_<%=request.ServerVariables("REMOTE_ADDR")%> +
+ 홈페이지 관리자모드입니다. +
+
+ +
+

관리 정보

+
+
    +
  • 버전: 1.00.09.0722
  • +
  • 도메인:<%=sc_url%>
  • + + <%If sc_date_chk <> "Y" Then %> +
  • 기간: <%=replace(sc_hdate1, "-", ".")%>~<%=replace(sc_hdate2, "-", ".")%>
  • +
  • 잔여일: <%=get_ssday(date(), sc_hdate2)%>일기간연장
  • + <%End if%> +
+
+
+ +
+ + + +
+
+ +
+
    +
  • 최근게시물 (최근 10일)
  • +
  • +
+
+
+
    + <% + If SESSION("ss_g_num") = "1" then + sql = "select a_num, a_bbsname, b_num, b_subject, b_regdate, b_name from board_total where b_regdate >= '"&(Date()-10)&"' order by b_regdate desc" + Else '총관리자가 아닐경우 내가 관리권한있는 게시판만 가져오기 + sql = "select a_num, a_bbsname, b_num, b_subject, b_regdate, b_name from board_total where b_regdate >= '"&(Date()-10)&"' and ( a_num in (select a_num from board_config where a_ad_cms_id like '%"&SESSION("ss_m_id")&"%') or a_num in (select a_num from board_access where g_num = '" & SESSION("ss_g_num") & "' and bl_ad_cms = 'Y') ) order by b_regdate desc" + End if + Set row = dbcon.execute( sql ) + + If Not( row.bof Or row.eof ) Then + + Do Until row.eof + a_num = row("a_num") + a_bbsname = row("a_bbsname") + b_num = row("b_num") + + If a_num = "99755066" Or a_num = "79629137" then + b_subject = row("b_name") + Else + b_subject = row("b_subject") + End if + b_subject_str = remove_tags( b_subject ) + b_subject_str = StringToHTML( b_subject_str, 50, false ) + b_regdate = Left(row("b_regdate"), 10 ) + b_regdate2 = Right(b_regdate, 5) + %> +
  • <%=b_regdate2%>
  • + <% + row.movenext + Loop + + End if + Set row = nothing + %> + +
+
+
+ +
+ +
+
    +
  • 방문자·게시판 정보
  • +
  • +
+
+
+ + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
방문자·게시판 양식
오늘의 방문자<%=formatnumber(countToday, 0)%>총 방문자<%=formatnumber(countTotal, 0)%>
어제의 방문자<%=formatnumber(countYesterday,0)%>명현재 게시판 수<%=bCount%>개
이달의 방문자<%=formatnumber(sumCount, 0)%>명전체 게시글<%=bCount2%>개
최고방문자<%=formatnumber(countTop, 0)%>명오늘 등록된 게시글<%=bCount3%>개
+
+ +
+
+ + +
+ + + +
+
+ <% + today = Weekday(Date()) + Select Case today + Case 1 : day_value = "(일)" + Case 2 : day_value = "(월)" + Case 3 : day_value = "(화)" + Case 4 : day_value = "(수)" + Case 5 : day_value = "(목)" + Case 6 : day_value = "(금)" + Case 7 : day_value = "(토)" + End select + + %> + +
<%=Date() & " " & day_value%>
+
+
+
+ + + +
+
+

간편메모장

+
+
    +
  • +
  • 저장 <%=mm_wdate%>
  • +
  •  
  • +
+
+
+
+ +
+ +
+
    +
  • 나눔아이앤씨 새창으로 열림
  • +
  • 나눔통 새창으로 열림
  • +
+
+
+
+ + + + \ No newline at end of file diff --git a/manager/login.asp b/manager/login.asp new file mode 100644 index 0000000..1d2468d --- /dev/null +++ b/manager/login.asp @@ -0,0 +1,81 @@ + + +<% +location_value = "/manager/index.asp" +%> + + + + + + <%=site_name%> + + + + + + + + + +
+ +
+
+
+ + + +
+ + + +
+ + + + +
+ + + diff --git a/manager/login_ok.asp b/manager/login_ok.asp new file mode 100644 index 0000000..f985aab --- /dev/null +++ b/manager/login_ok.asp @@ -0,0 +1,25 @@ + + +<% + +m_id = InputValue( Request.Form("m_id") ) +m_pwd = InputValue( Request.Form("m_pwd") ) + +'ViewCreateMember() +'ViewCreateMenuChk() + +if memgr_idpwdchk(m_id, m_pwd) then + + Call memgr_logincookie( m_id, m_pwd) '인증쿠키발생 + Call memgr_ad_cmscookie() '관리자페이지쿠키발생 + + +else + Back_back "정보가 정확하지 않거나 접속권한이 없습니다." + +End if + +ok_url = "index.asp" +Call loding ("0", ok_url) +%> + diff --git a/manager/logout.asp b/manager/logout.asp new file mode 100644 index 0000000..351f2de --- /dev/null +++ b/manager/logout.asp @@ -0,0 +1,10 @@ + + +<% +memgr_logout() + +goUrl("/manager/login.asp") + +dbcon.close +Set dbcon = nothing +%> \ No newline at end of file diff --git a/manager/memo_ok.asp b/manager/memo_ok.asp new file mode 100644 index 0000000..d6a26e3 --- /dev/null +++ b/manager/memo_ok.asp @@ -0,0 +1,49 @@ + + +<% +Dim R_Fields, R_Fields_u, sc_copyright, ok_url +Dim mm_idx, mm_content, mm_wdate, mm_id + +R_Fields = "mm_idx, mm_content, mm_wdate, mm_id" + +Call RequestAll(R_Fields, "request.form") + +sc_copyright = InputValue2( Request.Form("mm_content") ) + + +If mm_idx = "" Then '저장 + +' //초기화 +' //$sql = "truncate table manager_memo"; +' //$mysql->ParseExec($sql); + + R_Fields_i = "mm_content, mm_wdate,mm_id" + + mm_wdate =getDateFm(Now(), 3) + + mm_id = SESSION("ss_m_id") + + Call InsertQuery(R_Fields_i, "manager_memo") + + ok_url = "index.asp" + + +Else '//수정 + + + R_Fields_u = "mm_content, mm_wdate" + + mm_wdate = getDateFm(Now(), 3) + + Call UpdateQuery (R_Fields_u, "manager_memo", "where mm_idx=" & mm_idx) + + ok_url = "index.asp" + +End if + +Call loding("0",ok_url) + +dbcon.close +Set dbcon = nothing + +%> \ No newline at end of file diff --git a/nninc_start.asp b/nninc_start.asp new file mode 100644 index 0000000..b40f57b --- /dev/null +++ b/nninc_start.asp @@ -0,0 +1,4 @@ +<% +Response.redirect "/index.asp" +Response.end +%> \ No newline at end of file diff --git a/result_cpr.asp b/result_cpr.asp new file mode 100644 index 0000000..46cd726 --- /dev/null +++ b/result_cpr.asp @@ -0,0 +1,112 @@ + + +<% +dim cprCon +set cprCon = Server.CreateObject("ADODB.Connection") +cprCon.Open "Driver={MySQL ODBC 8.0 Unicode Driver}; Server=175.126.77.226; Database=home_cprknuh_201512; Uid=cpr;Pwd=cprknuh;" +if cprCon.errors.count = 0 then + response.write "Connected Successfully!" +end if + + +sql = "SELECT s_num, s_yy, s_mm, s_type, s_phone FROM sms_send WHERE (s_result='' or s_result='-2') order by s_num" +Set sms_rs = cprCon.Execute(sql) +If sms_rs.bof Or sms_rs.eof Then + sms_data1 = Null +Else + sms_data1 = sms_rs.getrows +End If +Set sms_rs = Nothing +'-------------------개인주소록 리스트 끝----------------------- + + +'이틀전꺼 결과값 없는거는 실패처리 +sql = "UPDATE sms_send SET s_result='2' WHERE s_senddate < date_add(curdate(), interval -2 day) and s_result='' " +cprCon.execute sql + +If Not(IsNull(sms_data1)) Then + For i = 0 To UBound(sms_data1, 2) + + s_num = Replace(sms_data1(0,i)," ","") + s_yy = Replace(sms_data1(1,i)," ","") + s_mm = Replace(sms_data1(2,i)," ","") + s_type = Replace(sms_data1(3,i)," ","") + s_phone = Replace(sms_data1(4,i)," ","") + + s_type = UCase(s_type) + + '월별 테이블에서 조회.. + If s_type = "VMS" Then + + '월별 + y_month = Mid(s_yy, 3, 4)&Right( "0" & s_mm, 2) + If y_month = "" Then ' 없으면 초기화 + y_month = Mid(getDateFm(Now(), 6), 3, 4) + End If + '월별 테이블에서 조회.. + sql = " SELECT JOB_ID FROM SDK_VMS_REPORT_"&y_month&" WHERE USER_ID='cprknuh' and RESERVED2='"&s_num&"' AND dest_info like'%"& s_phone &"%' " + Set Rs = Dbcon.Execute (sql) + If rs.eof Then + Else + sql = " SELECT TCS_RESULT FROM SDK_VMS_REPORT_DETAIL_"&y_month&" WHERE USER_ID='cprknuh' and JOB_ID='"&Rs("JOB_ID")&"' AND RESULT not in(0,1) " + Set Rs_R = Dbcon.Execute (sql) + If Rs_R.eof Then + Else + result = Rs_R("TCS_RESULT") + + '결과값 업데이트 + sql = " UPDATE sms_send SET s_result='"&result&"' WHERE s_num='"&s_num&"' " + cprCon.execute sql + End If + Rs_R.close : Set Rs_R = Nothing + End If + rs.close : Set rs = Nothing + + ElseIf s_type = "LMS" Then + '월별 + y_month = Mid(s_yy, 3, 4)&Right( "0" & s_mm, 2) + If y_month = "" Then ' 없으면 초기화 + y_month = Mid(getDateFm(Now(), 6), 3, 4) + End If + '월별 테이블에서 조회.. + sql = " SELECT JOB_ID FROM SDK_MMS_REPORT_"&y_month&" WHERE USER_ID='cprknuh' and RESERVED1='situation' and RESERVED2='"&s_num&"' AND dest_info like'%"& s_phone &"%' " + Set Rs = Dbcon.Execute (sql) + If rs.eof Then + Else + sql = " SELECT TCS_RESULT FROM SDK_MMS_REPORT_DETAIL_"&y_month&" WHERE USER_ID='cprknuh' and JOB_ID='"&Rs("JOB_ID")&"' " + Set Rs_R = Dbcon.Execute (sql) + If Rs_R.eof Then + Else + result = Rs_R("TCS_RESULT") + + '결과값 업데이트 + sql = " UPDATE sms_send SET s_result='"&result&"' WHERE s_num='"&s_num&"' " + cprCon.execute sql + End If + Rs_R.close : Set Rs_R = Nothing + End If + rs.close : Set rs = Nothing + + Else + '월별 + y_month = s_yy&Right( "0" & s_mm, 2) + If y_month = "" Then ' 없으면 초기화 + y_month = getDateFm(Now(), 6) + End If + + sql = " SELECT TRAN_RSLT FROM em_log_"&y_month&" WHERE TRAN_ID='cprknuh' and TRAN_ETC2='"&s_num&"' " + Set Rs = Dbcon.Execute (sql) + If rs.eof Then + Else + '결과값 업데이트 + sql = " UPDATE sms_send SET s_result='"&Rs("TRAN_RSLT")&"' where s_num='"&s_num&"' " + cprCon.execute sql + End If + rs.close : Set rs = Nothing + End If + Next +End If + +cprCon.close +set cprCon = Nothing +%> \ No newline at end of file diff --git a/result_cpr_mms.asp b/result_cpr_mms.asp new file mode 100644 index 0000000..5eeeb4a --- /dev/null +++ b/result_cpr_mms.asp @@ -0,0 +1,68 @@ + + +<% +dim cprCon +set cprCon = Server.CreateObject("ADODB.Connection") +cprCon.Open "Driver={MySQL ODBC 8.0 Unicode Driver}; Server=175.126.77.226; Database=home_cprknuh_201512; Uid=cpr;Pwd=cprknuh;" +if cprCon.errors.count = 0 then + response.write "Connected Successfully!" +end if + + +sql = "SELECT s_idx, s_yy, s_mm, s_phone FROM cronjobs_sms WHERE (s_result='' or s_result='-2') order by s_idx" +Set sms_rs = cprCon.Execute(sql) +If sms_rs.bof Or sms_rs.eof Then + sms_data1 = Null +Else + sms_data1 = sms_rs.getrows +End If +Set sms_rs = Nothing +'-------------------개인주소록 리스트 끝----------------------- + +'update cronjobs_sms set s_result='' + +'M_ID = "nninc" +M_ID = "cprknuh" + +'이틀전꺼 결과값 없는거는 실패처리 +sql = "UPDATE cronjobs_sms SET s_result='3' WHERE s_senddate < date_add(curdate(), interval -2 day) and s_result='' " +cprCon.execute sql + +If Not(IsNull(sms_data1)) Then + For i = 0 To UBound(sms_data1, 2) + + s_idx = Replace(sms_data1(0,i)," ","") + s_yy = Replace(sms_data1(1,i)," ","") + s_mm = Replace(sms_data1(2,i)," ","") + s_phone = Replace(sms_data1(3,i)," ","") + + y_month = Mid(s_yy, 3, 4)&Right( "0" & s_mm, 2) + If y_month = "" Then ' 없으면 초기화 + y_month = Mid(getDateFm(Now(), 6), 3, 4) + End If + + '월별 테이블에서 조회.. + sql = " SELECT JOB_ID FROM SDK_MMS_REPORT_"&y_month&" WHERE USER_ID='"& M_ID &"' AND RESERVED1<>'situation' AND RESERVED5='"&s_idx&"' AND dest_info like'%"& s_phone &"%' " + Set Rs = Dbcon.Execute (sql) + If rs.eof Then + Else + sql = " SELECT RESULT FROM SDK_MMS_REPORT_DETAIL_"&y_month&" WHERE USER_ID='"& M_ID &"' AND JOB_ID='"&Rs("JOB_ID")&"' " + Set Rs_R = Dbcon.Execute (sql) + If Rs_R.eof Then + Else + result = Rs_R("RESULT") + + '결과값 업데이트 + sql = " UPDATE cronjobs_sms SET s_result='"&result&"' WHERE s_idx='"&s_idx&"' " + cprCon.execute sql + End If + Rs_R.close : Set Rs_R = Nothing + End If + rs.close : Set rs = Nothing + + Next +End If + +cprCon.close +set cprCon = Nothing +%> \ No newline at end of file diff --git a/sms_img/address/bt_excel1.gif b/sms_img/address/bt_excel1.gif new file mode 100644 index 0000000..1448f6e Binary files /dev/null and b/sms_img/address/bt_excel1.gif differ diff --git a/sms_img/address/bt_excel2.gif b/sms_img/address/bt_excel2.gif new file mode 100644 index 0000000..b89c3f3 Binary files /dev/null and b/sms_img/address/bt_excel2.gif differ diff --git a/sms_img/address/excel01.gif b/sms_img/address/excel01.gif new file mode 100644 index 0000000..80009f1 Binary files /dev/null and b/sms_img/address/excel01.gif differ diff --git a/sms_img/address/excel02.gif b/sms_img/address/excel02.gif new file mode 100644 index 0000000..d7d95af Binary files /dev/null and b/sms_img/address/excel02.gif differ diff --git a/sms_img/address/h1.gif b/sms_img/address/h1.gif new file mode 100644 index 0000000..fe93b58 Binary files /dev/null and b/sms_img/address/h1.gif differ diff --git a/sms_img/address/h10.gif b/sms_img/address/h10.gif new file mode 100644 index 0000000..f7ce049 Binary files /dev/null and b/sms_img/address/h10.gif differ diff --git a/sms_img/address/h11.gif b/sms_img/address/h11.gif new file mode 100644 index 0000000..ef139b7 Binary files /dev/null and b/sms_img/address/h11.gif differ diff --git a/sms_img/address/h12.gif b/sms_img/address/h12.gif new file mode 100644 index 0000000..57c3705 Binary files /dev/null and b/sms_img/address/h12.gif differ diff --git a/sms_img/address/h13.gif b/sms_img/address/h13.gif new file mode 100644 index 0000000..c300211 Binary files /dev/null and b/sms_img/address/h13.gif differ diff --git a/sms_img/address/h14.gif b/sms_img/address/h14.gif new file mode 100644 index 0000000..5c8c95d Binary files /dev/null and b/sms_img/address/h14.gif differ diff --git a/sms_img/address/h15.gif b/sms_img/address/h15.gif new file mode 100644 index 0000000..93fe386 Binary files /dev/null and b/sms_img/address/h15.gif differ diff --git a/sms_img/address/h2.gif b/sms_img/address/h2.gif new file mode 100644 index 0000000..688ea8c Binary files /dev/null and b/sms_img/address/h2.gif differ diff --git a/sms_img/address/h3.gif b/sms_img/address/h3.gif new file mode 100644 index 0000000..cb80b35 Binary files /dev/null and b/sms_img/address/h3.gif differ diff --git a/sms_img/address/h4.gif b/sms_img/address/h4.gif new file mode 100644 index 0000000..7b72a64 Binary files /dev/null and b/sms_img/address/h4.gif differ diff --git a/sms_img/address/h5.gif b/sms_img/address/h5.gif new file mode 100644 index 0000000..56baa3f Binary files /dev/null and b/sms_img/address/h5.gif differ diff --git a/sms_img/address/h6.gif b/sms_img/address/h6.gif new file mode 100644 index 0000000..5751133 Binary files /dev/null and b/sms_img/address/h6.gif differ diff --git a/sms_img/address/h7.gif b/sms_img/address/h7.gif new file mode 100644 index 0000000..01550ec Binary files /dev/null and b/sms_img/address/h7.gif differ diff --git a/sms_img/address/h8.gif b/sms_img/address/h8.gif new file mode 100644 index 0000000..1436da8 Binary files /dev/null and b/sms_img/address/h8.gif differ diff --git a/sms_img/address/h9.gif b/sms_img/address/h9.gif new file mode 100644 index 0000000..1ea7185 Binary files /dev/null and b/sms_img/address/h9.gif differ diff --git a/sms_img/address/sort_all.gif b/sms_img/address/sort_all.gif new file mode 100644 index 0000000..bf67050 Binary files /dev/null and b/sms_img/address/sort_all.gif differ diff --git a/sms_img/advice/01.jpg b/sms_img/advice/01.jpg new file mode 100644 index 0000000..165d08b Binary files /dev/null and b/sms_img/advice/01.jpg differ diff --git a/sms_img/advice/02.jpg b/sms_img/advice/02.jpg new file mode 100644 index 0000000..dae6e28 Binary files /dev/null and b/sms_img/advice/02.jpg differ diff --git a/sms_img/advice/03.jpg b/sms_img/advice/03.jpg new file mode 100644 index 0000000..6b39830 Binary files /dev/null and b/sms_img/advice/03.jpg differ diff --git a/sms_img/advice/tab01.gif b/sms_img/advice/tab01.gif new file mode 100644 index 0000000..1684945 Binary files /dev/null and b/sms_img/advice/tab01.gif differ diff --git a/sms_img/advice/tab01_on.gif b/sms_img/advice/tab01_on.gif new file mode 100644 index 0000000..c12cd90 Binary files /dev/null and b/sms_img/advice/tab01_on.gif differ diff --git a/sms_img/advice/tab02.gif b/sms_img/advice/tab02.gif new file mode 100644 index 0000000..fcf4017 Binary files /dev/null and b/sms_img/advice/tab02.gif differ diff --git a/sms_img/advice/tab02_on.gif b/sms_img/advice/tab02_on.gif new file mode 100644 index 0000000..70a4077 Binary files /dev/null and b/sms_img/advice/tab02_on.gif differ diff --git a/sms_img/advice/tab03.gif b/sms_img/advice/tab03.gif new file mode 100644 index 0000000..1e5f43d Binary files /dev/null and b/sms_img/advice/tab03.gif differ diff --git a/sms_img/advice/tab03_on.gif b/sms_img/advice/tab03_on.gif new file mode 100644 index 0000000..98ca3a7 Binary files /dev/null and b/sms_img/advice/tab03_on.gif differ diff --git a/sms_img/common/bg.jpg b/sms_img/common/bg.jpg new file mode 100644 index 0000000..304b727 Binary files /dev/null and b/sms_img/common/bg.jpg differ diff --git a/sms_img/common/btn_allselect.gif b/sms_img/common/btn_allselect.gif new file mode 100644 index 0000000..97afc91 Binary files /dev/null and b/sms_img/common/btn_allselect.gif differ diff --git a/sms_img/common/btn_allunselect.gif b/sms_img/common/btn_allunselect.gif new file mode 100644 index 0000000..6642716 Binary files /dev/null and b/sms_img/common/btn_allunselect.gif differ diff --git a/sms_img/common/btn_refresh.gif b/sms_img/common/btn_refresh.gif new file mode 100644 index 0000000..b1c5ba8 Binary files /dev/null and b/sms_img/common/btn_refresh.gif differ diff --git a/sms_img/common/btn_totalsearch.gif b/sms_img/common/btn_totalsearch.gif new file mode 100644 index 0000000..ed36ec2 Binary files /dev/null and b/sms_img/common/btn_totalsearch.gif differ diff --git a/sms_img/common/icon.gif b/sms_img/common/icon.gif new file mode 100644 index 0000000..9672970 Binary files /dev/null and b/sms_img/common/icon.gif differ diff --git a/sms_img/common/lmenu_0101.gif b/sms_img/common/lmenu_0101.gif new file mode 100644 index 0000000..57cecfb Binary files /dev/null and b/sms_img/common/lmenu_0101.gif differ diff --git a/sms_img/common/lmenu_0101_120824.gif b/sms_img/common/lmenu_0101_120824.gif new file mode 100644 index 0000000..6b8be99 Binary files /dev/null and b/sms_img/common/lmenu_0101_120824.gif differ diff --git a/sms_img/common/lmenu_0101_on.gif b/sms_img/common/lmenu_0101_on.gif new file mode 100644 index 0000000..62407aa Binary files /dev/null and b/sms_img/common/lmenu_0101_on.gif differ diff --git a/sms_img/common/lmenu_0101_on_120824.gif b/sms_img/common/lmenu_0101_on_120824.gif new file mode 100644 index 0000000..f728d2e Binary files /dev/null and b/sms_img/common/lmenu_0101_on_120824.gif differ diff --git a/sms_img/common/lmenu_0102.gif b/sms_img/common/lmenu_0102.gif new file mode 100644 index 0000000..afc34d1 Binary files /dev/null and b/sms_img/common/lmenu_0102.gif differ diff --git a/sms_img/common/lmenu_0102_on.gif b/sms_img/common/lmenu_0102_on.gif new file mode 100644 index 0000000..80373d6 Binary files /dev/null and b/sms_img/common/lmenu_0102_on.gif differ diff --git a/sms_img/common/lmenu_0103.gif b/sms_img/common/lmenu_0103.gif new file mode 100644 index 0000000..3589337 Binary files /dev/null and b/sms_img/common/lmenu_0103.gif differ diff --git a/sms_img/common/lmenu_0103_on.gif b/sms_img/common/lmenu_0103_on.gif new file mode 100644 index 0000000..185dda0 Binary files /dev/null and b/sms_img/common/lmenu_0103_on.gif differ diff --git a/sms_img/common/lmenu_0104.gif b/sms_img/common/lmenu_0104.gif new file mode 100644 index 0000000..6e21340 Binary files /dev/null and b/sms_img/common/lmenu_0104.gif differ diff --git a/sms_img/common/lmenu_0104_on.gif b/sms_img/common/lmenu_0104_on.gif new file mode 100644 index 0000000..44a062d Binary files /dev/null and b/sms_img/common/lmenu_0104_on.gif differ diff --git a/sms_img/common/lmenu_0201.gif b/sms_img/common/lmenu_0201.gif new file mode 100644 index 0000000..f9ddcc6 Binary files /dev/null and b/sms_img/common/lmenu_0201.gif differ diff --git a/sms_img/common/lmenu_0201_on.gif b/sms_img/common/lmenu_0201_on.gif new file mode 100644 index 0000000..8e33a4c Binary files /dev/null and b/sms_img/common/lmenu_0201_on.gif differ diff --git a/sms_img/common/lmenu_0301.gif b/sms_img/common/lmenu_0301.gif new file mode 100644 index 0000000..edefff5 Binary files /dev/null and b/sms_img/common/lmenu_0301.gif differ diff --git a/sms_img/common/lmenu_0301_on.gif b/sms_img/common/lmenu_0301_on.gif new file mode 100644 index 0000000..91ce541 Binary files /dev/null and b/sms_img/common/lmenu_0301_on.gif differ diff --git a/sms_img/common/lmenu_0302.gif b/sms_img/common/lmenu_0302.gif new file mode 100644 index 0000000..b224457 Binary files /dev/null and b/sms_img/common/lmenu_0302.gif differ diff --git a/sms_img/common/lmenu_0302_on.gif b/sms_img/common/lmenu_0302_on.gif new file mode 100644 index 0000000..823f5a6 Binary files /dev/null and b/sms_img/common/lmenu_0302_on.gif differ diff --git a/sms_img/common/lmenu_0401.gif b/sms_img/common/lmenu_0401.gif new file mode 100644 index 0000000..27d36c2 Binary files /dev/null and b/sms_img/common/lmenu_0401.gif differ diff --git a/sms_img/common/lmenu_0401_on.gif b/sms_img/common/lmenu_0401_on.gif new file mode 100644 index 0000000..04e8eef Binary files /dev/null and b/sms_img/common/lmenu_0401_on.gif differ diff --git a/sms_img/common/lmenu_0501.gif b/sms_img/common/lmenu_0501.gif new file mode 100644 index 0000000..33794aa Binary files /dev/null and b/sms_img/common/lmenu_0501.gif differ diff --git a/sms_img/common/lmenu_0501_on.gif b/sms_img/common/lmenu_0501_on.gif new file mode 100644 index 0000000..68dbe7a Binary files /dev/null and b/sms_img/common/lmenu_0501_on.gif differ diff --git a/sms_img/common/lmenu_0601.gif b/sms_img/common/lmenu_0601.gif new file mode 100644 index 0000000..8c18680 Binary files /dev/null and b/sms_img/common/lmenu_0601.gif differ diff --git a/sms_img/common/lmenu_0601_on.gif b/sms_img/common/lmenu_0601_on.gif new file mode 100644 index 0000000..ac4cbfa Binary files /dev/null and b/sms_img/common/lmenu_0601_on.gif differ diff --git a/sms_img/common/lmenu_0602.gif b/sms_img/common/lmenu_0602.gif new file mode 100644 index 0000000..8bd997b Binary files /dev/null and b/sms_img/common/lmenu_0602.gif differ diff --git a/sms_img/common/lmenu_0602_on.gif b/sms_img/common/lmenu_0602_on.gif new file mode 100644 index 0000000..c09769c Binary files /dev/null and b/sms_img/common/lmenu_0602_on.gif differ diff --git a/sms_img/common/lmenu_0603.gif b/sms_img/common/lmenu_0603.gif new file mode 100644 index 0000000..99a6b16 Binary files /dev/null and b/sms_img/common/lmenu_0603.gif differ diff --git a/sms_img/common/lmenu_0603_on.gif b/sms_img/common/lmenu_0603_on.gif new file mode 100644 index 0000000..d776437 Binary files /dev/null and b/sms_img/common/lmenu_0603_on.gif differ diff --git a/sms_img/common/lmenu_b01.gif b/sms_img/common/lmenu_b01.gif new file mode 100644 index 0000000..2a79404 Binary files /dev/null and b/sms_img/common/lmenu_b01.gif differ diff --git a/sms_img/common/lmenu_b01_on.gif b/sms_img/common/lmenu_b01_on.gif new file mode 100644 index 0000000..efd0606 Binary files /dev/null and b/sms_img/common/lmenu_b01_on.gif differ diff --git a/sms_img/common/lmenu_b02.gif b/sms_img/common/lmenu_b02.gif new file mode 100644 index 0000000..fb5bba7 Binary files /dev/null and b/sms_img/common/lmenu_b02.gif differ diff --git a/sms_img/common/lmenu_b02_on.gif b/sms_img/common/lmenu_b02_on.gif new file mode 100644 index 0000000..3ed5551 Binary files /dev/null and b/sms_img/common/lmenu_b02_on.gif differ diff --git a/sms_img/common/lmenu_b03.gif b/sms_img/common/lmenu_b03.gif new file mode 100644 index 0000000..a1d7cb6 Binary files /dev/null and b/sms_img/common/lmenu_b03.gif differ diff --git a/sms_img/common/lmenu_b03_on.gif b/sms_img/common/lmenu_b03_on.gif new file mode 100644 index 0000000..c5642a7 Binary files /dev/null and b/sms_img/common/lmenu_b03_on.gif differ diff --git a/sms_img/common/lmenu_b04.gif b/sms_img/common/lmenu_b04.gif new file mode 100644 index 0000000..42a2a08 Binary files /dev/null and b/sms_img/common/lmenu_b04.gif differ diff --git a/sms_img/common/lmenu_b04_on.gif b/sms_img/common/lmenu_b04_on.gif new file mode 100644 index 0000000..9502dbc Binary files /dev/null and b/sms_img/common/lmenu_b04_on.gif differ diff --git a/sms_img/common/lmenu_ban01.jpg b/sms_img/common/lmenu_ban01.jpg new file mode 100644 index 0000000..2d2771c Binary files /dev/null and b/sms_img/common/lmenu_ban01.jpg differ diff --git a/sms_img/common/lmenu_ban02.gif b/sms_img/common/lmenu_ban02.gif new file mode 100644 index 0000000..a2dae2a Binary files /dev/null and b/sms_img/common/lmenu_ban02.gif differ diff --git a/sms_img/common/lmenu_bg.gif b/sms_img/common/lmenu_bg.gif new file mode 100644 index 0000000..46d4c09 Binary files /dev/null and b/sms_img/common/lmenu_bg.gif differ diff --git a/sms_img/common/lmenu_top01.gif b/sms_img/common/lmenu_top01.gif new file mode 100644 index 0000000..2cca349 Binary files /dev/null and b/sms_img/common/lmenu_top01.gif differ diff --git a/sms_img/common/lmenu_top02.gif b/sms_img/common/lmenu_top02.gif new file mode 100644 index 0000000..0955d8a Binary files /dev/null and b/sms_img/common/lmenu_top02.gif differ diff --git a/sms_img/common/lmenu_top03.gif b/sms_img/common/lmenu_top03.gif new file mode 100644 index 0000000..7daba60 Binary files /dev/null and b/sms_img/common/lmenu_top03.gif differ diff --git a/sms_img/common/lmenu_top04.gif b/sms_img/common/lmenu_top04.gif new file mode 100644 index 0000000..a83c839 Binary files /dev/null and b/sms_img/common/lmenu_top04.gif differ diff --git a/sms_img/common/lmenu_top05.gif b/sms_img/common/lmenu_top05.gif new file mode 100644 index 0000000..068469c Binary files /dev/null and b/sms_img/common/lmenu_top05.gif differ diff --git a/sms_img/common/logo.gif b/sms_img/common/logo.gif new file mode 100644 index 0000000..e3bcc3e Binary files /dev/null and b/sms_img/common/logo.gif differ diff --git a/sms_img/common/menu01.gif b/sms_img/common/menu01.gif new file mode 100644 index 0000000..1eaf3c1 Binary files /dev/null and b/sms_img/common/menu01.gif differ diff --git a/sms_img/common/menu01_on.gif b/sms_img/common/menu01_on.gif new file mode 100644 index 0000000..cbfbbd4 Binary files /dev/null and b/sms_img/common/menu01_on.gif differ diff --git a/sms_img/common/menu02.gif b/sms_img/common/menu02.gif new file mode 100644 index 0000000..3bb4e4e Binary files /dev/null and b/sms_img/common/menu02.gif differ diff --git a/sms_img/common/menu02_on.gif b/sms_img/common/menu02_on.gif new file mode 100644 index 0000000..1a5aa71 Binary files /dev/null and b/sms_img/common/menu02_on.gif differ diff --git a/sms_img/common/menu03.gif b/sms_img/common/menu03.gif new file mode 100644 index 0000000..9cccaf6 Binary files /dev/null and b/sms_img/common/menu03.gif differ diff --git a/sms_img/common/menu03_on.gif b/sms_img/common/menu03_on.gif new file mode 100644 index 0000000..a57bfd2 Binary files /dev/null and b/sms_img/common/menu03_on.gif differ diff --git a/sms_img/common/menu04.gif b/sms_img/common/menu04.gif new file mode 100644 index 0000000..cbeb732 Binary files /dev/null and b/sms_img/common/menu04.gif differ diff --git a/sms_img/common/menu04_on.gif b/sms_img/common/menu04_on.gif new file mode 100644 index 0000000..ee066cb Binary files /dev/null and b/sms_img/common/menu04_on.gif differ diff --git a/sms_img/common/menu05.gif b/sms_img/common/menu05.gif new file mode 100644 index 0000000..aba92b2 Binary files /dev/null and b/sms_img/common/menu05.gif differ diff --git a/sms_img/common/menu05_on.gif b/sms_img/common/menu05_on.gif new file mode 100644 index 0000000..0c81a10 Binary files /dev/null and b/sms_img/common/menu05_on.gif differ diff --git a/sms_img/common/navi_bg.jpg b/sms_img/common/navi_bg.jpg new file mode 100644 index 0000000..c5a5259 Binary files /dev/null and b/sms_img/common/navi_bg.jpg differ diff --git a/sms_img/common/stit_02.gif b/sms_img/common/stit_02.gif new file mode 100644 index 0000000..f5debb6 Binary files /dev/null and b/sms_img/common/stit_02.gif differ diff --git a/sms_img/common/stit_03.gif b/sms_img/common/stit_03.gif new file mode 100644 index 0000000..8fd2183 Binary files /dev/null and b/sms_img/common/stit_03.gif differ diff --git a/sms_img/common/stit_04.gif b/sms_img/common/stit_04.gif new file mode 100644 index 0000000..3d91196 Binary files /dev/null and b/sms_img/common/stit_04.gif differ diff --git a/sms_img/common/top_btn01.gif b/sms_img/common/top_btn01.gif new file mode 100644 index 0000000..502672b Binary files /dev/null and b/sms_img/common/top_btn01.gif differ diff --git a/sms_img/common/top_btn02.gif b/sms_img/common/top_btn02.gif new file mode 100644 index 0000000..2c403d7 Binary files /dev/null and b/sms_img/common/top_btn02.gif differ diff --git a/sms_img/common/top_btn03.gif b/sms_img/common/top_btn03.gif new file mode 100644 index 0000000..42b58e4 Binary files /dev/null and b/sms_img/common/top_btn03.gif differ diff --git a/sms_img/common/top_nc.gif b/sms_img/common/top_nc.gif new file mode 100644 index 0000000..63667db Binary files /dev/null and b/sms_img/common/top_nc.gif differ diff --git a/sms_img/common/top_nl.gif b/sms_img/common/top_nl.gif new file mode 100644 index 0000000..9c24129 Binary files /dev/null and b/sms_img/common/top_nl.gif differ diff --git a/sms_img/common/top_nr.gif b/sms_img/common/top_nr.gif new file mode 100644 index 0000000..7b20ba7 Binary files /dev/null and b/sms_img/common/top_nr.gif differ diff --git a/sms_img/common/visual.jpg b/sms_img/common/visual.jpg new file mode 100644 index 0000000..fca8231 Binary files /dev/null and b/sms_img/common/visual.jpg differ diff --git a/sms_img/common/visual_120827.jpg b/sms_img/common/visual_120827.jpg new file mode 100644 index 0000000..3d6bc37 Binary files /dev/null and b/sms_img/common/visual_120827.jpg differ diff --git a/sms_img/main/bg.gif b/sms_img/main/bg.gif new file mode 100644 index 0000000..c5a8a84 Binary files /dev/null and b/sms_img/main/bg.gif differ diff --git a/sms_img/main/img.jpg b/sms_img/main/img.jpg new file mode 100644 index 0000000..0790a3d Binary files /dev/null and b/sms_img/main/img.jpg differ diff --git a/sms_img/main/logo.gif b/sms_img/main/logo.gif new file mode 100644 index 0000000..1147cb3 Binary files /dev/null and b/sms_img/main/logo.gif differ diff --git a/sms_img/sub/addr_txt.gif b/sms_img/sub/addr_txt.gif new file mode 100644 index 0000000..f68d0a6 Binary files /dev/null and b/sms_img/sub/addr_txt.gif differ diff --git a/sms_img/sub/arrow.gif b/sms_img/sub/arrow.gif new file mode 100644 index 0000000..21f8595 Binary files /dev/null and b/sms_img/sub/arrow.gif differ diff --git a/sms_img/sub/btn_all.gif b/sms_img/sub/btn_all.gif new file mode 100644 index 0000000..a4171ee Binary files /dev/null and b/sms_img/sub/btn_all.gif differ diff --git a/sms_img/sub/btn_allc.gif b/sms_img/sub/btn_allc.gif new file mode 100644 index 0000000..7125677 Binary files /dev/null and b/sms_img/sub/btn_allc.gif differ diff --git a/sms_img/sub/btn_alldel.gif b/sms_img/sub/btn_alldel.gif new file mode 100644 index 0000000..94669f6 Binary files /dev/null and b/sms_img/sub/btn_alldel.gif differ diff --git a/sms_img/sub/btn_del.gif b/sms_img/sub/btn_del.gif new file mode 100644 index 0000000..0df1ba9 Binary files /dev/null and b/sms_img/sub/btn_del.gif differ diff --git a/sms_img/sub/btn_edit.gif b/sms_img/sub/btn_edit.gif new file mode 100644 index 0000000..57e09b8 Binary files /dev/null and b/sms_img/sub/btn_edit.gif differ diff --git a/sms_img/sub/btn_emo.gif b/sms_img/sub/btn_emo.gif new file mode 100644 index 0000000..212280b Binary files /dev/null and b/sms_img/sub/btn_emo.gif differ diff --git a/sms_img/sub/btn_file.gif b/sms_img/sub/btn_file.gif new file mode 100644 index 0000000..030f08a Binary files /dev/null and b/sms_img/sub/btn_file.gif differ diff --git a/sms_img/sub/btn_group.gif b/sms_img/sub/btn_group.gif new file mode 100644 index 0000000..0ad15c0 Binary files /dev/null and b/sms_img/sub/btn_group.gif differ diff --git a/sms_img/sub/btn_plus.gif b/sms_img/sub/btn_plus.gif new file mode 100644 index 0000000..d636413 Binary files /dev/null and b/sms_img/sub/btn_plus.gif differ diff --git a/sms_img/sub/btn_plus2.gif b/sms_img/sub/btn_plus2.gif new file mode 100644 index 0000000..bff74c3 Binary files /dev/null and b/sms_img/sub/btn_plus2.gif differ diff --git a/sms_img/sub/btn_sample1.gif b/sms_img/sub/btn_sample1.gif new file mode 100644 index 0000000..c778103 Binary files /dev/null and b/sms_img/sub/btn_sample1.gif differ diff --git a/sms_img/sub/btn_sample2.gif b/sms_img/sub/btn_sample2.gif new file mode 100644 index 0000000..95658d2 Binary files /dev/null and b/sms_img/sub/btn_sample2.gif differ diff --git a/sms_img/sub/btn_search.gif b/sms_img/sub/btn_search.gif new file mode 100644 index 0000000..777a59b Binary files /dev/null and b/sms_img/sub/btn_search.gif differ diff --git a/sms_img/sub/btn_search2.gif b/sms_img/sub/btn_search2.gif new file mode 100644 index 0000000..2ef792f Binary files /dev/null and b/sms_img/sub/btn_search2.gif differ diff --git a/sms_img/sub/btn_send.gif b/sms_img/sub/btn_send.gif new file mode 100644 index 0000000..ea371d4 Binary files /dev/null and b/sms_img/sub/btn_send.gif differ diff --git a/sms_img/sub/btn_today.gif b/sms_img/sub/btn_today.gif new file mode 100644 index 0000000..d455c8d Binary files /dev/null and b/sms_img/sub/btn_today.gif differ diff --git a/sms_img/sub/btn_x.gif b/sms_img/sub/btn_x.gif new file mode 100644 index 0000000..7605450 Binary files /dev/null and b/sms_img/sub/btn_x.gif differ diff --git a/sms_img/sub/emo_bg.gif b/sms_img/sub/emo_bg.gif new file mode 100644 index 0000000..9df3ee8 Binary files /dev/null and b/sms_img/sub/emo_bg.gif differ diff --git a/sms_img/sub/emo_p01.gif b/sms_img/sub/emo_p01.gif new file mode 100644 index 0000000..37b425f Binary files /dev/null and b/sms_img/sub/emo_p01.gif differ diff --git a/sms_img/sub/emo_p02.gif b/sms_img/sub/emo_p02.gif new file mode 100644 index 0000000..0103bec Binary files /dev/null and b/sms_img/sub/emo_p02.gif differ diff --git a/sms_img/sub/emo_p03.gif b/sms_img/sub/emo_p03.gif new file mode 100644 index 0000000..1eac5d2 Binary files /dev/null and b/sms_img/sub/emo_p03.gif differ diff --git a/sms_img/sub/emo_p04.gif b/sms_img/sub/emo_p04.gif new file mode 100644 index 0000000..3033592 Binary files /dev/null and b/sms_img/sub/emo_p04.gif differ diff --git a/sms_img/sub/emo_plus.gif b/sms_img/sub/emo_plus.gif new file mode 100644 index 0000000..ab139d3 Binary files /dev/null and b/sms_img/sub/emo_plus.gif differ diff --git a/sms_img/sub/emo_tit.gif b/sms_img/sub/emo_tit.gif new file mode 100644 index 0000000..ae5b246 Binary files /dev/null and b/sms_img/sub/emo_tit.gif differ diff --git a/sms_img/sub/emoti_bg.gif b/sms_img/sub/emoti_bg.gif new file mode 100644 index 0000000..5109523 Binary files /dev/null and b/sms_img/sub/emoti_bg.gif differ diff --git a/sms_img/sub/etc_bg.gif b/sms_img/sub/etc_bg.gif new file mode 100644 index 0000000..f2f8ca8 Binary files /dev/null and b/sms_img/sub/etc_bg.gif differ diff --git a/sms_img/sub/exce_tit.gif b/sms_img/sub/exce_tit.gif new file mode 100644 index 0000000..2b79d99 Binary files /dev/null and b/sms_img/sub/exce_tit.gif differ diff --git a/sms_img/sub/home.gif b/sms_img/sub/home.gif new file mode 100644 index 0000000..d6c4f29 Binary files /dev/null and b/sms_img/sub/home.gif differ diff --git a/sms_img/sub/icon_add.gif b/sms_img/sub/icon_add.gif new file mode 100644 index 0000000..c639e36 Binary files /dev/null and b/sms_img/sub/icon_add.gif differ diff --git a/sms_img/sub/icon_add_on.gif b/sms_img/sub/icon_add_on.gif new file mode 100644 index 0000000..b3847fb Binary files /dev/null and b/sms_img/sub/icon_add_on.gif differ diff --git a/sms_img/sub/lmenu_top02.gif b/sms_img/sub/lmenu_top02.gif new file mode 100644 index 0000000..0955d8a Binary files /dev/null and b/sms_img/sub/lmenu_top02.gif differ diff --git a/sms_img/sub/lmenu_top03.gif b/sms_img/sub/lmenu_top03.gif new file mode 100644 index 0000000..7daba60 Binary files /dev/null and b/sms_img/sub/lmenu_top03.gif differ diff --git a/sms_img/sub/lmenu_top04.gif b/sms_img/sub/lmenu_top04.gif new file mode 100644 index 0000000..f1ba0ed Binary files /dev/null and b/sms_img/sub/lmenu_top04.gif differ diff --git a/sms_img/sub/num_bg.gif b/sms_img/sub/num_bg.gif new file mode 100644 index 0000000..3bb84b5 Binary files /dev/null and b/sms_img/sub/num_bg.gif differ diff --git a/sms_img/sub/phone_b01.gif b/sms_img/sub/phone_b01.gif new file mode 100644 index 0000000..ff79310 Binary files /dev/null and b/sms_img/sub/phone_b01.gif differ diff --git a/sms_img/sub/phone_b02.gif b/sms_img/sub/phone_b02.gif new file mode 100644 index 0000000..939753e Binary files /dev/null and b/sms_img/sub/phone_b02.gif differ diff --git a/sms_img/sub/phone_b03.gif b/sms_img/sub/phone_b03.gif new file mode 100644 index 0000000..feae301 Binary files /dev/null and b/sms_img/sub/phone_b03.gif differ diff --git a/sms_img/sub/phone_bg.jpg b/sms_img/sub/phone_bg.jpg new file mode 100644 index 0000000..9256ba5 Binary files /dev/null and b/sms_img/sub/phone_bg.jpg differ diff --git a/sms_img/sub/sms01_tit.gif b/sms_img/sub/sms01_tit.gif new file mode 100644 index 0000000..0027d14 Binary files /dev/null and b/sms_img/sub/sms01_tit.gif differ diff --git a/sms_img/sub/sms02_tit.gif b/sms_img/sub/sms02_tit.gif new file mode 100644 index 0000000..a9fa68d Binary files /dev/null and b/sms_img/sub/sms02_tit.gif differ diff --git a/sms_img/sub/sms03_arrow.gif b/sms_img/sub/sms03_arrow.gif new file mode 100644 index 0000000..c67d5a0 Binary files /dev/null and b/sms_img/sub/sms03_arrow.gif differ diff --git a/sms_img/sub/sms03_btn.gif b/sms_img/sub/sms03_btn.gif new file mode 100644 index 0000000..825409b Binary files /dev/null and b/sms_img/sub/sms03_btn.gif differ diff --git a/sms_img/sub/sms03_tit.gif b/sms_img/sub/sms03_tit.gif new file mode 100644 index 0000000..da03ea5 Binary files /dev/null and b/sms_img/sub/sms03_tit.gif differ diff --git a/sms_img/sub/sms03_title.gif b/sms_img/sub/sms03_title.gif new file mode 100644 index 0000000..26fd748 Binary files /dev/null and b/sms_img/sub/sms03_title.gif differ diff --git a/sms_img/sub/sms03_title_bg.gif b/sms_img/sub/sms03_title_bg.gif new file mode 100644 index 0000000..d3dc3dc Binary files /dev/null and b/sms_img/sub/sms03_title_bg.gif differ diff --git a/sms_img/sub/sms2_bg.gif b/sms_img/sub/sms2_bg.gif new file mode 100644 index 0000000..871a33d Binary files /dev/null and b/sms_img/sub/sms2_bg.gif differ diff --git a/sms_img/sub/sms_bg.gif b/sms_img/sub/sms_bg.gif new file mode 100644 index 0000000..56ca660 Binary files /dev/null and b/sms_img/sub/sms_bg.gif differ diff --git a/sms_img/sub/sms_box.gif b/sms_img/sub/sms_box.gif new file mode 100644 index 0000000..b2f2d0a Binary files /dev/null and b/sms_img/sub/sms_box.gif differ diff --git a/sms_img/sub/sms_input.gif b/sms_img/sub/sms_input.gif new file mode 100644 index 0000000..5414aa6 Binary files /dev/null and b/sms_img/sub/sms_input.gif differ diff --git a/sms_img/sub/stit_01.gif b/sms_img/sub/stit_01.gif new file mode 100644 index 0000000..abe94c2 Binary files /dev/null and b/sms_img/sub/stit_01.gif differ diff --git a/sms_img/sub/stit_0102.gif b/sms_img/sub/stit_0102.gif new file mode 100644 index 0000000..425c4db Binary files /dev/null and b/sms_img/sub/stit_0102.gif differ diff --git a/sms_img/sub/stit_0103.gif b/sms_img/sub/stit_0103.gif new file mode 100644 index 0000000..298e532 Binary files /dev/null and b/sms_img/sub/stit_0103.gif differ diff --git a/sms_img/sub/stit_0104.gif b/sms_img/sub/stit_0104.gif new file mode 100644 index 0000000..dbeee98 Binary files /dev/null and b/sms_img/sub/stit_0104.gif differ diff --git a/sms_img/sub/stit_01_120824.gif b/sms_img/sub/stit_01_120824.gif new file mode 100644 index 0000000..f7b185c Binary files /dev/null and b/sms_img/sub/stit_01_120824.gif differ diff --git a/sms_img/sub/stit_02.gif b/sms_img/sub/stit_02.gif new file mode 100644 index 0000000..f5debb6 Binary files /dev/null and b/sms_img/sub/stit_02.gif differ diff --git a/sms_img/sub/stit_03.gif b/sms_img/sub/stit_03.gif new file mode 100644 index 0000000..8fd2183 Binary files /dev/null and b/sms_img/sub/stit_03.gif differ diff --git a/sms_img/sub/stit_0302.gif b/sms_img/sub/stit_0302.gif new file mode 100644 index 0000000..84d653f Binary files /dev/null and b/sms_img/sub/stit_0302.gif differ diff --git a/sms_img/sub/stit_04.gif b/sms_img/sub/stit_04.gif new file mode 100644 index 0000000..3d91196 Binary files /dev/null and b/sms_img/sub/stit_04.gif differ diff --git a/sms_img/sub/stit_05.gif b/sms_img/sub/stit_05.gif new file mode 100644 index 0000000..b5ff560 Binary files /dev/null and b/sms_img/sub/stit_05.gif differ diff --git a/sms_img/sub/stit_06.gif b/sms_img/sub/stit_06.gif new file mode 100644 index 0000000..eee15a2 Binary files /dev/null and b/sms_img/sub/stit_06.gif differ diff --git a/sms_img/sub/stit_0602.gif b/sms_img/sub/stit_0602.gif new file mode 100644 index 0000000..77f3c2e Binary files /dev/null and b/sms_img/sub/stit_0602.gif differ diff --git a/sms_img/sub/stit_0603.gif b/sms_img/sub/stit_0603.gif new file mode 100644 index 0000000..25095e4 Binary files /dev/null and b/sms_img/sub/stit_0603.gif differ diff --git a/sms_img/sub/txt.gif b/sms_img/sub/txt.gif new file mode 100644 index 0000000..73437ab Binary files /dev/null and b/sms_img/sub/txt.gif differ diff --git a/sms_img/sub/txt_help.gif b/sms_img/sub/txt_help.gif new file mode 100644 index 0000000..9773ead Binary files /dev/null and b/sms_img/sub/txt_help.gif differ diff --git a/sms_img/sub/txt_help2.gif b/sms_img/sub/txt_help2.gif new file mode 100644 index 0000000..21b44c8 Binary files /dev/null and b/sms_img/sub/txt_help2.gif differ diff --git a/sms_img/sub/txt_help3.gif b/sms_img/sub/txt_help3.gif new file mode 100644 index 0000000..a4e8cdd Binary files /dev/null and b/sms_img/sub/txt_help3.gif differ diff --git a/tst.asp b/tst.asp new file mode 100644 index 0000000..9a3ca8c --- /dev/null +++ b/tst.asp @@ -0,0 +1,43 @@ +<% +Response.write "aaa=" & remoteIP() +Function remoteIP() + Dim clientIP + + ' 1. X-Forwarded-For 헤더 확인 (프록시 환경에서 가장 우선) + clientIP = Request.ServerVariables("HTTP_X_FORWARDED_FOR") + + If clientIP <> "" Then + ' 여러 프록시를 거친 경우 쉼표로 구분되므로 첫 번째 IP 추출 + If InStr(clientIP, ",") > 0 Then + clientIP = Trim(Split(clientIP, ",")(0)) + End If + remoteIP = clientIP + Exit Function + End If + + ' 2. X-Real-IP 헤더 확인 (Nginx 등에서 사용) + clientIP = Request.ServerVariables("HTTP_X_REAL_IP") + If clientIP <> "" Then + remoteIP = clientIP + Exit Function + End If + + ' 3. CF-Connecting-IP 헤더 확인 (Cloudflare 사용시) + clientIP = Request.ServerVariables("HTTP_CF_CONNECTING_IP") + If clientIP <> "" Then + remoteIP = clientIP + Exit Function + End If + + ' 4. HTTP_CLIENT_IP 확인 + clientIP = Request.ServerVariables("HTTP_CLIENT_IP") + If clientIP <> "" Then + remoteIP = clientIP + Exit Function + End If + + ' 5. 기본 REMOTE_ADDR 사용 + clientIP = Request.ServerVariables("REMOTE_ADDR") + remoteIP = clientIP +End Function +%> \ No newline at end of file diff --git a/web.config b/web.config new file mode 100644 index 0000000..df3860b --- /dev/null +++ b/web.config @@ -0,0 +1,18 @@ + + + + + + + + + + + + + + + + + + diff --git a/신규테이블.txt b/신규테이블.txt new file mode 100644 index 0000000..2003e4f --- /dev/null +++ b/신규테이블.txt @@ -0,0 +1 @@ +SDK_MMS_DELETE_LOG \ No newline at end of file